FTM Price: $1.03 (-2.20%)
Gas: 112 GWei

Contract

0x6DeDE244d7DD73Aa4967B3d7D400271ec746e28B
 

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Harvest601181302023-04-17 5:48:51346 days ago1681710531IN
0x6DeDE244...ec746e28B
0 FTM0.07401778118.2799
Harvest600342132023-04-16 2:45:40347 days ago1681613140IN
0x6DeDE244...ec746e28B
0 FTM0.0457868974.6806
Harvest599426602023-04-14 23:05:18348 days ago1681513518IN
0x6DeDE244...ec746e28B
0 FTM0.08925188131.1544
Harvest597601862023-04-12 23:44:16350 days ago1681343056IN
0x6DeDE244...ec746e28B
0 FTM0.13178536199
Harvest596805062023-04-12 1:57:47351 days ago1681264667IN
0x6DeDE244...ec746e28B
0 FTM0.036521758.645
Harvest596573672023-04-11 18:39:48351 days ago1681238388IN
0x6DeDE244...ec746e28B
0 FTM0.0819795126
Harvest595810042023-04-10 19:56:42352 days ago1681156602IN
0x6DeDE244...ec746e28B
0 FTM0.0415535162.7984
Harvest595307932023-04-10 4:37:30353 days ago1681101450IN
0x6DeDE244...ec746e28B
0 FTM0.0212016934.07997572
Harvest594668772023-04-09 8:39:21354 days ago1681029561IN
0x6DeDE244...ec746e28B
0 FTM0.0500418580.43310517
Harvest594390222023-04-08 23:34:17354 days ago1680996857IN
0x6DeDE244...ec746e28B
0 FTM0.0555750888
Harvest594099712023-04-08 15:14:19354 days ago1680966859IN
0x6DeDE244...ec746e28B
0 FTM0.08600022134.7685
Harvest593654732023-04-08 3:27:34355 days ago1680924454IN
0x6DeDE244...ec746e28B
0 FTM0.11391296181.255
Harvest592673232023-04-07 0:26:30356 days ago1680827190IN
0x6DeDE244...ec746e28B
0 FTM0.06957806106.2525
Harvest591988452023-04-06 6:34:17357 days ago1680762857IN
0x6DeDE244...ec746e28B
0 FTM0.07086196108.6855
Harvest590865382023-04-04 21:52:02358 days ago1680645122IN
0x6DeDE244...ec746e28B
0 FTM0.0228274533.6272
Harvest590726142023-04-04 17:02:37358 days ago1680627757IN
0x6DeDE244...ec746e28B
0 FTM0.0210867232.14435363
Harvest590484812023-04-04 9:43:43359 days ago1680601423IN
0x6DeDE244...ec746e28B
0 FTM0.0204938931.396
Harvest590353462023-04-04 5:16:17359 days ago1680585377IN
0x6DeDE244...ec746e28B
0 FTM0.0191459329.2694
Harvest590230032023-04-04 0:37:14359 days ago1680568634IN
0x6DeDE244...ec746e28B
0 FTM0.0297810148.2522
Harvest590032972023-04-03 18:28:48359 days ago1680546528IN
0x6DeDE244...ec746e28B
0 FTM0.0215881333.3679
Harvest589892622023-04-03 14:02:30360 days ago1680530550IN
0x6DeDE244...ec746e28B
0 FTM0.020987232
Harvest589755962023-04-03 9:49:08360 days ago1680515348IN
0x6DeDE244...ec746e28B
0 FTM0.0230860434.8062
Harvest589602172023-04-03 3:54:02360 days ago1680494042IN
0x6DeDE244...ec746e28B
0 FTM0.0179583427.3
Harvest589480602023-04-02 23:32:24360 days ago1680478344IN
0x6DeDE244...ec746e28B
0 FTM0.0223405731.85
Harvest589327032023-04-02 17:53:34360 days ago1680458014IN
0x6DeDE244...ec746e28B
0 FTM0.0252079640
View all transactions

Latest 1 internal transaction

Parent Txn Hash Block From To Value
348080572022-03-30 16:19:22728 days ago1648657162  Contract Creation0 FTM
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
StrategyStargateStaking

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at ftmscan.com on 2022-03-30
*/

// SPDX-License-Identifier: MIT

// File @openzeppelin/contracts/utils/[email protected]



pragma solidity >=0.6.0 <0.8.0;

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

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]



pragma solidity >=0.6.0 <0.8.0;

/**
 * @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 (uint256);

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

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

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

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

    /**
     * @dev Moves `amount` tokens from `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, uint256 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, uint256 value);

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


// File @openzeppelin/contracts/math/[email protected]



pragma solidity >=0.6.0 <0.8.0;

/**
 * @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, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

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

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 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(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]



pragma solidity >=0.6.0 <0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity >=0.6.2 <0.8.0;

/**
 * @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.

        uint256 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, uint256 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, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(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/[email protected]



pragma solidity >=0.6.0 <0.8.0;



/**
 * @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 uint256;
    using Address for address;

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

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

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

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 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/BIFI/interfaces/common/IUniswapRouterETH.sol



pragma solidity >=0.6.0 <0.9.0;

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

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

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

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

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

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

    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
}


// File contracts/BIFI/interfaces/common/IMasterChef.sol



pragma solidity ^0.6.0;

interface IMasterChef {
    function deposit(uint256 _pid, uint256 _amount) external;
    function withdraw(uint256 _pid, uint256 _amount) external;
    function enterStaking(uint256 _amount) external;
    function leaveStaking(uint256 _amount) external;
    function userInfo(uint256 _pid, address _user) external view returns (uint256, uint256);
    function emergencyWithdraw(uint256 _pid) external;
}


// File contracts/BIFI/interfaces/stargate/IStargateRouter.sol



pragma solidity >=0.6.0 <0.9.0;

interface IStargateRouter {
        function addLiquidity(
        uint256 _poolId,
        uint256 _amountLD,
        address _to
    ) external;
}


// File @openzeppelin/contracts/access/[email protected]



pragma solidity >=0.6.0 <0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity >=0.6.0 <0.8.0;

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

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

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () internal {
        _paused = false;
    }

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

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

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

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

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


// File contracts/BIFI/strategies/Common/StratManager.sol



pragma solidity ^0.6.12;


contract StratManager is Ownable, Pausable {
    /**
     * @dev Beefy Contracts:
     * {keeper} - Address to manage a few lower risk features of the strat
     * {strategist} - Address of the strategy author/deployer where strategist fee will go.
     * {vault} - Address of the vault that controls the strategy's funds.
     * {unirouter} - Address of exchange to execute swaps.
     */
    address public keeper;
    address public strategist;
    address public unirouter;
    address public vault;
    address public beefyFeeRecipient;

    /**
     * @dev Initializes the base strategy.
     * @param _keeper address to use as alternative owner.
     * @param _strategist address where strategist fees go.
     * @param _unirouter router to use for swaps
     * @param _vault address of parent vault.
     * @param _beefyFeeRecipient address where to send Beefy's fees.
     */
    constructor(
        address _keeper,
        address _strategist,
        address _unirouter,
        address _vault,
        address _beefyFeeRecipient
    ) public {
        keeper = _keeper;
        strategist = _strategist;
        unirouter = _unirouter;
        vault = _vault;
        beefyFeeRecipient = _beefyFeeRecipient;
    }

    // checks that caller is either owner or keeper.
    modifier onlyManager() {
        require(msg.sender == owner() || msg.sender == keeper, "!manager");
        _;
    }

    /**
     * @dev Updates address of the strat keeper.
     * @param _keeper new keeper address.
     */
    function setKeeper(address _keeper) external onlyManager {
        keeper = _keeper;
    }

    /**
     * @dev Updates address where strategist fee earnings will go.
     * @param _strategist new strategist address.
     */
    function setStrategist(address _strategist) external {
        require(msg.sender == strategist, "!strategist");
        strategist = _strategist;
    }

    /**
     * @dev Updates router that will be used for swaps.
     * @param _unirouter new unirouter address.
     */
    function setUnirouter(address _unirouter) external onlyOwner {
        unirouter = _unirouter;
    }

    /**
     * @dev Updates parent vault.
     * @param _vault new vault address.
     */
    function setVault(address _vault) external onlyOwner {
        vault = _vault;
    }

    /**
     * @dev Updates beefy fee recipient.
     * @param _beefyFeeRecipient new beefy fee recipient address.
     */
    function setBeefyFeeRecipient(address _beefyFeeRecipient) external onlyOwner {
        beefyFeeRecipient = _beefyFeeRecipient;
    }

    /**
     * @dev Function to synchronize balances before new user deposit.
     * Can be overridden in the strategy.
     */
    function beforeDeposit() external virtual {}
}


// File contracts/BIFI/strategies/Common/FeeManager.sol



pragma solidity ^0.6.12;

abstract contract FeeManager is StratManager {
    uint constant public STRATEGIST_FEE = 112;
    uint constant public MAX_FEE = 1000;
    uint constant public MAX_CALL_FEE = 111;

    uint constant public WITHDRAWAL_FEE_CAP = 50;
    uint constant public WITHDRAWAL_MAX = 10000;

    uint public withdrawalFee = 10;

    uint public callFee = 111;
    uint public beefyFee = MAX_FEE - STRATEGIST_FEE - callFee;

    function setCallFee(uint256 _fee) public onlyManager {
        require(_fee <= MAX_CALL_FEE, "!cap");
        
        callFee = _fee;
        beefyFee = MAX_FEE - STRATEGIST_FEE - callFee;
    }

    function setWithdrawalFee(uint256 _fee) public onlyManager {
        require(_fee <= WITHDRAWAL_FEE_CAP, "!cap");

        withdrawalFee = _fee;
    }
}


// File contracts/BIFI/utils/StringUtils.sol



pragma solidity >=0.6.0 <0.8.0;

library StringUtils {
    function concat(string memory a, string memory b) internal pure returns (string memory) {
        return string(abi.encodePacked(a, b));
    }
}


// File contracts/BIFI/utils/IGasPrice.sol



pragma solidity ^0.6.12;

interface IGasPrice {
    function maxGasPrice() external returns (uint);
}


// File contracts/BIFI/utils/GasThrottler.sol



pragma solidity ^0.6.12;


contract GasThrottler {

    bool public shouldGasThrottle = true;

    address public gasprice = address(0xA43509661141F254F54D9A326E8Ec851A0b95307);

    modifier gasThrottle() {
        if (shouldGasThrottle && Address.isContract(gasprice)) {
            require(tx.gasprice <= IGasPrice(gasprice).maxGasPrice(), "gas is too high!");
        }
        _;
    }
}


// File contracts/BIFI/strategies/Stargate/StrategyStargateStaking.sol



pragma solidity ^0.6.0;









