Latest 25 from a total of 245 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Panic | 8617010 | 417 days ago | IN | 0 GLMR | 0.17686319 | ||||
| Harvest | 3340069 | 1019 days ago | IN | 0 GLMR | 0.06242092 | ||||
| Harvest | 3330758 | 1020 days ago | IN | 0 GLMR | 0.06242092 | ||||
| Harvest | 3316807 | 1022 days ago | IN | 0 GLMR | 0.06221092 | ||||
| Harvest | 3295970 | 1025 days ago | IN | 0 GLMR | 0.06242092 | ||||
| Harvest | 3269926 | 1029 days ago | IN | 0 GLMR | 0.06400642 | ||||
| Harvest | 3262970 | 1030 days ago | IN | 0 GLMR | 0.06400642 | ||||
| Harvest | 3236485 | 1034 days ago | IN | 0 GLMR | 0.06271492 | ||||
| Harvest | 3229518 | 1035 days ago | IN | 0 GLMR | 0.06242092 | ||||
| Harvest | 3222547 | 1036 days ago | IN | 0 GLMR | 0.06242092 | ||||
| Harvest | 3214452 | 1037 days ago | IN | 0 GLMR | 0.06221092 | ||||
| Harvest | 3173746 | 1043 days ago | IN | 0 GLMR | 0.06400642 | ||||
| Harvest | 3166775 | 1044 days ago | IN | 0 GLMR | 0.06242092 | ||||
| Harvest | 3159786 | 1045 days ago | IN | 0 GLMR | 0.06270348 | ||||
| Harvest | 3141008 | 1048 days ago | IN | 0 GLMR | 0.06218803 | ||||
| Harvest | 3130604 | 1049 days ago | IN | 0 GLMR | 0.06398353 | ||||
| Harvest | 3125059 | 1051 days ago | IN | 0 GLMR | 0.06269203 | ||||
| Harvest | 3115812 | 1052 days ago | IN | 0 GLMR | 0.06271492 | ||||
| Deposit | 3110347 | 1053 days ago | IN | 0 GLMR | 0.00313817 | ||||
| Harvest | 3107685 | 1054 days ago | IN | 0 GLMR | 0.06242092 | ||||
| Harvest | 3088878 | 1056 days ago | IN | 0 GLMR | 0.06400642 | ||||
| Harvest | 3081812 | 1057 days ago | IN | 0 GLMR | 0.06451042 | ||||
| Harvest | 3074799 | 1058 days ago | IN | 0 GLMR | 0.06221092 | ||||
| Harvest | 3062988 | 1060 days ago | IN | 0 GLMR | 0.06242092 | ||||
| Harvest | 3055928 | 1061 days ago | IN | 0 GLMR | 0.06242092 |
View more zero value Internal Transactions in Advanced View mode
Cross-Chain Transactions
Loading...
Loading
Contract Name:
StrategyBeamChefLP
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/**
*Submitted for verification at moonbeam.moonscan.io on 2022-02-11
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol
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/IERC20.sol
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/SafeMath.sol
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/ERC20.sol
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/Address.sol
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/SafeERC20.sol
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/IUniswapV2Pair.sol
pragma solidity ^0.6.0;
interface IUniswapV2Pair {
function factory() external view returns (address);
function token0() external view returns (address);
function token1() external view returns (address);
function burn(address to) external returns (uint amount0, uint amount1);
function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
}
// File: contracts/BIFI/interfaces/beamswap/IBeamChef.sol
pragma solidity ^0.6.0;
interface IBeamChef {
function deposit(uint256 _pid, uint256 _amount) external;
function withdraw(uint256 _pid, uint256 _amount) external;
function userInfo(uint256 _pid, address _user) external view returns (uint256, uint256, uint256, uint256);
function emergencyWithdraw(uint256 _pid) external;
function pendingTokens(uint256 pid, address user) external view returns (address[] memory, string memory, uint256[] memory, uint256[] memory);
}
// File: @openzeppelin/contracts/access/Ownable.sol
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/Pausable.sol
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/Beamswap/StrategyBeamChefLP.sol
pragma solidity ^0.6.0;
contract StrategyBeamChefLP 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;
address public lpToken1;
// Third party contracts
IBeamChef public chef;
uint256 public poolId;
bool public harvestOnDeposit;
uint256 public lastHarvest;
// 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,
address _chef,
address _vault,
address _unirouter,
address _keeper,
address _strategist,
address _beefyFeeRecipient,
address[] memory _outputToNativeRoute,
address[] memory _outputToLp0Route,
address[] memory _outputToLp1Route
) StratManager(_keeper, _strategist, _unirouter, _vault, _beefyFeeRecipient) public {
want = _want;
poolId = _poolId;
chef = IBeamChef(_chef);
output = _outputToNativeRoute[0];
native = _outputToNativeRoute[_outputToNativeRoute.length - 1];
outputToNativeRoute = _outputToNativeRoute;
// setup lp routing
lpToken0 = IUniswapV2Pair(want).token0();
require(_outputToLp0Route[0] == output, "outputToLp0Route[0] != output");
require(_outputToLp0Route[_outputToLp0Route.length - 1] == lpToken0, "outputToLp0Route[last] != lpToken0");
outputToLp0Route = _outputToLp0Route;
lpToken1 = IUniswapV2Pair(want).token1();
require(_outputToLp1Route[0] == output, "outputToLp1Route[0] != output");
require(_outputToLp1Route[_outputToLp1Route.length - 1] == lpToken1, "outputToLp1Route[last] != lpToken1");
outputToLp1Route = _outputToLp1Route;
_giveAllowances();
}
// puts the funds to work
function deposit() public whenNotPaused {
if (balanceOfWant() > 0) {
chef.deposit(poolId, balanceOfWant());
emit Deposit(balanceOf());
}
}
function withdraw(uint256 _amount) external {
require(msg.sender == vault, "!vault");
uint256 wantBal = balanceOfWant();
if (wantBal < _amount) {
chef.withdraw(poolId, _amount.sub(wantBal));
wantBal = balanceOfWant();
}
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 {
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 strategistFee = nativeBal.mul(STRATEGIST_FEE).div(MAX_FEE);
IERC20(native).safeTransfer(strategist, strategistFee);
emit ChargedFees(callFeeAmount, beefyFeeAmount, strategistFee);
}
// Adds liquidity to AMM and gets more LP tokens.
function addLiquidity() internal {
uint256 outputHalf = IERC20(output).balanceOf(address(this)).div(2);
if (lpToken0 != output) {
IUniswapRouterETH(unirouter).swapExactTokensForTokens(outputHalf, 0, outputToLp0Route, address(this), now);
}
if (lpToken1 != output) {
IUniswapRouterETH(unirouter).swapExactTokensForTokens(outputHalf, 0, outputToLp1Route, address(this), now);
}
uint256 lp0Bal = IERC20(lpToken0).balanceOf(address(this));
uint256 lp1Bal = IERC20(lpToken1).balanceOf(address(this));
IUniswapRouterETH(unirouter).addLiquidity(lpToken0, lpToken1, lp0Bal, lp1Bal, 1, 1, address(this), now);
}
// 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,,,) = chef.userInfo(poolId, address(this));
return _amount;
}
// returns rewards unharvested
function rewardsAvailable() public view returns (uint256) {
(,,, uint256[] memory rewards) = chef.pendingTokens(poolId, address(this));
return rewards[0];
}
// native reward amount for calling harvest
function callReward() public view returns (uint256) {
uint256 outputBal = rewardsAvailable();
uint256 nativeOut;
if (outputBal > 0) {
try IUniswapRouterETH(unirouter).getAmountsOut(outputBal, outputToNativeRoute)
returns (uint256[] memory amountOut)
{
nativeOut = amountOut[amountOut.length -1];
}
catch {}
}
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");
chef.emergencyWithdraw(poolId);
IERC20(want).transfer(vault, balanceOfWant());
}
// pauses deposits and withdraws all funds from third party systems.
function panic() public onlyManager {
pause();
chef.emergencyWithdraw(poolId);
}
function pause() public onlyManager {
_pause();
_removeAllowances();
}
function unpause() external onlyManager {
_unpause();
_giveAllowances();
deposit();
}
function _giveAllowances() internal {
IERC20(want).safeApprove(address(chef), uint256(-1));
IERC20(output).safeApprove(unirouter, uint256(-1));
IERC20(lpToken0).safeApprove(unirouter, 0);
IERC20(lpToken0).safeApprove(unirouter, uint256(-1));
IERC20(lpToken1).safeApprove(unirouter, 0);
IERC20(lpToken1).safeApprove(unirouter, uint256(-1));
}
function _removeAllowances() internal {
IERC20(want).safeApprove(address(chef), 0);
IERC20(output).safeApprove(unirouter, 0);
IERC20(lpToken0).safeApprove(unirouter, 0);
IERC20(lpToken1).safeApprove(unirouter, 0);
}
function outputToNative() external view returns (address[] memory) {
return outputToNativeRoute;
}
function outputToLp0() external view returns (address[] memory) {
return outputToLp0Route;
}
function outputToLp1() external view returns (address[] memory) {
return outputToLp1Route;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_want","type":"address"},{"internalType":"uint256","name":"_poolId","type":"uint256"},{"internalType":"address","name":"_chef","type":"address"},{"internalType":"address","name":"_vault","type":"address"},{"internalType":"address","name":"_unirouter","type":"address"},{"internalType":"address","name":"_keeper","type":"address"},{"internalType":"address","name":"_strategist","type":"address"},{"internalType":"address","name":"_beefyFeeRecipient","type":"address"},{"internalType":"address[]","name":"_outputToNativeRoute","type":"address[]"},{"internalType":"address[]","name":"_outputToLp0Route","type":"address[]"},{"internalType":"address[]","name":"_outputToLp1Route","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":"contract IBeamChef","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":"lpToken1","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":[],"name":"outputToLp1","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":"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":[{"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":"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":"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"}]Contract Creation Code
6080604052600a600655606f60075561030960085560098054600160ff1990911617610100600160a81b03191674a43509661141f254f54d9a326e8ec851a0b95307001790553480156200005257600080fd5b50604051620040cd380380620040cd83398181016040526101608110156200007957600080fd5b815160208301516040808501516060860151608087015160a088015160c089015160e08a01516101008b0180519751999b989a96999598949793969295919491939282019284640100000000821115620000d257600080fd5b908301906020820185811115620000e857600080fd5b82518660208202830111640100000000821117156200010657600080fd5b82525081516020918201928201910280838360005b83811015620001355781810151838201526020016200011b565b50505050905001604052602001805160405193929190846401000000008211156200015f57600080fd5b9083019060208201858111156200017557600080fd5b82518660208202830111640100000000821117156200019357600080fd5b82525081516020918201928201910280838360005b83811015620001c2578181015183820152602001620001a8565b5050505090500160405260200180516040519392919084640100000000821115620001ec57600080fd5b9083019060208201858111156200020257600080fd5b82518660208202830111640100000000821117156200022057600080fd5b82525081516020918201928201910280838360005b838110156200024f57818101518382015260200162000235565b505050509050016040525050508585888a876000620002736200071f60201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000805460ff60a01b19168155600180546001600160a01b03199081166001600160a01b0398891617909155600280548216968816969096179095556003805486169487169490941790935560048054851692861692909217909155600580548416918516919091179055600c805483168f851617905560108d9055600f8054909216928c1692909217905583518491906200035557fe5b6020026020010151600b60006101000a8154816001600160a01b0302191690836001600160a01b03160217905550826001845103815181106200039457fe5b602090810291909101810151600a80546001600160a01b0319166001600160a01b039092169190911790558351620003d3916013919086019062000c44565b50600c60009054906101000a90046001600160a01b03166001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b1580156200042357600080fd5b505afa15801562000438573d6000803e3d6000fd5b505050506040513d60208110156200044f57600080fd5b5051600d80546001600160a01b0319166001600160a01b03928316179055600b54835191169083906000906200048157fe5b60200260200101516001600160a01b031614620004e5576040805162461bcd60e51b815260206004820152601d60248201527f6f7574707574546f4c7030526f7574655b305d20213d206f7574707574000000604482015290519081900360640190fd5b600d5482516001600160a01b0390911690839060001981019081106200050757fe5b60200260200101516001600160a01b031614620005565760405162461bcd60e51b81526004018080602001828103825260228152602001806200404b6022913960400191505060405180910390fd5b81516200056b90601490602085019062000c44565b50600c60009054906101000a90046001600160a01b03166001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b158015620005bb57600080fd5b505afa158015620005d0573d6000803e3d6000fd5b505050506040513d6020811015620005e757600080fd5b5051600e80546001600160a01b0319166001600160a01b03928316179055600b54825191169082906000906200061957fe5b60200260200101516001600160a01b0316146200067d576040805162461bcd60e51b815260206004820152601d60248201527f6f7574707574546f4c7031526f7574655b305d20213d206f7574707574000000604482015290519081900360640190fd5b600e5481516001600160a01b0390911690829060001981019081106200069f57fe5b60200260200101516001600160a01b031614620006ee5760405162461bcd60e51b8152600401808060200182810382526022815260200180620040036022913960400191505060405180910390fd5b80516200070390601590602084019062000c44565b506200070e62000723565b505050505050505050505062000ccf565b3390565b600f54600c5462000750916001600160a01b03918216911660001962000831602090811b62001f3d17901c565b600354600b546200077d916001600160a01b03918216911660001962000831602090811b62001f3d17901c565b600354600d54620007a9916001600160a01b039182169116600062000831602090811b62001f3d17901c565b600354600d54620007d6916001600160a01b03918216911660001962000831602090811b62001f3d17901c565b600354600e5462000802916001600160a01b039182169116600062000831602090811b62001f3d17901c565b600354600e546200082f916001600160a01b03918216911660001962000831602090811b62001f3d17901c565b565b801580620008bb575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b1580156200088b57600080fd5b505afa158015620008a0573d6000803e3d6000fd5b505050506040513d6020811015620008b757600080fd5b5051155b620008f85760405162461bcd60e51b8152600401808060200182810382526036815260200180620040976036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0390811663095ea7b360e01b17909152620009509185916200095516565b505050565b6060620009b1826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031662000a1160201b62002055179092919060201c565b8051909150156200095057808060200190516020811015620009d257600080fd5b5051620009505760405162461bcd60e51b815260040180806020018281038252602a8152602001806200406d602a913960400191505060405180910390fd5b606062000a22848460008562000a2c565b90505b9392505050565b60608247101562000a6f5760405162461bcd60e51b8152600401808060200182810382526026815260200180620040256026913960400191505060405180910390fd5b62000a7a8562000b94565b62000acc576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831062000b0d5780518252601f19909201916020918201910162000aec565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811462000b71576040519150601f19603f3d011682016040523d82523d6000602084013e62000b76565b606091505b50909250905062000b8982828662000b9a565b979650505050505050565b3b151590565b6060831562000bab57508162000a25565b82511562000bbc5782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000c0857818101518382015260200162000bee565b50505050905090810190601f16801562000c365780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b82805482825590600052602060002090810192821562000c9c579160200282015b8281111562000c9c57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000c65565b5062000caa92915062000cae565b5090565b5b8082111562000caa5780546001600160a01b031916815560010162000caf565b6133248062000cdf6000396000f3fe608060405234801561001057600080fd5b506004361061038e5760003560e01c8063877562b6116101de578063c1a3d44c1161010f578063e7a7250a116100ad578063fad4675e1161007c578063fad4675e14610729578063fb61778714610748578063fbfa77cf14610750578063fd63a887146107585761038e565b8063e7a7250a146106eb578063f1a392da146106f3578063f20eaeb8146106fb578063f2fde38b146107035761038e565b8063d3102589116100e9578063d3102589146106ad578063d801d946146106b5578063d92f3d73146106bd578063dfbdc437146106e35761038e565b8063c1a3d44c14610677578063c7b9d5301461067f578063d0e30db0146106a55761038e565b8063989ef4e31161017c578063ac1e502511610156578063ac1e50251461062d578063aced16611461064a578063bc063e1a14610652578063be12a9781461065a5761038e565b8063989ef4e3146105f75780639f8b5da1146105ff578063a68833e5146106075761038e565b80638da5cb5b116101b85780638da5cb5b146105d75780638e145459146105df57806390321e1a146105e757806397fd323d146105ef5761038e565b8063877562b6146105bf5780638912cb8b146105c75780638bc7e8c4146105cf5761038e565b80633e0dc34e116102c35780635ee167c011610261578063722713f711610230578063722713f714610581578063748747e6146105895780637d38ca65146105af5780638456cb59146105b75761038e565b80635ee167c0146105435780636817031b1461054b5780636ec232d314610571578063715018a6146105795761038e565b80634700d3051161029d5780634700d3051461050f57806354518b1a14610517578063573fef0a1461051f5780635c975abb146105275761038e565b80633e0dc34e146104f75780633f4ba83a146104ff5780634641257d146105075761038e565b80631fc8bc5d11610330578063264658261161030a57806326465826146104985780632ad5a53f146104b55780632e1a7d4d146104bd57806336c6cf21146104da5761038e565b80631fc8bc5d146104805780631fe4a68614610488578063257ae0de146104905761038e565b8063115880861161036c578063115880861461043257806311b0b42d1461044c57806313e120b1146104705780631f1fcd51146104785761038e565b80630587f785146103935780630e5c011e146103eb5780630e8fbb5a14610413575b600080fd5b61039b610775565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156103d75781810151838201526020016103bf565b505050509050019250505060405180910390f35b6104116004803603602081101561040157600080fd5b50356001600160a01b03166107d7565b005b6104116004803603602081101561042957600080fd5b503515156108d2565b61043a610970565b60408051918252519081900360200190f35b6104546109fc565b604080516001600160a01b039092168252519081900360200190f35b61039b610a0b565b610454610a6b565b610454610a7a565b610454610a89565b610454610a98565b610411600480360360208110156104ae57600080fd5b5035610aa7565b61043a610b61565b610411600480360360208110156104d357600080fd5b5035610b66565b610454600480360360208110156104f057600080fd5b5035610d10565b61043a610d37565b610411610d3d565b610411610dc4565b610411610ebc565b61043a610f9b565b610411610fa1565b61052f610ff4565b604080519115158252519081900360200190f35b610454611004565b6104116004803603602081101561056157600080fd5b50356001600160a01b0316611013565b610454611097565b6104116110ab565b61043a611157565b6104116004803603602081101561059f57600080fd5b50356001600160a01b0316611177565b61043a611206565b61041161120b565b610454611288565b61052f611297565b61043a6112a0565b6104546112a6565b6104546112b5565b61043a6112c4565b61043a6112ca565b61039b611496565b61052f6114f6565b6104116004803603602081101561061d57600080fd5b50356001600160a01b03166114ff565b6104116004803603602081101561064357600080fd5b5035611583565b610454611634565b61043a611643565b6104546004803603602081101561067057600080fd5b5035611649565b61043a611656565b6104116004803603602081101561069557600080fd5b50356001600160a01b03166116d2565b610411611741565b61043a61184f565b610411611855565b610411600480360360208110156106d357600080fd5b50356001600160a01b03166118c2565b61043a611946565b61043a61194b565b61043a611c45565b610454611c4b565b6104116004803603602081101561071957600080fd5b50356001600160a01b0316611c5a565b6104116004803603602081101561073f57600080fd5b50351515611d5c565b610411611ddc565b610454611f21565b6104546004803603602081101561076e57600080fd5b5035611f30565b606060158054806020026020016040519081016040528092919081815260200182805480156107cd57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116107af575b5050505050905090565b60095460ff1680156107fe57506009546107fe9061010090046001600160a01b031661206e565b156108c657600960019054906101000a90046001600160a01b03166001600160a01b0316633de39c116040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561085357600080fd5b505af1158015610867573d6000803e3d6000fd5b505050506040513d602081101561087d57600080fd5b50513a11156108c6576040805162461bcd60e51b815260206004820152601060248201526f67617320697320746f6f20686967682160801b604482015290519081900360640190fd5b6108cf81612074565b50565b6108da6112a6565b6001600160a01b0316336001600160a01b0316148061090357506001546001600160a01b031633145b61093f576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6011805460ff1916821515179081905560ff1615610966576109616000611583565b6108cf565b6108cf600a611583565b600f54601054604080516393f1a40b60e01b815260048101929092523060248301525160009283926001600160a01b03909116916393f1a40b91604480820192608092909190829003018186803b1580156109ca57600080fd5b505afa1580156109de573d6000803e3d6000fd5b505050506040513d60808110156109f457600080fd5b505191505090565b600a546001600160a01b031681565b606060138054806020026020016040519081016040528092919081815260200182805480156107cd576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116107af575050505050905090565b600c546001600160a01b031681565b600f546001600160a01b031681565b6002546001600160a01b031681565b6003546001600160a01b031681565b610aaf6112a6565b6001600160a01b0316336001600160a01b03161480610ad857506001546001600160a01b031633145b610b14576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b606f811115610b53576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600781905561037803600855565b606f81565b6004546001600160a01b03163314610bae576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b6000610bb8611656565b905081811015610c4457600f546010546001600160a01b039091169063441a3e7090610be48585612221565b6040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b158015610c2157600080fd5b505af1158015610c35573d6000803e3d6000fd5b50505050610c41611656565b90505b81811115610c4f5750805b610c576112a6565b6001600160a01b0316326001600160a01b031614158015610c7d5750610c7b610ff4565b155b15610cb5576000610ca5612710610c9f6006548561228390919063ffffffff16565b906122dc565b9050610cb18282612221565b9150505b600454600c54610cd2916001600160a01b03918216911683612343565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d610cfb611157565b60408051918252519081900360200190a15050565b60148181548110610d1d57fe5b6000918252602090912001546001600160a01b0316905081565b60105481565b610d456112a6565b6001600160a01b0316336001600160a01b03161480610d6e57506001546001600160a01b031633145b610daa576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610db2612395565b610dba612438565b610dc2611741565b565b60095460ff168015610deb5750600954610deb9061010090046001600160a01b031661206e565b15610eb357600960019054906101000a90046001600160a01b03166001600160a01b0316633de39c116040518163ffffffff1660e01b8152600401602060405180830381600087803b158015610e4057600080fd5b505af1158015610e54573d6000803e3d6000fd5b505050506040513d6020811015610e6a57600080fd5b50513a1115610eb3576040805162461bcd60e51b815260206004820152601060248201526f67617320697320746f6f20686967682160801b604482015290519081900360640190fd5b610dc232612074565b610ec46112a6565b6001600160a01b0316336001600160a01b03161480610eed57506001546001600160a01b031633145b610f29576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610f3161120b565b600f5460105460408051632989754760e11b81526004810192909252516001600160a01b0390921691635312ea8e9160248082019260009290919082900301818387803b158015610f8157600080fd5b505af1158015610f95573d6000803e3d6000fd5b50505050565b61271081565b60115460ff1615610dc2576004546001600160a01b03163314610eb3576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600054600160a01b900460ff1690565b600d546001600160a01b031681565b61101b6124f0565b6001600160a01b031661102c6112a6565b6001600160a01b031614611075576040805162461bcd60e51b8152602060048201819052602482015260008051602061326f833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b60095461010090046001600160a01b031681565b6110b36124f0565b6001600160a01b03166110c46112a6565b6001600160a01b03161461110d576040805162461bcd60e51b8152602060048201819052602482015260008051602061326f833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000611172611164610970565b61116c611656565b906124f4565b905090565b61117f6112a6565b6001600160a01b0316336001600160a01b031614806111a857506001546001600160a01b031633145b6111e4576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b607081565b6112136112a6565b6001600160a01b0316336001600160a01b0316148061123c57506001546001600160a01b031633145b611278576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b61128061254e565b610dc26125d7565b600e546001600160a01b031681565b60115460ff1681565b60065481565b6000546001600160a01b031690565b6005546001600160a01b031681565b60075481565b6000806112d561194b565b905060008115611463576003546040805163d06ca61f60e01b8152600481018581526024820192835260138054604484018190526001600160a01b039095169463d06ca61f94889492939290916064909101908490801561135f57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611341575b5050935050505060006040518083038186803b15801561137e57600080fd5b505afa92505050801561143e57506040513d6000823e601f3d908101601f1916820160405260208110156113b157600080fd5b8101908080516040519392919084600160201b8211156113d057600080fd5b9083019060208201858111156113e557600080fd5b82518660208202830111600160201b8211171561140157600080fd5b82525081516020918201928201910280838360005b8381101561142e578181015183820152602001611416565b5050505090500160405250505060015b61144757611463565b8060018251038151811061145757fe5b60200260200101519150505b61148f6103e8610c9f6007546114896103e8610c9f602d8861228390919063ffffffff16565b90612283565b9250505090565b606060148054806020026020016040519081016040528092919081815260200182805480156107cd576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116107af575050505050905090565b60095460ff1681565b6115076124f0565b6001600160a01b03166115186112a6565b6001600160a01b031614611561576040805162461bcd60e51b8152602060048201819052602482015260008051602061326f833981519152604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b61158b6112a6565b6001600160a01b0316336001600160a01b031614806115b457506001546001600160a01b031633145b6115f0576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b603281111561162f576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600655565b6001546001600160a01b031681565b6103e881565b60138181548110610d1d57fe5b600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156116a157600080fd5b505afa1580156116b5573d6000803e3d6000fd5b505050506040513d60208110156116cb57600080fd5b5051905090565b6002546001600160a01b0316331461171f576040805162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b611749610ff4565b1561178e576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000611798611656565b1115610dc257600f546010546001600160a01b039091169063e2bbb158906117be611656565b6040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b1580156117fb57600080fd5b505af115801561180f573d6000803e3d6000fd5b505050507f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e3842661183c611157565b60408051918252519081900360200190a1565b60085481565b61185d6112a6565b6001600160a01b0316336001600160a01b0316148061188657506001546001600160a01b031633145b610eb3576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6118ca6124f0565b6001600160a01b03166118db6112a6565b6001600160a01b031614611924576040805162461bcd60e51b8152602060048201819052602482015260008051602061326f833981519152604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b603281565b600f546010546040805160016232bd9d60e01b031981526004810192909252306024830152516000926060926001600160a01b039091169163ffcd4263916044808201928792909190829003018186803b1580156119a857600080fd5b505afa1580156119bc573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260808110156119e557600080fd5b8101908080516040519392919084600160201b821115611a0457600080fd5b908301906020820185811115611a1957600080fd5b82518660208202830111600160201b82111715611a3557600080fd5b82525081516020918201928201910280838360005b83811015611a62578181015183820152602001611a4a565b5050505090500160405260200180516040519392919084600160201b821115611a8a57600080fd5b908301906020820185811115611a9f57600080fd5b8251600160201b811182820188101715611ab857600080fd5b82525081516020918201929091019080838360005b83811015611ae5578181015183820152602001611acd565b50505050905090810190601f168015611b125780820380516001836020036101000a031916815260200191505b5060405260200180516040519392919084600160201b821115611b3457600080fd5b908301906020820185811115611b4957600080fd5b82518660208202830111600160201b82111715611b6557600080fd5b82525081516020918201928201910280838360005b83811015611b92578181015183820152602001611b7a565b5050505090500160405260200180516040519392919084600160201b821115611bba57600080fd5b908301906020820185811115611bcf57600080fd5b82518660208202830111600160201b82111715611beb57600080fd5b82525081516020918201928201910280838360005b83811015611c18578181015183820152602001611c00565b50505050905001604052505050935050505080600081518110611c3757fe5b602002602001015191505090565b60125481565b600b546001600160a01b031681565b611c626124f0565b6001600160a01b0316611c736112a6565b6001600160a01b031614611cbc576040805162461bcd60e51b8152602060048201819052602482015260008051602061326f833981519152604482015290519081900360640190fd5b6001600160a01b038116611d015760405162461bcd60e51b81526004018080602001828103825260268152602001806132026026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611d646112a6565b6001600160a01b0316336001600160a01b03161480611d8d57506001546001600160a01b031633145b611dc9576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6009805460ff1916911515919091179055565b6004546001600160a01b03163314611e24576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600f5460105460408051632989754760e11b81526004810192909252516001600160a01b0390921691635312ea8e9160248082019260009290919082900301818387803b158015611e7457600080fd5b505af1158015611e88573d6000803e3d6000fd5b5050600c546004546001600160a01b03918216935063a9059cbb925016611ead611656565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015611ef357600080fd5b505af1158015611f07573d6000803e3d6000fd5b505050506040513d6020811015611f1d57600080fd5b5050565b6004546001600160a01b031681565b60158181548110610d1d57fe5b801580611fc3575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b158015611f9557600080fd5b505afa158015611fa9573d6000803e3d6000fd5b505050506040513d6020811015611fbf57600080fd5b5051155b611ffe5760405162461bcd60e51b81526004018080602001828103825260368152602001806132b96036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b17905261205090849061264f565b505050565b60606120648484600085612700565b90505b9392505050565b3b151590565b61207c610ff4565b156120c1576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600f5460105460408051631c57762b60e31b8152600481019290925260006024830181905290516001600160a01b039093169263e2bbb15892604480820193929182900301818387803b15801561211757600080fd5b505af115801561212b573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b15801561217c57600080fd5b505afa158015612190573d6000803e3d6000fd5b505050506040513d60208110156121a657600080fd5b505190508015611f1d576121b98261285c565b6121c1612bea565b60006121cb611656565b90506121d5611741565b42601255337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f9241082612204611157565b6040805192835260208301919091528051918290030190a2505050565b600082821115612278576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b508082035b92915050565b6000826122925750600061227d565b8282028284828161229f57fe5b04146120675760405162461bcd60e51b815260040180806020018281038252602181526020018061324e6021913960400191505060405180910390fd5b6000808211612332576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161233b57fe5b049392505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261205090849061264f565b61239d610ff4565b6123e5576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61241b6124f0565b604080516001600160a01b039092168252519081900360200190a1565b600f54600c54612457916001600160a01b039182169116600019611f3d565b600354600b54612476916001600160a01b039182169116600019611f3d565b600354600d54612494916001600160a01b0391821691166000611f3d565b600354600d546124b3916001600160a01b039182169116600019611f3d565b600354600e546124d1916001600160a01b0391821691166000611f3d565b600354600e54610dc2916001600160a01b039182169116600019611f3d565b3390565b600082820183811015612067576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b612556610ff4565b1561259b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861241b6124f0565b600f54600c546125f5916001600160a01b0391821691166000611f3d565b600354600b54612613916001600160a01b0391821691166000611f3d565b600354600d54612631916001600160a01b0391821691166000611f3d565b600354600e54610dc2916001600160a01b0391821691166000611f3d565b60606126a4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166120559092919063ffffffff16565b805190915015612050578080602001905160208110156126c357600080fd5b50516120505760405162461bcd60e51b815260040180806020018281038252602a81526020018061328f602a913960400191505060405180910390fd5b6060824710156127415760405162461bcd60e51b81526004018080602001828103825260268152602001806132286026913960400191505060405180910390fd5b61274a8561206e565b61279b576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106127da5780518252601f1990920191602091820191016127bb565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461283c576040519150601f19603f3d011682016040523d82523d6000602084013e612841565b606091505b509150915061285182828661315d565b979650505050505050565b600b54604080516370a0823160e01b815230600482015290516000926128eb926103e892610c9f92602d926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b1580156128b957600080fd5b505afa1580156128cd573d6000803e3d6000fd5b505050506040513d60208110156128e357600080fd5b505190612283565b9050600360009054906101000a90046001600160a01b03166001600160a01b03166338ed1739826000601330426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818154815260200191508054801561299757602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612979575b50509650505050505050600060405180830381600087803b1580156129bb57600080fd5b505af11580156129cf573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156129f857600080fd5b8101908080516040519392919084600160201b821115612a1757600080fd5b908301906020820185811115612a2c57600080fd5b82518660208202830111600160201b82111715612a4857600080fd5b82525081516020918201928201910280838360005b83811015612a75578181015183820152602001612a5d565b50505050919091016040818152600a546370a0823160e01b83523060048401529051600097506001600160a01b0390911695506370a08231945060248083019450602093509091829003018186803b158015612ad057600080fd5b505afa158015612ae4573d6000803e3d6000fd5b505050506040513d6020811015612afa57600080fd5b5051600754909150600090612b18906103e890610c9f908590612283565b600a54909150612b32906001600160a01b03168583612343565b6000612b4f6103e8610c9f6008548661228390919063ffffffff16565b600554600a54919250612b6f916001600160a01b03908116911683612343565b6000612b826103e8610c9f866070612283565b600254600a54919250612ba2916001600160a01b03908116911683612343565b604080518481526020810184905280820183905290517fd255b592c7f268a73e534da5219a60ff911b4cf6daae21c7d20527dd657bd99a9181900360600190a1505050505050565b600b54604080516370a0823160e01b81523060048201529051600092612c71926002926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015612c3f57600080fd5b505afa158015612c53573d6000803e3d6000fd5b505050506040513d6020811015612c6957600080fd5b5051906122dc565b600b54600d549192506001600160a01b03918216911614612e13576003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526014805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c49091019086908015612d2657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612d08575b50509650505050505050600060405180830381600087803b158015612d4a57600080fd5b505af1158015612d5e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612d8757600080fd5b8101908080516040519392919084600160201b821115612da657600080fd5b908301906020820185811115612dbb57600080fd5b82518660208202830111600160201b82111715612dd757600080fd5b82525081516020918201928201910280838360005b83811015612e04578181015183820152602001612dec565b50505050905001604052505050505b600b54600e546001600160a01b03908116911614612fb2576003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526015805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c49091019086908015612ec557602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612ea7575b50509650505050505050600060405180830381600087803b158015612ee957600080fd5b505af1158015612efd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612f2657600080fd5b8101908080516040519392919084600160201b821115612f4557600080fd5b908301906020820185811115612f5a57600080fd5b82518660208202830111600160201b82111715612f7657600080fd5b82525081516020918201928201910280838360005b83811015612fa3578181015183820152602001612f8b565b50505050905001604052505050505b600d54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015612ffd57600080fd5b505afa158015613011573d6000803e3d6000fd5b505050506040513d602081101561302757600080fd5b5051600e54604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561307a57600080fd5b505afa15801561308e573d6000803e3d6000fd5b505050506040513d60208110156130a457600080fd5b5051600354600d54600e546040805162e8e33760e81b81526001600160a01b0393841660048201529183166024830152604482018790526064820185905260016084830181905260a48301523060c48301524260e48301525193945091169163e8e3370091610104808201926060929091908290030181600087803b15801561312c57600080fd5b505af1158015613140573d6000803e3d6000fd5b505050506040513d606081101561315657600080fd5b5050505050565b6060831561316c575081612067565b82511561317c5782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156131c65781810151838201526020016131ae565b50505050905090810190601f1680156131f35780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a2646970667358221220ea9c7aedcc58b26780683cefaa075228853b2a938e8c9321aa23a1c4aff5e34a64736f6c634300060c00336f7574707574546f4c7031526f7574655b6c6173745d20213d206c70546f6b656e31416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c6f7574707574546f4c7030526f7574655b6c6173745d20213d206c70546f6b656e305361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000000000b929914b89584b4081c7966ac6287636f7efd0530000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c6ca172fc8bdb803c5e12731109744fb0200587b000000000000000000000000c96b496f78d1a45d9cec6d628a75614ed230d6d400000000000000000000000096b244391d98b62d19ae89b1a4dccf0fc56970c700000000000000000000000010aee6b5594942433e7fc2783598c979b030ef3d000000000000000000000000b2e4a61d99ca58fb8aac58bb2f8a59d63f552fc0000000000000000000000000adb9ddfa24e326dc9d337561f6c7ba2a6ecec697000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000cd3b51d98478d53f4515a306be565c6eebef1d58000000000000000000000000acc15dc74880c9944775448304b263d191c6077f0000000000000000000000000000000000000000000000000000000000000003000000000000000000000000cd3b51d98478d53f4515a306be565c6eebef1d58000000000000000000000000acc15dc74880c9944775448304b263d191c6077f000000000000000000000000818ec0a7fe18ff94269904fced6ae3dae6d6dc0b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000cd3b51d98478d53f4515a306be565c6eebef1d58000000000000000000000000acc15dc74880c9944775448304b263d191c6077f
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061038e5760003560e01c8063877562b6116101de578063c1a3d44c1161010f578063e7a7250a116100ad578063fad4675e1161007c578063fad4675e14610729578063fb61778714610748578063fbfa77cf14610750578063fd63a887146107585761038e565b8063e7a7250a146106eb578063f1a392da146106f3578063f20eaeb8146106fb578063f2fde38b146107035761038e565b8063d3102589116100e9578063d3102589146106ad578063d801d946146106b5578063d92f3d73146106bd578063dfbdc437146106e35761038e565b8063c1a3d44c14610677578063c7b9d5301461067f578063d0e30db0146106a55761038e565b8063989ef4e31161017c578063ac1e502511610156578063ac1e50251461062d578063aced16611461064a578063bc063e1a14610652578063be12a9781461065a5761038e565b8063989ef4e3146105f75780639f8b5da1146105ff578063a68833e5146106075761038e565b80638da5cb5b116101b85780638da5cb5b146105d75780638e145459146105df57806390321e1a146105e757806397fd323d146105ef5761038e565b8063877562b6146105bf5780638912cb8b146105c75780638bc7e8c4146105cf5761038e565b80633e0dc34e116102c35780635ee167c011610261578063722713f711610230578063722713f714610581578063748747e6146105895780637d38ca65146105af5780638456cb59146105b75761038e565b80635ee167c0146105435780636817031b1461054b5780636ec232d314610571578063715018a6146105795761038e565b80634700d3051161029d5780634700d3051461050f57806354518b1a14610517578063573fef0a1461051f5780635c975abb146105275761038e565b80633e0dc34e146104f75780633f4ba83a146104ff5780634641257d146105075761038e565b80631fc8bc5d11610330578063264658261161030a57806326465826146104985780632ad5a53f146104b55780632e1a7d4d146104bd57806336c6cf21146104da5761038e565b80631fc8bc5d146104805780631fe4a68614610488578063257ae0de146104905761038e565b8063115880861161036c578063115880861461043257806311b0b42d1461044c57806313e120b1146104705780631f1fcd51146104785761038e565b80630587f785146103935780630e5c011e146103eb5780630e8fbb5a14610413575b600080fd5b61039b610775565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156103d75781810151838201526020016103bf565b505050509050019250505060405180910390f35b6104116004803603602081101561040157600080fd5b50356001600160a01b03166107d7565b005b6104116004803603602081101561042957600080fd5b503515156108d2565b61043a610970565b60408051918252519081900360200190f35b6104546109fc565b604080516001600160a01b039092168252519081900360200190f35b61039b610a0b565b610454610a6b565b610454610a7a565b610454610a89565b610454610a98565b610411600480360360208110156104ae57600080fd5b5035610aa7565b61043a610b61565b610411600480360360208110156104d357600080fd5b5035610b66565b610454600480360360208110156104f057600080fd5b5035610d10565b61043a610d37565b610411610d3d565b610411610dc4565b610411610ebc565b61043a610f9b565b610411610fa1565b61052f610ff4565b604080519115158252519081900360200190f35b610454611004565b6104116004803603602081101561056157600080fd5b50356001600160a01b0316611013565b610454611097565b6104116110ab565b61043a611157565b6104116004803603602081101561059f57600080fd5b50356001600160a01b0316611177565b61043a611206565b61041161120b565b610454611288565b61052f611297565b61043a6112a0565b6104546112a6565b6104546112b5565b61043a6112c4565b61043a6112ca565b61039b611496565b61052f6114f6565b6104116004803603602081101561061d57600080fd5b50356001600160a01b03166114ff565b6104116004803603602081101561064357600080fd5b5035611583565b610454611634565b61043a611643565b6104546004803603602081101561067057600080fd5b5035611649565b61043a611656565b6104116004803603602081101561069557600080fd5b50356001600160a01b03166116d2565b610411611741565b61043a61184f565b610411611855565b610411600480360360208110156106d357600080fd5b50356001600160a01b03166118c2565b61043a611946565b61043a61194b565b61043a611c45565b610454611c4b565b6104116004803603602081101561071957600080fd5b50356001600160a01b0316611c5a565b6104116004803603602081101561073f57600080fd5b50351515611d5c565b610411611ddc565b610454611f21565b6104546004803603602081101561076e57600080fd5b5035611f30565b606060158054806020026020016040519081016040528092919081815260200182805480156107cd57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116107af575b5050505050905090565b60095460ff1680156107fe57506009546107fe9061010090046001600160a01b031661206e565b156108c657600960019054906101000a90046001600160a01b03166001600160a01b0316633de39c116040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561085357600080fd5b505af1158015610867573d6000803e3d6000fd5b505050506040513d602081101561087d57600080fd5b50513a11156108c6576040805162461bcd60e51b815260206004820152601060248201526f67617320697320746f6f20686967682160801b604482015290519081900360640190fd5b6108cf81612074565b50565b6108da6112a6565b6001600160a01b0316336001600160a01b0316148061090357506001546001600160a01b031633145b61093f576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6011805460ff1916821515179081905560ff1615610966576109616000611583565b6108cf565b6108cf600a611583565b600f54601054604080516393f1a40b60e01b815260048101929092523060248301525160009283926001600160a01b03909116916393f1a40b91604480820192608092909190829003018186803b1580156109ca57600080fd5b505afa1580156109de573d6000803e3d6000fd5b505050506040513d60808110156109f457600080fd5b505191505090565b600a546001600160a01b031681565b606060138054806020026020016040519081016040528092919081815260200182805480156107cd576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116107af575050505050905090565b600c546001600160a01b031681565b600f546001600160a01b031681565b6002546001600160a01b031681565b6003546001600160a01b031681565b610aaf6112a6565b6001600160a01b0316336001600160a01b03161480610ad857506001546001600160a01b031633145b610b14576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b606f811115610b53576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600781905561037803600855565b606f81565b6004546001600160a01b03163314610bae576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b6000610bb8611656565b905081811015610c4457600f546010546001600160a01b039091169063441a3e7090610be48585612221565b6040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b158015610c2157600080fd5b505af1158015610c35573d6000803e3d6000fd5b50505050610c41611656565b90505b81811115610c4f5750805b610c576112a6565b6001600160a01b0316326001600160a01b031614158015610c7d5750610c7b610ff4565b155b15610cb5576000610ca5612710610c9f6006548561228390919063ffffffff16565b906122dc565b9050610cb18282612221565b9150505b600454600c54610cd2916001600160a01b03918216911683612343565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d610cfb611157565b60408051918252519081900360200190a15050565b60148181548110610d1d57fe5b6000918252602090912001546001600160a01b0316905081565b60105481565b610d456112a6565b6001600160a01b0316336001600160a01b03161480610d6e57506001546001600160a01b031633145b610daa576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610db2612395565b610dba612438565b610dc2611741565b565b60095460ff168015610deb5750600954610deb9061010090046001600160a01b031661206e565b15610eb357600960019054906101000a90046001600160a01b03166001600160a01b0316633de39c116040518163ffffffff1660e01b8152600401602060405180830381600087803b158015610e4057600080fd5b505af1158015610e54573d6000803e3d6000fd5b505050506040513d6020811015610e6a57600080fd5b50513a1115610eb3576040805162461bcd60e51b815260206004820152601060248201526f67617320697320746f6f20686967682160801b604482015290519081900360640190fd5b610dc232612074565b610ec46112a6565b6001600160a01b0316336001600160a01b03161480610eed57506001546001600160a01b031633145b610f29576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b610f3161120b565b600f5460105460408051632989754760e11b81526004810192909252516001600160a01b0390921691635312ea8e9160248082019260009290919082900301818387803b158015610f8157600080fd5b505af1158015610f95573d6000803e3d6000fd5b50505050565b61271081565b60115460ff1615610dc2576004546001600160a01b03163314610eb3576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600054600160a01b900460ff1690565b600d546001600160a01b031681565b61101b6124f0565b6001600160a01b031661102c6112a6565b6001600160a01b031614611075576040805162461bcd60e51b8152602060048201819052602482015260008051602061326f833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b60095461010090046001600160a01b031681565b6110b36124f0565b6001600160a01b03166110c46112a6565b6001600160a01b03161461110d576040805162461bcd60e51b8152602060048201819052602482015260008051602061326f833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000611172611164610970565b61116c611656565b906124f4565b905090565b61117f6112a6565b6001600160a01b0316336001600160a01b031614806111a857506001546001600160a01b031633145b6111e4576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b607081565b6112136112a6565b6001600160a01b0316336001600160a01b0316148061123c57506001546001600160a01b031633145b611278576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b61128061254e565b610dc26125d7565b600e546001600160a01b031681565b60115460ff1681565b60065481565b6000546001600160a01b031690565b6005546001600160a01b031681565b60075481565b6000806112d561194b565b905060008115611463576003546040805163d06ca61f60e01b8152600481018581526024820192835260138054604484018190526001600160a01b039095169463d06ca61f94889492939290916064909101908490801561135f57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611341575b5050935050505060006040518083038186803b15801561137e57600080fd5b505afa92505050801561143e57506040513d6000823e601f3d908101601f1916820160405260208110156113b157600080fd5b8101908080516040519392919084600160201b8211156113d057600080fd5b9083019060208201858111156113e557600080fd5b82518660208202830111600160201b8211171561140157600080fd5b82525081516020918201928201910280838360005b8381101561142e578181015183820152602001611416565b5050505090500160405250505060015b61144757611463565b8060018251038151811061145757fe5b60200260200101519150505b61148f6103e8610c9f6007546114896103e8610c9f602d8861228390919063ffffffff16565b90612283565b9250505090565b606060148054806020026020016040519081016040528092919081815260200182805480156107cd576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116107af575050505050905090565b60095460ff1681565b6115076124f0565b6001600160a01b03166115186112a6565b6001600160a01b031614611561576040805162461bcd60e51b8152602060048201819052602482015260008051602061326f833981519152604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b61158b6112a6565b6001600160a01b0316336001600160a01b031614806115b457506001546001600160a01b031633145b6115f0576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b603281111561162f576040805162461bcd60e51b815260206004808301919091526024820152630216361760e41b604482015290519081900360640190fd5b600655565b6001546001600160a01b031681565b6103e881565b60138181548110610d1d57fe5b600c54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156116a157600080fd5b505afa1580156116b5573d6000803e3d6000fd5b505050506040513d60208110156116cb57600080fd5b5051905090565b6002546001600160a01b0316331461171f576040805162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b611749610ff4565b1561178e576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000611798611656565b1115610dc257600f546010546001600160a01b039091169063e2bbb158906117be611656565b6040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b1580156117fb57600080fd5b505af115801561180f573d6000803e3d6000fd5b505050507f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e3842661183c611157565b60408051918252519081900360200190a1565b60085481565b61185d6112a6565b6001600160a01b0316336001600160a01b0316148061188657506001546001600160a01b031633145b610eb3576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6118ca6124f0565b6001600160a01b03166118db6112a6565b6001600160a01b031614611924576040805162461bcd60e51b8152602060048201819052602482015260008051602061326f833981519152604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b603281565b600f546010546040805160016232bd9d60e01b031981526004810192909252306024830152516000926060926001600160a01b039091169163ffcd4263916044808201928792909190829003018186803b1580156119a857600080fd5b505afa1580156119bc573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260808110156119e557600080fd5b8101908080516040519392919084600160201b821115611a0457600080fd5b908301906020820185811115611a1957600080fd5b82518660208202830111600160201b82111715611a3557600080fd5b82525081516020918201928201910280838360005b83811015611a62578181015183820152602001611a4a565b5050505090500160405260200180516040519392919084600160201b821115611a8a57600080fd5b908301906020820185811115611a9f57600080fd5b8251600160201b811182820188101715611ab857600080fd5b82525081516020918201929091019080838360005b83811015611ae5578181015183820152602001611acd565b50505050905090810190601f168015611b125780820380516001836020036101000a031916815260200191505b5060405260200180516040519392919084600160201b821115611b3457600080fd5b908301906020820185811115611b4957600080fd5b82518660208202830111600160201b82111715611b6557600080fd5b82525081516020918201928201910280838360005b83811015611b92578181015183820152602001611b7a565b5050505090500160405260200180516040519392919084600160201b821115611bba57600080fd5b908301906020820185811115611bcf57600080fd5b82518660208202830111600160201b82111715611beb57600080fd5b82525081516020918201928201910280838360005b83811015611c18578181015183820152602001611c00565b50505050905001604052505050935050505080600081518110611c3757fe5b602002602001015191505090565b60125481565b600b546001600160a01b031681565b611c626124f0565b6001600160a01b0316611c736112a6565b6001600160a01b031614611cbc576040805162461bcd60e51b8152602060048201819052602482015260008051602061326f833981519152604482015290519081900360640190fd5b6001600160a01b038116611d015760405162461bcd60e51b81526004018080602001828103825260268152602001806132026026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611d646112a6565b6001600160a01b0316336001600160a01b03161480611d8d57506001546001600160a01b031633145b611dc9576040805162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015290519081900360640190fd5b6009805460ff1916911515919091179055565b6004546001600160a01b03163314611e24576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600f5460105460408051632989754760e11b81526004810192909252516001600160a01b0390921691635312ea8e9160248082019260009290919082900301818387803b158015611e7457600080fd5b505af1158015611e88573d6000803e3d6000fd5b5050600c546004546001600160a01b03918216935063a9059cbb925016611ead611656565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015611ef357600080fd5b505af1158015611f07573d6000803e3d6000fd5b505050506040513d6020811015611f1d57600080fd5b5050565b6004546001600160a01b031681565b60158181548110610d1d57fe5b801580611fc3575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b158015611f9557600080fd5b505afa158015611fa9573d6000803e3d6000fd5b505050506040513d6020811015611fbf57600080fd5b5051155b611ffe5760405162461bcd60e51b81526004018080602001828103825260368152602001806132b96036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b17905261205090849061264f565b505050565b60606120648484600085612700565b90505b9392505050565b3b151590565b61207c610ff4565b156120c1576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600f5460105460408051631c57762b60e31b8152600481019290925260006024830181905290516001600160a01b039093169263e2bbb15892604480820193929182900301818387803b15801561211757600080fd5b505af115801561212b573d6000803e3d6000fd5b5050600b54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b15801561217c57600080fd5b505afa158015612190573d6000803e3d6000fd5b505050506040513d60208110156121a657600080fd5b505190508015611f1d576121b98261285c565b6121c1612bea565b60006121cb611656565b90506121d5611741565b42601255337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f9241082612204611157565b6040805192835260208301919091528051918290030190a2505050565b600082821115612278576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b508082035b92915050565b6000826122925750600061227d565b8282028284828161229f57fe5b04146120675760405162461bcd60e51b815260040180806020018281038252602181526020018061324e6021913960400191505060405180910390fd5b6000808211612332576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161233b57fe5b049392505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261205090849061264f565b61239d610ff4565b6123e5576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61241b6124f0565b604080516001600160a01b039092168252519081900360200190a1565b600f54600c54612457916001600160a01b039182169116600019611f3d565b600354600b54612476916001600160a01b039182169116600019611f3d565b600354600d54612494916001600160a01b0391821691166000611f3d565b600354600d546124b3916001600160a01b039182169116600019611f3d565b600354600e546124d1916001600160a01b0391821691166000611f3d565b600354600e54610dc2916001600160a01b039182169116600019611f3d565b3390565b600082820183811015612067576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b612556610ff4565b1561259b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861241b6124f0565b600f54600c546125f5916001600160a01b0391821691166000611f3d565b600354600b54612613916001600160a01b0391821691166000611f3d565b600354600d54612631916001600160a01b0391821691166000611f3d565b600354600e54610dc2916001600160a01b0391821691166000611f3d565b60606126a4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166120559092919063ffffffff16565b805190915015612050578080602001905160208110156126c357600080fd5b50516120505760405162461bcd60e51b815260040180806020018281038252602a81526020018061328f602a913960400191505060405180910390fd5b6060824710156127415760405162461bcd60e51b81526004018080602001828103825260268152602001806132286026913960400191505060405180910390fd5b61274a8561206e565b61279b576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106127da5780518252601f1990920191602091820191016127bb565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461283c576040519150601f19603f3d011682016040523d82523d6000602084013e612841565b606091505b509150915061285182828661315d565b979650505050505050565b600b54604080516370a0823160e01b815230600482015290516000926128eb926103e892610c9f92602d926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b1580156128b957600080fd5b505afa1580156128cd573d6000803e3d6000fd5b505050506040513d60208110156128e357600080fd5b505190612283565b9050600360009054906101000a90046001600160a01b03166001600160a01b03166338ed1739826000601330426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818154815260200191508054801561299757602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612979575b50509650505050505050600060405180830381600087803b1580156129bb57600080fd5b505af11580156129cf573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156129f857600080fd5b8101908080516040519392919084600160201b821115612a1757600080fd5b908301906020820185811115612a2c57600080fd5b82518660208202830111600160201b82111715612a4857600080fd5b82525081516020918201928201910280838360005b83811015612a75578181015183820152602001612a5d565b50505050919091016040818152600a546370a0823160e01b83523060048401529051600097506001600160a01b0390911695506370a08231945060248083019450602093509091829003018186803b158015612ad057600080fd5b505afa158015612ae4573d6000803e3d6000fd5b505050506040513d6020811015612afa57600080fd5b5051600754909150600090612b18906103e890610c9f908590612283565b600a54909150612b32906001600160a01b03168583612343565b6000612b4f6103e8610c9f6008548661228390919063ffffffff16565b600554600a54919250612b6f916001600160a01b03908116911683612343565b6000612b826103e8610c9f866070612283565b600254600a54919250612ba2916001600160a01b03908116911683612343565b604080518481526020810184905280820183905290517fd255b592c7f268a73e534da5219a60ff911b4cf6daae21c7d20527dd657bd99a9181900360600190a1505050505050565b600b54604080516370a0823160e01b81523060048201529051600092612c71926002926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015612c3f57600080fd5b505afa158015612c53573d6000803e3d6000fd5b505050506040513d6020811015612c6957600080fd5b5051906122dc565b600b54600d549192506001600160a01b03918216911614612e13576003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526014805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c49091019086908015612d2657602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612d08575b50509650505050505050600060405180830381600087803b158015612d4a57600080fd5b505af1158015612d5e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612d8757600080fd5b8101908080516040519392919084600160201b821115612da657600080fd5b908301906020820185811115612dbb57600080fd5b82518660208202830111600160201b82111715612dd757600080fd5b82525081516020918201928201910280838360005b83811015612e04578181015183820152602001612dec565b50505050905001604052505050505b600b54600e546001600160a01b03908116911614612fb2576003546040516338ed173960e01b8152600481018381526000602483018190523060648401819052426084850181905260a0604486019081526015805460a488018190526001600160a01b03909816976338ed1739978a97929594939160c49091019086908015612ec557602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612ea7575b50509650505050505050600060405180830381600087803b158015612ee957600080fd5b505af1158015612efd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612f2657600080fd5b8101908080516040519392919084600160201b821115612f4557600080fd5b908301906020820185811115612f5a57600080fd5b82518660208202830111600160201b82111715612f7657600080fd5b82525081516020918201928201910280838360005b83811015612fa3578181015183820152602001612f8b565b50505050905001604052505050505b600d54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015612ffd57600080fd5b505afa158015613011573d6000803e3d6000fd5b505050506040513d602081101561302757600080fd5b5051600e54604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561307a57600080fd5b505afa15801561308e573d6000803e3d6000fd5b505050506040513d60208110156130a457600080fd5b5051600354600d54600e546040805162e8e33760e81b81526001600160a01b0393841660048201529183166024830152604482018790526064820185905260016084830181905260a48301523060c48301524260e48301525193945091169163e8e3370091610104808201926060929091908290030181600087803b15801561312c57600080fd5b505af1158015613140573d6000803e3d6000fd5b505050506040513d606081101561315657600080fd5b5050505050565b6060831561316c575081612067565b82511561317c5782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156131c65781810151838201526020016131ae565b50505050905090810190601f1680156131f35780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a2646970667358221220ea9c7aedcc58b26780683cefaa075228853b2a938e8c9321aa23a1c4aff5e34a64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b929914b89584b4081c7966ac6287636f7efd0530000000000000000000000000000000000000000000000000000000000000001000000000000000000000000c6ca172fc8bdb803c5e12731109744fb0200587b000000000000000000000000c96b496f78d1a45d9cec6d628a75614ed230d6d400000000000000000000000096b244391d98b62d19ae89b1a4dccf0fc56970c700000000000000000000000010aee6b5594942433e7fc2783598c979b030ef3d000000000000000000000000b2e4a61d99ca58fb8aac58bb2f8a59d63f552fc0000000000000000000000000adb9ddfa24e326dc9d337561f6c7ba2a6ecec697000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000002000000000000000000000000cd3b51d98478d53f4515a306be565c6eebef1d58000000000000000000000000acc15dc74880c9944775448304b263d191c6077f0000000000000000000000000000000000000000000000000000000000000003000000000000000000000000cd3b51d98478d53f4515a306be565c6eebef1d58000000000000000000000000acc15dc74880c9944775448304b263d191c6077f000000000000000000000000818ec0a7fe18ff94269904fced6ae3dae6d6dc0b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000cd3b51d98478d53f4515a306be565c6eebef1d58000000000000000000000000acc15dc74880c9944775448304b263d191c6077f
-----Decoded View---------------
Arg [0] : _want (address): 0xb929914B89584b4081C7966AC6287636F7EfD053
Arg [1] : _poolId (uint256): 1
Arg [2] : _chef (address): 0xC6ca172FC8BDB803c5e12731109744fb0200587b
Arg [3] : _vault (address): 0xC96b496F78d1a45D9cec6d628a75614ed230D6D4
Arg [4] : _unirouter (address): 0x96b244391D98B62D19aE89b1A4dCcf0fc56970C7
Arg [5] : _keeper (address): 0x10aee6B5594942433e7Fc2783598c979B030eF3D
Arg [6] : _strategist (address): 0xb2e4A61D99cA58fB8aaC58Bb2F8A59d63f552fC0
Arg [7] : _beefyFeeRecipient (address): 0xaDB9DDFA24E326dC9d337561f6c7ba2a6Ecec697
Arg [8] : _outputToNativeRoute (address[]): 0xcd3B51D98478D53F4515A306bE565c6EebeF1D58,0xAcc15dC74880C9944775448304B263D191c6077F
Arg [9] : _outputToLp0Route (address[]): 0xcd3B51D98478D53F4515A306bE565c6EebeF1D58,0xAcc15dC74880C9944775448304B263D191c6077F,0x818ec0A7Fe18Ff94269904fCED6AE3DaE6d6dC0b
Arg [10] : _outputToLp1Route (address[]): 0xcd3B51D98478D53F4515A306bE565c6EebeF1D58,0xAcc15dC74880C9944775448304B263D191c6077F
-----Encoded View---------------
21 Constructor Arguments found :
Arg [0] : 000000000000000000000000b929914b89584b4081c7966ac6287636f7efd053
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [2] : 000000000000000000000000c6ca172fc8bdb803c5e12731109744fb0200587b
Arg [3] : 000000000000000000000000c96b496f78d1a45d9cec6d628a75614ed230d6d4
Arg [4] : 00000000000000000000000096b244391d98b62d19ae89b1a4dccf0fc56970c7
Arg [5] : 00000000000000000000000010aee6b5594942433e7fc2783598c979b030ef3d
Arg [6] : 000000000000000000000000b2e4a61d99ca58fb8aac58bb2f8a59d63f552fc0
Arg [7] : 000000000000000000000000adb9ddfa24e326dc9d337561f6c7ba2a6ecec697
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [9] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [12] : 000000000000000000000000cd3b51d98478d53f4515a306be565c6eebef1d58
Arg [13] : 000000000000000000000000acc15dc74880c9944775448304b263d191c6077f
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [15] : 000000000000000000000000cd3b51d98478d53f4515a306be565c6eebef1d58
Arg [16] : 000000000000000000000000acc15dc74880c9944775448304b263d191c6077f
Arg [17] : 000000000000000000000000818ec0a7fe18ff94269904fced6ae3dae6d6dc0b
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [19] : 000000000000000000000000cd3b51d98478d53f4515a306be565c6eebef1d58
Arg [20] : 000000000000000000000000acc15dc74880c9944775448304b263d191c6077f
Deployed Bytecode Sourcemap
46506:9389:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55786:106;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49938:117;;;;;;;;;;;;;;;;-1:-1:-1;49938:117:0;-1:-1:-1;;;;;49938:117:0;;:::i;:::-;;53760:262;;;;;;;;;;;;;;;;-1:-1:-1;53760:262:0;;;;:::i;52809:158::-;;;:::i;:::-;;;;;;;;;;;;;;;;46671:21;;;:::i;:::-;;;;-1:-1:-1;;;;;46671:21:0;;;;;;;;;;;;;;55552:112;;;:::i;46727:19::-;;;:::i;46845:21::-;;;:::i;42203:25::-;;;:::i;42235:24::-;;;:::i;45131:200::-;;;;;;;;;;;;;;;;-1:-1:-1;45131:200:0;;:::i;44843:39::-;;;:::i;48971:675::-;;;;;;;;;;;;;;;;-1:-1:-1;48971:675:0;;:::i;47031:33::-;;;;;;;;;;;;;;;;-1:-1:-1;47031:33:0;;:::i;46873:21::-;;;:::i;54747:121::-;;;:::i;49844:86::-;;;:::i;54533:103::-;;;:::i;44942:43::-;;;:::i;49654:182::-;;;:::i;40491:86::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;46753:23;;;:::i;44063:86::-;;;;;;;;;;;;;;;;-1:-1:-1;44063:86:0;-1:-1:-1;;;;;44063:86:0;;:::i;46082:77::-;;;:::i;38850:148::-;;;:::i;52427:113::-;;;:::i;43335:92::-;;;;;;;;;;;;;;;;-1:-1:-1;43335:92:0;-1:-1:-1;;;;;43335:92:0;;:::i;44753:41::-;;;:::i;54644:95::-;;;:::i;46783:23::-;;;:::i;46903:28::-;;;:::i;44994:30::-;;;:::i;38199:87::-;;;:::i;42293:32::-;;;:::i;45033:25::-;;;:::i;53241:511::-;;;:::i;55672:106::-;;;:::i;46037:36::-;;;:::i;44284:134::-;;;;;;;;;;;;;;;;-1:-1:-1;44284:134:0;-1:-1:-1;;;;;44284:134:0;;:::i;45339:154::-;;;;;;;;;;;;;;;;-1:-1:-1;45339:154:0;;:::i;42175:21::-;;;:::i;44801:35::-;;;:::i;46988:36::-;;;;;;;;;;;;;;;;-1:-1:-1;46988:36:0;;:::i;52607:118::-;;;:::i;43572:155::-;;;;;;;;;;;;;;;;-1:-1:-1;43572:155:0;-1:-1:-1;;;;;43572:155:0;;:::i;48776:187::-;;;:::i;45065:57::-;;;:::i;50063:85::-;;;:::i;43859:102::-;;;;;;;;;;;;;;;;-1:-1:-1;43859:102:0;-1:-1:-1;;;;;43859:102:0;;:::i;44891:44::-;;;:::i;53011:173::-;;;:::i;46938:26::-;;;:::i;46699:21::-;;;:::i;39153:244::-;;;;;;;;;;;;;;;;-1:-1:-1;39153:244:0;-1:-1:-1;;;;;39153:244:0;;:::i;54030:133::-;;;;;;;;;;;;;;;;-1:-1:-1;54030:133:0;;;;:::i;54263:188::-;;;:::i;42266:20::-;;;:::i;47071:33::-;;;;;;;;;;;;;;;;-1:-1:-1;47071:33:0;;:::i;55786:106::-;55832:16;55868;55861:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55861:23:0;;;;;;;;;;;;;;;;;;;;;;;55786:106;:::o;49938:117::-;46206:17;;;;:49;;;;-1:-1:-1;46246:8:0;;46227:28;;46246:8;;;-1:-1:-1;;;;;46246:8:0;46227:18;:28::i;:::-;46202:159;;;46305:8;;;;;;;;;-1:-1:-1;;;;;46305:8:0;-1:-1:-1;;;;;46295:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46295:33:0;46280:11;:48;;46272:77;;;;;-1:-1:-1;;;46272:77:0;;;;;;;;;;;;-1:-1:-1;;;46272:77:0;;;;;;;;;;;;;;;50021:26:::1;50030:16;50021:8;:26::i;:::-;49938:117:::0;:::o;53760:262::-;43152:7;:5;:7::i;:::-;-1:-1:-1;;;;;43138:21:0;:10;-1:-1:-1;;;;;43138:21:0;;:45;;;-1:-1:-1;43177:6:0;;-1:-1:-1;;;;;43177:6:0;43163:10;:20;43138:45;43130:66;;;;;-1:-1:-1;;;43130:66:0;;;;;;;;;;;;-1:-1:-1;;;43130:66:0;;;;;;;;;;;;;;;53845:16:::1;:36:::0;;-1:-1:-1;;53845:36:0::1;::::0;::::1;;;::::0;;;;::::1;53898:16;53894:121;;;53931:19;53948:1;53931:16;:19::i;:::-;53894:121;;;53983:20;54000:2;53983:16;:20::i;52809:158::-:0;52898:4;;52912:6;;52898:36;;;-1:-1:-1;;;52898:36:0;;;;;;;;;52928:4;52898:36;;;;;52855:7;;;;-1:-1:-1;;;;;52898:4:0;;;;:13;;:36;;;;;;;;;;;;;;;:4;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52898:36:0;;-1:-1:-1;;52809:158:0;:::o;46671:21::-;;;-1:-1:-1;;;;;46671:21:0;;:::o;55552:112::-;55601:16;55637:19;55630:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55630:26:0;;;;;;;;;;;;;;;;;;;;;;55552:112;:::o;46727:19::-;;;-1:-1:-1;;;;;46727:19:0;;:::o;46845:21::-;;;-1:-1:-1;;;;;46845:21:0;;:::o;42203:25::-;;;-1:-1:-1;;;;;42203:25:0;;:::o;42235:24::-;;;-1:-1:-1;;;;;42235:24:0;;:::o;45131:200::-;43152:7;:5;:7::i;:::-;-1:-1:-1;;;;;43138:21:0;:10;-1:-1:-1;;;;;43138:21:0;;:45;;;-1:-1:-1;43177:6:0;;-1:-1:-1;;;;;43177:6:0;43163:10;:20;43138:45;43130:66;;;;;-1:-1:-1;;;43130:66:0;;;;;;;;;;;;-1:-1:-1;;;43130:66:0;;;;;;;;;;;;;;;44879:3:::1;45203:4;:20;;45195:37;;;::::0;;-1:-1:-1;;;45195:37:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;45195:37:0;;;;;;;;;;;;;::::1;;45253:7;:14:::0;;;45289:24;:34:::1;45278:8;:45:::0;45131:200::o;44843:39::-;44879:3;44843:39;:::o;48971:675::-;49048:5;;-1:-1:-1;;;;;49048:5:0;49034:10;:19;49026:38;;;;;-1:-1:-1;;;49026:38:0;;;;;;;;;;;;-1:-1:-1;;;49026:38:0;;;;;;;;;;;;;;;49077:15;49095;:13;:15::i;:::-;49077:33;;49137:7;49127;:17;49123:133;;;49161:4;;49175:6;;-1:-1:-1;;;;;49161:4:0;;;;:13;;49183:20;:7;49195;49183:11;:20::i;:::-;49161:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49229:15;:13;:15::i;:::-;49219:25;;49123:133;49282:7;49272;:17;49268:67;;;-1:-1:-1;49316:7:0;49268:67;49364:7;:5;:7::i;:::-;-1:-1:-1;;;;;49351:20:0;:9;-1:-1:-1;;;;;49351:20:0;;;:33;;;;;49376:8;:6;:8::i;:::-;49375:9;49351:33;49347:199;;;49401:27;49431:46;44980:5;49431:26;49443:13;;49431:7;:11;;:26;;;;:::i;:::-;:30;;:46::i;:::-;49401:76;-1:-1:-1;49502:32:0;:7;49401:76;49502:11;:32::i;:::-;49492:42;;49347:199;;49584:5;;49565:4;;49558:41;;-1:-1:-1;;;;;49565:4:0;;;;49584:5;49591:7;49558:25;:41::i;:::-;49617:21;49626:11;:9;:11::i;:::-;49617:21;;;;;;;;;;;;;;;48971:675;;:::o;47031:33::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47031:33:0;;-1:-1:-1;47031:33:0;:::o;46873:21::-;;;;:::o;54747:121::-;43152:7;:5;:7::i;:::-;-1:-1:-1;;;;;43138:21:0;:10;-1:-1:-1;;;;;43138:21:0;;:45;;;-1:-1:-1;43177:6:0;;-1:-1:-1;;;;;43177:6:0;43163:10;:20;43138:45;43130:66;;;;;-1:-1:-1;;;43130:66:0;;;;;;;;;;;;-1:-1:-1;;;43130:66:0;;;;;;;;;;;;;;;54798:10:::1;:8;:10::i;:::-;54821:17;:15;:17::i;:::-;54851:9;:7;:9::i;:::-;54747:121::o:0;49844:86::-;46206:17;;;;:49;;;;-1:-1:-1;46246:8:0;;46227:28;;46246:8;;;-1:-1:-1;;;;;46246:8:0;46227:18;:28::i;:::-;46202:159;;;46305:8;;;;;;;;;-1:-1:-1;;;;;46305:8:0;-1:-1:-1;;;;;46295:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46295:33:0;46280:11;:48;;46272:77;;;;;-1:-1:-1;;;46272:77:0;;;;;;;;;;;;-1:-1:-1;;;46272:77:0;;;;;;;;;;;;;;;49903:19:::1;49912:9;49903:8;:19::i;54533:103::-:0;43152:7;:5;:7::i;:::-;-1:-1:-1;;;;;43138:21:0;:10;-1:-1:-1;;;;;43138:21:0;;:45;;;-1:-1:-1;43177:6:0;;-1:-1:-1;;;;;43177:6:0;43163:10;:20;43138:45;43130:66;;;;;-1:-1:-1;;;43130:66:0;;;;;;;;;;;;-1:-1:-1;;;43130:66:0;;;;;;;;;;;;;;;54580:7:::1;:5;:7::i;:::-;54598:4;::::0;54621:6:::1;::::0;54598:30:::1;::::0;;-1:-1:-1;;;54598:30:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;54598:4:0;;::::1;::::0;:22:::1;::::0;:30;;;;;:4:::1;::::0;:30;;;;;;;;:4;;:30;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;54533:103::o:0;44942:43::-;44980:5;44942:43;:::o;49654:182::-;49712:16;;;;49708:121;;;49767:5;;-1:-1:-1;;;;;49767:5:0;49753:10;:19;49745:38;;;;;-1:-1:-1;;;49745:38:0;;;;;;;;;;;;-1:-1:-1;;;49745:38:0;;;;;;;;;;;;;;40491:86;40538:4;40562:7;-1:-1:-1;;;40562:7:0;;;;;40491:86::o;46753:23::-;;;-1:-1:-1;;;;;46753:23:0;;:::o;44063:86::-;38430:12;:10;:12::i;:::-;-1:-1:-1;;;;;38419:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38419:23:0;;38411:68;;;;;-1:-1:-1;;;38411:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38411:68:0;;;;;;;;;;;;;;;44127:5:::1;:14:::0;;-1:-1:-1;;;;;;44127:14:0::1;-1:-1:-1::0;;;;;44127:14:0;;;::::1;::::0;;;::::1;::::0;;44063:86::o;46082:77::-;;;;;;-1:-1:-1;;;;;46082:77:0;;:::o;38850:148::-;38430:12;:10;:12::i;:::-;-1:-1:-1;;;;;38419:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38419:23:0;;38411:68;;;;;-1:-1:-1;;;38411:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38411:68:0;;;;;;;;;;;;;;;38957:1:::1;38941:6:::0;;38920:40:::1;::::0;-1:-1:-1;;;;;38941:6:0;;::::1;::::0;38920:40:::1;::::0;38957:1;;38920:40:::1;38988:1;38971:19:::0;;-1:-1:-1;;;;;;38971:19:0::1;::::0;;38850:148::o;52427:113::-;52469:7;52496:36;52516:15;:13;:15::i;:::-;52496;:13;:15::i;:::-;:19;;:36::i;:::-;52489:43;;52427:113;:::o;43335:92::-;43152:7;:5;:7::i;:::-;-1:-1:-1;;;;;43138:21:0;:10;-1:-1:-1;;;;;43138:21:0;;:45;;;-1:-1:-1;43177:6:0;;-1:-1:-1;;;;;43177:6:0;43163:10;:20;43138:45;43130:66;;;;;-1:-1:-1;;;43130:66:0;;;;;;;;;;;;-1:-1:-1;;;43130:66:0;;;;;;;;;;;;;;;43403:6:::1;:16:::0;;-1:-1:-1;;;;;;43403:16:0::1;-1:-1:-1::0;;;;;43403:16:0;;;::::1;::::0;;;::::1;::::0;;43335:92::o;44753:41::-;44791:3;44753:41;:::o;54644:95::-;43152:7;:5;:7::i;:::-;-1:-1:-1;;;;;43138:21:0;:10;-1:-1:-1;;;;;43138:21:0;;:45;;;-1:-1:-1;43177:6:0;;-1:-1:-1;;;;;43177:6:0;43163:10;:20;43138:45;43130:66;;;;;-1:-1:-1;;;43130:66:0;;;;;;;;;;;;-1:-1:-1;;;43130:66:0;;;;;;;;;;;;;;;54691:8:::1;:6;:8::i;:::-;54712:19;:17;:19::i;46783:23::-:0;;;-1:-1:-1;;;;;46783:23:0;;:::o;46903:28::-;;;;;;:::o;44994:30::-;;;;:::o;38199:87::-;38245:7;38272:6;-1:-1:-1;;;;;38272:6:0;38199:87;:::o;42293:32::-;;;-1:-1:-1;;;;;42293:32:0;;:::o;45033:25::-;;;;:::o;53241:511::-;53284:7;53304:17;53324:18;:16;:18::i;:::-;53304:38;-1:-1:-1;53353:17:0;53385:13;;53381:291;;53437:9;;53419:74;;;-1:-1:-1;;;53419:74:0;;;;;;;;;;;;;;53473:19;53419:74;;;;;;;;-1:-1:-1;;;;;53437:9:0;;;;53419:42;;53462:9;;53473:19;;53419:74;;;;;;;;53473:19;;53419:74;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53419:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53419:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53419:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53419:74:0;;;;;;;;;;;;-1:-1:-1;53419:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53415:246;;;;;53593:9;53621:1;53603:9;:16;:19;53593:30;;;;;;;;;;;;;;53581:42;;53511:128;53415:246;53691:53;44832:4;53691:40;53723:7;;53691:27;53713:4;53691:17;53705:2;53691:9;:13;;:17;;;;:::i;:27::-;:31;;:40::i;:53::-;53684:60;;;;53241:511;:::o;55672:106::-;55718:16;55754;55747:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55747:23:0;;;;;;;;;;;;;;;;;;;;;;55672:106;:::o;46037:36::-;;;;;;:::o;44284:134::-;38430:12;:10;:12::i;:::-;-1:-1:-1;;;;;38419:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38419:23:0;;38411:68;;;;;-1:-1:-1;;;38411:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38411:68:0;;;;;;;;;;;;;;;44372:17:::1;:38:::0;;-1:-1:-1;;;;;;44372:38:0::1;-1:-1:-1::0;;;;;44372:38:0;;;::::1;::::0;;;::::1;::::0;;44284:134::o;45339:154::-;43152:7;:5;:7::i;:::-;-1:-1:-1;;;;;43138:21:0;:10;-1:-1:-1;;;;;43138:21:0;;:45;;;-1:-1:-1;43177:6:0;;-1:-1:-1;;;;;43177:6:0;43163:10;:20;43138:45;43130:66;;;;;-1:-1:-1;;;43130:66:0;;;;;;;;;;;;-1:-1:-1;;;43130:66:0;;;;;;;;;;;;;;;44933:2:::1;45417:4;:26;;45409:43;;;::::0;;-1:-1:-1;;;45409:43:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;45409:43:0;;;;;;;;;;;;;::::1;;45465:13;:20:::0;45339:154::o;42175:21::-;;;-1:-1:-1;;;;;42175:21:0;;:::o;44801:35::-;44832:4;44801:35;:::o;46988:36::-;;;;;;;;;;52607:118;52687:4;;52680:37;;;-1:-1:-1;;;52680:37:0;;52711:4;52680:37;;;;;;52653:7;;-1:-1:-1;;;;;52687:4:0;;52680:22;;:37;;;;;;;;;;;;;;52687:4;52680:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52680:37:0;;-1:-1:-1;52607:118:0;:::o;43572:155::-;43658:10;;-1:-1:-1;;;;;43658:10:0;43644;:24;43636:48;;;;;-1:-1:-1;;;43636:48:0;;;;;;;;;;;;-1:-1:-1;;;43636:48:0;;;;;;;;;;;;;;;43695:10;:24;;-1:-1:-1;;;;;;43695:24:0;-1:-1:-1;;;;;43695:24:0;;;;;;;;;;43572:155::o;48776:187::-;40817:8;:6;:8::i;:::-;40816:9;40808:38;;;;;-1:-1:-1;;;40808:38:0;;;;;;;;;;;;-1:-1:-1;;;40808:38:0;;;;;;;;;;;;;;;48849:1:::1;48831:15;:13;:15::i;:::-;:19;48827:129;;;48867:4;::::0;48880:6:::1;::::0;-1:-1:-1;;;;;48867:4:0;;::::1;::::0;:12:::1;::::0;48888:15:::1;:13;:15::i;:::-;48867:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;48924:20;48932:11;:9;:11::i;:::-;48924:20;::::0;;;;;;;;;;::::1;::::0;;::::1;48776:187::o:0;45065:57::-;;;;:::o;50063:85::-;43152:7;:5;:7::i;:::-;-1:-1:-1;;;;;43138:21:0;:10;-1:-1:-1;;;;;43138:21:0;;:45;;;-1:-1:-1;43177:6:0;;-1:-1:-1;;;;;43177:6:0;43163:10;:20;43138:45;43130:66;;;;;-1:-1:-1;;;43130:66:0;;;;;;;;;;;;-1:-1:-1;;;43130:66:0;;;;;;;;;;;;;;43859:102;38430:12;:10;:12::i;:::-;-1:-1:-1;;;;;38419:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38419:23:0;;38411:68;;;;;-1:-1:-1;;;38411:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38411:68:0;;;;;;;;;;;;;;;43931:9:::1;:22:::0;;-1:-1:-1;;;;;;43931:22:0::1;-1:-1:-1::0;;;;;43931:22:0;;;::::1;::::0;;;::::1;::::0;;43859:102::o;44891:44::-;44933:2;44891:44;:::o;53011:173::-;53110:4;;53129:6;;53110:41;;;-1:-1:-1;;;;;;53110:41:0;;;;;;;;;53145:4;53110:41;;;;;53060:7;;53082:24;;-1:-1:-1;;;;;53110:4:0;;;;:18;;:41;;;;;53060:7;;53110:41;;;;;;;;:4;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53110:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53110:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53110:41:0;;;;;;;;;;;;-1:-1:-1;53110:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53110:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53110:41:0;;;;;;-1:-1:-1;53110:41:0;;;;;;;;;;-1:-1:-1;53110:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53110:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53110:41:0;;;;;;;;;;;;-1:-1:-1;53110:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53110:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;53110:41:0;;;;;;;;;;;;-1:-1:-1;53110:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53077:74;;;;;53166:7;53174:1;53166:10;;;;;;;;;;;;;;53159:17;;;53011:173;:::o;46938:26::-;;;;:::o;46699:21::-;;;-1:-1:-1;;;;;46699:21:0;;:::o;39153:244::-;38430:12;:10;:12::i;:::-;-1:-1:-1;;;;;38419:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38419:23:0;;38411:68;;;;;-1:-1:-1;;;38411:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;38411:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;39242:22:0;::::1;39234:73;;;;-1:-1:-1::0;;;39234:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39344:6;::::0;;39323:38:::1;::::0;-1:-1:-1;;;;;39323:38:0;;::::1;::::0;39344:6;::::1;::::0;39323:38:::1;::::0;::::1;39372:6;:17:::0;;-1:-1:-1;;;;;;39372:17:0::1;-1:-1:-1::0;;;;;39372:17:0;;;::::1;::::0;;;::::1;::::0;;39153:244::o;54030:133::-;43152:7;:5;:7::i;:::-;-1:-1:-1;;;;;43138:21:0;:10;-1:-1:-1;;;;;43138:21:0;;:45;;;-1:-1:-1;43177:6:0;;-1:-1:-1;;;;;43177:6:0;43163:10;:20;43138:45;43130:66;;;;;-1:-1:-1;;;43130:66:0;;;;;;;;;;;;-1:-1:-1;;;43130:66:0;;;;;;;;;;;;;;;54117:17:::1;:38:::0;;-1:-1:-1;;54117:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54030:133::o;54263:188::-;54328:5;;-1:-1:-1;;;;;54328:5:0;54314:10;:19;54306:38;;;;;-1:-1:-1;;;54306:38:0;;;;;;;;;;;;-1:-1:-1;;;54306:38:0;;;;;;;;;;;;;;;54357:4;;54380:6;;54357:30;;;-1:-1:-1;;;54357:30:0;;;;;;;;;;-1:-1:-1;;;;;54357:4:0;;;;:22;;:30;;;;;:4;;:30;;;;;;;;:4;;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54405:4:0;;54420:5;;-1:-1:-1;;;;;54405:4:0;;;;-1:-1:-1;54398:21:0;;-1:-1:-1;54420:5:0;54427:15;:13;:15::i;:::-;54398:45;;;;;;;;;;;;;-1:-1:-1;;;;;54398:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54263:188:0:o;42266:20::-;;;-1:-1:-1;;;;;42266:20:0;;:::o;47071:33::-;;;;;;;;;;31685:622;32055:10;;;32054:62;;-1:-1:-1;32071:39:0;;;-1:-1:-1;;;32071:39:0;;32095:4;32071:39;;;;-1:-1:-1;;;;;32071:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32071:39:0;:44;32054:62;32046:152;;;;-1:-1:-1;;;32046:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32236:62;;;-1:-1:-1;;;;;32236:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32236:62:0;-1:-1:-1;;;32236:62:0;;;32209:90;;32229:5;;32209:19;:90::i;:::-;31685:622;;;:::o;26021:195::-;26124:12;26156:52;26178:6;26186:4;26192:1;26195:12;26156:21;:52::i;:::-;26149:59;;26021:195;;;;;;:::o;23103:422::-;23470:20;23509:8;;;23103:422::o;50211:488::-;40817:8;:6;:8::i;:::-;40816:9;40808:38;;;;;-1:-1:-1;;;40808:38:0;;;;;;;;;;;;-1:-1:-1;;;40808:38:0;;;;;;;;;;;;;;;50289:4:::1;::::0;50302:6:::1;::::0;50289:23:::1;::::0;;-1:-1:-1;;;50289:23:0;;::::1;::::0;::::1;::::0;;;;:4:::1;:23:::0;;;;;;;;-1:-1:-1;;;;;50289:4:0;;::::1;::::0;:12:::1;::::0;:23;;;;;:4;:23;;;;;;:4;;:23;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;50350:6:0::1;::::0;50343:39:::1;::::0;;-1:-1:-1;;;50343:39:0;;50376:4:::1;50343:39;::::0;::::1;::::0;;;50323:17:::1;::::0;-1:-1:-1;;;;;;50350:6:0;;::::1;::::0;-1:-1:-1;50343:24:0::1;::::0;:39;;;;;::::1;::::0;;;;;;;;50350:6;50343:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;50343:39:0;;-1:-1:-1;50397:13:0;;50393:299:::1;;50427:28;50438:16;50427:10;:28::i;:::-;50470:14;:12;:14::i;:::-;50499:21;50523:15;:13;:15::i;:::-;50499:39;;50553:9;:7;:9::i;:::-;50593:15;50579:11;:29:::0;50641:10:::1;50628:52;50653:13:::0;50668:11:::1;:9;:11::i;:::-;50628:52;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;;::::1;50393:299;40857:1;50211:488:::0;:::o;7087:158::-;7145:7;7178:1;7173;:6;;7165:49;;;;;-1:-1:-1;;;7165:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7232:5:0;;;7087:158;;;;;:::o;7504:220::-;7562:7;7586:6;7582:20;;-1:-1:-1;7601:1:0;7594:8;;7582:20;7625:5;;;7629:1;7625;:5;:1;7649:5;;;;;:10;7641:56;;;;-1:-1:-1;;;7641:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8202:153;8260:7;8292:1;8288;:5;8280:44;;;;;-1:-1:-1;;;8280:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8346:1;8342;:5;;;;;;;8202:153;-1:-1:-1;;;8202:153:0:o;31026:177::-;31136:58;;;-1:-1:-1;;;;;31136:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31136:58:0;-1:-1:-1;;;31136:58:0;;;31109:86;;31129:5;;31109:19;:86::i;41550:120::-;41094:8;:6;:8::i;:::-;41086:41;;;;;-1:-1:-1;;;41086:41:0;;;;;;;;;;;;-1:-1:-1;;;41086:41:0;;;;;;;;;;;;;;;41619:5:::1;41609:15:::0;;-1:-1:-1;;;;41609:15:0::1;::::0;;41640:22:::1;41649:12;:10;:12::i;:::-;41640:22;::::0;;-1:-1:-1;;;;;41640:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;41550:120::o:0;54876:404::-;54956:4;;54930;;54923:52;;-1:-1:-1;;;;;54930:4:0;;;;54956;-1:-1:-1;;54923:24:0;:52::i;:::-;55013:9;;54993:6;;54986:50;;-1:-1:-1;;;;;54993:6:0;;;;55013:9;-1:-1:-1;;54986:26:0;:50::i;:::-;55078:9;;55056:8;;55049:42;;-1:-1:-1;;;;;55056:8:0;;;;55078:9;;55049:28;:42::i;:::-;55131:9;;55109:8;;55102:52;;-1:-1:-1;;;;;55109:8:0;;;;55131:9;-1:-1:-1;;55102:28:0;:52::i;:::-;55196:9;;55174:8;;55167:42;;-1:-1:-1;;;;;55174:8:0;;;;55196:9;;55167:28;:42::i;:::-;55249:9;;55227:8;;55220:52;;-1:-1:-1;;;;;55227:8:0;;;;55249:9;-1:-1:-1;;55220:28:0;:52::i;667:106::-;755:10;667:106;:::o;6625:179::-;6683:7;6715:5;;;6739:6;;;;6731:46;;;;;-1:-1:-1;;;6731:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;41291:118;40817:8;:6;:8::i;:::-;40816:9;40808:38;;;;;-1:-1:-1;;;40808:38:0;;;;;;;;;;;;-1:-1:-1;;;40808:38:0;;;;;;;;;;;;;;;41351:7:::1;:14:::0;;-1:-1:-1;;;;41351:14:0::1;-1:-1:-1::0;;;41351:14:0::1;::::0;;41381:20:::1;41388:12;:10;:12::i;55288:256::-:0;55370:4;;55344;;55337:42;;-1:-1:-1;;;;;55344:4:0;;;;55370;;55337:24;:42::i;:::-;55417:9;;55397:6;;55390:40;;-1:-1:-1;;;;;55397:6:0;;;;55417:9;;55390:26;:40::i;:::-;55470:9;;55448:8;;55441:42;;-1:-1:-1;;;;;55448:8:0;;;;55470:9;;55441:28;:42::i;:::-;55523:9;;55501:8;;55494:42;;-1:-1:-1;;;;;55501:8:0;;;;55523:9;;55494:28;:42::i;33331:761::-;33755:23;33781:69;33809:4;33781:69;;;;;;;;;;;;;;;;;33789:5;-1:-1:-1;;;;;33781:27:0;;;:69;;;;;:::i;:::-;33865:17;;33755:95;;-1:-1:-1;33865:21:0;33861:224;;34007:10;33996:30;;;;;;;;;;;;;;;-1:-1:-1;33996:30:0;33988:85;;;;-1:-1:-1;;;33988:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27073:530;27200:12;27258:5;27233:21;:30;;27225:81;;;;-1:-1:-1;;;27225:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27325:18;27336:6;27325:10;:18::i;:::-;27317:60;;;;;-1:-1:-1;;;27317:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27451:12;27465:23;27492:6;-1:-1:-1;;;;;27492:11:0;27512:5;27520:4;27492:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;27492:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27450:75;;;;27543:52;27561:7;27570:10;27582:12;27543:17;:52::i;:::-;27536:59;27073:530;-1:-1:-1;;;;;;;27073:530:0:o;50732:847::-;50824:6;;50817:39;;;-1:-1:-1;;;50817:39:0;;50850:4;50817:39;;;;;;50798:16;;50817:57;;50869:4;;50817:47;;50861:2;;-1:-1:-1;;;;;50824:6:0;;;;50817:24;;:39;;;;;;;;;;;;;;;50824:6;50817:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50817:39:0;;:43;:47::i;:57::-;50798:76;;50903:9;;;;;;;;;-1:-1:-1;;;;;50903:9:0;-1:-1:-1;;;;;50885:53:0;;50939:8;50949:1;50952:19;50981:4;50988:3;50885:107;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50885:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50885:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50885:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;50885:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;50885:107:0;;;;;;;;;;;;-1:-1:-1;50885:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;50885:107:0;;;;;;;;51032:6;;-1:-1:-1;;;51025:39:0;;51058:4;51025:39;;;;;;51005:17;;-1:-1:-1;;;;;;51032:6:0;;;;-1:-1:-1;51025:24:0;;-1:-1:-1;51025:39:0;;;;;-1:-1:-1;51025:39:0;;-1:-1:-1;51025:39:0;;;;;;;51032:6;51025:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51025:39:0;51115:7;;51025:39;;-1:-1:-1;51077:21:0;;51101:35;;44832:4;;51101:22;;51025:39;;51101:13;:22::i;:35::-;51154:6;;51077:59;;-1:-1:-1;51147:60:0;;-1:-1:-1;;;;;51154:6:0;51175:16;51077:59;51147:27;:60::i;:::-;51220:22;51245:36;44832:4;51245:23;51259:8;;51245:9;:13;;:23;;;;:::i;:36::-;51320:17;;51299:6;;51220:61;;-1:-1:-1;51292:62:0;;-1:-1:-1;;;;;51299:6:0;;;;51320:17;51220:61;51292:27;:62::i;:::-;51367:21;51391:42;44832:4;51391:29;:9;44791:3;51391:13;:29::i;:42::-;51472:10;;51451:6;;51367:66;;-1:-1:-1;51444:54:0;;-1:-1:-1;;;;;51451:6:0;;;;51472:10;51367:66;51444:27;:54::i;:::-;51514:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50732:847;;;;;;:::o;51642:711::-;51714:6;;51707:39;;;-1:-1:-1;;;51707:39:0;;51740:4;51707:39;;;;;;51686:18;;51707:46;;51751:1;;-1:-1:-1;;;;;51714:6:0;;;;51707:24;;:39;;;;;;;;;;;;;;;51714:6;51707:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51707:39:0;;:43;:46::i;:::-;51782:6;;51770:8;;51686:67;;-1:-1:-1;;;;;;51770:8:0;;;51782:6;;51770:18;51766:157;;51823:9;;51805:106;;-1:-1:-1;;;51805:106:0;;;;;;;;51823:9;51805:106;;;;;;51900:4;51805:106;;;;;;51907:3;51805:106;;;;;;;;;;;;;51874:16;51805:106;;;;;;;;-1:-1:-1;;;;;51823:9:0;;;;51805:53;;51859:10;;51874:16;;51900:4;51907:3;51805:106;;;;;;51874:16;;51805:106;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51805:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51805:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;51805:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;51805:106:0;;;;;;;;;;;;-1:-1:-1;51805:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51766:157;51951:6;;51939:8;;-1:-1:-1;;;;;51939:8:0;;;51951:6;;51939:18;51935:157;;51992:9;;51974:106;;-1:-1:-1;;;51974:106:0;;;;;;;;51992:9;51974:106;;;;;;52069:4;51974:106;;;;;;52076:3;51974:106;;;;;;;;;;;;;52043:16;51974:106;;;;;;;;-1:-1:-1;;;;;51992:9:0;;;;51974:53;;52028:10;;52043:16;;52069:4;52076:3;51974:106;;;;;;52043:16;;51974:106;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51974:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51974:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;51974:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;51974:106:0;;;;;;;;;;;;-1:-1:-1;51974:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51935:157;52128:8;;52121:41;;;-1:-1:-1;;;52121:41:0;;52156:4;52121:41;;;;;;52104:14;;-1:-1:-1;;;;;52128:8:0;;52121:26;;:41;;;;;;;;;;;;;;52128:8;52121:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52121:41:0;52197:8;;52190:41;;;-1:-1:-1;;;52190:41:0;;52225:4;52190:41;;;;;;52121;;-1:-1:-1;52173:14:0;;-1:-1:-1;;;;;52197:8:0;;;;52190:26;;:41;;;;;52121;;52190;;;;;;;;52197:8;52190:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52190:41:0;52260:9;;52284:8;;52294;;52242:103;;;-1:-1:-1;;;52242:103:0;;-1:-1:-1;;;;;52284:8:0;;;52242:103;;;;52294:8;;;52242:103;;;;;;;;;;;;;;;;52260:9;52242:103;;;;;;;;;;52334:4;52242:103;;;;52341:3;52242:103;;;;;52190:41;;-1:-1:-1;52260:9:0;;;52242:41;;:103;;;;;;;;;;;;;;;52260:9;;52242:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51642:711:0:o;29613:742::-;29728:12;29757:7;29753:595;;;-1:-1:-1;29788:10:0;29781:17;;29753:595;29902:17;;:21;29898:439;;30165:10;30159:17;30226:15;30213:10;30209:2;30205:19;30198:44;30113:148;30308:12;30301:20;;-1:-1:-1;;;30301:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://ea9c7aedcc58b26780683cefaa075228853b2a938e8c9321aa23a1c4aff5e34a
Loading...
Loading
Loading...
Loading
OVERVIEW
Strategy for beamswap-usdc-wglmrLoading...
Loading
Net Worth in USD
$1.85
Net Worth in GLMR
Token Allocations
CUSD
53.21%
SUSHI
46.79%
CELO
0.00%
Multichain Portfolio | 35 Chains
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.