ETH Price: $1,895.99 (-1.07%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

Please try again later

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
WeightedIndex

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 39 : WeightedIndex.sol
// https://peapods.finance

// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.28;

import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol";
import "@uniswap/v3-core/contracts/libraries/FixedPoint96.sol";
import "./libraries/FullMath.sol";
import "./interfaces/IInitializeSelector.sol";
import "./DecentralizedIndex.sol";

contract WeightedIndex is Initializable, IInitializeSelector, DecentralizedIndex {
    using SafeERC20 for IERC20;

    /// @custom:oz-upgrades-unsafe-allow constructor
    constructor() {
        _disableInitializers();
    }

    /// @notice The ```initialize``` function initializes a new WeightedIndex pod
    /// @param _name The name of the ERC20 token of the pod
    /// @param _symbol The symbol/ticker of the ERC20 token of the pod
    /// @param _baseConfig A packed set of vars that represents some core pod data
    ///     @param _baseConfig[0] = _config A struct containing some pod-level, one off configuration for the pod
    ///     @param _baseConfig[1] = _fees A struct holding all pod-level fees
    ///     @param _baseConfig[2] = _tokens The ERC20 token addresses that make up the pod
    ///     @param _baseConfig[3] = _weights The weights that each ERC20 token makes up in the pod, defined by token amount
    /// @param _immutables A number of immutable options/addresses to help the pod function properly on the current network, see DecentralizedIndex for unpacking info
    function initialize(string memory _name, string memory _symbol, bytes memory _baseConfig, bytes memory _immutables)
        public
        initializer
    {
        (Config memory _config, Fees memory _fees, address[] memory _tokens, uint256[] memory _weights,,) =
            abi.decode(_baseConfig, (Config, Fees, address[], uint256[], address, bool));

        __DecentralizedIndex_init(_name, _symbol, IndexType.WEIGHTED, _config, _fees, _immutables);
        __WeightedIndex_init(_tokens, _weights);
    }

    function initializeSelector() external pure override returns (bytes4) {
        return this.initialize.selector;
    }

    function __WeightedIndex_init(address[] memory _tokens, uint256[] memory _weights) internal {
        require(_tokens.length == _weights.length, "V");
        uint256 _totalWeights;
        uint256 _tl = _tokens.length;
        for (uint8 _i; _i < _tl; _i++) {
            require(!_isTokenInIndex[_tokens[_i]], "D");
            require(_weights[_i] > 0, "W");
            indexTokens.push(
                IndexAssetInfo({
                    token: _tokens[_i],
                    basePriceUSDX96: 0,
                    weighting: _weights[_i],
                    c1: address(0),
                    q1: 0 // amountsPerIdxTokenX96
                })
            );
            _totalWeights += _weights[_i];
            _fundTokenIdx[_tokens[_i]] = _i;
            _isTokenInIndex[_tokens[_i]] = true;
        }
        // at idx == 0, need to find X in [1/X = tokenWeightAtIdx/totalWeights]
        // at idx > 0, need to find Y in (Y/X = tokenWeightAtIdx/totalWeights)
        uint256 _xX96 = (FixedPoint96.Q96 * _totalWeights) / _weights[0];
        for (uint256 _i; _i < _tl; _i++) {
            indexTokens[_i].q1 = (_weights[_i] * _xX96 * 10 ** IERC20Metadata(_tokens[_i]).decimals()) / _totalWeights;
        }
    }

    /// @notice The ```totalAssets``` function returns the number of assets for the first underlying TKN in the pod
    /// @return _totalManagedAssets Number of TKN[0] currently in the pod
    function totalAssets() public view override returns (uint256 _totalManagedAssets) {
        _totalManagedAssets = _totalAssets[indexTokens[0].token];
    }

    /// @notice The ```totalAssets``` function returns the number of assets for the specified TKN in the pod
    /// @param _asset The asset we're querying for the total managed assets
    /// @return _totalManagedAssets Number of tkns currently in the pod
    function totalAssets(address _asset) public view override returns (uint256 _totalManagedAssets) {
        _totalManagedAssets = _totalAssets[_asset];
    }

    /// @notice The ```convertToShares``` function returns the number of pTKN minted based on _assets TKN excluding fees
    /// @param _assets Number of underlying TKN[0] to determine how many pTKNs to be minted
    /// @return _shares Number of pTKN to be minted
    function convertToShares(uint256 _assets) external view override returns (uint256 _shares) {
        bool _firstIn = _isFirstIn();
        if (_firstIn) {
            _shares = FullMath.mulDiv(_assets, FixedPoint96.Q96 * 10 ** decimals(), indexTokens[0].q1);
        } else {
            uint256 _tokenAmtSupplyRatioX96 =
                FullMath.mulDiv(_assets, FixedPoint96.Q96, _totalAssets[indexTokens[0].token]);
            _shares = FullMath.mulDiv(_totalSupply, _tokenAmtSupplyRatioX96, FixedPoint96.Q96);
        }
        _shares -= FullMath.mulDiv(_shares, _fees.bond, DEN);
    }

    /// @notice The ```convertToAssets``` function returns the number of TKN returned based on burning _shares pTKN excluding fees
    /// @param _shares Number of pTKN to burn
    /// @return _assets Number of TKN[0] to be returned to user from pod
    function convertToAssets(uint256 _shares) external view override returns (uint256 _assets) {
        _assets = _convertToAssets(_shares, _totalAssets[indexTokens[0].token], _totalSupply);
    }

    /// @notice The ```convertToAssetsPreFlashMint``` function returns the number of TKN returned based on burning _shares pTKN excluding fees before a flash mint starts
    /// @param _shares Number of pTKN to burn
    /// @return _assets Number of TKN[0] to be returned to user from pod
    function convertToAssetsPreFlashMint(uint256 _shares) external view override returns (uint256 _assets) {
        _assets = _convertToAssets(_shares, _totalAssets0PreFlashMint, _totalSupplyPreFlashMint);
    }

    function _convertToAssets(uint256 _shares, uint256 _localTotalAssets0, uint256 _localTotalSupply)
        internal
        view
        returns (uint256 _assets)
    {
        bool _firstIn = _isFirstIn();
        if (_firstIn) {
            _assets = FullMath.mulDiv(_shares, indexTokens[0].q1, FixedPoint96.Q96 * 10 ** decimals());
        } else {
            uint256 _percSharesX96 = FullMath.mulDiv(_shares, FixedPoint96.Q96, _localTotalSupply);
            _assets = FullMath.mulDiv(_localTotalAssets0, _percSharesX96, FixedPoint96.Q96);
        }
        _assets -= FullMath.mulDiv(_assets, _fees.debond, DEN);
    }

    /// @notice The ```bond``` function wraps a user into a pod and mints new pTKN
    /// @param _token The token used to calculate the amount of pTKN minted
    /// @param _amount Number of _tokens used to wrap into the pod
    /// @param _amountMintMin Number of pTKN minimum that should be minted (slippage)
    function bond(address _token, uint256 _amount, uint256 _amountMintMin) external override lock noSwapOrFee {
        _bond(_token, _amount, _amountMintMin, _msgSender());
    }

    function _bond(address _token, uint256 _amount, uint256 _amountMintMin, address _user) internal {
        require(_isTokenInIndex[_token], "IT");
        uint256 _tokenIdx = _fundTokenIdx[_token];

        bool _firstIn = _isFirstIn();
        uint256 _tokenAmtSupplyRatioX96 =
            _firstIn ? FixedPoint96.Q96 : (_amount * FixedPoint96.Q96) / _totalAssets[_token];
        uint256 _tokensMinted;
        if (_firstIn) {
            _tokensMinted = (_amount * FixedPoint96.Q96 * 10 ** decimals()) / indexTokens[_tokenIdx].q1;
        } else {
            _tokensMinted = (_totalSupply * _tokenAmtSupplyRatioX96) / FixedPoint96.Q96;
        }
        uint256 _feeTokens = _canWrapFeeFree(_user) ? 0 : (_tokensMinted * _fees.bond) / DEN;
        require(_tokensMinted - _feeTokens >= _amountMintMin, "M");
        _totalSupply += _tokensMinted;
        _mint(_user, _tokensMinted - _feeTokens);
        if (_feeTokens > 0) {
            _mint(address(this), _feeTokens);
            _processBurnFee(_feeTokens);
        }
        uint256 _il = indexTokens.length;
        for (uint256 _i; _i < _il; _i++) {
            uint256 _transferAmt = _firstIn
                ? getInitialAmount(_token, _amount, indexTokens[_i].token)
                : FullMath.mulDivRoundingUp(_totalAssets[indexTokens[_i].token], _tokenAmtSupplyRatioX96, FixedPoint96.Q96);
            require(_transferAmt > 0, "T0");
            _totalAssets[indexTokens[_i].token] += _transferAmt;
            _transferFromAndValidate(IERC20(indexTokens[_i].token), _user, _transferAmt);
        }
        _internalBond();
        emit Bond(_user, _token, _amount, _tokensMinted);
    }

    /// @notice The ```debond``` function unwraps a user out of a pod and burns pTKN
    /// @param _amount Number of pTKN to burn
    function debond(uint256 _amount, address[] memory, uint8[] memory) external override lock noSwapOrFee {
        uint256 _amountAfterFee = _isLastOut(_amount) || REWARDS_WHITELIST.isWhitelistedFromDebondFee(_msgSender())
            ? _amount
            : (_amount * (DEN - _fees.debond)) / DEN;
        uint256 _percSharesX96 = (_amountAfterFee * FixedPoint96.Q96) / _totalSupply;
        super._transfer(_msgSender(), address(this), _amount);
        _totalSupply -= _amountAfterFee;
        _burn(address(this), _amountAfterFee);
        _processBurnFee(_amount - _amountAfterFee);
        uint256 _il = indexTokens.length;
        for (uint256 _i; _i < _il; _i++) {
            uint256 _debondAmount = (_totalAssets[indexTokens[_i].token] * _percSharesX96) / FixedPoint96.Q96;
            if (_debondAmount > 0) {
                _totalAssets[indexTokens[_i].token] -= _debondAmount;
                IERC20(indexTokens[_i].token).safeTransfer(_msgSender(), _debondAmount);
            }
        }
        // an arbitrage path of buy pTKN > debond > sell TKN does not trigger rewards
        // so let's trigger processing here at debond to keep things moving along
        _processPreSwapFeesAndSwap();
        emit Debond(_msgSender(), _amount);
    }

    /// @notice The ```getInitialAmount``` function determines the initial amount of TKN2 needed
    /// @notice based on an amount of TKN1 to wrap with. After an initial bond, vault share takes over
    /// @param _sourceToken TKN we're referencing
    /// @param _sourceAmount Amount of TKN we're referencing
    /// @param _targetToken Target TKN we will return the amount that is needed
    /// @return _amtTargetTkn Amount of _targetToken needed to wrap with
    function getInitialAmount(address _sourceToken, uint256 _sourceAmount, address _targetToken)
        public
        view
        override
        returns (uint256)
    {
        uint256 _sourceTokenIdx = _fundTokenIdx[_sourceToken];
        uint256 _targetTokenIdx = _fundTokenIdx[_targetToken];
        return (_sourceAmount * indexTokens[_targetTokenIdx].weighting * 10 ** IERC20Metadata(_targetToken).decimals())
            / indexTokens[_sourceTokenIdx].weighting / 10 ** IERC20Metadata(_sourceToken).decimals();
    }
}

File 2 of 39 : Initializable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol)

pragma solidity ^0.8.20;

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
 * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
 * case an upgrade adds a module that needs to be initialized.
 *
 * For example:
 *
 * [.hljs-theme-light.nopadding]
 * ```solidity
 * contract MyToken is ERC20Upgradeable {
 *     function initialize() initializer public {
 *         __ERC20_init("MyToken", "MTK");
 *     }
 * }
 *
 * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
 *     function initializeV2() reinitializer(2) public {
 *         __ERC20Permit_init("MyToken");
 *     }
 * }
 * ```
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
 * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() {
 *     _disableInitializers();
 * }
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Storage of the initializable contract.
     *
     * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions
     * when using with upgradeable contracts.
     *
     * @custom:storage-location erc7201:openzeppelin.storage.Initializable
     */
    struct InitializableStorage {
        /**
         * @dev Indicates that the contract has been initialized.
         */
        uint64 _initialized;
        /**
         * @dev Indicates that the contract is in the process of being initialized.
         */
        bool _initializing;
    }

    // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Initializable")) - 1)) & ~bytes32(uint256(0xff))
    bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00;

    /**
     * @dev The contract is already initialized.
     */
    error InvalidInitialization();

    /**
     * @dev The contract is not initializing.
     */
    error NotInitializing();

    /**
     * @dev Triggered when the contract has been initialized or reinitialized.
     */
    event Initialized(uint64 version);

    /**
     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
     * `onlyInitializing` functions can be used to initialize parent contracts.
     *
     * Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any
     * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in
     * production.
     *
     * Emits an {Initialized} event.
     */
    modifier initializer() {
        // solhint-disable-next-line var-name-mixedcase
        InitializableStorage storage $ = _getInitializableStorage();

        // Cache values to avoid duplicated sloads
        bool isTopLevelCall = !$._initializing;
        uint64 initialized = $._initialized;

        // Allowed calls:
        // - initialSetup: the contract is not in the initializing state and no previous version was
        //                 initialized
        // - construction: the contract is initialized at version 1 (no reininitialization) and the
        //                 current contract is just being deployed
        bool initialSetup = initialized == 0 && isTopLevelCall;
        bool construction = initialized == 1 && address(this).code.length == 0;

        if (!initialSetup && !construction) {
            revert InvalidInitialization();
        }
        $._initialized = 1;
        if (isTopLevelCall) {
            $._initializing = true;
        }
        _;
        if (isTopLevelCall) {
            $._initializing = false;
            emit Initialized(1);
        }
    }

    /**
     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
     * used to initialize parent contracts.
     *
     * A reinitializer may be used after the original initialization step. This is essential to configure modules that
     * are added through upgrades and that require initialization.
     *
     * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
     * cannot be nested. If one is invoked in the context of another, execution will revert.
     *
     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
     * a contract, executing them in the right order is up to the developer or operator.
     *
     * WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization.
     *
     * Emits an {Initialized} event.
     */
    modifier reinitializer(uint64 version) {
        // solhint-disable-next-line var-name-mixedcase
        InitializableStorage storage $ = _getInitializableStorage();

        if ($._initializing || $._initialized >= version) {
            revert InvalidInitialization();
        }
        $._initialized = version;
        $._initializing = true;
        _;
        $._initializing = false;
        emit Initialized(version);
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} and {reinitializer} modifiers, directly or indirectly.
     */
    modifier onlyInitializing() {
        _checkInitializing();
        _;
    }

    /**
     * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}.
     */
    function _checkInitializing() internal view virtual {
        if (!_isInitializing()) {
            revert NotInitializing();
        }
    }

    /**
     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called
     * through proxies.
     *
     * Emits an {Initialized} event the first time it is successfully executed.
     */
    function _disableInitializers() internal virtual {
        // solhint-disable-next-line var-name-mixedcase
        InitializableStorage storage $ = _getInitializableStorage();

        if ($._initializing) {
            revert InvalidInitialization();
        }
        if ($._initialized != type(uint64).max) {
            $._initialized = type(uint64).max;
            emit Initialized(type(uint64).max);
        }
    }

    /**
     * @dev Returns the highest version that has been initialized. See {reinitializer}.
     */
    function _getInitializedVersion() internal view returns (uint64) {
        return _getInitializableStorage()._initialized;
    }

    /**
     * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
     */
    function _isInitializing() internal view returns (bool) {
        return _getInitializableStorage()._initializing;
    }

    /**
     * @dev Returns a pointer to the storage namespace.
     */
    // solhint-disable-next-line var-name-mixedcase
    function _getInitializableStorage() private pure returns (InitializableStorage storage $) {
        assembly {
            $.slot := INITIALIZABLE_STORAGE
        }
    }
}

File 3 of 39 : ERC20Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.2.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import {ContextUpgradeable} from "../../utils/ContextUpgradeable.sol";
import {IERC20Errors} from "@openzeppelin/contracts/interfaces/draft-IERC6093.sol";
import {Initializable} from "../../proxy/utils/Initializable.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC-20
 * applications.
 */
