ETH Price: $2,365.10 (+1.59%)

Contract

0x6E1051876ea57e957FdB8A501c7445466Bb643bf
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Slippage120936532021-03-23 7:07:481270 days ago1616483268IN
0x6E105187...66Bb643bf
0 ETH0.00371484136
Exit118124522021-02-08 0:03:021313 days ago1612742582IN
0x6E105187...66Bb643bf
0 ETH0.19072287175
Withdraw118124472021-02-08 0:01:031313 days ago1612742463IN
0x6E105187...66Bb643bf
0 ETH0.12279995175
Skim118124382021-02-07 23:58:381313 days ago1612742318IN
0x6E105187...66Bb643bf
0 ETH0.00955221139
Harvest118124342021-02-07 23:57:551313 days ago1612742275IN
0x6E105187...66Bb643bf
0 ETH0.20245196149
0x60a06040118027812021-02-06 12:36:351315 days ago1612614995IN
 Create: StrategyStEth
0 ETH0.30282059122

Latest 18 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
120936662021-03-23 7:10:401270 days ago1616483440
0x6E105187...66Bb643bf
0.9612486 ETH
120936662021-03-23 7:10:401270 days ago1616483440
0x6E105187...66Bb643bf
0.94508216 ETH
120936662021-03-23 7:10:401270 days ago1616483440
0x6E105187...66Bb643bf
0.00632135 ETH
120936662021-03-23 7:10:401270 days ago1616483440
0x6E105187...66Bb643bf
0.00984508 ETH
118124592021-02-08 0:04:381313 days ago1612742678
0x6E105187...66Bb643bf
0.96021126 ETH
118124592021-02-08 0:04:381313 days ago1612742678
0x6E105187...66Bb643bf
0.96021126 ETH
118124522021-02-08 0:03:021313 days ago1612742582
0x6E105187...66Bb643bf
0.90013676 ETH
118124522021-02-08 0:03:021313 days ago1612742582
0x6E105187...66Bb643bf
0.90013257 ETH
118124522021-02-08 0:03:021313 days ago1612742582
0x6E105187...66Bb643bf
0.00000027 ETH
118124522021-02-08 0:03:021313 days ago1612742582
0x6E105187...66Bb643bf
0.00000391 ETH
118124472021-02-08 0:01:031313 days ago1612742463
0x6E105187...66Bb643bf
0.06008935 ETH
118124472021-02-08 0:01:031313 days ago1612742463
0x6E105187...66Bb643bf
0.06008935 ETH
118124342021-02-07 23:57:551313 days ago1612742275
0x6E105187...66Bb643bf
0.00000411 ETH
118124342021-02-07 23:57:551313 days ago1612742275
0x6E105187...66Bb643bf
0.00000021 ETH
118124342021-02-07 23:57:551313 days ago1612742275
0x6E105187...66Bb643bf
0.00000028 ETH
118124342021-02-07 23:57:551313 days ago1612742275
0x6E105187...66Bb643bf
0.00000404 ETH
118124132021-02-07 23:52:461313 days ago1612741966
0x6E105187...66Bb643bf
0.9599291 ETH
118124132021-02-07 23:52:461313 days ago1612741966
0x6E105187...66Bb643bf
0.9599291 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
StrategyStEth

Compiler Version
v0.6.11+commit.5ef660b1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU AGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-02-06
*/

// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity 0.6.11;

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint 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 (uint);

    /**
     * @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, uint amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` 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 sender,
        address recipient,
        uint amount
    ) external returns (bool);

    /**
     * @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, uint 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, uint value);
}

// File: @openzeppelin/contracts/math/SafeMath.sol

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint a, uint b) internal pure returns (uint) {
        uint c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint a, uint b) internal pure returns (uint) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint a,
        uint b,
        string memory errorMessage
    ) internal pure returns (uint) {
        require(b <= a, errorMessage);
        uint c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint a, uint b) internal pure returns (uint) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint a, uint b) internal pure returns (uint) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint a,
        uint b,
        string memory errorMessage
    ) internal pure returns (uint) {
        require(b > 0, errorMessage);
        uint c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint a, uint b) internal pure returns (uint) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint a,
        uint b,
        string memory errorMessage
    ) internal pure returns (uint) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint size;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 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, uint amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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,
        uint 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,
        uint 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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/SafeERC20.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 SafeMath for uint;
    using Address for address;

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

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint 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,
        uint 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'
        // solhint-disable-next-line max-line-length
        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,
        uint value
    ) internal {
        uint newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.approve.selector, spender, newAllowance)
        );
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint value
    ) internal {
        uint newAllowance =
            token.allowance(address(this), spender).sub(
                value,
                "SafeERC20: decreased allowance below zero"
            );
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.approve.selector, spender, newAllowance)
        );
    }

    /**
     * @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
            // solhint-disable-next-line max-line-length
            require(
                abi.decode(returndata, (bool)),
                "SafeERC20: ERC20 operation did not succeed"
            );
        }
    }
}

// File: contracts/protocol/IStrategy.sol

/*
version 1.2.0

Changes

Changes listed here do not affect interaction with other contracts (Vault and Controller)
- removed function assets(address _token) external view returns (bool);
- remove function deposit(uint), declared in IStrategyERC20
- add function setSlippage(uint _slippage);
- add function setDelta(uint _delta);
*/

interface IStrategy {
    function admin() external view returns (address);

    function controller() external view returns (address);

    function vault() external view returns (address);

    /*
    @notice Returns address of underlying asset (ETH or ERC20)
    @dev Must return 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE for ETH strategy
    */
    function underlying() external view returns (address);

    /*
    @notice Returns total amount of underlying transferred from vault
    */
    function totalDebt() external view returns (uint);

    function performanceFee() external view returns (uint);

    function slippage() external view returns (uint);

    /* 
    @notice Multiplier used to check total underlying <= total debt * delta / DELTA_MIN
    */
    function delta() external view returns (uint);

    /*
    @dev Flag to force exit in case normal exit fails
    */
    function forceExit() external view returns (bool);

    function setAdmin(address _admin) external;

    function setController(address _controller) external;

    function setPerformanceFee(uint _fee) external;

    function setSlippage(uint _slippage) external;

    function setDelta(uint _delta) external;

    function setForceExit(bool _forceExit) external;

    /*
    @notice Returns amount of underlying asset locked in this contract
    @dev Output may vary depending on price of liquidity provider token
         where the underlying asset is invested
    */
    function totalAssets() external view returns (uint);

    /*
    @notice Withdraw `_amount` underlying asset
    @param amount Amount of underlying asset to withdraw
    */
    function withdraw(uint _amount) external;

    /*
    @notice Withdraw all underlying asset from strategy
    */
    function withdrawAll() external;

    /*
    @notice Sell any staking rewards for underlying and then deposit undelying
    */
    function harvest() external;

    /*
    @notice Increase total debt if profit > 0 and total assets <= max,
            otherwise transfers profit to vault.
    @dev Guard against manipulation of external price feed by checking that
         total assets is below factor of total debt
    */
    function skim() external;

    /*
    @notice Exit from strategy
    @dev Must transfer all underlying tokens back to vault
    */
    function exit() external;

    /*
    @notice Transfer token accidentally sent here to admin
    @param _token Address of token to transfer
    @dev _token must not be equal to underlying token
    */
    function sweep(address _token) external;
}

// File: contracts/protocol/IStrategyETH.sol

interface IStrategyETH is IStrategy {
    /*
    @notice Deposit ETH
    */
    function deposit() external payable;
}

// File: contracts/protocol/IController.sol

interface IController {
    function ADMIN_ROLE() external view returns (bytes32);

    function HARVESTER_ROLE() external view returns (bytes32);

    function admin() external view returns (address);

    function treasury() external view returns (address);

    function setAdmin(address _admin) external;

    function setTreasury(address _treasury) external;

    function grantRole(bytes32 _role, address _addr) external;

    function revokeRole(bytes32 _role, address _addr) external;

    /*
    @notice Set strategy for vault
    @param _vault Address of vault
    @param _strategy Address of strategy
    @param _min Minimum undelying token current strategy must return. Prevents slippage
    */
    function setStrategy(
        address _vault,
        address _strategy,
        uint _min
    ) external;

    // calls to strategy
    /*
    @notice Invest token in vault into strategy
    @param _vault Address of vault
    */
    function invest(address _vault) external;

    function harvest(address _strategy) external;

    function skim(address _strategy) external;

    /*
    @notice Withdraw from strategy to vault
    @param _strategy Address of strategy
    @param _amount Amount of underlying token to withdraw
    @param _min Minimum amount of underlying token to withdraw
    */
    function withdraw(
        address _strategy,
        uint _amount,
        uint _min
    ) external;

    /*
    @notice Withdraw all from strategy to vault
    @param _strategy Address of strategy
    @param _min Minimum amount of underlying token to withdraw
    */
    function withdrawAll(address _strategy, uint _min) external;

    /*
    @notice Exit from strategy
    @param _strategy Address of strategy
    @param _min Minimum amount of underlying token to withdraw
    */
    function exit(address _strategy, uint _min) external;
}

// File: contracts/StrategyETH.sol

/*
version 1.2.0
*/

// used inside harvest

