Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
This contract has been verified via Sourcify.
View contract in Sourcify repository
- Contract name:
- OnxAlphaVault
- Optimization enabled
- true
- Compiler version
- v0.7.3+commit.9bfce1f6
- Optimization runs
- 100
- EVM Version
- istanbul
- Verified at
- 2026-04-22T20:01:18.667450Z
contracts/OnxAlphaVault.sol
pragma solidity 0.7.3;
import "@openzeppelin/contracts-upgradeable/math/MathUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/math/SafeMathUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/SafeERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol";
import "./interface/IStrategy.sol";
import "./interface/IVault.sol";
import "./interface/IController.sol";
import "./interface/IUpgradeSource.sol";
import "./ControllableInit.sol";
import "./VaultStorage.sol";
contract OnxAlphaVault is ERC20Upgradeable, ControllableInit, VaultStorage {
using SafeERC20Upgradeable for IERC20Upgradeable;
using AddressUpgradeable for address;
using SafeMathUpgradeable for uint256;
event Withdraw(address indexed beneficiary, uint256 amount);
event Deposit(address indexed beneficiary, uint256 amount);
event Invest(uint256 amount);
constructor() public {}
function initializeVault(
address _storage,
address _underlying
) public initializer {
__ERC20_init(
string(abi.encodePacked("alpha_", ERC20Upgradeable(_underlying).symbol())),
string(abi.encodePacked("alpha", ERC20Upgradeable(_underlying).symbol()))
);
_setupDecimals(ERC20Upgradeable(_underlying).decimals());
ControllableInit.initialize(
_storage
);
uint256 underlyingUnit = 10 ** uint256(ERC20Upgradeable(address(_underlying)).decimals());
uint256 implementationDelay = 12 hours;
uint256 strategyChangeDelay = 12 hours;
VaultStorage.initialize(
_underlying,
underlyingUnit,
implementationDelay,
strategyChangeDelay
);
}
function strategy() public view returns(address) {
return _strategy();
}
function underlying() public view returns(address) {
return _underlying();
}
function underlyingUnit() public view returns(uint256) {
return _underlyingUnit();
}
function nextImplementation() public view returns(address) {
return _nextImplementation();
}
function nextImplementationTimestamp() public view returns(uint256) {
return _nextImplementationTimestamp();
}
function nextImplementationDelay() public view returns(uint256) {
return _nextImplementationDelay();
}
modifier whenStrategyDefined() {
require(address(strategy()) != address(0), "undefined strategy");
_;
}
function setStrategy(address _strategy) public onlyControllerOrGovernance {
require(_strategy != address(0), "empty strategy");
require(IStrategy(_strategy).underlying() == address(underlying()), "underlying not match");
require(IStrategy(_strategy).vault() == address(this), "strategy vault not match");
_setStrategy(_strategy);
IERC20Upgradeable(underlying()).safeApprove(address(strategy()), 0);
IERC20Upgradeable(underlying()).safeApprove(address(strategy()), uint256(~0));
}
// Only smart contracts will be affected by this modifier
modifier defense() {
require(
(msg.sender == tx.origin) || // If it is a normal user and not smart contract,
// then the requirement will pass
!IController(controller()).greyList(msg.sender), // If it is a smart contract, then
"grey listed" // make sure that it is not on our greyList.
);
_;
}
function stakeOnsenFarm() whenStrategyDefined onlyControllerOrGovernance external {
invest();
IStrategy(strategy()).stakeOnsenFarm();
}
function stakeSushiBar() whenStrategyDefined onlyControllerOrGovernance external {
IStrategy(strategy()).stakeSushiBar();
}
function stakeOnxFarm() whenStrategyDefined onlyControllerOrGovernance external {
IStrategy(strategy()).stakeOnxFarm();
}
function stakeOnx() whenStrategyDefined onlyControllerOrGovernance external {
IStrategy(strategy()).stakeOnx();
}
function doHardWork() whenStrategyDefined external {
invest();
IStrategy(strategy()).stakeOnsenFarm();
IStrategy(strategy()).stakeSushiBar();
IStrategy(strategy()).stakeOnxFarm();
IStrategy(strategy()).stakeOnx();
}
function doHardWorkXSushi() whenStrategyDefined external {
invest();
IStrategy(strategy()).stakeOnsenFarm();
IStrategy(strategy()).stakeSushiBar();
}
function doHardWorkSOnx() whenStrategyDefined external {
IStrategy(strategy()).stakeOnxFarm();
IStrategy(strategy()).stakeOnx();
}
function underlyingBalanceInVault() view public returns (uint256) {
return IERC20Upgradeable(underlying()).balanceOf(address(this));
}
function underlyingBalanceWithInvestment() view public returns (uint256) {
if (address(strategy()) == address(0)) {
// initial state, when not set
return underlyingBalanceInVault();
}
return underlyingBalanceInVault().add(IStrategy(strategy()).investedUnderlyingBalance());
}
function underlyingBalanceWithInvestmentForHolder(address holder) view external returns (uint256) {
if (totalSupply() == 0) {
return 0;
}
return underlyingBalanceWithInvestment()
.mul(balanceOf(holder))
.div(totalSupply());
}
function rebalance() external onlyControllerOrGovernance {
withdrawAll();
invest();
}
function invest() internal whenStrategyDefined {
uint256 availableAmount = underlyingBalanceInVault();
if (availableAmount > 0) {
IERC20Upgradeable(underlying()).safeTransfer(address(strategy()), availableAmount);
emit Invest(availableAmount);
}
}
function deposit(uint256 amount) external defense {
_deposit(amount, msg.sender, msg.sender);
}
function depositFor(uint256 amount, address holder) public defense {
_deposit(amount, msg.sender, holder);
}
function withdrawAll() public onlyControllerOrGovernance whenStrategyDefined {
IStrategy(strategy()).withdrawAllToVault();
}
function withdraw(uint256 numberOfShares) external {
require(totalSupply() > 0, "no shares");
IStrategy(strategy()).updateAccPerShare(msg.sender);
IStrategy(strategy()).withdrawReward(msg.sender);
if (numberOfShares > 0) {
uint256 totalSupply = totalSupply();
_burn(msg.sender, numberOfShares);
uint256 underlyingAmountToWithdraw = underlyingBalanceWithInvestment()
.mul(numberOfShares)
.div(totalSupply);
if (underlyingAmountToWithdraw > underlyingBalanceInVault()) {
// withdraw everything from the strategy to accurately check the share value
if (numberOfShares == totalSupply) {
IStrategy(strategy()).withdrawAllToVault();
} else {
uint256 missing = underlyingAmountToWithdraw.sub(underlyingBalanceInVault());
IStrategy(strategy()).withdrawToVault(missing);
}
// recalculate to improve accuracy
underlyingAmountToWithdraw = MathUpgradeable.min(underlyingBalanceWithInvestment()
.mul(numberOfShares)
.div(totalSupply), underlyingBalanceInVault());
}
IERC20Upgradeable(underlying()).safeTransfer(msg.sender, underlyingAmountToWithdraw);
// update the withdrawal amount for the holder
emit Withdraw(msg.sender, underlyingAmountToWithdraw);
}
IStrategy(strategy()).updateUserRewardDebts(msg.sender);
}
function _deposit(uint256 amount, address sender, address beneficiary) internal {
require(beneficiary != address(0), "holder undefined");
IStrategy(strategy()).updateAccPerShare(beneficiary);
IStrategy(strategy()).withdrawReward(beneficiary);
if (amount > 0) {
uint256 toMint = totalSupply() == 0
? amount
: amount.mul(totalSupply()).div(underlyingBalanceWithInvestment());
_mint(beneficiary, toMint);
IERC20Upgradeable(underlying()).safeTransferFrom(sender, address(this), amount);
// update the contribution amount for the beneficiary
emit Deposit(beneficiary, amount);
}
IStrategy(strategy()).updateUserRewardDebts(beneficiary);
}
function scheduleUpgrade(address impl) public onlyGovernance {
_setNextImplementation(impl);
_setNextImplementationTimestamp(block.timestamp.add(nextImplementationDelay()));
}
function shouldUpgrade() external view returns (bool, address) {
return (
nextImplementationTimestamp() != 0
&& block.timestamp > nextImplementationTimestamp()
&& nextImplementation() != address(0),
nextImplementation()
);
}
function finalizeUpgrade() external onlyGovernance {
_setNextImplementation(address(0));
_setNextImplementationTimestamp(0);
}
}
/
pragma solidity 0.7.3;
contract Storage {
address public governance;
address public controller;
constructor() public {
governance = msg.sender;
}
modifier onlyGovernance() {
require(isGovernance(msg.sender), "Not governance");
_;
}
function setGovernance(address _governance) public onlyGovernance {
require(_governance != address(0), "new governance shouldn't be empty");
governance = _governance;
}
function setController(address _controller) public onlyGovernance {
require(_controller != address(0), "new controller shouldn't be empty");
controller = _controller;
}
function isGovernance(address account) public view returns (bool) {
return account == governance;
}
function isController(address account) public view returns (bool) {
return account == controller;
}
}
/SafeERC20Upgradeable.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "./IERC20Upgradeable.sol";
import "../../math/SafeMathUpgradeable.sol";
import "../../utils/AddressUpgradeable.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20Upgradeable {
using SafeMathUpgradeable for uint256;
using AddressUpgradeable for address;
function safeTransfer(IERC20Upgradeable token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(IERC20Upgradeable 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(IERC20Upgradeable 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(IERC20Upgradeable 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(IERC20Upgradeable 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(IERC20Upgradeable 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");
}
}
}
/IERC20Upgradeable.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20Upgradeable {
/**
* @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);
}
/ERC20Upgradeable.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "../../utils/ContextUpgradeable.sol";
import "./IERC20Upgradeable.sol";
import "../../math/SafeMathUpgradeable.sol";
import "../../proxy/Initializable.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* 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 ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable {
using SafeMathUpgradeable 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.
*/
function __ERC20_init(string memory name_, string memory symbol_) internal initializer {
__Context_init_unchained();
__ERC20_init_unchained(name_, symbol_);
}
function __ERC20_init_unchained(string memory name_, string memory symbol_) internal initializer {
_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 { }
uint256[44] private __gap;
}
/
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "../proxy/Initializable.sol";
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with 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 ContextUpgradeable is Initializable {
function __Context_init() internal initializer {
__Context_init_unchained();
}
function __Context_init_unchained() internal initializer {
}
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;
}
uint256[50] private __gap;
}
/
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
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);
}
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);
}
}
}
}
/
// SPDX-License-Identifier: MIT
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 SafeMathUpgradeable {
/**
* @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;
}
}
/
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library MathUpgradeable {
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a >= b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow, so we distribute
return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
}
}
/
// SPDX-License-Identifier: MIT
// solhint-disable-next-line compiler-version
pragma solidity >=0.4.24 <0.8.0;
import "../utils/AddressUpgradeable.sol";
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {UpgradeableProxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
*/
bool private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Modifier to protect an initializer function from being invoked twice.
*/
modifier initializer() {
require(_initializing || _isConstructor() || !_initialized, "Initializable: contract is already initialized");
bool isTopLevelCall = !_initializing;
if (isTopLevelCall) {
_initializing = true;
_initialized = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
}
}
/// @dev Returns true if and only if the function is running in the constructor
function _isConstructor() private view returns (bool) {
return !AddressUpgradeable.isContract(address(this));
}
}
/
pragma solidity 0.7.3;
interface IUpgradeSource {
function shouldUpgrade() external view returns (bool, address);
function finalizeUpgrade() external;
}
/
pragma solidity 0.7.3;
interface IController {
// [Grey list]
// An EOA can safely interact with the system no matter what.
// If you're using Metamask, you're using an EOA.
// Only smart contracts may be affected by this grey list.
//
// This contract will not be able to ban any EOA from the system
// even if an EOA is being added to the greyList, he/she will still be able
// to interact with the whole system as if nothing happened.
// Only smart contracts will be affected by being added to the greyList.
// This grey list is only used in Vault.sol, see the code there for reference
function greyList(address _target) external view returns(bool);
function addVaultAndStrategy(address _vault, address _strategy) external;
function stakeOnsenFarm(address _vault) external;
function stakeSushiBar(address _vault) external;
function stakeOnxFarm(address _vault) external;
function stakeOnx(address _vault) external;
function hasVault(address _vault) external returns(bool);
function salvage(address _token, uint256 amount) external;
function salvageStrategy(address _strategy, address _token, uint256 amount) external;
}
/
pragma solidity 0.7.3;
interface IStrategy {
function unsalvagableTokens(address tokens) external view returns (bool);
function underlying() external view returns (address);
function vault() external view returns (address);
function withdrawAllToVault() external;
function withdrawToVault(uint256 amount) external;
function investedUnderlyingBalance() external view returns (uint256); // itsNotMuch()
// should only be called by controller
function salvage(address recipient, address token, uint256 amount) external;
function stakeOnsenFarm() external;
function stakeSushiBar() external;
function stakeOnxFarm() external;
function stakeOnx() external;
function withdrawPendingTeamFund() external;
function withdrawPendingTreasuryFund() external;
function withdrawXSushiToStrategicWallet() external;
function updateAccPerShare(address user) external;
function updateUserRewardDebts(address user) external;
function pendingReward() external view returns (uint256);
function pendingRewardOfUser(address user) external view returns (uint256);
function withdrawReward(address user) external;
}
/
//SPDX-License-Identifier: Unlicense
pragma solidity 0.7.3;
interface IVault {
function underlyingBalanceInVault() external view returns (uint256);
function underlyingBalanceWithInvestment() external view returns (uint256);
// function store() external view returns (address);
function underlying() external view returns (address);
function strategy() external view returns (address);
function setStrategy(address _strategy) external;
function deposit(uint256 amountWei) external;
function depositFor(uint256 amountWei, address holder) external;
function withdrawAll() external;
function withdraw(uint256 numberOfShares) external;
function underlyingBalanceWithInvestmentForHolder(address holder) view external returns (uint256);
function stakeOnsenFarm() external;
function stakeSushiBar() external;
function stakeOnxFarm() external;
function stakeOnx() external;
function withdrawPendingTeamFund() external;
function withdrawPendingTreasuryFund() external;
}
/
pragma solidity 0.7.3;
import "./GovernableInit.sol";
// A clone of Governable supporting the Initializable interface and pattern
contract ControllableInit is GovernableInit {
constructor() public {
}
function initialize(address _storage) public override initializer {
GovernableInit.initialize(_storage);
}
modifier onlyController() {
require(Storage(_storage()).isController(msg.sender), "Not a controller");
_;
}
modifier onlyControllerOrGovernance(){
require((Storage(_storage()).isController(msg.sender) || Storage(_storage()).isGovernance(msg.sender)),
"The caller must be controller or governance");
_;
}
function controller() public view returns (address) {
return Storage(_storage()).controller();
}
}
/
pragma solidity 0.7.3;
import "@openzeppelin/contracts-upgradeable/proxy/Initializable.sol";
import "./Storage.sol";
// A clone of Governable supporting the Initializable interface and pattern
contract GovernableInit is Initializable {
bytes32 internal constant _STORAGE_SLOT = 0xa7ec62784904ff31cbcc32d09932a58e7f1e4476e1d041995b37c917990b16dc;
modifier onlyGovernance() {
require(Storage(_storage()).isGovernance(msg.sender), "Not governance");
_;
}
constructor() public {
assert(_STORAGE_SLOT == bytes32(uint256(keccak256("eip1967.governableInit.storage")) - 1));
}
function initialize(address _store) public virtual initializer {
_setStorage(_store);
}
function _setStorage(address newStorage) private {
bytes32 slot = _STORAGE_SLOT;
// solhint-disable-next-line no-inline-assembly
assembly {
sstore(slot, newStorage)
}
}
function setStorage(address _store) public onlyGovernance {
require(_store != address(0), "new storage shouldn't be empty");
_setStorage(_store);
}
function _storage() internal view returns (address str) {
bytes32 slot = _STORAGE_SLOT;
// solhint-disable-next-line no-inline-assembly
assembly {
str := sload(slot)
}
}
function governance() public view returns (address) {
return Storage(_storage()).governance();
}
}
/
pragma solidity 0.7.3;
import "@openzeppelin/contracts-upgradeable/proxy/Initializable.sol";
contract VaultStorage is Initializable {
bytes32 internal constant _STRATEGY_SLOT = 0xf1a169aa0f736c2813818fdfbdc5755c31e0839c8f49831a16543496b28574ea;
bytes32 internal constant _UNDERLYING_SLOT = 0x1994607607e11d53306ef62e45e3bd85762c58d9bf38b5578bc4a258a26a7371;
bytes32 internal constant _UNDERLYING_UNIT_SLOT = 0xa66bc57d4b4eed7c7687876ca77997588987307cb13ecc23f5e52725192e5fff;
bytes32 internal constant _NEXT_IMPLEMENTATION_SLOT = 0xb1acf527cd7cd1668b30e5a9a1c0d845714604de29ce560150922c9d8c0937df;
bytes32 internal constant _NEXT_IMPLEMENTATION_TIMESTAMP_SLOT = 0x3bc747f4b148b37be485de3223c90b4468252967d2ea7f9fcbd8b6e653f434c9;
bytes32 internal constant _NEXT_IMPLEMENTATION_DELAY_SLOT = 0x82ddc3be3f0c1a6870327f78f4979a0b37b21b16736ef5be6a7a7a35e530bcf0;
bytes32 internal constant _STRATEGY_TIME_LOCK_SLOT = 0x6d02338b2e4c913c0f7d380e2798409838a48a2c4d57d52742a808c82d713d8b;
constructor() public {
assert(_STRATEGY_SLOT == bytes32(uint256(keccak256("eip1967.vaultStorage.strategy")) - 1));
assert(_UNDERLYING_SLOT == bytes32(uint256(keccak256("eip1967.vaultStorage.underlying")) - 1));
assert(_UNDERLYING_UNIT_SLOT == bytes32(uint256(keccak256("eip1967.vaultStorage.underlyingUnit")) - 1));
assert(_NEXT_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.vaultStorage.nextImplementation")) - 1));
assert(_NEXT_IMPLEMENTATION_TIMESTAMP_SLOT == bytes32(uint256(keccak256("eip1967.vaultStorage.nextImplementationTimestamp")) - 1));
assert(_NEXT_IMPLEMENTATION_DELAY_SLOT == bytes32(uint256(keccak256("eip1967.vaultStorage.nextImplementationDelay")) - 1));
assert(_STRATEGY_TIME_LOCK_SLOT == bytes32(uint256(keccak256("eip1967.vaultStorage.strategyTimeLock")) - 1));
}
function initialize(
address _underlying,
uint256 _underlyingUnit,
uint256 _implementationChangeDelay,
uint256 _strategyChangeDelay
) public initializer {
_setUnderlying(_underlying);
_setUnderlyingUnit(_underlyingUnit);
_setNextImplementationDelay(_implementationChangeDelay);
_setStrategyTimeLock(_strategyChangeDelay);
}
function _setStrategy(address _address) internal {
setAddress(_STRATEGY_SLOT, _address);
}
function _strategy() internal view returns (address) {
return getAddress(_STRATEGY_SLOT);
}
function _setUnderlying(address _address) internal {
setAddress(_UNDERLYING_SLOT, _address);
}
function _underlying() internal view returns (address) {
return getAddress(_UNDERLYING_SLOT);
}
function _setUnderlyingUnit(uint256 _value) internal {
setUint256(_UNDERLYING_UNIT_SLOT, _value);
}
function _underlyingUnit() internal view returns (uint256) {
return getUint256(_UNDERLYING_UNIT_SLOT);
}
function _setNextImplementation(address _address) internal {
setAddress(_NEXT_IMPLEMENTATION_SLOT, _address);
}
function _nextImplementation() internal view returns (address) {
return getAddress(_NEXT_IMPLEMENTATION_SLOT);
}
function _setNextImplementationTimestamp(uint256 _value) internal {
setUint256(_NEXT_IMPLEMENTATION_TIMESTAMP_SLOT, _value);
}
function _nextImplementationTimestamp() internal view returns (uint256) {
return getUint256(_NEXT_IMPLEMENTATION_TIMESTAMP_SLOT);
}
function _setNextImplementationDelay(uint256 _value) internal {
setUint256(_NEXT_IMPLEMENTATION_DELAY_SLOT, _value);
}
function _nextImplementationDelay() internal view returns (uint256) {
return getUint256(_NEXT_IMPLEMENTATION_DELAY_SLOT);
}
function _setStrategyTimeLock(uint256 _value) internal {
setUint256(_STRATEGY_TIME_LOCK_SLOT, _value);
}
function _strategyTimeLock() internal view returns (uint256) {
return getUint256(_STRATEGY_TIME_LOCK_SLOT);
}
function setAddress(bytes32 slot, address _address) private {
// solhint-disable-next-line no-inline-assembly
assembly {
sstore(slot, _address)
}
}
function setUint256(bytes32 slot, uint256 _value) private {
// solhint-disable-next-line no-inline-assembly
assembly {
sstore(slot, _value)
}
}
function getAddress(bytes32 slot) private view returns (address str) {
// solhint-disable-next-line no-inline-assembly
assembly {
str := sload(slot)
}
}
function getUint256(bytes32 slot) private view returns (uint256 str) {
// solhint-disable-next-line no-inline-assembly
assembly {
str := sload(slot)
}
}
uint256[50] private ______gap;
}
Compiler Settings
{"remappings":[],"optimizer":{"runs":100,"enabled":true},"metadata":{"bytecodeHash":"ipfs"},"libraries":{},"evmVersion":"istanbul","compilationTarget":{"contracts/OnxAlphaVault.sol":"OnxAlphaVault"}}
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Deposit","inputs":[{"type":"address","name":"beneficiary","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Invest","inputs":[{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Withdraw","inputs":[{"type":"address","name":"beneficiary","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"controller","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"deposit","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"depositFor","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"address","name":"holder","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"doHardWork","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"doHardWorkSOnx","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"doHardWorkXSushi","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"finalizeUpgrade","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"governance","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"initialize","inputs":[{"type":"address","name":"_underlying","internalType":"address"},{"type":"uint256","name":"_underlyingUnit","internalType":"uint256"},{"type":"uint256","name":"_implementationChangeDelay","internalType":"uint256"},{"type":"uint256","name":"_strategyChangeDelay","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"initialize","inputs":[{"type":"address","name":"_storage","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"initializeVault","inputs":[{"type":"address","name":"_storage","internalType":"address"},{"type":"address","name":"_underlying","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"nextImplementation","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"nextImplementationDelay","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"nextImplementationTimestamp","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"rebalance","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"scheduleUpgrade","inputs":[{"type":"address","name":"impl","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setStorage","inputs":[{"type":"address","name":"_store","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setStrategy","inputs":[{"type":"address","name":"_strategy","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"},{"type":"address","name":"","internalType":"address"}],"name":"shouldUpgrade","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"stakeOnsenFarm","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"stakeOnx","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"stakeOnxFarm","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"stakeSushiBar","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"strategy","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"underlying","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"underlyingBalanceInVault","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"underlyingBalanceWithInvestment","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"underlyingBalanceWithInvestmentForHolder","inputs":[{"type":"address","name":"holder","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"underlyingUnit","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdraw","inputs":[{"type":"uint256","name":"numberOfShares","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdrawAll","inputs":[]}]
Contract Creation Code
0x608060405234801561001057600080fd5b506140eb806100206000396000f3fe608060405234801561001057600080fd5b506004361061025e5760003560e01c80636f87bbd8116101465780639d16acfd116100c3578063a9059cbb11610087578063a9059cbb14610634578063b6b55f2514610660578063c2baf3561461067d578063c4d66de814610685578063dd62ed3e146106ab578063f77c4791146106d95761025e565b80639d16acfd146105c5578063a377610e146105f0578063a457c2d7146105f8578063a836569314610624578063a8c62e761461062c5761025e565b80638cb1d67f1161010a5780638cb1d67f146105615780638e29df22146105875780639137c1a71461058f57806395d89b41146105b55780639a508c8e146105bd5761025e565b80636f87bbd8146104f557806370a08231146105235780637d7c2a1c1461054957806382de9c1b14610551578063853828b6146105595761025e565b8063313ce567116101df5780634ec81af1116101a35780634ec81af1146104955780634fa5d854146104cd57806353ceb01c146104d55780635aa6e675146104dd5780636af67dde146104e55780636f307dc3146104ed5761025e565b8063313ce567146103f157806333a100ca1461040f57806336efd16f1461043557806339509351146104615780634c52cf601461048d5761025e565b80631827b24a116102265780631827b24a146103865780631bf8e7be1461038e5780631f75f3101461039657806323b872dd1461039e5780632e1a7d4d146103d45761025e565b806306fdde0314610263578063095ea7b3146102e057806309ff18f0146103205780630c80447a1461034457806318160ddd1461036c575b600080fd5b61026b6106e1565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a557818101518382015260200161028d565b50505050905090810190601f1680156102d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61030c600480360360408110156102f657600080fd5b506001600160a01b038135169060200135610778565b604080519115158252519081900360200190f35b610328610796565b604080516001600160a01b039092168252519081900360200190f35b61036a6004803603602081101561035a57600080fd5b50356001600160a01b03166107a5565b005b61037461088d565b60408051918252519081900360200190f35b61036a610893565b610374610a85565b61036a610b2b565b61030c600480360360608110156103b457600080fd5b506001600160a01b03813581169160208101359091169060400135610c1b565b61036a600480360360208110156103ea57600080fd5b5035610ca3565b6103f9610fe3565b6040805160ff9092168252519081900360200190f35b61036a6004803603602081101561042557600080fd5b50356001600160a01b0316610fec565b61036a6004803603604081101561044b57600080fd5b50803590602001356001600160a01b031661134b565b61030c6004803603604081101561047757600080fd5b506001600160a01b038135169060200135611424565b61036a611472565b61036a600480360360808110156104ab57600080fd5b506001600160a01b038135169060208101359060408101359060600135611530565b61036a6115f9565b610374611711565b61032861171b565b61036a61178e565b61032861192c565b61036a6004803603604081101561050b57600080fd5b506001600160a01b0381358116916020013516611936565b6103746004803603602081101561053957600080fd5b50356001600160a01b0316611e0f565b61036a611e2e565b610374611f82565b61036a611f8c565b6103746004803603602081101561057757600080fd5b50356001600160a01b0316612164565b61036a612199565b61036a600480360360208110156105a557600080fd5b50356001600160a01b0316612371565b61026b612497565b61036a6124f8565b6105cd6125ce565b6040805192151583526001600160a01b0390911660208301528051918290030190f35b61036a61261a565b61030c6004803603604081101561060e57600080fd5b506001600160a01b0381351690602001356127fa565b610374612862565b61032861286c565b61030c6004803603604081101561064a57600080fd5b506001600160a01b038135169060200135612876565b61036a6004803603602081101561067657600080fd5b503561288a565b61037461295f565b61036a6004803603602081101561069b57600080fd5b50356001600160a01b03166129b5565b610374600480360360408110156106c157600080fd5b506001600160a01b0381358116916020013516612a60565b610328612a8b565b60368054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561076d5780601f106107425761010080835404028352916020019161076d565b820191906000526020600020905b81548152906001019060200180831161075057829003601f168201915b505050505090505b90565b600061078c610785612acd565b8484612ad1565b5060015b92915050565b60006107a0612bbd565b905090565b6107ad612be8565b6001600160a01b031663dee1f0e4336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156107f957600080fd5b505afa15801561080d573d6000803e3d6000fd5b505050506040513d602081101561082357600080fd5b5051610867576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b61087081612c0d565b61088a61088561087e612862565b4290612c37565b612c91565b50565b60355490565b600061089d61286c565b6001600160a01b031614156108e7576040805162461bcd60e51b81526020600482015260126024820152600080516020613f10833981519152604482015290519081900360640190fd5b6108ef612be8565b6001600160a01b031663b429afeb336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561093b57600080fd5b505afa15801561094f573d6000803e3d6000fd5b505050506040513d602081101561096557600080fd5b5051806109ee5750610975612be8565b6001600160a01b031663dee1f0e4336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156109c157600080fd5b505afa1580156109d5573d6000803e3d6000fd5b505050506040513d60208110156109eb57600080fd5b50515b610a295760405162461bcd60e51b815260040180806020018281038252602b815260200180613e32602b913960400191505060405180910390fd5b610a3161286c565b6001600160a01b0316631827b24a6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610a6b57600080fd5b505af1158015610a7f573d6000803e3d6000fd5b50505050565b600080610a9061286c565b6001600160a01b03161415610aae57610aa761295f565b9050610775565b6107a0610ab961286c565b6001600160a01b03166345d01e4a6040518163ffffffff1660e01b815260040160206040518083038186803b158015610af157600080fd5b505afa158015610b05573d6000803e3d6000fd5b505050506040513d6020811015610b1b57600080fd5b5051610b2561295f565b90612c37565b6000610b3561286c565b6001600160a01b03161415610b7f576040805162461bcd60e51b81526020600482015260126024820152600080516020613f10833981519152604482015290519081900360640190fd5b610b8761286c565b6001600160a01b0316638e29df226040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610bc157600080fd5b505af1158015610bd5573d6000803e3d6000fd5b50505050610be161286c565b6001600160a01b0316636af67dde6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610a6b57600080fd5b6000610c28848484612cbb565b610c9884610c34612acd565b610c9385604051806060016040528060288152602001613f7f602891396001600160a01b038a16600090815260346020526040812090610c72612acd565b6001600160a01b031681526020810191909152604001600020549190612e06565b612ad1565b5060015b9392505050565b6000610cad61088d565b11610ceb576040805162461bcd60e51b81526020600482015260096024820152686e6f2073686172657360b81b604482015290519081900360640190fd5b610cf361286c565b6001600160a01b03166321f39f53336040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015610d4157600080fd5b505af1158015610d55573d6000803e3d6000fd5b50505050610d6161286c565b6001600160a01b031663b86e321c336040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015610daf57600080fd5b505af1158015610dc3573d6000803e3d6000fd5b505050506000811115610f72576000610dda61088d565b9050610de63383612e9d565b6000610e0482610dfe85610df8610a85565b90612f87565b90612fe0565b9050610e0e61295f565b811115610f1c5781831415610e7c57610e2561286c565b6001600160a01b031663bfd131f16040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610e5f57600080fd5b505af1158015610e73573d6000803e3d6000fd5b50505050610ef9565b6000610e90610e8961295f565b8390613047565b9050610e9a61286c565b6001600160a01b031663ce8c42e8826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610edf57600080fd5b505af1158015610ef3573d6000803e3d6000fd5b50505050505b610f19610f0c83610dfe86610df8610a85565b610f1461295f565b6130a4565b90505b610f393382610f2961192c565b6001600160a01b031691906130ba565b60408051828152905133917f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364919081900360200190a250505b610f7a61286c565b6001600160a01b0316638c1a22b6336040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015610fc857600080fd5b505af1158015610fdc573d6000803e3d6000fd5b5050505050565b60385460ff1690565b610ff4612be8565b6001600160a01b031663b429afeb336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561104057600080fd5b505afa158015611054573d6000803e3d6000fd5b505050506040513d602081101561106a57600080fd5b5051806110f3575061107a612be8565b6001600160a01b031663dee1f0e4336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156110c657600080fd5b505afa1580156110da573d6000803e3d6000fd5b505050506040513d60208110156110f057600080fd5b50515b61112e5760405162461bcd60e51b815260040180806020018281038252602b815260200180613e32602b913960400191505060405180910390fd5b6001600160a01b03811661117a576040805162461bcd60e51b815260206004820152600e60248201526d656d70747920737472617465677960901b604482015290519081900360640190fd5b61118261192c565b6001600160a01b0316816001600160a01b0316636f307dc36040518163ffffffff1660e01b815260040160206040518083038186803b1580156111c457600080fd5b505afa1580156111d8573d6000803e3d6000fd5b505050506040513d60208110156111ee57600080fd5b50516001600160a01b031614611242576040805162461bcd60e51b81526020600482015260146024820152730eadcc8cae4d8f2d2dcce40dcdee840dac2e8c6d60631b604482015290519081900360640190fd5b306001600160a01b0316816001600160a01b031663fbfa77cf6040518163ffffffff1660e01b815260040160206040518083038186803b15801561128557600080fd5b505afa158015611299573d6000803e3d6000fd5b505050506040513d60208110156112af57600080fd5b50516001600160a01b031614611307576040805162461bcd60e51b81526020600482015260186024820152770e6e8e4c2e8cacef240ecc2ead8e840dcdee840dac2e8c6d60431b604482015290519081900360640190fd5b6113108161310c565b61133561131b61286c565b600061132561192c565b6001600160a01b03169190613136565b61088a61134061286c565b60001961132561192c565b333214806113d6575061135c612a8b565b6001600160a01b03166330e412ad336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156113a857600080fd5b505afa1580156113bc573d6000803e3d6000fd5b505050506040513d60208110156113d257600080fd5b5051155b611415576040805162461bcd60e51b815260206004820152600b60248201526a19dc995e481b1a5cdd195960aa1b604482015290519081900360640190fd5b611420823383613249565b5050565b600061078c611431612acd565b84610c938560346000611442612acd565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612c37565b600061147c61286c565b6001600160a01b031614156114c6576040805162461bcd60e51b81526020600482015260126024820152600080516020613f10833981519152604482015290519081900360640190fd5b6114ce61348e565b6114d661286c565b6001600160a01b031663a377610e6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561151057600080fd5b505af1158015611524573d6000803e3d6000fd5b50505050610a3161286c565b600054610100900460ff1680611549575061154961353e565b80611557575060005460ff16155b6115925760405162461bcd60e51b815260040180806020018281038252602e815260200180613f30602e913960400191505060405180910390fd5b600054610100900460ff161580156115bd576000805460ff1961ff0019909116610100171660011790555b6115c68561354f565b6115cf84613579565b6115d8836135a3565b6115e1826135cd565b8015610fdc576000805461ff00191690555050505050565b600061160361286c565b6001600160a01b0316141561164d576040805162461bcd60e51b81526020600482015260126024820152600080516020613f10833981519152604482015290519081900360640190fd5b61165561348e565b61165d61286c565b6001600160a01b031663a377610e6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561169757600080fd5b505af11580156116ab573d6000803e3d6000fd5b505050506116b761286c565b6001600160a01b0316631827b24a6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156116f157600080fd5b505af1158015611705573d6000803e3d6000fd5b50505050610b8761286c565b60006107a06135f7565b6000611725612be8565b6001600160a01b0316635aa6e6756040518163ffffffff1660e01b815260040160206040518083038186803b15801561175d57600080fd5b505afa158015611771573d6000803e3d6000fd5b505050506040513d602081101561178757600080fd5b5051905090565b600061179861286c565b6001600160a01b031614156117e2576040805162461bcd60e51b81526020600482015260126024820152600080516020613f10833981519152604482015290519081900360640190fd5b6117ea612be8565b6001600160a01b031663b429afeb336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561183657600080fd5b505afa15801561184a573d6000803e3d6000fd5b505050506040513d602081101561186057600080fd5b5051806118e95750611870612be8565b6001600160a01b031663dee1f0e4336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156118bc57600080fd5b505afa1580156118d0573d6000803e3d6000fd5b505050506040513d60208110156118e657600080fd5b50515b6119245760405162461bcd60e51b815260040180806020018281038252602b815260200180613e32602b913960400191505060405180910390fd5b610be161286c565b60006107a0613622565b600054610100900460ff168061194f575061194f61353e565b8061195d575060005460ff16155b6119985760405162461bcd60e51b815260040180806020018281038252602e815260200180613f30602e913960400191505060405180910390fd5b600054610100900460ff161580156119c3576000805460ff1961ff0019909116610100171660011790555b611d00826001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b1580156119ff57600080fd5b505afa158015611a13573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611a3c57600080fd5b8101908080516040519392919084600160201b821115611a5b57600080fd5b908301906020820185811115611a7057600080fd5b8251600160201b811182820188101715611a8957600080fd5b82525081516020918201929091019080838360005b83811015611ab6578181015183820152602001611a9e565b50505050905090810190601f168015611ae35780820380516001836020036101000a031916815260200191505b50604052505050604051602001808065616c7068615f60d01b81525060060182805190602001908083835b60208310611b2d5780518252601f199092019160209182019101611b0e565b6001836020036101000a038019825116818451168082178552505050505050905001915050604051602081830303815290604052836001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b158015611b9a57600080fd5b505afa158015611bae573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611bd757600080fd5b8101908080516040519392919084600160201b821115611bf657600080fd5b908301906020820185811115611c0b57600080fd5b8251600160201b811182820188101715611c2457600080fd5b82525081516020918201929091019080838360005b83811015611c51578181015183820152602001611c39565b50505050905090810190601f168015611c7e5780820380516001836020036101000a031916815260200191505b50604052505050604051602001808064616c70686160d81b81525060050182805190602001908083835b60208310611cc75780518252601f199092019160209182019101611ca8565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405160208183030381529060405261364d565b611d6d826001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b158015611d3c57600080fd5b505afa158015611d50573d6000803e3d6000fd5b505050506040513d6020811015611d6657600080fd5b5051613702565b611d76836129b5565b6000826001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b158015611db157600080fd5b505afa158015611dc5573d6000803e3d6000fd5b505050506040513d6020811015611ddb57600080fd5b505160ff16600a0a905061a8c080611df585848380611530565b5050508015611e0a576000805461ff00191690555b505050565b6001600160a01b0381166000908152603360205260409020545b919050565b611e36612be8565b6001600160a01b031663b429afeb336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611e8257600080fd5b505afa158015611e96573d6000803e3d6000fd5b505050506040513d6020811015611eac57600080fd5b505180611f355750611ebc612be8565b6001600160a01b031663dee1f0e4336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611f0857600080fd5b505afa158015611f1c573d6000803e3d6000fd5b505050506040513d6020811015611f3257600080fd5b50515b611f705760405162461bcd60e51b815260040180806020018281038252602b815260200180613e32602b913960400191505060405180910390fd5b611f78611f8c565b611f8061348e565b565b60006107a0613718565b611f94612be8565b6001600160a01b031663b429afeb336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611fe057600080fd5b505afa158015611ff4573d6000803e3d6000fd5b505050506040513d602081101561200a57600080fd5b505180612093575061201a612be8565b6001600160a01b031663dee1f0e4336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561206657600080fd5b505afa15801561207a573d6000803e3d6000fd5b505050506040513d602081101561209057600080fd5b50515b6120ce5760405162461bcd60e51b815260040180806020018281038252602b815260200180613e32602b913960400191505060405180910390fd5b60006120d861286c565b6001600160a01b03161415612122576040805162461bcd60e51b81526020600482015260126024820152600080516020613f10833981519152604482015290519081900360640190fd5b61212a61286c565b6001600160a01b031663bfd131f16040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610a6b57600080fd5b600061216e61088d565b61217a57506000611e29565b61079061218561088d565b610dfe61219185611e0f565b610df8610a85565b60006121a361286c565b6001600160a01b031614156121ed576040805162461bcd60e51b81526020600482015260126024820152600080516020613f10833981519152604482015290519081900360640190fd5b6121f5612be8565b6001600160a01b031663b429afeb336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561224157600080fd5b505afa158015612255573d6000803e3d6000fd5b505050506040513d602081101561226b57600080fd5b5051806122f4575061227b612be8565b6001600160a01b031663dee1f0e4336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156122c757600080fd5b505afa1580156122db573d6000803e3d6000fd5b505050506040513d60208110156122f157600080fd5b50515b61232f5760405162461bcd60e51b815260040180806020018281038252602b815260200180613e32602b913960400191505060405180910390fd5b61233761286c565b6001600160a01b0316638e29df226040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610a6b57600080fd5b612379612be8565b6001600160a01b031663dee1f0e4336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156123c557600080fd5b505afa1580156123d9573d6000803e3d6000fd5b505050506040513d60208110156123ef57600080fd5b5051612433576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b03811661248e576040805162461bcd60e51b815260206004820152601e60248201527f6e65772073746f726167652073686f756c646e277420626520656d7074790000604482015290519081900360640190fd5b61088a81613743565b60378054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561076d5780601f106107425761010080835404028352916020019161076d565b612500612be8565b6001600160a01b031663dee1f0e4336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561254c57600080fd5b505afa158015612560573d6000803e3d6000fd5b505050506040513d602081101561257657600080fd5b50516125ba576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6125c46000612c0d565b611f806000612c91565b6000806125d9611f82565b158015906125ed57506125ea611f82565b42115b801561260a575060006125fe610796565b6001600160a01b031614155b612612610796565b915091509091565b600061262461286c565b6001600160a01b0316141561266e576040805162461bcd60e51b81526020600482015260126024820152600080516020613f10833981519152604482015290519081900360640190fd5b612676612be8565b6001600160a01b031663b429afeb336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156126c257600080fd5b505afa1580156126d6573d6000803e3d6000fd5b505050506040513d60208110156126ec57600080fd5b50518061277557506126fc612be8565b6001600160a01b031663dee1f0e4336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561274857600080fd5b505afa15801561275c573d6000803e3d6000fd5b505050506040513d602081101561277257600080fd5b50515b6127b05760405162461bcd60e51b815260040180806020018281038252602b815260200180613e32602b913960400191505060405180910390fd5b6127b861348e565b6127c061286c565b6001600160a01b031663a377610e6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610a6b57600080fd5b600061078c612807612acd565b84610c93856040518060600160405280602581526020016140916025913960346000612831612acd565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612e06565b60006107a0613767565b60006107a0613792565b600061078c612883612acd565b8484612cbb565b33321480612915575061289b612a8b565b6001600160a01b03166330e412ad336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156128e757600080fd5b505afa1580156128fb573d6000803e3d6000fd5b505050506040513d602081101561291157600080fd5b5051155b612954576040805162461bcd60e51b815260206004820152600b60248201526a19dc995e481b1a5cdd195960aa1b604482015290519081900360640190fd5b61088a813333613249565b600061296961192c565b6001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561175d57600080fd5b600054610100900460ff16806129ce57506129ce61353e565b806129dc575060005460ff16155b612a175760405162461bcd60e51b815260040180806020018281038252602e815260200180613f30602e913960400191505060405180910390fd5b600054610100900460ff16158015612a42576000805460ff1961ff0019909116610100171660011790555b612a4b826137bd565b8015611420576000805461ff00191690555050565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b6000612a95612be8565b6001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b15801561175d57600080fd5b3390565b6001600160a01b038316612b165760405162461bcd60e51b815260040180806020018281038252602481526020018061400d6024913960400191505060405180910390fd5b6001600160a01b038216612b5b5760405162461bcd60e51b8152600401808060200182810382526022815260200180613ea26022913960400191505060405180910390fd5b6001600160a01b03808416600081815260346020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60006107a07fb1acf527cd7cd1668b30e5a9a1c0d845714604de29ce560150922c9d8c0937df613853565b7fa7ec62784904ff31cbcc32d09932a58e7f1e4476e1d041995b37c917990b16dc5490565b61088a7fb1acf527cd7cd1668b30e5a9a1c0d845714604de29ce560150922c9d8c0937df82613857565b600082820183811015610c9c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b61088a7f3bc747f4b148b37be485de3223c90b4468252967d2ea7f9fcbd8b6e653f434c982613857565b6001600160a01b038316612d005760405162461bcd60e51b8152600401808060200182810382526025815260200180613fe86025913960400191505060405180910390fd5b6001600160a01b038216612d455760405162461bcd60e51b8152600401808060200182810382526023815260200180613e5d6023913960400191505060405180910390fd5b612d50838383611e0a565b612d8d81604051806060016040528060268152602001613ec4602691396001600160a01b0386166000908152603360205260409020549190612e06565b6001600160a01b038085166000908152603360205260408082209390935590841681522054612dbc9082612c37565b6001600160a01b038084166000818152603360209081526040918290209490945580518581529051919392871692600080516020613fa783398151915292918290030190a3505050565b60008184841115612e955760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612e5a578181015183820152602001612e42565b50505050905090810190601f168015612e875780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216612ee25760405162461bcd60e51b8152600401808060200182810382526021815260200180613fc76021913960400191505060405180910390fd5b612eee82600083611e0a565b612f2b81604051806060016040528060228152602001613e80602291396001600160a01b0385166000908152603360205260409020549190612e06565b6001600160a01b038316600090815260336020526040902055603554612f519082613047565b6035556040805182815290516000916001600160a01b03851691600080516020613fa78339815191529181900360200190a35050565b600082612f9657506000610790565b82820282848281612fa357fe5b0414610c9c5760405162461bcd60e51b8152600401808060200182810382526021815260200180613f5e6021913960400191505060405180910390fd5b6000808211613036576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161303f57fe5b049392505050565b60008282111561309e576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008183106130b35781610c9c565b5090919050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611e0a90849061385b565b61088a7ff1a169aa0f736c2813818fdfbdc5755c31e0839c8f49831a16543496b28574ea82613857565b8015806131bc575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561318e57600080fd5b505afa1580156131a2573d6000803e3d6000fd5b505050506040513d60208110156131b857600080fd5b5051155b6131f75760405162461bcd60e51b815260040180806020018281038252603681526020018061405b6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052611e0a90849061385b565b6001600160a01b038116613297576040805162461bcd60e51b815260206004820152601060248201526f1a1bdb19195c881d5b9919599a5b995960821b604482015290519081900360640190fd5b61329f61286c565b6001600160a01b03166321f39f53826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b1580156132ed57600080fd5b505af1158015613301573d6000803e3d6000fd5b5050505061330d61286c565b6001600160a01b031663b86e321c826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b15801561335b57600080fd5b505af115801561336f573d6000803e3d6000fd5b50505050600083111561341b57600061338661088d565b156133ad576133a8613396610a85565b610dfe6133a161088d565b8790612f87565b6133af565b835b90506133bb828261390c565b6133da8330866133c961192c565b6001600160a01b03169291906139ec565b6040805185815290516001600160a01b038416917fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c919081900360200190a2505b61342361286c565b6001600160a01b0316638c1a22b6826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b15801561347157600080fd5b505af1158015613485573d6000803e3d6000fd5b50505050505050565b600061349861286c565b6001600160a01b031614156134e2576040805162461bcd60e51b81526020600482015260126024820152600080516020613f10833981519152604482015290519081900360640190fd5b60006134ec61295f565b9050801561088a576135086134ff61286c565b82610f2961192c565b6040805182815290517fa09b7ae452b7bffb9e204c3a016e80caeecf46f554d112644f36fa114dac6ffa9181900360200190a150565b600061354930613a46565b15905090565b61088a7f1994607607e11d53306ef62e45e3bd85762c58d9bf38b5578bc4a258a26a737182613857565b61088a7fa66bc57d4b4eed7c7687876ca77997588987307cb13ecc23f5e52725192e5fff82613857565b61088a7f82ddc3be3f0c1a6870327f78f4979a0b37b21b16736ef5be6a7a7a35e530bcf082613857565b61088a7f6d02338b2e4c913c0f7d380e2798409838a48a2c4d57d52742a808c82d713d8b82613857565b60006107a07fa66bc57d4b4eed7c7687876ca77997588987307cb13ecc23f5e52725192e5fff613853565b60006107a07f1994607607e11d53306ef62e45e3bd85762c58d9bf38b5578bc4a258a26a7371613853565b600054610100900460ff1680613666575061366661353e565b80613674575060005460ff16155b6136af5760405162461bcd60e51b815260040180806020018281038252602e815260200180613f30602e913960400191505060405180910390fd5b600054610100900460ff161580156136da576000805460ff1961ff0019909116610100171660011790555b6136e2613a4c565b6136ec8383613aed565b8015611e0a576000805461ff0019169055505050565b6038805460ff191660ff92909216919091179055565b60006107a07f3bc747f4b148b37be485de3223c90b4468252967d2ea7f9fcbd8b6e653f434c9613853565b7fa7ec62784904ff31cbcc32d09932a58e7f1e4476e1d041995b37c917990b16dc55565b60006107a07f82ddc3be3f0c1a6870327f78f4979a0b37b21b16736ef5be6a7a7a35e530bcf0613853565b60006107a07ff1a169aa0f736c2813818fdfbdc5755c31e0839c8f49831a16543496b28574ea613853565b600054610100900460ff16806137d657506137d661353e565b806137e4575060005460ff16155b61381f5760405162461bcd60e51b815260040180806020018281038252602e815260200180613f30602e913960400191505060405180910390fd5b600054610100900460ff1615801561384a576000805460ff1961ff0019909116610100171660011790555b612a4b82613743565b5490565b9055565b60606138b0826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316613bc59092919063ffffffff16565b805190915015611e0a578080602001905160208110156138cf57600080fd5b5051611e0a5760405162461bcd60e51b815260040180806020018281038252602a815260200180614031602a913960400191505060405180910390fd5b6001600160a01b038216613967576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61397360008383611e0a565b6035546139809082612c37565b6035556001600160a01b0382166000908152603360205260409020546139a69082612c37565b6001600160a01b0383166000818152603360209081526040808320949094558351858152935192939192600080516020613fa78339815191529281900390910190a35050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610a7f90859061385b565b3b151590565b600054610100900460ff1680613a655750613a6561353e565b80613a73575060005460ff16155b613aae5760405162461bcd60e51b815260040180806020018281038252602e815260200180613f30602e913960400191505060405180910390fd5b600054610100900460ff16158015613ad9576000805460ff1961ff0019909116610100171660011790555b801561088a576000805461ff001916905550565b600054610100900460ff1680613b065750613b0661353e565b80613b14575060005460ff16155b613b4f5760405162461bcd60e51b815260040180806020018281038252602e815260200180613f30602e913960400191505060405180910390fd5b600054610100900460ff16158015613b7a576000805460ff1961ff0019909116610100171660011790555b8251613b8d906036906020860190613d9e565b508151613ba1906037906020850190613d9e565b506038805460ff191660121790558015611e0a576000805461ff0019169055505050565b6060613bd48484600085613bdc565b949350505050565b606082471015613c1d5760405162461bcd60e51b8152600401808060200182810382526026815260200180613eea6026913960400191505060405180910390fd5b613c2685613a46565b613c77576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310613cb65780518252601f199092019160209182019101613c97565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613d18576040519150601f19603f3d011682016040523d82523d6000602084013e613d1d565b606091505b5091509150613d2d828286613d38565b979650505050505050565b60608315613d47575081610c9c565b825115613d575782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315612e5a578181015183820152602001612e42565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613ddf57805160ff1916838001178555613e0c565b82800160010185558215613e0c579182015b82811115613e0c578251825591602001919060010190613df1565b50613e18929150613e1c565b5090565b5b80821115613e185760008155600101613e1d56fe5468652063616c6c6572206d75737420626520636f6e74726f6c6c6572206f7220676f7665726e616e636545524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c756e646566696e65642073747261746567790000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122033c6d44317e1be01905d41b0e848660432d8e9c88937eb5b1687106a36e5e4d264736f6c63430007030033
Deployed ByteCode
0x608060405234801561001057600080fd5b506004361061025e5760003560e01c80636f87bbd8116101465780639d16acfd116100c3578063a9059cbb11610087578063a9059cbb14610634578063b6b55f2514610660578063c2baf3561461067d578063c4d66de814610685578063dd62ed3e146106ab578063f77c4791146106d95761025e565b80639d16acfd146105c5578063a377610e146105f0578063a457c2d7146105f8578063a836569314610624578063a8c62e761461062c5761025e565b80638cb1d67f1161010a5780638cb1d67f146105615780638e29df22146105875780639137c1a71461058f57806395d89b41146105b55780639a508c8e146105bd5761025e565b80636f87bbd8146104f557806370a08231146105235780637d7c2a1c1461054957806382de9c1b14610551578063853828b6146105595761025e565b8063313ce567116101df5780634ec81af1116101a35780634ec81af1146104955780634fa5d854146104cd57806353ceb01c146104d55780635aa6e675146104dd5780636af67dde146104e55780636f307dc3146104ed5761025e565b8063313ce567146103f157806333a100ca1461040f57806336efd16f1461043557806339509351146104615780634c52cf601461048d5761025e565b80631827b24a116102265780631827b24a146103865780631bf8e7be1461038e5780631f75f3101461039657806323b872dd1461039e5780632e1a7d4d146103d45761025e565b806306fdde0314610263578063095ea7b3146102e057806309ff18f0146103205780630c80447a1461034457806318160ddd1461036c575b600080fd5b61026b6106e1565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a557818101518382015260200161028d565b50505050905090810190601f1680156102d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61030c600480360360408110156102f657600080fd5b506001600160a01b038135169060200135610778565b604080519115158252519081900360200190f35b610328610796565b604080516001600160a01b039092168252519081900360200190f35b61036a6004803603602081101561035a57600080fd5b50356001600160a01b03166107a5565b005b61037461088d565b60408051918252519081900360200190f35b61036a610893565b610374610a85565b61036a610b2b565b61030c600480360360608110156103b457600080fd5b506001600160a01b03813581169160208101359091169060400135610c1b565b61036a600480360360208110156103ea57600080fd5b5035610ca3565b6103f9610fe3565b6040805160ff9092168252519081900360200190f35b61036a6004803603602081101561042557600080fd5b50356001600160a01b0316610fec565b61036a6004803603604081101561044b57600080fd5b50803590602001356001600160a01b031661134b565b61030c6004803603604081101561047757600080fd5b506001600160a01b038135169060200135611424565b61036a611472565b61036a600480360360808110156104ab57600080fd5b506001600160a01b038135169060208101359060408101359060600135611530565b61036a6115f9565b610374611711565b61032861171b565b61036a61178e565b61032861192c565b61036a6004803603604081101561050b57600080fd5b506001600160a01b0381358116916020013516611936565b6103746004803603602081101561053957600080fd5b50356001600160a01b0316611e0f565b61036a611e2e565b610374611f82565b61036a611f8c565b6103746004803603602081101561057757600080fd5b50356001600160a01b0316612164565b61036a612199565b61036a600480360360208110156105a557600080fd5b50356001600160a01b0316612371565b61026b612497565b61036a6124f8565b6105cd6125ce565b6040805192151583526001600160a01b0390911660208301528051918290030190f35b61036a61261a565b61030c6004803603604081101561060e57600080fd5b506001600160a01b0381351690602001356127fa565b610374612862565b61032861286c565b61030c6004803603604081101561064a57600080fd5b506001600160a01b038135169060200135612876565b61036a6004803603602081101561067657600080fd5b503561288a565b61037461295f565b61036a6004803603602081101561069b57600080fd5b50356001600160a01b03166129b5565b610374600480360360408110156106c157600080fd5b506001600160a01b0381358116916020013516612a60565b610328612a8b565b60368054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561076d5780601f106107425761010080835404028352916020019161076d565b820191906000526020600020905b81548152906001019060200180831161075057829003601f168201915b505050505090505b90565b600061078c610785612acd565b8484612ad1565b5060015b92915050565b60006107a0612bbd565b905090565b6107ad612be8565b6001600160a01b031663dee1f0e4336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156107f957600080fd5b505afa15801561080d573d6000803e3d6000fd5b505050506040513d602081101561082357600080fd5b5051610867576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b61087081612c0d565b61088a61088561087e612862565b4290612c37565b612c91565b50565b60355490565b600061089d61286c565b6001600160a01b031614156108e7576040805162461bcd60e51b81526020600482015260126024820152600080516020613f10833981519152604482015290519081900360640190fd5b6108ef612be8565b6001600160a01b031663b429afeb336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561093b57600080fd5b505afa15801561094f573d6000803e3d6000fd5b505050506040513d602081101561096557600080fd5b5051806109ee5750610975612be8565b6001600160a01b031663dee1f0e4336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156109c157600080fd5b505afa1580156109d5573d6000803e3d6000fd5b505050506040513d60208110156109eb57600080fd5b50515b610a295760405162461bcd60e51b815260040180806020018281038252602b815260200180613e32602b913960400191505060405180910390fd5b610a3161286c565b6001600160a01b0316631827b24a6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610a6b57600080fd5b505af1158015610a7f573d6000803e3d6000fd5b50505050565b600080610a9061286c565b6001600160a01b03161415610aae57610aa761295f565b9050610775565b6107a0610ab961286c565b6001600160a01b03166345d01e4a6040518163ffffffff1660e01b815260040160206040518083038186803b158015610af157600080fd5b505afa158015610b05573d6000803e3d6000fd5b505050506040513d6020811015610b1b57600080fd5b5051610b2561295f565b90612c37565b6000610b3561286c565b6001600160a01b03161415610b7f576040805162461bcd60e51b81526020600482015260126024820152600080516020613f10833981519152604482015290519081900360640190fd5b610b8761286c565b6001600160a01b0316638e29df226040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610bc157600080fd5b505af1158015610bd5573d6000803e3d6000fd5b50505050610be161286c565b6001600160a01b0316636af67dde6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610a6b57600080fd5b6000610c28848484612cbb565b610c9884610c34612acd565b610c9385604051806060016040528060288152602001613f7f602891396001600160a01b038a16600090815260346020526040812090610c72612acd565b6001600160a01b031681526020810191909152604001600020549190612e06565b612ad1565b5060015b9392505050565b6000610cad61088d565b11610ceb576040805162461bcd60e51b81526020600482015260096024820152686e6f2073686172657360b81b604482015290519081900360640190fd5b610cf361286c565b6001600160a01b03166321f39f53336040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015610d4157600080fd5b505af1158015610d55573d6000803e3d6000fd5b50505050610d6161286c565b6001600160a01b031663b86e321c336040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015610daf57600080fd5b505af1158015610dc3573d6000803e3d6000fd5b505050506000811115610f72576000610dda61088d565b9050610de63383612e9d565b6000610e0482610dfe85610df8610a85565b90612f87565b90612fe0565b9050610e0e61295f565b811115610f1c5781831415610e7c57610e2561286c565b6001600160a01b031663bfd131f16040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610e5f57600080fd5b505af1158015610e73573d6000803e3d6000fd5b50505050610ef9565b6000610e90610e8961295f565b8390613047565b9050610e9a61286c565b6001600160a01b031663ce8c42e8826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610edf57600080fd5b505af1158015610ef3573d6000803e3d6000fd5b50505050505b610f19610f0c83610dfe86610df8610a85565b610f1461295f565b6130a4565b90505b610f393382610f2961192c565b6001600160a01b031691906130ba565b60408051828152905133917f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364919081900360200190a250505b610f7a61286c565b6001600160a01b0316638c1a22b6336040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015610fc857600080fd5b505af1158015610fdc573d6000803e3d6000fd5b5050505050565b60385460ff1690565b610ff4612be8565b6001600160a01b031663b429afeb336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561104057600080fd5b505afa158015611054573d6000803e3d6000fd5b505050506040513d602081101561106a57600080fd5b5051806110f3575061107a612be8565b6001600160a01b031663dee1f0e4336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156110c657600080fd5b505afa1580156110da573d6000803e3d6000fd5b505050506040513d60208110156110f057600080fd5b50515b61112e5760405162461bcd60e51b815260040180806020018281038252602b815260200180613e32602b913960400191505060405180910390fd5b6001600160a01b03811661117a576040805162461bcd60e51b815260206004820152600e60248201526d656d70747920737472617465677960901b604482015290519081900360640190fd5b61118261192c565b6001600160a01b0316816001600160a01b0316636f307dc36040518163ffffffff1660e01b815260040160206040518083038186803b1580156111c457600080fd5b505afa1580156111d8573d6000803e3d6000fd5b505050506040513d60208110156111ee57600080fd5b50516001600160a01b031614611242576040805162461bcd60e51b81526020600482015260146024820152730eadcc8cae4d8f2d2dcce40dcdee840dac2e8c6d60631b604482015290519081900360640190fd5b306001600160a01b0316816001600160a01b031663fbfa77cf6040518163ffffffff1660e01b815260040160206040518083038186803b15801561128557600080fd5b505afa158015611299573d6000803e3d6000fd5b505050506040513d60208110156112af57600080fd5b50516001600160a01b031614611307576040805162461bcd60e51b81526020600482015260186024820152770e6e8e4c2e8cacef240ecc2ead8e840dcdee840dac2e8c6d60431b604482015290519081900360640190fd5b6113108161310c565b61133561131b61286c565b600061132561192c565b6001600160a01b03169190613136565b61088a61134061286c565b60001961132561192c565b333214806113d6575061135c612a8b565b6001600160a01b03166330e412ad336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156113a857600080fd5b505afa1580156113bc573d6000803e3d6000fd5b505050506040513d60208110156113d257600080fd5b5051155b611415576040805162461bcd60e51b815260206004820152600b60248201526a19dc995e481b1a5cdd195960aa1b604482015290519081900360640190fd5b611420823383613249565b5050565b600061078c611431612acd565b84610c938560346000611442612acd565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612c37565b600061147c61286c565b6001600160a01b031614156114c6576040805162461bcd60e51b81526020600482015260126024820152600080516020613f10833981519152604482015290519081900360640190fd5b6114ce61348e565b6114d661286c565b6001600160a01b031663a377610e6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561151057600080fd5b505af1158015611524573d6000803e3d6000fd5b50505050610a3161286c565b600054610100900460ff1680611549575061154961353e565b80611557575060005460ff16155b6115925760405162461bcd60e51b815260040180806020018281038252602e815260200180613f30602e913960400191505060405180910390fd5b600054610100900460ff161580156115bd576000805460ff1961ff0019909116610100171660011790555b6115c68561354f565b6115cf84613579565b6115d8836135a3565b6115e1826135cd565b8015610fdc576000805461ff00191690555050505050565b600061160361286c565b6001600160a01b0316141561164d576040805162461bcd60e51b81526020600482015260126024820152600080516020613f10833981519152604482015290519081900360640190fd5b61165561348e565b61165d61286c565b6001600160a01b031663a377610e6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561169757600080fd5b505af11580156116ab573d6000803e3d6000fd5b505050506116b761286c565b6001600160a01b0316631827b24a6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156116f157600080fd5b505af1158015611705573d6000803e3d6000fd5b50505050610b8761286c565b60006107a06135f7565b6000611725612be8565b6001600160a01b0316635aa6e6756040518163ffffffff1660e01b815260040160206040518083038186803b15801561175d57600080fd5b505afa158015611771573d6000803e3d6000fd5b505050506040513d602081101561178757600080fd5b5051905090565b600061179861286c565b6001600160a01b031614156117e2576040805162461bcd60e51b81526020600482015260126024820152600080516020613f10833981519152604482015290519081900360640190fd5b6117ea612be8565b6001600160a01b031663b429afeb336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561183657600080fd5b505afa15801561184a573d6000803e3d6000fd5b505050506040513d602081101561186057600080fd5b5051806118e95750611870612be8565b6001600160a01b031663dee1f0e4336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156118bc57600080fd5b505afa1580156118d0573d6000803e3d6000fd5b505050506040513d60208110156118e657600080fd5b50515b6119245760405162461bcd60e51b815260040180806020018281038252602b815260200180613e32602b913960400191505060405180910390fd5b610be161286c565b60006107a0613622565b600054610100900460ff168061194f575061194f61353e565b8061195d575060005460ff16155b6119985760405162461bcd60e51b815260040180806020018281038252602e815260200180613f30602e913960400191505060405180910390fd5b600054610100900460ff161580156119c3576000805460ff1961ff0019909116610100171660011790555b611d00826001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b1580156119ff57600080fd5b505afa158015611a13573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611a3c57600080fd5b8101908080516040519392919084600160201b821115611a5b57600080fd5b908301906020820185811115611a7057600080fd5b8251600160201b811182820188101715611a8957600080fd5b82525081516020918201929091019080838360005b83811015611ab6578181015183820152602001611a9e565b50505050905090810190601f168015611ae35780820380516001836020036101000a031916815260200191505b50604052505050604051602001808065616c7068615f60d01b81525060060182805190602001908083835b60208310611b2d5780518252601f199092019160209182019101611b0e565b6001836020036101000a038019825116818451168082178552505050505050905001915050604051602081830303815290604052836001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b158015611b9a57600080fd5b505afa158015611bae573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611bd757600080fd5b8101908080516040519392919084600160201b821115611bf657600080fd5b908301906020820185811115611c0b57600080fd5b8251600160201b811182820188101715611c2457600080fd5b82525081516020918201929091019080838360005b83811015611c51578181015183820152602001611c39565b50505050905090810190601f168015611c7e5780820380516001836020036101000a031916815260200191505b50604052505050604051602001808064616c70686160d81b81525060050182805190602001908083835b60208310611cc75780518252601f199092019160209182019101611ca8565b6001836020036101000a03801982511681845116808217855250505050505090500191505060405160208183030381529060405261364d565b611d6d826001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b158015611d3c57600080fd5b505afa158015611d50573d6000803e3d6000fd5b505050506040513d6020811015611d6657600080fd5b5051613702565b611d76836129b5565b6000826001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b158015611db157600080fd5b505afa158015611dc5573d6000803e3d6000fd5b505050506040513d6020811015611ddb57600080fd5b505160ff16600a0a905061a8c080611df585848380611530565b5050508015611e0a576000805461ff00191690555b505050565b6001600160a01b0381166000908152603360205260409020545b919050565b611e36612be8565b6001600160a01b031663b429afeb336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611e8257600080fd5b505afa158015611e96573d6000803e3d6000fd5b505050506040513d6020811015611eac57600080fd5b505180611f355750611ebc612be8565b6001600160a01b031663dee1f0e4336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611f0857600080fd5b505afa158015611f1c573d6000803e3d6000fd5b505050506040513d6020811015611f3257600080fd5b50515b611f705760405162461bcd60e51b815260040180806020018281038252602b815260200180613e32602b913960400191505060405180910390fd5b611f78611f8c565b611f8061348e565b565b60006107a0613718565b611f94612be8565b6001600160a01b031663b429afeb336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611fe057600080fd5b505afa158015611ff4573d6000803e3d6000fd5b505050506040513d602081101561200a57600080fd5b505180612093575061201a612be8565b6001600160a01b031663dee1f0e4336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561206657600080fd5b505afa15801561207a573d6000803e3d6000fd5b505050506040513d602081101561209057600080fd5b50515b6120ce5760405162461bcd60e51b815260040180806020018281038252602b815260200180613e32602b913960400191505060405180910390fd5b60006120d861286c565b6001600160a01b03161415612122576040805162461bcd60e51b81526020600482015260126024820152600080516020613f10833981519152604482015290519081900360640190fd5b61212a61286c565b6001600160a01b031663bfd131f16040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610a6b57600080fd5b600061216e61088d565b61217a57506000611e29565b61079061218561088d565b610dfe61219185611e0f565b610df8610a85565b60006121a361286c565b6001600160a01b031614156121ed576040805162461bcd60e51b81526020600482015260126024820152600080516020613f10833981519152604482015290519081900360640190fd5b6121f5612be8565b6001600160a01b031663b429afeb336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561224157600080fd5b505afa158015612255573d6000803e3d6000fd5b505050506040513d602081101561226b57600080fd5b5051806122f4575061227b612be8565b6001600160a01b031663dee1f0e4336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156122c757600080fd5b505afa1580156122db573d6000803e3d6000fd5b505050506040513d60208110156122f157600080fd5b50515b61232f5760405162461bcd60e51b815260040180806020018281038252602b815260200180613e32602b913960400191505060405180910390fd5b61233761286c565b6001600160a01b0316638e29df226040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610a6b57600080fd5b612379612be8565b6001600160a01b031663dee1f0e4336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156123c557600080fd5b505afa1580156123d9573d6000803e3d6000fd5b505050506040513d60208110156123ef57600080fd5b5051612433576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b03811661248e576040805162461bcd60e51b815260206004820152601e60248201527f6e65772073746f726167652073686f756c646e277420626520656d7074790000604482015290519081900360640190fd5b61088a81613743565b60378054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561076d5780601f106107425761010080835404028352916020019161076d565b612500612be8565b6001600160a01b031663dee1f0e4336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561254c57600080fd5b505afa158015612560573d6000803e3d6000fd5b505050506040513d602081101561257657600080fd5b50516125ba576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6125c46000612c0d565b611f806000612c91565b6000806125d9611f82565b158015906125ed57506125ea611f82565b42115b801561260a575060006125fe610796565b6001600160a01b031614155b612612610796565b915091509091565b600061262461286c565b6001600160a01b0316141561266e576040805162461bcd60e51b81526020600482015260126024820152600080516020613f10833981519152604482015290519081900360640190fd5b612676612be8565b6001600160a01b031663b429afeb336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156126c257600080fd5b505afa1580156126d6573d6000803e3d6000fd5b505050506040513d60208110156126ec57600080fd5b50518061277557506126fc612be8565b6001600160a01b031663dee1f0e4336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561274857600080fd5b505afa15801561275c573d6000803e3d6000fd5b505050506040513d602081101561277257600080fd5b50515b6127b05760405162461bcd60e51b815260040180806020018281038252602b815260200180613e32602b913960400191505060405180910390fd5b6127b861348e565b6127c061286c565b6001600160a01b031663a377610e6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610a6b57600080fd5b600061078c612807612acd565b84610c93856040518060600160405280602581526020016140916025913960346000612831612acd565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612e06565b60006107a0613767565b60006107a0613792565b600061078c612883612acd565b8484612cbb565b33321480612915575061289b612a8b565b6001600160a01b03166330e412ad336040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156128e757600080fd5b505afa1580156128fb573d6000803e3d6000fd5b505050506040513d602081101561291157600080fd5b5051155b612954576040805162461bcd60e51b815260206004820152600b60248201526a19dc995e481b1a5cdd195960aa1b604482015290519081900360640190fd5b61088a813333613249565b600061296961192c565b6001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561175d57600080fd5b600054610100900460ff16806129ce57506129ce61353e565b806129dc575060005460ff16155b612a175760405162461bcd60e51b815260040180806020018281038252602e815260200180613f30602e913960400191505060405180910390fd5b600054610100900460ff16158015612a42576000805460ff1961ff0019909116610100171660011790555b612a4b826137bd565b8015611420576000805461ff00191690555050565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b6000612a95612be8565b6001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b15801561175d57600080fd5b3390565b6001600160a01b038316612b165760405162461bcd60e51b815260040180806020018281038252602481526020018061400d6024913960400191505060405180910390fd5b6001600160a01b038216612b5b5760405162461bcd60e51b8152600401808060200182810382526022815260200180613ea26022913960400191505060405180910390fd5b6001600160a01b03808416600081815260346020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60006107a07fb1acf527cd7cd1668b30e5a9a1c0d845714604de29ce560150922c9d8c0937df613853565b7fa7ec62784904ff31cbcc32d09932a58e7f1e4476e1d041995b37c917990b16dc5490565b61088a7fb1acf527cd7cd1668b30e5a9a1c0d845714604de29ce560150922c9d8c0937df82613857565b600082820183811015610c9c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b61088a7f3bc747f4b148b37be485de3223c90b4468252967d2ea7f9fcbd8b6e653f434c982613857565b6001600160a01b038316612d005760405162461bcd60e51b8152600401808060200182810382526025815260200180613fe86025913960400191505060405180910390fd5b6001600160a01b038216612d455760405162461bcd60e51b8152600401808060200182810382526023815260200180613e5d6023913960400191505060405180910390fd5b612d50838383611e0a565b612d8d81604051806060016040528060268152602001613ec4602691396001600160a01b0386166000908152603360205260409020549190612e06565b6001600160a01b038085166000908152603360205260408082209390935590841681522054612dbc9082612c37565b6001600160a01b038084166000818152603360209081526040918290209490945580518581529051919392871692600080516020613fa783398151915292918290030190a3505050565b60008184841115612e955760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612e5a578181015183820152602001612e42565b50505050905090810190601f168015612e875780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216612ee25760405162461bcd60e51b8152600401808060200182810382526021815260200180613fc76021913960400191505060405180910390fd5b612eee82600083611e0a565b612f2b81604051806060016040528060228152602001613e80602291396001600160a01b0385166000908152603360205260409020549190612e06565b6001600160a01b038316600090815260336020526040902055603554612f519082613047565b6035556040805182815290516000916001600160a01b03851691600080516020613fa78339815191529181900360200190a35050565b600082612f9657506000610790565b82820282848281612fa357fe5b0414610c9c5760405162461bcd60e51b8152600401808060200182810382526021815260200180613f5e6021913960400191505060405180910390fd5b6000808211613036576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161303f57fe5b049392505050565b60008282111561309e576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008183106130b35781610c9c565b5090919050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611e0a90849061385b565b61088a7ff1a169aa0f736c2813818fdfbdc5755c31e0839c8f49831a16543496b28574ea82613857565b8015806131bc575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561318e57600080fd5b505afa1580156131a2573d6000803e3d6000fd5b505050506040513d60208110156131b857600080fd5b5051155b6131f75760405162461bcd60e51b815260040180806020018281038252603681526020018061405b6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052611e0a90849061385b565b6001600160a01b038116613297576040805162461bcd60e51b815260206004820152601060248201526f1a1bdb19195c881d5b9919599a5b995960821b604482015290519081900360640190fd5b61329f61286c565b6001600160a01b03166321f39f53826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b1580156132ed57600080fd5b505af1158015613301573d6000803e3d6000fd5b5050505061330d61286c565b6001600160a01b031663b86e321c826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b15801561335b57600080fd5b505af115801561336f573d6000803e3d6000fd5b50505050600083111561341b57600061338661088d565b156133ad576133a8613396610a85565b610dfe6133a161088d565b8790612f87565b6133af565b835b90506133bb828261390c565b6133da8330866133c961192c565b6001600160a01b03169291906139ec565b6040805185815290516001600160a01b038416917fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c919081900360200190a2505b61342361286c565b6001600160a01b0316638c1a22b6826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b15801561347157600080fd5b505af1158015613485573d6000803e3d6000fd5b50505050505050565b600061349861286c565b6001600160a01b031614156134e2576040805162461bcd60e51b81526020600482015260126024820152600080516020613f10833981519152604482015290519081900360640190fd5b60006134ec61295f565b9050801561088a576135086134ff61286c565b82610f2961192c565b6040805182815290517fa09b7ae452b7bffb9e204c3a016e80caeecf46f554d112644f36fa114dac6ffa9181900360200190a150565b600061354930613a46565b15905090565b61088a7f1994607607e11d53306ef62e45e3bd85762c58d9bf38b5578bc4a258a26a737182613857565b61088a7fa66bc57d4b4eed7c7687876ca77997588987307cb13ecc23f5e52725192e5fff82613857565b61088a7f82ddc3be3f0c1a6870327f78f4979a0b37b21b16736ef5be6a7a7a35e530bcf082613857565b61088a7f6d02338b2e4c913c0f7d380e2798409838a48a2c4d57d52742a808c82d713d8b82613857565b60006107a07fa66bc57d4b4eed7c7687876ca77997588987307cb13ecc23f5e52725192e5fff613853565b60006107a07f1994607607e11d53306ef62e45e3bd85762c58d9bf38b5578bc4a258a26a7371613853565b600054610100900460ff1680613666575061366661353e565b80613674575060005460ff16155b6136af5760405162461bcd60e51b815260040180806020018281038252602e815260200180613f30602e913960400191505060405180910390fd5b600054610100900460ff161580156136da576000805460ff1961ff0019909116610100171660011790555b6136e2613a4c565b6136ec8383613aed565b8015611e0a576000805461ff0019169055505050565b6038805460ff191660ff92909216919091179055565b60006107a07f3bc747f4b148b37be485de3223c90b4468252967d2ea7f9fcbd8b6e653f434c9613853565b7fa7ec62784904ff31cbcc32d09932a58e7f1e4476e1d041995b37c917990b16dc55565b60006107a07f82ddc3be3f0c1a6870327f78f4979a0b37b21b16736ef5be6a7a7a35e530bcf0613853565b60006107a07ff1a169aa0f736c2813818fdfbdc5755c31e0839c8f49831a16543496b28574ea613853565b600054610100900460ff16806137d657506137d661353e565b806137e4575060005460ff16155b61381f5760405162461bcd60e51b815260040180806020018281038252602e815260200180613f30602e913960400191505060405180910390fd5b600054610100900460ff1615801561384a576000805460ff1961ff0019909116610100171660011790555b612a4b82613743565b5490565b9055565b60606138b0826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316613bc59092919063ffffffff16565b805190915015611e0a578080602001905160208110156138cf57600080fd5b5051611e0a5760405162461bcd60e51b815260040180806020018281038252602a815260200180614031602a913960400191505060405180910390fd5b6001600160a01b038216613967576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61397360008383611e0a565b6035546139809082612c37565b6035556001600160a01b0382166000908152603360205260409020546139a69082612c37565b6001600160a01b0383166000818152603360209081526040808320949094558351858152935192939192600080516020613fa78339815191529281900390910190a35050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610a7f90859061385b565b3b151590565b600054610100900460ff1680613a655750613a6561353e565b80613a73575060005460ff16155b613aae5760405162461bcd60e51b815260040180806020018281038252602e815260200180613f30602e913960400191505060405180910390fd5b600054610100900460ff16158015613ad9576000805460ff1961ff0019909116610100171660011790555b801561088a576000805461ff001916905550565b600054610100900460ff1680613b065750613b0661353e565b80613b14575060005460ff16155b613b4f5760405162461bcd60e51b815260040180806020018281038252602e815260200180613f30602e913960400191505060405180910390fd5b600054610100900460ff16158015613b7a576000805460ff1961ff0019909116610100171660011790555b8251613b8d906036906020860190613d9e565b508151613ba1906037906020850190613d9e565b506038805460ff191660121790558015611e0a576000805461ff0019169055505050565b6060613bd48484600085613bdc565b949350505050565b606082471015613c1d5760405162461bcd60e51b8152600401808060200182810382526026815260200180613eea6026913960400191505060405180910390fd5b613c2685613a46565b613c77576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310613cb65780518252601f199092019160209182019101613c97565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613d18576040519150601f19603f3d011682016040523d82523d6000602084013e613d1d565b606091505b5091509150613d2d828286613d38565b979650505050505050565b60608315613d47575081610c9c565b825115613d575782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315612e5a578181015183820152602001612e42565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613ddf57805160ff1916838001178555613e0c565b82800160010185558215613e0c579182015b82811115613e0c578251825591602001919060010190613df1565b50613e18929150613e1c565b5090565b5b80821115613e185760008155600101613e1d56fe5468652063616c6c6572206d75737420626520636f6e74726f6c6c6572206f7220676f7665726e616e636545524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c756e646566696e65642073747261746567790000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122033c6d44317e1be01905d41b0e848660432d8e9c88937eb5b1687106a36e5e4d264736f6c63430007030033