abstract contract ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20, IERC20Metadata, IERC20Errors {
    /// @custom:storage-location erc7201:openzeppelin.storage.ERC20
    struct ERC20Storage {
        mapping(address account => uint256) _balances;

        mapping(address account => mapping(address spender => uint256)) _allowances;

        uint256 _totalSupply;

        string _name;
        string _symbol;
    }

    // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.ERC20")) - 1)) & ~bytes32(uint256(0xff))
    bytes32 private constant ERC20StorageLocation = 0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00;

    function _getERC20Storage() private pure returns (ERC20Storage storage $) {
        assembly {
            $.slot := ERC20StorageLocation
        }
    }

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    function __ERC20_init(string memory name_, string memory symbol_) internal onlyInitializing {
        __ERC20_init_unchained(name_, symbol_);
    }

    function __ERC20_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing {
        ERC20Storage storage $ = _getERC20Storage();
        $._name = name_;
        $._symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        ERC20Storage storage $ = _getERC20Storage();
        return $._name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        ERC20Storage storage $ = _getERC20Storage();
        return $._symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        ERC20Storage storage $ = _getERC20Storage();
        return $._totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual returns (uint256) {
        ERC20Storage storage $ = _getERC20Storage();
        return $._balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        ERC20Storage storage $ = _getERC20Storage();
        return $._allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        ERC20Storage storage $ = _getERC20Storage();
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            $._totalSupply += value;
        } else {
            uint256 fromBalance = $._balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                $._balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                $._totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                $._balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        ERC20Storage storage $ = _getERC20Storage();
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        $._allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

File 4 of 39 : ERC20PermitUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/ERC20Permit.sol)

pragma solidity ^0.8.20;

import {IERC20Permit} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol";
import {ERC20Upgradeable} from "../ERC20Upgradeable.sol";
import {ECDSA} from "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import {EIP712Upgradeable} from "../../../utils/cryptography/EIP712Upgradeable.sol";
import {NoncesUpgradeable} from "../../../utils/NoncesUpgradeable.sol";
import {Initializable} from "../../../proxy/utils/Initializable.sol";

/**
 * @dev Implementation of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
abstract contract ERC20PermitUpgradeable is Initializable, ERC20Upgradeable, IERC20Permit, EIP712Upgradeable, NoncesUpgradeable {
    bytes32 private constant PERMIT_TYPEHASH =
        keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

    /**
     * @dev Permit deadline has expired.
     */
    error ERC2612ExpiredSignature(uint256 deadline);

    /**
     * @dev Mismatched signature.
     */
    error ERC2612InvalidSigner(address signer, address owner);

    /**
     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
     *
     * It's a good idea to use the same `name` that is defined as the ERC-20 token name.
     */
    function __ERC20Permit_init(string memory name) internal onlyInitializing {
        __EIP712_init_unchained(name, "1");
    }

    function __ERC20Permit_init_unchained(string memory) internal onlyInitializing {}

    /**
     * @inheritdoc IERC20Permit
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual {
        if (block.timestamp > deadline) {
            revert ERC2612ExpiredSignature(deadline);
        }

        bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));

        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        if (signer != owner) {
            revert ERC2612InvalidSigner(signer, owner);
        }

        _approve(owner, spender, value);
    }

    /**
     * @inheritdoc IERC20Permit
     */
    function nonces(address owner) public view virtual override(IERC20Permit, NoncesUpgradeable) returns (uint256) {
        return super.nonces(owner);
    }

    /**
     * @inheritdoc IERC20Permit
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view virtual returns (bytes32) {
        return _domainSeparatorV4();
    }
}

File 5 of 39 : FixedPoint96.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.4.0;

/// @title FixedPoint96
/// @notice A library for handling binary fixed point numbers, see https://en.wikipedia.org/wiki/Q_(number_format)
/// @dev Used in SqrtPriceMath.sol
library FixedPoint96 {
    uint8 internal constant RESOLUTION = 96;
    uint256 internal constant Q96 = 0x1000000000000000000000000;
}

File 6 of 39 : FullMath.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

// https://github.com/Uniswap/v3-core/blob/0.8/contracts/libraries/FullMath.sol

/// @title Contains 512-bit math functions
/// @notice Facilitates multiplication and division that can have overflow of an intermediate value without any loss of precision
/// @dev Handles "phantom overflow" i.e., allows multiplication and division where an intermediate value overflows 256 bits
library FullMath {
    /// @notice Calculates floor(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
    /// @param a The multiplicand
    /// @param b The multiplier
    /// @param denominator The divisor
    /// @return result The 256-bit result
    /// @dev Credit to Remco Bloemen under MIT license https://xn--2-umb.com/21/muldiv
    function mulDiv(uint256 a, uint256 b, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = a * b
            // Compute the product mod 2**256 and mod 2**256 - 1
            // then 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(a, b, not(0))
                prod0 := mul(a, b)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division
            if (prod1 == 0) {
                require(denominator > 0);
                assembly {
                    result := div(prod0, denominator)
                }
                return result;
            }

            // 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]
            // Compute remainder using mulmod
            uint256 remainder;
            assembly {
                remainder := mulmod(a, b, denominator)
            }
            // Subtract 256 bit number from 512 bit number
            assembly {
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator
            // Compute largest power of two divisor of denominator.
            // Always >= 1.
            uint256 twos = (0 - denominator) & denominator;
            // Divide denominator by power of two
            assembly {
                denominator := div(denominator, twos)
            }

            // Divide [prod1 prod0] by the factors of two
            assembly {
                prod0 := div(prod0, twos)
            }
            // Shift in bits from prod1 into prod0. For this we need
            // to flip `twos` such that it is 2**256 / twos.
            // If twos is zero, then it becomes one
            assembly {
                twos := add(div(sub(0, twos), twos), 1)
            }
            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
            // correct for four bits. That is, denominator * inv = 1 mod 2**4
            uint256 inv = (3 * denominator) ^ 2;
            // Now use 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.
            inv *= 2 - denominator * inv; // inverse mod 2**8
            inv *= 2 - denominator * inv; // inverse mod 2**16
            inv *= 2 - denominator * inv; // inverse mod 2**32
            inv *= 2 - denominator * inv; // inverse mod 2**64
            inv *= 2 - denominator * inv; // inverse mod 2**128
            inv *= 2 - denominator * inv; // 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 precoditions 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 * inv;
            return result;
        }
    }

    /// @notice Calculates ceil(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
    /// @param a The multiplicand
    /// @param b The multiplier
    /// @param denominator The divisor
    /// @return result The 256-bit result
    function mulDivRoundingUp(uint256 a, uint256 b, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            result = mulDiv(a, b, denominator);
            if (mulmod(a, b, denominator) > 0) {
                require(result < type(uint256).max);
                result++;
            }
        }
    }
}

File 7 of 39 : IInitializeSelector.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;

interface IInitializeSelector {
    function initializeSelector() external view returns (bytes4);
}

File 8 of 39 : DecentralizedIndex.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.28;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./interfaces/IDecentralizedIndex.sol";
import "./interfaces/IDexAdapter.sol";
import "./interfaces/IFlashLoanRecipient.sol";
import "./interfaces/IProtocolFeeRouter.sol";
import "./interfaces/IRewardsWhitelister.sol";
import "./interfaces/IStakingPoolToken.sol";
import "./interfaces/ITokenRewards.sol";
import "./interfaces/IV3TwapUtilities.sol";

abstract contract DecentralizedIndex is Initializable, ERC20Upgradeable, ERC20PermitUpgradeable, IDecentralizedIndex {
    using SafeERC20 for IERC20;

    uint16 constant DEN = 10000;
    uint8 constant SWAP_DELAY = 20; // seconds

    IProtocolFeeRouter PROTOCOL_FEE_ROUTER;
    IRewardsWhitelister REWARDS_WHITELIST;
    IDexAdapter public override DEX_HANDLER;
    IV3TwapUtilities V3_TWAP_UTILS;

    uint256 public FLASH_FEE_AMOUNT_DAI; // 10 DAI
    address public PAIRED_LP_TOKEN;
    address CREATOR;
    address V2_ROUTER;
    address V3_ROUTER;
    address DAI;
    address WETH;
    address V2_POOL;

    Config _config;
    Fees _fees;

    IndexType public indexType;
    uint256 public created;
    address public lpRewardsToken;
    address public override lpStakingPool;
    uint8 public override unlocked;

    IndexAssetInfo[] public indexTokens;
    mapping(address => bool) _isTokenInIndex;
    mapping(address => uint8) _fundTokenIdx;
    mapping(address => bool) _blacklist; // DEPRECATED: remove in future versions, DO NOT remove until redeploy beacon to prevent breaking current proxy storage
    mapping(address => uint256) _totalAssets;
    uint256 _totalSupply;
    uint64 _partnerFirstWrapped;
    uint64 _lastSwap;
    uint8 _swapping;
    uint8 _swapAndFeeOn;
    uint8 _shortCircuitRewards;
    bool _isSetup;

    uint256 _totalAssets0PreFlashMint;
    uint256 _totalSupplyPreFlashMint;
    uint8 public override isFlashMinting;

    uint256[50] private __gap; // reserved for future upgrades

    modifier lock() {
        require(unlocked == 1, "L");
        unlocked = 0;
        _;
        unlocked = 1;
    }

    modifier onlyPartner() {
        require(_msgSender() == _config.partner, "P");
        _;
    }

    modifier noSwapOrFee() {
        _swapAndFeeOn = 0;
        _;
        _swapAndFeeOn = 1;
    }

    /// @custom:oz-upgrades-unsafe-allow constructor
    constructor() initializer {}

    function __DecentralizedIndex_init(
        string memory _name,
        string memory _symbol,
        IndexType _idxType,
        Config memory __config,
        Fees memory __fees,
        bytes memory _immutables
    ) internal onlyInitializing {
        __ERC20_init(_name, _symbol);
        __ERC20Permit_init(_name);

        CREATOR = _msgSender();
        unlocked = 1;
        _swapAndFeeOn = 1;

        require(__fees.buy <= (uint256(DEN) * 20) / 100);
        require(__fees.sell <= (uint256(DEN) * 20) / 100);
        require(__fees.burn <= (uint256(DEN) * 70) / 100);
        require(__fees.bond <= (uint256(DEN) * 99) / 100);
        require(__fees.debond <= (uint256(DEN) * 99) / 100);
        require(__fees.partner <= (uint256(DEN) * 5) / 100);

        indexType = _idxType;
        created = block.timestamp;
        _fees = __fees;
        _config = __config;
        _config.debondCooldown = __config.debondCooldown == 0 ? 60 days : __config.debondCooldown;

        (
            address _pairedLpToken,
            address _lpRewardsToken,
            address _dai,
            address _feeRouter,
            address _rewardsWhitelister,
            address _v3TwapUtils,
            address _dexAdapter
        ) = abi.decode(_immutables, (address, address, address, address, address, address, address));
        require(_pairedLpToken != address(0), "PLP");
        lpRewardsToken = _lpRewardsToken;
        DAI = _dai;
        PROTOCOL_FEE_ROUTER = IProtocolFeeRouter(_feeRouter);
        REWARDS_WHITELIST = IRewardsWhitelister(_rewardsWhitelister);
        V3_TWAP_UTILS = IV3TwapUtilities(_v3TwapUtils);
        DEX_HANDLER = IDexAdapter(_dexAdapter);
        V2_ROUTER = DEX_HANDLER.V2_ROUTER();
        V3_ROUTER = DEX_HANDLER.V3_ROUTER();
        PAIRED_LP_TOKEN = _pairedLpToken;
        FLASH_FEE_AMOUNT_DAI = 10 * 10 ** IERC20Metadata(_dai).decimals(); // 10 DAI
        WETH = DEX_HANDLER.WETH();
        emit Create(address(this), _msgSender());
    }

    /// @notice The ```setup``` function initialized a new LP pair for the pod + pairedLpAsset
    function setup() external override {
        require(!_isSetup, "O");
        _isSetup = true;
        address _v2Pool = DEX_HANDLER.getV2Pool(address(this), PAIRED_LP_TOKEN);
        if (_v2Pool == address(0)) {
            _v2Pool = DEX_HANDLER.createV2Pool(address(this), PAIRED_LP_TOKEN);
        }
        IStakingPoolToken(lpStakingPool).setStakingToken(_v2Pool);
        Ownable(lpStakingPool).renounceOwnership();
        V2_POOL = _v2Pool;
        emit Initialize(_msgSender(), _v2Pool);
    }

    /// @notice The ```totalSupply``` function returns the total pTKN supply minted, excluding any used for _flashMint
    /// @return _totalSupply Valid supply of pTKN excluding flashMinted pTKNs
    function totalSupply() public view override(IERC20, ERC20Upgradeable) returns (uint256) {
        return _totalSupply;
    }

    /// @notice The ```_update``` function overrides the standard ERC20 _update to handle fee processing for a pod
    /// @param _from Where pTKN are being transferred from
    /// @param _to Where pTKN are being transferred to
    /// @param _amount Amount of pTKN being transferred
    function _update(address _from, address _to, uint256 _amount) internal override {
        require(!_blacklist[_to], "BK");
        if (_from == address(0) || _to == address(0)) {
            super._update(_from, _to, _amount);
            return;
        }
        bool _buy = _from == V2_POOL && _to != V2_ROUTER;
        bool _sell = _to == V2_POOL;
        uint256 _fee;
        if (_swapping == 0 && _swapAndFeeOn == 1) {
            if (_from != V2_POOL) {
                _processPreSwapFeesAndSwap();
            }
            if (_buy && _fees.buy > 0) {
                _fee = (_amount * _fees.buy) / DEN;
                super._update(_from, address(this), _fee);
            } else if (_sell && _fees.sell > 0) {
                _fee = (_amount * _fees.sell) / DEN;
                super._update(_from, address(this), _fee);
            } else if (!_buy && !_sell && _config.hasTransferTax) {
                _fee = _amount / 10000; // 0.01%
                _fee = _fee == 0 && _amount > 0 ? 1 : _fee;
                super._update(_from, address(this), _fee);
            }
        }
        _processBurnFee(_fee);
        super._update(_from, _to, _amount - _fee);
    }

    /// @notice The ```_processPreSwapFeesAndSwap``` function processes fees that could be pending for a pod
    function _processPreSwapFeesAndSwap() internal {
        if (_shortCircuitRewards == 1) {
            return;
        }
        bool _passesSwapDelay = block.timestamp > _lastSwap + SWAP_DELAY;
        if (!_passesSwapDelay) {
            return;
        }
        uint256 _bal = balanceOf(address(this));
        if (_bal == 0) {
            return;
        }
        uint256 _lpBal = balanceOf(V2_POOL);
        uint256 _min = block.chainid == 1 ? _lpBal / 1000 : _lpBal / 4000; // 0.1%/0.025% LP bal
        uint256 _max = _lpBal / 100; // 1%
        if (_bal >= _min && _lpBal > 0) {
            _swapping = 1;
            _lastSwap = uint64(block.timestamp);
            uint256 _totalAmt = _bal > _max ? _max : _bal;
            uint256 _partnerAmt;
            if (_fees.partner > 0 && _config.partner != address(0)) {
                _partnerAmt = (_totalAmt * _fees.partner) / DEN;
                super._update(address(this), _config.partner, _partnerAmt);
            }
            _feeSwap(_totalAmt - _partnerAmt);
            _swapping = 0;
        }
    }

    /// @notice The ```_processBurnFee``` function burns pTKN based on the burn fee, which turns the pod
    /// @notice into a vault where holders have more underlying TKN to pTKN as burn fees process over time
    /// @param _amtToProcess Number of pTKN being burned
    function _processBurnFee(uint256 _amtToProcess) internal {
        if (_amtToProcess == 0 || _fees.burn == 0) {
            return;
        }
        uint256 _burnAmt = (_amtToProcess * _fees.burn) / DEN;
        _totalSupply -= _burnAmt;
        _burn(address(this), _burnAmt);
    }

    /// @notice The ```_feeSwap``` function processes built up fees by converting to pairedLpToken
    /// @param _amount Number of pTKN being processed for yield
    function _feeSwap(uint256 _amount) internal {
        _approve(address(this), address(DEX_HANDLER), _amount);
        address _rewards = IStakingPoolToken(lpStakingPool).POOL_REWARDS();
        uint256 _pairedLpBalBefore = IERC20(PAIRED_LP_TOKEN).balanceOf(_rewards);
        DEX_HANDLER.swapV2Single(address(this), PAIRED_LP_TOKEN, _amount, 0, _rewards);

        if (PAIRED_LP_TOKEN == lpRewardsToken) {
            uint256 _newPairedLpTkns = IERC20(PAIRED_LP_TOKEN).balanceOf(_rewards) - _pairedLpBalBefore;
            if (_newPairedLpTkns > 0) {
                ITokenRewards(_rewards).depositRewardsNoTransfer(PAIRED_LP_TOKEN, _newPairedLpTkns);
            }
        } else if (IERC20(PAIRED_LP_TOKEN).balanceOf(_rewards) > 0) {
            ITokenRewards(_rewards).depositFromPairedLpToken(0);
        }
    }

    /// @notice The ```_transferFromAndValidate``` function is basically the _transfer with hardcoded _to to this CA and executes
    /// @notice a token transfer with balance validation to revert if balances aren't updated as expected
    /// @notice on transfer (i.e. transfer fees, etc.)
    /// @param _token The token we're transferring
    /// @param _sender The token we're transferring
    /// @param _amount Number of tokens to transfer
    function _transferFromAndValidate(IERC20 _token, address _sender, uint256 _amount) internal {
        uint256 _balanceBefore = _token.balanceOf(address(this));
        _token.safeTransferFrom(_sender, address(this), _amount);
        require(_token.balanceOf(address(this)) >= _balanceBefore + _amount, "TV");
    }

    /// @notice The ```_internalBond``` function should be called from external bond() to handle validation and partner logic
    function _internalBond() internal {
        require(_isSetup, "I");
        if (_partnerFirstWrapped == 0 && _msgSender() == _config.partner) {
            _partnerFirstWrapped = uint64(block.timestamp);
        }
    }

    /// @notice The ```_canWrapFeeFree``` function checks if the wrapping user can wrap without fees
    /// @param _wrapper The user wrapping into the pod
    /// @return bool Whether the user can wrap fee free
    function _canWrapFeeFree(address _wrapper) internal view returns (bool) {
        return _isFirstIn()
            || (_wrapper == _config.partner && _partnerFirstWrapped == 0 && block.timestamp <= created + 7 days);
    }

    /// @notice The ```_isFirstIn``` function confirms if the user is the first to wrap
    /// @return bool Whether the user is the first one in
    function _isFirstIn() internal view returns (bool) {
        return _totalSupply == 0;
    }

    /// @notice The ```_isLastOut``` function checks if the user is the last one out
    /// @param _debondAmount Number of pTKN being unwrapped
    /// @return bool Whether the user is the last one out
    function _isLastOut(uint256 _debondAmount) internal view returns (bool) {
        return _debondAmount >= (_totalSupply * 99) / 100;
    }

    /// @notice The ```processPreSwapFeesAndSwap``` function allows the rewards CA for the pod to process fees as needed
    function processPreSwapFeesAndSwap() external override lock {
        require(_msgSender() == IStakingPoolToken(lpStakingPool).POOL_REWARDS(), "R");
        _processPreSwapFeesAndSwap();
    }

    function BOND_FEE() external view override returns (uint16) {
        return _fees.bond;
    }

    function DEBOND_FEE() external view override returns (uint16) {
        return _fees.debond;
    }

    function config() external view override returns (Config memory) {
        return _config;
    }

    function fees() external view override returns (Fees memory) {
        return _fees;
    }

    function isAsset(address _token) public view override returns (bool) {
        return _isTokenInIndex[_token];
    }

    function getAllAssets() external view override returns (IndexAssetInfo[] memory) {
        return indexTokens;
    }

    /// @notice The ```burn``` function allows any user to burn an amount of their pTKN
    /// @param _amount Number of pTKN to burn
    function burn(uint256 _amount) external lock {
        _totalSupply -= _amount;
        _burn(_msgSender(), _amount);
    }

    /// @notice The ```addLiquidityV2``` function mints new liquidity for the pod
    /// @param _pTKNLPTokens Number pTKN to add to liquidity
    /// @param _pairedLPTokens Number of pairedLpToken to add to liquidity
    /// @param _slippage LP slippage with 1000 precision
    /// @param _deadline LP validation deadline
    /// @return _liquidity Number of new liquidity tokens minted
    function addLiquidityV2(
        uint256 _pTKNLPTokens,
        uint256 _pairedLPTokens,
        uint256 _slippage, // 100 == 10%, 1000 == 100%
        uint256 _deadline
    ) external override lock noSwapOrFee returns (uint256) {
        uint256 _idxTokensBefore = balanceOf(address(this));
        uint256 _pairedBefore = IERC20(PAIRED_LP_TOKEN).balanceOf(address(this));

        super._update(_msgSender(), address(this), _pTKNLPTokens);
        _approve(address(this), address(DEX_HANDLER), _pTKNLPTokens);

        IERC20(PAIRED_LP_TOKEN).safeTransferFrom(_msgSender(), address(this), _pairedLPTokens);
        IERC20(PAIRED_LP_TOKEN).safeIncreaseAllowance(address(DEX_HANDLER), _pairedLPTokens);

        uint256 _poolBalBefore = IERC20(DEX_HANDLER.getV2Pool(address(this), PAIRED_LP_TOKEN)).balanceOf(_msgSender());
        DEX_HANDLER.addLiquidity(
            address(this),
            PAIRED_LP_TOKEN,
            _pTKNLPTokens,
            _pairedLPTokens,
            (_pTKNLPTokens * (1000 - _slippage)) / 1000,
            (_pairedLPTokens * (1000 - _slippage)) / 1000,
            _msgSender(),
            _deadline
        );
        IERC20(PAIRED_LP_TOKEN).safeIncreaseAllowance(address(DEX_HANDLER), 0);

        // check & refund excess tokens from LPing
        if (balanceOf(address(this)) > _idxTokensBefore) {
            super._update(address(this), _msgSender(), balanceOf(address(this)) - _idxTokensBefore);
        }
        if (IERC20(PAIRED_LP_TOKEN).balanceOf(address(this)) > _pairedBefore) {
            IERC20(PAIRED_LP_TOKEN).safeTransfer(
                _msgSender(), IERC20(PAIRED_LP_TOKEN).balanceOf(address(this)) - _pairedBefore
            );
        }
        emit AddLiquidity(_msgSender(), _pTKNLPTokens, _pairedLPTokens);
        return IERC20(DEX_HANDLER.getV2Pool(address(this), PAIRED_LP_TOKEN)).balanceOf(_msgSender()) - _poolBalBefore;
    }

    /// @notice The ```removeLiquidityV2``` function burns pod liquidity
    /// @param _lpTokens Number of liquidity tokens to burn/remove
    /// @param _minIdxTokens Number of pTKN to receive at a minimum, slippage
    /// @param _minPairedLpToken Number of pairedLpToken to receive at a minimum, slippage
    /// @param _deadline LP validation deadline
    function removeLiquidityV2(
        uint256 _lpTokens,
        uint256 _minIdxTokens, // 0 == 100% slippage
        uint256 _minPairedLpToken, // 0 == 100% slippage
        uint256 _deadline
    ) external override lock noSwapOrFee {
        _lpTokens = _lpTokens == 0 ? IERC20(V2_POOL).balanceOf(_msgSender()) : _lpTokens;
        require(_lpTokens > 0, "LT");

        IERC20(V2_POOL).safeTransferFrom(_msgSender(), address(this), _lpTokens);
        IERC20(V2_POOL).safeIncreaseAllowance(address(DEX_HANDLER), _lpTokens);
        DEX_HANDLER.removeLiquidity(
            address(this), PAIRED_LP_TOKEN, _lpTokens, _minIdxTokens, _minPairedLpToken, _msgSender(), _deadline
        );
        emit RemoveLiquidity(_msgSender(), _lpTokens);
    }

    /// @notice The ```flash``` function allows to flash loan underlying TKN from the pod
    /// @param _recipient User to receive underlying TKN for the flash loan
    /// @param _token TKN to borrow
    /// @param _amount Number of underying TKN to borrow
    /// @param _data Any data the recipient wants to be passed on the flash loan callback
    function flash(address _recipient, address _token, uint256 _amount, bytes calldata _data) external override lock {
        require(_isTokenInIndex[_token], "X");
        address _rewards = IStakingPoolToken(lpStakingPool).POOL_REWARDS();
        address _feeRecipient = lpRewardsToken == DAI
            ? address(this)
            : PAIRED_LP_TOKEN == DAI ? _rewards : Ownable(address(V3_TWAP_UTILS)).owner();
        IERC20(DAI).safeTransferFrom(_msgSender(), _feeRecipient, FLASH_FEE_AMOUNT_DAI);
        if (lpRewardsToken == DAI) {
            IERC20(DAI).safeIncreaseAllowance(_rewards, FLASH_FEE_AMOUNT_DAI);
            ITokenRewards(_rewards).depositRewards(DAI, FLASH_FEE_AMOUNT_DAI);
        } else if (PAIRED_LP_TOKEN == DAI) {
            ITokenRewards(_rewards).depositFromPairedLpToken(0);
        }
        uint256 _balance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).safeTransfer(_recipient, _amount);
        IFlashLoanRecipient(_recipient).callback(_data);
        require(IERC20(_token).balanceOf(address(this)) >= _balance, "FA");
        emit FlashLoan(_msgSender(), _recipient, _token, _amount);
    }

    /// @notice The ```flashMint``` function allows to flash mint pTKN and burn it + 0.1% at the end of the transaction
    /// @param _recipient User to receive pTKN for the flash mint
    /// @param _amount Number of pTKN to receive/mint
    /// @param _data Any data the recipient wants to be passed on the flash mint callback
    function flashMint(address _recipient, uint256 _amount, bytes calldata _data) external override lock {
        isFlashMinting = 1;
        _shortCircuitRewards = 1;
        _totalAssets0PreFlashMint = _totalAssets[indexTokens[0].token];
        _totalSupplyPreFlashMint = _totalSupply;

        uint256 _fee = _amount / 1000;
        _fee = _fee == 0 ? 1 : _fee;

        uint256 _balance = balanceOf(address(this));
        _mint(_recipient, _amount);
        IFlashLoanRecipient(_recipient).callback(_data);
        // recipient should have transferred pTKN back here to burn
        require(balanceOf(address(this)) >= _balance + _amount + _fee, "FMA");
        // only adjust _totalSupply by fee since we didn't add to supply at mint during flash mint
        _totalSupply -= _fee;
        _burn(address(this), _amount + _fee);

        _totalAssets0PreFlashMint = 0;
        _totalSupplyPreFlashMint = 0;
        _shortCircuitRewards = 0;
        isFlashMinting = 0;
        emit FlashMint(_msgSender(), _recipient, _amount);
    }

    function setPartner(address _partner) external onlyPartner {
        _config.partner = _partner;
        emit SetPartner(_msgSender(), _partner);
    }

    function setPartnerFee(uint16 _fee) external onlyPartner {
        require(_fee < _fees.partner, "L");
        _fees.partner = _fee;
        emit SetPartnerFee(_msgSender(), _fee);
    }

    function setLpStakingPool(address _pool) external {
        require(_msgSender() == CREATOR && lpStakingPool == address(0), "I");
        lpStakingPool = _pool;
    }

    receive() external payable {}
}

File 9 of 39 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

File 10 of 39 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 11 of 39 : ContextUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;
import {Initializable} from "../proxy/utils/Initializable.sol";

/**
 * @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 ContextUpgradeable is Initializable {
    function __Context_init() internal onlyInitializing {
    }

    function __Context_init_unchained() internal onlyInitializing {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 12 of 39 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 13 of 39 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * ==== Security Considerations
 *
 * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
 * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
 * considered as an intention to spend the allowance in any specific way. The second is that because permits have
 * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
 * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
 * generally recommended is:
 *
 * ```solidity
 * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
 *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
 *     doThing(..., value);
 * }
 *
 * function doThing(..., uint256 value) public {
 *     token.safeTransferFrom(msg.sender, address(this), value);
 *     ...
 * }
 * ```
 *
 * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
 * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
 * {SafeERC20-safeTransferFrom}).
 *
 * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
 * contracts should have entry points that don't rely on permit.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     *
     * CAUTION: See Security Considerations above.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 14 of 39 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.20;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS
    }

    /**
     * @dev The signature derives the `address(0)`.
     */
    error ECDSAInvalidSignature();

    /**
     * @dev The signature has an invalid length.
     */
    error ECDSAInvalidSignatureLength(uint256 length);

    /**
     * @dev The signature has an S value that is in the upper half order.
     */
    error ECDSAInvalidSignatureS(bytes32 s);

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not
     * return address(0) without also returning an error description. Errors are documented using an enum (error type)
     * and a bytes32 providing additional information about the error.
     *
     * If no error is returned, then the address can be used for verification purposes.
     *
     * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     */
    function tryRecover(
        bytes32 hash,
        bytes memory signature
    ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly ("memory-safe") {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length));
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[ERC-2098 short signatures]
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) {
        unchecked {
            bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
            // We do not check for an overflow here since the shift operation results in 0 or 1.
            uint8 v = uint8((uint256(vs) >> 255) + 27);
            return tryRecover(hash, v, r, s);
        }
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     */
    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS, s);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature, bytes32(0));
        }

        return (signer, RecoverError.NoError, bytes32(0));
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided.
     */
    function _throwError(RecoverError error, bytes32 errorArg) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert ECDSAInvalidSignature();
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert ECDSAInvalidSignatureLength(uint256(errorArg));
        } else if (error == RecoverError.InvalidSignatureS) {
            revert ECDSAInvalidSignatureS(errorArg);
        }
    }
}

File 15 of 39 : EIP712Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/EIP712.sol)

pragma solidity ^0.8.20;

import {MessageHashUtils} from "@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol";
import {IERC5267} from "@openzeppelin/contracts/interfaces/IERC5267.sol";
import {Initializable} from "../../proxy/utils/Initializable.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP-712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose
 * encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract
 * does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to
 * produce the hash of their typed data using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP-712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain
 * separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the
 * separator from the immutable values, which is cheaper than accessing a cached version in cold storage.
 */