abstract contract StrategyETH is IStrategyETH {
    using SafeERC20 for IERC20;
    using SafeMath for uint;

    address public override admin;
    address public override controller;
    address public immutable override vault;
    // Placeholder address to indicate that this is ETH strategy
    address public constant override underlying =
        0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;

    // total amount of ETH transferred from vault
    uint public override totalDebt;

    // performance fee sent to treasury when harvest() generates profit
    uint public override performanceFee = 500;
    uint private constant PERFORMANCE_FEE_CAP = 2000; // upper limit to performance fee
    uint internal constant PERFORMANCE_FEE_MAX = 10000;

    // prevent slippage from deposit / withdraw
    uint public override slippage = 100;
    uint internal constant SLIPPAGE_MAX = 10000;

    /* 
    Multiplier used to check totalAssets() is <= total debt * delta / DELTA_MIN
    */
    uint public override delta = 10050;
    uint private constant DELTA_MIN = 10000;

    // Force exit, in case normal exit fails
    bool public override forceExit;

    constructor(address _controller, address _vault) public {
        require(_controller != address(0), "controller = zero address");
        require(_vault != address(0), "vault = zero address");

        admin = msg.sender;
        controller = _controller;
        vault = _vault;
    }

    /*
    @dev implement receive() external payable in child contract
    @dev receive() should restrict msg.sender to prevent accidental ETH transfer
    @dev vault and controller will never call receive()
    */

    modifier onlyAdmin() {
        require(msg.sender == admin, "!admin");
        _;
    }

    modifier onlyAuthorized() {
        require(
            msg.sender == admin || msg.sender == controller || msg.sender == vault,
            "!authorized"
        );
        _;
    }

    function setAdmin(address _admin) external override onlyAdmin {
        require(_admin != address(0), "admin = zero address");
        admin = _admin;
    }

    function setController(address _controller) external override onlyAdmin {
        require(_controller != address(0), "controller = zero address");
        controller = _controller;
    }

    function setPerformanceFee(uint _fee) external override onlyAdmin {
        require(_fee <= PERFORMANCE_FEE_CAP, "performance fee > cap");
        performanceFee = _fee;
    }

    function setSlippage(uint _slippage) external override onlyAdmin {
        require(_slippage <= SLIPPAGE_MAX, "slippage > max");
        slippage = _slippage;
    }

    function setDelta(uint _delta) external override onlyAdmin {
        require(_delta >= DELTA_MIN, "delta < min");
        delta = _delta;
    }

    function setForceExit(bool _forceExit) external override onlyAdmin {
        forceExit = _forceExit;
    }

    function _sendEthToVault(uint _amount) internal {
        require(address(this).balance >= _amount, "ETH balance < amount");

        (bool sent, ) = vault.call{value: _amount}("");
        require(sent, "Send ETH failed");
    }

    function _increaseDebt(uint _ethAmount) private {
        totalDebt = totalDebt.add(_ethAmount);
    }

    function _decreaseDebt(uint _ethAmount) private {
        _sendEthToVault(_ethAmount);

        if (_ethAmount > totalDebt) {
            totalDebt = 0;
        } else {
            totalDebt -= _ethAmount;
        }
    }

    function _totalAssets() internal view virtual returns (uint);

    /*
    @notice Returns amount of ETH locked in this contract
    */
    function totalAssets() external view override returns (uint) {
        return _totalAssets();
    }

    function _deposit() internal virtual;

    /*
    @notice Deposit ETH into this strategy
    */
    function deposit() external payable override onlyAuthorized {
        require(msg.value > 0, "deposit = 0");

        _increaseDebt(msg.value);
        _deposit();
    }

    /*
    @notice Returns total shares owned by this contract for depositing ETH
            into external Defi
    */
    function _getTotalShares() internal view virtual returns (uint);

    function _getShares(uint _ethAmount, uint _totalEth) internal view returns (uint) {
        /*
        calculate shares to withdraw

        w = amount of ETH to withdraw
        E = total redeemable ETH
        s = shares to withdraw
        P = total shares deposited into external liquidity pool

        w / E = s / P
        s = w / E * P
        */
        if (_totalEth > 0) {
            uint totalShares = _getTotalShares();
            return _ethAmount.mul(totalShares) / _totalEth;
        }
        return 0;
    }

    function _withdraw(uint _shares) internal virtual;

    /*
    @notice Withdraw ETH to vault
    @param _ethAmount Amount of ETH to withdraw
    @dev Caller should implement guard against slippage
    */
    function withdraw(uint _ethAmount) external override onlyAuthorized {
        require(_ethAmount > 0, "withdraw = 0");
        uint totalEth = _totalAssets();
        require(_ethAmount <= totalEth, "withdraw > total");

        uint shares = _getShares(_ethAmount, totalEth);
        if (shares > 0) {
            _withdraw(shares);
        }

        // transfer ETH to vault
        uint ethBal = address(this).balance;
        if (ethBal > 0) {
            _decreaseDebt(ethBal);
        }
    }

    function _withdrawAll() internal {
        uint totalShares = _getTotalShares();
        if (totalShares > 0) {
            _withdraw(totalShares);
        }

        // transfer ETH to vault
        uint ethBal = address(this).balance;
        if (ethBal > 0) {
            _decreaseDebt(ethBal);
            totalDebt = 0;
        }
    }

    /*
    @notice Withdraw all ETH to vault
    @dev Caller should implement guard agains slippage
    */
    function withdrawAll() external override onlyAuthorized {
        _withdrawAll();
    }

    /*
    @notice Sell any staking rewards for ETH and then deposit ETH
    */
    function harvest() external virtual override;

    /*
    @notice Increase total debt if profit > 0 and total assets <= max,
            otherwise transfers profit to vault.
    @dev Guard against manipulation of external price feed by checking that
         total assets is below factor of total debt
    */
    function skim() external override onlyAuthorized {
        uint totalEth = _totalAssets();
        require(totalEth > totalDebt, "total ETH < debt");

        uint profit = totalEth - totalDebt;

        // protect against price manipulation
        uint max = totalDebt.mul(delta) / DELTA_MIN;
        if (totalEth <= max) {
            /*
            total ETH is within reasonable bounds, probaly no price
            manipulation occured.
            */

            /*
            If we were to withdraw profit followed by deposit, this would
            increase the total debt roughly by the profit.

            Withdrawing consumes high gas, so here we omit it and
            directly increase debt, as if withdraw and deposit were called.
            */
            totalDebt = totalDebt.add(profit);
        } else {
            /*
            Possible reasons for total ETH > max
            1. total debt = 0
            2. total ETH really did increase over max
            3. price was manipulated
            */
            uint shares = _getShares(profit, totalEth);
            if (shares > 0) {
                uint balBefore = address(this).balance;
                _withdraw(shares);
                uint balAfter = address(this).balance;

                uint diff = balAfter.sub(balBefore);
                if (diff > 0) {
                    _sendEthToVault(diff);
                }
            }
        }
    }

    function exit() external virtual override;

    function sweep(address) external virtual override;
}

// File: contracts/interfaces/uniswap/Uniswap.sol

interface Uniswap {
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
}

// File: contracts/interfaces/curve/LiquidityGaugeV2.sol

interface LiquidityGaugeV2 {
    function deposit(uint) external;

    function balanceOf(address) external view returns (uint);

    function withdraw(uint) external;

    function claim_rewards() external;
}

// File: contracts/interfaces/curve/Minter.sol

// https://github.com/curvefi/curve-dao-contracts/blob/master/contracts/Minter.vy
interface Minter {
    function mint(address) external;
}

// File: contracts/interfaces/curve/StableSwapSTETH.sol

interface StableSwapSTETH {
    function get_virtual_price() external view returns (uint);

    /*
    0 ETH
    1 STETH
    */
    function balances(uint _index) external view returns (uint);

    function add_liquidity(uint[2] memory amounts, uint min) external payable;

    function remove_liquidity_one_coin(
        uint _token_amount,
        int128 i,
        uint min_amount
    ) external;
}

// File: contracts/interfaces/lido/StETH.sol

interface StETH {
    function submit(address) external payable returns (uint);
}

// File: contracts/strategies/StrategyStEth.sol