contract StrategyStargateStaking is StratManager, FeeManager, GasThrottler {
    using SafeERC20 for IERC20;
    using SafeMath for uint256;

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

    // Third party contracts
    address public chef;
    uint256 public poolId;
    address public stargateRouter;
    uint256 public routerPoolId;

    bool public harvestOnDeposit;
    uint256 public lastHarvest;
    string public pendingRewardsFunctionName;

    // Routes
    address[] public outputToNativeRoute;
    address[] public outputToLp0Route;
    address[] public outputToLp1Route;

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

    constructor(
        address _want,
        uint256 _poolId,
        uint256 _routerPoolId,
        address _chef,
        address _vault,
        address _unirouter,
        address _stargateRouter,
        address _keeper,
        address _strategist,
        address _beefyFeeRecipient,
        address[] memory _outputToNativeRoute,
        address[] memory _outputToLp0Route
    ) StratManager(_keeper, _strategist, _unirouter, _vault, _beefyFeeRecipient) public {
        want = _want;
        poolId = _poolId;
        routerPoolId = _routerPoolId;
        chef = _chef;
        stargateRouter = _stargateRouter;

        output = _outputToNativeRoute[0];
        native = _outputToNativeRoute[_outputToNativeRoute.length - 1];
        outputToNativeRoute = _outputToNativeRoute;

        // setup lp routing
        outputToLp0Route = _outputToLp0Route;
        lpToken0 = _outputToLp0Route[_outputToLp0Route.length - 1];

        _giveAllowances();
    }

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

        if (wantBal > 0) {
            IMasterChef(chef).deposit(poolId, wantBal);
            emit Deposit(balanceOf());
        }
    }

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

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

        if (wantBal < _amount) {
            IMasterChef(chef).withdraw(poolId, _amount.sub(wantBal));
            wantBal = IERC20(want).balanceOf(address(this));
        }

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

        if (tx.origin != owner() && !paused()) {
            uint256 withdrawalFeeAmount = wantBal.mul(withdrawalFee).div(WITHDRAWAL_MAX);
            wantBal = wantBal.sub(withdrawalFeeAmount);
        }

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

        emit Withdraw(balanceOf());
    }

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

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

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

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

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

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

    // performance fees
    function chargeFees(address callFeeRecipient) internal {
        uint256 toNative = IERC20(output).balanceOf(address(this)).mul(45).div(1000);
        IUniswapRouterETH(unirouter).swapExactTokensForTokens(toNative, 0, outputToNativeRoute, address(this), now);

        uint256 nativeBal = IERC20(native).balanceOf(address(this));

        uint256 callFeeAmount = nativeBal.mul(callFee).div(MAX_FEE);
        IERC20(native).safeTransfer(callFeeRecipient, callFeeAmount);

        uint256 beefyFeeAmount = nativeBal.mul(beefyFee).div(MAX_FEE);
        IERC20(native).safeTransfer(beefyFeeRecipient, beefyFeeAmount);

        uint256 strategistFeeAmount = nativeBal.mul(STRATEGIST_FEE).div(MAX_FEE);
        IERC20(native).safeTransfer(strategist, strategistFeeAmount);

        emit ChargedFees(callFeeAmount, beefyFeeAmount, strategistFeeAmount);
    }

    // Adds liquidity to AMM and gets more LP tokens.
    function addLiquidity() internal {
        uint256 outputBal = IERC20(output).balanceOf(address(this));

        if (lpToken0 != output) {
            IUniswapRouterETH(unirouter).swapExactTokensForTokens(outputBal, 0, outputToLp0Route, address(this), now);
        }

        uint256 lp0Bal = IERC20(lpToken0).balanceOf(address(this));
        IStargateRouter(stargateRouter).addLiquidity(routerPoolId, lp0Bal, address(this));
    }

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

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

    // it calculates how much 'want' the strategy has working in the farm.
    function balanceOfPool() public view returns (uint256) {
        (uint256 _amount,) = IMasterChef(chef).userInfo(poolId, address(this));
        return _amount;
    }

    function setPendingRewardsFunctionName(string calldata _pendingRewardsFunctionName) external onlyManager {
        pendingRewardsFunctionName = _pendingRewardsFunctionName;
    }

    // returns rewards unharvested
    function rewardsAvailable() public view returns (uint256) {
        string memory signature = StringUtils.concat(pendingRewardsFunctionName, "(uint256,address)");
        bytes memory result = Address.functionStaticCall(
            chef, 
            abi.encodeWithSignature(
                signature,
                poolId,
                address(this)
            )
        );  
        return abi.decode(result, (uint256));
    }

    // native reward amount for calling harvest
    function callReward() public view returns (uint256) {
        uint256 outputBal = rewardsAvailable();
        uint256 nativeOut;
        if (outputBal > 0) {
            uint256[] memory amountOut = IUniswapRouterETH(unirouter).getAmountsOut(outputBal, outputToNativeRoute);
            nativeOut = amountOut[amountOut.length -1];
        }

        return nativeOut.mul(45).div(1000).mul(callFee).div(MAX_FEE);
    }

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

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

    function setShouldGasThrottle(bool _shouldGasThrottle) external onlyManager {
        shouldGasThrottle = _shouldGasThrottle;
    }

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

        IMasterChef(chef).emergencyWithdraw(poolId);

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

    // pauses deposits and withdraws all funds from third party systems.
    function panic() public onlyManager {
        pause();
        IMasterChef(chef).emergencyWithdraw(poolId);
    }

    function pause() public onlyManager {
        _pause();

        _removeAllowances();
    }

    function unpause() external onlyManager {
        _unpause();

        _giveAllowances();

        deposit();
    }

    function _giveAllowances() internal {
        IERC20(want).safeApprove(chef, uint256(-1));
        IERC20(output).safeApprove(unirouter, uint256(-1));

        IERC20(lpToken0).safeApprove(stargateRouter, 0);
        IERC20(lpToken0).safeApprove(stargateRouter, uint256(-1));
    }

    function _removeAllowances() internal {
        IERC20(want).safeApprove(chef, 0);
        IERC20(output).safeApprove(unirouter, 0);
        IERC20(lpToken0).safeApprove(stargateRouter, 0);
    }

    function outputToNative() external view returns (address[] memory) {
        return outputToNativeRoute;
    }

    function outputToLp0() external view returns (address[] memory) {
        return outputToLp0Route;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_want","type":"address"},{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"uint256","name":"_routerPoolId","type":"uint256"},{"internalType":"address","name":"_chef","type":"address"},{"internalType":"address","name":"_vault","type":"address"},{"internalType":"address","name":"_unirouter","type":"address"},{"internalType":"address","name":"_stargateRouter","type":"address"},{"internalType":"address","name":"_keeper","type":"address"},{"internalType":"address","name":"_strategist","type":"address"},{"internalType":"address","name":"_beefyFeeRecipient","type":"address"},{"internalType":"address[]","name":"_outputToNativeRoute","type":"address[]"},{"internalType":"address[]","name":"_outputToLp0Route","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"callFees","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"beefyFees","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"strategistFees","type":"uint256"}],"name":"ChargedFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"harvester","type":"address"},{"indexed":false,"internalType":"uint256","name":"wantHarvested","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"StratHarvest","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"MAX_CALL_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STRATEGIST_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAWAL_FEE_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAWAL_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOfPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOfWant","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beefyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beefyFeeRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beforeDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"callFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"callReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chef","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasprice","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"callFeeRecipient","type":"address"}],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvestOnDeposit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"keeper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastHarvest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpToken0","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"managerHarvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"native","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"output","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"outputToLp0","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToLp0Route","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToLp1Route","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"outputToNative","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToNativeRoute","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"panic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingRewardsFunctionName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"retireStrat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"routerPoolId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_beefyFeeRecipient","type":"address"}],"name":"setBeefyFeeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setCallFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_harvestOnDeposit","type":"bool"}],"name":"setHarvestOnDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_keeper","type":"address"}],"name":"setKeeper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_pendingRewardsFunctionName","type":"string"}],"name":"setPendingRewardsFunctionName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_shouldGasThrottle","type":"bool"}],"name":"setShouldGasThrottle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_strategist","type":"address"}],"name":"setStrategist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_unirouter","type":"address"}],"name":"setUnirouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vault","type":"address"}],"name":"setVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setWithdrawalFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shouldGasThrottle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stargateRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"strategist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unirouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"want","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052600a600655606f60075561030960085560098054600160ff1990911617610100600160a81b03191674a43509661141f254f54d9a326e8ec851a0b95307001790553480156200005257600080fd5b5060405162003fb138038062003fb183398181016040526101808110156200007957600080fd5b815160208301516040808501516060860151608087015160a088015160c089015160e08a01516101008b01516101208c01516101408d01805199519b9d9a9c989b979a9699959894979396929591948301929184640100000000821115620000e057600080fd5b908301906020820185811115620000f657600080fd5b82518660208202830111640100000000821117156200011457600080fd5b82525081516020918201928201910280838360005b838110156200014357818101518382015260200162000129565b50505050905001604052602001805160405193929190846401000000008211156200016d57600080fd5b9083019060208201858111156200018357600080fd5b8251866020820283011164010000000082111715620001a157600080fd5b82525081516020918201928201910280838360005b83811015620001d0578181015183820152602001620001b6565b505050509050016040525050508484888a866000620001f46200049d60201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060008060146101000a81548160ff02191690831515021790555084600160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555083600260006101000a8154816001600160a01b0302191690836001600160a01b0316021790555082600360006101000a8154816001600160a01b0302191690836001600160a01b0316021790555081600460006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600560006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050505050508b600c60006101000a8154816001600160a01b0302191690836001600160a01b031602179055508a600f819055508960118190555088600e60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555085601060006101000a8154816001600160a01b0302191690836001600160a01b0316021790555081600081518110620003b157fe5b6020026020010151600b60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555081600183510381518110620003f057fe5b602090810291909101810151600a80546001600160a01b0319166001600160a01b0390921691909117905582516200042f916015919085019062000969565b5080516200044590601690602084019062000969565b50806001825103815181106200045757fe5b6020908102919091010151600d80546001600160a01b0319166001600160a01b039092169190911790556200048b620004a1565b505050505050505050505050620009f4565b3390565b600e54600c54620004ce916001600160a01b03918216911660001962000556602090811b6200214717901c565b600354600b54620004fb916001600160a01b03918216911660001962000556602090811b6200214717901c565b601054600d5462000527916001600160a01b039182169116600062000556602090811b6200214717901c565b601054600d5462000554916001600160a01b03918216911660001962000556602090811b6200214717901c565b565b801580620005e0575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b158015620005b057600080fd5b505afa158015620005c5573d6000803e3d6000fd5b505050506040513d6020811015620005dc57600080fd5b5051155b6200061d5760405162461bcd60e51b815260040180806020018281038252603681526020018062003f7b6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0390811663095ea7b360e01b17909152620006759185916200067a16565b505050565b6060620006d6826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166200073660201b6200225a179092919060201c565b8051909150156200067557808060200190516020811015620006f757600080fd5b5051620006755760405162461bcd60e51b815260040180806020018281038252602a81526020018062003f51602a913960400191505060405180910390fd5b606062000747848460008562000751565b90505b9392505050565b606082471015620007945760405162461bcd60e51b815260040180806020018281038252602681526020018062003f2b6026913960400191505060405180910390fd5b6200079f85620008b9565b620007f1576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310620008325780518252601f19909201916020918201910162000811565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811462000896576040519150601f19603f3d011682016040523d82523d6000602084013e6200089b565b606091505b509092509050620008ae828286620008bf565b979650505050505050565b3b151590565b60608315620008d05750816200074a565b825115620008e15782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200092d57818101518382015260200162000913565b50505050905090810190601f1680156200095b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b828054828255906000526020600020908101928215620009c1579160200282015b82811115620009c157825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200098a565b50620009cf929150620009d3565b5090565b5b80821115620009cf5780546001600160a01b0319168155600101620009d4565b6135278062000a046000396000f3fe608060405234801561001057600080fd5b50600436106103a45760003560e01c80638912cb8b116101e9578063c1a3d44c1161010f578063e7a7250a116100ad578063fad4675e1161007c578063fad4675e1461082a578063fb61778714610849578063fbfa77cf14610851578063fd63a88714610859576103a4565b8063e7a7250a146107ec578063f1a392da146107f4578063f20eaeb8146107fc578063f2fde38b14610804576103a4565b8063d3102589116100e9578063d3102589146107ae578063d801d946146107b6578063d92f3d73146107be578063dfbdc437146107e4576103a4565b8063c1a3d44c14610778578063c7b9d53014610780578063d0e30db0146107a6576103a4565b8063989ef4e311610187578063ac1e502511610156578063ac1e50251461072e578063aced16611461074b578063bc063e1a14610753578063be12a9781461075b576103a4565b8063989ef4e3146106f05780639f8b5da1146106f8578063a68833e514610700578063a9e56f3c14610726576103a4565b80638e145459116101c35780638e145459146106d05780638fcb2be6146106d857806390321e1a146106e057806397fd323d146106e8576103a4565b80638912cb8b146106b85780638bc7e8c4146106c05780638da5cb5b146106c8576103a4565b80633f4ba83a116102ce5780635ee167c01161026c578063722713f71161023b578063722713f71461067a578063748747e6146106825780637d38ca65146106a85780638456cb59146106b0576103a4565b80635ee167c01461063c5780636817031b146106445780636ec232d31461066a578063715018a614610672576103a4565b806354518b1a116102a857806354518b1a146105a2578063573fef0a146105aa57806359e79138146105b25780635c975abb14610620576103a4565b80633f4ba83a1461058a5780634641257d146105925780634700d3051461059a576103a4565b80631fe4a686116103465780632ad5a53f116103155780632ad5a53f146105405780632e1a7d4d1461054857806336c6cf21146105655780633e0dc34e14610582576103a4565b80631fe4a68614610496578063257ae0de1461049e57806326465826146104a6578063277e5cfd146104c3576103a4565b806311b0b42d1161038257806311b0b42d1461040a57806313e120b11461042e5780631f1fcd51146104865780631fc8bc5d1461048e576103a4565b80630e5c011e146103a95780630e8fbb5a146103d157806311588086146103f0575b600080fd5b6103cf600480360360208110156103bf57600080fd5b50356001600160a01b0316610876565b005b6103cf600480360360208110156103e757600080fd5b50351515610971565b6103f8610a0f565b60408051918252519081900360200190f35b610412610a96565b604080516001600160a01b039092168252519081900360200190f35b610436610aa5565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561047257818101518382015260200161045a565b505050509050019250505060405180910390f35b610412610b07565b610412610b16565b610412610b25565b610412610b34565b6103cf600480360360208110156104bc57600080fd5b5035610b43565b6104cb610bfd565b6040805160208082528351818301528351919283929083019185019080838360005b838110156105055781810151838201526020016104ed565b50505050905090810190601f1680156105325780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103f8610c8b565b6103cf6004803603602081101561055e57600080fd5b5035610c90565b6104126004803603602081101561057b57600080fd5b5035610f16565b6103f8610f3d565b6103cf610f43565b6103cf610fca565b6103cf6110c2565b6103f86111a1565b6103cf6111a7565b6103cf600480360360208110156105c857600080fd5b810190602081018135600160201b8111156105e257600080fd5b8201836020820111156105f457600080fd5b803590602001918460018302840111600160201b8311171561061557600080fd5b5090925090506111fa565b610628611278565b604080519115158252519081900360200190f35b610412611288565b6103cf6004803603602081101561065a57600080fd5b50356001600160a01b0316611297565b61041261131b565b6103cf61132f565b6103f86113db565b6103cf6004803603602081101561069857600080fd5b50356001600160a01b03166113fb565b6103f861148a565b6103cf61148f565b61062861150c565b6103f8611515565b61041261151b565b61041261152a565b6103f8611539565b6103f861153f565b6103f8611545565b61043661170e565b61062861176e565b6103cf6004803603602081101561071657600080fd5b50356001600160a01b0316611777565b6104126117fb565b6103cf6004803603602081101561074457600080fd5b503561180a565b6104126118bb565b6103f86118ca565b6104126004803603602081101561077157600080fd5b50356118d0565b6103f86118dd565b6103cf6004803603602081101561079657600080fd5b50356001600160a01b0316611959565b6103cf6119c8565b6103f8611b40565b6103cf611b46565b6103cf600480360360208110156107d457600080fd5b50356001600160a01b0316611bb3565b6103f8611c37565b6103f8611c3c565b6103f8611de3565b610412611de9565b6103cf6004803603602081101561081a57600080fd5b50356001600160a01b0316611df8565b6103cf6004803603602081101561084057600080fd5b50351515611efa565b6103cf611f7a565b61041261212b565b6104126004803603602081101561086f57600080fd5b503561213a565b60095460ff16801561089d575060095461089d9061010090046001600160a01b0316612273565b1561096557600960019054906101000a90046001600160a01b03166001600160a01b0316633de39c116040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156108f257600080fd5b505af1158015610906573d6000803e3d6000fd5b505050506040513d602081101561091c57600080fd5b50513a1115610965576040805162461bcd60e51b815260206004820152601060248201526f67617320697320746f6f20686967682160801b604482015290519081900360640190fd5b61096e81612279565b50565b61097961151b565b6001600160a01b0316336001600160a01b031614806109a257506001546001600160a01b031633145b6109de576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6012805460ff1916821515179081905560ff1615610a0557610a00600061180a565b61096e565b61096e600a61180a565b600e54600f54604080516393f1a40b60e01b81526004810192909252306024830152805160009384936001600160a01b03909116926393f1a40b92604480840193829003018186803b158015610a6457600080fd5b505afa158015610a78573d6000803e3d6000fd5b505050506040513d6040811015610a8e57600080fd5b505191505090565b600a546001600160a01b031681565b60606015805480602002602001604051908101604052809291908181526020018280548015610afd57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610adf575b5050505050905090565b600c546001600160a01b031681565b600e546001600160a01b031681565b6002546001600160a01b031681565b6003546001600160a01b031681565b610b4b61151b565b6001600160a01b0316336001600160a01b03161480610b7457506001546001600160a01b031633145b610bb0576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b606f811115610bef576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600781905561037803600855565b6014805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610c835780601f10610c5857610100808354040283529160200191610c83565b820191906000526020600020905b815481529060010190602001808311610c6657829003601f168201915b505050505081565b606f81565b6004546001600160a01b03163314610cd8576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610d2357600080fd5b505afa158015610d37573d6000803e3d6000fd5b505050506040513d6020811015610d4d57600080fd5b5051905081811015610e4a57600e54600f546001600160a01b039091169063441a3e7090610d7b8585612427565b6040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b158015610db857600080fd5b505af1158015610dcc573d6000803e3d6000fd5b5050600c54604080516370a0823160e01b815230600482015290516001600160a01b0390921693506370a082319250602480820192602092909190829003018186803b158015610e1b57600080fd5b505afa158015610e2f573d6000803e3d6000fd5b505050506040513d6020811015610e4557600080fd5b505190505b81811115610e555750805b610e5d61151b565b6001600160a01b0316326001600160a01b031614158015610e835750610e81611278565b155b15610ebb576000610eab612710610ea56006548561248990919063ffffffff16565b906124e2565b9050610eb78282612427565b9150505b600454600c54610ed8916001600160a01b03918216911683612549565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d610f016113db565b60408051918252519081900360200190a15050565b60168181548110610f2357fe5b6000918252602090912001546001600160a01b0316905081565b600f5481565b610f4b61151b565b6001600160a01b0316336001600160a01b03161480610f7457506001546001600160a01b031633145b610fb0576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610fb861259b565b610fc061263e565b610fc86119c8565b565b60095460ff168015610ff15750600954610ff19061010090046001600160a01b0316612273565b156110b957600960019054906101000a90046001600160a01b03166001600160a01b0316633de39c116040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561104657600080fd5b505af115801561105a573d6000803e3d6000fd5b505050506040513d602081101561107057600080fd5b50513a11156110b9576040805162461bcd60e51b815260206004820152601060248201526f67617320697320746f6f20686967682160801b604482015290519081900360640190fd5b610fc832612279565b6110ca61151b565b6001600160a01b0316336001600160a01b031614806110f357506001546001600160a01b031633145b61112f576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b61113761148f565b600e54600f5460408051632989754760e11b81526004810192909252516001600160a01b0390921691635312ea8e9160248082019260009290919082900301818387803b15801561118757600080fd5b505af115801561119b573d6000803e3d6000fd5b50505050565b61271081565b60125460ff1615610fc8576004546001600160a01b031633146110b9576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b61120261151b565b6001600160a01b0316336001600160a01b0316148061122b57506001546001600160a01b031633145b611267576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b61127360148383613328565b505050565b600054600160a01b900460ff1690565b600d546001600160a01b031681565b61129f6126b9565b6001600160a01b03166112b061151b565b6001600160a01b0316146112f9576040805162461bcd60e51b8152602060048201819052602482015260008051602061344e833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b60095461010090046001600160a01b031681565b6113376126b9565b6001600160a01b031661134861151b565b6001600160a01b031614611391576040805162461bcd60e51b8152602060048201819052602482015260008051602061344e833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60006113f66113e8610a0f565b6113f06118dd565b906126bd565b905090565b61140361151b565b6001600160a01b0316336001600160a01b0316148061142c57506001546001600160a01b031633145b611468576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b607081565b61149761151b565b6001600160a01b0316336001600160a01b031614806114c057506001546001600160a01b031633145b6114fc576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b611504612717565b610fc86127a0565b60125460ff1681565b60065481565b6000546001600160a01b031690565b6005546001600160a01b031681565b60115481565b60075481565b600080611550611c3c565b9050600081156116db576003546040805163d06ca61f60e01b8152600481018581526024820192835260158054604484018190526060956001600160a01b03169463d06ca61f94899492606490910190849080156115d757602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116115b9575b5050935050505060006040518083038186803b1580156115f657600080fd5b505afa15801561160a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561163357600080fd5b8101908080516040519392919084600160201b82111561165257600080fd5b90830190602082018581111561166757600080fd5b82518660208202830111600160201b8211171561168357600080fd5b82525081516020918201928201910280838360005b838110156116b0578181015183820152602001611698565b505050509050016040525050509050806001825103815181106116cf57fe5b60200260200101519150505b6117076103e8610ea56007546117016103e8610ea5602d8861248990919063ffffffff16565b90612489565b9250505090565b60606016805480602002602001604051908101604052809291908181526020018280548015610afd576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610adf575050505050905090565b60095460ff1681565b61177f6126b9565b6001600160a01b031661179061151b565b6001600160a01b0316146117d9576040805162461bcd60e51b8152602060048201819052602482015260008051602061344e833981519152604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6010546001600160a01b031681565b61181261151b565b6001600160a01b0316336001600160a01b0316148061183b57506001546001600160a01b031633145b611877576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b60328111156118b6576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600655565b6001546001600160a01b031681565b6103e881565b60158181548110610f2357fe5b600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561192857600080fd5b505afa15801561193c573d6000803e3d6000fd5b505050506040513d602081101561195257600080fd5b5051905090565b6002546001600160a01b031633146119a6576040805162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6119d0611278565b15611a15576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611a6057600080fd5b505afa158015611a74573d6000803e3d6000fd5b505050506040513d6020811015611a8a57600080fd5b50519050801561096e57600e54600f5460408051631c57762b60e31b8152600481019290925260248201849052516001600160a01b039092169163e2bbb1589160448082019260009290919082900301818387803b158015611aeb57600080fd5b505af1158015611aff573d6000803e3d6000fd5b505050507f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e38426611b2c6113db565b60408051918252519081900360200190a150565b60085481565b611b4e61151b565b6001600160a01b0316336001600160a01b03161480611b7757506001546001600160a01b031633145b6110b9576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b611bbb6126b9565b6001600160a01b0316611bcc61151b565b6001600160a01b031614611c15576040805162461bcd60e51b8152602060048201819052602482015260008051602061344e833981519152604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b603281565b60148054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152600093606093611cff93830182828015611ccb5780601f10611ca057610100808354040283529160200191611ccb565b820191906000526020600020905b815481529060010190602001808311611cae57829003601f168201915b5050505050604051806040016040528060118152602001702875696e743235362c616464726573732960781b8152506127fa565b600e54600f5460408051602481019290925230604480840191909152815180840390910181526064909201908190528351939450606093611dc3936001600160a01b031692918691819060208401908083835b60208310611d715780518252601f199092019160209182019101611d52565b51815160209384036101000a600019018019909216911617905260405191909301819003902091850180516001600160e01b03199093166001600160e01b0390931692909217909152506128b5915050565b9050808060200190516020811015611dda57600080fd5b50519250505090565b60135481565b600b546001600160a01b031681565b611e006126b9565b6001600160a01b0316611e1161151b565b6001600160a01b031614611e5a576040805162461bcd60e51b8152602060048201819052602482015260008051602061344e833981519152604482015290519081900360640190fd5b6001600160a01b038116611e9f5760405162461bcd60e51b81526004018080602001828103825260268152602001806133bc6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611f0261151b565b6001600160a01b0316336001600160a01b03161480611f2b57506001546001600160a01b031633145b611f67576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6009805460ff1916911515919091179055565b6004546001600160a01b03163314611fc2576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600e54600f5460408051632989754760e11b81526004810192909252516001600160a01b0390921691635312ea8e9160248082019260009290919082900301818387803b15801561201257600080fd5b505af1158015612026573d6000803e3d6000fd5b5050600c54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b15801561207757600080fd5b505afa15801561208b573d6000803e3d6000fd5b505050506040513d60208110156120a157600080fd5b5051600c54600480546040805163a9059cbb60e01b81526001600160a01b039283169381019390935260248301859052519394509091169163a9059cbb916044808201926020929091908290030181600087803b15801561210157600080fd5b505af1158015612115573d6000803e3d6000fd5b505050506040513d602081101561127357600080fd5b6004546001600160a01b031681565b60178181548110610f2357fe5b8015806121cd575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561219f57600080fd5b505afa1580156121b3573d6000803e3d6000fd5b505050506040513d60208110156121c957600080fd5b5051155b6122085760405162461bcd60e51b81526004018080602001828103825260368152602001806134bc6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790526112739084906128da565b6060612269848460008561298b565b90505b9392505050565b3b151590565b612281611278565b156122c6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600e54600f5460408051631c57762b60e31b8152600481019290925260006024830181905290516001600160a01b039093169263e2bbb15892604480820193929182900301818387803b15801561231c57600080fd5b505af1158015612330573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b15801561238157600080fd5b505afa158015612395573d6000803e3d6000fd5b505050506040513d60208110156123ab57600080fd5b505190508015612423576123be82612ae7565b6123c6612e75565b60006123d06118dd565b90506123da6119c8565b42601355337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f92410826124096113db565b6040805192835260208301919091528051918290030190a2505b5050565b60008282111561247e576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b508082035b92915050565b60008261249857506000612483565b828202828482816124a557fe5b041461226c5760405162461bcd60e51b815260040180806020018281038252602181526020018061342d6021913960400191505060405180910390fd5b6000808211612538576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161254157fe5b049392505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526112739084906128da565b6125a3611278565b6125eb576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126216126b9565b604080516001600160a01b039092168252519081900360200190a1565b600e54600c5461265d916001600160a01b039182169116600019612147565b600354600b5461267c916001600160a01b039182169116600019612147565b601054600d5461269a916001600160a01b0391821691166000612147565b601054600d54610fc8916001600160a01b039182169116600019612147565b3390565b60008282018381101561226c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b61271f611278565b15612764576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586126216126b9565b600e54600c546127be916001600160a01b0391821691166000612147565b600354600b546127dc916001600160a01b0391821691166000612147565b601054600d54610fc8916001600160a01b0391821691166000612147565b606082826040516020018083805190602001908083835b602083106128305780518252601f199092019160209182019101612811565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106128785780518252601f199092019160209182019101612859565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052905092915050565b606061226c838360405180606001604052806025815260200161340860259139613181565b606061292f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661225a9092919063ffffffff16565b8051909150156112735780806020019051602081101561294e57600080fd5b50516112735760405162461bcd60e51b815260040180806020018281038252602a815260200180613492602a913960400191505060405180910390fd5b6060824710156129cc5760405162461bcd60e51b81526004018080602001828103825260268152602001806133e26026913960400191505060405180910390fd5b6129d585612273565b612a26576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310612a655780518252601f199092019160209182019101612a46565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612ac7576040519150601f19603f3d011682016040523d82523d6000602084013e612acc565b606091505b5091509150612adc828286613284565b979650505050505050565b600b54604080516370a0823160e01b81523060048201529051600092612b76926103e892610ea592602d926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015612b4457600080fd5b505afa158015612b58573d6000803e3d6000fd5b505050506040513d6020811015612b6e57600080fd5b505190612489565b9050600360009054906101000a90046001600160a01b03166001600160a01b03166338ed1739826000601530426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b031681526020018381526020018281038252858181548152602001915080548015612c2257602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612c04575b50509650505050505050600060405180830381600087803b158015612c4657600080fd5b505af1158015612c5a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612c8357600080fd5b8101908080516040519392919084600160201b821115612ca257600080fd5b908301906020820185811115612cb757600080fd5b82518660208202830111600160201b82111715612cd357600080fd5b82525081516020918201928201910280838360005b83811015612d00578181015183820152602001612ce8565b50505050919091016040818152600a546370a0823160e01b83523060048401529051600097506001600160a01b0390911695506370a08231945060248083019450602093509091829003018186803b158015612d5b57600080fd5b505afa158015612d6f573d6000803e3d6000fd5b505050506040513d6020811015612d8557600080fd5b5051600754909150600090612da3906103e890610ea5908590612489565b600a54909150612dbd906001600160a01b03168583612549565b6000612dda6103e8610ea56008548661248990919063ffffffff16565b600554600a54919250612dfa916001600160a01b03908116911683612549565b6000612e0d6103e8610ea5866070612489565b600254600a54919250612e2d916001600160a01b03908116911683612549565b604080518481526020810184905280820183905290517fd255b592c7f268a73e534da5219a60ff911b4cf6daae21c7d20527dd657bd99a9181900360600190a1505050505050565b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015612ec057600080fd5b505afa158015612ed4573d6000803e3d6000fd5b505050506040513d6020811015612eea57600080fd5b5051600b54600d549192506001600160a01b0391821691161461308e576003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526016805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c49091019086908015612fa157602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612f83575b50509650505050505050600060405180830381600087803b158015612fc557600080fd5b505af1158015612fd9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561300257600080fd5b8101908080516040519392919084600160201b82111561302157600080fd5b90830190602082018581111561303657600080fd5b82518660208202830111600160201b8211171561305257600080fd5b82525081516020918201928201910280838360005b8381101561307f578181015183820152602001613067565b50505050905001604052505050505b600d54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156130d957600080fd5b505afa1580156130ed573d6000803e3d6000fd5b505050506040513d602081101561310357600080fd5b5051601054601154604080516321ec87bf60e21b8152600481019290925260248201849052306044830152519293506001600160a01b03909116916387b21efc9160648082019260009290919082900301818387803b15801561316557600080fd5b505af1158015613179573d6000803e3d6000fd5b505050505050565b606061318c84612273565b6131c75760405162461bcd60e51b815260040180806020018281038252602481526020018061346e6024913960400191505060405180910390fd5b60006060856001600160a01b0316856040518082805190602001908083835b602083106132055780518252601f1990920191602091820191016131e6565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855afa9150503d8060008114613265576040519150601f19603f3d011682016040523d82523d6000602084013e61326a565b606091505b509150915061327a828286613284565b9695505050505050565b6060831561329357508161226c565b8251156132a35782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156132ed5781810151838201526020016132d5565b50505050905090810190601f16801561331a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106133695782800160ff19823516178555613396565b82800160010185558215613396579182015b8281111561339657823582559160200191906001019061337b565b506133a29291506133a6565b5090565b5b808211156133a257600081556001016133a756fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c416464726573733a206c6f772d6c6576656c207374617469632063616c6c206661696c6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572416464726573733a207374617469632063616c6c20746f206e6f6e2d636f6e74726163745361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a264697066735822122049dc75540b482675c7d67554a8b7ebdb358de493dad6742a4068c010e09a769a64736f6c634300060c0033416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c5361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e636500000000000000000000000012edea9cd262006cc3c4e77c90d2cd2dd4b1eb9700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000224d8fd7ab6ad4c6eb4611ce56ef35dec2277f0300000000000000000000000007ec069dc86d5ca2eb3c705c7030525a62e6e78c000000000000000000000000f491e7b69e4244ad4002bc14e878a34207e38c29000000000000000000000000af5191b0de278c7286d6c7cc6ab6bb8a73ba2cd6000000000000000000000000340465d9d2ebde78f15a3870884757584f97abb4000000000000000000000000494c13b1729b95a1df383b88340c414e34a57b45000000000000000000000000502c107ae28d300fdaede1cbd7ee8096c1ab4a3c0000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000030000000000000000000000002f6f07cdcf3588944bf4c42ac74ff24bf56e759000000000000000000000000004068da6c83afcfa0e13ba15a6696662335d5b7500000000000000000000000021be370d5312f44cb42ce377bc9b8a0cef1a4c8300000000000000000000000000000000000000000000000000000000000000020000000000000000000000002f6f07cdcf3588944bf4c42ac74ff24bf56e759000000000000000000000000004068da6c83afcfa0e13ba15a6696662335d5b75

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106103a45760003560e01c80638912cb8b116101e9578063c1a3d44c1161010f578063e7a7250a116100ad578063fad4675e1161007c578063fad4675e1461082a578063fb61778714610849578063fbfa77cf14610851578063fd63a88714610859576103a4565b8063e7a7250a146107ec578063f1a392da146107f4578063f20eaeb8146107fc578063f2fde38b14610804576103a4565b8063d3102589116100e9578063d3102589146107ae578063d801d946146107b6578063d92f3d73146107be578063dfbdc437146107e4576103a4565b8063c1a3d44c14610778578063c7b9d53014610780578063d0e30db0146107a6576103a4565b8063989ef4e311610187578063ac1e502511610156578063ac1e50251461072e578063aced16611461074b578063bc063e1a14610753578063be12a9781461075b576103a4565b8063989ef4e3146106f05780639f8b5da1146106f8578063a68833e514610700578063a9e56f3c14610726576103a4565b80638e145459116101c35780638e145459146106d05780638fcb2be6146106d857806390321e1a146106e057806397fd323d146106e8576103a4565b80638912cb8b146106b85780638bc7e8c4146106c05780638da5cb5b146106c8576103a4565b80633f4ba83a116102ce5780635ee167c01161026c578063722713f71161023b578063722713f71461067a578063748747e6146106825780637d38ca65146106a85780638456cb59146106b0576103a4565b80635ee167c01461063c5780636817031b146106445780636ec232d31461066a578063715018a614610672576103a4565b806354518b1a116102a857806354518b1a146105a2578063573fef0a146105aa57806359e79138146105b25780635c975abb14610620576103a4565b80633f4ba83a1461058a5780634641257d146105925780634700d3051461059a576103a4565b80631fe4a686116103465780632ad5a53f116103155780632ad5a53f146105405780632e1a7d4d1461054857806336c6cf21146105655780633e0dc34e14610582576103a4565b80631fe4a68614610496578063257ae0de1461049e57806326465826146104a6578063277e5cfd146104c3576103a4565b806311b0b42d1161038257806311b0b42d1461040a57806313e120b11461042e5780631f1fcd51146104865780631fc8bc5d1461048e576103a4565b80630e5c011e146103a95780630e8fbb5a146103d157806311588086146103f0575b600080fd5b6103cf600480360360208110156103bf57600080fd5b50356001600160a01b0316610876565b005b6103cf600480360360208110156103e757600080fd5b50351515610971565b6103f8610a0f565b60408051918252519081900360200190f35b610412610a96565b604080516001600160a01b039092168252519081900360200190f35b610436610aa5565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561047257818101518382015260200161045a565b505050509050019250505060405180910390f35b610412610b07565b610412610b16565b610412610b25565b610412610b34565b6103cf600480360360208110156104bc57600080fd5b5035610b43565b6104cb610bfd565b6040805160208082528351818301528351919283929083019185019080838360005b838110156105055781810151838201526020016104ed565b50505050905090810190601f1680156105325780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103f8610c8b565b6103cf6004803603602081101561055e57600080fd5b5035610c90565b6104126004803603602081101561057b57600080fd5b5035610f16565b6103f8610f3d565b6103cf610f43565b6103cf610fca565b6103cf6110c2565b6103f86111a1565b6103cf6111a7565b6103cf600480360360208110156105c857600080fd5b810190602081018135600160201b8111156105e257600080fd5b8201836020820111156105f457600080fd5b803590602001918460018302840111600160201b8311171561061557600080fd5b5090925090506111fa565b610628611278565b604080519115158252519081900360200190f35b610412611288565b6103cf6004803603602081101561065a57600080fd5b50356001600160a01b0316611297565b61041261131b565b6103cf61132f565b6103f86113db565b6103cf6004803603602081101561069857600080fd5b50356001600160a01b03166113fb565b6103f861148a565b6103cf61148f565b61062861150c565b6103f8611515565b61041261151b565b61041261152a565b6103f8611539565b6103f861153f565b6103f8611545565b61043661170e565b61062861176e565b6103cf6004803603602081101561071657600080fd5b50356001600160a01b0316611777565b6104126117fb565b6103cf6004803603602081101561074457600080fd5b503561180a565b6104126118bb565b6103f86118ca565b6104126004803603602081101561077157600080fd5b50356118d0565b6103f86118dd565b6103cf6004803603602081101561079657600080fd5b50356001600160a01b0316611959565b6103cf6119c8565b6103f8611b40565b6103cf611b46565b6103cf600480360360208110156107d457600080fd5b50356001600160a01b0316611bb3565b6103f8611c37565b6103f8611c3c565b6103f8611de3565b610412611de9565b6103cf6004803603602081101561081a57600080fd5b50356001600160a01b0316611df8565b6103cf6004803603602081101561084057600080fd5b50351515611efa565b6103cf611f7a565b61041261212b565b6104126004803603602081101561086f57600080fd5b503561213a565b60095460ff16801561089d575060095461089d9061010090046001600160a01b0316612273565b1561096557600960019054906101000a90046001600160a01b03166001600160a01b0316633de39c116040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156108f257600080fd5b505af1158015610906573d6000803e3d6000fd5b505050506040513d602081101561091c57600080fd5b50513a1115610965576040805162461bcd60e51b815260206004820152601060248201526f67617320697320746f6f20686967682160801b604482015290519081900360640190fd5b61096e81612279565b50565b61097961151b565b6001600160a01b0316336001600160a01b031614806109a257506001546001600160a01b031633145b6109de576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6012805460ff1916821515179081905560ff1615610a0557610a00600061180a565b61096e565b61096e600a61180a565b600e54600f54604080516393f1a40b60e01b81526004810192909252306024830152805160009384936001600160a01b03909116926393f1a40b92604480840193829003018186803b158015610a6457600080fd5b505afa158015610a78573d6000803e3d6000fd5b505050506040513d6040811015610a8e57600080fd5b505191505090565b600a546001600160a01b031681565b60606015805480602002602001604051908101604052809291908181526020018280548015610afd57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610adf575b5050505050905090565b600c546001600160a01b031681565b600e546001600160a01b031681565b6002546001600160a01b031681565b6003546001600160a01b031681565b610b4b61151b565b6001600160a01b0316336001600160a01b03161480610b7457506001546001600160a01b031633145b610bb0576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b606f811115610bef576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600781905561037803600855565b6014805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610c835780601f10610c5857610100808354040283529160200191610c83565b820191906000526020600020905b815481529060010190602001808311610c6657829003601f168201915b505050505081565b606f81565b6004546001600160a01b03163314610cd8576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610d2357600080fd5b505afa158015610d37573d6000803e3d6000fd5b505050506040513d6020811015610d4d57600080fd5b5051905081811015610e4a57600e54600f546001600160a01b039091169063441a3e7090610d7b8585612427565b6040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b158015610db857600080fd5b505af1158015610dcc573d6000803e3d6000fd5b5050600c54604080516370a0823160e01b815230600482015290516001600160a01b0390921693506370a082319250602480820192602092909190829003018186803b158015610e1b57600080fd5b505afa158015610e2f573d6000803e3d6000fd5b505050506040513d6020811015610e4557600080fd5b505190505b81811115610e555750805b610e5d61151b565b6001600160a01b0316326001600160a01b031614158015610e835750610e81611278565b155b15610ebb576000610eab612710610ea56006548561248990919063ffffffff16565b906124e2565b9050610eb78282612427565b9150505b600454600c54610ed8916001600160a01b03918216911683612549565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d610f016113db565b60408051918252519081900360200190a15050565b60168181548110610f2357fe5b6000918252602090912001546001600160a01b0316905081565b600f5481565b610f4b61151b565b6001600160a01b0316336001600160a01b03161480610f7457506001546001600160a01b031633145b610fb0576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610fb861259b565b610fc061263e565b610fc86119c8565b565b60095460ff168015610ff15750600954610ff19061010090046001600160a01b0316612273565b156110b957600960019054906101000a90046001600160a01b03166001600160a01b0316633de39c116040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561104657600080fd5b505af115801561105a573d6000803e3d6000fd5b505050506040513d602081101561107057600080fd5b50513a11156110b9576040805162461bcd60e51b815260206004820152601060248201526f67617320697320746f6f20686967682160801b604482015290519081900360640190fd5b610fc832612279565b6110ca61151b565b6001600160a01b0316336001600160a01b031614806110f357506001546001600160a01b031633145b61112f576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b61113761148f565b600e54600f5460408051632989754760e11b81526004810192909252516001600160a01b0390921691635312ea8e9160248082019260009290919082900301818387803b15801561118757600080fd5b505af115801561119b573d6000803e3d6000fd5b50505050565b61271081565b60125460ff1615610fc8576004546001600160a01b031633146110b9576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b61120261151b565b6001600160a01b0316336001600160a01b0316148061122b57506001546001600160a01b031633145b611267576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b61127360148383613328565b505050565b600054600160a01b900460ff1690565b600d546001600160a01b031681565b61129f6126b9565b6001600160a01b03166112b061151b565b6001600160a01b0316146112f9576040805162461bcd60e51b8152602060048201819052602482015260008051602061344e833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b60095461010090046001600160a01b031681565b6113376126b9565b6001600160a01b031661134861151b565b6001600160a01b031614611391576040805162461bcd60e51b8152602060048201819052602482015260008051602061344e833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60006113f66113e8610a0f565b6113f06118dd565b906126bd565b905090565b61140361151b565b6001600160a01b0316336001600160a01b0316148061142c57506001546001600160a01b031633145b611468576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b607081565b61149761151b565b6001600160a01b0316336001600160a01b031614806114c057506001546001600160a01b031633145b6114fc576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b611504612717565b610fc86127a0565b60125460ff1681565b60065481565b6000546001600160a01b031690565b6005546001600160a01b031681565b60115481565b60075481565b600080611550611c3c565b9050600081156116db576003546040805163d06ca61f60e01b8152600481018581526024820192835260158054604484018190526060956001600160a01b03169463d06ca61f94899492606490910190849080156115d757602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116115b9575b5050935050505060006040518083038186803b1580156115f657600080fd5b505afa15801561160a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561163357600080fd5b8101908080516040519392919084600160201b82111561165257600080fd5b90830190602082018581111561166757600080fd5b82518660208202830111600160201b8211171561168357600080fd5b82525081516020918201928201910280838360005b838110156116b0578181015183820152602001611698565b505050509050016040525050509050806001825103815181106116cf57fe5b60200260200101519150505b6117076103e8610ea56007546117016103e8610ea5602d8861248990919063ffffffff16565b90612489565b9250505090565b60606016805480602002602001604051908101604052809291908181526020018280548015610afd576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610adf575050505050905090565b60095460ff1681565b61177f6126b9565b6001600160a01b031661179061151b565b6001600160a01b0316146117d9576040805162461bcd60e51b8152602060048201819052602482015260008051602061344e833981519152604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6010546001600160a01b031681565b61181261151b565b6001600160a01b0316336001600160a01b0316148061183b57506001546001600160a01b031633145b611877576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b60328111156118b6576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600655565b6001546001600160a01b031681565b6103e881565b60158181548110610f2357fe5b600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561192857600080fd5b505afa15801561193c573d6000803e3d6000fd5b505050506040513d602081101561195257600080fd5b5051905090565b6002546001600160a01b031633146119a6576040805162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6119d0611278565b15611a15576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611a6057600080fd5b505afa158015611a74573d6000803e3d6000fd5b505050506040513d6020811015611a8a57600080fd5b50519050801561096e57600e54600f5460408051631c57762b60e31b8152600481019290925260248201849052516001600160a01b039092169163e2bbb1589160448082019260009290919082900301818387803b158015611aeb57600080fd5b505af1158015611aff573d6000803e3d6000fd5b505050507f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e38426611b2c6113db565b60408051918252519081900360200190a150565b60085481565b611b4e61151b565b6001600160a01b0316336001600160a01b03161480611b7757506001546001600160a01b031633145b6110b9576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b611bbb6126b9565b6001600160a01b0316611bcc61151b565b6001600160a01b031614611c15576040805162461bcd60e51b8152602060048201819052602482015260008051602061344e833981519152604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b603281565b60148054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152600093606093611cff93830182828015611ccb5780601f10611ca057610100808354040283529160200191611ccb565b820191906000526020600020905b815481529060010190602001808311611cae57829003601f168201915b5050505050604051806040016040528060118152602001702875696e743235362c616464726573732960781b8152506127fa565b600e54600f5460408051602481019290925230604480840191909152815180840390910181526064909201908190528351939450606093611dc3936001600160a01b031692918691819060208401908083835b60208310611d715780518252601f199092019160209182019101611d52565b51815160209384036101000a600019018019909216911617905260405191909301819003902091850180516001600160e01b03199093166001600160e01b0390931692909217909152506128b5915050565b9050808060200190516020811015611dda57600080fd5b50519250505090565b60135481565b600b546001600160a01b031681565b611e006126b9565b6001600160a01b0316611e1161151b565b6001600160a01b031614611e5a576040805162461bcd60e51b8152602060048201819052602482015260008051602061344e833981519152604482015290519081900360640190fd5b6001600160a01b038116611e9f5760405162461bcd60e51b81526004018080602001828103825260268152602001806133bc6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611f0261151b565b6001600160a01b0316336001600160a01b03161480611f2b57506001546001600160a01b031633145b611f67576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6009805460ff1916911515919091179055565b6004546001600160a01b03163314611fc2576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600e54600f5460408051632989754760e11b81526004810192909252516001600160a01b0390921691635312ea8e9160248082019260009290919082900301818387803b15801561201257600080fd5b505af1158015612026573d6000803e3d6000fd5b5050600c54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b15801561207757600080fd5b505afa15801561208b573d6000803e3d6000fd5b505050506040513d60208110156120a157600080fd5b5051600c54600480546040805163a9059cbb60e01b81526001600160a01b039283169381019390935260248301859052519394509091169163a9059cbb916044808201926020929091908290030181600087803b15801561210157600080fd5b505af1158015612115573d6000803e3d6000fd5b505050506040513d602081101561127357600080fd5b6004546001600160a01b031681565b60178181548110610f2357fe5b8015806121cd575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561219f57600080fd5b505afa1580156121b3573d6000803e3d6000fd5b505050506040513d60208110156121c957600080fd5b5051155b6122085760405162461bcd60e51b81526004018080602001828103825260368152602001806134bc6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790526112739084906128da565b6060612269848460008561298b565b90505b9392505050565b3b151590565b612281611278565b156122c6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600e54600f5460408051631c57762b60e31b8152600481019290925260006024830181905290516001600160a01b039093169263e2bbb15892604480820193929182900301818387803b15801561231c57600080fd5b505af1158015612330573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b15801561238157600080fd5b505afa158015612395573d6000803e3d6000fd5b505050506040513d60208110156123ab57600080fd5b505190508015612423576123be82612ae7565b6123c6612e75565b60006123d06118dd565b90506123da6119c8565b42601355337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f92410826124096113db565b6040805192835260208301919091528051918290030190a2505b5050565b60008282111561247e576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b508082035b92915050565b60008261249857506000612483565b828202828482816124a557fe5b041461226c5760405162461bcd60e51b815260040180806020018281038252602181526020018061342d6021913960400191505060405180910390fd5b6000808211612538576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161254157fe5b049392505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526112739084906128da565b6125a3611278565b6125eb576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126216126b9565b604080516001600160a01b039092168252519081900360200190a1565b600e54600c5461265d916001600160a01b039182169116600019612147565b600354600b5461267c916001600160a01b039182169116600019612147565b601054600d5461269a916001600160a01b0391821691166000612147565b601054600d54610fc8916001600160a01b039182169116600019612147565b3390565b60008282018381101561226c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b61271f611278565b15612764576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586126216126b9565b600e54600c546127be916001600160a01b0391821691166000612147565b600354600b546127dc916001600160a01b0391821691166000612147565b601054600d54610fc8916001600160a01b0391821691166000612147565b606082826040516020018083805190602001908083835b602083106128305780518252601f199092019160209182019101612811565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106128785780518252601f199092019160209182019101612859565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052905092915050565b606061226c838360405180606001604052806025815260200161340860259139613181565b606061292f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661225a9092919063ffffffff16565b8051909150156112735780806020019051602081101561294e57600080fd5b50516112735760405162461bcd60e51b815260040180806020018281038252602a815260200180613492602a913960400191505060405180910390fd5b6060824710156129cc5760405162461bcd60e51b81526004018080602001828103825260268152602001806133e26026913960400191505060405180910390fd5b6129d585612273565b612a26576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310612a655780518252601f199092019160209182019101612a46565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612ac7576040519150601f19603f3d011682016040523d82523d6000602084013e612acc565b606091505b5091509150612adc828286613284565b979650505050505050565b600b54604080516370a0823160e01b81523060048201529051600092612b76926103e892610ea592602d926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b158015612b4457600080fd5b505afa158015612b58573d6000803e3d6000fd5b505050506040513d6020811015612b6e57600080fd5b505190612489565b9050600360009054906101000a90046001600160a01b03166001600160a01b03166338ed1739826000601530426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b031681526020018381526020018281038252858181548152602001915080548015612c2257602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612c04575b50509650505050505050600060405180830381600087803b158015612c4657600080fd5b505af1158015612c5a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612c8357600080fd5b8101908080516040519392919084600160201b821115612ca257600080fd5b908301906020820185811115612cb757600080fd5b82518660208202830111600160201b82111715612cd357600080fd5b82525081516020918201928201910280838360005b83811015612d00578181015183820152602001612ce8565b50505050919091016040818152600a546370a0823160e01b83523060048401529051600097506001600160a01b0390911695506370a08231945060248083019450602093509091829003018186803b158015612d5b57600080fd5b505afa158015612d6f573d6000803e3d6000fd5b505050506040513d6020811015612d8557600080fd5b5051600754909150600090612da3906103e890610ea5908590612489565b600a54909150612dbd906001600160a01b03168583612549565b6000612dda6103e8610ea56008548661248990919063ffffffff16565b600554600a54919250612dfa916001600160a01b03908116911683612549565b6000612e0d6103e8610ea5866070612489565b600254600a54919250612e2d916001600160a01b03908116911683612549565b604080518481526020810184905280820183905290517fd255b592c7f268a73e534da5219a60ff911b4cf6daae21c7d20527dd657bd99a9181900360600190a1505050505050565b600b54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015612ec057600080fd5b505afa158015612ed4573d6000803e3d6000fd5b505050506040513d6020811015612eea57600080fd5b5051600b54600d549192506001600160a01b0391821691161461308e576003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526016805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c49091019086908015612fa157602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612f83575b50509650505050505050600060405180830381600087803b158015612fc557600080fd5b505af1158015612fd9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561300257600080fd5b8101908080516040519392919084600160201b82111561302157600080fd5b90830190602082018581111561303657600080fd5b82518660208202830111600160201b8211171561305257600080fd5b82525081516020918201928201910280838360005b8381101561307f578181015183820152602001613067565b50505050905001604052505050505b600d54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156130d957600080fd5b505afa1580156130ed573d6000803e3d6000fd5b505050506040513d602081101561310357600080fd5b5051601054601154604080516321ec87bf60e21b8152600481019290925260248201849052306044830152519293506001600160a01b03909116916387b21efc9160648082019260009290919082900301818387803b15801561316557600080fd5b505af1158015613179573d6000803e3d6000fd5b505050505050565b606061318c84612273565b6131c75760405162461bcd60e51b815260040180806020018281038252602481526020018061346e6024913960400191505060405180910390fd5b60006060856001600160a01b0316856040518082805190602001908083835b602083106132055780518252601f1990920191602091820191016131e6565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855afa9150503d8060008114613265576040519150601f19603f3d011682016040523d82523d6000602084013e61326a565b606091505b509150915061327a828286613284565b9695505050505050565b6060831561329357508161226c565b8251156132a35782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156132ed5781810151838201526020016132d5565b50505050905090810190601f16801561331a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106133695782800160ff19823516178555613396565b82800160010185558215613396579182015b8281111561339657823582559160200191906001019061337b565b506133a29291506133a6565b5090565b5b808211156133a257600081556001016133a756fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c416464726573733a206c6f772d6c6576656c207374617469632063616c6c206661696c6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572416464726573733a207374617469632063616c6c20746f206e6f6e2d636f6e74726163745361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a264697066735822122049dc75540b482675c7d67554a8b7ebdb358de493dad6742a4068c010e09a769a64736f6c634300060c0033

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