abstract contract EIP712Upgradeable is Initializable, IERC5267 {
    bytes32 private constant TYPE_HASH =
        keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");

    /// @custom:storage-location erc7201:openzeppelin.storage.EIP712
    struct EIP712Storage {
        /// @custom:oz-renamed-from _HASHED_NAME
        bytes32 _hashedName;
        /// @custom:oz-renamed-from _HASHED_VERSION
        bytes32 _hashedVersion;

        string _name;
        string _version;
    }

    // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.EIP712")) - 1)) & ~bytes32(uint256(0xff))
    bytes32 private constant EIP712StorageLocation = 0xa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d100;

    function _getEIP712Storage() private pure returns (EIP712Storage storage $) {
        assembly {
            $.slot := EIP712StorageLocation
        }
    }

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP-712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    function __EIP712_init(string memory name, string memory version) internal onlyInitializing {
        __EIP712_init_unchained(name, version);
    }

    function __EIP712_init_unchained(string memory name, string memory version) internal onlyInitializing {
        EIP712Storage storage $ = _getEIP712Storage();
        $._name = name;
        $._version = version;

        // Reset prior values in storage if upgrading
        $._hashedName = 0;
        $._hashedVersion = 0;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        return _buildDomainSeparator();
    }

    function _buildDomainSeparator() private view returns (bytes32) {
        return keccak256(abi.encode(TYPE_HASH, _EIP712NameHash(), _EIP712VersionHash(), block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return MessageHashUtils.toTypedDataHash(_domainSeparatorV4(), structHash);
    }

    /**
     * @dev See {IERC-5267}.
     */
    function eip712Domain()
        public
        view
        virtual
        returns (
            bytes1 fields,
            string memory name,
            string memory version,
            uint256 chainId,
            address verifyingContract,
            bytes32 salt,
            uint256[] memory extensions
        )
    {
        EIP712Storage storage $ = _getEIP712Storage();
        // If the hashed name and version in storage are non-zero, the contract hasn't been properly initialized
        // and the EIP712 domain is not reliable, as it will be missing name and version.
        require($._hashedName == 0 && $._hashedVersion == 0, "EIP712: Uninitialized");

        return (
            hex"0f", // 01111
            _EIP712Name(),
            _EIP712Version(),
            block.chainid,
            address(this),
            bytes32(0),
            new uint256[](0)
        );
    }

    /**
     * @dev The name parameter for the EIP712 domain.
     *
     * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs
     * are a concern.
     */
    function _EIP712Name() internal view virtual returns (string memory) {
        EIP712Storage storage $ = _getEIP712Storage();
        return $._name;
    }

    /**
     * @dev The version parameter for the EIP712 domain.
     *
     * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs
     * are a concern.
     */
    function _EIP712Version() internal view virtual returns (string memory) {
        EIP712Storage storage $ = _getEIP712Storage();
        return $._version;
    }

    /**
     * @dev The hash of the name parameter for the EIP712 domain.
     *
     * NOTE: In previous versions this function was virtual. In this version you should override `_EIP712Name` instead.
     */
    function _EIP712NameHash() internal view returns (bytes32) {
        EIP712Storage storage $ = _getEIP712Storage();
        string memory name = _EIP712Name();
        if (bytes(name).length > 0) {
            return keccak256(bytes(name));
        } else {
            // If the name is empty, the contract may have been upgraded without initializing the new storage.
            // We return the name hash in storage if non-zero, otherwise we assume the name is empty by design.
            bytes32 hashedName = $._hashedName;
            if (hashedName != 0) {
                return hashedName;
            } else {
                return keccak256("");
            }
        }
    }

    /**
     * @dev The hash of the version parameter for the EIP712 domain.
     *
     * NOTE: In previous versions this function was virtual. In this version you should override `_EIP712Version` instead.
     */
    function _EIP712VersionHash() internal view returns (bytes32) {
        EIP712Storage storage $ = _getEIP712Storage();
        string memory version = _EIP712Version();
        if (bytes(version).length > 0) {
            return keccak256(bytes(version));
        } else {
            // If the version is empty, the contract may have been upgraded without initializing the new storage.
            // We return the version hash in storage if non-zero, otherwise we assume the version is empty by design.
            bytes32 hashedVersion = $._hashedVersion;
            if (hashedVersion != 0) {
                return hashedVersion;
            } else {
                return keccak256("");
            }
        }
    }
}

File 16 of 39 : NoncesUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Nonces.sol)
pragma solidity ^0.8.20;
import {Initializable} from "../proxy/utils/Initializable.sol";

/**
 * @dev Provides tracking nonces for addresses. Nonces will only increment.
 */
abstract contract NoncesUpgradeable is Initializable {
    /**
     * @dev The nonce used for an `account` is not the expected current nonce.
     */
    error InvalidAccountNonce(address account, uint256 currentNonce);

    /// @custom:storage-location erc7201:openzeppelin.storage.Nonces
    struct NoncesStorage {
        mapping(address account => uint256) _nonces;
    }

    // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Nonces")) - 1)) & ~bytes32(uint256(0xff))
    bytes32 private constant NoncesStorageLocation = 0x5ab42ced628888259c08ac98db1eb0cf702fc1501344311d8b100cd1bfe4bb00;

    function _getNoncesStorage() private pure returns (NoncesStorage storage $) {
        assembly {
            $.slot := NoncesStorageLocation
        }
    }

    function __Nonces_init() internal onlyInitializing {
    }

    function __Nonces_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev Returns the next unused nonce for an address.
     */
    function nonces(address owner) public view virtual returns (uint256) {
        NoncesStorage storage $ = _getNoncesStorage();
        return $._nonces[owner];
    }

    /**
     * @dev Consumes a nonce.
     *
     * Returns the current value and increments nonce.
     */
    function _useNonce(address owner) internal virtual returns (uint256) {
        NoncesStorage storage $ = _getNoncesStorage();
        // For each account, the nonce has an initial value of 0, can only be incremented by one, and cannot be
        // decremented or reset. This guarantees that the nonce never overflows.
        unchecked {
            // It is important to do x++ and not ++x here.
            return $._nonces[owner]++;
        }
    }

    /**
     * @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`.
     */
    function _useCheckedNonce(address owner, uint256 nonce) internal virtual {
        uint256 current = _useNonce(owner);
        if (nonce != current) {
            revert InvalidAccountNonce(owner, current);
        }
    }
}

File 17 of 39 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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 18 of 39 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.2.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";
import {IERC1363} from "../../../interfaces/IERC1363.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC-20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    /**
     * @dev An operation with an ERC-20 token failed.
     */
    error SafeERC20FailedOperation(address token);

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     *
     * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
     * smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
     * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
     * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        forceApprove(token, spender, oldAllowance + value);
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
     * value, non-reverting calls are assumed to be successful.
     *
     * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
     * smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
     * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
     * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
        unchecked {
            uint256 currentAllowance = token.allowance(address(this), spender);
            if (currentAllowance < requestedDecrease) {
                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
            }
            forceApprove(token, spender, currentAllowance - requestedDecrease);
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     *
     * NOTE: If the token implements ERC-7674, this function will not modify any temporary allowance. This function
     * only sets the "standard" allowance. Any temporary allowance will remain active, in addition to the value being
     * set here.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Performs an {ERC1363} transferAndCall, with a fallback to the simple {ERC20} transfer if the target has no
     * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
     * targeting contracts.
     *
     * Reverts if the returned value is other than `true`.
     */
    function transferAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {
        if (to.code.length == 0) {
            safeTransfer(token, to, value);
        } else if (!token.transferAndCall(to, value, data)) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Performs an {ERC1363} transferFromAndCall, with a fallback to the simple {ERC20} transferFrom if the target
     * has no code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
     * targeting contracts.
     *
     * Reverts if the returned value is other than `true`.
     */
    function transferFromAndCallRelaxed(
        IERC1363 token,
        address from,
        address to,
        uint256 value,
        bytes memory data
    ) internal {
        if (to.code.length == 0) {
            safeTransferFrom(token, from, to, value);
        } else if (!token.transferFromAndCall(from, to, value, data)) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Performs an {ERC1363} approveAndCall, with a fallback to the simple {ERC20} approve if the target has no
     * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
     * targeting contracts.
     *
     * NOTE: When the recipient address (`to`) has no code (i.e. is an EOA), this function behaves as {forceApprove}.
     * Opposedly, when the recipient address (`to`) has code, this function only attempts to call {ERC1363-approveAndCall}
     * once without retrying, and relies on the returned value to be true.
     *
     * Reverts if the returned value is other than `true`.
     */
    function approveAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {
        if (to.code.length == 0) {
            forceApprove(token, to, value);
        } else if (!token.approveAndCall(to, value, data)) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturnBool} that reverts if call fails to meet the requirements.
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        uint256 returnSize;
        uint256 returnValue;
        assembly ("memory-safe") {
            let success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
            // bubble errors
            if iszero(success) {
                let ptr := mload(0x40)
                returndatacopy(ptr, 0, returndatasize())
                revert(ptr, returndatasize())
            }
            returnSize := returndatasize()
            returnValue := mload(0)
        }

        if (returnSize == 0 ? address(token).code.length == 0 : returnValue != 1) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silently catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        bool success;
        uint256 returnSize;
        uint256 returnValue;
        assembly ("memory-safe") {
            success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
            returnSize := returndatasize()
            returnValue := mload(0)
        }
        return success && (returnSize == 0 ? address(token).code.length > 0 : returnValue == 1);
    }
}

File 19 of 39 : IDecentralizedIndex.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./IDexAdapter.sol";

interface IDecentralizedIndex is IERC20 {
    enum IndexType {
        WEIGHTED,
        UNWEIGHTED
    }

    struct Config {
        address partner;
        uint256 debondCooldown;
        bool hasTransferTax;
        bool blacklistTKNpTKNPoolV2; // DEPRECATED: we should remove this in future versions
    }

    // all fees: 1 == 0.01%, 10 == 0.1%, 100 == 1%
    struct Fees {
        uint16 burn;
        uint16 bond;
        uint16 debond;
        uint16 buy;
        uint16 sell;
        uint16 partner;
    }

    struct IndexAssetInfo {
        address token;
        uint256 weighting;
        uint256 basePriceUSDX96;
        address c1; // arbitrary contract/address field we can use for an index
        uint256 q1; // arbitrary quantity/number field we can use for an index
    }

    /// @notice The ```Create``` event fires when a new decentralized index has been created
    /// @param newIdx The CA of the new index contract
    /// @param wallet The creator of the new index
    event Create(address indexed newIdx, address indexed wallet);

    /// @notice The ```FlashLoan``` event fires when someone flash loans assets from the pod
    /// @param executor The sender of the request
    /// @param recipient The recipient of the flashed funds
    /// @param token The token being flash loaned
    /// @param amount The amount of token to flash loan
    event FlashLoan(address indexed executor, address indexed recipient, address token, uint256 amount);

    /// @notice The ```FlashMint``` event fires when someone flash mints pTKN from the pod
    /// @param executor The sender of the request
    /// @param recipient The recipient of the flashed funds
    /// @param amount The amount of pTKN to flash mint
    event FlashMint(address indexed executor, address indexed recipient, uint256 amount);

    /// @notice The ```Initialize``` event fires when the new pod has been initialized,
    /// @notice which is at creation on some and in another txn for others (gas limits)
    /// @param wallet The wallet that initialized
    /// @param v2Pool The new UniV2 derivative pool that was created at initialization
    event Initialize(address indexed wallet, address v2Pool);

    /// @notice The ```Bond``` event fires when someone wraps into the pod which mints new pod tokens
    /// @param wallet The wallet that wrapped
    /// @param token The token that was used as a ref to wrap into, representing an underlying tkn
    /// @param amountTokensBonded Amount of underlying tkns used to wrap/bond
    /// @param amountTokensMinted Amount of new pod tokens (pTKN) minted
    event Bond(address indexed wallet, address indexed token, uint256 amountTokensBonded, uint256 amountTokensMinted);

    /// @notice The ```Debond``` event fires when someone unwraps from a pod and redeems underlying tkn(s)
    /// @param wallet The wallet that unwrapped/debond
    /// @param amountDebonded Amount of pTKNs burned/unwrapped
    event Debond(address indexed wallet, uint256 amountDebonded);

    /// @notice The ```AddLiquidity``` event fires when new liquidity (LP) for a pod is added
    /// @param wallet The wallet that added LP
    /// @param amountTokens Amount of pTKNs used for LP
    /// @param amountDAI Amount of pairedLpAsset used for LP
    event AddLiquidity(address indexed wallet, uint256 amountTokens, uint256 amountDAI);

    /// @notice The ```RemoveLiquidity``` event fires when LP is removed for a pod
    /// @param wallet The wallet that removed LP
    /// @param amountLiquidity Amount of liquidity removed
    event RemoveLiquidity(address indexed wallet, uint256 amountLiquidity);

    event SetPartner(address indexed wallet, address newPartner);

    event SetPartnerFee(address indexed wallet, uint16 newFee);

    function BOND_FEE() external view returns (uint16);

    function DEBOND_FEE() external view returns (uint16);

    function DEX_HANDLER() external view returns (IDexAdapter);

    function FLASH_FEE_AMOUNT_DAI() external view returns (uint256);

    function PAIRED_LP_TOKEN() external view returns (address);

    function config() external view returns (Config calldata);

    function fees() external view returns (Fees calldata);

    function unlocked() external view returns (uint8);

    function isFlashMinting() external view returns (uint8);

    function indexType() external view returns (IndexType);

    function created() external view returns (uint256);

    function lpStakingPool() external view returns (address);

    function lpRewardsToken() external view returns (address);

    function isAsset(address token) external view returns (bool);

    function getAllAssets() external view returns (IndexAssetInfo[] memory);

    function getInitialAmount(address sToken, uint256 sAmount, address tToken) external view returns (uint256);

    function processPreSwapFeesAndSwap() external;

    function totalAssets() external view returns (uint256 totalManagedAssets);

    function totalAssets(address asset) external view returns (uint256 totalManagedAssets);

    function convertToShares(uint256 assets) external view returns (uint256 shares);

    function convertToAssets(uint256 shares) external view returns (uint256 assets);

    function convertToAssetsPreFlashMint(uint256 shares) external view returns (uint256 assets);

    function setup() external;

    function bond(address token, uint256 amount, uint256 amountMintMin) external;

    function debond(uint256 amount, address[] memory token, uint8[] memory percentage) external;

    function addLiquidityV2(uint256 idxTokens, uint256 daiTokens, uint256 slippage, uint256 deadline)
        external
        returns (uint256);

    function removeLiquidityV2(uint256 lpTokens, uint256 minTokens, uint256 minDAI, uint256 deadline) external;

    function flash(address recipient, address token, uint256 amount, bytes calldata data) external;

    function flashMint(address recipient, uint256 amount, bytes calldata data) external;

    function setLpStakingPool(address lpStakingPool) external;
}

File 20 of 39 : IDexAdapter.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;

interface IDexAdapter {
    function ASYNC_INITIALIZE() external view returns (bool);

    function V2_ROUTER() external view returns (address);

    function V3_ROUTER() external view returns (address);

    function WETH() external view returns (address);

    function getV3Pool(address _token0, address _token1, int24 _tickSpacing) external view returns (address _pool);

    function getV3Pool(address _token0, address _token1, uint24 _poolFee) external view returns (address _pool);

    function getV2Pool(address _token0, address _token1) external view returns (address _pool);

    function createV2Pool(address _token0, address _token1) external returns (address _pool);

    function getReserves(address _pool) external view returns (uint112, uint112);

    function swapV2Single(
        address _tokenIn,
        address _tokenOut,
        uint256 _amountIn,
        uint256 _amountOutMin,
        address _recipient
    ) external returns (uint256 _amountOut);

    function swapV2SingleExactOut(
        address _tokenIn,
        address _tokenOut,
        uint256 _amountInMax,
        uint256 _amountOut,
        address _recipient
    ) external returns (uint256 _amountInUsed);

    function swapV3Single(
        address _tokenIn,
        address _tokenOut,
        uint24 _fee,
        uint256 _amountIn,
        uint256 _amountOutMin,
        address _recipient
    ) external returns (uint256 _amountOut);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external;

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external;
}

File 21 of 39 : IFlashLoanRecipient.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;

interface IFlashLoanRecipient {
    function callback(bytes calldata data) external;
}

File 22 of 39 : IProtocolFeeRouter.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;

import "./IProtocolFees.sol";

interface IProtocolFeeRouter {
    function protocolFees() external view returns (IProtocolFees);
}

File 23 of 39 : IRewardsWhitelister.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;

interface IRewardsWhitelister {
    event PauseToken(address indexed token, bool isPaused);

    event SetWhitelistFromDebondFees(address addy, bool isWhitelisted);

    event ToggleToken(address indexed token, bool isWhitelisted);

    function isWhitelistedFromDebondFee(address addy) external view returns (bool);

    function paused(address token) external view returns (bool);

    function whitelist(address token) external view returns (bool);

    function getFullWhitelist() external view returns (address[] memory);
}

File 24 of 39 : IStakingPoolToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;

interface IStakingPoolToken {
    event Stake(address indexed executor, address indexed user, uint256 amount);

    event Unstake(address indexed user, uint256 amount);

    function INDEX_FUND() external view returns (address);

    function POOL_REWARDS() external view returns (address);

    function stakingToken() external view returns (address);

    function stakeUserRestriction() external view returns (address);

    function stake(address user, uint256 amount) external;

    function unstake(uint256 amount) external;

    function setPoolRewards(address poolRewards) external;

    function setStakingToken(address stakingToken) external;
}

File 25 of 39 : ITokenRewards.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;

interface ITokenRewards {
    event AddShares(address indexed wallet, uint256 amount);

    event RemoveShares(address indexed wallet, uint256 amount);

    event ClaimReward(address indexed wallet);

    event DistributeReward(address indexed wallet, address indexed token, uint256 amount);

    event DepositRewards(address indexed wallet, address indexed token, uint256 amount);

    event RewardSwapError(uint256 amountIn);

    function totalShares() external view returns (uint256);

    function totalStakers() external view returns (uint256);

    function rewardsToken() external view returns (address);

    function trackingToken() external view returns (address);

    function depositFromPairedLpToken(uint256 amount) external;

    function depositRewards(address token, uint256 amount) external;

    function depositRewardsNoTransfer(address token, uint256 amount) external;

    function claimReward(address wallet) external;

    function getAllRewardsTokens() external view returns (address[] memory);

    function setShares(address wallet, uint256 amount, bool sharesRemoving) external;
}

File 26 of 39 : IV3TwapUtilities.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;

interface IV3TwapUtilities {
    function getV3Pool(address v3Factory, address token0, address token1) external view returns (address);

    function getV3Pool(address v3Factory, address token0, address token1, uint24 poolFee)
        external
        view
        returns (address);

    function getV3Pool(address v3Factory, address token0, address token1, int24 tickSpacing)
        external
        view
        returns (address);

    function getPoolPriceUSDX96(address pricePool, address nativeStablePool, address WETH9)
        external
        view
        returns (uint256);

    function sqrtPriceX96FromPoolAndInterval(address pool) external view returns (uint160);

    function sqrtPriceX96FromPoolAndPassedInterval(address pool, uint32 interval) external view returns (uint160);

    function priceX96FromSqrtPriceX96(uint160 sqrtPriceX96) external pure returns (uint256);
}

File 27 of 39 : MessageHashUtils.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/MessageHashUtils.sol)

pragma solidity ^0.8.20;

import {Strings} from "../Strings.sol";

/**
 * @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.
 *
 * The library provides methods for generating a hash of a message that conforms to the
 * https://eips.ethereum.org/EIPS/eip-191[ERC-191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]
 * specifications.
 */
library MessageHashUtils {
    /**
     * @dev Returns the keccak256 digest of an ERC-191 signed data with version
     * `0x45` (`personal_sign` messages).
     *
     * The digest is calculated by prefixing a bytes32 `messageHash` with
     * `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the
     * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.
     *
     * NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with
     * keccak256, although any bytes32 value can be safely used because the final digest will
     * be re-hashed.
     *
     * See {ECDSA-recover}.
     */
    function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) {
        assembly ("memory-safe") {
            mstore(0x00, "\x19Ethereum Signed Message:\n32") // 32 is the bytes-length of messageHash
            mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix
            digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20)
        }
    }

    /**
     * @dev Returns the keccak256 digest of an ERC-191 signed data with version
     * `0x45` (`personal_sign` messages).
     *
     * The digest is calculated by prefixing an arbitrary `message` with
     * `"\x19Ethereum Signed Message:\n" + len(message)` and hashing the result. It corresponds with the
     * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.
     *
     * See {ECDSA-recover}.
     */
    function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) {
        return
            keccak256(bytes.concat("\x19Ethereum Signed Message:\n", bytes(Strings.toString(message.length)), message));
    }

    /**
     * @dev Returns the keccak256 digest of an ERC-191 signed data with version
     * `0x00` (data with intended validator).
     *
     * The digest is calculated by prefixing an arbitrary `data` with `"\x19\x00"` and the intended
     * `validator` address. Then hashing the result.
     *
     * See {ECDSA-recover}.
     */
    function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(hex"19_00", validator, data));
    }

    /**
     * @dev Returns the keccak256 digest of an EIP-712 typed data (ERC-191 version `0x01`).
     *
     * The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with
     * `\x19\x01` and hashing the result. It corresponds to the hash signed by the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712.
     *
     * See {ECDSA-recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) {
        assembly ("memory-safe") {
            let ptr := mload(0x40)
            mstore(ptr, hex"19_01")
            mstore(add(ptr, 0x02), domainSeparator)
            mstore(add(ptr, 0x22), structHash)
            digest := keccak256(ptr, 0x42)
        }
    }
}

File 28 of 39 : IERC5267.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5267.sol)

pragma solidity ^0.8.20;

interface IERC5267 {
    /**
     * @dev MAY be emitted to signal that the domain could have changed.
     */
    event EIP712DomainChanged();

    /**
     * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712
     * signature.
     */
    function eip712Domain()
        external
        view
        returns (
            bytes1 fields,
            string memory name,
            string memory version,
            uint256 chainId,
            address verifyingContract,
            bytes32 salt,
            uint256[] memory extensions
        );
}

File 29 of 39 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 30 of 39 : IERC1363.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/IERC1363.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC165} from "./IERC165.sol";

/**
 * @title IERC1363
 * @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363].
 *
 * Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract
 * after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction.
 */
interface IERC1363 is IERC20, IERC165 {
    /*
     * Note: the ERC-165 identifier for this interface is 0xb0202a11.
     * 0xb0202a11 ===
     *   bytes4(keccak256('transferAndCall(address,uint256)')) ^
     *   bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^
     *   bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^
     *   bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)')) ^
     *   bytes4(keccak256('approveAndCall(address,uint256)')) ^
     *   bytes4(keccak256('approveAndCall(address,uint256,bytes)'))
     */

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferAndCall(address to, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @param data Additional data with no specified format, sent in call to `to`.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param from The address which you want to send tokens from.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferFromAndCall(address from, address to, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param from The address which you want to send tokens from.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @param data Additional data with no specified format, sent in call to `to`.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferFromAndCall(address from, address to, uint256 value, bytes calldata data) external returns (bool);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function approveAndCall(address spender, uint256 value) external returns (bool);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     * @param data Additional data with no specified format, sent in call to `spender`.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function approveAndCall(address spender, uint256 value, bytes calldata data) external returns (bool);
}

File 31 of 39 : IProtocolFees.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;

interface IProtocolFees {
    event SetYieldAdmin(uint256 newFee);
    event SetYieldBurn(uint256 newFee);

    function DEN() external view returns (uint256);

    function yieldAdmin() external view returns (uint256);

    function yieldBurn() external view returns (uint256);
}

File 32 of 39 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.2.0) (utils/Strings.sol)

pragma solidity ^0.8.20;

import {Math} from "./math/Math.sol";
import {SafeCast} from "./math/SafeCast.sol";
import {SignedMath} from "./math/SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    using SafeCast for *;

    bytes16 private constant HEX_DIGITS = "0123456789abcdef";
    uint8 private constant ADDRESS_LENGTH = 20;

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev The string being parsed contains characters that are not in scope of the given base.
     */
    error StringsInvalidChar();

    /**
     * @dev The string being parsed is not a properly formatted address.
     */
    error StringsInvalidAddressFormat();

    /**
     * @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;
            assembly ("memory-safe") {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                assembly ("memory-safe") {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        uint256 localValue = value;
        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] = HEX_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        return string(buffer);
    }

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal
     * representation, according to EIP-55.
     */
    function toChecksumHexString(address addr) internal pure returns (string memory) {
        bytes memory buffer = bytes(toHexString(addr));

        // hash the hex part of buffer (skip length + 2 bytes, length 40)
        uint256 hashValue;
        assembly ("memory-safe") {
            hashValue := shr(96, keccak256(add(buffer, 0x22), 40))
        }

        for (uint256 i = 41; i > 1; --i) {
            // possible values for buffer[i] are 48 (0) to 57 (9) and 97 (a) to 102 (f)
            if (hashValue & 0xf > 7 && uint8(buffer[i]) > 96) {
                // case shift by xoring with 0x20
                buffer[i] ^= 0x20;
            }
            hashValue >>= 4;
        }
        return string(buffer);
    }

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

    /**
     * @dev Parse a decimal string and returns the value as a `uint256`.
     *
     * Requirements:
     * - The string must be formatted as `[0-9]*`
     * - The result must fit into an `uint256` type
     */
    function parseUint(string memory input) internal pure returns (uint256) {
        return parseUint(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseUint} that parses a substring of `input` located between position `begin` (included) and
     * `end` (excluded).
     *
     * Requirements:
     * - The substring must be formatted as `[0-9]*`
     * - The result must fit into an `uint256` type
     */
    function parseUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) {
        (bool success, uint256 value) = tryParseUint(input, begin, end);
        if (!success) revert StringsInvalidChar();
        return value;
    }

    /**
     * @dev Variant of {parseUint-string} that returns false if the parsing fails because of an invalid character.
     *
     * NOTE: This function will revert if the result does not fit in a `uint256`.
     */
    function tryParseUint(string memory input) internal pure returns (bool success, uint256 value) {
        return _tryParseUintUncheckedBounds(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseUint-string-uint256-uint256} that returns false if the parsing fails because of an invalid
     * character.
     *
     * NOTE: This function will revert if the result does not fit in a `uint256`.
     */
    function tryParseUint(
        string memory input,
        uint256 begin,
        uint256 end
    ) internal pure returns (bool success, uint256 value) {
        if (end > bytes(input).length || begin > end) return (false, 0);
        return _tryParseUintUncheckedBounds(input, begin, end);
    }

    /**
     * @dev Implementation of {tryParseUint} that does not check bounds. Caller should make sure that
     * `begin <= end <= input.length`. Other inputs would result in undefined behavior.
     */
    function _tryParseUintUncheckedBounds(
        string memory input,
        uint256 begin,
        uint256 end
    ) private pure returns (bool success, uint256 value) {
        bytes memory buffer = bytes(input);

        uint256 result = 0;
        for (uint256 i = begin; i < end; ++i) {
            uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i)));
            if (chr > 9) return (false, 0);
            result *= 10;
            result += chr;
        }
        return (true, result);
    }

    /**
     * @dev Parse a decimal string and returns the value as a `int256`.
     *
     * Requirements:
     * - The string must be formatted as `[-+]?[0-9]*`
     * - The result must fit in an `int256` type.
     */
    function parseInt(string memory input) internal pure returns (int256) {
        return parseInt(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseInt-string} that parses a substring of `input` located between position `begin` (included) and
     * `end` (excluded).
     *
     * Requirements:
     * - The substring must be formatted as `[-+]?[0-9]*`
     * - The result must fit in an `int256` type.
     */
    function parseInt(string memory input, uint256 begin, uint256 end) internal pure returns (int256) {
        (bool success, int256 value) = tryParseInt(input, begin, end);
        if (!success) revert StringsInvalidChar();
        return value;
    }

    /**
     * @dev Variant of {parseInt-string} that returns false if the parsing fails because of an invalid character or if
     * the result does not fit in a `int256`.
     *
     * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`.
     */
    function tryParseInt(string memory input) internal pure returns (bool success, int256 value) {
        return _tryParseIntUncheckedBounds(input, 0, bytes(input).length);
    }

    uint256 private constant ABS_MIN_INT256 = 2 ** 255;

    /**
     * @dev Variant of {parseInt-string-uint256-uint256} that returns false if the parsing fails because of an invalid
     * character or if the result does not fit in a `int256`.
     *
     * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`.
     */
    function tryParseInt(
        string memory input,
        uint256 begin,
        uint256 end
    ) internal pure returns (bool success, int256 value) {
        if (end > bytes(input).length || begin > end) return (false, 0);
        return _tryParseIntUncheckedBounds(input, begin, end);
    }

    /**
     * @dev Implementation of {tryParseInt} that does not check bounds. Caller should make sure that
     * `begin <= end <= input.length`. Other inputs would result in undefined behavior.
     */
    function _tryParseIntUncheckedBounds(
        string memory input,
        uint256 begin,
        uint256 end
    ) private pure returns (bool success, int256 value) {
        bytes memory buffer = bytes(input);

        // Check presence of a negative sign.
        bytes1 sign = begin == end ? bytes1(0) : bytes1(_unsafeReadBytesOffset(buffer, begin)); // don't do out-of-bound (possibly unsafe) read if sub-string is empty
        bool positiveSign = sign == bytes1("+");
        bool negativeSign = sign == bytes1("-");
        uint256 offset = (positiveSign || negativeSign).toUint();

        (bool absSuccess, uint256 absValue) = tryParseUint(input, begin + offset, end);

        if (absSuccess && absValue < ABS_MIN_INT256) {
            return (true, negativeSign ? -int256(absValue) : int256(absValue));
        } else if (absSuccess && negativeSign && absValue == ABS_MIN_INT256) {
            return (true, type(int256).min);
        } else return (false, 0);
    }

    /**
     * @dev Parse a hexadecimal string (with or without "0x" prefix), and returns the value as a `uint256`.
     *
     * Requirements:
     * - The string must be formatted as `(0x)?[0-9a-fA-F]*`
     * - The result must fit in an `uint256` type.
     */
    function parseHexUint(string memory input) internal pure returns (uint256) {
        return parseHexUint(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseHexUint} that parses a substring of `input` located between position `begin` (included) and
     * `end` (excluded).
     *
     * Requirements:
     * - The substring must be formatted as `(0x)?[0-9a-fA-F]*`
     * - The result must fit in an `uint256` type.
     */
    function parseHexUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) {
        (bool success, uint256 value) = tryParseHexUint(input, begin, end);
        if (!success) revert StringsInvalidChar();
        return value;
    }

    /**
     * @dev Variant of {parseHexUint-string} that returns false if the parsing fails because of an invalid character.
     *
     * NOTE: This function will revert if the result does not fit in a `uint256`.
     */
    function tryParseHexUint(string memory input) internal pure returns (bool success, uint256 value) {
        return _tryParseHexUintUncheckedBounds(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseHexUint-string-uint256-uint256} that returns false if the parsing fails because of an
     * invalid character.
     *
     * NOTE: This function will revert if the result does not fit in a `uint256`.
     */
    function tryParseHexUint(
        string memory input,
        uint256 begin,
        uint256 end
    ) internal pure returns (bool success, uint256 value) {
        if (end > bytes(input).length || begin > end) return (false, 0);
        return _tryParseHexUintUncheckedBounds(input, begin, end);
    }

    /**
     * @dev Implementation of {tryParseHexUint} that does not check bounds. Caller should make sure that
     * `begin <= end <= input.length`. Other inputs would result in undefined behavior.
     */
    function _tryParseHexUintUncheckedBounds(
        string memory input,
        uint256 begin,
        uint256 end
    ) private pure returns (bool success, uint256 value) {
        bytes memory buffer = bytes(input);

        // skip 0x prefix if present
        bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(buffer, begin)) == bytes2("0x"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty
        uint256 offset = hasPrefix.toUint() * 2;

        uint256 result = 0;
        for (uint256 i = begin + offset; i < end; ++i) {
            uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i)));
            if (chr > 15) return (false, 0);
            result *= 16;
            unchecked {
                // Multiplying by 16 is equivalent to a shift of 4 bits (with additional overflow check).
                // This guaratees that adding a value < 16 will not cause an overflow, hence the unchecked.
                result += chr;
            }
        }
        return (true, result);
    }

    /**
     * @dev Parse a hexadecimal string (with or without "0x" prefix), and returns the value as an `address`.
     *
     * Requirements:
     * - The string must be formatted as `(0x)?[0-9a-fA-F]{40}`
     */
    function parseAddress(string memory input) internal pure returns (address) {
        return parseAddress(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseAddress} that parses a substring of `input` located between position `begin` (included) and
     * `end` (excluded).
     *
     * Requirements:
     * - The substring must be formatted as `(0x)?[0-9a-fA-F]{40}`
     */
    function parseAddress(string memory input, uint256 begin, uint256 end) internal pure returns (address) {
        (bool success, address value) = tryParseAddress(input, begin, end);
        if (!success) revert StringsInvalidAddressFormat();
        return value;
    }

    /**
     * @dev Variant of {parseAddress-string} that returns false if the parsing fails because the input is not a properly
     * formatted address. See {parseAddress} requirements.
     */
    function tryParseAddress(string memory input) internal pure returns (bool success, address value) {
        return tryParseAddress(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseAddress-string-uint256-uint256} that returns false if the parsing fails because input is not a properly
     * formatted address. See {parseAddress} requirements.
     */
    function tryParseAddress(
        string memory input,
        uint256 begin,
        uint256 end
    ) internal pure returns (bool success, address value) {
        if (end > bytes(input).length || begin > end) return (false, address(0));

        bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(bytes(input), begin)) == bytes2("0x"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty
        uint256 expectedLength = 40 + hasPrefix.toUint() * 2;

        // check that input is the correct length
        if (end - begin == expectedLength) {
            // length guarantees that this does not overflow, and value is at most type(uint160).max
            (bool s, uint256 v) = _tryParseHexUintUncheckedBounds(input, begin, end);
            return (s, address(uint160(v)));
        } else {
            return (false, address(0));
        }
    }

    function _tryParseChr(bytes1 chr) private pure returns (uint8) {
        uint8 value = uint8(chr);

        // Try to parse `chr`:
        // - Case 1: [0-9]
        // - Case 2: [a-f]
        // - Case 3: [A-F]
        // - otherwise not supported
        unchecked {
            if (value > 47 && value < 58) value -= 48;
            else if (value > 96 && value < 103) value -= 87;
            else if (value > 64 && value < 71) value -= 55;
            else return type(uint8).max;
        }

        return value;
    }

    /**
     * @dev Reads a bytes32 from a bytes array without bounds checking.
     *
     * NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the
     * assembly block as such would prevent some optimizations.
     */
    function _unsafeReadBytesOffset(bytes memory buffer, uint256 offset) private pure returns (bytes32 value) {
        // This is not memory safe in the general case, but all calls to this private function are within bounds.
        assembly ("memory-safe") {
            value := mload(add(buffer, add(0x20, offset)))
        }
    }
}

File 33 of 39 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../token/ERC20/IERC20.sol";

File 34 of 39 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC165.sol)

pragma solidity ^0.8.20;

import {IERC165} from "../utils/introspection/IERC165.sol";

File 35 of 39 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