contract StrategyStEth is StrategyETH {
    // Uniswap //
    address private constant UNISWAP = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    address private constant WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;

    // Curve //
    // liquidity provider token (Curve ETH/STETH)
    address private constant LP = 0x06325440D014e39736583c165C2963BA99fAf14E;
    // StableSwapSTETH
    address private constant POOL = 0xDC24316b9AE028F1497c275EB9192a3Ea0f67022;
    // LiquidityGaugeV2
    address private constant GAUGE = 0x182B723a58739a9c974cFDB385ceaDb237453c28;
    // Minter
    address private constant MINTER = 0xd061D61a4d941c39E5453435B6345Dc261C2fcE0;
    // CRV
    address private constant CRV = 0xD533a949740bb3306d119CC777fa900bA034cd52;

    // LIDO //
    address private constant ST_ETH = 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84;
    address private constant LDO = 0x5A98FcBEA516Cf06857215779Fd812CA3beF1B32;

    constructor(address _controller, address _vault)
        public
        StrategyETH(_controller, _vault)
    {
        // These tokens are never held by this contract
        // so the risk of them being stolen is minimal
        IERC20(CRV).safeApprove(UNISWAP, uint(-1));
        // Minted on Gauge deposit, withdraw and claim_rewards
        // only this contract can spend on UNISWAP
        IERC20(LDO).safeApprove(UNISWAP, uint(-1));
    }

    receive() external payable {
        // Don't allow vault to accidentally send ETH
        require(msg.sender != vault, "msg.sender == vault");
    }

    function _totalAssets() internal view override returns (uint) {
        uint shares = LiquidityGaugeV2(GAUGE).balanceOf(address(this));
        uint pricePerShare = StableSwapSTETH(POOL).get_virtual_price();

        return shares.mul(pricePerShare) / 1e18;
    }

    function _getStEthDepositAmount(uint _ethBal) private view returns (uint) {
        /*
        Goal is to find a0 and a1 such that b0 + a0 is close to b1 + a1 

        E = amount of ETH
        b0 = balance of ETH in Curve
        b1 = balance of stETH in Curve
        a0 = amount of ETH to deposit into Curve
        a1 = amount of stETH to deposit into Curve

        d = |b0 - b1|

        if d >= E
            if b0 >= b1
                a0 = 0
                a1 = E
            else
                a0 = E
                a1 = 0
        else
            if b0 >= b1
                # add d to balance Curve pool, plus half of remaining
                a1 = d + (E - d) / 2 = (E + d) / 2
                a0 = E - a1
            else
                a0 = (E + d) / 2
                a1 = E - a0
        */
        uint[2] memory balances;
        balances[0] = StableSwapSTETH(POOL).balances(0);
        balances[1] = StableSwapSTETH(POOL).balances(1);

        uint diff;
        if (balances[0] >= balances[1]) {
            diff = balances[0] - balances[1];
        } else {
            diff = balances[1] - balances[0];
        }

        // a0 = ETH amount is ignored, recomputed after stEth is bought
        // a1 = stETH amount
        uint a1;
        if (diff >= _ethBal) {
            if (balances[0] >= balances[1]) {
                a1 = _ethBal;
            }
        } else {
            if (balances[0] >= balances[1]) {
                a1 = (_ethBal.add(diff)) / 2;
            } else {
                a1 = _ethBal.sub((_ethBal.add(diff)) / 2);
            }
        }

        // a0 is ignored, recomputed after stEth is bought
        return a1;
    }

    /*
    @notice Deposits ETH to LiquidityGaugeV2
    */
    function _deposit() internal override {
        uint bal = address(this).balance;
        if (bal > 0) {
            uint stEthAmount = _getStEthDepositAmount(bal);
            if (stEthAmount > 0) {
                StETH(ST_ETH).submit{value: stEthAmount}(address(this));
            }

            uint ethBal = address(this).balance;
            uint stEthBal = IERC20(ST_ETH).balanceOf(address(this));

            if (stEthBal > 0) {
                // ST_ETH is proxy so don't allow infinite approval
                IERC20(ST_ETH).safeApprove(POOL, stEthBal);
            }

            /*
            shares = eth amount * 1e18 / price per share
            */
            uint pricePerShare = StableSwapSTETH(POOL).get_virtual_price();
            uint shares = bal.mul(1e18).div(pricePerShare);
            uint min = shares.mul(SLIPPAGE_MAX - slippage) / SLIPPAGE_MAX;

            StableSwapSTETH(POOL).add_liquidity{value: ethBal}([ethBal, stEthBal], min);
        }

        // stake into LiquidityGaugeV2
        uint lpBal = IERC20(LP).balanceOf(address(this));
        if (lpBal > 0) {
            IERC20(LP).safeApprove(GAUGE, lpBal);
            LiquidityGaugeV2(GAUGE).deposit(lpBal);
        }
    }

    function _getTotalShares() internal view override returns (uint) {
        return LiquidityGaugeV2(GAUGE).balanceOf(address(this));
    }

    function _withdraw(uint _lpAmount) internal override {
        // withdraw LP from  LiquidityGaugeV2
        LiquidityGaugeV2(GAUGE).withdraw(_lpAmount);

        uint lpBal = IERC20(LP).balanceOf(address(this));
        /*
        eth amount = (shares * price per shares) / 1e18
        */
        uint pricePerShare = StableSwapSTETH(POOL).get_virtual_price();
        uint ethAmount = lpBal.mul(pricePerShare) / 1e18;
        uint min = ethAmount.mul(SLIPPAGE_MAX - slippage) / SLIPPAGE_MAX;

        StableSwapSTETH(POOL).remove_liquidity_one_coin(lpBal, 0, min);
        // Now we have ETH
    }

    /*
    @dev Uniswap fails with zero address so no check is necessary here
    */
    function _swapToEth(address _from, uint _amount) private {
        // create dynamic array with 2 elements
        address[] memory path = new address[](2);
        path[0] = _from;
        path[1] = WETH;

        Uniswap(UNISWAP).swapExactTokensForETH(
            _amount,
            1,
            path,
            address(this),
            block.timestamp
        );
    }

    function _claimRewards() private {
        // claim LDO
        LiquidityGaugeV2(GAUGE).claim_rewards();
        // claim CRV
        Minter(MINTER).mint(GAUGE);

        // Infinity approval for Uniswap set inside constructor
        uint ldoBal = IERC20(LDO).balanceOf(address(this));
        if (ldoBal > 0) {
            _swapToEth(LDO, ldoBal);
        }

        uint crvBal = IERC20(CRV).balanceOf(address(this));
        if (crvBal > 0) {
            _swapToEth(CRV, crvBal);
        }
    }

    /*
    @notice Claim CRV and deposit most premium token into Curve
    */
    function harvest() external override onlyAuthorized {
        _claimRewards();

        uint bal = address(this).balance;
        if (bal > 0) {
            // transfer fee to treasury
            uint fee = bal.mul(performanceFee) / PERFORMANCE_FEE_MAX;
            if (fee > 0) {
                address treasury = IController(controller).treasury();
                require(treasury != address(0), "treasury = zero address");
                // treasury must be able to receive ETH
                (bool sent, ) = treasury.call{value: fee}("");
                require(sent, "Send ETH failed");
            }
            _deposit();
        }
    }

    /*
    @notice Exit strategy by harvesting CRV to underlying token and then
            withdrawing all underlying to vault
    @dev Must return all underlying token to vault
    @dev Caller should implement guard agains slippage
    */
    function exit() external override onlyAuthorized {
        if (forceExit) {
            return;
        }
        _claimRewards();
        _withdrawAll();
    }

    function sweep(address _token) external override onlyAdmin {
        require(_token != GAUGE, "protected token");
        IERC20(_token).safeTransfer(admin, IERC20(_token).balanceOf(address(this)));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_controller","type":"address"},{"internalType":"address","name":"_vault","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"controller","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"delta","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"exit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceExit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"performanceFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_admin","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"name":"setController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_delta","type":"uint256"}],"name":"setDelta","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_forceExit","type":"bool"}],"name":"setForceExit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setPerformanceFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_slippage","type":"uint256"}],"name":"setSlippage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"skim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"slippage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"sweep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDebt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"underlying","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ethAmount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526101f460035560646004556127426005553480156200002257600080fd5b5060405162002f2138038062002f21833981810160405260408110156200004857600080fd5b50805160209091015181816001600160a01b038216620000af576040805162461bcd60e51b815260206004820152601960248201527f636f6e74726f6c6c6572203d207a65726f206164647265737300000000000000604482015290519081900360640190fd5b6001600160a01b0381166200010b576040805162461bcd60e51b815260206004820152601460248201527f7661756c74203d207a65726f2061646472657373000000000000000000000000604482015290519081900360640190fd5b60008054336001600160a01b031991821617909155600180549091166001600160a01b03939093169290921790915560601b6001600160601b0319166080526200018d73d533a949740bb3306d119cc777fa900ba034cd52737a250d5630b4cf539739df2c5dacb4c659f2488d600019620001d8602090811b6200116417901c565b620001d0735a98fcbea516cf06857215779fd812ca3bef1b32737a250d5630b4cf539739df2c5dacb4c659f2488d600019620001d8602090811b6200116417901c565b505062000606565b80158062000262575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b1580156200023257600080fd5b505afa15801562000247573d6000803e3d6000fd5b505050506040513d60208110156200025e57600080fd5b5051155b6200029f5760405162461bcd60e51b815260040180806020018281038252603681526020018062002eeb6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0390811663095ea7b360e01b17909152620002f7918591620002fc16565b505050565b606062000358826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316620003b860201b62001277179092919060201c565b805190915015620002f7578080602001905160208110156200037957600080fd5b5051620002f75760405162461bcd60e51b815260040180806020018281038252602a81526020018062002ec1602a913960400191505060405180910390fd5b6060620003d284846000856001600160e01b03620003dc16565b90505b9392505050565b6060824710156200041f5760405162461bcd60e51b815260040180806020018281038252602681526020018062002e9b6026913960400191505060405180910390fd5b62000433856001600160e01b036200055616565b62000485576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310620004c65780518252601f199092019160209182019101620004a5565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146200052a576040519150601f19603f3d011682016040523d82523d6000602084013e6200052f565b606091505b5090925090506200054b8282866001600160e01b036200055c16565b979650505050505050565b3b151590565b606083156200056d575081620003d5565b8251156200057e5782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620005ca578181015183820152602001620005b0565b50505050905090810190601f168015620005f85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b60805160601c61284f6200064c6000398061015452806106c1528061084452806109a45280610d605280610f25528061100e528061113c52806117e4525061284f6000f3fe6080604052600436106101445760003560e01c806370897b23116100b6578063e9fad8ee1161006f578063e9fad8ee1461040e578063f0fa55a914610423578063f77c47911461044d578063f851a44014610462578063fbfa77cf14610477578063fc7b9c181461048c576101bf565b806370897b2314610353578063853828b61461037d578063877887821461039257806392eefe9b146103a757806398234beb146103da578063d0e30db014610406576101bf565b80632e1a7d4d116101085780632e1a7d4d146102725780633e032a3b1461029c5780634641257d146102b157806367acc704146102c65780636f307dc3146102ef578063704b6c0214610320576101bf565b806301681a62146101c457806301e1d114146101f7578063025ff0a51461021e57806312b495a8146102485780631dd19cb41461025d576101bf565b366101bf57336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156101bd576040805162461bcd60e51b81526020600482015260136024820152721b5cd9cb9cd95b99195c880f4f481d985d5b1d606a1b604482015290519081900360640190fd5b005b600080fd5b3480156101d057600080fd5b506101bd600480360360208110156101e757600080fd5b50356001600160a01b03166104a1565b34801561020357600080fd5b5061020c6105e6565b60408051918252519081900360200190f35b34801561022a57600080fd5b506101bd6004803603602081101561024157600080fd5b50356105f5565b34801561025457600080fd5b5061020c610687565b34801561026957600080fd5b506101bd61068d565b34801561027e57600080fd5b506101bd6004803603602081101561029557600080fd5b5035610810565b3480156102a857600080fd5b5061020c61096a565b3480156102bd57600080fd5b506101bd610970565b3480156102d257600080fd5b506102db610bb3565b604080519115158252519081900360200190f35b3480156102fb57600080fd5b50610304610bbc565b604080516001600160a01b039092168252519081900360200190f35b34801561032c57600080fd5b506101bd6004803603602081101561034357600080fd5b50356001600160a01b0316610bd4565b34801561035f57600080fd5b506101bd6004803603602081101561037657600080fd5b5035610c90565b34801561038957600080fd5b506101bd610d2c565b34801561039e57600080fd5b5061020c610dcb565b3480156103b357600080fd5b506101bd600480360360208110156103ca57600080fd5b50356001600160a01b0316610dd1565b3480156103e657600080fd5b506101bd600480360360208110156103fd57600080fd5b50351515610e96565b6101bd610ef1565b34801561041a57600080fd5b506101bd610fda565b34801561042f57600080fd5b506101bd6004803603602081101561044657600080fd5b5035611087565b34801561045957600080fd5b5061030461111c565b34801561046e57600080fd5b5061030461112b565b34801561048357600080fd5b5061030461113a565b34801561049857600080fd5b5061020c61115e565b6000546001600160a01b031633146104e9576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b6001600160a01b03811673182b723a58739a9c974cfdb385ceadb237453c28141561054d576040805162461bcd60e51b815260206004820152600f60248201526e383937ba32b1ba32b2103a37b5b2b760891b604482015290519081900360640190fd5b600054604080516370a0823160e01b815230600482015290516105e3926001600160a01b0390811692908516916370a0823191602480820192602092909190829003018186803b1580156105a057600080fd5b505afa1580156105b4573d6000803e3d6000fd5b505050506040513d60208110156105ca57600080fd5b50516001600160a01b038416919063ffffffff61129016565b50565b60006105f06112e2565b905090565b6000546001600160a01b0316331461063d576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b612710811015610682576040805162461bcd60e51b815260206004820152600b60248201526a3232b63a30901e1036b4b760a91b604482015290519081900360640190fd5b600555565b60055481565b6000546001600160a01b03163314806106b057506001546001600160a01b031633145b806106e35750336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016145b610722576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b600061072c6112e2565b90506002548111610777576040805162461bcd60e51b815260206004820152601060248201526f1d1bdd185b08115512080f081919589d60821b604482015290519081900360640190fd5b60025460055481830391600091612710916107979163ffffffff61140b16565b8161079e57fe5b0490508083116107c3576002546107bb908363ffffffff61146d16565b60025561080b565b60006107cf83856114c7565b9050801561080957476107e182611505565b4760006107f4828463ffffffff61174616565b905080156108055761080581611788565b5050505b505b505050565b6000546001600160a01b031633148061083357506001546001600160a01b031633145b806108665750336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016145b6108a5576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b600081116108e9576040805162461bcd60e51b815260206004820152600c60248201526b07769746864726177203d20360a41b604482015290519081900360640190fd5b60006108f36112e2565b90508082111561093d576040805162461bcd60e51b815260206004820152601060248201526f1dda5d1a191c985dc80f881d1bdd185b60821b604482015290519081900360640190fd5b600061094983836114c7565b9050801561095a5761095a81611505565b478015610809576108098161188c565b60045481565b6000546001600160a01b031633148061099357506001546001600160a01b031633145b806109c65750336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016145b610a05576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b610a0d6118b5565b4780156105e3576000612710610a2e6003548461140b90919063ffffffff16565b81610a3557fe5b0490508015610ba757600154604080516361d027b360e01b815290516000926001600160a01b0316916361d027b3916004808301926020929190829003018186803b158015610a8357600080fd5b505afa158015610a97573d6000803e3d6000fd5b505050506040513d6020811015610aad57600080fd5b505190506001600160a01b038116610b0c576040805162461bcd60e51b815260206004820152601760248201527f7472656173757279203d207a65726f2061646472657373000000000000000000604482015290519081900360640190fd5b6040516000906001600160a01b0383169084908381818185875af1925050503d8060008114610b57576040519150601f19603f3d011682016040523d82523d6000602084013e610b5c565b606091505b5050905080610ba4576040805162461bcd60e51b815260206004820152600f60248201526e14d95b99081155120819985a5b1959608a1b604482015290519081900360640190fd5b50505b610baf611ae8565b5050565b60065460ff1681565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee81565b6000546001600160a01b03163314610c1c576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b6001600160a01b038116610c6e576040805162461bcd60e51b815260206004820152601460248201527361646d696e203d207a65726f206164647265737360601b604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610cd8576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b6107d0811115610d27576040805162461bcd60e51b81526020600482015260156024820152740706572666f726d616e636520666565203e2063617605c1b604482015290519081900360640190fd5b600355565b6000546001600160a01b0316331480610d4f57506001546001600160a01b031633145b80610d825750336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016145b610dc1576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b610dc9611f0c565b565b60035481565b6000546001600160a01b03163314610e19576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b6001600160a01b038116610e74576040805162461bcd60e51b815260206004820152601960248201527f636f6e74726f6c6c6572203d207a65726f206164647265737300000000000000604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610ede576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b6006805460ff1916911515919091179055565b6000546001600160a01b0316331480610f1457506001546001600160a01b031633145b80610f475750336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016145b610f86576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b60003411610fc9576040805162461bcd60e51b815260206004820152600b60248201526a06465706f736974203d20360ac1b604482015290519081900360640190fd5b610fd234611f40565b610dc9611ae8565b6000546001600160a01b0316331480610ffd57506001546001600160a01b031633145b806110305750336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016145b61106f576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b60065460ff161561107f57610dc9565b610dc16118b5565b6000546001600160a01b031633146110cf576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b612710811115611117576040805162461bcd60e51b815260206004820152600e60248201526d0e6d8d2e0e0c2ceca407c40dac2f60931b604482015290519081900360640190fd5b600455565b6001546001600160a01b031681565b6000546001600160a01b031681565b7f000000000000000000000000000000000000000000000000000000000000000081565b60025481565b8015806111ea575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b1580156111bc57600080fd5b505afa1580156111d0573d6000803e3d6000fd5b505050506040513d60208110156111e657600080fd5b5051155b6112255760405162461bcd60e51b81526004018080602001828103825260368152602001806127e46036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b17905261080b908490611f59565b6060611286848460008561200a565b90505b9392505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261080b908490611f59565b604080516370a0823160e01b81523060048201529051600091829173182b723a58739a9c974cfdb385ceadb237453c28916370a08231916024808301926020929190829003018186803b15801561133857600080fd5b505afa15801561134c573d6000803e3d6000fd5b505050506040513d602081101561136257600080fd5b505160408051630176f71760e71b8152905191925060009173dc24316b9ae028f1497c275eb9192a3ea0f670229163bb7b8b80916004808301926020929190829003018186803b1580156113b557600080fd5b505afa1580156113c9573d6000803e3d6000fd5b505050506040513d60208110156113df57600080fd5b50519050670de0b6b3a76400006113fc838363ffffffff61140b16565b8161140357fe5b049250505090565b60008261141a57506000611467565b8282028284828161142757fe5b04146114645760405162461bcd60e51b81526004018080602001828103825260218152602001806127996021913960400191505060405180910390fd5b90505b92915050565b600082820183811015611464576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081156114fc5760006114d9612166565b9050826114ec858363ffffffff61140b16565b816114f357fe5b04915050611467565b50600092915050565b73182b723a58739a9c974cfdb385ceadb237453c286001600160a01b0316632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561155f57600080fd5b505af1158015611573573d6000803e3d6000fd5b5050604080516370a0823160e01b81523060048201529051600093507306325440d014e39736583c165c2963ba99faf14e92506370a0823191602480820192602092909190829003018186803b1580156115cc57600080fd5b505afa1580156115e0573d6000803e3d6000fd5b505050506040513d60208110156115f657600080fd5b505160408051630176f71760e71b8152905191925060009173dc24316b9ae028f1497c275eb9192a3ea0f670229163bb7b8b80916004808301926020929190829003018186803b15801561164957600080fd5b505afa15801561165d573d6000803e3d6000fd5b505050506040513d602081101561167357600080fd5b505190506000670de0b6b3a7640000611692848463ffffffff61140b16565b8161169957fe5b04905060006127106116ba600454612710038461140b90919063ffffffff16565b816116c157fe5b60408051630d2680e960e11b8152600481018890526000602482018190529390920460448301819052905190935073dc24316b9ae028f1497c275eb9192a3ea0f6702292631a4d01d2926064808201939182900301818387803b15801561172757600080fd5b505af115801561173b573d6000803e3d6000fd5b505050505050505050565b600061146483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121ec565b804710156117d4576040805162461bcd60e51b81526020600482015260146024820152731155120818985b185b98d9480f08185b5bdd5b9d60621b604482015290519081900360640190fd5b6040516000906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169083908381818185875af1925050503d806000811461183f576040519150601f19603f3d011682016040523d82523d6000602084013e611844565b606091505b5050905080610baf576040805162461bcd60e51b815260206004820152600f60248201526e14d95b99081155120819985a5b1959608a1b604482015290519081900360640190fd5b61189581611788565b6002548111156118a95760006002556105e3565b60028054829003905550565b73182b723a58739a9c974cfdb385ceadb237453c286001600160a01b031663e6f1daf26040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561190457600080fd5b505af1158015611918573d6000803e3d6000fd5b5050604080516335313c2160e11b815273182b723a58739a9c974cfdb385ceadb237453c286004820152905173d061d61a4d941c39e5453435b6345dc261c2fce09350636a6278429250602480830192600092919082900301818387803b15801561198257600080fd5b505af1158015611996573d6000803e3d6000fd5b5050604080516370a0823160e01b8152306004820152905160009350735a98fcbea516cf06857215779fd812ca3bef1b3292506370a0823191602480820192602092909190829003018186803b1580156119ef57600080fd5b505afa158015611a03573d6000803e3d6000fd5b505050506040513d6020811015611a1957600080fd5b505190508015611a4157611a41735a98fcbea516cf06857215779fd812ca3bef1b3282612283565b604080516370a0823160e01b8152306004820152905160009173d533a949740bb3306d119cc777fa900ba034cd52916370a0823191602480820192602092909190829003018186803b158015611a9657600080fd5b505afa158015611aaa573d6000803e3d6000fd5b505050506040513d6020811015611ac057600080fd5b505190508015610baf57610baf73d533a949740bb3306d119cc777fa900ba034cd5282612283565b478015611dd4576000611afa82612490565b90508015611b85576040805163a1903eab60e01b8152306004820152905173ae7ab96520de3a18e5e111b5eaab095312d7fe849163a1903eab91849160248082019260209290919082900301818588803b158015611b5757600080fd5b505af1158015611b6b573d6000803e3d6000fd5b50505050506040513d6020811015611b8257600080fd5b50505b604080516370a0823160e01b81523060048201529051479160009173ae7ab96520de3a18e5e111b5eaab095312d7fe84916370a08231916024808301926020929190829003018186803b158015611bdb57600080fd5b505afa158015611bef573d6000803e3d6000fd5b505050506040513d6020811015611c0557600080fd5b505190508015611c4857611c4873ae7ab96520de3a18e5e111b5eaab095312d7fe8473dc24316b9ae028f1497c275eb9192a3ea0f670228363ffffffff61116416565b600073dc24316b9ae028f1497c275eb9192a3ea0f670226001600160a01b031663bb7b8b806040518163ffffffff1660e01b815260040160206040518083038186803b158015611c9757600080fd5b505afa158015611cab573d6000803e3d6000fd5b505050506040513d6020811015611cc157600080fd5b505190506000611cef82611ce388670de0b6b3a764000063ffffffff61140b16565b9063ffffffff61264116565b90506000612710611d0f600454612710038461140b90919063ffffffff16565b81611d1657fe5b04905073dc24316b9ae028f1497c275eb9192a3ea0f670226001600160a01b0316630b4c7e4d86604051806040016040528089815260200188815250846040518463ffffffff1660e01b81526004018083600260200280838360005b83811015611d8a578181015183820152602001611d72565b50505050905001828152602001925050506000604051808303818588803b158015611db457600080fd5b505af1158015611dc8573d6000803e3d6000fd5b50505050505050505050505b604080516370a0823160e01b815230600482015290516000917306325440d014e39736583c165c2963ba99faf14e916370a0823191602480820192602092909190829003018186803b158015611e2957600080fd5b505afa158015611e3d573d6000803e3d6000fd5b505050506040513d6020811015611e5357600080fd5b505190508015610baf57611e967306325440d014e39736583c165c2963ba99faf14e73182b723a58739a9c974cfdb385ceadb237453c288363ffffffff61116416565b73182b723a58739a9c974cfdb385ceadb237453c286001600160a01b031663b6b55f25826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015611ef057600080fd5b505af1158015611f04573d6000803e3d6000fd5b505050505050565b6000611f16612166565b90508015611f2757611f2781611505565b478015610baf57611f378161188c565b60006002555050565b600254611f53908263ffffffff61146d16565b60025550565b6060611fae826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166112779092919063ffffffff16565b80519091501561080b57808060200190516020811015611fcd57600080fd5b505161080b5760405162461bcd60e51b815260040180806020018281038252602a8152602001806127ba602a913960400191505060405180910390fd5b60608247101561204b5760405162461bcd60e51b81526004018080602001828103825260268152602001806127736026913960400191505060405180910390fd5b61205485612683565b6120a5576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106120e45780518252601f1990920191602091820191016120c5565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612146576040519150601f19603f3d011682016040523d82523d6000602084013e61214b565b606091505b509150915061215b828286612689565b979650505050505050565b604080516370a0823160e01b8152306004820152905160009173182b723a58739a9c974cfdb385ceadb237453c28916370a0823191602480820192602092909190829003018186803b1580156121bb57600080fd5b505afa1580156121cf573d6000803e3d6000fd5b505050506040513d60208110156121e557600080fd5b5051905090565b6000818484111561227b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612240578181015183820152602001612228565b50505050905090810190601f16801561226d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b604080516002808252606080830184529260208301908036833701905050905082816000815181106122b157fe5b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106122f357fe5b6001600160a01b039092166020928302919091018201526040516318cbafe560e01b8152600481018481526001602483018190523060648401819052426084850181905260a060448601908152875160a48701528751737a250d5630b4cf539739df2c5dacb4c659f2488d976318cbafe5978b978b9695949093909260c490920191878101910280838360005b83811015612398578181015183820152602001612380565b505050509050019650505050505050600060405180830381600087803b1580156123c157600080fd5b505af11580156123d5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156123fe57600080fd5b810190808051604051939291908464010000000082111561241e57600080fd5b90830190602082018581111561243357600080fd5b825186602082028301116401000000008211171561245057600080fd5b82525081516020918201928201910280838360005b8381101561247d578181015183820152602001612465565b5050505090500160405250505050505050565b600061249a612754565b60408051634903b0d160e01b815260006004820152905173dc24316b9ae028f1497c275eb9192a3ea0f6702291634903b0d1916024808301926020929190829003018186803b1580156124ec57600080fd5b505afa158015612500573d6000803e3d6000fd5b505050506040513d602081101561251657600080fd5b5051815260408051634903b0d160e01b815260016004820152905173dc24316b9ae028f1497c275eb9192a3ea0f6702291634903b0d1916024808301926020929190829003018186803b15801561256c57600080fd5b505afa158015612580573d6000803e3d6000fd5b505050506040513d602081101561259657600080fd5b5051602082018190528151600091116125b7575060208101518151036125c1565b5080516020820151035b60008482106125de5760208301518351106125d95750835b612639565b602083015183511061260b5760026125fc868463ffffffff61146d16565b8161260357fe5b049050612639565b6126366002612620878563ffffffff61146d16565b8161262757fe5b8791900463ffffffff61174616565b90505b949350505050565b600061146483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506126ef565b3b151590565b60608315612698575081611289565b8251156126a85782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315612240578181015183820152602001612228565b6000818361273e5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612240578181015183820152602001612228565b50600083858161274a57fe5b0495945050505050565b6040518060400160405280600290602082028036833750919291505056fe416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a264697066735822122039d4b446aeac40a480193a98b2e9d76ff50e59bc277f280beb89344c13cb8f0a64736f6c634300060b0033416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c5361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e636500000000000000000000000019db7587b1ebcf1320cbf55626027365bcc8de2700000000000000000000000072e357f7635163493f153a0bd3f03c15c14a51c6