00000000000000000000000012edea9cd262006cc3c4e77c90d2cd2dd4b1eb9700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000224d8fd7ab6ad4c6eb4611ce56ef35dec2277f0300000000000000000000000007ec069dc86d5ca2eb3c705c7030525a62e6e78c000000000000000000000000f491e7b69e4244ad4002bc14e878a34207e38c29000000000000000000000000af5191b0de278c7286d6c7cc6ab6bb8a73ba2cd6000000000000000000000000340465d9d2ebde78f15a3870884757584f97abb4000000000000000000000000494c13b1729b95a1df383b88340c414e34a57b45000000000000000000000000502c107ae28d300fdaede1cbd7ee8096c1ab4a3c0000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000030000000000000000000000002f6f07cdcf3588944bf4c42ac74ff24bf56e759000000000000000000000000004068da6c83afcfa0e13ba15a6696662335d5b7500000000000000000000000021be370d5312f44cb42ce377bc9b8a0cef1a4c8300000000000000000000000000000000000000000000000000000000000000020000000000000000000000002f6f07cdcf3588944bf4c42ac74ff24bf56e759000000000000000000000000004068da6c83afcfa0e13ba15a6696662335d5b75

-----Decoded View---------------
Arg [0] : _want (address): 0x12edeA9cd262006cC3C4E77c90d2CD2DD4b1eb97
Arg [1] : _poolId (uint256): 0
Arg [2] : _routerPoolId (uint256): 1
Arg [3] : _chef (address): 0x224D8Fd7aB6AD4c6eb4611Ce56EF35Dec2277F03
Arg [4] : _vault (address): 0x07EC069DC86D5ca2eB3c705C7030525A62e6E78C
Arg [5] : _unirouter (address): 0xF491e7B69E4244ad4002BC14e878a34207E38c29
Arg [6] : _stargateRouter (address): 0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6
Arg [7] : _keeper (address): 0x340465d9D2EbDE78F15a3870884757584F97aBB4
Arg [8] : _strategist (address): 0x494c13B1729B95a1df383B88340c414E34a57B45
Arg [9] : _beefyFeeRecipient (address): 0x502C107ae28d300fDAedE1CBd7ee8096C1ab4a3C
Arg [10] : _outputToNativeRoute (address[]): 0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590,0x04068DA6C83AFCFA0e13ba15A6696662335D5B75,0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83
Arg [11] : _outputToLp0Route (address[]): 0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590,0x04068DA6C83AFCFA0e13ba15A6696662335D5B75