import {Panic} from "../Panic.sol";
import {SafeCast} from "./SafeCast.sol";

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an success flag (no overflow).
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an success flag (no overflow).
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an success flag (no overflow).
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a success flag (no division by zero).
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero).
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.
     *
     * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.
     * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute
     * one branch when needed, making this function more expensive.
     */
    function ternary(bool condition, uint256 a, uint256 b) internal pure returns (uint256) {
        unchecked {
            // branchless ternary works because:
            // b ^ (a ^ b) == a
            // b ^ 0 == b
            return b ^ ((a ^ b) * SafeCast.toUint(condition));
        }
    }

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

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return ternary(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 towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            Panic.panic(Panic.DIVISION_BY_ZERO);
        }

        // The following calculation ensures accurate ceiling division without overflow.
        // Since a is non-zero, (a - 1) / b will not overflow.
        // The largest possible result occurs when (a - 1) / b is type(uint256).max,
        // but the largest value we can obtain is type(uint256).max - 1, which happens
        // when a = type(uint256).max and b = 1.
        unchecked {
            return SafeCast.toUint(a > 0) * ((a - 1) / b + 1);
        }
    }

    /**
     * @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     *
     * 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²⁵⁶ and mod 2²⁵⁶ - 1, then use
            // the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2²⁵⁶ + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0.
            if (denominator <= prod1) {
                Panic.panic(ternary(denominator == 0, Panic.DIVISION_BY_ZERO, Panic.UNDER_OVERFLOW));
            }

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

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

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

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

            uint256 twos = denominator & (0 - denominator);
            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²⁵⁶ / 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²⁵⁶. Now that denominator is an odd number, it has an inverse modulo 2²⁵⁶ such
            // that denominator * inv ≡ 1 mod 2²⁵⁶. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv ≡ 1 mod 2⁴.
            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⁸
            inverse *= 2 - denominator * inverse; // inverse mod 2¹⁶
            inverse *= 2 - denominator * inverse; // inverse mod 2³²
            inverse *= 2 - denominator * inverse; // inverse mod 2⁶⁴
            inverse *= 2 - denominator * inverse; // inverse mod 2¹²⁸
            inverse *= 2 - denominator * inverse; // inverse mod 2²⁵⁶

            // 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²⁵⁶. Since the preconditions guarantee that the outcome is
            // less than 2²⁵⁶, 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;
        }
    }

    /**
     * @dev 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) {
        return mulDiv(x, y, denominator) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0);
    }

    /**
     * @dev Calculate the modular multiplicative inverse of a number in Z/nZ.
     *
     * If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0.
     * If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible.
     *
     * If the input value is not inversible, 0 is returned.
     *
     * NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the
     * inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}.
     */
    function invMod(uint256 a, uint256 n) internal pure returns (uint256) {
        unchecked {
            if (n == 0) return 0;

            // The inverse modulo is calculated using the Extended Euclidean Algorithm (iterative version)
            // Used to compute integers x and y such that: ax + ny = gcd(a, n).
            // When the gcd is 1, then the inverse of a modulo n exists and it's x.
            // ax + ny = 1
            // ax = 1 + (-y)n
            // ax ≡ 1 (mod n) # x is the inverse of a modulo n

            // If the remainder is 0 the gcd is n right away.
            uint256 remainder = a % n;
            uint256 gcd = n;

            // Therefore the initial coefficients are:
            // ax + ny = gcd(a, n) = n
            // 0a + 1n = n
            int256 x = 0;
            int256 y = 1;

            while (remainder != 0) {
                uint256 quotient = gcd / remainder;

                (gcd, remainder) = (
                    // The old remainder is the next gcd to try.
                    remainder,
                    // Compute the next remainder.
                    // Can't overflow given that (a % gcd) * (gcd // (a % gcd)) <= gcd
                    // where gcd is at most n (capped to type(uint256).max)
                    gcd - remainder * quotient
                );

                (x, y) = (
                    // Increment the coefficient of a.
                    y,
                    // Decrement the coefficient of n.
                    // Can overflow, but the result is casted to uint256 so that the
                    // next value of y is "wrapped around" to a value between 0 and n - 1.
                    x - y * int256(quotient)
                );
            }

            if (gcd != 1) return 0; // No inverse exists.
            return ternary(x < 0, n - uint256(-x), uint256(x)); // Wrap the result if it's negative.
        }
    }

    /**
     * @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`.
     *
     * From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is
     * prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that
     * `a**(p-2)` is the modular multiplicative inverse of a in Fp.
     *
     * NOTE: this function does NOT check that `p` is a prime greater than `2`.
     */
    function invModPrime(uint256 a, uint256 p) internal view returns (uint256) {
        unchecked {
            return Math.modExp(a, p - 2, p);
        }
    }

    /**
     * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m)
     *
     * Requirements:
     * - modulus can't be zero
     * - underlying staticcall to precompile must succeed
     *
     * IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make
     * sure the chain you're using it on supports the precompiled contract for modular exponentiation
     * at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise,
     * the underlying function will succeed given the lack of a revert, but the result may be incorrectly
     * interpreted as 0.
     */
    function modExp(uint256 b, uint256 e, uint256 m) internal view returns (uint256) {
        (bool success, uint256 result) = tryModExp(b, e, m);
        if (!success) {
            Panic.panic(Panic.DIVISION_BY_ZERO);
        }
        return result;
    }

    /**
     * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m).
     * It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying
     * to operate modulo 0 or if the underlying precompile reverted.
     *
     * IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain
     * you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in
     * https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack
     * of a revert, but the result may be incorrectly interpreted as 0.
     */
    function tryModExp(uint256 b, uint256 e, uint256 m) internal view returns (bool success, uint256 result) {
        if (m == 0) return (false, 0);
        assembly ("memory-safe") {
            let ptr := mload(0x40)
            // | Offset    | Content    | Content (Hex)                                                      |
            // |-----------|------------|--------------------------------------------------------------------|
            // | 0x00:0x1f | size of b  | 0x0000000000000000000000000000000000000000000000000000000000000020 |
            // | 0x20:0x3f | size of e  | 0x0000000000000000000000000000000000000000000000000000000000000020 |
            // | 0x40:0x5f | size of m  | 0x0000000000000000000000000000000000000000000000000000000000000020 |
            // | 0x60:0x7f | value of b | 0x<.............................................................b> |
            // | 0x80:0x9f | value of e | 0x<.............................................................e> |
            // | 0xa0:0xbf | value of m | 0x<.............................................................m> |
            mstore(ptr, 0x20)
            mstore(add(ptr, 0x20), 0x20)
            mstore(add(ptr, 0x40), 0x20)
            mstore(add(ptr, 0x60), b)
            mstore(add(ptr, 0x80), e)
            mstore(add(ptr, 0xa0), m)

            // Given the result < m, it's guaranteed to fit in 32 bytes,
            // so we can use the memory scratch space located at offset 0.
            success := staticcall(gas(), 0x05, ptr, 0xc0, 0x00, 0x20)
            result := mload(0x00)
        }
    }

    /**
     * @dev Variant of {modExp} that supports inputs of arbitrary length.
     */
    function modExp(bytes memory b, bytes memory e, bytes memory m) internal view returns (bytes memory) {
        (bool success, bytes memory result) = tryModExp(b, e, m);
        if (!success) {
            Panic.panic(Panic.DIVISION_BY_ZERO);
        }
        return result;
    }

    /**
     * @dev Variant of {tryModExp} that supports inputs of arbitrary length.
     */
    function tryModExp(
        bytes memory b,
        bytes memory e,
        bytes memory m
    ) internal view returns (bool success, bytes memory result) {
        if (_zeroBytes(m)) return (false, new bytes(0));

        uint256 mLen = m.length;

        // Encode call args in result and move the free memory pointer
        result = abi.encodePacked(b.length, e.length, mLen, b, e, m);

        assembly ("memory-safe") {
            let dataPtr := add(result, 0x20)
            // Write result on top of args to avoid allocating extra memory.
            success := staticcall(gas(), 0x05, dataPtr, mload(result), dataPtr, mLen)
            // Overwrite the length.
            // result.length > returndatasize() is guaranteed because returndatasize() == m.length
            mstore(result, mLen)
            // Set the memory pointer after the returned data.
            mstore(0x40, add(dataPtr, mLen))
        }
    }

    /**
     * @dev Returns whether the provided byte array is zero.
     */
    function _zeroBytes(bytes memory byteArray) private pure returns (bool) {
        for (uint256 i = 0; i < byteArray.length; ++i) {
            if (byteArray[i] != 0) {
                return false;
            }
        }
        return true;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * This method is based on Newton's method for computing square roots; the algorithm is restricted to only
     * using integer operations.
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        unchecked {
            // Take care of easy edge cases when a == 0 or a == 1
            if (a <= 1) {
                return a;
            }

            // In this function, we use Newton's method to get a root of `f(x) := x² - a`. It involves building a
            // sequence x_n that converges toward sqrt(a). For each iteration x_n, we also define the error between
            // the current value as `ε_n = | x_n - sqrt(a) |`.
            //
            // For our first estimation, we consider `e` the smallest power of 2 which is bigger than the square root
            // of the target. (i.e. `2**(e-1) ≤ sqrt(a) < 2**e`). We know that `e ≤ 128` because `(2¹²⁸)² = 2²⁵⁶` is
            // bigger than any uint256.
            //
            // By noticing that
            // `2**(e-1) ≤ sqrt(a) < 2**e → (2**(e-1))² ≤ a < (2**e)² → 2**(2*e-2) ≤ a < 2**(2*e)`
            // we can deduce that `e - 1` is `log2(a) / 2`. We can thus compute `x_n = 2**(e-1)` using a method similar
            // to the msb function.
            uint256 aa = a;
            uint256 xn = 1;

            if (aa >= (1 << 128)) {
                aa >>= 128;
                xn <<= 64;
            }
            if (aa >= (1 << 64)) {
                aa >>= 64;
                xn <<= 32;
            }
            if (aa >= (1 << 32)) {
                aa >>= 32;
                xn <<= 16;
            }
            if (aa >= (1 << 16)) {
                aa >>= 16;
                xn <<= 8;
            }
            if (aa >= (1 << 8)) {
                aa >>= 8;
                xn <<= 4;
            }
            if (aa >= (1 << 4)) {
                aa >>= 4;
                xn <<= 2;
            }
            if (aa >= (1 << 2)) {
                xn <<= 1;
            }

            // We now have x_n such that `x_n = 2**(e-1) ≤ sqrt(a) < 2**e = 2 * x_n`. This implies ε_n ≤ 2**(e-1).
            //
            // We can refine our estimation by noticing that the middle of that interval minimizes the error.
            // If we move x_n to equal 2**(e-1) + 2**(e-2), then we reduce the error to ε_n ≤ 2**(e-2).
            // This is going to be our x_0 (and ε_0)
            xn = (3 * xn) >> 1; // ε_0 := | x_0 - sqrt(a) | ≤ 2**(e-2)

            // From here, Newton's method give us:
            // x_{n+1} = (x_n + a / x_n) / 2
            //
            // One should note that:
            // x_{n+1}² - a = ((x_n + a / x_n) / 2)² - a
            //              = ((x_n² + a) / (2 * x_n))² - a
            //              = (x_n⁴ + 2 * a * x_n² + a²) / (4 * x_n²) - a
            //              = (x_n⁴ + 2 * a * x_n² + a² - 4 * a * x_n²) / (4 * x_n²)
            //              = (x_n⁴ - 2 * a * x_n² + a²) / (4 * x_n²)
            //              = (x_n² - a)² / (2 * x_n)²
            //              = ((x_n² - a) / (2 * x_n))²
            //              ≥ 0
            // Which proves that for all n ≥ 1, sqrt(a) ≤ x_n
            //
            // This gives us the proof of quadratic convergence of the sequence:
            // ε_{n+1} = | x_{n+1} - sqrt(a) |
            //         = | (x_n + a / x_n) / 2 - sqrt(a) |
            //         = | (x_n² + a - 2*x_n*sqrt(a)) / (2 * x_n) |
            //         = | (x_n - sqrt(a))² / (2 * x_n) |
            //         = | ε_n² / (2 * x_n) |
            //         = ε_n² / | (2 * x_n) |
            //
            // For the first iteration, we have a special case where x_0 is known:
            // ε_1 = ε_0² / | (2 * x_0) |
            //     ≤ (2**(e-2))² / (2 * (2**(e-1) + 2**(e-2)))
            //     ≤ 2**(2*e-4) / (3 * 2**(e-1))
            //     ≤ 2**(e-3) / 3
            //     ≤ 2**(e-3-log2(3))
            //     ≤ 2**(e-4.5)
            //
            // For the following iterations, we use the fact that, 2**(e-1) ≤ sqrt(a) ≤ x_n:
            // ε_{n+1} = ε_n² / | (2 * x_n) |
            //         ≤ (2**(e-k))² / (2 * 2**(e-1))
            //         ≤ 2**(2*e-2*k) / 2**e
            //         ≤ 2**(e-2*k)
            xn = (xn + a / xn) >> 1; // ε_1 := | x_1 - sqrt(a) | ≤ 2**(e-4.5)  -- special case, see above
            xn = (xn + a / xn) >> 1; // ε_2 := | x_2 - sqrt(a) | ≤ 2**(e-9)    -- general case with k = 4.5
            xn = (xn + a / xn) >> 1; // ε_3 := | x_3 - sqrt(a) | ≤ 2**(e-18)   -- general case with k = 9
            xn = (xn + a / xn) >> 1; // ε_4 := | x_4 - sqrt(a) | ≤ 2**(e-36)   -- general case with k = 18
            xn = (xn + a / xn) >> 1; // ε_5 := | x_5 - sqrt(a) | ≤ 2**(e-72)   -- general case with k = 36
            xn = (xn + a / xn) >> 1; // ε_6 := | x_6 - sqrt(a) | ≤ 2**(e-144)  -- general case with k = 72

            // Because e ≤ 128 (as discussed during the first estimation phase), we know have reached a precision
            // ε_6 ≤ 2**(e-144) < 1. Given we're operating on integers, then we can ensure that xn is now either
            // sqrt(a) or sqrt(a) + 1.
            return xn - SafeCast.toUint(xn > a / xn);
        }
    }

    /**
     * @dev 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 + SafeCast.toUint(unsignedRoundsUp(rounding) && result * result < a);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        uint256 exp;
        unchecked {
            exp = 128 * SafeCast.toUint(value > (1 << 128) - 1);
            value >>= exp;
            result += exp;

            exp = 64 * SafeCast.toUint(value > (1 << 64) - 1);
            value >>= exp;
            result += exp;

            exp = 32 * SafeCast.toUint(value > (1 << 32) - 1);
            value >>= exp;
            result += exp;

            exp = 16 * SafeCast.toUint(value > (1 << 16) - 1);
            value >>= exp;
            result += exp;

            exp = 8 * SafeCast.toUint(value > (1 << 8) - 1);
            value >>= exp;
            result += exp;

            exp = 4 * SafeCast.toUint(value > (1 << 4) - 1);
            value >>= exp;
            result += exp;

            exp = 2 * SafeCast.toUint(value > (1 << 2) - 1);
            value >>= exp;
            result += exp;

            result += SafeCast.toUint(value > 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 + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << result < value);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * 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 + SafeCast.toUint(unsignedRoundsUp(rounding) && 10 ** result < value);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * 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;
        uint256 isGt;
        unchecked {
            isGt = SafeCast.toUint(value > (1 << 128) - 1);
            value >>= isGt * 128;
            result += isGt * 16;

            isGt = SafeCast.toUint(value > (1 << 64) - 1);
            value >>= isGt * 64;
            result += isGt * 8;

            isGt = SafeCast.toUint(value > (1 << 32) - 1);
            value >>= isGt * 32;
            result += isGt * 4;

            isGt = SafeCast.toUint(value > (1 << 16) - 1);
            value >>= isGt * 16;
            result += isGt * 2;

            result += SafeCast.toUint(value > (1 << 8) - 1);
        }
        return result;
    }

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

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

File 36 of 39 : SafeCast.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol)
// This file was procedurally generated from scripts/generate/templates/SafeCast.js.

pragma solidity ^0.8.20;

/**
 * @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow
 * checks.
 *
 * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
 * easily result in undesired exploitation or bugs, since developers usually
 * assume that overflows raise errors. `SafeCast` restores this intuition by
 * reverting the transaction when such an operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeCast {
    /**
     * @dev Value doesn't fit in an uint of `bits` size.
     */
    error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);

    /**
     * @dev An int value doesn't fit in an uint of `bits` size.
     */
    error SafeCastOverflowedIntToUint(int256 value);

    /**
     * @dev Value doesn't fit in an int of `bits` size.
     */
    error SafeCastOverflowedIntDowncast(uint8 bits, int256 value);

    /**
     * @dev An uint value doesn't fit in an int of `bits` size.
     */
    error SafeCastOverflowedUintToInt(uint256 value);

    /**
     * @dev Returns the downcasted uint248 from uint256, reverting on
     * overflow (when the input is greater than largest uint248).
     *
     * Counterpart to Solidity's `uint248` operator.
     *
     * Requirements:
     *
     * - input must fit into 248 bits
     */
    function toUint248(uint256 value) internal pure returns (uint248) {
        if (value > type(uint248).max) {
            revert SafeCastOverflowedUintDowncast(248, value);
        }
        return uint248(value);
    }

    /**
     * @dev Returns the downcasted uint240 from uint256, reverting on
     * overflow (when the input is greater than largest uint240).
     *
     * Counterpart to Solidity's `uint240` operator.
     *
     * Requirements:
     *
     * - input must fit into 240 bits
     */
    function toUint240(uint256 value) internal pure returns (uint240) {
        if (value > type(uint240).max) {
            revert SafeCastOverflowedUintDowncast(240, value);
        }
        return uint240(value);
    }

    /**
     * @dev Returns the downcasted uint232 from uint256, reverting on
     * overflow (when the input is greater than largest uint232).
     *
     * Counterpart to Solidity's `uint232` operator.
     *
     * Requirements:
     *
     * - input must fit into 232 bits
     */
    function toUint232(uint256 value) internal pure returns (uint232) {
        if (value > type(uint232).max) {
            revert SafeCastOverflowedUintDowncast(232, value);
        }
        return uint232(value);
    }

    /**
     * @dev Returns the downcasted uint224 from uint256, reverting on
     * overflow (when the input is greater than largest uint224).
     *
     * Counterpart to Solidity's `uint224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toUint224(uint256 value) internal pure returns (uint224) {
        if (value > type(uint224).max) {
            revert SafeCastOverflowedUintDowncast(224, value);
        }
        return uint224(value);
    }

    /**
     * @dev Returns the downcasted uint216 from uint256, reverting on
     * overflow (when the input is greater than largest uint216).
     *
     * Counterpart to Solidity's `uint216` operator.
     *
     * Requirements:
     *
     * - input must fit into 216 bits
     */
    function toUint216(uint256 value) internal pure returns (uint216) {
        if (value > type(uint216).max) {
            revert SafeCastOverflowedUintDowncast(216, value);
        }
        return uint216(value);
    }

    /**
     * @dev Returns the downcasted uint208 from uint256, reverting on
     * overflow (when the input is greater than largest uint208).
     *
     * Counterpart to Solidity's `uint208` operator.
     *
     * Requirements:
     *
     * - input must fit into 208 bits
     */
    function toUint208(uint256 value) internal pure returns (uint208) {
        if (value > type(uint208).max) {
            revert SafeCastOverflowedUintDowncast(208, value);
        }
        return uint208(value);
    }

    /**
     * @dev Returns the downcasted uint200 from uint256, reverting on
     * overflow (when the input is greater than largest uint200).
     *
     * Counterpart to Solidity's `uint200` operator.
     *
     * Requirements:
     *
     * - input must fit into 200 bits
     */
    function toUint200(uint256 value) internal pure returns (uint200) {
        if (value > type(uint200).max) {
            revert SafeCastOverflowedUintDowncast(200, value);
        }
        return uint200(value);
    }

    /**
     * @dev Returns the downcasted uint192 from uint256, reverting on
     * overflow (when the input is greater than largest uint192).
     *
     * Counterpart to Solidity's `uint192` operator.
     *
     * Requirements:
     *
     * - input must fit into 192 bits
     */
    function toUint192(uint256 value) internal pure returns (uint192) {
        if (value > type(uint192).max) {
            revert SafeCastOverflowedUintDowncast(192, value);
        }
        return uint192(value);
    }

    /**
     * @dev Returns the downcasted uint184 from uint256, reverting on
     * overflow (when the input is greater than largest uint184).
     *
     * Counterpart to Solidity's `uint184` operator.
     *
     * Requirements:
     *
     * - input must fit into 184 bits
     */
    function toUint184(uint256 value) internal pure returns (uint184) {
        if (value > type(uint184).max) {
            revert SafeCastOverflowedUintDowncast(184, value);
        }
        return uint184(value);
    }

    /**
     * @dev Returns the downcasted uint176 from uint256, reverting on
     * overflow (when the input is greater than largest uint176).
     *
     * Counterpart to Solidity's `uint176` operator.
     *
     * Requirements:
     *
     * - input must fit into 176 bits
     */
    function toUint176(uint256 value) internal pure returns (uint176) {
        if (value > type(uint176).max) {
            revert SafeCastOverflowedUintDowncast(176, value);
        }
        return uint176(value);
    }

    /**
     * @dev Returns the downcasted uint168 from uint256, reverting on
     * overflow (when the input is greater than largest uint168).
     *
     * Counterpart to Solidity's `uint168` operator.
     *
     * Requirements:
     *
     * - input must fit into 168 bits
     */
    function toUint168(uint256 value) internal pure returns (uint168) {
        if (value > type(uint168).max) {
            revert SafeCastOverflowedUintDowncast(168, value);
        }
        return uint168(value);
    }

    /**
     * @dev Returns the downcasted uint160 from uint256, reverting on
     * overflow (when the input is greater than largest uint160).
     *
     * Counterpart to Solidity's `uint160` operator.
     *
     * Requirements:
     *
     * - input must fit into 160 bits
     */
    function toUint160(uint256 value) internal pure returns (uint160) {
        if (value > type(uint160).max) {
            revert SafeCastOverflowedUintDowncast(160, value);
        }
        return uint160(value);
    }

    /**
     * @dev Returns the downcasted uint152 from uint256, reverting on
     * overflow (when the input is greater than largest uint152).
     *
     * Counterpart to Solidity's `uint152` operator.
     *
     * Requirements:
     *
     * - input must fit into 152 bits
     */
    function toUint152(uint256 value) internal pure returns (uint152) {
        if (value > type(uint152).max) {
            revert SafeCastOverflowedUintDowncast(152, value);
        }
        return uint152(value);
    }

    /**
     * @dev Returns the downcasted uint144 from uint256, reverting on
     * overflow (when the input is greater than largest uint144).
     *
     * Counterpart to Solidity's `uint144` operator.
     *
     * Requirements:
     *
     * - input must fit into 144 bits
     */
    function toUint144(uint256 value) internal pure returns (uint144) {
        if (value > type(uint144).max) {
            revert SafeCastOverflowedUintDowncast(144, value);
        }
        return uint144(value);
    }

    /**
     * @dev Returns the downcasted uint136 from uint256, reverting on
     * overflow (when the input is greater than largest uint136).
     *
     * Counterpart to Solidity's `uint136` operator.
     *
     * Requirements:
     *
     * - input must fit into 136 bits
     */
    function toUint136(uint256 value) internal pure returns (uint136) {
        if (value > type(uint136).max) {
            revert SafeCastOverflowedUintDowncast(136, value);
        }
        return uint136(value);
    }

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        if (value > type(uint128).max) {
            revert SafeCastOverflowedUintDowncast(128, value);
        }
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint120 from uint256, reverting on
     * overflow (when the input is greater than largest uint120).
     *
     * Counterpart to Solidity's `uint120` operator.
     *
     * Requirements:
     *
     * - input must fit into 120 bits
     */
    function toUint120(uint256 value) internal pure returns (uint120) {
        if (value > type(uint120).max) {
            revert SafeCastOverflowedUintDowncast(120, value);
        }
        return uint120(value);
    }

    /**
     * @dev Returns the downcasted uint112 from uint256, reverting on
     * overflow (when the input is greater than largest uint112).
     *
     * Counterpart to Solidity's `uint112` operator.
     *
     * Requirements:
     *
     * - input must fit into 112 bits
     */
    function toUint112(uint256 value) internal pure returns (uint112) {
        if (value > type(uint112).max) {
            revert SafeCastOverflowedUintDowncast(112, value);
        }
        return uint112(value);
    }

    /**
     * @dev Returns the downcasted uint104 from uint256, reverting on
     * overflow (when the input is greater than largest uint104).
     *
     * Counterpart to Solidity's `uint104` operator.
     *
     * Requirements:
     *
     * - input must fit into 104 bits
     */
    function toUint104(uint256 value) internal pure returns (uint104) {
        if (value > type(uint104).max) {
            revert SafeCastOverflowedUintDowncast(104, value);
        }
        return uint104(value);
    }

    /**
     * @dev Returns the downcasted uint96 from uint256, reverting on
     * overflow (when the input is greater than largest uint96).
     *
     * Counterpart to Solidity's `uint96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toUint96(uint256 value) internal pure returns (uint96) {
        if (value > type(uint96).max) {
            revert SafeCastOverflowedUintDowncast(96, value);
        }
        return uint96(value);
    }

    /**
     * @dev Returns the downcasted uint88 from uint256, reverting on
     * overflow (when the input is greater than largest uint88).
     *
     * Counterpart to Solidity's `uint88` operator.
     *
     * Requirements:
     *
     * - input must fit into 88 bits
     */
    function toUint88(uint256 value) internal pure returns (uint88) {
        if (value > type(uint88).max) {
            revert SafeCastOverflowedUintDowncast(88, value);
        }
        return uint88(value);
    }

    /**
     * @dev Returns the downcasted uint80 from uint256, reverting on
     * overflow (when the input is greater than largest uint80).
     *
     * Counterpart to Solidity's `uint80` operator.
     *
     * Requirements:
     *
     * - input must fit into 80 bits
     */
    function toUint80(uint256 value) internal pure returns (uint80) {
        if (value > type(uint80).max) {
            revert SafeCastOverflowedUintDowncast(80, value);
        }
        return uint80(value);
    }

    /**
     * @dev Returns the downcasted uint72 from uint256, reverting on
     * overflow (when the input is greater than largest uint72).
     *
     * Counterpart to Solidity's `uint72` operator.
     *
     * Requirements:
     *
     * - input must fit into 72 bits
     */
    function toUint72(uint256 value) internal pure returns (uint72) {
        if (value > type(uint72).max) {
            revert SafeCastOverflowedUintDowncast(72, value);
        }
        return uint72(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        if (value > type(uint64).max) {
            revert SafeCastOverflowedUintDowncast(64, value);
        }
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint56 from uint256, reverting on
     * overflow (when the input is greater than largest uint56).
     *
     * Counterpart to Solidity's `uint56` operator.
     *
     * Requirements:
     *
     * - input must fit into 56 bits
     */
    function toUint56(uint256 value) internal pure returns (uint56) {
        if (value > type(uint56).max) {
            revert SafeCastOverflowedUintDowncast(56, value);
        }
        return uint56(value);
    }

    /**
     * @dev Returns the downcasted uint48 from uint256, reverting on
     * overflow (when the input is greater than largest uint48).
     *
     * Counterpart to Solidity's `uint48` operator.
     *
     * Requirements:
     *
     * - input must fit into 48 bits
     */
    function toUint48(uint256 value) internal pure returns (uint48) {
        if (value > type(uint48).max) {
            revert SafeCastOverflowedUintDowncast(48, value);
        }
        return uint48(value);
    }

    /**
     * @dev Returns the downcasted uint40 from uint256, reverting on
     * overflow (when the input is greater than largest uint40).
     *
     * Counterpart to Solidity's `uint40` operator.
     *
     * Requirements:
     *
     * - input must fit into 40 bits
     */
    function toUint40(uint256 value) internal pure returns (uint40) {
        if (value > type(uint40).max) {
            revert SafeCastOverflowedUintDowncast(40, value);
        }
        return uint40(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        if (value > type(uint32).max) {
            revert SafeCastOverflowedUintDowncast(32, value);
        }
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint24 from uint256, reverting on
     * overflow (when the input is greater than largest uint24).
     *
     * Counterpart to Solidity's `uint24` operator.
     *
     * Requirements:
     *
     * - input must fit into 24 bits
     */
    function toUint24(uint256 value) internal pure returns (uint24) {
        if (value > type(uint24).max) {
            revert SafeCastOverflowedUintDowncast(24, value);
        }
        return uint24(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        if (value > type(uint16).max) {
            revert SafeCastOverflowedUintDowncast(16, value);
        }
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        if (value > type(uint8).max) {
            revert SafeCastOverflowedUintDowncast(8, value);
        }
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        if (value < 0) {
            revert SafeCastOverflowedIntToUint(value);
        }
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int248 from int256, reverting on
     * overflow (when the input is less than smallest int248 or
     * greater than largest int248).
     *
     * Counterpart to Solidity's `int248` operator.
     *
     * Requirements:
     *
     * - input must fit into 248 bits
     */
    function toInt248(int256 value) internal pure returns (int248 downcasted) {
        downcasted = int248(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(248, value);
        }
    }

    /**
     * @dev Returns the downcasted int240 from int256, reverting on
     * overflow (when the input is less than smallest int240 or
     * greater than largest int240).
     *
     * Counterpart to Solidity's `int240` operator.
     *
     * Requirements:
     *
     * - input must fit into 240 bits
     */
    function toInt240(int256 value) internal pure returns (int240 downcasted) {
        downcasted = int240(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(240, value);
        }
    }

    /**
     * @dev Returns the downcasted int232 from int256, reverting on
     * overflow (when the input is less than smallest int232 or
     * greater than largest int232).
     *
     * Counterpart to Solidity's `int232` operator.
     *
     * Requirements:
     *
     * - input must fit into 232 bits
     */
    function toInt232(int256 value) internal pure returns (int232 downcasted) {
        downcasted = int232(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(232, value);
        }
    }

    /**
     * @dev Returns the downcasted int224 from int256, reverting on
     * overflow (when the input is less than smallest int224 or
     * greater than largest int224).
     *
     * Counterpart to Solidity's `int224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toInt224(int256 value) internal pure returns (int224 downcasted) {
        downcasted = int224(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(224, value);
        }
    }

    /**
     * @dev Returns the downcasted int216 from int256, reverting on
     * overflow (when the input is less than smallest int216 or
     * greater than largest int216).
     *
     * Counterpart to Solidity's `int216` operator.
     *
     * Requirements:
     *
     * - input must fit into 216 bits
     */
    function toInt216(int256 value) internal pure returns (int216 downcasted) {
        downcasted = int216(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(216, value);
        }
    }

    /**
     * @dev Returns the downcasted int208 from int256, reverting on
     * overflow (when the input is less than smallest int208 or
     * greater than largest int208).
     *
     * Counterpart to Solidity's `int208` operator.
     *
     * Requirements:
     *
     * - input must fit into 208 bits
     */
    function toInt208(int256 value) internal pure returns (int208 downcasted) {
        downcasted = int208(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(208, value);
        }
    }

    /**
     * @dev Returns the downcasted int200 from int256, reverting on
     * overflow (when the input is less than smallest int200 or
     * greater than largest int200).
     *
     * Counterpart to Solidity's `int200` operator.
     *
     * Requirements:
     *
     * - input must fit into 200 bits
     */
    function toInt200(int256 value) internal pure returns (int200 downcasted) {
        downcasted = int200(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(200, value);
        }
    }

    /**
     * @dev Returns the downcasted int192 from int256, reverting on
     * overflow (when the input is less than smallest int192 or
     * greater than largest int192).
     *
     * Counterpart to Solidity's `int192` operator.
     *
     * Requirements:
     *
     * - input must fit into 192 bits
     */
    function toInt192(int256 value) internal pure returns (int192 downcasted) {
        downcasted = int192(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(192, value);
        }
    }

    /**
     * @dev Returns the downcasted int184 from int256, reverting on
     * overflow (when the input is less than smallest int184 or
     * greater than largest int184).
     *
     * Counterpart to Solidity's `int184` operator.
     *
     * Requirements:
     *
     * - input must fit into 184 bits
     */
    function toInt184(int256 value) internal pure returns (int184 downcasted) {
        downcasted = int184(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(184, value);
        }
    }

    /**
     * @dev Returns the downcasted int176 from int256, reverting on
     * overflow (when the input is less than smallest int176 or
     * greater than largest int176).
     *
     * Counterpart to Solidity's `int176` operator.
     *
     * Requirements:
     *
     * - input must fit into 176 bits
     */
    function toInt176(int256 value) internal pure returns (int176 downcasted) {
        downcasted = int176(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(176, value);
        }
    }

    /**
     * @dev Returns the downcasted int168 from int256, reverting on
     * overflow (when the input is less than smallest int168 or
     * greater than largest int168).
     *
     * Counterpart to Solidity's `int168` operator.
     *
     * Requirements:
     *
     * - input must fit into 168 bits
     */
    function toInt168(int256 value) internal pure returns (int168 downcasted) {
        downcasted = int168(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(168, value);
        }
    }

    /**
     * @dev Returns the downcasted int160 from int256, reverting on
     * overflow (when the input is less than smallest int160 or
     * greater than largest int160).
     *
     * Counterpart to Solidity's `int160` operator.
     *
     * Requirements:
     *
     * - input must fit into 160 bits
     */
    function toInt160(int256 value) internal pure returns (int160 downcasted) {
        downcasted = int160(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(160, value);
        }
    }

    /**
     * @dev Returns the downcasted int152 from int256, reverting on
     * overflow (when the input is less than smallest int152 or
     * greater than largest int152).
     *
     * Counterpart to Solidity's `int152` operator.
     *
     * Requirements:
     *
     * - input must fit into 152 bits
     */
    function toInt152(int256 value) internal pure returns (int152 downcasted) {
        downcasted = int152(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(152, value);
        }
    }

    /**
     * @dev Returns the downcasted int144 from int256, reverting on
     * overflow (when the input is less than smallest int144 or
     * greater than largest int144).
     *
     * Counterpart to Solidity's `int144` operator.
     *
     * Requirements:
     *
     * - input must fit into 144 bits
     */
    function toInt144(int256 value) internal pure returns (int144 downcasted) {
        downcasted = int144(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(144, value);
        }
    }

    /**
     * @dev Returns the downcasted int136 from int256, reverting on
     * overflow (when the input is less than smallest int136 or
     * greater than largest int136).
     *
     * Counterpart to Solidity's `int136` operator.
     *
     * Requirements:
     *
     * - input must fit into 136 bits
     */
    function toInt136(int256 value) internal pure returns (int136 downcasted) {
        downcasted = int136(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(136, value);
        }
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toInt128(int256 value) internal pure returns (int128 downcasted) {
        downcasted = int128(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(128, value);
        }
    }

    /**
     * @dev Returns the downcasted int120 from int256, reverting on
     * overflow (when the input is less than smallest int120 or
     * greater than largest int120).
     *
     * Counterpart to Solidity's `int120` operator.
     *
     * Requirements:
     *
     * - input must fit into 120 bits
     */
    function toInt120(int256 value) internal pure returns (int120 downcasted) {
        downcasted = int120(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(120, value);
        }
    }

    /**
     * @dev Returns the downcasted int112 from int256, reverting on
     * overflow (when the input is less than smallest int112 or
     * greater than largest int112).
     *
     * Counterpart to Solidity's `int112` operator.
     *
     * Requirements:
     *
     * - input must fit into 112 bits
     */
    function toInt112(int256 value) internal pure returns (int112 downcasted) {
        downcasted = int112(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(112, value);
        }
    }

    /**
     * @dev Returns the downcasted int104 from int256, reverting on
     * overflow (when the input is less than smallest int104 or
     * greater than largest int104).
     *
     * Counterpart to Solidity's `int104` operator.
     *
     * Requirements:
     *
     * - input must fit into 104 bits
     */
    function toInt104(int256 value) internal pure returns (int104 downcasted) {
        downcasted = int104(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(104, value);
        }
    }

    /**
     * @dev Returns the downcasted int96 from int256, reverting on
     * overflow (when the input is less than smallest int96 or
     * greater than largest int96).
     *
     * Counterpart to Solidity's `int96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toInt96(int256 value) internal pure returns (int96 downcasted) {
        downcasted = int96(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(96, value);
        }
    }

    /**
     * @dev Returns the downcasted int88 from int256, reverting on
     * overflow (when the input is less than smallest int88 or
     * greater than largest int88).
     *
     * Counterpart to Solidity's `int88` operator.
     *
     * Requirements:
     *
     * - input must fit into 88 bits
     */
    function toInt88(int256 value) internal pure returns (int88 downcasted) {
        downcasted = int88(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(88, value);
        }
    }

    /**
     * @dev Returns the downcasted int80 from int256, reverting on
     * overflow (when the input is less than smallest int80 or
     * greater than largest int80).
     *
     * Counterpart to Solidity's `int80` operator.
     *
     * Requirements:
     *
     * - input must fit into 80 bits
     */
    function toInt80(int256 value) internal pure returns (int80 downcasted) {
        downcasted = int80(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(80, value);
        }
    }

    /**
     * @dev Returns the downcasted int72 from int256, reverting on
     * overflow (when the input is less than smallest int72 or
     * greater than largest int72).
     *
     * Counterpart to Solidity's `int72` operator.
     *
     * Requirements:
     *
     * - input must fit into 72 bits
     */
    function toInt72(int256 value) internal pure returns (int72 downcasted) {
        downcasted = int72(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(72, value);
        }
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toInt64(int256 value) internal pure returns (int64 downcasted) {
        downcasted = int64(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(64, value);
        }
    }

    /**
     * @dev Returns the downcasted int56 from int256, reverting on
     * overflow (when the input is less than smallest int56 or
     * greater than largest int56).
     *
     * Counterpart to Solidity's `int56` operator.
     *
     * Requirements:
     *
     * - input must fit into 56 bits
     */
    function toInt56(int256 value) internal pure returns (int56 downcasted) {
        downcasted = int56(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(56, value);
        }
    }

    /**
     * @dev Returns the downcasted int48 from int256, reverting on
     * overflow (when the input is less than smallest int48 or
     * greater than largest int48).
     *
     * Counterpart to Solidity's `int48` operator.
     *
     * Requirements:
     *
     * - input must fit into 48 bits
     */
    function toInt48(int256 value) internal pure returns (int48 downcasted) {
        downcasted = int48(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(48, value);
        }
    }

    /**
     * @dev Returns the downcasted int40 from int256, reverting on
     * overflow (when the input is less than smallest int40 or
     * greater than largest int40).
     *
     * Counterpart to Solidity's `int40` operator.
     *
     * Requirements:
     *
     * - input must fit into 40 bits
     */
    function toInt40(int256 value) internal pure returns (int40 downcasted) {
        downcasted = int40(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(40, value);
        }
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toInt32(int256 value) internal pure returns (int32 downcasted) {
        downcasted = int32(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(32, value);
        }
    }

    /**
     * @dev Returns the downcasted int24 from int256, reverting on
     * overflow (when the input is less than smallest int24 or
     * greater than largest int24).
     *
     * Counterpart to Solidity's `int24` operator.
     *
     * Requirements:
     *
     * - input must fit into 24 bits
     */
    function toInt24(int256 value) internal pure returns (int24 downcasted) {
        downcasted = int24(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(24, value);
        }
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toInt16(int256 value) internal pure returns (int16 downcasted) {
        downcasted = int16(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(16, value);
        }
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits
     */
    function toInt8(int256 value) internal pure returns (int8 downcasted) {
        downcasted = int8(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(8, value);
        }
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        if (value > uint256(type(int256).max)) {
            revert SafeCastOverflowedUintToInt(value);
        }
        return int256(value);
    }

    /**
     * @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump.
     */
    function toUint(bool b) internal pure returns (uint256 u) {
        assembly ("memory-safe") {
            u := iszero(iszero(b))
        }
    }
}

File 37 of 39 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

import {SafeCast} from "./SafeCast.sol";

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.
     *
     * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.
     * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute
     * one branch when needed, making this function more expensive.
     */
    function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) {
        unchecked {
            // branchless ternary works because:
            // b ^ (a ^ b) == a
            // b ^ 0 == b
            return b ^ ((a ^ b) * int256(SafeCast.toUint(condition)));
        }
    }

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

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

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

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // Formula from the "Bit Twiddling Hacks" by Sean Eron Anderson.
            // Since `n` is a signed integer, the generated bytecode will use the SAR opcode to perform the right shift,
            // taking advantage of the most significant (or "sign" bit) in two's complement representation.
            // This opcode adds new most significant bits set to the value of the previous most significant bit. As a result,
            // the mask will either be `bytes32(0)` (if n is positive) or `~bytes32(0)` (if n is negative).
            int256 mask = n >> 255;

            // A `bytes32(0)` mask leaves the input unchanged, while a `~bytes32(0)` mask complements it.
            return uint256((n + mask) ^ mask);
        }
    }
}

File 38 of 39 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[ERC].
 *
 * 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[ERC 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 39 of 39 : Panic.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol)

pragma solidity ^0.8.20;

/**
 * @dev Helper library for emitting standardized panic codes.
 *
 * ```solidity
 * contract Example {
 *      using Panic for uint256;
 *
 *      // Use any of the declared internal constants
 *      function foo() { Panic.GENERIC.panic(); }
 *
 *      // Alternatively
 *      function foo() { Panic.panic(Panic.GENERIC); }
 * }
 * ```
 *
 * Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].
 *
 * _Available since v5.1._
 */
// slither-disable-next-line unused-state
library Panic {
    /// @dev generic / unspecified error
    uint256 internal constant GENERIC = 0x00;
    /// @dev used by the assert() builtin
    uint256 internal constant ASSERT = 0x01;
    /// @dev arithmetic underflow or overflow
    uint256 internal constant UNDER_OVERFLOW = 0x11;
    /// @dev division or modulo by zero
    uint256 internal constant DIVISION_BY_ZERO = 0x12;
    /// @dev enum conversion error
    uint256 internal constant ENUM_CONVERSION_ERROR = 0x21;
    /// @dev invalid encoding in storage
    uint256 internal constant STORAGE_ENCODING_ERROR = 0x22;
    /// @dev empty array pop
    uint256 internal constant EMPTY_ARRAY_POP = 0x31;
    /// @dev array out of bounds access
    uint256 internal constant ARRAY_OUT_OF_BOUNDS = 0x32;
    /// @dev resource error (too large allocation or too large array)
    uint256 internal constant RESOURCE_ERROR = 0x41;
    /// @dev calling invalid internal function
    uint256 internal constant INVALID_INTERNAL_FUNCTION = 0x51;

    /// @dev Reverts with a panic code. Recommended to use with
    /// the internal constants with predefined codes.
    function panic(uint256 code) internal pure {
        assembly ("memory-safe") {
            mstore(0x00, 0x4e487b71)
            mstore(0x20, code)
            revert(0x1c, 0x24)
        }
    }
}

Settings
{
  "remappings": [
    "@chainlink/=node_modules/@chainlink/",
    "@fraxlend/=test/invariant/modules/fraxlend/",
    "fuzzlib/=lib/fuzzlib/src/",
    "swap-router/=test/invariant/modules/v3-periphery/swapRouter/",
    "v3-core/=test/invariant/modules/v3-core/",
    "v3-periphery/=test/invariant/modules/v3-periphery/",
    "v2-core/=test/invariant/modules/uniswap-v2/v2-core/contracts/",
    "v2-periphery/=test/invariant/modules/uniswap-v2/v2-periphery/contracts/",
    "uniswap-v2/=test/invariant/modules/uniswap-v2/",
    "solidity-bytes-utils/contracts/=test/invariant/modules/fraxlend/libraries/",
    "@rari-capital/solmate/=node_modules/solmate/",
    "@arbitrum/=node_modules/@arbitrum/",
    "@ensdomains/=node_modules/@ensdomains/",
    "@eth-optimism/=node_modules/@eth-optimism/",
    "@ethereum-waffle/=node_modules/@ethereum-waffle/",
    "@mean-finance/=node_modules/@mean-finance/",
    "@offchainlabs/=node_modules/@offchainlabs/",
    "@openzeppelin/=node_modules/@openzeppelin/",
    "@scroll-tech/=node_modules/@scroll-tech/",
    "@uniswap/=node_modules/@uniswap/",
    "@zksync/=node_modules/@zksync/",
    "base64-sol/=node_modules/base64-sol/",
    "ds-test/=lib/fuzzlib/lib/forge-std/lib/ds-test/src/",
    "erc721a/=node_modules/erc721a/",
    "eth-gas-reporter/=node_modules/eth-gas-reporter/",
    "forge-std/=lib/forge-std/src/",
    "hardhat/=node_modules/hardhat/",
    "solidity-code-metrics/=node_modules/solidity-code-metrics/",
    "solmate/=node_modules/solmate/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "viaIR": false,
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountTokens","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountDAI","type":"uint256"}],"name":"AddLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountTokensBonded","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountTokensMinted","type":"uint256"}],"name":"Bond","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newIdx","type":"address"},{"indexed":true,"internalType":"address","name":"wallet","type":"address"}],"name":"Create","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountDebonded","type":"uint256"}],"name":"Debond","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"executor","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FlashLoan","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"executor","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FlashMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"address","name":"v2Pool","type":"address"}],"name":"Initialize","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountLiquidity","type":"uint256"}],"name":"RemoveLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"address","name":"newPartner","type":"address"}],"name":"SetPartner","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"uint16","name":"newFee","type":"uint16"}],"name":"SetPartnerFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BOND_FEE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEBOND_FEE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEX_HANDLER","outputs":[{"internalType":"contract IDexAdapter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FLASH_FEE_AMOUNT_DAI","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAIRED_LP_TOKEN","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pTKNLPTokens","type":"uint256"},{"internalType":"uint256","name":"_pairedLPTokens","type":"uint256"},{"internalType":"uint256","name":"_slippage","type":"uint256"},{"internalType":"uint256","name":"_deadline","type":"uint256"}],"name":"addLiquidityV2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_amountMintMin","type":"uint256"}],"name":"bond","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"config","outputs":[{"components":[{"internalType":"address","name":"partner","type":"address"},{"internalType":"uint256","name":"debondCooldown","type":"uint256"},{"internalType":"bool","name":"hasTransferTax","type":"bool"},{"internalType":"bool","name":"blacklistTKNpTKNPoolV2","type":"bool"}],"internalType":"struct IDecentralizedIndex.Config","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_shares","type":"uint256"}],"name":"convertToAssets","outputs":[{"internalType":"uint256","name":"_assets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_shares","type":"uint256"}],"name":"convertToAssetsPreFlashMint","outputs":[{"internalType":"uint256","name":"_assets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_assets","type":"uint256"}],"name":"convertToShares","outputs":[{"internalType":"uint256","name":"_shares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"created","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address[]","name":"","type":"address[]"},{"internalType":"uint8[]","name":"","type":"uint8[]"}],"name":"debond","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fees","outputs":[{"components":[{"internalType":"uint16","name":"burn","type":"uint16"},{"internalType":"uint16","name":"bond","type":"uint16"},{"internalType":"uint16","name":"debond","type":"uint16"},{"internalType":"uint16","name":"buy","type":"uint16"},{"internalType":"uint16","name":"sell","type":"uint16"},{"internalType":"uint16","name":"partner","type":"uint16"}],"internalType":"struct IDecentralizedIndex.Fees","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"flash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"flashMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllAssets","outputs":[{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"weighting","type":"uint256"},{"internalType":"uint256","name":"basePriceUSDX96","type":"uint256"},{"internalType":"address","name":"c1","type":"address"},{"internalType":"uint256","name":"q1","type":"uint256"}],"internalType":"struct IDecentralizedIndex.IndexAssetInfo[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_sourceToken","type":"address"},{"internalType":"uint256","name":"_sourceAmount","type":"uint256"},{"internalType":"address","name":"_targetToken","type":"address"}],"name":"getInitialAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"indexTokens","outputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"weighting","type":"uint256"},{"internalType":"uint256","name":"basePriceUSDX96","type":"uint256"},{"internalType":"address","name":"c1","type":"address"},{"internalType":"uint256","name":"q1","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"indexType","outputs":[{"internalType":"enum IDecentralizedIndex.IndexType","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"bytes","name":"_baseConfig","type":"bytes"},{"internalType":"bytes","name":"_immutables","type":"bytes"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initializeSelector","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"isAsset","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFlashMinting","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpRewardsToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpStakingPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"processPreSwapFeesAndSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lpTokens","type":"uint256"},{"internalType":"uint256","name":"_minIdxTokens","type":"uint256"},{"internalType":"uint256","name":"_minPairedLpToken","type":"uint256"},{"internalType":"uint256","name":"_deadline","type":"uint256"}],"name":"removeLiquidityV2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pool","type":"address"}],"name":"setLpStakingPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_partner","type":"address"}],"name":"setPartner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_fee","type":"uint16"}],"name":"setPartnerFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAssets","outputs":[{"internalType":"uint256","name":"_totalManagedAssets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"}],"name":"totalAssets","outputs":[{"internalType":"uint256","name":"_totalManagedAssets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlocked","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801561001057600080fd5b507ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff1615906001600160401b031660008115801561005b5750825b90506000826001600160401b031660011480156100775750303b155b905081158015610085575080155b156100a35760405163f92ee8a960e01b815260040160405180910390fd5b84546001600160401b031916600117855583156100d157845460ff60401b1916680100000000000000001785555b831561010557845460ff60401b191685556040516001815260008051602061613e8339815191529060200160405180910390a15b505050505061011861011d60201b60201c565b6101bd565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161561016d5760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146101ba5780546001600160401b0319166001600160401b03908117825560405190815260008051602061613e8339815191529060200160405180910390a15b50565b615f72806101cc6000396000f3fe6080604052600436106102b25760003560e01c8063822631d811610175578063ba0bba40116100dc578063d505accf11610095578063ee9c79da1161006f578063ee9c79da14610a37578063f3e0ffbf14610a57578063f682399614610a8d578063ff140ca614610aad57600080fd5b8063d505accf146109d7578063dd62ed3e146109f7578063e4b5495714610a1757600080fd5b8063ba0bba4014610904578063bb46302714610919578063bdbc91ab1461092e578063bdc8d0601461094e578063c6e6f5921461097e578063c87fa42a1461099e57600080fd5b80639af1d35a1161012e5780639af1d35a1461075c578063a16d596014610864578063a9059cbb14610884578063a9e9c8bc146108a4578063b08d0333146108c4578063b26735e6146108e457600080fd5b8063822631d8146106a757806384b0196e146106c7578063871071d6146106ef57806393b404bd1461071157806394cc699e1461072757806395d89b411461074757600080fd5b806341dc12531161021957806358f4dcc3116101d257806358f4dcc3146105545780635ca8861f146105745780636a5e26501461058e57806370a08231146105af57806379502c55146105cf5780637ecebe001461068757600080fd5b806341dc12531461043e57806342966c681461045e5780634a437f881461047e5780634f4ce61d146104d557806353f504471461050d5780635462c0e91461053457600080fd5b806328492b291161026b57806328492b291461038d5780632acada4d146103af578063313ce567146103d1578063325a19f1146103f35780633644e515146104095780633ea214651461041e57600080fd5b806301e1d114146102be57806306fdde03146102e657806307a2d13a14610308578063095ea7b31461032857806318160ddd1461035857806323b872dd1461036d57600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d3610acc565b6040519081526020015b60405180910390f35b3480156102f257600080fd5b506102fb610b15565b6040516102dd919061501c565b34801561031457600080fd5b506102d361032336600461502f565b610bbe565b34801561033457600080fd5b5061034861034336600461505d565b610c14565b60405190151581526020016102dd565b34801561036457600080fd5b506019546102d3565b34801561037957600080fd5b50610348610388366004615089565b610c2c565b34801561039957600080fd5b506103ad6103a83660046150ca565b610c52565b005b3480156103bb57600080fd5b506103c4610cd5565b6040516102dd91906150e7565b3480156103dd57600080fd5b5060125b60405160ff90911681526020016102dd565b3480156103ff57600080fd5b506102d360115481565b34801561041557600080fd5b506102d3610d6c565b34801561042a57600080fd5b506103ad6104393660046151b2565b610d7b565b34801561044a57600080fd5b506103ad61045936600461521d565b610fb0565b34801561046a57600080fd5b506103ad61047936600461502f565b61108a565b34801561048a57600080fd5b5061049e61049936600461502f565b6110fe565b604080516001600160a01b03968716815260208101959095528401929092529092166060820152608081019190915260a0016102dd565b3480156104e157600080fd5b506005546104f5906001600160a01b031681565b6040516001600160a01b0390911681526020016102dd565b34801561051957600080fd5b506010546105279060ff1681565b6040516102dd9190615250565b34801561054057600080fd5b506103ad61054f36600461535c565b61114b565b34801561056057600080fd5b506012546104f5906001600160a01b031681565b34801561058057600080fd5b50601d546103e19060ff1681565b34801561059a57600080fd5b506013546103e190600160a01b900460ff1681565b3480156105bb57600080fd5b506102d36105ca3660046150ca565b611294565b3480156105db57600080fd5b506106476040805160808101825260008082526020820181905291810182905260608101919091525060408051608081018252600c546001600160a01b03168152600d546020820152600e5460ff80821615159383019390935261010090049091161515606082015290565b6040516102dd919081516001600160a01b031681526020808301519082015260408083015115159082015260609182015115159181019190915260800190565b34801561069357600080fd5b506102d36106a23660046150ca565b6112c7565b3480156106b357600080fd5b506002546104f5906001600160a01b031681565b3480156106d357600080fd5b506106dc6112d2565b6040516102dd9796959493929190615418565b3480156106fb57600080fd5b50604051635462c0e960e01b81526020016102dd565b34801561071d57600080fd5b506102d360045481565b34801561073357600080fd5b506013546104f5906001600160a01b031681565b34801561075357600080fd5b506102fb61137e565b34801561076857600080fd5b506108006040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a0810191909152506040805160c081018252600f5461ffff8082168352620100008204811660208401526401000000008204811693830193909352600160301b810483166060830152600160401b810483166080830152600160501b900490911660a082015290565b6040516102dd9190600060c08201905061ffff835116825261ffff602084015116602083015261ffff604084015116604083015261ffff606084015116606083015261ffff608084015116608083015261ffff60a08401511660a083015292915050565b34801561087057600080fd5b506103ad61087f3660046150ca565b6113bd565b34801561089057600080fd5b5061034861089f36600461505d565b611454565b3480156108b057600080fd5b506102d36108bf3660046154b0565b611462565b3480156108d057600080fd5b506103ad6108df3660046154e2565b611a18565b3480156108f057600080fd5b506102d36108ff36600461502f565b611a95565b34801561091057600080fd5b506103ad611aa6565b34801561092557600080fd5b506103ad611d14565b34801561093a57600080fd5b506103ad610949366004615517565b611e1b565b34801561095a57600080fd5b50600f54640100000000900461ffff165b60405161ffff90911681526020016102dd565b34801561098a57600080fd5b506102d361099936600461502f565b6122eb565b3480156109aa57600080fd5b506103486109b93660046150ca565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156109e357600080fd5b506103ad6109f2366004615598565b6123de565b348015610a0357600080fd5b506102d3610a12366004615609565b612537565b348015610a2357600080fd5b506102d3610a32366004615642565b612581565b348015610a4357600080fd5b506103ad610a5236600461571d565b612701565b348015610a6357600080fd5b506102d3610a723660046150ca565b6001600160a01b031660009081526018602052604090205490565b348015610a9957600080fd5b506103ad610aa83660046154b0565b6129ec565b348015610ab957600080fd5b50600f5462010000900461ffff1661096b565b6000601860006014600081548110610ae657610ae66157ef565b600091825260208083206005909202909101546001600160a01b03168352820192909252604001902054919050565b60606000600080516020615efd8339815191525b9050806003018054610b3a90615805565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6690615805565b8015610bb35780601f10610b8857610100808354040283529160200191610bb3565b820191906000526020600020905b815481529060010190602001808311610b9657829003601f168201915b505050505091505090565b6000610c0e82601860006014600081548110610bdc57610bdc6157ef565b600091825260208083206005909202909101546001600160a01b03168352820192909252604001902054601954612c2a565b92915050565b600033610c22818585612cec565b5060019392505050565b600033610c3a858285612cfe565b610c45858585612d65565b60019150505b9392505050565b6006546001600160a01b0316336001600160a01b0316148015610c7e57506013546001600160a01b0316155b610cb35760405162461bcd60e51b81526020600482015260016024820152604960f81b60448201526064015b60405180910390fd5b601380546001600160a01b0319166001600160a01b0392909216919091179055565b60606014805480602002602001604051908101604052809291908181526020016000905b82821015610d635760008481526020908190206040805160a0810182526005860290920180546001600160a01b0390811684526001808301548587015260028301549385019390935260038201541660608401526004015460808301529083529092019101610cf9565b50505050905090565b6000610d76612dc4565b905090565b601354600160a01b900460ff16600114610da75760405162461bcd60e51b8152600401610caa9061583f565b6013805460ff60a01b19169055601d805460ff19166001179055601a805460ff60901b1916600160901b179055601480546018916000918290610dec57610dec6157ef565b600091825260208083206005909202909101546001600160a01b03168352820192909252604001812054601b55601954601c55610e2b6103e885615886565b90508015610e395780610e3c565b60015b90506000610e4930611294565b9050610e558686612dce565b604051633a62959560e21b81526001600160a01b0387169063e98a565490610e8390879087906004016158a8565b600060405180830381600087803b158015610e9d57600080fd5b505af1158015610eb1573d6000803e3d6000fd5b50505050818582610ec291906158d7565b610ecc91906158d7565b610ed530611294565b1015610f095760405162461bcd60e51b8152602060048201526003602482015262464d4160e81b6044820152606401610caa565b8160196000828254610f1b91906158ea565b90915550610f34905030610f2f84886158d7565b612e08565b6000601b819055601c55601a805460ff60901b19169055601d805460ff191690556040518581526001600160a01b0387169033907f3f332df59082df85f837e54e7adcd25276bb7f09b6b151ff017fcdb187d605b39060200160405180910390a350506013805460ff60a01b1916600160a01b17905550505050565b600c546001600160a01b0316336001600160a01b031614610ff75760405162461bcd60e51b81526020600482015260016024820152600560fc1b6044820152606401610caa565b600f5461ffff600160501b9091048116908216106110275760405162461bcd60e51b8152600401610caa9061583f565b600f805461ffff60501b1916600160501b61ffff8416021790553360405161ffff831681526001600160a01b0391909116907ffc0cb6bfc0e2e72ceb9097dc52c953b7d46c4f1d173de188581cba3fab46ad4a906020015b60405180910390a250565b601354600160a01b900460ff166001146110b65760405162461bcd60e51b8152600401610caa9061583f565b6013805460ff60a01b19169055601980548291906000906110d89084906158ea565b909155506110e890503382612e08565b506013805460ff60a01b1916600160a01b179055565b6014818154811061110e57600080fd5b6000918252602090912060059091020180546001820154600283015460038401546004909401546001600160a01b03938416955091939092169085565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03166000811580156111905750825b90506000826001600160401b031660011480156111ac5750303b155b9050811580156111ba575080155b156111d85760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561120257845460ff60401b1916600160401b1785555b6000806000808a80602001905181019061121c9190615a92565b505093509350935093506112358d8d600087878f612e3e565b61123f8282613409565b50505050831561128957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050565b600080600080516020615efd8339815191525b6001600160a01b0390931660009081526020939093525050604090205490565b6000610c0e82613809565b60006060808280808381600080516020615f1d83398151915280549091501580156112ff57506001810154155b6113435760405162461bcd60e51b81526020600482015260156024820152741152540dcc4c8e88155b9a5b9a5d1a585b1a5e9959605a1b6044820152606401610caa565b61134b613832565b611353613871565b60408051600080825260208201909252600f60f81b9c939b5091995046985030975095509350915050565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace048054606091600080516020615efd83398151915291610b3a90615805565b600c546001600160a01b0316336001600160a01b0316146114045760405162461bcd60e51b81526020600482015260016024820152600560fc1b6044820152606401610caa565b600c80546001600160a01b0319166001600160a01b03831690811790915560405190815233907f4b74c6905f914d7a5f408442bc16a267312648abfc3909c994cc6c2643ae5c969060200161107f565b600033610c22818585612d65565b601354600090600160a01b900460ff166001146114915760405162461bcd60e51b8152600401610caa9061583f565b6013805460ff60a01b19169055601a805460ff60881b1916905560006114b630611294565b6005546040516370a0823160e01b81523060048201529192506000916001600160a01b03909116906370a0823190602401602060405180830381865afa158015611504573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115289190615b88565b9050611535333089613889565b60025461154d9030906001600160a01b031689612cec565b611565336005546001600160a01b03169030896139c7565b600254600554611582916001600160a01b03918216911688613a2e565b600254600554604051639f4f974560e01b81523060048201526001600160a01b0391821660248201526000929190911690639f4f974590604401602060405180830381865afa1580156115d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115fd9190615ba1565b6001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015611650573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116749190615b88565b6002546005549192506001600160a01b039081169163e8e33700913091168b8b6103e86116a18d826158ea565b8f6116ac9190615bbe565b6116b69190615886565b6103e86116c38e826158ea565b8f6116ce9190615bbe565b6116d89190615886565b3360405160e089901b6001600160e01b03191681526001600160a01b039788166004820152958716602487015260448601949094526064850192909252608484015260a483015290911660c482015260e4810188905261010401600060405180830381600087803b15801561174c57600080fd5b505af1158015611760573d6000803e3d6000fd5b505060025460055461178293506001600160a01b039081169250166000613a2e565b8261178c30611294565b11156117b0576117b03033856117a130611294565b6117ab91906158ea565b613889565b6005546040516370a0823160e01b815230600482015283916001600160a01b0316906370a0823190602401602060405180830381865afa1580156117f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181c9190615b88565b11156118af576118af336005546040516370a0823160e01b815230600482015285916001600160a01b0316906370a0823190602401602060405180830381865afa15801561186e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118929190615b88565b61189c91906158ea565b6005546001600160a01b03169190613ab8565b604080518981526020810189905233917f06239653922ac7bea6aa2b19dc486b9361821d37712eb796adfd38d81de278ca910160405180910390a2600254600554604051639f4f974560e01b81523060048201526001600160a01b03918216602482015283929190911690639f4f974590604401602060405180830381865afa158015611940573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119649190615ba1565b6001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156119b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119db9190615b88565b6119e591906158ea565b9350505050601a805460ff60881b1916600160881b1790556013805460ff60a01b1916600160a01b179055949350505050565b601354600160a01b900460ff16600114611a445760405162461bcd60e51b8152600401610caa9061583f565b6013805460ff60a01b19169055601a805460ff60881b19169055611a6a83838333613ae9565b5050601a805460ff60881b1916600160881b179055506013805460ff60a01b1916600160a01b179055565b6000610c0e82601b54601c54612c2a565b601a54600160981b900460ff1615611ae45760405162461bcd60e51b81526020600482015260016024820152604f60f81b6044820152606401610caa565b601a805460ff60981b1916600160981b179055600254600554604051639f4f974560e01b81523060048201526001600160a01b0391821660248201526000929190911690639f4f974590604401602060405180830381865afa158015611b4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b729190615ba1565b90506001600160a01b038116611bfd5760025460055460405163c4f3e9d760e01b81523060048201526001600160a01b03918216602482015291169063c4f3e9d7906044016020604051808303816000875af1158015611bd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bfa9190615ba1565b90505b601354604051631e9b12ef60e01b81526001600160a01b03838116600483015290911690631e9b12ef90602401600060405180830381600087803b158015611c4457600080fd5b505af1158015611c58573d6000803e3d6000fd5b50505050601360009054906101000a90046001600160a01b03166001600160a01b031663715018a66040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611cac57600080fd5b505af1158015611cc0573d6000803e3d6000fd5b5050600b80546001600160a01b0319166001600160a01b0385169081179091556040519081523392507fdc90fed0326ba91706deeac7eb34ac9f8b680734f9d782864dc29704d23bed6a915060200161107f565b601354600160a01b900460ff16600114611d405760405162461bcd60e51b8152600401610caa9061583f565b6013805460ff60a01b19811690915560408051633d665bf960e21b815290516001600160a01b039092169163f5996fe4916004808201926020929091908290030181865afa158015611d96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dba9190615ba1565b6001600160a01b0316336001600160a01b031614611dfe5760405162461bcd60e51b81526020600482015260016024820152602960f91b6044820152606401610caa565b611e06613ec6565b6013805460ff60a01b1916600160a01b179055565b601354600160a01b900460ff16600114611e475760405162461bcd60e51b8152600401610caa9061583f565b6013805460ff60a01b191690556001600160a01b03841660009081526015602052604090205460ff16611ea05760405162461bcd60e51b81526020600482015260016024820152600b60fb1b6044820152606401610caa565b60135460408051633d665bf960e21b815290516000926001600160a01b03169163f5996fe49160048083019260209291908290030181865afa158015611eea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f0e9190615ba1565b6009546012549192506000916001600160a01b03908116911614611fc6576009546005546001600160a01b03908116911614611fc057600360009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fbb9190615ba1565b611fc8565b81611fc8565b305b9050611fe6336004546009546001600160a01b0316919084906139c7565b6009546012546001600160a01b0391821691160361208a5760045460095461201b916001600160a01b03909116908490613a2e565b60095460048054604051634bd68e6760e11b81526001600160a01b03938416928101929092526024820152908316906397ad1cce90604401600060405180830381600087803b15801561206d57600080fd5b505af1158015612081573d6000803e3d6000fd5b505050506120fd565b6009546005546001600160a01b039182169116036120fd57604051633694313d60e01b8152600060048201526001600160a01b03831690633694313d90602401600060405180830381600087803b1580156120e457600080fd5b505af11580156120f8573d6000803e3d6000fd5b505050505b6040516370a0823160e01b81523060048201526000906001600160a01b038816906370a0823190602401602060405180830381865afa158015612144573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121689190615b88565b905061217e6001600160a01b0388168988613ab8565b604051633a62959560e21b81526001600160a01b0389169063e98a5654906121ac90889088906004016158a8565b600060405180830381600087803b1580156121c657600080fd5b505af11580156121da573d6000803e3d6000fd5b50506040516370a0823160e01b81523060048201528392506001600160a01b038a1691506370a0823190602401602060405180830381865afa158015612224573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122489190615b88565b101561227b5760405162461bcd60e51b8152602060048201526002602482015261464160f01b6044820152606401610caa565b6001600160a01b03881633604080516001600160a01b038b81168252602082018b905292909216917f5a9eeaf8949838813289046091e8ea8a9196a2265ac24841464a2d27026a8549910160405180910390a350506013805460ff60a01b1916600160a01b179055505050505050565b6000806122f86019541590565b9050801561235057612349836123106012600a615cbc565b61231e90600160601b615bbe565b6014600081548110612332576123326157ef565b906000526020600020906005020160040154614072565b91506123b9565b60006123a284600160601b601860006014600081548110612373576123736157ef565b600091825260208083206005909202909101546001600160a01b03168352820192909252604001902054614072565b90506123b560195482600160601b614072565b9250505b600f546123d490839062010000900461ffff16612710614072565b610c4b90836158ea565b834211156124025760405163313c898160e11b815260048101859052602401610caa565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c988888861246e8c6001600160a01b031660009081527f5ab42ced628888259c08ac98db1eb0cf702fc1501344311d8b100cd1bfe4bb006020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e00160405160208183030381529060405280519060200120905060006124c982614124565b905060006124d982878787614151565b9050896001600160a01b0316816001600160a01b031614612520576040516325c0072360e11b81526001600160a01b0380831660048301528b166024820152604401610caa565b61252b8a8a8a612cec565b50505050505050505050565b6001600160a01b0391821660009081527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace016020908152604080832093909416825291909152205490565b6001600160a01b03808416600081815260166020908152604080832054948616835280832054815163313ce56760e01b81529151939560ff90811695911693909263313ce56792600480820193918290030181865afa1580156125e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061260c9190615ccb565b61261790600a615cbc565b6014838154811061262a5761262a6157ef565b906000526020600020906005020160010154856001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561267a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061269e9190615ccb565b6126a990600a615cbc565b601484815481106126bc576126bc6157ef565b906000526020600020906005020160010154886126d99190615bbe565b6126e39190615bbe565b6126ed9190615886565b6126f79190615886565b9695505050505050565b601354600160a01b900460ff1660011461272d5760405162461bcd60e51b8152600401610caa9061583f565b6013805460ff60a01b19169055601a805460ff60881b1916905560006127528461417f565b806127d257506001546001600160a01b031663847987a4336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156127ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127d29190615ce8565b61281057600f54612710906127f390640100000000900461ffff1682615d03565b6128019061ffff1686615bbe565b61280b9190615886565b612812565b835b90506000601954600160601b836128299190615bbe565b6128339190615886565b9050612840333087612d65565b816019600082825461285291906158ea565b9091555061286290503083612e08565b61287461286f83876158ea565b6141a5565b60145460005b81811015612980576000600160601b8460186000601486815481106128a1576128a16157ef565b600091825260208083206005909202909101546001600160a01b031683528201929092526040019020546128d59190615bbe565b6128df9190615886565b90508015612977578060186000601485815481106128ff576128ff6157ef565b600091825260208083206005909202909101546001600160a01b03168352820192909252604001812080549091906129389084906158ea565b909155506129779050338260148581548110612956576129566157ef565b60009182526020909120600590910201546001600160a01b03169190613ab8565b5060010161287a565b50612989613ec6565b60405186815233907fe4bf69c2fff7ace5eed72842e9abf52af2218a3a78cb83d7824f999dbfd75e719060200160405180910390a25050601a805460ff60881b1916600160881b17905550506013805460ff60a01b1916600160a01b1790555050565b601354600160a01b900460ff16600114612a185760405162461bcd60e51b8152600401610caa9061583f565b6013805460ff60a01b19169055601a805460ff60881b191690558315612a3e5783612ab8565b600b546001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015612a94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ab89190615b88565b935060008411612aef5760405162461bcd60e51b8152602060048201526002602482015261131560f21b6044820152606401610caa565b612b0733600b546001600160a01b03169030876139c7565b600254600b54612b24916001600160a01b03918216911686613a2e565b60025460055460408051635d5155ef60e11b81523060048201526001600160a01b0392831660248201526044810188905260648101879052608481018690523360a482015260c481018590529051919092169163baa2abde9160e480830192600092919082900301818387803b158015612b9d57600080fd5b505af1158015612bb1573d6000803e3d6000fd5b50505050612bbc3390565b6001600160a01b03167fdfdd120ded9b7afc0c23dd5310e93aaa3e1c3b9f75af9b805fab3030842439f285604051612bf691815260200190565b60405180910390a25050601a805460ff60881b1916600160881b17905550506013805460ff60a01b1916600160a01b179055565b600080612c376019541590565b90508015612c9657612c8f856014600081548110612c5757612c576157ef565b906000526020600020906005020160040154612c71601290565b612c7c90600a615cbc565b612c8a90600160601b615bbe565b614072565b9150612cbc565b6000612ca786600160601b86614072565b9050612cb88582600160601b614072565b9250505b600f54612cd9908390640100000000900461ffff16612710614072565b612ce390836158ea565b95945050505050565b612cf98383836001614204565b505050565b6000612d0a8484612537565b9050600019811015612d5f5781811015612d5057604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610caa565b612d5f84848484036000614204565b50505050565b6001600160a01b038316612d8f57604051634b637e8f60e11b815260006004820152602401610caa565b6001600160a01b038216612db95760405163ec442f0560e01b815260006004820152602401610caa565b612cf98383836142eb565b6000610d766144f2565b6001600160a01b038216612df85760405163ec442f0560e01b815260006004820152602401610caa565b612e04600083836142eb565b5050565b6001600160a01b038216612e3257604051634b637e8f60e11b815260006004820152602401610caa565b612e04826000836142eb565b612e46614566565b612e5086866145b1565b612e59866145c3565b60068054336001600160a01b03199091161790556013805460ff60a01b1916600160a01b179055601a805460ff60881b1916600160881b1790556064612ea26127106014615bbe565b612eac9190615886565b826060015161ffff161115612ec057600080fd5b6064612ecf6127106014615bbe565b612ed99190615886565b826080015161ffff161115612eed57600080fd5b6064612efc6127106046615bbe565b612f069190615886565b825161ffff161115612f1757600080fd5b6064612f266127106063615bbe565b612f309190615886565b826020015161ffff161115612f4457600080fd5b6064612f536127106063615bbe565b612f5d9190615886565b826040015161ffff161115612f7157600080fd5b6064612f806127106005615bbe565b612f8a9190615886565b8260a0015161ffff161115612f9e57600080fd5b6010805485919060ff191660018381811115612fbc57612fbc61523a565b0217905550426011558151600f80546020808601516040808801516060808a015160808b015160a08c015161ffff908116600160501b0261ffff60501b19928216600160401b02929092166bffffffff000000000000000019938216600160301b0267ffff00000000000019968316640100000000029690961667ffffffff0000000019988316620100000263ffffffff19909b1692909c1691909117989098179590951698909817919091179690961693909317179092558551600c80546001600160a01b039092166001600160a01b031990921691909117905590850151600d81905590850151600e80549387015115156101000261ff00199215159290921661ffff19949094169390931717909155156130dd5782602001516130e2565b624f1a005b600c6001018190555060008060008060008060008780602001905181019061310a9190615d1d565b959c50939a5091985096509450925090506001600160a01b0387166131575760405162461bcd60e51b81526020600482015260036024820152620504c560ec1b6044820152606401610caa565b601280546001600160a01b03199081166001600160a01b03898116919091179092556009805482168884161790556000805482168784161790556001805482168684161790556003805482168584161790556002805490911691831691821790556040805163456d019760e11b81529051638ada032e916004808201926020929091908290030181865afa1580156131f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132179190615ba1565b600780546001600160a01b0319166001600160a01b0392831617905560025460408051635088cc2b60e11b81529051919092169163a11198569160048083019260209291908290030181865afa158015613275573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132999190615ba1565b600880546001600160a01b03199081166001600160a01b0393841617909155600580549091168983161790556040805163313ce56760e01b815290519187169163313ce567916004808201926020929091908290030181865afa158015613304573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133289190615ccb565b61333390600a615cbc565b61333e90600a615bbe565b6004908155600254604080516315ab88c960e31b815290516001600160a01b039092169263ad5c46489282820192602092908290030181865afa158015613389573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133ad9190615ba1565b600a80546001600160a01b0319166001600160a01b0392909216919091179055604051339030907f96b5b9b8a7193304150caccf9b80d150675fa3d6af57761d8d8ef1d6f9a1a90990600090a350505050505050505050505050565b805182511461343e5760405162461bcd60e51b81526020600482015260016024820152602b60f91b6044820152606401610caa565b8151600090815b818160ff1610156136cd5760156000868360ff1681518110613469576134696157ef565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff16156134c15760405162461bcd60e51b81526020600482015260016024820152601160fa1b6044820152606401610caa565b6000848260ff16815181106134d8576134d86157ef565b6020026020010151116135115760405162461bcd60e51b81526020600482015260016024820152605760f81b6044820152606401610caa565b60146040518060a00160405280878460ff1681518110613533576135336157ef565b60200260200101516001600160a01b03168152602001868460ff168151811061355e5761355e6157ef565b602090810291909101810151825260008282018190526040808401829052606093840182905285546001818101885596835291839020855160059093020180546001600160a01b039384166001600160a01b03199182161782559386015196810196909655840151600286015591830151600385018054919093169116179055608001516004909101558351849060ff83169081106135ff576135ff6157ef565b60200260200101518361361291906158d7565b92508060166000878460ff168151811061362e5761362e6157ef565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908360ff160217905550600160156000878460ff1681518110613689576136896157ef565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806136c581615db9565b915050613445565b506000836000815181106136e3576136e36157ef565b602002602001015183600160601b6136fb9190615bbe565b6137059190615886565b905060005b828110156138015783868281518110613725576137256157ef565b60200260200101516001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561376a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061378e9190615ccb565b61379990600a615cbc565b838784815181106137ac576137ac6157ef565b60200260200101516137be9190615bbe565b6137c89190615bbe565b6137d29190615886565b601482815481106137e5576137e56157ef565b600091825260209091206004600590920201015560010161370a565b505050505050565b6000807f5ab42ced628888259c08ac98db1eb0cf702fc1501344311d8b100cd1bfe4bb006112a7565b7fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1028054606091600080516020615f1d83398151915291610b3a90615805565b60606000600080516020615f1d833981519152610b29565b600080516020615efd8339815191526001600160a01b0384166138c557818160020160008282546138ba91906158d7565b909155506139379050565b6001600160a01b038416600090815260208290526040902054828110156139185760405163391434e360e21b81526001600160a01b03861660048201526024810182905260448101849052606401610caa565b6001600160a01b03851660009081526020839052604090209083900390555b6001600160a01b038316613955576002810180548390039055613974565b6001600160a01b03831660009081526020829052604090208054830190555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516139b991815260200190565b60405180910390a350505050565b6040516001600160a01b038481166024830152838116604483015260648201839052612d5f9186918216906323b872dd906084015b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050506145f1565b604051636eb1769f60e11b81523060048201526001600160a01b0383811660248301526000919085169063dd62ed3e90604401602060405180830381865afa158015613a7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613aa29190615b88565b9050612d5f8484613ab385856158d7565b614662565b6040516001600160a01b03838116602483015260448201839052612cf991859182169063a9059cbb906064016139fc565b6001600160a01b03841660009081526015602052604090205460ff16613b365760405162461bcd60e51b8152602060048201526002602482015261125560f21b6044820152606401610caa565b6001600160a01b03841660009081526016602052604081205460ff1690613b5d6019541590565b9050600081613b9c576001600160a01b038716600090815260186020526040902054613b8d600160601b88615bbe565b613b979190615886565b613ba2565b600160601b5b905060008215613c0d5760148481548110613bbf57613bbf6157ef565b906000526020600020906005020160040154613bd9601290565b613be490600a615cbc565b613bf2600160601b8a615bbe565b613bfc9190615bbe565b613c069190615886565b9050613c2d565b600160601b82601954613c209190615bbe565b613c2a9190615886565b90505b6000613c38866146f2565b613c6657600f5461271090613c579062010000900461ffff1684615bbe565b613c619190615886565b613c69565b60005b905086613c7682846158ea565b1015613ca85760405162461bcd60e51b81526020600482015260016024820152604d60f81b6044820152606401610caa565b8160196000828254613cba91906158d7565b90915550613cd3905086613cce83856158ea565b612dce565b8015613cec57613ce33082612dce565b613cec816141a5565b60145460005b81811015613e5b57600086613d5557613d506018600060148581548110613d1b57613d1b6157ef565b600091825260208083206005909202909101546001600160a01b0316835282019290925260400190205487600160601b61474a565b613d8c565b613d8c8c8c60148581548110613d6d57613d6d6157ef565b60009182526020909120600590910201546001600160a01b0316612581565b905060008111613dc35760405162461bcd60e51b8152602060048201526002602482015261054360f41b6044820152606401610caa565b806018600060148581548110613ddb57613ddb6157ef565b600091825260208083206005909202909101546001600160a01b0316835282019290925260400181208054909190613e149084906158d7565b92505081905550613e5260148381548110613e3157613e316157ef565b60009182526020909120600590910201546001600160a01b03168a8361478a565b50600101613cf2565b50613e646148b1565b896001600160a01b0316876001600160a01b03167fad49529616fd9fe4b34e00ac3f98d5cc3531e1232a95f249113b23fdf13c7e858b86604051613eb2929190918252602082015260400190565b60405180910390a350505050505050505050565b601a54600160901b900460ff16600103613edc57565b601a54600090613efe90601490600160401b90046001600160401b0316615dd8565b6001600160401b03164211905080613f135750565b6000613f1e30611294565b905080600003613f2c575050565b600b54600090613f44906001600160a01b0316611294565b9050600046600114613f6157613f5c610fa083615886565b613f6d565b613f6d6103e883615886565b90506000613f7c606484615886565b9050818410158015613f8e5750600083115b1561406b57601a80546001600160401b034216600160401b0270ffffffffffffffffff00000000000000001990911617600160801b1790556000818511613fd55784613fd7565b815b600f54909150600090600160501b900461ffff16158015906140035750600c546001600160a01b031615155b1561404957600f546127109061402490600160501b900461ffff1684615bbe565b61402e9190615886565b600c549091506140499030906001600160a01b031683613889565b61405b61405682846158ea565b61493d565b5050601a805460ff60801b191690555b5050505050565b60008080600019858709858702925082811083820303915050806000036140ab57600084116140a057600080fd5b508290049050610c4b565b8084116140b757600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b6000610c0e614131612dc4565b8360405161190160f01b8152600281019290925260228201526042902090565b60008060008061416388888888614ca4565b9250925092506141738282614d73565b50909695505050505050565b6000606460195460636141929190615bbe565b61419c9190615886565b90911015919050565b8015806141b65750600f5461ffff16155b156141be5750565b600f54600090612710906141d69061ffff1684615bbe565b6141e09190615886565b905080601960008282546141f491906158ea565b90915550612e0490503082612e08565b600080516020615efd8339815191526001600160a01b03851661423d5760405163e602df0560e01b815260006004820152602401610caa565b6001600160a01b03841661426757604051634a1406b160e11b815260006004820152602401610caa565b6001600160a01b0380861660009081526001830160209081526040808320938816835292905220839055811561406b57836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516142dc91815260200190565b60405180910390a35050505050565b6001600160a01b03821660009081526017602052604090205460ff16156143395760405162461bcd60e51b8152602060048201526002602482015261424b60f01b6044820152606401610caa565b6001600160a01b038316158061435657506001600160a01b038216155b1561436657612cf9838383613889565b600b546000906001600160a01b03858116911614801561439457506007546001600160a01b03848116911614155b600b54601a549192506001600160a01b038581169116149060009060ff600160801b909104161580156143d35750601a54600160881b900460ff166001145b156144da57600b546001600160a01b038781169116146143f5576143f5613ec6565b82801561440e5750600f54600160301b900461ffff1615155b1561444b57600f546127109061442f90600160301b900461ffff1686615bbe565b6144399190615886565b9050614446863083613889565b6144da565b8180156144645750600f54600160401b900461ffff1615155b1561448557600f546127109061442f90600160401b900461ffff1686615bbe565b82158015614491575081155b801561449f5750600e5460ff165b156144da576144b061271085615886565b9050801580156144c05750600084115b6144ca57806144cd565b60015b90506144da863083613889565b6144e3816141a5565b61380186866117ab84886158ea565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f61451d614e2c565b614525614e96565b60408051602081019490945283019190915260608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166145af57604051631afcd79f60e31b815260040160405180910390fd5b565b6145b9614566565b612e048282614eda565b6145cb614566565b6145ee81604051806040016040528060018152602001603160f81b815250614f2b565b50565b600080602060008451602086016000885af180614614576040513d6000823e3d81fd5b50506000513d9150811561462c578060011415614639565b6001600160a01b0384163b155b15612d5f57604051635274afe760e01b81526001600160a01b0385166004820152602401610caa565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790526146b38482614f8c565b612d5f576040516001600160a01b038481166024830152600060448301526146e891869182169063095ea7b3906064016139fc565b612d5f84826145f1565b60006146fe6019541590565b80610c0e5750600c546001600160a01b03838116911614801561472a5750601a546001600160401b0316155b8015610c0e57506011546147419062093a806158d7565b42111592915050565b6000614757848484614072565b9050600082806147695761476961585a565b8486091115610c4b57600019811061478057600080fd5b6001019392505050565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa1580156147d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906147f59190615b88565b905061480c6001600160a01b0385168430856139c7565b61481682826158d7565b6040516370a0823160e01b81523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa15801561485a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061487e9190615b88565b1015612d5f5760405162461bcd60e51b81526020600482015260026024820152612a2b60f11b6044820152606401610caa565b601a54600160981b900460ff166148ee5760405162461bcd60e51b81526020600482015260016024820152604960f81b6044820152606401610caa565b601a546001600160401b031615801561491a5750600c546001600160a01b0316336001600160a01b0316145b156145af57601a805467ffffffffffffffff1916426001600160401b0316179055565b6002546149559030906001600160a01b031683612cec565b60135460408051633d665bf960e21b815290516000926001600160a01b03169163f5996fe49160048083019260209291908290030181865afa15801561499f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906149c39190615ba1565b6005546040516370a0823160e01b81526001600160a01b038084166004830152929350600092909116906370a0823190602401602060405180830381865afa158015614a13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614a379190615b88565b6002546005546040516383e4b89f60e01b81523060048201526001600160a01b0391821660248201526044810187905260006064820152858216608482015292935016906383e4b89f9060a4016020604051808303816000875af1158015614aa3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614ac79190615b88565b506012546005546001600160a01b03918216911603614bd0576005546040516370a0823160e01b81526001600160a01b03848116600483015260009284929116906370a0823190602401602060405180830381865afa158015614b2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614b529190615b88565b614b5c91906158ea565b90508015612d5f57600554604051633dc60e8360e01b81526001600160a01b0391821660048201526024810183905290841690633dc60e8390604401600060405180830381600087803b158015614bb257600080fd5b505af1158015614bc6573d6000803e3d6000fd5b5050505050505050565b6005546040516370a0823160e01b81526001600160a01b03848116600483015260009216906370a0823190602401602060405180830381865afa158015614c1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614c3f9190615b88565b1115612cf957604051633694313d60e01b8152600060048201526001600160a01b03831690633694313d90602401600060405180830381600087803b158015614c8757600080fd5b505af1158015614c9b573d6000803e3d6000fd5b50505050505050565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115614cdf5750600091506003905082614d69565b604080516000808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015614d33573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116614d5f57506000925060019150829050614d69565b9250600091508190505b9450945094915050565b6000826003811115614d8757614d8761523a565b03614d90575050565b6001826003811115614da457614da461523a565b03614dc25760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115614dd657614dd661523a565b03614df75760405163fce698f760e01b815260048101829052602401610caa565b6003826003811115614e0b57614e0b61523a565b03612e04576040516335e2f38360e21b815260048101829052602401610caa565b6000600080516020615f1d83398151915281614e46613832565b805190915015614e5e57805160209091012092915050565b81548015614e6d579392505050565b7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470935050505090565b6000600080516020615f1d83398151915281614eb0613871565b805190915015614ec857805160209091012092915050565b60018201548015614e6d579392505050565b614ee2614566565b600080516020615efd8339815191527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace03614f1c8482615e3e565b5060048101612d5f8382615e3e565b614f33614566565b600080516020615f1d8339815191527fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d102614f6d8482615e3e565b5060038101614f7c8382615e3e565b5060008082556001909101555050565b6000806000806020600086516020880160008a5af192503d915060005190508280156126f757508115614fc257806001146126f7565b50505050506001600160a01b03163b151590565b6000815180845260005b81811015614ffc57602081850181015186830182015201614fe0565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000610c4b6020830184614fd6565b60006020828403121561504157600080fd5b5035919050565b6001600160a01b03811681146145ee57600080fd5b6000806040838503121561507057600080fd5b823561507b81615048565b946020939093013593505050565b60008060006060848603121561509e57600080fd5b83356150a981615048565b925060208401356150b981615048565b929592945050506040919091013590565b6000602082840312156150dc57600080fd5b8135610c4b81615048565b602080825282518282018190526000918401906040840190835b8181101561515f57835160018060a01b038151168452602081015160208501526040810151604085015260018060a01b036060820151166060850152608081015160808501525060a083019250602084019350600181019050615101565b509095945050505050565b60008083601f84011261517c57600080fd5b5081356001600160401b0381111561519357600080fd5b6020830191508360208285010111156151ab57600080fd5b9250929050565b600080600080606085870312156151c857600080fd5b84356151d381615048565b93506020850135925060408501356001600160401b038111156151f557600080fd5b6152018782880161516a565b95989497509550505050565b61ffff811681146145ee57600080fd5b60006020828403121561522f57600080fd5b8135610c4b8161520d565b634e487b7160e01b600052602160045260246000fd5b602081016002831061527257634e487b7160e01b600052602160045260246000fd5b91905290565b634e487b7160e01b600052604160045260246000fd5b604051608081016001600160401b03811182821017156152b0576152b0615278565b60405290565b604051601f8201601f191681016001600160401b03811182821017156152de576152de615278565b604052919050565b600082601f8301126152f757600080fd5b8135602083016000806001600160401b0384111561531757615317615278565b50601f8301601f191660200161532c816152b6565b91505082815285838301111561534157600080fd5b82826020830137600092810160200192909252509392505050565b6000806000806080858703121561537257600080fd5b84356001600160401b0381111561538857600080fd5b615394878288016152e6565b94505060208501356001600160401b038111156153b057600080fd5b6153bc878288016152e6565b93505060408501356001600160401b038111156153d857600080fd5b6153e4878288016152e6565b92505060608501356001600160401b0381111561540057600080fd5b61540c878288016152e6565b91505092959194509250565b60ff60f81b8816815260e06020820152600061543760e0830189614fd6565b82810360408401526154498189614fd6565b606084018890526001600160a01b038716608085015260a0840186905283810360c08501528451808252602080870193509091019060005b8181101561549f578351835260209384019390920191600101615481565b50909b9a5050505050505050505050565b600080600080608085870312156154c657600080fd5b5050823594602084013594506040840135936060013592509050565b6000806000606084860312156154f757600080fd5b833561550281615048565b95602085013595506040909401359392505050565b60008060008060006080868803121561552f57600080fd5b853561553a81615048565b9450602086013561554a81615048565b93506040860135925060608601356001600160401b0381111561556c57600080fd5b6155788882890161516a565b969995985093965092949392505050565b60ff811681146145ee57600080fd5b600080600080600080600060e0888a0312156155b357600080fd5b87356155be81615048565b965060208801356155ce81615048565b9550604088013594506060880135935060808801356155ec81615589565b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561561c57600080fd5b823561562781615048565b9150602083013561563781615048565b809150509250929050565b60008060006060848603121561565757600080fd5b833561566281615048565b925060208401359150604084013561567981615048565b809150509250925092565b60006001600160401b0382111561569d5761569d615278565b5060051b60200190565b600082601f8301126156b857600080fd5b81356156cb6156c682615684565b6152b6565b8082825260208201915060208360051b8601019250858311156156ed57600080fd5b602085015b8381101561571357803561570581615589565b8352602092830192016156f2565b5095945050505050565b60008060006060848603121561573257600080fd5b8335925060208401356001600160401b0381111561574f57600080fd5b8401601f8101861361576057600080fd5b803561576e6156c682615684565b8082825260208201915060208360051b85010192508883111561579057600080fd5b6020840193505b828410156157bb5783356157aa81615048565b825260209384019390910190615797565b945050505060408401356001600160401b038111156157d957600080fd5b6157e5868287016156a7565b9150509250925092565b634e487b7160e01b600052603260045260246000fd5b600181811c9082168061581957607f821691505b60208210810361583957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600190820152601360fa1b604082015260600190565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000826158a357634e487b7160e01b600052601260045260246000fd5b500490565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b80820180821115610c0e57610c0e615870565b81810381811115610c0e57610c0e615870565b8051801515811461590d57600080fd5b919050565b600060c0828403121561592457600080fd5b60405160c081016001600160401b038111828210171561594657615946615278565b806040525080915082516159598161520d565b815260208301516159698161520d565b6020820152604083015161597c8161520d565b6040820152606083015161598f8161520d565b606082015260808301516159a28161520d565b608082015260a08301516159b58161520d565b60a0919091015292915050565b600082601f8301126159d357600080fd5b81516159e16156c682615684565b8082825260208201915060208360051b860101925085831115615a0357600080fd5b602085015b83811015615713578051615a1b81615048565b835260209283019201615a08565b600082601f830112615a3a57600080fd5b8151615a486156c682615684565b8082825260208201915060208360051b860101925085831115615a6a57600080fd5b602085015b83811015615713578051835260209283019201615a6f565b805161590d81615048565b6000806000806000808688036101c0811215615aad57600080fd5b6080811215615abb57600080fd5b50615ac461528e565b8751615acf81615048565b815260208881015190820152615ae7604089016158fd565b6040820152615af8606089016158fd565b60608201529550615b0c8860808901615912565b94506101408701516001600160401b03811115615b2857600080fd5b615b3489828a016159c2565b9450506101608701516001600160401b03811115615b5157600080fd5b615b5d89828a01615a29565b935050615b6d6101808801615a87565b9150615b7c6101a088016158fd565b90509295509295509295565b600060208284031215615b9a57600080fd5b5051919050565b600060208284031215615bb357600080fd5b8151610c4b81615048565b8082028115828204841417610c0e57610c0e615870565b6001815b6001841115615c1057808504811115615bf457615bf4615870565b6001841615615c0257908102905b60019390931c928002615bd9565b935093915050565b600082615c2757506001610c0e565b81615c3457506000610c0e565b8160018114615c4a5760028114615c5457615c70565b6001915050610c0e565b60ff841115615c6557615c65615870565b50506001821b610c0e565b5060208310610133831016604e8410600b8410161715615c93575081810a610c0e565b615ca06000198484615bd5565b8060001904821115615cb457615cb4615870565b029392505050565b6000610c4b60ff841683615c18565b600060208284031215615cdd57600080fd5b8151610c4b81615589565b600060208284031215615cfa57600080fd5b610c4b826158fd565b61ffff8281168282160390811115610c0e57610c0e615870565b600080600080600080600060e0888a031215615d3857600080fd5b8751615d4381615048565b6020890151909750615d5481615048565b6040890151909650615d6581615048565b6060890151909550615d7681615048565b6080890151909450615d8781615048565b60a0890151909350615d9881615048565b60c0890151909250615da981615048565b8091505092959891949750929550565b600060ff821660ff8103615dcf57615dcf615870565b60010192915050565b6001600160401b038181168382160190811115610c0e57610c0e615870565b601f821115612cf957806000526020600020601f840160051c81016020851015615e1e5750805b601f840160051c820191505b8181101561406b5760008155600101615e2a565b81516001600160401b03811115615e5757615e57615278565b615e6b81615e658454615805565b84615df7565b6020601f821160018114615e9f5760008315615e875750848201515b600019600385901b1c1916600184901b17845561406b565b600084815260208120601f198516915b82811015615ecf5787850151825560209485019460019092019101615eaf565b5084821015615eed5786840151600019600387901b60f8161c191681555b50505050600190811b0190555056fe52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00a16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d100a264697066735822122091b560d5573b15c660ecc998d3a54e6b146cbb3296fa78f2ed5d093d86c2193064736f6c634300081c0033c7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2

Deployed Bytecode

0x6080604052600436106102b25760003560e01c8063822631d811610175578063ba0bba40116100dc578063d505accf11610095578063ee9c79da1161006f578063ee9c79da14610a37578063f3e0ffbf14610a57578063f682399614610a8d578063ff140ca614610aad57600080fd5b8063d505accf146109d7578063dd62ed3e146109f7578063e4b5495714610a1757600080fd5b8063ba0bba4014610904578063bb46302714610919578063bdbc91ab1461092e578063bdc8d0601461094e578063c6e6f5921461097e578063c87fa42a1461099e57600080fd5b80639af1d35a1161012e5780639af1d35a1461075c578063a16d596014610864578063a9059cbb14610884578063a9e9c8bc146108a4578063b08d0333146108c4578063b26735e6146108e457600080fd5b8063822631d8146106a757806384b0196e146106c7578063871071d6146106ef57806393b404bd1461071157806394cc699e1461072757806395d89b411461074757600080fd5b806341dc12531161021957806358f4dcc3116101d257806358f4dcc3146105545780635ca8861f146105745780636a5e26501461058e57806370a08231146105af57806379502c55146105cf5780637ecebe001461068757600080fd5b806341dc12531461043e57806342966c681461045e5780634a437f881461047e5780634f4ce61d146104d557806353f504471461050d5780635462c0e91461053457600080fd5b806328492b291161026b57806328492b291461038d5780632acada4d146103af578063313ce567146103d1578063325a19f1146103f35780633644e515146104095780633ea214651461041e57600080fd5b806301e1d114146102be57806306fdde03146102e657806307a2d13a14610308578063095ea7b31461032857806318160ddd1461035857806323b872dd1461036d57600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d3610acc565b6040519081526020015b60405180910390f35b3480156102f257600080fd5b506102fb610b15565b6040516102dd919061501c565b34801561031457600080fd5b506102d361032336600461502f565b610bbe565b34801561033457600080fd5b5061034861034336600461505d565b610c14565b60405190151581526020016102dd565b34801561036457600080fd5b506019546102d3565b34801561037957600080fd5b50610348610388366004615089565b610c2c565b34801561039957600080fd5b506103ad6103a83660046150ca565b610c52565b005b3480156103bb57600080fd5b506103c4610cd5565b6040516102dd91906150e7565b3480156103dd57600080fd5b5060125b60405160ff90911681526020016102dd565b3480156103ff57600080fd5b506102d360115481565b34801561041557600080fd5b506102d3610d6c565b34801561042a57600080fd5b506103ad6104393660046151b2565b610d7b565b34801561044a57600080fd5b506103ad61045936600461521d565b610fb0565b34801561046a57600080fd5b506103ad61047936600461502f565b61108a565b34801561048a57600080fd5b5061049e61049936600461502f565b6110fe565b604080516001600160a01b03968716815260208101959095528401929092529092166060820152608081019190915260a0016102dd565b3480156104e157600080fd5b506005546104f5906001600160a01b031681565b6040516001600160a01b0390911681526020016102dd565b34801561051957600080fd5b506010546105279060ff1681565b6040516102dd9190615250565b34801561054057600080fd5b506103ad61054f36600461535c565b61114b565b34801561056057600080fd5b506012546104f5906001600160a01b031681565b34801561058057600080fd5b50601d546103e19060ff1681565b34801561059a57600080fd5b506013546103e190600160a01b900460ff1681565b3480156105bb57600080fd5b506102d36105ca3660046150ca565b611294565b3480156105db57600080fd5b506106476040805160808101825260008082526020820181905291810182905260608101919091525060408051608081018252600c546001600160a01b03168152600d546020820152600e5460ff80821615159383019390935261010090049091161515606082015290565b6040516102dd919081516001600160a01b031681526020808301519082015260408083015115159082015260609182015115159181019190915260800190565b34801561069357600080fd5b506102d36106a23660046150ca565b6112c7565b3480156106b357600080fd5b506002546104f5906001600160a01b031681565b3480156106d357600080fd5b506106dc6112d2565b6040516102dd9796959493929190615418565b3480156106fb57600080fd5b50604051635462c0e960e01b81526020016102dd565b34801561071d57600080fd5b506102d360045481565b34801561073357600080fd5b506013546104f5906001600160a01b031681565b34801561075357600080fd5b506102fb61137e565b34801561076857600080fd5b506108006040805160c081018252600080825260208201819052918101829052606081018290526080810182905260a0810191909152506040805160c081018252600f5461ffff8082168352620100008204811660208401526401000000008204811693830193909352600160301b810483166060830152600160401b810483166080830152600160501b900490911660a082015290565b6040516102dd9190600060c08201905061ffff835116825261ffff602084015116602083015261ffff604084015116604083015261ffff606084015116606083015261ffff608084015116608083015261ffff60a08401511660a083015292915050565b34801561087057600080fd5b506103ad61087f3660046150ca565b6113bd565b34801561089057600080fd5b5061034861089f36600461505d565b611454565b3480156108b057600080fd5b506102d36108bf3660046154b0565b611462565b3480156108d057600080fd5b506103ad6108df3660046154e2565b611a18565b3480156108f057600080fd5b506102d36108ff36600461502f565b611a95565b34801561091057600080fd5b506103ad611aa6565b34801561092557600080fd5b506103ad611d14565b34801561093a57600080fd5b506103ad610949366004615517565b611e1b565b34801561095a57600080fd5b50600f54640100000000900461ffff165b60405161ffff90911681526020016102dd565b34801561098a57600080fd5b506102d361099936600461502f565b6122eb565b3480156109aa57600080fd5b506103486109b93660046150ca565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156109e357600080fd5b506103ad6109f2366004615598565b6123de565b348015610a0357600080fd5b506102d3610a12366004615609565b612537565b348015610a2357600080fd5b506102d3610a32366004615642565b612581565b348015610a4357600080fd5b506103ad610a5236600461571d565b612701565b348015610a6357600080fd5b506102d3610a723660046150ca565b6001600160a01b031660009081526018602052604090205490565b348015610a9957600080fd5b506103ad610aa83660046154b0565b6129ec565b348015610ab957600080fd5b50600f5462010000900461ffff1661096b565b6000601860006014600081548110610ae657610ae66157ef565b600091825260208083206005909202909101546001600160a01b03168352820192909252604001902054919050565b60606000600080516020615efd8339815191525b9050806003018054610b3a90615805565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6690615805565b8015610bb35780601f10610b8857610100808354040283529160200191610bb3565b820191906000526020600020905b815481529060010190602001808311610b9657829003601f168201915b505050505091505090565b6000610c0e82601860006014600081548110610bdc57610bdc6157ef565b600091825260208083206005909202909101546001600160a01b03168352820192909252604001902054601954612c2a565b92915050565b600033610c22818585612cec565b5060019392505050565b600033610c3a858285612cfe565b610c45858585612d65565b60019150505b9392505050565b6006546001600160a01b0316336001600160a01b0316148015610c7e57506013546001600160a01b0316155b610cb35760405162461bcd60e51b81526020600482015260016024820152604960f81b60448201526064015b60405180910390fd5b601380546001600160a01b0319166001600160a01b0392909216919091179055565b60606014805480602002602001604051908101604052809291908181526020016000905b82821015610d635760008481526020908190206040805160a0810182526005860290920180546001600160a01b0390811684526001808301548587015260028301549385019390935260038201541660608401526004015460808301529083529092019101610cf9565b50505050905090565b6000610d76612dc4565b905090565b601354600160a01b900460ff16600114610da75760405162461bcd60e51b8152600401610caa9061583f565b6013805460ff60a01b19169055601d805460ff19166001179055601a805460ff60901b1916600160901b179055601480546018916000918290610dec57610dec6157ef565b600091825260208083206005909202909101546001600160a01b03168352820192909252604001812054601b55601954601c55610e2b6103e885615886565b90508015610e395780610e3c565b60015b90506000610e4930611294565b9050610e558686612dce565b604051633a62959560e21b81526001600160a01b0387169063e98a565490610e8390879087906004016158a8565b600060405180830381600087803b158015610e9d57600080fd5b505af1158015610eb1573d6000803e3d6000fd5b50505050818582610ec291906158d7565b610ecc91906158d7565b610ed530611294565b1015610f095760405162461bcd60e51b8152602060048201526003602482015262464d4160e81b6044820152606401610caa565b8160196000828254610f1b91906158ea565b90915550610f34905030610f2f84886158d7565b612e08565b6000601b819055601c55601a805460ff60901b19169055601d805460ff191690556040518581526001600160a01b0387169033907f3f332df59082df85f837e54e7adcd25276bb7f09b6b151ff017fcdb187d605b39060200160405180910390a350506013805460ff60a01b1916600160a01b17905550505050565b600c546001600160a01b0316336001600160a01b031614610ff75760405162461bcd60e51b81526020600482015260016024820152600560fc1b6044820152606401610caa565b600f5461ffff600160501b9091048116908216106110275760405162461bcd60e51b8152600401610caa9061583f565b600f805461ffff60501b1916600160501b61ffff8416021790553360405161ffff831681526001600160a01b0391909116907ffc0cb6bfc0e2e72ceb9097dc52c953b7d46c4f1d173de188581cba3fab46ad4a906020015b60405180910390a250565b601354600160a01b900460ff166001146110b65760405162461bcd60e51b8152600401610caa9061583f565b6013805460ff60a01b19169055601980548291906000906110d89084906158ea565b909155506110e890503382612e08565b506013805460ff60a01b1916600160a01b179055565b6014818154811061110e57600080fd5b6000918252602090912060059091020180546001820154600283015460038401546004909401546001600160a01b03938416955091939092169085565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03166000811580156111905750825b90506000826001600160401b031660011480156111ac5750303b155b9050811580156111ba575080155b156111d85760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561120257845460ff60401b1916600160401b1785555b6000806000808a80602001905181019061121c9190615a92565b505093509350935093506112358d8d600087878f612e3e565b61123f8282613409565b50505050831561128957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050565b600080600080516020615efd8339815191525b6001600160a01b0390931660009081526020939093525050604090205490565b6000610c0e82613809565b60006060808280808381600080516020615f1d83398151915280549091501580156112ff57506001810154155b6113435760405162461bcd60e51b81526020600482015260156024820152741152540dcc4c8e88155b9a5b9a5d1a585b1a5e9959605a1b6044820152606401610caa565b61134b613832565b611353613871565b60408051600080825260208201909252600f60f81b9c939b5091995046985030975095509350915050565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace048054606091600080516020615efd83398151915291610b3a90615805565b600c546001600160a01b0316336001600160a01b0316146114045760405162461bcd60e51b81526020600482015260016024820152600560fc1b6044820152606401610caa565b600c80546001600160a01b0319166001600160a01b03831690811790915560405190815233907f4b74c6905f914d7a5f408442bc16a267312648abfc3909c994cc6c2643ae5c969060200161107f565b600033610c22818585612d65565b601354600090600160a01b900460ff166001146114915760405162461bcd60e51b8152600401610caa9061583f565b6013805460ff60a01b19169055601a805460ff60881b1916905560006114b630611294565b6005546040516370a0823160e01b81523060048201529192506000916001600160a01b03909116906370a0823190602401602060405180830381865afa158015611504573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115289190615b88565b9050611535333089613889565b60025461154d9030906001600160a01b031689612cec565b611565336005546001600160a01b03169030896139c7565b600254600554611582916001600160a01b03918216911688613a2e565b600254600554604051639f4f974560e01b81523060048201526001600160a01b0391821660248201526000929190911690639f4f974590604401602060405180830381865afa1580156115d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115fd9190615ba1565b6001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015611650573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116749190615b88565b6002546005549192506001600160a01b039081169163e8e33700913091168b8b6103e86116a18d826158ea565b8f6116ac9190615bbe565b6116b69190615886565b6103e86116c38e826158ea565b8f6116ce9190615bbe565b6116d89190615886565b3360405160e089901b6001600160e01b03191681526001600160a01b039788166004820152958716602487015260448601949094526064850192909252608484015260a483015290911660c482015260e4810188905261010401600060405180830381600087803b15801561174c57600080fd5b505af1158015611760573d6000803e3d6000fd5b505060025460055461178293506001600160a01b039081169250166000613a2e565b8261178c30611294565b11156117b0576117b03033856117a130611294565b6117ab91906158ea565b613889565b6005546040516370a0823160e01b815230600482015283916001600160a01b0316906370a0823190602401602060405180830381865afa1580156117f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181c9190615b88565b11156118af576118af336005546040516370a0823160e01b815230600482015285916001600160a01b0316906370a0823190602401602060405180830381865afa15801561186e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118929190615b88565b61189c91906158ea565b6005546001600160a01b03169190613ab8565b604080518981526020810189905233917f06239653922ac7bea6aa2b19dc486b9361821d37712eb796adfd38d81de278ca910160405180910390a2600254600554604051639f4f974560e01b81523060048201526001600160a01b03918216602482015283929190911690639f4f974590604401602060405180830381865afa158015611940573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119649190615ba1565b6001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156119b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119db9190615b88565b6119e591906158ea565b9350505050601a805460ff60881b1916600160881b1790556013805460ff60a01b1916600160a01b179055949350505050565b601354600160a01b900460ff16600114611a445760405162461bcd60e51b8152600401610caa9061583f565b6013805460ff60a01b19169055601a805460ff60881b19169055611a6a83838333613ae9565b5050601a805460ff60881b1916600160881b179055506013805460ff60a01b1916600160a01b179055565b6000610c0e82601b54601c54612c2a565b601a54600160981b900460ff1615611ae45760405162461bcd60e51b81526020600482015260016024820152604f60f81b6044820152606401610caa565b601a805460ff60981b1916600160981b179055600254600554604051639f4f974560e01b81523060048201526001600160a01b0391821660248201526000929190911690639f4f974590604401602060405180830381865afa158015611b4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b729190615ba1565b90506001600160a01b038116611bfd5760025460055460405163c4f3e9d760e01b81523060048201526001600160a01b03918216602482015291169063c4f3e9d7906044016020604051808303816000875af1158015611bd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bfa9190615ba1565b90505b601354604051631e9b12ef60e01b81526001600160a01b03838116600483015290911690631e9b12ef90602401600060405180830381600087803b158015611c4457600080fd5b505af1158015611c58573d6000803e3d6000fd5b50505050601360009054906101000a90046001600160a01b03166001600160a01b031663715018a66040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611cac57600080fd5b505af1158015611cc0573d6000803e3d6000fd5b5050600b80546001600160a01b0319166001600160a01b0385169081179091556040519081523392507fdc90fed0326ba91706deeac7eb34ac9f8b680734f9d782864dc29704d23bed6a915060200161107f565b601354600160a01b900460ff16600114611d405760405162461bcd60e51b8152600401610caa9061583f565b6013805460ff60a01b19811690915560408051633d665bf960e21b815290516001600160a01b039092169163f5996fe4916004808201926020929091908290030181865afa158015611d96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dba9190615ba1565b6001600160a01b0316336001600160a01b031614611dfe5760405162461bcd60e51b81526020600482015260016024820152602960f91b6044820152606401610caa565b611e06613ec6565b6013805460ff60a01b1916600160a01b179055565b601354600160a01b900460ff16600114611e475760405162461bcd60e51b8152600401610caa9061583f565b6013805460ff60a01b191690556001600160a01b03841660009081526015602052604090205460ff16611ea05760405162461bcd60e51b81526020600482015260016024820152600b60fb1b6044820152606401610caa565b60135460408051633d665bf960e21b815290516000926001600160a01b03169163f5996fe49160048083019260209291908290030181865afa158015611eea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f0e9190615ba1565b6009546012549192506000916001600160a01b03908116911614611fc6576009546005546001600160a01b03908116911614611fc057600360009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fbb9190615ba1565b611fc8565b81611fc8565b305b9050611fe6336004546009546001600160a01b0316919084906139c7565b6009546012546001600160a01b0391821691160361208a5760045460095461201b916001600160a01b03909116908490613a2e565b60095460048054604051634bd68e6760e11b81526001600160a01b03938416928101929092526024820152908316906397ad1cce90604401600060405180830381600087803b15801561206d57600080fd5b505af1158015612081573d6000803e3d6000fd5b505050506120fd565b6009546005546001600160a01b039182169116036120fd57604051633694313d60e01b8152600060048201526001600160a01b03831690633694313d90602401600060405180830381600087803b1580156120e457600080fd5b505af11580156120f8573d6000803e3d6000fd5b505050505b6040516370a0823160e01b81523060048201526000906001600160a01b038816906370a0823190602401602060405180830381865afa158015612144573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121689190615b88565b905061217e6001600160a01b0388168988613ab8565b604051633a62959560e21b81526001600160a01b0389169063e98a5654906121ac90889088906004016158a8565b600060405180830381600087803b1580156121c657600080fd5b505af11580156121da573d6000803e3d6000fd5b50506040516370a0823160e01b81523060048201528392506001600160a01b038a1691506370a0823190602401602060405180830381865afa158015612224573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122489190615b88565b101561227b5760405162461bcd60e51b8152602060048201526002602482015261464160f01b6044820152606401610caa565b6001600160a01b03881633604080516001600160a01b038b81168252602082018b905292909216917f5a9eeaf8949838813289046091e8ea8a9196a2265ac24841464a2d27026a8549910160405180910390a350506013805460ff60a01b1916600160a01b179055505050505050565b6000806122f86019541590565b9050801561235057612349836123106012600a615cbc565b61231e90600160601b615bbe565b6014600081548110612332576123326157ef565b906000526020600020906005020160040154614072565b91506123b9565b60006123a284600160601b601860006014600081548110612373576123736157ef565b600091825260208083206005909202909101546001600160a01b03168352820192909252604001902054614072565b90506123b560195482600160601b614072565b9250505b600f546123d490839062010000900461ffff16612710614072565b610c4b90836158ea565b834211156124025760405163313c898160e11b815260048101859052602401610caa565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c988888861246e8c6001600160a01b031660009081527f5ab42ced628888259c08ac98db1eb0cf702fc1501344311d8b100cd1bfe4bb006020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e00160405160208183030381529060405280519060200120905060006124c982614124565b905060006124d982878787614151565b9050896001600160a01b0316816001600160a01b031614612520576040516325c0072360e11b81526001600160a01b0380831660048301528b166024820152604401610caa565b61252b8a8a8a612cec565b50505050505050505050565b6001600160a01b0391821660009081527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace016020908152604080832093909416825291909152205490565b6001600160a01b03808416600081815260166020908152604080832054948616835280832054815163313ce56760e01b81529151939560ff90811695911693909263313ce56792600480820193918290030181865afa1580156125e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061260c9190615ccb565b61261790600a615cbc565b6014838154811061262a5761262a6157ef565b906000526020600020906005020160010154856001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561267a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061269e9190615ccb565b6126a990600a615cbc565b601484815481106126bc576126bc6157ef565b906000526020600020906005020160010154886126d99190615bbe565b6126e39190615bbe565b6126ed9190615886565b6126f79190615886565b9695505050505050565b601354600160a01b900460ff1660011461272d5760405162461bcd60e51b8152600401610caa9061583f565b6013805460ff60a01b19169055601a805460ff60881b1916905560006127528461417f565b806127d257506001546001600160a01b031663847987a4336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156127ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127d29190615ce8565b61281057600f54612710906127f390640100000000900461ffff1682615d03565b6128019061ffff1686615bbe565b61280b9190615886565b612812565b835b90506000601954600160601b836128299190615bbe565b6128339190615886565b9050612840333087612d65565b816019600082825461285291906158ea565b9091555061286290503083612e08565b61287461286f83876158ea565b6141a5565b60145460005b81811015612980576000600160601b8460186000601486815481106128a1576128a16157ef565b600091825260208083206005909202909101546001600160a01b031683528201929092526040019020546128d59190615bbe565b6128df9190615886565b90508015612977578060186000601485815481106128ff576128ff6157ef565b600091825260208083206005909202909101546001600160a01b03168352820192909252604001812080549091906129389084906158ea565b909155506129779050338260148581548110612956576129566157ef565b60009182526020909120600590910201546001600160a01b03169190613ab8565b5060010161287a565b50612989613ec6565b60405186815233907fe4bf69c2fff7ace5eed72842e9abf52af2218a3a78cb83d7824f999dbfd75e719060200160405180910390a25050601a805460ff60881b1916600160881b17905550506013805460ff60a01b1916600160a01b1790555050565b601354600160a01b900460ff16600114612a185760405162461bcd60e51b8152600401610caa9061583f565b6013805460ff60a01b19169055601a805460ff60881b191690558315612a3e5783612ab8565b600b546001600160a01b03166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015612a94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ab89190615b88565b935060008411612aef5760405162461bcd60e51b8152602060048201526002602482015261131560f21b6044820152606401610caa565b612b0733600b546001600160a01b03169030876139c7565b600254600b54612b24916001600160a01b03918216911686613a2e565b60025460055460408051635d5155ef60e11b81523060048201526001600160a01b0392831660248201526044810188905260648101879052608481018690523360a482015260c481018590529051919092169163baa2abde9160e480830192600092919082900301818387803b158015612b9d57600080fd5b505af1158015612bb1573d6000803e3d6000fd5b50505050612bbc3390565b6001600160a01b03167fdfdd120ded9b7afc0c23dd5310e93aaa3e1c3b9f75af9b805fab3030842439f285604051612bf691815260200190565b60405180910390a25050601a805460ff60881b1916600160881b17905550506013805460ff60a01b1916600160a01b179055565b600080612c376019541590565b90508015612c9657612c8f856014600081548110612c5757612c576157ef565b906000526020600020906005020160040154612c71601290565b612c7c90600a615cbc565b612c8a90600160601b615bbe565b614072565b9150612cbc565b6000612ca786600160601b86614072565b9050612cb88582600160601b614072565b9250505b600f54612cd9908390640100000000900461ffff16612710614072565b612ce390836158ea565b95945050505050565b612cf98383836001614204565b505050565b6000612d0a8484612537565b9050600019811015612d5f5781811015612d5057604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610caa565b612d5f84848484036000614204565b50505050565b6001600160a01b038316612d8f57604051634b637e8f60e11b815260006004820152602401610caa565b6001600160a01b038216612db95760405163ec442f0560e01b815260006004820152602401610caa565b612cf98383836142eb565b6000610d766144f2565b6001600160a01b038216612df85760405163ec442f0560e01b815260006004820152602401610caa565b612e04600083836142eb565b5050565b6001600160a01b038216612e3257604051634b637e8f60e11b815260006004820152602401610caa565b612e04826000836142eb565b612e46614566565b612e5086866145b1565b612e59866145c3565b60068054336001600160a01b03199091161790556013805460ff60a01b1916600160a01b179055601a805460ff60881b1916600160881b1790556064612ea26127106014615bbe565b612eac9190615886565b826060015161ffff161115612ec057600080fd5b6064612ecf6127106014615bbe565b612ed99190615886565b826080015161ffff161115612eed57600080fd5b6064612efc6127106046615bbe565b612f069190615886565b825161ffff161115612f1757600080fd5b6064612f266127106063615bbe565b612f309190615886565b826020015161ffff161115612f4457600080fd5b6064612f536127106063615bbe565b612f5d9190615886565b826040015161ffff161115612f7157600080fd5b6064612f806127106005615bbe565b612f8a9190615886565b8260a0015161ffff161115612f9e57600080fd5b6010805485919060ff191660018381811115612fbc57612fbc61523a565b0217905550426011558151600f80546020808601516040808801516060808a015160808b015160a08c015161ffff908116600160501b0261ffff60501b19928216600160401b02929092166bffffffff000000000000000019938216600160301b0267ffff00000000000019968316640100000000029690961667ffffffff0000000019988316620100000263ffffffff19909b1692909c1691909117989098179590951698909817919091179690961693909317179092558551600c80546001600160a01b039092166001600160a01b031990921691909117905590850151600d81905590850151600e80549387015115156101000261ff00199215159290921661ffff19949094169390931717909155156130dd5782602001516130e2565b624f1a005b600c6001018190555060008060008060008060008780602001905181019061310a9190615d1d565b959c50939a5091985096509450925090506001600160a01b0387166131575760405162461bcd60e51b81526020600482015260036024820152620504c560ec1b6044820152606401610caa565b601280546001600160a01b03199081166001600160a01b03898116919091179092556009805482168884161790556000805482168784161790556001805482168684161790556003805482168584161790556002805490911691831691821790556040805163456d019760e11b81529051638ada032e916004808201926020929091908290030181865afa1580156131f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132179190615ba1565b600780546001600160a01b0319166001600160a01b0392831617905560025460408051635088cc2b60e11b81529051919092169163a11198569160048083019260209291908290030181865afa158015613275573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132999190615ba1565b600880546001600160a01b03199081166001600160a01b0393841617909155600580549091168983161790556040805163313ce56760e01b815290519187169163313ce567916004808201926020929091908290030181865afa158015613304573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133289190615ccb565b61333390600a615cbc565b61333e90600a615bbe565b6004908155600254604080516315ab88c960e31b815290516001600160a01b039092169263ad5c46489282820192602092908290030181865afa158015613389573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133ad9190615ba1565b600a80546001600160a01b0319166001600160a01b0392909216919091179055604051339030907f96b5b9b8a7193304150caccf9b80d150675fa3d6af57761d8d8ef1d6f9a1a90990600090a350505050505050505050505050565b805182511461343e5760405162461bcd60e51b81526020600482015260016024820152602b60f91b6044820152606401610caa565b8151600090815b818160ff1610156136cd5760156000868360ff1681518110613469576134696157ef565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff16156134c15760405162461bcd60e51b81526020600482015260016024820152601160fa1b6044820152606401610caa565b6000848260ff16815181106134d8576134d86157ef565b6020026020010151116135115760405162461bcd60e51b81526020600482015260016024820152605760f81b6044820152606401610caa565b60146040518060a00160405280878460ff1681518110613533576135336157ef565b60200260200101516001600160a01b03168152602001868460ff168151811061355e5761355e6157ef565b602090810291909101810151825260008282018190526040808401829052606093840182905285546001818101885596835291839020855160059093020180546001600160a01b039384166001600160a01b03199182161782559386015196810196909655840151600286015591830151600385018054919093169116179055608001516004909101558351849060ff83169081106135ff576135ff6157ef565b60200260200101518361361291906158d7565b92508060166000878460ff168151811061362e5761362e6157ef565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908360ff160217905550600160156000878460ff1681518110613689576136896157ef565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806136c581615db9565b915050613445565b506000836000815181106136e3576136e36157ef565b602002602001015183600160601b6136fb9190615bbe565b6137059190615886565b905060005b828110156138015783868281518110613725576137256157ef565b60200260200101516001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561376a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061378e9190615ccb565b61379990600a615cbc565b838784815181106137ac576137ac6157ef565b60200260200101516137be9190615bbe565b6137c89190615bbe565b6137d29190615886565b601482815481106137e5576137e56157ef565b600091825260209091206004600590920201015560010161370a565b505050505050565b6000807f5ab42ced628888259c08ac98db1eb0cf702fc1501344311d8b100cd1bfe4bb006112a7565b7fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1028054606091600080516020615f1d83398151915291610b3a90615805565b60606000600080516020615f1d833981519152610b29565b600080516020615efd8339815191526001600160a01b0384166138c557818160020160008282546138ba91906158d7565b909155506139379050565b6001600160a01b038416600090815260208290526040902054828110156139185760405163391434e360e21b81526001600160a01b03861660048201526024810182905260448101849052606401610caa565b6001600160a01b03851660009081526020839052604090209083900390555b6001600160a01b038316613955576002810180548390039055613974565b6001600160a01b03831660009081526020829052604090208054830190555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516139b991815260200190565b60405180910390a350505050565b6040516001600160a01b038481166024830152838116604483015260648201839052612d5f9186918216906323b872dd906084015b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050506145f1565b604051636eb1769f60e11b81523060048201526001600160a01b0383811660248301526000919085169063dd62ed3e90604401602060405180830381865afa158015613a7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613aa29190615b88565b9050612d5f8484613ab385856158d7565b614662565b6040516001600160a01b03838116602483015260448201839052612cf991859182169063a9059cbb906064016139fc565b6001600160a01b03841660009081526015602052604090205460ff16613b365760405162461bcd60e51b8152602060048201526002602482015261125560f21b6044820152606401610caa565b6001600160a01b03841660009081526016602052604081205460ff1690613b5d6019541590565b9050600081613b9c576001600160a01b038716600090815260186020526040902054613b8d600160601b88615bbe565b613b979190615886565b613ba2565b600160601b5b905060008215613c0d5760148481548110613bbf57613bbf6157ef565b906000526020600020906005020160040154613bd9601290565b613be490600a615cbc565b613bf2600160601b8a615bbe565b613bfc9190615bbe565b613c069190615886565b9050613c2d565b600160601b82601954613c209190615bbe565b613c2a9190615886565b90505b6000613c38866146f2565b613c6657600f5461271090613c579062010000900461ffff1684615bbe565b613c619190615886565b613c69565b60005b905086613c7682846158ea565b1015613ca85760405162461bcd60e51b81526020600482015260016024820152604d60f81b6044820152606401610caa565b8160196000828254613cba91906158d7565b90915550613cd3905086613cce83856158ea565b612dce565b8015613cec57613ce33082612dce565b613cec816141a5565b60145460005b81811015613e5b57600086613d5557613d506018600060148581548110613d1b57613d1b6157ef565b600091825260208083206005909202909101546001600160a01b0316835282019290925260400190205487600160601b61474a565b613d8c565b613d8c8c8c60148581548110613d6d57613d6d6157ef565b60009182526020909120600590910201546001600160a01b0316612581565b905060008111613dc35760405162461bcd60e51b8152602060048201526002602482015261054360f41b6044820152606401610caa565b806018600060148581548110613ddb57613ddb6157ef565b600091825260208083206005909202909101546001600160a01b0316835282019290925260400181208054909190613e149084906158d7565b92505081905550613e5260148381548110613e3157613e316157ef565b60009182526020909120600590910201546001600160a01b03168a8361478a565b50600101613cf2565b50613e646148b1565b896001600160a01b0316876001600160a01b03167fad49529616fd9fe4b34e00ac3f98d5cc3531e1232a95f249113b23fdf13c7e858b86604051613eb2929190918252602082015260400190565b60405180910390a350505050505050505050565b601a54600160901b900460ff16600103613edc57565b601a54600090613efe90601490600160401b90046001600160401b0316615dd8565b6001600160401b03164211905080613f135750565b6000613f1e30611294565b905080600003613f2c575050565b600b54600090613f44906001600160a01b0316611294565b9050600046600114613f6157613f5c610fa083615886565b613f6d565b613f6d6103e883615886565b90506000613f7c606484615886565b9050818410158015613f8e5750600083115b1561406b57601a80546001600160401b034216600160401b0270ffffffffffffffffff00000000000000001990911617600160801b1790556000818511613fd55784613fd7565b815b600f54909150600090600160501b900461ffff16158015906140035750600c546001600160a01b031615155b1561404957600f546127109061402490600160501b900461ffff1684615bbe565b61402e9190615886565b600c549091506140499030906001600160a01b031683613889565b61405b61405682846158ea565b61493d565b5050601a805460ff60801b191690555b5050505050565b60008080600019858709858702925082811083820303915050806000036140ab57600084116140a057600080fd5b508290049050610c4b565b8084116140b757600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b6000610c0e614131612dc4565b8360405161190160f01b8152600281019290925260228201526042902090565b60008060008061416388888888614ca4565b9250925092506141738282614d73565b50909695505050505050565b6000606460195460636141929190615bbe565b61419c9190615886565b90911015919050565b8015806141b65750600f5461ffff16155b156141be5750565b600f54600090612710906141d69061ffff1684615bbe565b6141e09190615886565b905080601960008282546141f491906158ea565b90915550612e0490503082612e08565b600080516020615efd8339815191526001600160a01b03851661423d5760405163e602df0560e01b815260006004820152602401610caa565b6001600160a01b03841661426757604051634a1406b160e11b815260006004820152602401610caa565b6001600160a01b0380861660009081526001830160209081526040808320938816835292905220839055811561406b57836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516142dc91815260200190565b60405180910390a35050505050565b6001600160a01b03821660009081526017602052604090205460ff16156143395760405162461bcd60e51b8152602060048201526002602482015261424b60f01b6044820152606401610caa565b6001600160a01b038316158061435657506001600160a01b038216155b1561436657612cf9838383613889565b600b546000906001600160a01b03858116911614801561439457506007546001600160a01b03848116911614155b600b54601a549192506001600160a01b038581169116149060009060ff600160801b909104161580156143d35750601a54600160881b900460ff166001145b156144da57600b546001600160a01b038781169116146143f5576143f5613ec6565b82801561440e5750600f54600160301b900461ffff1615155b1561444b57600f546127109061442f90600160301b900461ffff1686615bbe565b6144399190615886565b9050614446863083613889565b6144da565b8180156144645750600f54600160401b900461ffff1615155b1561448557600f546127109061442f90600160401b900461ffff1686615bbe565b82158015614491575081155b801561449f5750600e5460ff165b156144da576144b061271085615886565b9050801580156144c05750600084115b6144ca57806144cd565b60015b90506144da863083613889565b6144e3816141a5565b61380186866117ab84886158ea565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f61451d614e2c565b614525614e96565b60408051602081019490945283019190915260608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166145af57604051631afcd79f60e31b815260040160405180910390fd5b565b6145b9614566565b612e048282614eda565b6145cb614566565b6145ee81604051806040016040528060018152602001603160f81b815250614f2b565b50565b600080602060008451602086016000885af180614614576040513d6000823e3d81fd5b50506000513d9150811561462c578060011415614639565b6001600160a01b0384163b155b15612d5f57604051635274afe760e01b81526001600160a01b0385166004820152602401610caa565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790526146b38482614f8c565b612d5f576040516001600160a01b038481166024830152600060448301526146e891869182169063095ea7b3906064016139fc565b612d5f84826145f1565b60006146fe6019541590565b80610c0e5750600c546001600160a01b03838116911614801561472a5750601a546001600160401b0316155b8015610c0e57506011546147419062093a806158d7565b42111592915050565b6000614757848484614072565b9050600082806147695761476961585a565b8486091115610c4b57600019811061478057600080fd5b6001019392505050565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa1580156147d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906147f59190615b88565b905061480c6001600160a01b0385168430856139c7565b61481682826158d7565b6040516370a0823160e01b81523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa15801561485a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061487e9190615b88565b1015612d5f5760405162461bcd60e51b81526020600482015260026024820152612a2b60f11b6044820152606401610caa565b601a54600160981b900460ff166148ee5760405162461bcd60e51b81526020600482015260016024820152604960f81b6044820152606401610caa565b601a546001600160401b031615801561491a5750600c546001600160a01b0316336001600160a01b0316145b156145af57601a805467ffffffffffffffff1916426001600160401b0316179055565b6002546149559030906001600160a01b031683612cec565b60135460408051633d665bf960e21b815290516000926001600160a01b03169163f5996fe49160048083019260209291908290030181865afa15801561499f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906149c39190615ba1565b6005546040516370a0823160e01b81526001600160a01b038084166004830152929350600092909116906370a0823190602401602060405180830381865afa158015614a13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614a379190615b88565b6002546005546040516383e4b89f60e01b81523060048201526001600160a01b0391821660248201526044810187905260006064820152858216608482015292935016906383e4b89f9060a4016020604051808303816000875af1158015614aa3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614ac79190615b88565b506012546005546001600160a01b03918216911603614bd0576005546040516370a0823160e01b81526001600160a01b03848116600483015260009284929116906370a0823190602401602060405180830381865afa158015614b2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614b529190615b88565b614b5c91906158ea565b90508015612d5f57600554604051633dc60e8360e01b81526001600160a01b0391821660048201526024810183905290841690633dc60e8390604401600060405180830381600087803b158015614bb257600080fd5b505af1158015614bc6573d6000803e3d6000fd5b5050505050505050565b6005546040516370a0823160e01b81526001600160a01b03848116600483015260009216906370a0823190602401602060405180830381865afa158015614c1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614c3f9190615b88565b1115612cf957604051633694313d60e01b8152600060048201526001600160a01b03831690633694313d90602401600060405180830381600087803b158015614c8757600080fd5b505af1158015614c9b573d6000803e3d6000fd5b50505050505050565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115614cdf5750600091506003905082614d69565b604080516000808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015614d33573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116614d5f57506000925060019150829050614d69565b9250600091508190505b9450945094915050565b6000826003811115614d8757614d8761523a565b03614d90575050565b6001826003811115614da457614da461523a565b03614dc25760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115614dd657614dd661523a565b03614df75760405163fce698f760e01b815260048101829052602401610caa565b6003826003811115614e0b57614e0b61523a565b03612e04576040516335e2f38360e21b815260048101829052602401610caa565b6000600080516020615f1d83398151915281614e46613832565b805190915015614e5e57805160209091012092915050565b81548015614e6d579392505050565b7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470935050505090565b6000600080516020615f1d83398151915281614eb0613871565b805190915015614ec857805160209091012092915050565b60018201548015614e6d579392505050565b614ee2614566565b600080516020615efd8339815191527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace03614f1c8482615e3e565b5060048101612d5f8382615e3e565b614f33614566565b600080516020615f1d8339815191527fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d102614f6d8482615e3e565b5060038101614f7c8382615e3e565b5060008082556001909101555050565b6000806000806020600086516020880160008a5af192503d915060005190508280156126f757508115614fc257806001146126f7565b50505050506001600160a01b03163b151590565b6000815180845260005b81811015614ffc57602081850181015186830182015201614fe0565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000610c4b6020830184614fd6565b60006020828403121561504157600080fd5b5035919050565b6001600160a01b03811681146145ee57600080fd5b6000806040838503121561507057600080fd5b823561507b81615048565b946020939093013593505050565b60008060006060848603121561509e57600080fd5b83356150a981615048565b925060208401356150b981615048565b929592945050506040919091013590565b6000602082840312156150dc57600080fd5b8135610c4b81615048565b602080825282518282018190526000918401906040840190835b8181101561515f57835160018060a01b038151168452602081015160208501526040810151604085015260018060a01b036060820151166060850152608081015160808501525060a083019250602084019350600181019050615101565b509095945050505050565b60008083601f84011261517c57600080fd5b5081356001600160401b0381111561519357600080fd5b6020830191508360208285010111156151ab57600080fd5b9250929050565b600080600080606085870312156151c857600080fd5b84356151d381615048565b93506020850135925060408501356001600160401b038111156151f557600080fd5b6152018782880161516a565b95989497509550505050565b61ffff811681146145ee57600080fd5b60006020828403121561522f57600080fd5b8135610c4b8161520d565b634e487b7160e01b600052602160045260246000fd5b602081016002831061527257634e487b7160e01b600052602160045260246000fd5b91905290565b634e487b7160e01b600052604160045260246000fd5b604051608081016001600160401b03811182821017156152b0576152b0615278565b60405290565b604051601f8201601f191681016001600160401b03811182821017156152de576152de615278565b604052919050565b600082601f8301126152f757600080fd5b8135602083016000806001600160401b0384111561531757615317615278565b50601f8301601f191660200161532c816152b6565b91505082815285838301111561534157600080fd5b82826020830137600092810160200192909252509392505050565b6000806000806080858703121561537257600080fd5b84356001600160401b0381111561538857600080fd5b615394878288016152e6565b94505060208501356001600160401b038111156153b057600080fd5b6153bc878288016152e6565b93505060408501356001600160401b038111156153d857600080fd5b6153e4878288016152e6565b92505060608501356001600160401b0381111561540057600080fd5b61540c878288016152e6565b91505092959194509250565b60ff60f81b8816815260e06020820152600061543760e0830189614fd6565b82810360408401526154498189614fd6565b606084018890526001600160a01b038716608085015260a0840186905283810360c08501528451808252602080870193509091019060005b8181101561549f578351835260209384019390920191600101615481565b50909b9a5050505050505050505050565b600080600080608085870312156154c657600080fd5b5050823594602084013594506040840135936060013592509050565b6000806000606084860312156154f757600080fd5b833561550281615048565b95602085013595506040909401359392505050565b60008060008060006080868803121561552f57600080fd5b853561553a81615048565b9450602086013561554a81615048565b93506040860135925060608601356001600160401b0381111561556c57600080fd5b6155788882890161516a565b969995985093965092949392505050565b60ff811681146145ee57600080fd5b600080600080600080600060e0888a0312156155b357600080fd5b87356155be81615048565b965060208801356155ce81615048565b9550604088013594506060880135935060808801356155ec81615589565b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561561c57600080fd5b823561562781615048565b9150602083013561563781615048565b809150509250929050565b60008060006060848603121561565757600080fd5b833561566281615048565b925060208401359150604084013561567981615048565b809150509250925092565b60006001600160401b0382111561569d5761569d615278565b5060051b60200190565b600082601f8301126156b857600080fd5b81356156cb6156c682615684565b6152b6565b8082825260208201915060208360051b8601019250858311156156ed57600080fd5b602085015b8381101561571357803561570581615589565b8352602092830192016156f2565b5095945050505050565b60008060006060848603121561573257600080fd5b8335925060208401356001600160401b0381111561574f57600080fd5b8401601f8101861361576057600080fd5b803561576e6156c682615684565b8082825260208201915060208360051b85010192508883111561579057600080fd5b6020840193505b828410156157bb5783356157aa81615048565b825260209384019390910190615797565b945050505060408401356001600160401b038111156157d957600080fd5b6157e5868287016156a7565b9150509250925092565b634e487b7160e01b600052603260045260246000fd5b600181811c9082168061581957607f821691505b60208210810361583957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600190820152601360fa1b604082015260600190565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000826158a357634e487b7160e01b600052601260045260246000fd5b500490565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b80820180821115610c0e57610c0e615870565b81810381811115610c0e57610c0e615870565b8051801515811461590d57600080fd5b919050565b600060c0828403121561592457600080fd5b60405160c081016001600160401b038111828210171561594657615946615278565b806040525080915082516159598161520d565b815260208301516159698161520d565b6020820152604083015161597c8161520d565b6040820152606083015161598f8161520d565b606082015260808301516159a28161520d565b608082015260a08301516159b58161520d565b60a0919091015292915050565b600082601f8301126159d357600080fd5b81516159e16156c682615684565b8082825260208201915060208360051b860101925085831115615a0357600080fd5b602085015b83811015615713578051615a1b81615048565b835260209283019201615a08565b600082601f830112615a3a57600080fd5b8151615a486156c682615684565b8082825260208201915060208360051b860101925085831115615a6a57600080fd5b602085015b83811015615713578051835260209283019201615a6f565b805161590d81615048565b6000806000806000808688036101c0811215615aad57600080fd5b6080811215615abb57600080fd5b50615ac461528e565b8751615acf81615048565b815260208881015190820152615ae7604089016158fd565b6040820152615af8606089016158fd565b60608201529550615b0c8860808901615912565b94506101408701516001600160401b03811115615b2857600080fd5b615b3489828a016159c2565b9450506101608701516001600160401b03811115615b5157600080fd5b615b5d89828a01615a29565b935050615b6d6101808801615a87565b9150615b7c6101a088016158fd565b90509295509295509295565b600060208284031215615b9a57600080fd5b5051919050565b600060208284031215615bb357600080fd5b8151610c4b81615048565b8082028115828204841417610c0e57610c0e615870565b6001815b6001841115615c1057808504811115615bf457615bf4615870565b6001841615615c0257908102905b60019390931c928002615bd9565b935093915050565b600082615c2757506001610c0e565b81615c3457506000610c0e565b8160018114615c4a5760028114615c5457615c70565b6001915050610c0e565b60ff841115615c6557615c65615870565b50506001821b610c0e565b5060208310610133831016604e8410600b8410161715615c93575081810a610c0e565b615ca06000198484615bd5565b8060001904821115615cb457615cb4615870565b029392505050565b6000610c4b60ff841683615c18565b600060208284031215615cdd57600080fd5b8151610c4b81615589565b600060208284031215615cfa57600080fd5b610c4b826158fd565b61ffff8281168282160390811115610c0e57610c0e615870565b600080600080600080600060e0888a031215615d3857600080fd5b8751615d4381615048565b6020890151909750615d5481615048565b6040890151909650615d6581615048565b6060890151909550615d7681615048565b6080890151909450615d8781615048565b60a0890151909350615d9881615048565b60c0890151909250615da981615048565b8091505092959891949750929550565b600060ff821660ff8103615dcf57615dcf615870565b60010192915050565b6001600160401b038181168382160190811115610c0e57610c0e615870565b601f821115612cf957806000526020600020601f840160051c81016020851015615e1e5750805b601f840160051c820191505b8181101561406b5760008155600101615e2a565b81516001600160401b03811115615e5757615e57615278565b615e6b81615e658454615805565b84615df7565b6020601f821160018114615e9f5760008315615e875750848201515b600019600385901b1c1916600184901b17845561406b565b600084815260208120601f198516915b82811015615ecf5787850151825560209485019460019092019101615eaf565b5084821015615eed5786840151600019600387901b60f8161c191681555b50505050600190811b0190555056fe52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00a16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d100a264697066735822122091b560d5573b15c660ecc998d3a54e6b146cbb3296fa78f2ed5d093d86c2193064736f6c634300081c0033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.