Deployed Bytecode

0x6080604052600436106101445760003560e01c806370897b23116100b6578063e9fad8ee1161006f578063e9fad8ee1461040e578063f0fa55a914610423578063f77c47911461044d578063f851a44014610462578063fbfa77cf14610477578063fc7b9c181461048c576101bf565b806370897b2314610353578063853828b61461037d578063877887821461039257806392eefe9b146103a757806398234beb146103da578063d0e30db014610406576101bf565b80632e1a7d4d116101085780632e1a7d4d146102725780633e032a3b1461029c5780634641257d146102b157806367acc704146102c65780636f307dc3146102ef578063704b6c0214610320576101bf565b806301681a62146101c457806301e1d114146101f7578063025ff0a51461021e57806312b495a8146102485780631dd19cb41461025d576101bf565b366101bf57336001600160a01b037f00000000000000000000000072e357f7635163493f153a0bd3f03c15c14a51c61614156101bd576040805162461bcd60e51b81526020600482015260136024820152721b5cd9cb9cd95b99195c880f4f481d985d5b1d606a1b604482015290519081900360640190fd5b005b600080fd5b3480156101d057600080fd5b506101bd600480360360208110156101e757600080fd5b50356001600160a01b03166104a1565b34801561020357600080fd5b5061020c6105e6565b60408051918252519081900360200190f35b34801561022a57600080fd5b506101bd6004803603602081101561024157600080fd5b50356105f5565b34801561025457600080fd5b5061020c610687565b34801561026957600080fd5b506101bd61068d565b34801561027e57600080fd5b506101bd6004803603602081101561029557600080fd5b5035610810565b3480156102a857600080fd5b5061020c61096a565b3480156102bd57600080fd5b506101bd610970565b3480156102d257600080fd5b506102db610bb3565b604080519115158252519081900360200190f35b3480156102fb57600080fd5b50610304610bbc565b604080516001600160a01b039092168252519081900360200190f35b34801561032c57600080fd5b506101bd6004803603602081101561034357600080fd5b50356001600160a01b0316610bd4565b34801561035f57600080fd5b506101bd6004803603602081101561037657600080fd5b5035610c90565b34801561038957600080fd5b506101bd610d2c565b34801561039e57600080fd5b5061020c610dcb565b3480156103b357600080fd5b506101bd600480360360208110156103ca57600080fd5b50356001600160a01b0316610dd1565b3480156103e657600080fd5b506101bd600480360360208110156103fd57600080fd5b50351515610e96565b6101bd610ef1565b34801561041a57600080fd5b506101bd610fda565b34801561042f57600080fd5b506101bd6004803603602081101561044657600080fd5b5035611087565b34801561045957600080fd5b5061030461111c565b34801561046e57600080fd5b5061030461112b565b34801561048357600080fd5b5061030461113a565b34801561049857600080fd5b5061020c61115e565b6000546001600160a01b031633146104e9576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b6001600160a01b03811673182b723a58739a9c974cfdb385ceadb237453c28141561054d576040805162461bcd60e51b815260206004820152600f60248201526e383937ba32b1ba32b2103a37b5b2b760891b604482015290519081900360640190fd5b600054604080516370a0823160e01b815230600482015290516105e3926001600160a01b0390811692908516916370a0823191602480820192602092909190829003018186803b1580156105a057600080fd5b505afa1580156105b4573d6000803e3d6000fd5b505050506040513d60208110156105ca57600080fd5b50516001600160a01b038416919063ffffffff61129016565b50565b60006105f06112e2565b905090565b6000546001600160a01b0316331461063d576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b612710811015610682576040805162461bcd60e51b815260206004820152600b60248201526a3232b63a30901e1036b4b760a91b604482015290519081900360640190fd5b600555565b60055481565b6000546001600160a01b03163314806106b057506001546001600160a01b031633145b806106e35750336001600160a01b037f00000000000000000000000072e357f7635163493f153a0bd3f03c15c14a51c616145b610722576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b600061072c6112e2565b90506002548111610777576040805162461bcd60e51b815260206004820152601060248201526f1d1bdd185b08115512080f081919589d60821b604482015290519081900360640190fd5b60025460055481830391600091612710916107979163ffffffff61140b16565b8161079e57fe5b0490508083116107c3576002546107bb908363ffffffff61146d16565b60025561080b565b60006107cf83856114c7565b9050801561080957476107e182611505565b4760006107f4828463ffffffff61174616565b905080156108055761080581611788565b5050505b505b505050565b6000546001600160a01b031633148061083357506001546001600160a01b031633145b806108665750336001600160a01b037f00000000000000000000000072e357f7635163493f153a0bd3f03c15c14a51c616145b6108a5576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b600081116108e9576040805162461bcd60e51b815260206004820152600c60248201526b07769746864726177203d20360a41b604482015290519081900360640190fd5b60006108f36112e2565b90508082111561093d576040805162461bcd60e51b815260206004820152601060248201526f1dda5d1a191c985dc80f881d1bdd185b60821b604482015290519081900360640190fd5b600061094983836114c7565b9050801561095a5761095a81611505565b478015610809576108098161188c565b60045481565b6000546001600160a01b031633148061099357506001546001600160a01b031633145b806109c65750336001600160a01b037f00000000000000000000000072e357f7635163493f153a0bd3f03c15c14a51c616145b610a05576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b610a0d6118b5565b4780156105e3576000612710610a2e6003548461140b90919063ffffffff16565b81610a3557fe5b0490508015610ba757600154604080516361d027b360e01b815290516000926001600160a01b0316916361d027b3916004808301926020929190829003018186803b158015610a8357600080fd5b505afa158015610a97573d6000803e3d6000fd5b505050506040513d6020811015610aad57600080fd5b505190506001600160a01b038116610b0c576040805162461bcd60e51b815260206004820152601760248201527f7472656173757279203d207a65726f2061646472657373000000000000000000604482015290519081900360640190fd5b6040516000906001600160a01b0383169084908381818185875af1925050503d8060008114610b57576040519150601f19603f3d011682016040523d82523d6000602084013e610b5c565b606091505b5050905080610ba4576040805162461bcd60e51b815260206004820152600f60248201526e14d95b99081155120819985a5b1959608a1b604482015290519081900360640190fd5b50505b610baf611ae8565b5050565b60065460ff1681565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee81565b6000546001600160a01b03163314610c1c576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b6001600160a01b038116610c6e576040805162461bcd60e51b815260206004820152601460248201527361646d696e203d207a65726f206164647265737360601b604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610cd8576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b6107d0811115610d27576040805162461bcd60e51b81526020600482015260156024820152740706572666f726d616e636520666565203e2063617605c1b604482015290519081900360640190fd5b600355565b6000546001600160a01b0316331480610d4f57506001546001600160a01b031633145b80610d825750336001600160a01b037f00000000000000000000000072e357f7635163493f153a0bd3f03c15c14a51c616145b610dc1576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b610dc9611f0c565b565b60035481565b6000546001600160a01b03163314610e19576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b6001600160a01b038116610e74576040805162461bcd60e51b815260206004820152601960248201527f636f6e74726f6c6c6572203d207a65726f206164647265737300000000000000604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610ede576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b6006805460ff1916911515919091179055565b6000546001600160a01b0316331480610f1457506001546001600160a01b031633145b80610f475750336001600160a01b037f00000000000000000000000072e357f7635163493f153a0bd3f03c15c14a51c616145b610f86576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b60003411610fc9576040805162461bcd60e51b815260206004820152600b60248201526a06465706f736974203d20360ac1b604482015290519081900360640190fd5b610fd234611f40565b610dc9611ae8565b6000546001600160a01b0316331480610ffd57506001546001600160a01b031633145b806110305750336001600160a01b037f00000000000000000000000072e357f7635163493f153a0bd3f03c15c14a51c616145b61106f576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b60065460ff161561107f57610dc9565b610dc16118b5565b6000546001600160a01b031633146110cf576040805162461bcd60e51b815260206004820152600660248201526510b0b236b4b760d11b604482015290519081900360640190fd5b612710811115611117576040805162461bcd60e51b815260206004820152600e60248201526d0e6d8d2e0e0c2ceca407c40dac2f60931b604482015290519081900360640190fd5b600455565b6001546001600160a01b031681565b6000546001600160a01b031681565b7f00000000000000000000000072e357f7635163493f153a0bd3f03c15c14a51c681565b60025481565b8015806111ea575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b1580156111bc57600080fd5b505afa1580156111d0573d6000803e3d6000fd5b505050506040513d60208110156111e657600080fd5b5051155b6112255760405162461bcd60e51b81526004018080602001828103825260368152602001806127e46036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b17905261080b908490611f59565b6060611286848460008561200a565b90505b9392505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261080b908490611f59565b604080516370a0823160e01b81523060048201529051600091829173182b723a58739a9c974cfdb385ceadb237453c28916370a08231916024808301926020929190829003018186803b15801561133857600080fd5b505afa15801561134c573d6000803e3d6000fd5b505050506040513d602081101561136257600080fd5b505160408051630176f71760e71b8152905191925060009173dc24316b9ae028f1497c275eb9192a3ea0f670229163bb7b8b80916004808301926020929190829003018186803b1580156113b557600080fd5b505afa1580156113c9573d6000803e3d6000fd5b505050506040513d60208110156113df57600080fd5b50519050670de0b6b3a76400006113fc838363ffffffff61140b16565b8161140357fe5b049250505090565b60008261141a57506000611467565b8282028284828161142757fe5b04146114645760405162461bcd60e51b81526004018080602001828103825260218152602001806127996021913960400191505060405180910390fd5b90505b92915050565b600082820183811015611464576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081156114fc5760006114d9612166565b9050826114ec858363ffffffff61140b16565b816114f357fe5b04915050611467565b50600092915050565b73182b723a58739a9c974cfdb385ceadb237453c286001600160a01b0316632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561155f57600080fd5b505af1158015611573573d6000803e3d6000fd5b5050604080516370a0823160e01b81523060048201529051600093507306325440d014e39736583c165c2963ba99faf14e92506370a0823191602480820192602092909190829003018186803b1580156115cc57600080fd5b505afa1580156115e0573d6000803e3d6000fd5b505050506040513d60208110156115f657600080fd5b505160408051630176f71760e71b8152905191925060009173dc24316b9ae028f1497c275eb9192a3ea0f670229163bb7b8b80916004808301926020929190829003018186803b15801561164957600080fd5b505afa15801561165d573d6000803e3d6000fd5b505050506040513d602081101561167357600080fd5b505190506000670de0b6b3a7640000611692848463ffffffff61140b16565b8161169957fe5b04905060006127106116ba600454612710038461140b90919063ffffffff16565b816116c157fe5b60408051630d2680e960e11b8152600481018890526000602482018190529390920460448301819052905190935073dc24316b9ae028f1497c275eb9192a3ea0f6702292631a4d01d2926064808201939182900301818387803b15801561172757600080fd5b505af115801561173b573d6000803e3d6000fd5b505050505050505050565b600061146483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121ec565b804710156117d4576040805162461bcd60e51b81526020600482015260146024820152731155120818985b185b98d9480f08185b5bdd5b9d60621b604482015290519081900360640190fd5b6040516000906001600160a01b037f00000000000000000000000072e357f7635163493f153a0bd3f03c15c14a51c6169083908381818185875af1925050503d806000811461183f576040519150601f19603f3d011682016040523d82523d6000602084013e611844565b606091505b5050905080610baf576040805162461bcd60e51b815260206004820152600f60248201526e14d95b99081155120819985a5b1959608a1b604482015290519081900360640190fd5b61189581611788565b6002548111156118a95760006002556105e3565b60028054829003905550565b73182b723a58739a9c974cfdb385ceadb237453c286001600160a01b031663e6f1daf26040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561190457600080fd5b505af1158015611918573d6000803e3d6000fd5b5050604080516335313c2160e11b815273182b723a58739a9c974cfdb385ceadb237453c286004820152905173d061d61a4d941c39e5453435b6345dc261c2fce09350636a6278429250602480830192600092919082900301818387803b15801561198257600080fd5b505af1158015611996573d6000803e3d6000fd5b5050604080516370a0823160e01b8152306004820152905160009350735a98fcbea516cf06857215779fd812ca3bef1b3292506370a0823191602480820192602092909190829003018186803b1580156119ef57600080fd5b505afa158015611a03573d6000803e3d6000fd5b505050506040513d6020811015611a1957600080fd5b505190508015611a4157611a41735a98fcbea516cf06857215779fd812ca3bef1b3282612283565b604080516370a0823160e01b8152306004820152905160009173d533a949740bb3306d119cc777fa900ba034cd52916370a0823191602480820192602092909190829003018186803b158015611a9657600080fd5b505afa158015611aaa573d6000803e3d6000fd5b505050506040513d6020811015611ac057600080fd5b505190508015610baf57610baf73d533a949740bb3306d119cc777fa900ba034cd5282612283565b478015611dd4576000611afa82612490565b90508015611b85576040805163a1903eab60e01b8152306004820152905173ae7ab96520de3a18e5e111b5eaab095312d7fe849163a1903eab91849160248082019260209290919082900301818588803b158015611b5757600080fd5b505af1158015611b6b573d6000803e3d6000fd5b50505050506040513d6020811015611b8257600080fd5b50505b604080516370a0823160e01b81523060048201529051479160009173ae7ab96520de3a18e5e111b5eaab095312d7fe84916370a08231916024808301926020929190829003018186803b158015611bdb57600080fd5b505afa158015611bef573d6000803e3d6000fd5b505050506040513d6020811015611c0557600080fd5b505190508015611c4857611c4873ae7ab96520de3a18e5e111b5eaab095312d7fe8473dc24316b9ae028f1497c275eb9192a3ea0f670228363ffffffff61116416565b600073dc24316b9ae028f1497c275eb9192a3ea0f670226001600160a01b031663bb7b8b806040518163ffffffff1660e01b815260040160206040518083038186803b158015611c9757600080fd5b505afa158015611cab573d6000803e3d6000fd5b505050506040513d6020811015611cc157600080fd5b505190506000611cef82611ce388670de0b6b3a764000063ffffffff61140b16565b9063ffffffff61264116565b90506000612710611d0f600454612710038461140b90919063ffffffff16565b81611d1657fe5b04905073dc24316b9ae028f1497c275eb9192a3ea0f670226001600160a01b0316630b4c7e4d86604051806040016040528089815260200188815250846040518463ffffffff1660e01b81526004018083600260200280838360005b83811015611d8a578181015183820152602001611d72565b50505050905001828152602001925050506000604051808303818588803b158015611db457600080fd5b505af1158015611dc8573d6000803e3d6000fd5b50505050505050505050505b604080516370a0823160e01b815230600482015290516000917306325440d014e39736583c165c2963ba99faf14e916370a0823191602480820192602092909190829003018186803b158015611e2957600080fd5b505afa158015611e3d573d6000803e3d6000fd5b505050506040513d6020811015611e5357600080fd5b505190508015610baf57611e967306325440d014e39736583c165c2963ba99faf14e73182b723a58739a9c974cfdb385ceadb237453c288363ffffffff61116416565b73182b723a58739a9c974cfdb385ceadb237453c286001600160a01b031663b6b55f25826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015611ef057600080fd5b505af1158015611f04573d6000803e3d6000fd5b505050505050565b6000611f16612166565b90508015611f2757611f2781611505565b478015610baf57611f378161188c565b60006002555050565b600254611f53908263ffffffff61146d16565b60025550565b6060611fae826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166112779092919063ffffffff16565b80519091501561080b57808060200190516020811015611fcd57600080fd5b505161080b5760405162461bcd60e51b815260040180806020018281038252602a8152602001806127ba602a913960400191505060405180910390fd5b60608247101561204b5760405162461bcd60e51b81526004018080602001828103825260268152602001806127736026913960400191505060405180910390fd5b61205485612683565b6120a5576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106120e45780518252601f1990920191602091820191016120c5565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612146576040519150601f19603f3d011682016040523d82523d6000602084013e61214b565b606091505b509150915061215b828286612689565b979650505050505050565b604080516370a0823160e01b8152306004820152905160009173182b723a58739a9c974cfdb385ceadb237453c28916370a0823191602480820192602092909190829003018186803b1580156121bb57600080fd5b505afa1580156121cf573d6000803e3d6000fd5b505050506040513d60208110156121e557600080fd5b5051905090565b6000818484111561227b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612240578181015183820152602001612228565b50505050905090810190601f16801561226d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b604080516002808252606080830184529260208301908036833701905050905082816000815181106122b157fe5b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106122f357fe5b6001600160a01b039092166020928302919091018201526040516318cbafe560e01b8152600481018481526001602483018190523060648401819052426084850181905260a060448601908152875160a48701528751737a250d5630b4cf539739df2c5dacb4c659f2488d976318cbafe5978b978b9695949093909260c490920191878101910280838360005b83811015612398578181015183820152602001612380565b505050509050019650505050505050600060405180830381600087803b1580156123c157600080fd5b505af11580156123d5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156123fe57600080fd5b810190808051604051939291908464010000000082111561241e57600080fd5b90830190602082018581111561243357600080fd5b825186602082028301116401000000008211171561245057600080fd5b82525081516020918201928201910280838360005b8381101561247d578181015183820152602001612465565b5050505090500160405250505050505050565b600061249a612754565b60408051634903b0d160e01b815260006004820152905173dc24316b9ae028f1497c275eb9192a3ea0f6702291634903b0d1916024808301926020929190829003018186803b1580156124ec57600080fd5b505afa158015612500573d6000803e3d6000fd5b505050506040513d602081101561251657600080fd5b5051815260408051634903b0d160e01b815260016004820152905173dc24316b9ae028f1497c275eb9192a3ea0f6702291634903b0d1916024808301926020929190829003018186803b15801561256c57600080fd5b505afa158015612580573d6000803e3d6000fd5b505050506040513d602081101561259657600080fd5b5051602082018190528151600091116125b7575060208101518151036125c1565b5080516020820151035b60008482106125de5760208301518351106125d95750835b612639565b602083015183511061260b5760026125fc868463ffffffff61146d16565b8161260357fe5b049050612639565b6126366002612620878563ffffffff61146d16565b8161262757fe5b8791900463ffffffff61174616565b90505b949350505050565b600061146483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506126ef565b3b151590565b60608315612698575081611289565b8251156126a85782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315612240578181015183820152602001612228565b6000818361273e5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612240578181015183820152602001612228565b50600083858161274a57fe5b0495945050505050565b6040518060400160405280600290602082028036833750919291505056fe416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a264697066735822122039d4b446aeac40a480193a98b2e9d76ff50e59bc277f280beb89344c13cb8f0a64736f6c634300060b0033

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