-----Encoded View---------------
19 Constructor Arguments found :
Arg [0] : 00000000000000000000000012edea9cd262006cc3c4e77c90d2cd2dd4b1eb97
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 000000000000000000000000224d8fd7ab6ad4c6eb4611ce56ef35dec2277f03
Arg [4] : 00000000000000000000000007ec069dc86d5ca2eb3c705c7030525a62e6e78c
Arg [5] : 000000000000000000000000f491e7b69e4244ad4002bc14e878a34207e38c29
Arg [6] : 000000000000000000000000af5191b0de278c7286d6c7cc6ab6bb8a73ba2cd6
Arg [7] : 000000000000000000000000340465d9d2ebde78f15a3870884757584f97abb4
Arg [8] : 000000000000000000000000494c13b1729b95a1df383b88340c414e34a57b45
Arg [9] : 000000000000000000000000502c107ae28d300fdaede1cbd7ee8096c1ab4a3c
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [13] : 0000000000000000000000002f6f07cdcf3588944bf4c42ac74ff24bf56e7590
Arg [14] : 00000000000000000000000004068da6c83afcfa0e13ba15a6696662335d5b75
Arg [15] : 00000000000000000000000021be370d5312f44cb42ce377bc9b8a0cef1a4c83
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [17] : 0000000000000000000000002f6f07cdcf3588944bf4c42ac74ff24bf56e7590
Arg [18] : 00000000000000000000000004068da6c83afcfa0e13ba15a6696662335d5b75


