ETH Price: $3,375.83 (+8.15%)
 

Overview

ETH Balance

0 ETH

ETH Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Harvest1069970892023-07-17 11:22:35876 days ago1689592955IN
0xAB83F8aE...A5cF096Ea
0 ETH0.0000330646220.0606111
Initialize1069962552023-07-17 10:54:47876 days ago1689591287IN
0xAB83F8aE...A5cF096Ea
0 ETH0.0001485675980.08701203

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
1069974612023-07-17 11:34:59876 days ago1689593699
0xAB83F8aE...A5cF096Ea
0 ETH
1069974612023-07-17 11:34:59876 days ago1689593699
0xAB83F8aE...A5cF096Ea
0 ETH
1069974612023-07-17 11:34:59876 days ago1689593699
0xAB83F8aE...A5cF096Ea
0 ETH
1069974612023-07-17 11:34:59876 days ago1689593699
0xAB83F8aE...A5cF096Ea
0 ETH
1069974612023-07-17 11:34:59876 days ago1689593699
0xAB83F8aE...A5cF096Ea
0 ETH
1069974612023-07-17 11:34:59876 days ago1689593699
0xAB83F8aE...A5cF096Ea
0 ETH
1069974612023-07-17 11:34:59876 days ago1689593699
0xAB83F8aE...A5cF096Ea
0 ETH
1069974612023-07-17 11:34:59876 days ago1689593699
0xAB83F8aE...A5cF096Ea
0 ETH
1069974612023-07-17 11:34:59876 days ago1689593699
0xAB83F8aE...A5cF096Ea
0 ETH
1069974612023-07-17 11:34:59876 days ago1689593699
0xAB83F8aE...A5cF096Ea
0 ETH
1069974612023-07-17 11:34:59876 days ago1689593699
0xAB83F8aE...A5cF096Ea
0 ETH
1069974612023-07-17 11:34:59876 days ago1689593699
0xAB83F8aE...A5cF096Ea
0 ETH
1069974612023-07-17 11:34:59876 days ago1689593699
0xAB83F8aE...A5cF096Ea
0 ETH
1069974612023-07-17 11:34:59876 days ago1689593699
0xAB83F8aE...A5cF096Ea
0 ETH
1069970892023-07-17 11:22:35876 days ago1689592955
0xAB83F8aE...A5cF096Ea
0 ETH
1069970892023-07-17 11:22:35876 days ago1689592955
0xAB83F8aE...A5cF096Ea
0 ETH
1069970892023-07-17 11:22:35876 days ago1689592955
0xAB83F8aE...A5cF096Ea
0 ETH
1069970892023-07-17 11:22:35876 days ago1689592955
0xAB83F8aE...A5cF096Ea
0 ETH
1069970892023-07-17 11:22:35876 days ago1689592955
0xAB83F8aE...A5cF096Ea
0 ETH
1069970892023-07-17 11:22:35876 days ago1689592955
0xAB83F8aE...A5cF096Ea
0 ETH
1069964462023-07-17 11:01:09876 days ago1689591669
0xAB83F8aE...A5cF096Ea
0 ETH
1069964462023-07-17 11:01:09876 days ago1689591669
0xAB83F8aE...A5cF096Ea
0 ETH
1069964462023-07-17 11:01:09876 days ago1689591669
0xAB83F8aE...A5cF096Ea
0 ETH
1069964462023-07-17 11:01:09876 days ago1689591669
0xAB83F8aE...A5cF096Ea
0 ETH
1069964462023-07-17 11:01:09876 days ago1689591669
0xAB83F8aE...A5cF096Ea
0 ETH
View All Internal Transactions

Cross-Chain Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
StrategyHopSolidly

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../interfaces/common/ISolidlyRouter.sol";
import "./StrategyHop.sol";