00000000000000000000000019db7587b1ebcf1320cbf55626027365bcc8de2700000000000000000000000072e357f7635163493f153a0bd3f03c15c14a51c6

-----Decoded View---------------
Arg [0] : _controller (address): 0x19Db7587b1ebcF1320cBf55626027365BCC8de27
Arg [1] : _vault (address): 0x72E357f7635163493F153A0Bd3F03C15C14A51C6

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000019db7587b1ebcf1320cbf55626027365bcc8de27
Arg [1] : 00000000000000000000000072e357f7635163493f153a0bd3f03c15c14a51c6


Deployed Bytecode Sourcemap

34919:8094:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36446:10;-1:-1:-1;;;;;36460:5:0;36446:19;;;36438:51;;;;;-1:-1:-1;;;36438:51:0;;;;;;;;;;;;-1:-1:-1;;;36438:51:0;;;;;;;;;;;;;;;34919:8094;;;;;42803:207;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42803:207:0;-1:-1:-1;;;;;42803:207:0;;:::i;28814:101::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;27808:146;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27808:146:0;;:::i;26092:34::-;;;;;;;;;;;;;:::i;31667:1478::-;;;;;;;;;;;;;:::i;30173:514::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30173:514:0;;:::i;25900:35::-;;;;;;;;;;;;;:::i;41707:667::-;;;;;;;;;;;;;:::i;26227:30::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;25386:97;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;25386:97:0;;;;;;;;;;;;;;27083:159;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27083:159:0;-1:-1:-1;;;;;27083:159:0;;:::i;27447:178::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27447:178:0;;:::i;31166:89::-;;;;;;;;;;;;;:::i;25655:41::-;;;;;;;;;;;;;:::i;27250:189::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27250:189:0;-1:-1:-1;;;;;27250:189:0;;:::i;27962:108::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27962:108:0;;;;:::i;29028:174::-;;;:::i;42629:166::-;;;;;;;;;;;;;:::i;27633:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27633:167:0;;:::i;25233:34::-;;;;;;;;;;;;;:::i;25197:29::-;;;;;;;;;;;;;:::i;25274:39::-;;;;;;;;;;;;;:::i;25543:30::-;;;;;;;;;;;;;:::i;42803:207::-;26843:5;;-1:-1:-1;;;;;26843:5:0;26829:10;:19;26821:38;;;;;-1:-1:-1;;;26821:38:0;;;;;;;;;;;;-1:-1:-1;;;26821:38:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;42881:15:0;::::1;35460:42;42881:15;;42873:43;;;::::0;;-1:-1:-1;;;42873:43:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;42873:43:0;;;;;;;;;;;;;::::1;;42955:5;::::0;42962:39:::1;::::0;;-1:-1:-1;;;42962:39:0;;42995:4:::1;42962:39;::::0;::::1;::::0;;;42927:75:::1;::::0;-1:-1:-1;;;;;42955:5:0;;::::1;::::0;42962:24;;::::1;::::0;::::1;::::0;:39;;;;;::::1;::::0;;;;;;;;;:24;:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;42962:39:0;-1:-1:-1;;;;;42927:27:0;::::1;::::0;:75;::::1;:27;:75;:::i;:::-;42803:207:::0;:::o;28814:101::-;28869:4;28893:14;:12;:14::i;:::-;28886:21;;28814:101;:::o;27808:146::-;26843:5;;-1:-1:-1;;;;;26843:5:0;26829:10;:19;26821:38;;;;;-1:-1:-1;;;26821:38:0;;;;;;;;;;;;-1:-1:-1;;;26821:38:0;;;;;;;;;;;;;;;26167:5:::1;27886:6;:19;;27878:43;;;::::0;;-1:-1:-1;;;27878:43:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;27878:43:0;;;;;;;;;;;;;::::1;;27932:5;:14:::0;27808:146::o;26092:34::-;;;;:::o;31667:1478::-;26960:5;;-1:-1:-1;;;;;26960:5:0;26946:10;:19;;:47;;-1:-1:-1;26983:10:0;;-1:-1:-1;;;;;26983:10:0;26969;:24;26946:47;:70;;;-1:-1:-1;26997:10:0;-1:-1:-1;;;;;27011:5:0;26997:19;;26946:70;26924:131;;;;;-1:-1:-1;;;26924:131:0;;;;;;;;;;;;-1:-1:-1;;;26924:131:0;;;;;;;;;;;;;;;31727:13:::1;31743:14;:12;:14::i;:::-;31727:30;;31787:9;;31776:8;:20;31768:49;;;::::0;;-1:-1:-1;;;31768:49:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;31768:49:0;;;;;;;;;;;;;::::1;;31855:9;::::0;31949:5:::1;::::0;31844:20;;::::1;::::0;31830:11:::1;::::0;26167:5:::1;::::0;31935:20:::1;::::0;::::1;:13;:20;:::i;:::-;:32;;;;;;31924:43;;31994:3;31982:8;:15;31978:1160;;32477:9;::::0;:21:::1;::::0;32491:6;32477:21:::1;:13;:21;:::i;:::-;32465:9;:33:::0;31978:1160:::1;;;32737:11;32751:28;32762:6;32770:8;32751:10;:28::i;:::-;32737:42:::0;-1:-1:-1;32798:10:0;;32794:333:::1;;32846:21;32886:17;32896:6:::0;32886:9:::1;:17::i;:::-;32938:21;32922:13;32992:23;32938:21:::0;33005:9;32992:23:::1;:12;:23;:::i;:::-;32980:35:::0;-1:-1:-1;33038:8:0;;33034:78:::1;;33071:21;33087:4;33071:15;:21::i;:::-;32794:333;;;;31978:1160;;27066:1;;;31667:1478::o:0;30173:514::-;26960:5;;-1:-1:-1;;;;;26960:5:0;26946:10;:19;;:47;;-1:-1:-1;26983:10:0;;-1:-1:-1;;;;;26983:10:0;26969;:24;26946:47;:70;;;-1:-1:-1;26997:10:0;-1:-1:-1;;;;;27011:5:0;26997:19;;26946:70;26924:131;;;;;-1:-1:-1;;;26924:131:0;;;;;;;;;;;;-1:-1:-1;;;26924:131:0;;;;;;;;;;;;;;;30273:1:::1;30260:10;:14;30252:39;;;::::0;;-1:-1:-1;;;30252:39:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;30252:39:0;;;;;;;;;;;;;::::1;;30302:13;30318:14;:12;:14::i;:::-;30302:30;;30365:8;30351:10;:22;;30343:51;;;::::0;;-1:-1:-1;;;30343:51:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;30343:51:0;;;;;;;;;;;;;::::1;;30407:11;30421:32;30432:10;30444:8;30421:10;:32::i;:::-;30407:46:::0;-1:-1:-1;30468:10:0;;30464:60:::1;;30495:17;30505:6;30495:9;:17::i;:::-;30584:21;30620:10:::0;;30616:64:::1;;30647:21;30661:6;30647:13;:21::i;25900:35::-:0;;;;:::o;41707:667::-;26960:5;;-1:-1:-1;;;;;26960:5:0;26946:10;:19;;:47;;-1:-1:-1;26983:10:0;;-1:-1:-1;;;;;26983:10:0;26969;:24;26946:47;:70;;;-1:-1:-1;26997:10:0;-1:-1:-1;;;;;27011:5:0;26997:19;;26946:70;26924:131;;;;;-1:-1:-1;;;26924:131:0;;;;;;;;;;;;-1:-1:-1;;;26924:131:0;;;;;;;;;;;;;;;41770:15:::1;:13;:15::i;:::-;41809:21;41845:7:::0;;41841:526:::1;;41910:8;25837:5;41921:23;41929:14;;41921:3;:7;;:23;;;;:::i;:::-;:45;;;;;;::::0;-1:-1:-1;41985:7:0;;41981:350:::1;;42044:10;::::0;42032:34:::1;::::0;;-1:-1:-1;;;42032:34:0;;;;42013:16:::1;::::0;-1:-1:-1;;;;;42044:10:0::1;::::0;42032:32:::1;::::0;:34:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;42044:10;42032:34;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;42032:34:0;;-1:-1:-1;;;;;;42093:22:0;::::1;42085:58;;;::::0;;-1:-1:-1;;;42085:58:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;42235:29;::::0;42220:9:::1;::::0;-1:-1:-1;;;;;42235:13:0;::::1;::::0;42256:3;;42220:9;42235:29;42220:9;42235:29;42256:3;42235:13;:29:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42219:45;;;42291:4;42283:32;;;::::0;;-1:-1:-1;;;42283:32:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;42283:32:0;;;;;;;;;;;;;::::1;;41981:350;;;42345:10;:8;:10::i;:::-;41841:526;27066:1;41707:667::o:0;26227:30::-;;;;;;:::o;25386:97::-;25441:42;25386:97;:::o;27083:159::-;26843:5;;-1:-1:-1;;;;;26843:5:0;26829:10;:19;26821:38;;;;;-1:-1:-1;;;26821:38:0;;;;;;;;;;;;-1:-1:-1;;;26821:38:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;27164:20:0;::::1;27156:53;;;::::0;;-1:-1:-1;;;27156:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;27156:53:0;;;;;;;;;;;;;::::1;;27220:5;:14:::0;;-1:-1:-1;;;;;;27220:14:0::1;-1:-1:-1::0;;;;;27220:14:0;;;::::1;::::0;;;::::1;::::0;;27083:159::o;27447:178::-;26843:5;;-1:-1:-1;;;;;26843:5:0;26829:10;:19;26821:38;;;;;-1:-1:-1;;;26821:38:0;;;;;;;;;;;;-1:-1:-1;;;26821:38:0;;;;;;;;;;;;;;;25747:4:::1;27532;:27;;27524:61;;;::::0;;-1:-1:-1;;;27524:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;27524:61:0;;;;;;;;;;;;;::::1;;27596:14;:21:::0;27447:178::o;31166:89::-;26960:5;;-1:-1:-1;;;;;26960:5:0;26946:10;:19;;:47;;-1:-1:-1;26983:10:0;;-1:-1:-1;;;;;26983:10:0;26969;:24;26946:47;:70;;;-1:-1:-1;26997:10:0;-1:-1:-1;;;;;27011:5:0;26997:19;;26946:70;26924:131;;;;;-1:-1:-1;;;26924:131:0;;;;;;;;;;;;-1:-1:-1;;;26924:131:0;;;;;;;;;;;;;;;31233:14:::1;:12;:14::i;:::-;31166:89::o:0;25655:41::-;;;;:::o;27250:189::-;26843:5;;-1:-1:-1;;;;;26843:5:0;26829:10;:19;26821:38;;;;;-1:-1:-1;;;26821:38:0;;;;;;;;;;;;-1:-1:-1;;;26821:38:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;27341:25:0;::::1;27333:63;;;::::0;;-1:-1:-1;;;27333:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;27407:10;:24:::0;;-1:-1:-1;;;;;;27407:24:0::1;-1:-1:-1::0;;;;;27407:24:0;;;::::1;::::0;;;::::1;::::0;;27250:189::o;27962:108::-;26843:5;;-1:-1:-1;;;;;26843:5:0;26829:10;:19;26821:38;;;;;-1:-1:-1;;;26821:38:0;;;;;;;;;;;;-1:-1:-1;;;26821:38:0;;;;;;;;;;;;;;;28040:9:::1;:22:::0;;-1:-1:-1;;28040:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27962:108::o;29028:174::-;26960:5;;-1:-1:-1;;;;;26960:5:0;26946:10;:19;;:47;;-1:-1:-1;26983:10:0;;-1:-1:-1;;;;;26983:10:0;26969;:24;26946:47;:70;;;-1:-1:-1;26997:10:0;-1:-1:-1;;;;;27011:5:0;26997:19;;26946:70;26924:131;;;;;-1:-1:-1;;;26924:131:0;;;;;;;;;;;;-1:-1:-1;;;26924:131:0;;;;;;;;;;;;;;;29119:1:::1;29107:9;:13;29099:37;;;::::0;;-1:-1:-1;;;29099:37:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;29099:37:0;;;;;;;;;;;;;::::1;;29149:24;29163:9;29149:13;:24::i;:::-;29184:10;:8;:10::i;42629:166::-:0;26960:5;;-1:-1:-1;;;;;26960:5:0;26946:10;:19;;:47;;-1:-1:-1;26983:10:0;;-1:-1:-1;;;;;26983:10:0;26969;:24;26946:47;:70;;;-1:-1:-1;26997:10:0;-1:-1:-1;;;;;27011:5:0;26997:19;;26946:70;26924:131;;;;;-1:-1:-1;;;26924:131:0;;;;;;;;;;;;-1:-1:-1;;;26924:131:0;;;;;;;;;;;;;;;42693:9:::1;::::0;::::1;;42689:48;;;42719:7;;42689:48;42747:15;:13;:15::i;27633:167::-:0;26843:5;;-1:-1:-1;;;;;26843:5:0;26829:10;:19;26821:38;;;;;-1:-1:-1;;;26821:38:0;;;;;;;;;;;;-1:-1:-1;;;26821:38:0;;;;;;;;;;;;;;;25980:5:::1;27717:9;:25;;27709:52;;;::::0;;-1:-1:-1;;;27709:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;27709:52:0;;;;;;;;;;;;;::::1;;27772:8;:20:::0;27633:167::o;25233:34::-;;;-1:-1:-1;;;;;25233:34:0;;:::o;25197:29::-;;;-1:-1:-1;;;;;25197:29:0;;:::o;25274:39::-;;;:::o;25543:30::-;;;;:::o;17029:704::-;17444:10;;;17443:62;;-1:-1:-1;17460:39:0;;;-1:-1:-1;;;17460:39:0;;17484:4;17460:39;;;;-1:-1:-1;;;;;17460:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17460:39:0;:44;17443:62;17421:166;;;;-1:-1:-1;;;17421:166:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17652:62;;;-1:-1:-1;;;;;17652:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17652:62:0;-1:-1:-1;;;17652:62:0;;;17598:127;;17632:5;;17598:19;:127::i;11920:229::-;12057:12;12089:52;12111:6;12119:4;12125:1;12128:12;12089:21;:52::i;:::-;12082:59;;11920:229;;;;;;:::o;16225:245::-;16393:58;;;-1:-1:-1;;;;;16393:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16393:58:0;-1:-1:-1;;;16393:58:0;;;16339:123;;16373:5;;16339:19;:123::i;36505:268::-;36592:48;;;-1:-1:-1;;;36592:48:0;;36634:4;36592:48;;;;;;36561:4;;;;35460:42;;36592:33;;:48;;;;;;;;;;;;;;35460:42;36592:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36592:48:0;36672:41;;;-1:-1:-1;;;36672:41:0;;;;36592:48;;-1:-1:-1;36651:18:0;;35353:42;;36672:39;;:41;;;;;36592:48;;36672:41;;;;;;;35353:42;36672:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36672:41:0;;-1:-1:-1;36761:4:0;36733:25;:6;36672:41;36733:25;:10;:25;:::i;:::-;:32;;;;;;36726:39;;;;36505:268;:::o;5105:459::-;5157:4;5399:6;5395:47;;-1:-1:-1;5429:1:0;5422:8;;5395:47;5463:5;;;5467:1;5463;:5;:1;5487:5;;;;;:10;5479:56;;;;-1:-1:-1;;;5479:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5555:1;-1:-1:-1;5105:459:0;;;;;:::o;3750:169::-;3802:4;3828:5;;;3852:6;;;;3844:46;;;;;-1:-1:-1;;;3844:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;29406:544;29482:4;29785:13;;29781:143;;29815:16;29834:17;:15;:17::i;:::-;29815:36;-1:-1:-1;29903:9:0;29873:27;:10;29815:36;29873:27;:14;:27;:::i;:::-;:39;;;;;;29866:46;;;;;29781:143;-1:-1:-1;29941:1:0;29406:544;;;;:::o;39992:614::-;35460:42;-1:-1:-1;;;;;40103:32:0;;40136:9;40103:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;40172:35:0;;;-1:-1:-1;;;40172:35:0;;40201:4;40172:35;;;;;;40159:10;;-1:-1:-1;35248:42:0;;-1:-1:-1;40172:20:0;;:35;;;;;;;;;;;;;;;35248:42;40172:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40172:35:0;40320:41;;;-1:-1:-1;;;40320:41:0;;;;40172:35;;-1:-1:-1;40299:18:0;;35353:42;;40320:39;;:41;;;;;40172:35;;40320:41;;;;;;;35353:42;40320:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40320:41:0;;-1:-1:-1;40372:14:0;40416:4;40389:24;:5;40320:41;40389:24;:9;:24;:::i;:::-;:31;;;;;;40372:48;;40431:8;25980:5;40442:38;40471:8;;25980:5;40456:23;40442:9;:13;;:38;;;;:::i;:::-;:53;;;;;40508:62;;;-1:-1:-1;;;40508:62:0;;;;;;;;40563:1;40508:62;;;;;;40442:53;;;;40508:62;;;;;;;;40442:53;;-1:-1:-1;35353:42:0;;40508:47;;:62;;;;;;;;;;;40563:1;35353:42;40508:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39992:614;;;;;:::o;4202:127::-;4254:4;4278:43;4282:1;4285;4278:43;;;;;;;;;;;;;;;;;:3;:43::i;28078:234::-;28170:7;28145:21;:32;;28137:65;;;;;-1:-1:-1;;;28137:65:0;;;;;;;;;;;;-1:-1:-1;;;28137:65:0;;;;;;;;;;;;;;;28231:30;;28216:9;;-1:-1:-1;;;;;28231:5:0;:10;;28249:7;;28216:9;28231:30;28216:9;28231:30;28249:7;28231:10;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28215:46;;;28280:4;28272:32;;;;;-1:-1:-1;;;28272:32:0;;;;;;;;;;;;-1:-1:-1;;;28272:32:0;;;;;;;;;;;;;;28432:230;28491:27;28507:10;28491:15;:27::i;:::-;28548:9;;28535:10;:22;28531:124;;;28586:1;28574:9;:13;28531:124;;;28620:9;:23;;;;;;;28432:230;:::o;41103:515::-;35460:42;-1:-1:-1;;;;;41169:37:0;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;41241:26:0;;;-1:-1:-1;;;41241:26:0;;35460:42;41241:26;;;;;;35558:42;;-1:-1:-1;41241:19:0;;-1:-1:-1;41241:26:0;;;;;-1:-1:-1;;41241:26:0;;;;;;;-1:-1:-1;35558:42:0;41241:26;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;41359:36:0;;;-1:-1:-1;;;41359:36:0;;41389:4;41359:36;;;;;;41345:11;;-1:-1:-1;35831:42:0;;-1:-1:-1;41359:21:0;;:36;;;;;;;;;;;;;;;35831:42;41359:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41359:36:0;;-1:-1:-1;41410:10:0;;41406:66;;41437:23;35831:42;41453:6;41437:10;:23::i;:::-;41498:36;;;-1:-1:-1;;;41498:36:0;;41528:4;41498:36;;;;;;41484:11;;35650:42;;41498:21;;:36;;;;;;;;;;;;;;;35650:42;41498:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41498:36:0;;-1:-1:-1;41549:10:0;;41545:66;;41576:23;35650:42;41592:6;41576:10;:23::i;38585:1252::-;38645:21;38681:7;;38677:911;;38705:16;38724:27;38747:3;38724:22;:27::i;:::-;38705:46;-1:-1:-1;38770:15:0;;38766:111;;38806:55;;;-1:-1:-1;;;38806:55:0;;38855:4;38806:55;;;;;;35751:42;;38806:20;;38834:11;;38806:55;;;;;;;;;;;;;;;38834:11;35751:42;38806:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38766:111:0;38959:39;;;-1:-1:-1;;;38959:39:0;;38992:4;38959:39;;;;;;38907:21;;38893:11;;35751:42;;38959:24;;:39;;;;;;;;;;;;;;35751:42;38959:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38959:39:0;;-1:-1:-1;39019:12:0;;39015:164;;39121:42;35751;35353;39154:8;39121:42;:26;:42;:::i;:::-;39285:18;35353:42;-1:-1:-1;;;;;39306:39:0;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39306:41:0;;-1:-1:-1;39362:11:0;39376:32;39306:41;39376:13;:3;39384:4;39376:13;:7;:13;:::i;:::-;:17;:32;:17;:32;:::i;:::-;39362:46;;39423:8;25980:5;39434:35;39460:8;;25980:5;39445:23;39434:6;:10;;:35;;;;:::i;:::-;:50;;;;;;39423:61;;35353:42;-1:-1:-1;;;;;39501:35:0;;39544:6;39501:75;;;;;;;;39553:6;39501:75;;;;39561:8;39501:75;;;39572:3;39501:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38677:911;;;;;;;39653:35;;;-1:-1:-1;;;39653:35:0;;39682:4;39653:35;;;;;;39640:10;;35248:42;;39653:20;;:35;;;;;;;;;;;;;;;35248:42;39653:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39653:35:0;;-1:-1:-1;39703:9:0;;39699:131;;39729:36;35248:42;35460;39759:5;39729:36;:22;:36;:::i;:::-;35460:42;-1:-1:-1;;;;;39780:31:0;;39812:5;39780:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38585:1252;;:::o;30695:352::-;30739:16;30758:17;:15;:17::i;:::-;30739:36;-1:-1:-1;30790:15:0;;30786:70;;30822:22;30832:11;30822:9;:22::i;:::-;30916:21;30952:10;;30948:92;;30979:21;30993:6;30979:13;:21::i;:::-;31027:1;31015:9;:13;30695:352;;:::o;28320:104::-;28391:9;;:25;;28405:10;28391:25;:13;:25;:::i;:::-;28379:9;:37;-1:-1:-1;28320:104:0:o;18949:836::-;19373:23;19412:69;19440:4;19412:69;;;;;;;;;;;;;;;;;19420:5;-1:-1:-1;;;;;19412:27:0;;;:69;;;;;:::i;:::-;19496:17;;19373:108;;-1:-1:-1;19496:21:0;19492:286;;19669:10;19658:30;;;;;;;;;;;;;;;-1:-1:-1;19658:30:0;19632:134;;;;-1:-1:-1;;;19632:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13133:605;13300:12;13372:5;13347:21;:30;;13325:118;;;;-1:-1:-1;;;13325:118:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13462:18;13473:6;13462:10;:18::i;:::-;13454:60;;;;;-1:-1:-1;;;13454:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;13588:12;13602:23;13629:6;-1:-1:-1;;;;;13629:11:0;13648:5;13655:4;13629:31;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;13629:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13587:73;;;;13678:52;13696:7;13705:10;13717:12;13678:17;:52::i;:::-;13671:59;13133:605;-1:-1:-1;;;;;;;13133:605:0:o;39845:139::-;39928:48;;;-1:-1:-1;;;39928:48:0;;39970:4;39928:48;;;;;;39904:4;;35460:42;;39928:33;;:48;;;;;;;;;;;;;;;35460:42;39928:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39928:48:0;;-1:-1:-1;39845:139:0;:::o;4632:214::-;4746:4;4779:12;4771:6;;;;4763:29;;;;-1:-1:-1;;;4763:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4812:5:0;;;4632:214::o;40702:393::-;40843:16;;;40857:1;40843:16;;;40819:21;40843:16;;;;;40819:21;40843:16;;;;;;;;;;-1:-1:-1;40843:16:0;40819:40;;40880:5;40870:4;40875:1;40870:7;;;;;;;;;;;;;:15;-1:-1:-1;;;;;40870:15:0;;;-1:-1:-1;;;;;40870:15:0;;;;;35099:42;40896:4;40901:1;40896:7;;;;;;;;-1:-1:-1;;;;;40896:14:0;;;:7;;;;;;;;;;:14;40923:164;;-1:-1:-1;;;40923:164:0;;;;;;;;40998:1;40923:164;;;;;;41041:4;40923:164;;;;;;41061:15;40923:164;;;;;;;;;;;;;;;;;;;;;35018:42;;40923:38;;40976:7;;41014:4;;41041;41061:15;40923:164;;;;;;;;;;;;;;;;;-1:-1:-1;40923:164:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;40923:164:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40923:164:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40702:393;;;:::o;36781:1734::-;36849:4;37630:23;;:::i;:::-;37678:33;;;-1:-1:-1;;;37678:33:0;;37709:1;37678:33;;;;;;35353:42;;37678:30;;:33;;;;;;;;;;;;;;35353:42;37678:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37678:33:0;37664:47;;37736:33;;;-1:-1:-1;;;37736:33:0;;37767:1;37736:33;;;;;;35353:42;;37736:30;;:33;;;;;37664:11;;37736:33;;;;;;;35353:42;37736:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37736:33:0;37722:11;;;:47;;;37806:11;;37782:9;;-1:-1:-1;37802:156:0;;-1:-1:-1;37870:11:0;;;;37856;;:25;37802:156;;;-1:-1:-1;37935:11:0;;;37921;;;:25;37802:156;38073:7;38103;38095:4;:15;38091:335;;38146:11;;;;38131;;:26;38127:79;;-1:-1:-1;38183:7:0;38127:79;38091:335;;;38257:11;;;;38242;;:26;38238:177;;38316:1;38295:17;:7;38307:4;38295:17;:11;:17;:::i;:::-;38294:23;;;;;;38289:28;;38238:177;;;38363:36;38397:1;38376:17;:7;38388:4;38376:17;:11;:17;:::i;:::-;38375:23;;;;;38363:7;;38375:23;;38363:36;:11;:36;:::i;:::-;38358:41;;38238:177;38505:2;36781:1734;-1:-1:-1;;;;36781:1734:0:o;6040:123::-;6092:4;6116:39;6120:1;6123;6116:39;;;;;;;;;;;;;;;;;:3;:39::i;8963:441::-;9340:20;9388:8;;;8963:441::o;14823:777::-;14973:12;15002:7;14998:595;;;-1:-1:-1;15033:10:0;15026:17;;14998:595;15147:17;;:21;15143:439;;15410:10;15404:17;15471:15;15458:10;15454:2;15450:19;15443:44;15358:148;15546:20;;-1:-1:-1;;;15546:20:0;;;;;;;;;;;;;;;;;15553:12;;15546:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6659:300;6773:4;6805:12;6798:5;6790:28;;;;-1:-1:-1;;;6790:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6829:6;6842:1;6838;:5;;;;;;;6659:300;-1:-1:-1;;;;;6659:300:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

ipfs://39d4b446aeac40a480193a98b2e9d76ff50e59bc277f280beb89344c13cb8f0a

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.