Deployed Bytecode Sourcemap

46320:9161:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49574:117;;;;;;;;;;;;;;;;-1:-1:-1;49574:117:0;-1:-1:-1;;;;;49574:117:0;;:::i;:::-;;53548:262;;;;;;;;;;;;;;;;-1:-1:-1;53548:262:0;;;;:::i;52209:169::-;;;:::i;:::-;;;;;;;;;;;;;;;;46490:21;;;:::i;:::-;;;;-1:-1:-1;;;;;46490:21:0;;;;;;;;;;;;;;55252:112;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46546:19;;;:::i;46634:::-;;;:::i;42005:25::-;;;:::i;42037:24::-;;;:::i;44934:200::-;;;;;;;;;;;;;;;;-1:-1:-1;44934:200:0;;:::i;46828:40::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44646:39;;;:::i;48550:732::-;;;;;;;;;;;;;;;;-1:-1:-1;48550:732:0;;:::i;46935:33::-;;;;;;;;;;;;;;;;-1:-1:-1;46935:33:0;;:::i;46660:21::-;;;:::i;54621:121::-;;;:::i;49480:86::-;;;:::i;54394:116::-;;;:::i;44745:43::-;;;:::i;49290:182::-;;;:::i;52386:180::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;52386:180:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;52386:180:0;;;;;;;;;;-1:-1:-1;52386:180:0;;-1:-1:-1;52386:180:0;-1:-1:-1;52386:180:0;:::i;40292:86::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;46572:23;;;:::i;43865:86::-;;;;;;;;;;;;;;;;-1:-1:-1;43865:86:0;-1:-1:-1;;;;;43865:86:0;;:::i;45892:77::-;;;:::i;38643:148::-;;;:::i;51827:113::-;;;:::i;43137:92::-;;;;;;;;;;;;;;;;-1:-1:-1;43137:92:0;-1:-1:-1;;;;;43137:92:0;;:::i;44556:41::-;;;:::i;54518:95::-;;;:::i;46760:28::-;;;:::i;44797:30::-;;;:::i;37992:87::-;;;:::i;42095:32::-;;;:::i;46724:27::-;;;:::i;44836:25::-;;;:::i;53114:426::-;;;:::i;55372:106::-;;;:::i;45847:36::-;;;:::i;44086:134::-;;;;;;;;;;;;;;;;-1:-1:-1;44086:134:0;-1:-1:-1;;;;;44086:134:0;;:::i;46688:29::-;;;:::i;45142:154::-;;;;;;;;;;;;;;;;-1:-1:-1;45142:154:0;;:::i;41977:21::-;;;:::i;44604:35::-;;;:::i;46892:36::-;;;;;;;;;;;;;;;;-1:-1:-1;46892:36:0;;:::i;52007:118::-;;;:::i;43374:155::-;;;;;;;;;;;;;;;;-1:-1:-1;43374:155:0;-1:-1:-1;;;;;43374:155:0;;:::i;48290:252::-;;;:::i;44868:57::-;;;:::i;49699:85::-;;;:::i;43661:102::-;;;;;;;;;;;;;;;;-1:-1:-1;43661:102:0;-1:-1:-1;;;;;43661:102:0;;:::i;44694:44::-;;;:::i;52610:447::-;;;:::i;46795:26::-;;;:::i;46518:21::-;;;:::i;38946:244::-;;;;;;;;;;;;;;;;-1:-1:-1;38946:244:0;-1:-1:-1;;;;;38946:244:0;;:::i;53818:133::-;;;;;;;;;;;;;;;;-1:-1:-1;53818:133:0;;;;:::i;54051:261::-;;;:::i;42068:20::-;;;:::i;46975:33::-;;;;;;;;;;;;;;;;-1:-1:-1;46975:33:0;;:::i;49574:117::-;46016:17;;;;:49;;;;-1:-1:-1;46056:8:0;;46037:28;;46056:8;;;-1:-1:-1;;;;;46056:8:0;46037:18;:28::i;:::-;46012:159;;;46115:8;;;;;;;;;-1:-1:-1;;;;;46115:8:0;-1:-1:-1;;;;;46105:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46105:33:0;46090:11;:48;;46082:77;;;;;-1:-1:-1;;;46082:77:0;;;;;;;;;;;;-1:-1:-1;;;46082:77:0;;;;;;;;;;;;;;;49657:26:::1;49666:16;49657:8;:26::i;:::-;49574:117:::0;:::o;53548:262::-;42954:7;:5;:7::i;:::-;-1:-1:-1;;;;;42940:21:0;:10;-1:-1:-1;;;;;42940:21:0;;:45;;;-1:-1:-1;42979:6:0;;-1:-1:-1;;;;;42979:6:0;42965:10;:20;42940:45;42932:66;;;;;-1:-1:-1;;;42932:66:0;;;;;;;;;;;;-1:-1:-1;;;42932:66:0;;;;;;;;;;;;;;;53633:16:::1;:36:::0;;-1:-1:-1;;53633:36:0::1;::::0;::::1;;;::::0;;;;::::1;53686:16;53682:121;;;53719:19;53736:1;53719:16;:19::i;:::-;53682:121;;;53771:20;53788:2;53771:16;:20::i;52209:169::-:0;52308:4;;52323:6;;52296:49;;;-1:-1:-1;;;52296:49:0;;;;;;;;;52339:4;52296:49;;;;;;52255:7;;;;-1:-1:-1;;;;;52308:4:0;;;;52296:26;;:49;;;;;;;;;;52308:4;52296:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52296:49:0;;-1:-1:-1;;52209:169:0;:::o;46490:21::-;;;-1:-1:-1;;;;;46490:21:0;;:::o;55252:112::-;55301:16;55337:19;55330:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55330:26:0;;;;;;;;;;;;;;;;;;;;;;;55252:112;:::o;46546:19::-;;;-1:-1:-1;;;;;46546:19:0;;:::o;46634:::-;;;-1:-1:-1;;;;;46634:19:0;;:::o;42005:25::-;;;-1:-1:-1;;;;;42005:25:0;;:::o;42037:24::-;;;-1:-1:-1;;;;;42037:24:0;;:::o;44934:200::-;42954:7;:5;:7::i;:::-;-1:-1:-1;;;;;42940:21:0;:10;-1:-1:-1;;;;;42940:21:0;;:45;;;-1:-1:-1;42979:6:0;;-1:-1:-1;;;;;42979:6:0;42965:10;:20;42940:45;42932:66;;;;;-1:-1:-1;;;42932:66:0;;;;;;;;;;;;-1:-1:-1;;;42932:66:0;;;;;;;;;;;;;;;44682:3:::1;45006:4;:20;;44998:37;;;::::0;;-1:-1:-1;;;44998:37:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;44998:37:0;;;;;;;;;;;;;::::1;;45056:7;:14:::0;;;45092:24;:34:::1;45081:8;:45:::0;44934:200::o;46828:40::-;;;;;;;;;;;;;;;-1:-1:-1;;46828:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44646:39::-;44682:3;44646:39;:::o;48550:732::-;48627:5;;-1:-1:-1;;;;;48627:5:0;48613:10;:19;48605:38;;;;;-1:-1:-1;;;48605:38:0;;;;;;;;;;;;-1:-1:-1;;;48605:38:0;;;;;;;;;;;;;;;48681:4;;48674:37;;;-1:-1:-1;;;48674:37:0;;48705:4;48674:37;;;;;;48656:15;;-1:-1:-1;;;;;48681:4:0;;48674:22;;:37;;;;;;;;;;;;;;48681:4;48674:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48674:37:0;;-1:-1:-1;48728:17:0;;;48724:168;;;48774:4;;48789:6;;-1:-1:-1;;;;;48774:4:0;;;;48762:26;;48797:20;:7;48809;48797:11;:20::i;:::-;48762:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48850:4:0;;48843:37;;;-1:-1:-1;;;48843:37:0;;48874:4;48843:37;;;;;;-1:-1:-1;;;;;48850:4:0;;;;-1:-1:-1;48843:22:0;;-1:-1:-1;48843:37:0;;;;;;;;;;;;;;;48850:4;48843:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48843:37:0;;-1:-1:-1;48724:168:0;48918:7;48908;:17;48904:67;;;-1:-1:-1;48952:7:0;48904:67;49000:7;:5;:7::i;:::-;-1:-1:-1;;;;;48987:20:0;:9;-1:-1:-1;;;;;48987:20:0;;;:33;;;;;49012:8;:6;:8::i;:::-;49011:9;48987:33;48983:199;;;49037:27;49067:46;44783:5;49067:26;49079:13;;49067:7;:11;;:26;;;;:::i;:::-;:30;;:46::i;:::-;49037:76;-1:-1:-1;49138:32:0;:7;49037:76;49138:11;:32::i;:::-;49128:42;;48983:199;;49220:5;;49201:4;;49194:41;;-1:-1:-1;;;;;49201:4:0;;;;49220:5;49227:7;49194:25;:41::i;:::-;49253:21;49262:11;:9;:11::i;:::-;49253:21;;;;;;;;;;;;;;;48550:732;;:::o;46935:33::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46935:33:0;;-1:-1:-1;46935:33:0;:::o;46660:21::-;;;;:::o;54621:121::-;42954:7;:5;:7::i;:::-;-1:-1:-1;;;;;42940:21:0;:10;-1:-1:-1;;;;;42940:21:0;;:45;;;-1:-1:-1;42979:6:0;;-1:-1:-1;;;;;42979:6:0;42965:10;:20;42940:45;42932:66;;;;;-1:-1:-1;;;42932:66:0;;;;;;;;;;;;-1:-1:-1;;;42932:66:0;;;;;;;;;;;;;;;54672:10:::1;:8;:10::i;:::-;54695:17;:15;:17::i;:::-;54725:9;:7;:9::i;:::-;54621:121::o:0;49480:86::-;46016:17;;;;:49;;;;-1:-1:-1;46056:8:0;;46037:28;;46056:8;;;-1:-1:-1;;;;;46056:8:0;46037:18;:28::i;:::-;46012:159;;;46115:8;;;;;;;;;-1:-1:-1;;;;;46115:8:0;-1:-1:-1;;;;;46105:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46105:33:0;46090:11;:48;;46082:77;;;;;-1:-1:-1;;;46082:77:0;;;;;;;;;;;;-1:-1:-1;;;46082:77:0;;;;;;;;;;;;;;;49539:19:::1;49548:9;49539:8;:19::i;54394:116::-:0;42954:7;:5;:7::i;:::-;-1:-1:-1;;;;;42940:21:0;:10;-1:-1:-1;;;;;42940:21:0;;:45;;;-1:-1:-1;42979:6:0;;-1:-1:-1;;;;;42979:6:0;42965:10;:20;42940:45;42932:66;;;;;-1:-1:-1;;;42932:66:0;;;;;;;;;;;;-1:-1:-1;;;42932:66:0;;;;;;;;;;;;;;;54441:7:::1;:5;:7::i;:::-;54471:4;::::0;54495:6:::1;::::0;54459:43:::1;::::0;;-1:-1:-1;;;54459:43:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;54471:4:0;;::::1;::::0;54459:35:::1;::::0;:43;;;;;54471:4:::1;::::0;54459:43;;;;;;;;54471:4;;54459:43;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;54394:116::o:0;44745:43::-;44783:5;44745:43;:::o;49290:182::-;49348:16;;;;49344:121;;;49403:5;;-1:-1:-1;;;;;49403:5:0;49389:10;:19;49381:38;;;;;-1:-1:-1;;;49381:38:0;;;;;;;;;;;;-1:-1:-1;;;49381:38:0;;;;;;;;;;;;;;52386:180;42954:7;:5;:7::i;:::-;-1:-1:-1;;;;;42940:21:0;:10;-1:-1:-1;;;;;42940:21:0;;:45;;;-1:-1:-1;42979:6:0;;-1:-1:-1;;;;;42979:6:0;42965:10;:20;42940:45;42932:66;;;;;-1:-1:-1;;;42932:66:0;;;;;;;;;;;;-1:-1:-1;;;42932:66:0;;;;;;;;;;;;;;;52502:56:::1;:26;52531:27:::0;;52502:56:::1;:::i;:::-;;52386:180:::0;;:::o;40292:86::-;40339:4;40363:7;-1:-1:-1;;;40363:7:0;;;;;40292:86::o;46572:23::-;;;-1:-1:-1;;;;;46572:23:0;;:::o;43865:86::-;38223:12;:10;:12::i;:::-;-1:-1:-1;;;;;38212:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38212:23:0;;38204:68;;;;;-1:-1:-1;;;38204:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38204:68:0;;;;;;;;;;;;;;;43929:5:::1;:14:::0;;-1:-1:-1;;;;;;43929:14:0::1;-1:-1:-1::0;;;;;43929:14:0;;;::::1;::::0;;;::::1;::::0;;43865:86::o;45892:77::-;;;;;;-1:-1:-1;;;;;45892:77:0;;:::o;38643:148::-;38223:12;:10;:12::i;:::-;-1:-1:-1;;;;;38212:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38212:23:0;;38204:68;;;;;-1:-1:-1;;;38204:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38204:68:0;;;;;;;;;;;;;;;38750:1:::1;38734:6:::0;;38713:40:::1;::::0;-1:-1:-1;;;;;38734:6:0;;::::1;::::0;38713:40:::1;::::0;38750:1;;38713:40:::1;38781:1;38764:19:::0;;-1:-1:-1;;;;;;38764:19:0::1;::::0;;38643:148::o;51827:113::-;51869:7;51896:36;51916:15;:13;:15::i;:::-;51896;:13;:15::i;:::-;:19;;:36::i;:::-;51889:43;;51827:113;:::o;43137:92::-;42954:7;:5;:7::i;:::-;-1:-1:-1;;;;;42940:21:0;:10;-1:-1:-1;;;;;42940:21:0;;:45;;;-1:-1:-1;42979:6:0;;-1:-1:-1;;;;;42979:6:0;42965:10;:20;42940:45;42932:66;;;;;-1:-1:-1;;;42932:66:0;;;;;;;;;;;;-1:-1:-1;;;42932:66:0;;;;;;;;;;;;;;;43205:6:::1;:16:::0;;-1:-1:-1;;;;;;43205:16:0::1;-1:-1:-1::0;;;;;43205:16:0;;;::::1;::::0;;;::::1;::::0;;43137:92::o;44556:41::-;44594:3;44556:41;:::o;54518:95::-;42954:7;:5;:7::i;:::-;-1:-1:-1;;;;;42940:21:0;:10;-1:-1:-1;;;;;42940:21:0;;:45;;;-1:-1:-1;42979:6:0;;-1:-1:-1;;;;;42979:6:0;42965:10;:20;42940:45;42932:66;;;;;-1:-1:-1;;;42932:66:0;;;;;;;;;;;;-1:-1:-1;;;42932:66:0;;;;;;;;;;;;;;;54565:8:::1;:6;:8::i;:::-;54586:19;:17;:19::i;46760:28::-:0;;;;;;:::o;44797:30::-;;;;:::o;37992:87::-;38038:7;38065:6;-1:-1:-1;;;;;38065:6:0;37992:87;:::o;42095:32::-;;;-1:-1:-1;;;;;42095:32:0;;:::o;46724:27::-;;;;:::o;44836:25::-;;;;:::o;53114:426::-;53157:7;53177:17;53197:18;:16;:18::i;:::-;53177:38;-1:-1:-1;53226:17:0;53258:13;;53254:206;;53335:9;;53317:74;;;-1:-1:-1;;;53317:74:0;;;;;;;;;;;;;;53371:19;53317:74;;;;;;;;53288:26;;-1:-1:-1;;;;;53335:9:0;;53317:42;;53360:9;;53317:74;;;;;;53371:19;;53317:74;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53317:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53317:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53317:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53317:74:0;;;;;;;;;;;;-1:-1:-1;53317:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53288:103;;53418:9;53446:1;53428:9;:16;:19;53418:30;;;;;;;;;;;;;;53406:42;;53254:206;;53479:53;44635:4;53479:40;53511:7;;53479:27;53501:4;53479:17;53493:2;53479:9;:13;;:17;;;;:::i;:27::-;:31;;:40::i;:53::-;53472:60;;;;53114:426;:::o;55372:106::-;55418:16;55454;55447:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55447:23:0;;;;;;;;;;;;;;;;;;;;;;55372:106;:::o;45847:36::-;;;;;;:::o;44086:134::-;38223:12;:10;:12::i;:::-;-1:-1:-1;;;;;38212:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38212:23:0;;38204:68;;;;;-1:-1:-1;;;38204:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38204:68:0;;;;;;;;;;;;;;;44174:17:::1;:38:::0;;-1:-1:-1;;;;;;44174:38:0::1;-1:-1:-1::0;;;;;44174:38:0;;;::::1;::::0;;;::::1;::::0;;44086:134::o;46688:29::-;;;-1:-1:-1;;;;;46688:29:0;;:::o;45142:154::-;42954:7;:5;:7::i;:::-;-1:-1:-1;;;;;42940:21:0;:10;-1:-1:-1;;;;;42940:21:0;;:45;;;-1:-1:-1;42979:6:0;;-1:-1:-1;;;;;42979:6:0;42965:10;:20;42940:45;42932:66;;;;;-1:-1:-1;;;42932:66:0;;;;;;;;;;;;-1:-1:-1;;;42932:66:0;;;;;;;;;;;;;;;44736:2:::1;45220:4;:26;;45212:43;;;::::0;;-1:-1:-1;;;45212:43:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;45212:43:0;;;;;;;;;;;;;::::1;;45268:13;:20:::0;45142:154::o;41977:21::-;;;-1:-1:-1;;;;;41977:21:0;;:::o;44604:35::-;44635:4;44604:35;:::o;46892:36::-;;;;;;;;;;52007:118;52087:4;;52080:37;;;-1:-1:-1;;;52080:37:0;;52111:4;52080:37;;;;;;52053:7;;-1:-1:-1;;;;;52087:4:0;;52080:22;;:37;;;;;;;;;;;;;;52087:4;52080:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52080:37:0;;-1:-1:-1;52007:118:0;:::o;43374:155::-;43460:10;;-1:-1:-1;;;;;43460:10:0;43446;:24;43438:48;;;;;-1:-1:-1;;;43438:48:0;;;;;;;;;;;;-1:-1:-1;;;43438:48:0;;;;;;;;;;;;;;;43497:10;:24;;-1:-1:-1;;;;;;43497:24:0;-1:-1:-1;;;;;43497:24:0;;;;;;;;;;43374:155::o;48290:252::-;40618:8;:6;:8::i;:::-;40617:9;40609:38;;;;;-1:-1:-1;;;40609:38:0;;;;;;;;;;;;-1:-1:-1;;;40609:38:0;;;;;;;;;;;;;;;48366:4:::1;::::0;48359:37:::1;::::0;;-1:-1:-1;;;48359:37:0;;48390:4:::1;48359:37;::::0;::::1;::::0;;;48341:15:::1;::::0;-1:-1:-1;;;;;48366:4:0::1;::::0;48359:22:::1;::::0;:37;;;;;::::1;::::0;;;;;;;;48366:4;48359:37;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;48359:37:0;;-1:-1:-1;48413:11:0;;48409:126:::1;;48453:4;::::0;48467:6:::1;::::0;48441:42:::1;::::0;;-1:-1:-1;;;48441:42:0;;::::1;::::0;::::1;::::0;;;;;;;;;;;-1:-1:-1;;;;;48453:4:0;;::::1;::::0;48441:25:::1;::::0;:42;;;;;48453:4:::1;::::0;48441:42;;;;;;;;48453:4;;48441:42;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;48503:20;48511:11;:9;:11::i;:::-;48503:20;::::0;;;;;;;;;;::::1;::::0;;::::1;40658:1;48290:252::o:0;44868:57::-;;;;:::o;49699:85::-;42954:7;:5;:7::i;:::-;-1:-1:-1;;;;;42940:21:0;:10;-1:-1:-1;;;;;42940:21:0;;:45;;;-1:-1:-1;42979:6:0;;-1:-1:-1;;;;;42979:6:0;42965:10;:20;42940:45;42932:66;;;;;-1:-1:-1;;;42932:66:0;;;;;;;;;;;;-1:-1:-1;;;42932:66:0;;;;;;;;;;;;;;43661:102;38223:12;:10;:12::i;:::-;-1:-1:-1;;;;;38212:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38212:23:0;;38204:68;;;;;-1:-1:-1;;;38204:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38204:68:0;;;;;;;;;;;;;;;43733:9:::1;:22:::0;;-1:-1:-1;;;;;;43733:22:0::1;-1:-1:-1::0;;;;;43733:22:0;;;::::1;::::0;;;::::1;::::0;;43661:102::o;44694:44::-;44736:2;44694:44;:::o;52610:447::-;52724:26;52705:67;;;;;;;;-1:-1:-1;;52705:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52659:7;;52679:23;;52705:67;;;;52724:26;52705:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;52705:67:0;;;:18;:67::i;:::-;52846:4;;52936:6;;52866:123;;;;;;;;;;52969:4;52866:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;52679:93;;-1:-1:-1;52783:19:0;;52805:195;;-1:-1:-1;;;;;52846:4:0;;52866:123;52679:93;;52866:123;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52866:123:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52866:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;52866:123:0;;;-1:-1:-1;;;;;52866:123:0;;;;;;;;;;-1:-1:-1;52805:26:0;;-1:-1:-1;;52805:195:0:i;:::-;52783:217;;53031:6;53020:29;;;;;;;;;;;;;;;-1:-1:-1;53020:29:0;;-1:-1:-1;;;52610:447:0;:::o;46795:26::-;;;;:::o;46518:21::-;;;-1:-1:-1;;;;;46518:21:0;;:::o;38946:244::-;38223:12;:10;:12::i;:::-;-1:-1:-1;;;;;38212:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38212:23:0;;38204:68;;;;;-1:-1:-1;;;38204:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38204:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;39035:22:0;::::1;39027:73;;;;-1:-1:-1::0;;;39027:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39137:6;::::0;;39116:38:::1;::::0;-1:-1:-1;;;;;39116:38:0;;::::1;::::0;39137:6;::::1;::::0;39116:38:::1;::::0;::::1;39165:6;:17:::0;;-1:-1:-1;;;;;;39165:17:0::1;-1:-1:-1::0;;;;;39165:17:0;;;::::1;::::0;;;::::1;::::0;;38946:244::o;53818:133::-;42954:7;:5;:7::i;:::-;-1:-1:-1;;;;;42940:21:0;:10;-1:-1:-1;;;;;42940:21:0;;:45;;;-1:-1:-1;42979:6:0;;-1:-1:-1;;;;;42979:6:0;42965:10;:20;42940:45;42932:66;;;;;-1:-1:-1;;;42932:66:0;;;;;;;;;;;;-1:-1:-1;;;42932:66:0;;;;;;;;;;;;;;;53905:17:::1;:38:::0;;-1:-1:-1;;53905:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53818:133::o;54051:261::-;54116:5;;-1:-1:-1;;;;;54116:5:0;54102:10;:19;54094:38;;;;;-1:-1:-1;;;54094:38:0;;;;;;;;;;;;-1:-1:-1;;;54094:38:0;;;;;;;;;;;;;;;54157:4;;54181:6;;54145:43;;;-1:-1:-1;;;54145:43:0;;;;;;;;;;-1:-1:-1;;;;;54157:4:0;;;;54145:35;;:43;;;;;54157:4;;54145:43;;;;;;;;54157:4;;54145:43;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54226:4:0;;54219:37;;;-1:-1:-1;;;54219:37:0;;54250:4;54219:37;;;;;;54201:15;;-1:-1:-1;;;;;;54226:4:0;;;;-1:-1:-1;54219:22:0;;:37;;;;;;;;;;;;;;54226:4;54219:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54219:37:0;54274:4;;54289:5;;;54267:37;;;-1:-1:-1;;;54267:37:0;;-1:-1:-1;;;;;54289:5:0;;;54267:37;;;;;;;;;;;;;;54219;;-1:-1:-1;54274:4:0;;;;54267:21;;:37;;;;;54219;;54267;;;;;;;;54274:4;;54267:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42068:20;;;-1:-1:-1;;;;;42068:20:0;;:::o;46975:33::-;;;;;;;;;;31741:622;32111:10;;;32110:62;;-1:-1:-1;32127:39:0;;;-1:-1:-1;;;32127:39:0;;32151:4;32127:39;;;;-1:-1:-1;;;;;32127:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32127:39:0;:44;32110:62;32102:152;;;;-1:-1:-1;;;32102:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32292:62;;;-1:-1:-1;;;;;32292:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32292:62:0;-1:-1:-1;;;32292:62:0;;;32265:90;;32285:5;;32265:19;:90::i;26069:195::-;26172:12;26204:52;26226:6;26234:4;26240:1;26243:12;26204:21;:52::i;:::-;26197:59;;26069:195;;;;;;:::o;23151:422::-;23518:20;23557:8;;;23151:422::o;49847:501::-;40618:8;:6;:8::i;:::-;40617:9;40609:38;;;;;-1:-1:-1;;;40609:38:0;;;;;;;;;;;;-1:-1:-1;;;40609:38:0;;;;;;;;;;;;;;;49937:4:::1;::::0;49951:6:::1;::::0;49925:36:::1;::::0;;-1:-1:-1;;;49925:36:0;;::::1;::::0;::::1;::::0;;;;49937:4:::1;49925:36:::0;;;;;;;;-1:-1:-1;;;;;49937:4:0;;::::1;::::0;49925:25:::1;::::0;:36;;;;;49937:4;49925:36;;;;;;49937:4;;49925:36;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;49999:6:0::1;::::0;49992:39:::1;::::0;;-1:-1:-1;;;49992:39:0;;50025:4:::1;49992:39;::::0;::::1;::::0;;;49972:17:::1;::::0;-1:-1:-1;;;;;;49999:6:0;;::::1;::::0;-1:-1:-1;49992:24:0::1;::::0;:39;;;;;::::1;::::0;;;;;;;;49999:6;49992:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;49992:39:0;;-1:-1:-1;50046:13:0;;50042:299:::1;;50076:28;50087:16;50076:10;:28::i;:::-;50119:14;:12;:14::i;:::-;50148:21;50172:15;:13;:15::i;:::-;50148:39;;50202:9;:7;:9::i;:::-;50242:15;50228:11;:29:::0;50290:10:::1;50277:52;50302:13:::0;50317:11:::1;:9;:11::i;:::-;50277:52;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;;::::1;50042:299;;40658:1;49847:501:::0;:::o;7117:158::-;7175:7;7208:1;7203;:6;;7195:49;;;;;-1:-1:-1;;;7195:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7262:5:0;;;7117:158;;;;;:::o;7534:220::-;7592:7;7616:6;7612:20;;-1:-1:-1;7631:1:0;7624:8;;7612:20;7655:5;;;7659:1;7655;:5;:1;7679:5;;;;;:10;7671:56;;;;-1:-1:-1;;;7671:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8232:153;8290:7;8322:1;8318;:5;8310:44;;;;;-1:-1:-1;;;8310:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8376:1;8372;:5;;;;;;;8232:153;-1:-1:-1;;;8232:153:0:o;31082:177::-;31192:58;;;-1:-1:-1;;;;;31192:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31192:58:0;-1:-1:-1;;;31192:58:0;;;31165:86;;31185:5;;31165:19;:86::i;41351:120::-;40895:8;:6;:8::i;:::-;40887:41;;;;;-1:-1:-1;;;40887:41:0;;;;;;;;;;;;-1:-1:-1;;;40887:41:0;;;;;;;;;;;;;;;41420:5:::1;41410:15:::0;;-1:-1:-1;;;;41410:15:0::1;::::0;;41441:22:::1;41450:12;:10;:12::i;:::-;41441:22;::::0;;-1:-1:-1;;;;;41441:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;41351:120::o:0;54750:287::-;54822:4;;54804;;54797:43;;-1:-1:-1;;;;;54804:4:0;;;;54822;-1:-1:-1;;54797:24:0;:43::i;:::-;54878:9;;54858:6;;54851:50;;-1:-1:-1;;;;;54858:6:0;;;;54878:9;-1:-1:-1;;54851:26:0;:50::i;:::-;54943:14;;54921:8;;54914:47;;-1:-1:-1;;;;;54921:8:0;;;;54943:14;;54914:28;:47::i;:::-;55001:14;;54979:8;;54972:57;;-1:-1:-1;;;;;54979:8:0;;;;55001:14;-1:-1:-1;;54972:28:0;:57::i;677:106::-;765:10;677:106;:::o;6655:179::-;6713:7;6745:5;;;6769:6;;;;6761:46;;;;;-1:-1:-1;;;6761:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;41092:118;40618:8;:6;:8::i;:::-;40617:9;40609:38;;;;;-1:-1:-1;;;40609:38:0;;;;;;;;;;;;-1:-1:-1;;;40609:38:0;;;;;;;;;;;;;;;41152:7:::1;:14:::0;;-1:-1:-1;;;;41152:14:0::1;-1:-1:-1::0;;;41152:14:0::1;::::0;;41182:20:::1;41189:12;:10;:12::i;55045:199::-:0;55119:4;;55101;;55094:33;;-1:-1:-1;;;;;55101:4:0;;;;55119;;55094:24;:33::i;:::-;55165:9;;55145:6;;55138:40;;-1:-1:-1;;;;;55145:6:0;;;;55165:9;;55138:26;:40::i;:::-;55218:14;;55196:8;;55189:47;;-1:-1:-1;;;;;55196:8:0;;;;55218:14;;55189:28;:47::i;45419:144::-;45492:13;45549:1;45552;45532:22;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45532:22:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45532:22:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45532:22:0;;;;;;;;;;;;;-1:-1:-1;;45532:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45518:37;;45419:144;;;;:::o;27836:199::-;27922:12;27954:73;27973:6;27981:4;27954:73;;;;;;;;;;;;;;;;;:18;:73::i;33387:761::-;33811:23;33837:69;33865:4;33837:69;;;;;;;;;;;;;;;;;33845:5;-1:-1:-1;;;;;33837:27:0;;;:69;;;;;:::i;:::-;33921:17;;33811:95;;-1:-1:-1;33921:21:0;33917:224;;34063:10;34052:30;;;;;;;;;;;;;;;-1:-1:-1;34052:30:0;34044:85;;;;-1:-1:-1;;;34044:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27121:530;27248:12;27306:5;27281:21;:30;;27273:81;;;;-1:-1:-1;;;27273:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27373:18;27384:6;27373:10;:18::i;:::-;27365:60;;;;;-1:-1:-1;;;27365:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27499:12;27513:23;27540:6;-1:-1:-1;;;;;27540:11:0;27560:5;27568:4;27540:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;27540:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27498:75;;;;27591:52;27609:7;27618:10;27630:12;27591:17;:52::i;:::-;27584:59;27121:530;-1:-1:-1;;;;;;;27121:530:0:o;50381:867::-;50473:6;;50466:39;;;-1:-1:-1;;;50466:39:0;;50499:4;50466:39;;;;;;50447:16;;50466:57;;50518:4;;50466:47;;50510:2;;-1:-1:-1;;;;;50473:6:0;;;;50466:24;;:39;;;;;;;;;;;;;;;50473:6;50466:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50466:39:0;;:43;:47::i;:57::-;50447:76;;50552:9;;;;;;;;;-1:-1:-1;;;;;50552:9:0;-1:-1:-1;;;;;50534:53:0;;50588:8;50598:1;50601:19;50630:4;50637:3;50534:107;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50534:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50534:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50534:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;50534:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;50534:107:0;;;;;;;;;;;;-1:-1:-1;50534:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;50534:107:0;;;;;;;;50681:6;;-1:-1:-1;;;50674:39:0;;50707:4;50674:39;;;;;;50654:17;;-1:-1:-1;;;;;;50681:6:0;;;;-1:-1:-1;50674:24:0;;-1:-1:-1;50674:39:0;;;;;-1:-1:-1;50674:39:0;;-1:-1:-1;50674:39:0;;;;;;;50681:6;50674:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50674:39:0;50764:7;;50674:39;;-1:-1:-1;50726:21:0;;50750:35;;44635:4;;50750:22;;50674:39;;50750:13;:22::i;:35::-;50803:6;;50726:59;;-1:-1:-1;50796:60:0;;-1:-1:-1;;;;;50803:6:0;50824:16;50726:59;50796:27;:60::i;:::-;50869:22;50894:36;44635:4;50894:23;50908:8;;50894:9;:13;;:23;;;;:::i;:36::-;50969:17;;50948:6;;50869:61;;-1:-1:-1;50941:62:0;;-1:-1:-1;;;;;50948:6:0;;;;50969:17;50869:61;50941:27;:62::i;:::-;51016:27;51046:42;44635:4;51046:29;:9;44594:3;51046:13;:29::i;:42::-;51127:10;;51106:6;;51016:72;;-1:-1:-1;51099:60:0;;-1:-1:-1;;;;;51106:6:0;;;;51127:10;51016:72;51099:27;:60::i;:::-;51177:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50381:867;;;;;;:::o;51311:442::-;51382:6;;51375:39;;;-1:-1:-1;;;51375:39:0;;51408:4;51375:39;;;;;;51355:17;;-1:-1:-1;;;;;51382:6:0;;51375:24;;:39;;;;;;;;;;;;;;51382:6;51375:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51375:39:0;51443:6;;51431:8;;51375:39;;-1:-1:-1;;;;;;51431:8:0;;;51443:6;;51431:18;51427:156;;51484:9;;51466:105;;-1:-1:-1;;;51466:105:0;;;;;;;;51484:9;51466:105;;;;;;51560:4;51466:105;;;;;;51567:3;51466:105;;;;;;;;;;;;;51534:16;51466:105;;;;;;;;-1:-1:-1;;;;;51484:9:0;;;;51466:53;;51520:9;;51534:16;;51560:4;51567:3;51466:105;;;;;;51534:16;;51466:105;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51466:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51466:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;51466:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;51466:105:0;;;;;;;;;;;;-1:-1:-1;51466:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51427:156;51619:8;;51612:41;;;-1:-1:-1;;;51612:41:0;;51647:4;51612:41;;;;;;51595:14;;-1:-1:-1;;;;;51619:8:0;;51612:26;;:41;;;;;;;;;;;;;;51619:8;51612:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51612:41:0;51680:14;;51709:12;;51664:81;;;-1:-1:-1;;;51664:81:0;;;;;;;;;;;;;;;51739:4;51664:81;;;;;51612:41;;-1:-1:-1;;;;;;51680:14:0;;;;51664:44;;:81;;;;;51680:14;;51664:81;;;;;;;;51680:14;;51664:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51311:442;;:::o;28227:422::-;28341:12;28374:18;28385:6;28374:10;:18::i;:::-;28366:67;;;;-1:-1:-1;;;28366:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28507:12;28521:23;28548:6;-1:-1:-1;;;;;28548:17:0;28566:4;28548:23;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;28548:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28506:65;;;;28589:52;28607:7;28616:10;28628:12;28589:17;:52::i;:::-;28582:59;28227:422;-1:-1:-1;;;;;;28227:422:0:o;29661:742::-;29776:12;29805:7;29801:595;;;-1:-1:-1;29836:10:0;29829:17;;29801:595;29950:17;;:21;29946:439;;30213:10;30207:17;30274:15;30261:10;30257:2;30253:19;30246:44;30161:148;30356:12;30349:20;;-1:-1:-1;;;30349:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;

Swarm Source

ipfs://49dc75540b482675c7d67554a8b7ebdb358de493dad6742a4068c010e09a769a

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

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ 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.