contract StrategyHopSolidly is StrategyHop {
    // Routes
    ISolidlyRouter.Routes[] public outputToNativeRoute;
    ISolidlyRouter.Routes[] public outputToDepositRoute;

    function initialize(
        address _want,
        address _rewardPool,
        address _stableRouter,
        ISolidlyRouter.Routes[] calldata _outputToNativeRoute,
        ISolidlyRouter.Routes[] calldata _outputToDepositRoute,
        CommonAddresses calldata _commonAddresses
    ) public initializer {
        __StrategyHop_init(_want, _rewardPool, _stableRouter, _commonAddresses);
        for (uint i; i < _outputToNativeRoute.length; ++i) {
            outputToNativeRoute.push(_outputToNativeRoute[i]);
        }

        for (uint i; i < _outputToDepositRoute.length; ++i) {
            outputToDepositRoute.push(_outputToDepositRoute[i]);
        }

        output = outputToNativeRoute[0].from;
        native = outputToNativeRoute[outputToNativeRoute.length - 1].to;
        depositToken = _outputToDepositRoute[_outputToDepositRoute.length - 1].to;
        depositIndex = IStableRouter(stableRouter).getTokenIndex(depositToken);

        _giveAllowances();
    }

    function _swapToNative(uint256 totalFee) internal virtual override {
        uint256 toNative = IERC20(output).balanceOf(address(this)) * totalFee / DIVISOR;
        ISolidlyRouter(unirouter).swapExactTokensForTokens(toNative, 0, outputToNativeRoute, address(this), block.timestamp);
    }

    function _swapToDeposit() internal virtual override {
        uint256 toDeposit = IERC20(output).balanceOf(address(this));
        ISolidlyRouter(unirouter).swapExactTokensForTokens(toDeposit, 0, outputToDepositRoute, address(this), block.timestamp);
    }

    function _getAmountOut(uint256 inputAmount) internal view virtual override returns (uint256) {
        (uint256 nativeOut,) = ISolidlyRouter(unirouter).getAmountOut(inputAmount, output, native);
        return nativeOut;
    }

    function outputToNative() external view virtual override returns (address[] memory) {
        ISolidlyRouter.Routes[] memory _route = outputToNativeRoute;
        return _solidlyToRoute(_route);
    }

    function outputToDeposit() external view virtual override returns (address[] memory) {
        ISolidlyRouter.Routes[] memory _route = outputToDepositRoute;
        return _solidlyToRoute(_route);
    }

    function _solidlyToRoute(ISolidlyRouter.Routes[] memory _route) internal pure virtual returns (address[] memory) {
        address[] memory route = new address[](_route.length + 1);
        route[0] = _route[0].from;
        for (uint i; i < _route.length; ++i) {
            route[i + 1] = _route[i].to;
        }
        return route;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 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.
 */
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].
     */
    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);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 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 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @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).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.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.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function __Ownable_init() internal onlyInitializing {
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal onlyInitializing {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

File 7 of 16 : Initializable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (proxy/utils/Initializable.sol)

pragma solidity ^0.8.2;

import "../../utils/AddressUpgradeable.sol";

/**
 * @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]
 * ```
 * 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 Indicates that the contract has been initialized.
     * @custom:oz-retyped-from bool
     */
    uint8 private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Triggered when the contract has been initialized or reinitialized.
     */
    event Initialized(uint8 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. Equivalent to `reinitializer(1)`.
     */
    modifier initializer() {
        bool isTopLevelCall = !_initializing;
        require(
            (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
            "Initializable: contract is already initialized"
        );
        _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.
     *
     * `initializer` is equivalent to `reinitializer(1)`, so 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.
     *
     * 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.
     */
    modifier reinitializer(uint8 version) {
        require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
        _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() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    /**
     * @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.
     */
    function _disableInitializers() internal virtual {
        require(!_initializing, "Initializable: contract is initializing");
        if (_initialized < type(uint8).max) {
            _initialized = type(uint8).max;
            emit Initialized(type(uint8).max);
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract PausableUpgradeable is Initializable, ContextUpgradeable {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

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

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    function __Pausable_init() internal onlyInitializing {
        __Pausable_init_unchained();
    }

    function __Pausable_init_unchained() internal onlyInitializing {
        _paused = false;
    }

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

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

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

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

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

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

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

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;
import "../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;
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IFeeConfig {
    struct FeeCategory {
        uint256 total;
        uint256 beefy;
        uint256 call;
        uint256 strategist;
        string label;
        bool active;
    }
    struct AllFees {
        FeeCategory performance;
        uint256 deposit;
        uint256 withdraw;
    }
    function getFees(address strategy) external view returns (FeeCategory memory);
    function stratFeeId(address strategy) external view returns (uint256);
    function setStratFeeId(uint256 feeId) external;
}

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.9.0;

interface IRewardPool {
    function deposit(uint256 amount) external;
    function stake(uint256 amount) external;
    function withdraw(uint256 amount) external;
    function earned(address account) external view returns (uint256);
    function getReward() external;
    function balanceOf(address account) external view returns (uint256);
    function stakingToken() external view returns (address);
    function rewardsToken() external view returns (address);
    function emergency() external view returns (bool);
    function emergencyWithdraw() external;
}

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.9.0;
pragma experimental ABIEncoderV2;

interface ISolidlyRouter {

    // Routes
    struct Routes {
        address from;
        address to;
        bool stable;
    }

    struct Route {
        address from;
        address to;
        bool stable;
        address factory;
    }

    function addLiquidity(
        address tokenA,
        address tokenB,
        bool stable,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);

    function addLiquidityETH(
        address token,
        bool stable,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);

    function removeLiquidity(
        address tokenA,
        address tokenB,
        bool stable,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETH(
        address token,
        bool stable,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);

    function swapExactTokensForTokensSimple(
        uint amountIn,
        uint amountOutMin,
        address tokenFrom,
        address tokenTo,
        bool stable,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

     function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        Routes[] memory route,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

     function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        Route[] memory route,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function getAmountOut(uint amountIn, address tokenIn, address tokenOut) external view returns (uint amount, bool stable);

    function getAmountsOut(uint amountIn, Routes[] memory routes) external view returns (uint[] memory amounts);
    function getAmountsOut(uint amountIn, Route[] memory routes) external view returns (uint[] memory amounts);
   
    function quoteAddLiquidity(
        address tokenA,
        address tokenB,
        bool stable,
        uint amountADesired,
        uint amountBDesired
    ) external view returns (uint amountA, uint amountB, uint liquidity);

    function quoteAddLiquidity(
        address tokenA,
        address tokenB,
        bool stable,
        address _factory,
        uint amountADesired,
        uint amountBDesired
    ) external view returns (uint amountA, uint amountB, uint liquidity);

    function defaultFactory() external view returns (address);
}

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.9.0;

interface IStableRouter {
    function addLiquidity(
        uint256[] calldata amounts,
        uint256 minToMint,
        uint256 deadline
    ) external returns (uint256);
    function getNumberOfTokens() external view returns (uint256);
    function getTokenIndex(address tokenAddress) external view returns (uint8);
    function getTokenBalances(uint8 tokenIndex) external view returns (uint256);
    function getVirtualPrice() external view returns (uint256);
    function removeLiquidityOneToken(
        uint256 tokenAmount,
        uint8 tokenIndex,
        uint256 minAmount,
        uint256 deadline
    ) external returns (uint256);
}

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol";
import "../../interfaces/common/IFeeConfig.sol";

contract StratFeeManagerInitializable is OwnableUpgradeable, PausableUpgradeable {

    struct CommonAddresses {
        address vault;
        address unirouter;
        address keeper;
        address strategist;
        address beefyFeeRecipient;
        address beefyFeeConfig;
    }

    // common addresses for the strategy
    address public vault;
    address public unirouter;
    address public keeper;
    address public strategist;
    address public beefyFeeRecipient;
    IFeeConfig public beefyFeeConfig;

    uint256 constant DIVISOR = 1 ether;
    uint256 constant public WITHDRAWAL_FEE_CAP = 50;
    uint256 constant public WITHDRAWAL_MAX = 10000;
    uint256 internal withdrawalFee;

    event SetStratFeeId(uint256 feeId);
    event SetWithdrawalFee(uint256 withdrawalFee);
    event SetVault(address vault);
    event SetUnirouter(address unirouter);
    event SetKeeper(address keeper);
    event SetStrategist(address strategist);
    event SetBeefyFeeRecipient(address beefyFeeRecipient);
    event SetBeefyFeeConfig(address beefyFeeConfig);

    function __StratFeeManager_init(CommonAddresses calldata _commonAddresses) internal onlyInitializing {
        __Ownable_init();
        __Pausable_init();
        vault = _commonAddresses.vault;
        unirouter = _commonAddresses.unirouter;
        keeper = _commonAddresses.keeper;
        strategist = _commonAddresses.strategist;
        beefyFeeRecipient = _commonAddresses.beefyFeeRecipient;
        beefyFeeConfig = IFeeConfig(_commonAddresses.beefyFeeConfig);
        withdrawalFee = 10;
    }

    // checks that caller is either owner or keeper.
    modifier onlyManager() {
        _checkManager();
        _;
    }

    function _checkManager() internal view {
        require(msg.sender == owner() || msg.sender == keeper, "!manager");
    }

    // fetch fees from config contract
    function getFees() internal view returns (IFeeConfig.FeeCategory memory) {
        return beefyFeeConfig.getFees(address(this));
    }

    // fetch fees from config contract and dynamic deposit/withdraw fees
    function getAllFees() external view returns (IFeeConfig.AllFees memory) {
        return IFeeConfig.AllFees(getFees(), depositFee(), withdrawFee());
    }

    function getStratFeeId() external view returns (uint256) {
        return beefyFeeConfig.stratFeeId(address(this));
    }

    function setStratFeeId(uint256 _feeId) external onlyManager {
        beefyFeeConfig.setStratFeeId(_feeId);
        emit SetStratFeeId(_feeId);
    }

    // adjust withdrawal fee
    function setWithdrawalFee(uint256 _fee) public onlyManager {
        require(_fee <= WITHDRAWAL_FEE_CAP, "!cap");
        withdrawalFee = _fee;
        emit SetWithdrawalFee(_fee);
    }

    // set new vault (only for strategy upgrades)
    function setVault(address _vault) external onlyOwner {
        vault = _vault;
        emit SetVault(_vault);
    }

    // set new unirouter
    function setUnirouter(address _unirouter) external onlyOwner {
        unirouter = _unirouter;
        emit SetUnirouter(_unirouter);
    }

    // set new keeper to manage strat
    function setKeeper(address _keeper) external onlyManager {
        keeper = _keeper;
        emit SetKeeper(_keeper);
    }

    // set new strategist address to receive strat fees
    function setStrategist(address _strategist) external {
        require(msg.sender == strategist, "!strategist");
        strategist = _strategist;
        emit SetStrategist(_strategist);
    }

    // set new beefy fee address to receive beefy fees
    function setBeefyFeeRecipient(address _beefyFeeRecipient) external onlyOwner {
        beefyFeeRecipient = _beefyFeeRecipient;
        emit SetBeefyFeeRecipient(_beefyFeeRecipient);
    }

    // set new fee config address to fetch fees
    function setBeefyFeeConfig(address _beefyFeeConfig) external onlyOwner {
        beefyFeeConfig = IFeeConfig(_beefyFeeConfig);
        emit SetBeefyFeeConfig(_beefyFeeConfig);
    }

    function depositFee() public virtual view returns (uint256) {
        return 0;
    }

    function withdrawFee() public virtual view returns (uint256) {
        return paused() ? 0 : withdrawalFee;
    }

    function beforeDeposit() external virtual {}
}

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin-4/contracts/token/ERC20/utils/SafeERC20.sol";

import "../../interfaces/common/IStableRouter.sol";
import "../../interfaces/common/IRewardPool.sol";
import "../Common/StratFeeManagerInitializable.sol";

contract StrategyHop is StratFeeManagerInitializable {
    using SafeERC20 for IERC20;

    // Tokens used
    address public native;
    address public output;
    address public want;
    address public depositToken;

    // Third party contracts
    address public rewardPool;
    address public stableRouter;
    uint256 public depositIndex;

    bool public harvestOnDeposit;
    uint256 public lastHarvest;

    event StratHarvest(address indexed harvester, uint256 wantHarvested, uint256 tvl);
    event Deposit(uint256 tvl);
    event Withdraw(uint256 tvl);
    event ChargedFees(uint256 callFees, uint256 beefyFees, uint256 strategistFees);

    function __StrategyHop_init(
        address _want,
        address _rewardPool,
        address _stableRouter,
        CommonAddresses calldata _commonAddresses
    ) internal onlyInitializing {
        __StratFeeManager_init(_commonAddresses);
        want = _want;
        rewardPool = _rewardPool;
        stableRouter = _stableRouter;
    }

    // puts the funds to work
    function deposit() public whenNotPaused {
        uint256 wantBal = IERC20(want).balanceOf(address(this));

        if (wantBal > 0) {
            IRewardPool(rewardPool).stake(wantBal);
            emit Deposit(balanceOf());
        }
    }

    function withdraw(uint256 _amount) external {
        require(msg.sender == vault, "!vault");

        uint256 wantBal = IERC20(want).balanceOf(address(this));

        if (wantBal < _amount) {
            IRewardPool(rewardPool).withdraw(_amount - wantBal);
            wantBal = IERC20(want).balanceOf(address(this));
        }

        if (wantBal > _amount) {
            wantBal = _amount;
        }

        if (tx.origin != owner() && !paused()) {
            uint256 withdrawalFeeAmount = wantBal * withdrawalFee / WITHDRAWAL_MAX;
            wantBal = wantBal - withdrawalFeeAmount;
        }

        IERC20(want).safeTransfer(vault, wantBal);

        emit Withdraw(balanceOf());
    }

    function beforeDeposit() external virtual override {
        if (harvestOnDeposit) {
            require(msg.sender == vault, "!vault");
            _harvest(tx.origin);
        }
    }

    function harvest() external virtual {
        _harvest(tx.origin);
    }

    function harvest(address callFeeRecipient) external virtual {
        _harvest(callFeeRecipient);
    }

    function managerHarvest() external onlyManager {
        _harvest(tx.origin);
    }

    // compounds earnings and charges performance fee
    function _harvest(address callFeeRecipient) internal {
        IRewardPool(rewardPool).getReward();
        uint256 outputBal = IERC20(output).balanceOf(address(this));
        if (outputBal > 0) {
            chargeFees(callFeeRecipient);
            addLiquidity();
            uint256 wantHarvested = balanceOfWant();
            deposit();

            lastHarvest = block.timestamp;
            emit StratHarvest(msg.sender, wantHarvested, balanceOf());
        }
    }

    // performance fees
    function chargeFees(address callFeeRecipient) internal {
        IFeeConfig.FeeCategory memory fees = getFees();
        uint256 before = IERC20(native).balanceOf(address(this));
        _swapToNative(fees.total);
        uint256 nativeFeeBal = IERC20(native).balanceOf(address(this)) - before;

        uint256 callFeeAmount = nativeFeeBal * fees.call / DIVISOR;
        IERC20(native).safeTransfer(callFeeRecipient, callFeeAmount);

        uint256 beefyFeeAmount = nativeFeeBal * fees.beefy / DIVISOR;
        IERC20(native).safeTransfer(beefyFeeRecipient, beefyFeeAmount);

        uint256 strategistFeeAmount = nativeFeeBal * fees.strategist / DIVISOR;
        IERC20(native).safeTransfer(strategist, strategistFeeAmount);

        emit ChargedFees(callFeeAmount, beefyFeeAmount, strategistFeeAmount);
    }

    // Adds liquidity to AMM and gets more LP tokens.
    function addLiquidity() internal {
        _swapToDeposit();

        uint256[] memory inputs = new uint256[](2);
        inputs[depositIndex] = IERC20(depositToken).balanceOf(address(this));
        IStableRouter(stableRouter).addLiquidity(inputs, 1, block.timestamp);
    }

    // calculate the total underlaying 'want' held by the strat.
    function balanceOf() public view returns (uint256) {
        return balanceOfWant() + balanceOfPool();
    }

    // it calculates how much 'want' this contract holds.
    function balanceOfWant() public view returns (uint256) {
        return IERC20(want).balanceOf(address(this));
    }

    // it calculates how much 'want' the strategy has working in the farm.
    function balanceOfPool() public view returns (uint256) {
        return IRewardPool(rewardPool).balanceOf(address(this));
    }

    function rewardsAvailable() public view returns (uint256) {
        return IRewardPool(rewardPool).earned(address(this));
    }

    function callReward() public view returns (uint256) {
        uint256 outputBal = rewardsAvailable();
        uint256 nativeOut;

        nativeOut = _getAmountOut(outputBal);

        IFeeConfig.FeeCategory memory fees = getFees();
        return nativeOut * fees.total / DIVISOR * fees.call / DIVISOR;
    }

    function setHarvestOnDeposit(bool _harvestOnDeposit) external onlyManager {
        harvestOnDeposit = _harvestOnDeposit;

        if (harvestOnDeposit) {
            setWithdrawalFee(0);
        } else {
            setWithdrawalFee(10);
        }
    }

    // called as part of strat migration. Sends all the available funds back to the vault.
    function retireStrat() external {
        require(msg.sender == vault, "!vault");

        IRewardPool(rewardPool).withdraw(balanceOfPool());

        uint256 wantBal = IERC20(want).balanceOf(address(this));
        IERC20(want).transfer(vault, wantBal);
    }

    // pauses deposits and withdraws all funds from third party systems.
    function panic() public onlyManager {
        pause();
        IRewardPool(rewardPool).withdraw(balanceOfPool());
    }

    function pause() public onlyManager {
        _pause();

        _removeAllowances();
    }

    function unpause() external onlyManager {
        _unpause();

        _giveAllowances();

        deposit();
    }

    function _giveAllowances() internal {
        IERC20(want).safeApprove(rewardPool, type(uint).max);
        IERC20(output).safeApprove(unirouter, type(uint).max);
        IERC20(depositToken).safeApprove(stableRouter, type(uint).max);
    }

    function _removeAllowances() internal {
        IERC20(want).safeApprove(rewardPool, 0);
        IERC20(output).safeApprove(unirouter, 0);
        IERC20(depositToken).safeApprove(stableRouter, 0);
    }

    function _swapToNative(uint256 totalFee) internal virtual {}

    function _swapToDeposit() internal virtual {}

    function _getAmountOut(uint256 inputAmount) internal view virtual returns (uint256) {}

    function outputToNative() external view virtual returns (address[] memory) {}

    function outputToDeposit() external view virtual returns (address[] memory) {}
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"callFees","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"beefyFees","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"strategistFees","type":"uint256"}],"name":"ChargedFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"beefyFeeConfig","type":"address"}],"name":"SetBeefyFeeConfig","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"beefyFeeRecipient","type":"address"}],"name":"SetBeefyFeeRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"keeper","type":"address"}],"name":"SetKeeper","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"feeId","type":"uint256"}],"name":"SetStratFeeId","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"strategist","type":"address"}],"name":"SetStrategist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"unirouter","type":"address"}],"name":"SetUnirouter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"vault","type":"address"}],"name":"SetVault","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"withdrawalFee","type":"uint256"}],"name":"SetWithdrawalFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"harvester","type":"address"},{"indexed":false,"internalType":"uint256","name":"wantHarvested","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"StratHarvest","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"WITHDRAWAL_FEE_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAWAL_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOfPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOfWant","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beefyFeeConfig","outputs":[{"internalType":"contract IFeeConfig","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beefyFeeRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beforeDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"callReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"depositIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"depositToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllFees","outputs":[{"components":[{"components":[{"internalType":"uint256","name":"total","type":"uint256"},{"internalType":"uint256","name":"beefy","type":"uint256"},{"internalType":"uint256","name":"call","type":"uint256"},{"internalType":"uint256","name":"strategist","type":"uint256"},{"internalType":"string","name":"label","type":"string"},{"internalType":"bool","name":"active","type":"bool"}],"internalType":"struct IFeeConfig.FeeCategory","name":"performance","type":"tuple"},{"internalType":"uint256","name":"deposit","type":"uint256"},{"internalType":"uint256","name":"withdraw","type":"uint256"}],"internalType":"struct IFeeConfig.AllFees","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStratFeeId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"callFeeRecipient","type":"address"}],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvestOnDeposit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_want","type":"address"},{"internalType":"address","name":"_rewardPool","type":"address"},{"internalType":"address","name":"_stableRouter","type":"address"},{"components":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"stable","type":"bool"}],"internalType":"struct ISolidlyRouter.Routes[]","name":"_outputToNativeRoute","type":"tuple[]"},{"components":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"stable","type":"bool"}],"internalType":"struct ISolidlyRouter.Routes[]","name":"_outputToDepositRoute","type":"tuple[]"},{"components":[{"internalType":"address","name":"vault","type":"address"},{"internalType":"address","name":"unirouter","type":"address"},{"internalType":"address","name":"keeper","type":"address"},{"internalType":"address","name":"strategist","type":"address"},{"internalType":"address","name":"beefyFeeRecipient","type":"address"},{"internalType":"address","name":"beefyFeeConfig","type":"address"}],"internalType":"struct StratFeeManagerInitializable.CommonAddresses","name":"_commonAddresses","type":"tuple"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"keeper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastHarvest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"managerHarvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"native","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"output","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"outputToDeposit","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToDepositRoute","outputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"stable","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"outputToNative","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToNativeRoute","outputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"stable","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"panic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"retireStrat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_beefyFeeConfig","type":"address"}],"name":"setBeefyFeeConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_beefyFeeRecipient","type":"address"}],"name":"setBeefyFeeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_harvestOnDeposit","type":"bool"}],"name":"setHarvestOnDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_keeper","type":"address"}],"name":"setKeeper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeId","type":"uint256"}],"name":"setStratFeeId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_strategist","type":"address"}],"name":"setStrategist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_unirouter","type":"address"}],"name":"setUnirouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vault","type":"address"}],"name":"setVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setWithdrawalFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stableRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"strategist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unirouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"want","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

608060405234801561001057600080fd5b506131dd806100206000396000f3fe608060405234801561001057600080fd5b50600436106103425760003560e01c8063748747e6116101b8578063c1a3d44c11610104578063e7a7250a116100a2578063f20eaeb81161007c578063f20eaeb81461066d578063f2fde38b14610680578063fb61778714610693578063fbfa77cf1461069b57600080fd5b8063e7a7250a14610654578063e941fa781461065c578063f1a392da1461066457600080fd5b8063d0e30db0116100de578063d0e30db014610629578063d801d94614610631578063d92f3d7314610639578063dfbdc4371461064c57600080fd5b8063c1a3d44c146105fb578063c7b9d53014610603578063c89039c51461061657600080fd5b80638e14545911610171578063ac1e50251161014b578063ac1e5025146105ad578063aced1661146105c0578063b20feaaf146105d3578063be12a978146105e857600080fd5b80638e1454591461057f57806397fd323d14610592578063a68833e51461059a57600080fd5b8063748747e6146105355780637b898939146105485780638456cb59146105515780638912cb8b146105595780638cfc0250146105665780638da5cb5b1461056e57600080fd5b80634641257d1161029257806366666aa9116102305780636a1833a91161020a5780636a1833a9146104e25780636b30d843146104ea578063715018a614610525578063722713f71461052d57600080fd5b806366666aa9146104b557806367a52793146104c85780636817031b146104cf57600080fd5b80634c3677c81161026c5780634c3677c81461047a57806354518b1a1461048d578063573fef0a146104965780635c975abb1461049e57600080fd5b80634641257d146104575780634700d3051461045f5780634746fb551461046757600080fd5b80631f1fcd51116102ff5780632e1a7d4d116102d95780632e1a7d4d14610416578063359b7d20146104295780633e55f9321461043c5780633f4ba83a1461044f57600080fd5b80631f1fcd51146103dd5780631fe4a686146103f0578063257ae0de1461040357600080fd5b80630e5c011e146103475780630e8fbb5a1461035c578063106fdbd01461036f578063115880861461038257806311b0b42d1461039d57806313e120b1146103c8575b600080fd5b61035a6103553660046129c9565b6106ae565b005b61035a61036a3660046129f4565b6106ba565b61035a61037d3660046129c9565b6106ef565b61038a61074c565b6040519081526020015b60405180910390f35b609e546103b0906001600160a01b031681565b6040516001600160a01b039091168152602001610394565b6103d06107bf565b6040516103949190612a11565b60a0546103b0906001600160a01b031681565b609a546103b0906001600160a01b031681565b6098546103b0906001600160a01b031681565b61035a610424366004612a5e565b61085a565b61035a610437366004612ac3565b610a94565b61035a61044a366004612a5e565b610dd3565b61035a610e6a565b61035a610e8c565b61035a610e95565b609c546103b0906001600160a01b031681565b60a3546103b0906001600160a01b031681565b61038a61271081565b61035a610f10565b60655460ff165b6040519015158152602001610394565b60a2546103b0906001600160a01b031681565b600061038a565b61035a6104dd3660046129c9565b610f45565b6103d0610f9b565b6104fd6104f8366004612a5e565b611020565b604080516001600160a01b039485168152939092166020840152151590820152606001610394565b61035a611066565b61038a611078565b61035a6105433660046129c9565b611094565b61038a60a45481565b61035a6110ea565b60a5546104a59060ff1681565b61038a611102565b6033546001600160a01b03166103b0565b609b546103b0906001600160a01b031681565b61038a611133565b61035a6105a83660046129c9565b6111a6565b61035a6105bb366004612a5e565b6111fc565b6099546103b0906001600160a01b031681565b6105db611273565b6040516103949190612bd7565b6104fd6105f6366004612a5e565b6112a9565b61038a6112b9565b61035a6106113660046129c9565b6112ea565b60a1546103b0906001600160a01b031681565b61035a611380565b61035a611492565b61035a6106473660046129c9565b61149a565b61038a603281565b61038a6114f0565b61038a61151f565b61038a60a65481565b609f546103b0906001600160a01b031681565b61035a61068e3660046129c9565b61153e565b61035a6115b4565b6097546103b0906001600160a01b031681565b6106b781611735565b50565b6106c2611885565b60a5805460ff191682151590811790915560ff16156106e5576106b760006111fc565b6106b7600a6111fc565b6106f76118df565b609c80546001600160a01b0319166001600160a01b0383169081179091556040519081527f91e28ce4210d103c13c5174847e463b836900f8dc63e9d9b42a4255169d19529906020015b60405180910390a150565b60a2546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a08231906024015b602060405180830381865afa158015610796573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ba9190612c54565b905090565b6060600060a7805480602002602001604051908101604052809291908181526020016000905b82821015610845576000848152602090819020604080516060810182526002860290920180546001600160a01b03908116845260019182015490811684860152600160a01b900460ff1615159183019190915290835290920191016107e5565b50505050905061085481611939565b91505090565b6097546001600160a01b0316331461088d5760405162461bcd60e51b815260040161088490612c6d565b60405180910390fd5b60a0546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156108d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108fa9190612c54565b9050818110156109de5760a2546001600160a01b0316632e1a7d4d61091f8385612ca3565b6040518263ffffffff1660e01b815260040161093d91815260200190565b600060405180830381600087803b15801561095757600080fd5b505af115801561096b573d6000803e3d6000fd5b505060a0546040516370a0823160e01b81523060048201526001600160a01b0390911692506370a082319150602401602060405180830381865afa1580156109b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109db9190612c54565b90505b818111156109e95750805b6033546001600160a01b03163214801590610a07575060655460ff16155b15610a39576000612710609d5483610a1f9190612cbc565b610a299190612cd3565b9050610a358183612ca3565b9150505b60975460a054610a56916001600160a01b03918216911683611a58565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d610a7f611078565b60405190815260200160405180910390a15050565b600054610100900460ff1615808015610ab45750600054600160ff909116105b80610ace5750303b158015610ace575060005460ff166001145b610b315760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610884565b6000805460ff191660011790558015610b54576000805461ff0019166101001790555b610b6089898985611ac0565b60005b85811015610bc05760a7878783818110610b7f57610b7f612cf5565b835460018101855560009485526020909420606090910292909201926002029091019050610bad8282612d2b565b505080610bb990612d88565b9050610b63565b5060005b83811015610c215760a8858583818110610be057610be0612cf5565b835460018101855560009485526020909420606090910292909201926002029091019050610c0e8282612d2b565b505080610c1a90612d88565b9050610bc4565b5060a7600081548110610c3657610c36612cf5565b6000918252602090912060029091020154609f80546001600160a01b0319166001600160a01b0390921691909117905560a78054610c7690600190612ca3565b81548110610c8657610c86612cf5565b600091825260209091206001600290920201810154609e80546001600160a01b0319166001600160a01b0390921691909117905584908490610cc89082612ca3565b818110610cd757610cd7612cf5565b9050606002016020016020810190610cef91906129c9565b60a180546001600160a01b0319166001600160a01b0392831690811790915560a3546040516319b02f4960e21b81526004810192909252909116906366c0bd2490602401602060405180830381865afa158015610d50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d749190612da1565b60ff1660a455610d82611b30565b8015610dc8576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050505050505050565b610ddb611885565b609c54604051631f2afc9960e11b8152600481018390526001600160a01b0390911690633e55f93290602401600060405180830381600087803b158015610e2157600080fd5b505af1158015610e35573d6000803e3d6000fd5b505050507f9163810ee1e29168d4ce900e48a333fb8fbd3fd070d2bef67f6d4db0846a469f8160405161074191815260200190565b610e72611885565b610e7a611b8d565b610e82611b30565b610e8a611380565b565b610e8a32611735565b610e9d611885565b610ea56110ea565b60a2546001600160a01b0316632e1a7d4d610ebe61074c565b6040518263ffffffff1660e01b8152600401610edc91815260200190565b600060405180830381600087803b158015610ef657600080fd5b505af1158015610f0a573d6000803e3d6000fd5b50505050565b60a55460ff1615610e8a576097546001600160a01b03163314610e8c5760405162461bcd60e51b815260040161088490612c6d565b610f4d6118df565b609780546001600160a01b0319166001600160a01b0383169081179091556040519081527fd459c7242e23d490831b5676a611c4342d899d28f342d89ae80793e56a930f3090602001610741565b6060600060a88054806020026020016040519081016040528092919081815260200160009082821015610845576000848152602090819020604080516060810182526002860290920180546001600160a01b03908116845260019182015490811684860152600160a01b900460ff1615159183019190915290835290920191016107e5565b60a8818154811061103057600080fd5b6000918252602090912060029091020180546001909101546001600160a01b03918216925090811690600160a01b900460ff1683565b61106e6118df565b610e8a6000611bdf565b600061108261074c565b61108a6112b9565b6107ba9190612dc4565b61109c611885565b609980546001600160a01b0319166001600160a01b0383169081179091556040519081527fefb5cfa1a8690c124332ab93324539c5c9c4be03f28aeb8be86f2d8a0c9fb99b90602001610741565b6110f2611885565b6110fa611c31565b610e8a611c6e565b609c54604051636788231160e11b81523060048201526000916001600160a01b03169063cf10462290602401610779565b60008061113e6114f0565b9050600061114b82611cc8565b90506000611157611d55565b9050670de0b6b3a76400008160400151670de0b6b3a76400008360000151856111809190612cbc565b61118a9190612cd3565b6111949190612cbc565b61119e9190612cd3565b935050505090565b6111ae6118df565b609b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f8041329bf7057543a2c2ff4e4071d1d488a31f82ed44e169b5cd2f04f5e3ac8590602001610741565b611204611885565b603281111561123e5760405162461bcd60e51b8152600401610884906020808252600490820152630216361760e41b604082015260600190565b609d8190556040518181527f3aa4413905e8f015896ec5880bdde24088ccb19b578f9fcf6800354d5320d4af90602001610741565b61127b61295a565b604051806060016040528061128e611d55565b8152602001600081526020016112a261151f565b9052919050565b60a7818154811061103057600080fd5b60a0546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401610779565b609a546001600160a01b031633146113325760405162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b6044820152606401610884565b609a80546001600160a01b0319166001600160a01b0383169081179091556040519081527f46d58e3fa07bf19b1d27240f0e286b27e9f7c1b0d88933333fe833b60eec541290602001610741565b611388611e00565b60a0546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156113d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f59190612c54565b905080156106b75760a25460405163534a7e1d60e11b8152600481018390526001600160a01b039091169063a694fc3a90602401600060405180830381600087803b15801561144357600080fd5b505af1158015611457573d6000803e3d6000fd5b505050507f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e38426611484611078565b604051908152602001610741565b610e8c611885565b6114a26118df565b609880546001600160a01b0319166001600160a01b0383169081179091556040519081527f5ca6e64c4522e68e154aa9372f2c5969cd37d9640e59f66953dc472f54ee86fa90602001610741565b60a2546040516246613160e11b81523060048201526000916001600160a01b031690628cc26290602401610779565b600061152d60655460ff1690565b6115385750609d5490565b50600090565b6115466118df565b6001600160a01b0381166115ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610884565b6106b781611bdf565b6097546001600160a01b031633146115de5760405162461bcd60e51b815260040161088490612c6d565b60a2546001600160a01b0316632e1a7d4d6115f761074c565b6040518263ffffffff1660e01b815260040161161591815260200190565b600060405180830381600087803b15801561162f57600080fd5b505af1158015611643573d6000803e3d6000fd5b505060a0546040516370a0823160e01b8152306004820152600093506001600160a01b0390911691506370a0823190602401602060405180830381865afa158015611692573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b69190612c54565b60a05460975460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929350169063a9059cbb906044016020604051808303816000875af115801561170d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117319190612de7565b5050565b60a260009054906101000a90046001600160a01b03166001600160a01b0316633d18b9126040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561178557600080fd5b505af1158015611799573d6000803e3d6000fd5b5050609f546040516370a0823160e01b8152306004820152600093506001600160a01b0390911691506370a0823190602401602060405180830381865afa1580156117e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061180c9190612c54565b905080156117315761181d82611e46565b611825612061565b600061182f6112b9565b9050611839611380565b4260a655337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f9241082611868611078565b6040805192835260208301919091520160405180910390a2505050565b6033546001600160a01b03163314806118a857506099546001600160a01b031633145b610e8a5760405162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b6044820152606401610884565b6033546001600160a01b03163314610e8a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610884565b606060008251600161194b9190612dc4565b67ffffffffffffffff81111561196357611963612e04565b60405190808252806020026020018201604052801561198c578160200160208202803683370190505b509050826000815181106119a2576119a2612cf5565b602002602001015160000151816000815181106119c1576119c1612cf5565b60200260200101906001600160a01b031690816001600160a01b03168152505060005b8351811015611a51578381815181106119ff576119ff612cf5565b60200260200101516020015182826001611a199190612dc4565b81518110611a2957611a29612cf5565b6001600160a01b0390921660209283029190910190910152611a4a81612d88565b90506119e4565b5092915050565b6040516001600160a01b038316602482015260448101829052611abb90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261218c565b505050565b600054610100900460ff16611ae75760405162461bcd60e51b815260040161088490612e1a565b611af08161225e565b5060a080546001600160a01b039485166001600160a01b03199182161790915560a280549385169382169390931790925560a38054919093169116179055565b60a25460a054611b4f916001600160a01b0391821691166000196123ba565b609854609f54611b6e916001600160a01b0391821691166000196123ba565b60a35460a154610e8a916001600160a01b0391821691166000196123ba565b611b956124cf565b6065805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611c39611e00565b6065805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611bc23390565b60a25460a054611c8c916001600160a01b03918216911660006123ba565b609854609f54611caa916001600160a01b03918216911660006123ba565b60a35460a154610e8a916001600160a01b03918216911660006123ba565b609854609f54609e54604051635e1e632560e01b8152600481018590526001600160a01b039283166024820152908216604482015260009283921690635e1e6325906064016040805180830381865afa158015611d29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d4d9190612e65565b509392505050565b611d906040518060c0016040528060008152602001600081526020016000815260200160008152602001606081526020016000151581525090565b609c54604051639af608c960e01b81523060048201526001600160a01b0390911690639af608c990602401600060405180830381865afa158015611dd8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526107ba9190810190612eef565b60655460ff1615610e8a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610884565b6000611e50611d55565b609e546040516370a0823160e01b81523060048201529192506000916001600160a01b03909116906370a0823190602401602060405180830381865afa158015611e9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec29190612c54565b9050611ed18260000151612518565b609e546040516370a0823160e01b815230600482015260009183916001600160a01b03909116906370a0823190602401602060405180830381865afa158015611f1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f429190612c54565b611f4c9190612ca3565b90506000670de0b6b3a7640000846040015183611f699190612cbc565b611f739190612cd3565b609e54909150611f8d906001600160a01b03168683611a58565b6000670de0b6b3a7640000856020015184611fa89190612cbc565b611fb29190612cd3565b609b54609e54919250611fd2916001600160a01b03908116911683611a58565b6000670de0b6b3a7640000866060015185611fed9190612cbc565b611ff79190612cd3565b609a54609e54919250612017916001600160a01b03908116911683611a58565b60408051848152602081018490529081018290527fd255b592c7f268a73e534da5219a60ff911b4cf6daae21c7d20527dd657bd99a9060600160405180910390a150505050505050565b612069612627565b6040805160028082526060820183526000926020830190803683370190505060a1546040516370a0823160e01b81523060048201529192506001600160a01b0316906370a0823190602401602060405180830381865afa1580156120d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120f59190612c54565b8160a4548151811061210957612109612cf5565b602090810291909101015260a354604051634d49e87d60e01b81526001600160a01b0390911690634d49e87d906121499084906001904290600401612fe5565b6020604051808303816000875af1158015612168573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117319190612c54565b60006121e1826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166127169092919063ffffffff16565b805190915015611abb57808060200190518101906121ff9190612de7565b611abb5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610884565b600054610100900460ff166122855760405162461bcd60e51b815260040161088490612e1a565b61228d61272f565b61229561275e565b6122a260208201826129c9565b609780546001600160a01b0319166001600160a01b03929092169190911790556122d260408201602083016129c9565b609880546001600160a01b0319166001600160a01b039290921691909117905561230260608201604083016129c9565b609980546001600160a01b0319166001600160a01b039290921691909117905561233260808201606083016129c9565b609a80546001600160a01b0319166001600160a01b039290921691909117905561236260a08201608083016129c9565b609b80546001600160a01b0319166001600160a01b039290921691909117905561239260c0820160a083016129c9565b609c80546001600160a01b0319166001600160a01b039290921691909117905550600a609d55565b8015806124345750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa15801561240e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124329190612c54565b155b61249f5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b6064820152608401610884565b6040516001600160a01b038316602482015260448101829052611abb90849063095ea7b360e01b90606401611a84565b60655460ff16610e8a5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610884565b609f546040516370a0823160e01b8152306004820152600091670de0b6b3a76400009184916001600160a01b0316906370a0823190602401602060405180830381865afa15801561256d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125919190612c54565b61259b9190612cbc565b6125a59190612cd3565b609854604051631e82ecdb60e31b81529192506001600160a01b03169063f41766d8906125e090849060009060a79030904290600401613032565b6000604051808303816000875af11580156125ff573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611abb91908101906130d2565b609f546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015612670573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126949190612c54565b609854604051631e82ecdb60e31b81529192506001600160a01b03169063f41766d8906126cf90849060009060a89030904290600401613032565b6000604051808303816000875af11580156126ee573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261173191908101906130d2565b6060612725848460008561278d565b90505b9392505050565b600054610100900460ff166127565760405162461bcd60e51b815260040161088490612e1a565b610e8a6128be565b600054610100900460ff166127855760405162461bcd60e51b815260040161088490612e1a565b610e8a6128ee565b6060824710156127ee5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610884565b6001600160a01b0385163b6128455760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610884565b600080866001600160a01b031685876040516128619190613178565b60006040518083038185875af1925050503d806000811461289e576040519150601f19603f3d011682016040523d82523d6000602084013e6128a3565b606091505b50915091506128b3828286612921565b979650505050505050565b600054610100900460ff166128e55760405162461bcd60e51b815260040161088490612e1a565b610e8a33611bdf565b600054610100900460ff166129155760405162461bcd60e51b815260040161088490612e1a565b6065805460ff19169055565b60608315612930575081612728565b8251156129405782518084602001fd5b8160405162461bcd60e51b81526004016108849190613194565b60405180606001604052806129a06040518060c0016040528060008152602001600081526020016000815260200160008152602001606081526020016000151581525090565b815260200160008152602001600081525090565b6001600160a01b03811681146106b757600080fd5b6000602082840312156129db57600080fd5b8135612728816129b4565b80151581146106b757600080fd5b600060208284031215612a0657600080fd5b8135612728816129e6565b6020808252825182820181905260009190848201906040850190845b81811015612a525783516001600160a01b031683529284019291840191600101612a2d565b50909695505050505050565b600060208284031215612a7057600080fd5b5035919050565b60008083601f840112612a8957600080fd5b50813567ffffffffffffffff811115612aa157600080fd5b602083019150836020606083028501011115612abc57600080fd5b9250929050565b600080600080600080600080888a03610160811215612ae157600080fd5b8935612aec816129b4565b985060208a0135612afc816129b4565b975060408a0135612b0c816129b4565b965060608a013567ffffffffffffffff80821115612b2957600080fd5b612b358d838e01612a77565b909850965060808c0135915080821115612b4e57600080fd5b50612b5b8c828d01612a77565b90955093505060c0609f1982011215612b7357600080fd5b5060a0890190509295985092959890939650565b60005b83811015612ba2578181015183820152602001612b8a565b50506000910152565b60008151808452612bc3816020860160208601612b87565b601f01601f19169290920160200192915050565b60208152600082516060602084015280516080840152602081015160a0840152604081015160c0840152606081015160e0840152608081015160c0610100850152612c26610140850182612bab565b905060a082015115156101208501526020850151604085015260408501516060850152809250505092915050565b600060208284031215612c6657600080fd5b5051919050565b602080825260069082015265085d985d5b1d60d21b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b81810381811115612cb657612cb6612c8d565b92915050565b8082028115828204841417612cb657612cb6612c8d565b600082612cf057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b80546001600160a01b0319166001600160a01b0392909216919091179055565b8135612d36816129b4565b612d408183612d0b565b50600181016020830135612d53816129b4565b612d5d8183612d0b565b506040830135612d6c816129e6565b815460ff60a01b191690151560a01b60ff60a01b161790555050565b600060018201612d9a57612d9a612c8d565b5060010190565b600060208284031215612db357600080fd5b815160ff8116811461272857600080fd5b80820180821115612cb657612cb6612c8d565b8051612de2816129e6565b919050565b600060208284031215612df957600080fd5b8151612728816129e6565b634e487b7160e01b600052604160045260246000fd5b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60008060408385031215612e7857600080fd5b825191506020830151612e8a816129e6565b809150509250929050565b60405160c0810167ffffffffffffffff81118282101715612eb857612eb8612e04565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715612ee757612ee7612e04565b604052919050565b60006020808385031215612f0257600080fd5b825167ffffffffffffffff80821115612f1a57600080fd5b9084019060c08287031215612f2e57600080fd5b612f36612e95565b8251815283830151848201526040830151604082015260608301516060820152608083015182811115612f6857600080fd5b8301601f81018813612f7957600080fd5b805183811115612f8b57612f8b612e04565b612f9d601f8201601f19168701612ebe565b93508084528886828401011115612fb357600080fd5b612fc281878601888501612b87565b5050816080820152612fd660a08401612dd7565b60a08201529695505050505050565b606080825284519082018190526000906020906080840190828801845b8281101561301e57815184529284019290840190600101613002565b505050908301949094525060400152919050565b600060a0808301888452602088818601526040838187015282895480855260c0880191508a60005283600020945060005b818110156130a55785546001600160a01b0390811684526001878101549182168786015290881c60ff1615158585015260029096019560609093019201613063565b50506001600160a01b038916606088015294506130c29350505050565b8260808301529695505050505050565b600060208083850312156130e557600080fd5b825167ffffffffffffffff808211156130fd57600080fd5b818501915085601f83011261311157600080fd5b81518181111561312357613123612e04565b8060051b9150613134848301612ebe565b818152918301840191848101908884111561314e57600080fd5b938501935b8385101561316c57845182529385019390850190613153565b98975050505050505050565b6000825161318a818460208701612b87565b9190910192915050565b6020815260006127286020830184612bab56fea26469706673582212208b074f96cb017e322671da1e86d8df326d36a6d71e73c94d627622780646287264736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106103425760003560e01c8063748747e6116101b8578063c1a3d44c11610104578063e7a7250a116100a2578063f20eaeb81161007c578063f20eaeb81461066d578063f2fde38b14610680578063fb61778714610693578063fbfa77cf1461069b57600080fd5b8063e7a7250a14610654578063e941fa781461065c578063f1a392da1461066457600080fd5b8063d0e30db0116100de578063d0e30db014610629578063d801d94614610631578063d92f3d7314610639578063dfbdc4371461064c57600080fd5b8063c1a3d44c146105fb578063c7b9d53014610603578063c89039c51461061657600080fd5b80638e14545911610171578063ac1e50251161014b578063ac1e5025146105ad578063aced1661146105c0578063b20feaaf146105d3578063be12a978146105e857600080fd5b80638e1454591461057f57806397fd323d14610592578063a68833e51461059a57600080fd5b8063748747e6146105355780637b898939146105485780638456cb59146105515780638912cb8b146105595780638cfc0250146105665780638da5cb5b1461056e57600080fd5b80634641257d1161029257806366666aa9116102305780636a1833a91161020a5780636a1833a9146104e25780636b30d843146104ea578063715018a614610525578063722713f71461052d57600080fd5b806366666aa9146104b557806367a52793146104c85780636817031b146104cf57600080fd5b80634c3677c81161026c5780634c3677c81461047a57806354518b1a1461048d578063573fef0a146104965780635c975abb1461049e57600080fd5b80634641257d146104575780634700d3051461045f5780634746fb551461046757600080fd5b80631f1fcd51116102ff5780632e1a7d4d116102d95780632e1a7d4d14610416578063359b7d20146104295780633e55f9321461043c5780633f4ba83a1461044f57600080fd5b80631f1fcd51146103dd5780631fe4a686146103f0578063257ae0de1461040357600080fd5b80630e5c011e146103475780630e8fbb5a1461035c578063106fdbd01461036f578063115880861461038257806311b0b42d1461039d57806313e120b1146103c8575b600080fd5b61035a6103553660046129c9565b6106ae565b005b61035a61036a3660046129f4565b6106ba565b61035a61037d3660046129c9565b6106ef565b61038a61074c565b6040519081526020015b60405180910390f35b609e546103b0906001600160a01b031681565b6040516001600160a01b039091168152602001610394565b6103d06107bf565b6040516103949190612a11565b60a0546103b0906001600160a01b031681565b609a546103b0906001600160a01b031681565b6098546103b0906001600160a01b031681565b61035a610424366004612a5e565b61085a565b61035a610437366004612ac3565b610a94565b61035a61044a366004612a5e565b610dd3565b61035a610e6a565b61035a610e8c565b61035a610e95565b609c546103b0906001600160a01b031681565b60a3546103b0906001600160a01b031681565b61038a61271081565b61035a610f10565b60655460ff165b6040519015158152602001610394565b60a2546103b0906001600160a01b031681565b600061038a565b61035a6104dd3660046129c9565b610f45565b6103d0610f9b565b6104fd6104f8366004612a5e565b611020565b604080516001600160a01b039485168152939092166020840152151590820152606001610394565b61035a611066565b61038a611078565b61035a6105433660046129c9565b611094565b61038a60a45481565b61035a6110ea565b60a5546104a59060ff1681565b61038a611102565b6033546001600160a01b03166103b0565b609b546103b0906001600160a01b031681565b61038a611133565b61035a6105a83660046129c9565b6111a6565b61035a6105bb366004612a5e565b6111fc565b6099546103b0906001600160a01b031681565b6105db611273565b6040516103949190612bd7565b6104fd6105f6366004612a5e565b6112a9565b61038a6112b9565b61035a6106113660046129c9565b6112ea565b60a1546103b0906001600160a01b031681565b61035a611380565b61035a611492565b61035a6106473660046129c9565b61149a565b61038a603281565b61038a6114f0565b61038a61151f565b61038a60a65481565b609f546103b0906001600160a01b031681565b61035a61068e3660046129c9565b61153e565b61035a6115b4565b6097546103b0906001600160a01b031681565b6106b781611735565b50565b6106c2611885565b60a5805460ff191682151590811790915560ff16156106e5576106b760006111fc565b6106b7600a6111fc565b6106f76118df565b609c80546001600160a01b0319166001600160a01b0383169081179091556040519081527f91e28ce4210d103c13c5174847e463b836900f8dc63e9d9b42a4255169d19529906020015b60405180910390a150565b60a2546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a08231906024015b602060405180830381865afa158015610796573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ba9190612c54565b905090565b6060600060a7805480602002602001604051908101604052809291908181526020016000905b82821015610845576000848152602090819020604080516060810182526002860290920180546001600160a01b03908116845260019182015490811684860152600160a01b900460ff1615159183019190915290835290920191016107e5565b50505050905061085481611939565b91505090565b6097546001600160a01b0316331461088d5760405162461bcd60e51b815260040161088490612c6d565b60405180910390fd5b60a0546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156108d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108fa9190612c54565b9050818110156109de5760a2546001600160a01b0316632e1a7d4d61091f8385612ca3565b6040518263ffffffff1660e01b815260040161093d91815260200190565b600060405180830381600087803b15801561095757600080fd5b505af115801561096b573d6000803e3d6000fd5b505060a0546040516370a0823160e01b81523060048201526001600160a01b0390911692506370a082319150602401602060405180830381865afa1580156109b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109db9190612c54565b90505b818111156109e95750805b6033546001600160a01b03163214801590610a07575060655460ff16155b15610a39576000612710609d5483610a1f9190612cbc565b610a299190612cd3565b9050610a358183612ca3565b9150505b60975460a054610a56916001600160a01b03918216911683611a58565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d610a7f611078565b60405190815260200160405180910390a15050565b600054610100900460ff1615808015610ab45750600054600160ff909116105b80610ace5750303b158015610ace575060005460ff166001145b610b315760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610884565b6000805460ff191660011790558015610b54576000805461ff0019166101001790555b610b6089898985611ac0565b60005b85811015610bc05760a7878783818110610b7f57610b7f612cf5565b835460018101855560009485526020909420606090910292909201926002029091019050610bad8282612d2b565b505080610bb990612d88565b9050610b63565b5060005b83811015610c215760a8858583818110610be057610be0612cf5565b835460018101855560009485526020909420606090910292909201926002029091019050610c0e8282612d2b565b505080610c1a90612d88565b9050610bc4565b5060a7600081548110610c3657610c36612cf5565b6000918252602090912060029091020154609f80546001600160a01b0319166001600160a01b0390921691909117905560a78054610c7690600190612ca3565b81548110610c8657610c86612cf5565b600091825260209091206001600290920201810154609e80546001600160a01b0319166001600160a01b0390921691909117905584908490610cc89082612ca3565b818110610cd757610cd7612cf5565b9050606002016020016020810190610cef91906129c9565b60a180546001600160a01b0319166001600160a01b0392831690811790915560a3546040516319b02f4960e21b81526004810192909252909116906366c0bd2490602401602060405180830381865afa158015610d50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d749190612da1565b60ff1660a455610d82611b30565b8015610dc8576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050505050505050565b610ddb611885565b609c54604051631f2afc9960e11b8152600481018390526001600160a01b0390911690633e55f93290602401600060405180830381600087803b158015610e2157600080fd5b505af1158015610e35573d6000803e3d6000fd5b505050507f9163810ee1e29168d4ce900e48a333fb8fbd3fd070d2bef67f6d4db0846a469f8160405161074191815260200190565b610e72611885565b610e7a611b8d565b610e82611b30565b610e8a611380565b565b610e8a32611735565b610e9d611885565b610ea56110ea565b60a2546001600160a01b0316632e1a7d4d610ebe61074c565b6040518263ffffffff1660e01b8152600401610edc91815260200190565b600060405180830381600087803b158015610ef657600080fd5b505af1158015610f0a573d6000803e3d6000fd5b50505050565b60a55460ff1615610e8a576097546001600160a01b03163314610e8c5760405162461bcd60e51b815260040161088490612c6d565b610f4d6118df565b609780546001600160a01b0319166001600160a01b0383169081179091556040519081527fd459c7242e23d490831b5676a611c4342d899d28f342d89ae80793e56a930f3090602001610741565b6060600060a88054806020026020016040519081016040528092919081815260200160009082821015610845576000848152602090819020604080516060810182526002860290920180546001600160a01b03908116845260019182015490811684860152600160a01b900460ff1615159183019190915290835290920191016107e5565b60a8818154811061103057600080fd5b6000918252602090912060029091020180546001909101546001600160a01b03918216925090811690600160a01b900460ff1683565b61106e6118df565b610e8a6000611bdf565b600061108261074c565b61108a6112b9565b6107ba9190612dc4565b61109c611885565b609980546001600160a01b0319166001600160a01b0383169081179091556040519081527fefb5cfa1a8690c124332ab93324539c5c9c4be03f28aeb8be86f2d8a0c9fb99b90602001610741565b6110f2611885565b6110fa611c31565b610e8a611c6e565b609c54604051636788231160e11b81523060048201526000916001600160a01b03169063cf10462290602401610779565b60008061113e6114f0565b9050600061114b82611cc8565b90506000611157611d55565b9050670de0b6b3a76400008160400151670de0b6b3a76400008360000151856111809190612cbc565b61118a9190612cd3565b6111949190612cbc565b61119e9190612cd3565b935050505090565b6111ae6118df565b609b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f8041329bf7057543a2c2ff4e4071d1d488a31f82ed44e169b5cd2f04f5e3ac8590602001610741565b611204611885565b603281111561123e5760405162461bcd60e51b8152600401610884906020808252600490820152630216361760e41b604082015260600190565b609d8190556040518181527f3aa4413905e8f015896ec5880bdde24088ccb19b578f9fcf6800354d5320d4af90602001610741565b61127b61295a565b604051806060016040528061128e611d55565b8152602001600081526020016112a261151f565b9052919050565b60a7818154811061103057600080fd5b60a0546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401610779565b609a546001600160a01b031633146113325760405162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b6044820152606401610884565b609a80546001600160a01b0319166001600160a01b0383169081179091556040519081527f46d58e3fa07bf19b1d27240f0e286b27e9f7c1b0d88933333fe833b60eec541290602001610741565b611388611e00565b60a0546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156113d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f59190612c54565b905080156106b75760a25460405163534a7e1d60e11b8152600481018390526001600160a01b039091169063a694fc3a90602401600060405180830381600087803b15801561144357600080fd5b505af1158015611457573d6000803e3d6000fd5b505050507f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e38426611484611078565b604051908152602001610741565b610e8c611885565b6114a26118df565b609880546001600160a01b0319166001600160a01b0383169081179091556040519081527f5ca6e64c4522e68e154aa9372f2c5969cd37d9640e59f66953dc472f54ee86fa90602001610741565b60a2546040516246613160e11b81523060048201526000916001600160a01b031690628cc26290602401610779565b600061152d60655460ff1690565b6115385750609d5490565b50600090565b6115466118df565b6001600160a01b0381166115ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610884565b6106b781611bdf565b6097546001600160a01b031633146115de5760405162461bcd60e51b815260040161088490612c6d565b60a2546001600160a01b0316632e1a7d4d6115f761074c565b6040518263ffffffff1660e01b815260040161161591815260200190565b600060405180830381600087803b15801561162f57600080fd5b505af1158015611643573d6000803e3d6000fd5b505060a0546040516370a0823160e01b8152306004820152600093506001600160a01b0390911691506370a0823190602401602060405180830381865afa158015611692573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b69190612c54565b60a05460975460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929350169063a9059cbb906044016020604051808303816000875af115801561170d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117319190612de7565b5050565b60a260009054906101000a90046001600160a01b03166001600160a01b0316633d18b9126040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561178557600080fd5b505af1158015611799573d6000803e3d6000fd5b5050609f546040516370a0823160e01b8152306004820152600093506001600160a01b0390911691506370a0823190602401602060405180830381865afa1580156117e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061180c9190612c54565b905080156117315761181d82611e46565b611825612061565b600061182f6112b9565b9050611839611380565b4260a655337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f9241082611868611078565b6040805192835260208301919091520160405180910390a2505050565b6033546001600160a01b03163314806118a857506099546001600160a01b031633145b610e8a5760405162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b6044820152606401610884565b6033546001600160a01b03163314610e8a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610884565b606060008251600161194b9190612dc4565b67ffffffffffffffff81111561196357611963612e04565b60405190808252806020026020018201604052801561198c578160200160208202803683370190505b509050826000815181106119a2576119a2612cf5565b602002602001015160000151816000815181106119c1576119c1612cf5565b60200260200101906001600160a01b031690816001600160a01b03168152505060005b8351811015611a51578381815181106119ff576119ff612cf5565b60200260200101516020015182826001611a199190612dc4565b81518110611a2957611a29612cf5565b6001600160a01b0390921660209283029190910190910152611a4a81612d88565b90506119e4565b5092915050565b6040516001600160a01b038316602482015260448101829052611abb90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261218c565b505050565b600054610100900460ff16611ae75760405162461bcd60e51b815260040161088490612e1a565b611af08161225e565b5060a080546001600160a01b039485166001600160a01b03199182161790915560a280549385169382169390931790925560a38054919093169116179055565b60a25460a054611b4f916001600160a01b0391821691166000196123ba565b609854609f54611b6e916001600160a01b0391821691166000196123ba565b60a35460a154610e8a916001600160a01b0391821691166000196123ba565b611b956124cf565b6065805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611c39611e00565b6065805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611bc23390565b60a25460a054611c8c916001600160a01b03918216911660006123ba565b609854609f54611caa916001600160a01b03918216911660006123ba565b60a35460a154610e8a916001600160a01b03918216911660006123ba565b609854609f54609e54604051635e1e632560e01b8152600481018590526001600160a01b039283166024820152908216604482015260009283921690635e1e6325906064016040805180830381865afa158015611d29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d4d9190612e65565b509392505050565b611d906040518060c0016040528060008152602001600081526020016000815260200160008152602001606081526020016000151581525090565b609c54604051639af608c960e01b81523060048201526001600160a01b0390911690639af608c990602401600060405180830381865afa158015611dd8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526107ba9190810190612eef565b60655460ff1615610e8a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610884565b6000611e50611d55565b609e546040516370a0823160e01b81523060048201529192506000916001600160a01b03909116906370a0823190602401602060405180830381865afa158015611e9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec29190612c54565b9050611ed18260000151612518565b609e546040516370a0823160e01b815230600482015260009183916001600160a01b03909116906370a0823190602401602060405180830381865afa158015611f1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f429190612c54565b611f4c9190612ca3565b90506000670de0b6b3a7640000846040015183611f699190612cbc565b611f739190612cd3565b609e54909150611f8d906001600160a01b03168683611a58565b6000670de0b6b3a7640000856020015184611fa89190612cbc565b611fb29190612cd3565b609b54609e54919250611fd2916001600160a01b03908116911683611a58565b6000670de0b6b3a7640000866060015185611fed9190612cbc565b611ff79190612cd3565b609a54609e54919250612017916001600160a01b03908116911683611a58565b60408051848152602081018490529081018290527fd255b592c7f268a73e534da5219a60ff911b4cf6daae21c7d20527dd657bd99a9060600160405180910390a150505050505050565b612069612627565b6040805160028082526060820183526000926020830190803683370190505060a1546040516370a0823160e01b81523060048201529192506001600160a01b0316906370a0823190602401602060405180830381865afa1580156120d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120f59190612c54565b8160a4548151811061210957612109612cf5565b602090810291909101015260a354604051634d49e87d60e01b81526001600160a01b0390911690634d49e87d906121499084906001904290600401612fe5565b6020604051808303816000875af1158015612168573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117319190612c54565b60006121e1826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166127169092919063ffffffff16565b805190915015611abb57808060200190518101906121ff9190612de7565b611abb5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610884565b600054610100900460ff166122855760405162461bcd60e51b815260040161088490612e1a565b61228d61272f565b61229561275e565b6122a260208201826129c9565b609780546001600160a01b0319166001600160a01b03929092169190911790556122d260408201602083016129c9565b609880546001600160a01b0319166001600160a01b039290921691909117905561230260608201604083016129c9565b609980546001600160a01b0319166001600160a01b039290921691909117905561233260808201606083016129c9565b609a80546001600160a01b0319166001600160a01b039290921691909117905561236260a08201608083016129c9565b609b80546001600160a01b0319166001600160a01b039290921691909117905561239260c0820160a083016129c9565b609c80546001600160a01b0319166001600160a01b039290921691909117905550600a609d55565b8015806124345750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa15801561240e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124329190612c54565b155b61249f5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b6064820152608401610884565b6040516001600160a01b038316602482015260448101829052611abb90849063095ea7b360e01b90606401611a84565b60655460ff16610e8a5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610884565b609f546040516370a0823160e01b8152306004820152600091670de0b6b3a76400009184916001600160a01b0316906370a0823190602401602060405180830381865afa15801561256d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125919190612c54565b61259b9190612cbc565b6125a59190612cd3565b609854604051631e82ecdb60e31b81529192506001600160a01b03169063f41766d8906125e090849060009060a79030904290600401613032565b6000604051808303816000875af11580156125ff573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611abb91908101906130d2565b609f546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015612670573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126949190612c54565b609854604051631e82ecdb60e31b81529192506001600160a01b03169063f41766d8906126cf90849060009060a89030904290600401613032565b6000604051808303816000875af11580156126ee573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261173191908101906130d2565b6060612725848460008561278d565b90505b9392505050565b600054610100900460ff166127565760405162461bcd60e51b815260040161088490612e1a565b610e8a6128be565b600054610100900460ff166127855760405162461bcd60e51b815260040161088490612e1a565b610e8a6128ee565b6060824710156127ee5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610884565b6001600160a01b0385163b6128455760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610884565b600080866001600160a01b031685876040516128619190613178565b60006040518083038185875af1925050503d806000811461289e576040519150601f19603f3d011682016040523d82523d6000602084013e6128a3565b606091505b50915091506128b3828286612921565b979650505050505050565b600054610100900460ff166128e55760405162461bcd60e51b815260040161088490612e1a565b610e8a33611bdf565b600054610100900460ff166129155760405162461bcd60e51b815260040161088490612e1a565b6065805460ff19169055565b60608315612930575081612728565b8251156129405782518084602001fd5b8160405162461bcd60e51b81526004016108849190613194565b60405180606001604052806129a06040518060c0016040528060008152602001600081526020016000815260200160008152602001606081526020016000151581525090565b815260200160008152602001600081525090565b6001600160a01b03811681146106b757600080fd5b6000602082840312156129db57600080fd5b8135612728816129b4565b80151581146106b757600080fd5b600060208284031215612a0657600080fd5b8135612728816129e6565b6020808252825182820181905260009190848201906040850190845b81811015612a525783516001600160a01b031683529284019291840191600101612a2d565b50909695505050505050565b600060208284031215612a7057600080fd5b5035919050565b60008083601f840112612a8957600080fd5b50813567ffffffffffffffff811115612aa157600080fd5b602083019150836020606083028501011115612abc57600080fd5b9250929050565b600080600080600080600080888a03610160811215612ae157600080fd5b8935612aec816129b4565b985060208a0135612afc816129b4565b975060408a0135612b0c816129b4565b965060608a013567ffffffffffffffff80821115612b2957600080fd5b612b358d838e01612a77565b909850965060808c0135915080821115612b4e57600080fd5b50612b5b8c828d01612a77565b90955093505060c0609f1982011215612b7357600080fd5b5060a0890190509295985092959890939650565b60005b83811015612ba2578181015183820152602001612b8a565b50506000910152565b60008151808452612bc3816020860160208601612b87565b601f01601f19169290920160200192915050565b60208152600082516060602084015280516080840152602081015160a0840152604081015160c0840152606081015160e0840152608081015160c0610100850152612c26610140850182612bab565b905060a082015115156101208501526020850151604085015260408501516060850152809250505092915050565b600060208284031215612c6657600080fd5b5051919050565b602080825260069082015265085d985d5b1d60d21b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b81810381811115612cb657612cb6612c8d565b92915050565b8082028115828204841417612cb657612cb6612c8d565b600082612cf057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b80546001600160a01b0319166001600160a01b0392909216919091179055565b8135612d36816129b4565b612d408183612d0b565b50600181016020830135612d53816129b4565b612d5d8183612d0b565b506040830135612d6c816129e6565b815460ff60a01b191690151560a01b60ff60a01b161790555050565b600060018201612d9a57612d9a612c8d565b5060010190565b600060208284031215612db357600080fd5b815160ff8116811461272857600080fd5b80820180821115612cb657612cb6612c8d565b8051612de2816129e6565b919050565b600060208284031215612df957600080fd5b8151612728816129e6565b634e487b7160e01b600052604160045260246000fd5b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60008060408385031215612e7857600080fd5b825191506020830151612e8a816129e6565b809150509250929050565b60405160c0810167ffffffffffffffff81118282101715612eb857612eb8612e04565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715612ee757612ee7612e04565b604052919050565b60006020808385031215612f0257600080fd5b825167ffffffffffffffff80821115612f1a57600080fd5b9084019060c08287031215612f2e57600080fd5b612f36612e95565b8251815283830151848201526040830151604082015260608301516060820152608083015182811115612f6857600080fd5b8301601f81018813612f7957600080fd5b805183811115612f8b57612f8b612e04565b612f9d601f8201601f19168701612ebe565b93508084528886828401011115612fb357600080fd5b612fc281878601888501612b87565b5050816080820152612fd660a08401612dd7565b60a08201529695505050505050565b606080825284519082018190526000906020906080840190828801845b8281101561301e57815184529284019290840190600101613002565b505050908301949094525060400152919050565b600060a0808301888452602088818601526040838187015282895480855260c0880191508a60005283600020945060005b818110156130a55785546001600160a01b0390811684526001878101549182168786015290881c60ff1615158585015260029096019560609093019201613063565b50506001600160a01b038916606088015294506130c29350505050565b8260808301529695505050505050565b600060208083850312156130e557600080fd5b825167ffffffffffffffff808211156130fd57600080fd5b818501915085601f83011261311157600080fd5b81518181111561312357613123612e04565b8060051b9150613134848301612ebe565b818152918301840191848101908884111561314e57600080fd5b938501935b8385101561316c57845182529385019390850190613153565b98975050505050505050565b6000825161318a818460208701612b87565b9190910192915050565b6020815260006127286020830184612bab56fea26469706673582212208b074f96cb017e322671da1e86d8df326d36a6d71e73c94d627622780646287264736f6c63430008130033

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
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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.