Source Code
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers.
Latest 11 internal transactions
Advanced mode:
Cross-Chain Transactions
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
KatanaRemoteStrategy
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
No with 200 runs
Other Settings:
shanghai EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.18;
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {BaseRemote4626} from "./bases/BaseRemote4626.sol";
import {BaseLxLy} from "./bases/BaseLxLy.sol";
/// @title KatanaRemoteStrategy
/// @notice Remote strategy on Katana that receives bridged vbTokens and deploys to ERC4626 vault
/// @dev Receives assets via off-chain claims, deploys to vault, and reports back via LxLy bridge
contract KatanaRemoteStrategy is BaseRemote4626, BaseLxLy {
using SafeERC20 for *;
constructor(
address _asset,
address _governance,
address _bridge,
uint32 _originNetworkId,
address _originCounterpart,
address _vault
)
BaseRemote4626(
_asset,
_governance,
bytes32(uint256(_originNetworkId)),
_originCounterpart,
_vault
)
BaseLxLy(_bridge)
{}
/*//////////////////////////////////////////////////////////////
BASEREMOTESTRATEGY IMPLEMENTATIONS
//////////////////////////////////////////////////////////////*/
/// @notice Bridge assets back to origin chain via LxLy
/// @dev Uses bridgeAsset to send vbToken back to Ethereum
/// @param _amount Amount of vbToken to bridge back
/// @return The amount bridged
function _bridgeAssets(
uint256 _amount
) internal override returns (uint256) {
// Approve bridge to spend our asset
asset.forceApprove(address(LXLY_BRIDGE), _amount);
// Bridge vbToken back to origin chain
LXLY_BRIDGE.bridgeAsset(
uint32(uint256(REMOTE_ID)), // originNetworkId (Ethereum)
REMOTE_COUNTERPART,
_amount,
address(asset),
true, // forceUpdateGlobalExitRoot
"" // permitData
);
return _amount;
}
/// @notice Send profit/loss report to origin chain via LxLy
/// @dev Uses bridgeMessage to send totalAssets back to origin strategy
/// @param data Encoded message data (totalAssets)
function _bridgeMessage(bytes memory data) internal override {
LXLY_BRIDGE.bridgeMessage(
uint32(uint256(REMOTE_ID)), // originNetworkId (Ethereum)
REMOTE_COUNTERPART,
true, // forceUpdateGlobalExitRoot
data
);
}
/*//////////////////////////////////////////////////////////////
LXLY MESSAGE HANDLING
//////////////////////////////////////////////////////////////*/
/// @notice Handle incoming bridge message (not used by remote strategy)
/// @dev Remote strategies don't receive messages, only send reports
function onMessageReceived(
address, // originAddress
uint32, // originNetwork
bytes calldata // data
) external payable override {
// Remote strategies don't process incoming messages
// Only origin strategy receives messages from remote
revert("NotSupported");
}
/*//////////////////////////////////////////////////////////////
MANAGEMENT
//////////////////////////////////////////////////////////////*/
/// @notice Rescue tokens accidentally sent to this contract
/// @param _token Token to rescue
/// @param _to Recipient address
/// @param _amount Amount to rescue
function rescue(
address _token,
address _to,
uint256 _amount
) external onlyGovernance {
require(
_token != address(asset) && _token != address(vault),
"InvalidToken"
);
ERC20(_token).safeTransfer(_to, _amount);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/IERC20Permit.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
/**
* @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
/**
* @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
* calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
*/
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
/**
* @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 oldAllowance = token.allowance(address(this), spender);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
}
/**
* @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
}
}
/**
* @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
* to be set to zero before setting it to a non-zero value, such as USDT.
*/
function forceApprove(IERC20 token, address spender, uint256 value) internal {
bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);
if (!_callOptionalReturnBool(token, approvalCall)) {
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
_callOptionalReturn(token, approvalCall);
}
}
/**
* @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
* Revert on invalid signature.
*/
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*
* This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
*/
function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
// 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 cannot use {Address-functionCall} here since this should return false
// and not revert is the subcall reverts.
(bool success, bytes memory returndata) = address(token).call(data);
return
success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override 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 default value returned by this function, unless
* it's overridden.
*
* 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 override returns (uint8) {
return 18;
}
/**
* @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:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, 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}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, 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}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
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) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + 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) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This 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:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(address from, address to, uint256 amount) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, 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:
*
* - `account` 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 += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(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);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @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 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 {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.18;
import {Math} from "@openzeppelin/contracts/utils/math/Math.sol";
import {BaseRemoteStrategy} from "./BaseRemoteStrategy.sol";
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {IERC4626} from "@openzeppelin/contracts/interfaces/IERC4626.sol";
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
abstract contract BaseRemote4626 is BaseRemoteStrategy {
using SafeERC20 for *;
/// @notice The ERC4626 vault where assets are deployed
IERC4626 public immutable vault;
constructor(
address _asset,
address _governance,
bytes32 _remoteId,
address _remoteCounterpart,
address _vault
) BaseRemoteStrategy(_asset, _governance, _remoteId, _remoteCounterpart) {
vault = IERC4626(_vault);
require(vault.asset() == _asset, "wrong vault");
asset.forceApprove(_vault, type(uint256).max);
}
function _pushFunds(
uint256 _amount
) internal virtual override returns (uint256) {
vault.deposit(
Math.min(_amount, vault.maxDeposit(address(this))),
address(this)
);
return _amount;
}
function _pullFunds(
uint256 _amount
) internal virtual override returns (uint256) {
return
vault.redeem(
Math.min(
vault.maxRedeem(address(this)),
vault.previewWithdraw(_amount)
),
address(this),
address(this)
);
}
/// @notice Calculate assets deployed in vault
function valueOfDeployedAssets() public view override returns (uint256) {
return vault.convertToAssets(vault.balanceOf(address(this)));
}
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.18;
import {IPolygonZkEVMBridgeV2} from "../interfaces/lxly/IPolygonZkEVMBridgeV2.sol";
import {IBridgeMessageReceiver} from "../interfaces/lxly/IBridgeMessageReceiver.sol";
/// @notice LxLy bridge base contract for cross-chain strategies
/// @dev Provides common bridge interface and validation for Katana/Agglayer integration
abstract contract BaseLxLy is IBridgeMessageReceiver {
/// @notice The LxLy Unified Bridge contract
IPolygonZkEVMBridgeV2 public immutable LXLY_BRIDGE;
/// @notice The network ID of the chain this contract is deployed on
uint32 public immutable LOCAL_NETWORK_ID;
constructor(address _bridge) {
require(_bridge != address(0), "ZeroAddress");
LXLY_BRIDGE = IPolygonZkEVMBridgeV2(_bridge);
LOCAL_NETWORK_ID = LXLY_BRIDGE.networkID();
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*
* ==== Security Considerations
*
* There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
* expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
* considered as an intention to spend the allowance in any specific way. The second is that because permits have
* built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
* take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
* generally recommended is:
*
* ```solidity
* function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
* try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
* doThing(..., value);
* }
*
* function doThing(..., uint256 value) public {
* token.safeTransferFrom(msg.sender, address(this), value);
* ...
* }
* ```
*
* Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
* `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
* {SafeERC20-safeTransferFrom}).
*
* Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
* contracts should have entry points that don't rely on permit.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*
* CAUTION: See Security Considerations above.
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/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.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "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");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @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.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1, "Math: mulDiv overflow");
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
}
}
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.18;
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {Governance} from "@periphery/utils/Governance.sol";
import {AuctionSwapper} from "@periphery/swappers/AuctionSwapper.sol";
/// @notice Base contract for cross-chain strategies on remote chains
/// @dev Provides keeper management, ERC4626 vault interaction, and abstract bridging interface
abstract contract BaseRemoteStrategy is Governance, AuctionSwapper {
event Reported(uint256 indexed totalAssets);
event UpdatedIsShutdown(bool indexed isShutdown);
event UpdatedAmountToTend(uint256 indexed amountToTend);
event UpdatedKeeper(address indexed keeper, bool indexed status);
event UpdatedProfitMaxUnlockTime(uint256 indexed profitMaxUnlockTime);
modifier onlyKeepers() {
_requireIsKeeper(msg.sender);
_;
}
function _requireIsKeeper(address _sender) internal view virtual {
require(_sender == governance || keepers[_sender], "NotKeeper");
}
/// @notice The asset token for this strategy
ERC20 public immutable asset;
/// @notice Remote chain identifier for the origin chain
bytes32 public immutable REMOTE_ID;
/// @notice Address of the origin strategy counterpart
address public immutable REMOTE_COUNTERPART;
/// @notice Serves as a "pausable" but matches abi of TokenizedStrategy for triggers.
bool public isShutdown;
/// @notice Used to match TokenizedStrategy interface for triggers.
uint256 public lastReport;
/// @notice Amount of assets to trigger the keepers to tend.
uint256 public amountToTend;
/// @notice Used to match TokenizedStrategy interface for triggers.
uint256 public profitMaxUnlockTime;
/// @notice Addresses authorized to perform keeper operations
mapping(address => bool) public keepers;
constructor(
address _asset,
address _governance,
bytes32 _remoteId,
address _remoteCounterpart
) Governance(_governance) {
require(_asset != address(0), "ZeroAddress");
require(_remoteCounterpart != address(0), "ZeroAddress");
// Note: _remoteId can be 0 for some chains (e.g., Ethereum domain = 0)
asset = ERC20(_asset);
REMOTE_ID = _remoteId;
REMOTE_COUNTERPART = _remoteCounterpart;
lastReport = block.timestamp;
profitMaxUnlockTime = 7 days;
amountToTend = type(uint256).max;
}
/*//////////////////////////////////////////////////////////////
PUBLIC KEEPER FUNCTIONS
//////////////////////////////////////////////////////////////*/
/// @notice Send exposure report to origin chain
/// @dev Calculates profit/loss and bridges message back
/// @return _totalAssets The total assets reported to the origin chain
function report()
external
virtual
onlyKeepers
returns (uint256 _totalAssets)
{
require(block.timestamp > lastReport, "NotReady");
uint256 idle = balanceOfAsset();
if (idle > 0 && !isShutdown) {
_pushFunds(idle);
}
// Update State
lastReport = block.timestamp;
_totalAssets = totalAssets();
bytes memory messageBody = abi.encode(_totalAssets);
_bridgeMessage(messageBody);
emit Reported(_totalAssets);
}
function tend() external virtual onlyKeepers {
_tend(balanceOfAsset());
}
/**
* @notice Returns if tend() should be called by a keeper.
*
* @return . Should return true if tend() should be called by keeper or false if not.
* @return . Calldata for the tend call.
*/
function tendTrigger() external view virtual returns (bool, bytes memory) {
return (
// Return the status of the tend trigger.
_tendTrigger(),
// And the needed calldata either way.
abi.encodeWithSelector(this.tend.selector)
);
}
/// @notice Process withdrawal request from origin chain
/// @dev Withdraws from vault if needed and bridges tokens back
/// @param _amount Amount to withdraw and bridge back
function processWithdrawal(uint256 _amount) external virtual onlyKeepers {
if (_amount == 0) return;
uint256 loose = balanceOfAsset();
// Cannot withdraw unaccounted for profit/loss
uint256 available = loose + valueOfDeployedAssets();
if (_amount > available) {
_amount = available;
}
if (_amount > loose) {
uint256 withdrawn = _pullFunds(_amount - loose);
if (withdrawn < _amount - loose) {
_amount = loose + withdrawn;
}
}
require(balanceOfAsset() >= _amount, "not enough");
_bridgeAssets(_amount);
}
/// @notice Push loose funds into the vault
/// @param _amount Amount to deposit into vault
function pushFunds(uint256 _amount) external virtual onlyKeepers {
require(!isShutdown, "Shutdown");
_pushFunds(_amount);
}
/// @notice Pull funds from the vault
/// @param _amount Amount of shares to redeem from vault
function pullFunds(uint256 _amount) external virtual onlyKeepers {
_pullFunds(_amount);
}
/// @notice Set keeper status for an address
/// @param _address Address to update
/// @param _allowed Whether address should have keeper privileges
function setKeeper(
address _address,
bool _allowed
) external virtual onlyGovernance {
keepers[_address] = _allowed;
emit UpdatedKeeper(_address, _allowed);
}
function setAuction(address _auction) external onlyGovernance {
_setAuction(_auction);
}
function setProfitMaxUnlockTime(
uint256 _profitMaxUnlockTime
) external onlyGovernance {
profitMaxUnlockTime = _profitMaxUnlockTime;
emit UpdatedProfitMaxUnlockTime(_profitMaxUnlockTime);
}
function setIsShutdown(bool _isShutdown) external onlyGovernance {
isShutdown = _isShutdown;
emit UpdatedIsShutdown(_isShutdown);
}
function setAmountToTend(uint256 _amountToTend) external onlyGovernance {
amountToTend = _amountToTend;
emit UpdatedAmountToTend(_amountToTend);
}
/*//////////////////////////////////////////////////////////////
ABSTRACT METHODS TO IMPLEMENT
//////////////////////////////////////////////////////////////*/
/// @notice Calculate total assets held (vault + loose)
function totalAssets() public view virtual returns (uint256) {
return balanceOfAsset() + valueOfDeployedAssets();
}
function balanceOfAsset() public view virtual returns (uint256) {
return asset.balanceOf(address(this));
}
function valueOfDeployedAssets() public view virtual returns (uint256);
function _pushFunds(uint256 _amount) internal virtual returns (uint256);
function _pullFunds(uint256 _amount) internal virtual returns (uint256);
function _tend(uint256 _idleAssets) internal virtual {
_pushFunds(_idleAssets);
}
function _tendTrigger() internal view virtual returns (bool) {
return balanceOfAsset() > amountToTend;
}
/// @notice Bridge assets back to origin chain
/// @dev Implementation must handle bridge-specific token transfer logic
/// @param _amount Amount of tokens to bridge back
function _bridgeAssets(uint256 _amount) internal virtual returns (uint256);
/// @notice Send message to origin chain without tokens
/// @dev Implementation must handle bridge-specific message sending
/// @param data Encoded message data (typically includes request ID and profit/loss)
function _bridgeMessage(bytes memory data) internal virtual;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC4626.sol)
pragma solidity ^0.8.0;
import "../token/ERC20/IERC20.sol";
import "../token/ERC20/extensions/IERC20Metadata.sol";
/**
* @dev Interface of the ERC4626 "Tokenized Vault Standard", as defined in
* https://eips.ethereum.org/EIPS/eip-4626[ERC-4626].
*
* _Available since v4.7._
*/
interface IERC4626 is IERC20, IERC20Metadata {
event Deposit(address indexed sender, address indexed owner, uint256 assets, uint256 shares);
event Withdraw(
address indexed sender,
address indexed receiver,
address indexed owner,
uint256 assets,
uint256 shares
);
/**
* @dev Returns the address of the underlying token used for the Vault for accounting, depositing, and withdrawing.
*
* - MUST be an ERC-20 token contract.
* - MUST NOT revert.
*/
function asset() external view returns (address assetTokenAddress);
/**
* @dev Returns the total amount of the underlying asset that is “managed” by Vault.
*
* - SHOULD include any compounding that occurs from yield.
* - MUST be inclusive of any fees that are charged against assets in the Vault.
* - MUST NOT revert.
*/
function totalAssets() external view returns (uint256 totalManagedAssets);
/**
* @dev Returns the amount of shares that the Vault would exchange for the amount of assets provided, in an ideal
* scenario where all the conditions are met.
*
* - MUST NOT be inclusive of any fees that are charged against assets in the Vault.
* - MUST NOT show any variations depending on the caller.
* - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange.
* - MUST NOT revert.
*
* NOTE: This calculation MAY NOT reflect the “per-user” price-per-share, and instead should reflect the
* “average-user’s” price-per-share, meaning what the average user should expect to see when exchanging to and
* from.
*/
function convertToShares(uint256 assets) external view returns (uint256 shares);
/**
* @dev Returns the amount of assets that the Vault would exchange for the amount of shares provided, in an ideal
* scenario where all the conditions are met.
*
* - MUST NOT be inclusive of any fees that are charged against assets in the Vault.
* - MUST NOT show any variations depending on the caller.
* - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange.
* - MUST NOT revert.
*
* NOTE: This calculation MAY NOT reflect the “per-user” price-per-share, and instead should reflect the
* “average-user’s” price-per-share, meaning what the average user should expect to see when exchanging to and
* from.
*/
function convertToAssets(uint256 shares) external view returns (uint256 assets);
/**
* @dev Returns the maximum amount of the underlying asset that can be deposited into the Vault for the receiver,
* through a deposit call.
*
* - MUST return a limited value if receiver is subject to some deposit limit.
* - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of assets that may be deposited.
* - MUST NOT revert.
*/
function maxDeposit(address receiver) external view returns (uint256 maxAssets);
/**
* @dev Allows an on-chain or off-chain user to simulate the effects of their deposit at the current block, given
* current on-chain conditions.
*
* - MUST return as close to and no more than the exact amount of Vault shares that would be minted in a deposit
* call in the same transaction. I.e. deposit should return the same or more shares as previewDeposit if called
* in the same transaction.
* - MUST NOT account for deposit limits like those returned from maxDeposit and should always act as though the
* deposit would be accepted, regardless if the user has enough tokens approved, etc.
* - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees.
* - MUST NOT revert.
*
* NOTE: any unfavorable discrepancy between convertToShares and previewDeposit SHOULD be considered slippage in
* share price or some other type of condition, meaning the depositor will lose assets by depositing.
*/
function previewDeposit(uint256 assets) external view returns (uint256 shares);
/**
* @dev Mints shares Vault shares to receiver by depositing exactly amount of underlying tokens.
*
* - MUST emit the Deposit event.
* - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the
* deposit execution, and are accounted for during deposit.
* - MUST revert if all of assets cannot be deposited (due to deposit limit being reached, slippage, the user not
* approving enough underlying tokens to the Vault contract, etc).
*
* NOTE: most implementations will require pre-approval of the Vault with the Vault’s underlying asset token.
*/
function deposit(uint256 assets, address receiver) external returns (uint256 shares);
/**
* @dev Returns the maximum amount of the Vault shares that can be minted for the receiver, through a mint call.
* - MUST return a limited value if receiver is subject to some mint limit.
* - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of shares that may be minted.
* - MUST NOT revert.
*/
function maxMint(address receiver) external view returns (uint256 maxShares);
/**
* @dev Allows an on-chain or off-chain user to simulate the effects of their mint at the current block, given
* current on-chain conditions.
*
* - MUST return as close to and no fewer than the exact amount of assets that would be deposited in a mint call
* in the same transaction. I.e. mint should return the same or fewer assets as previewMint if called in the
* same transaction.
* - MUST NOT account for mint limits like those returned from maxMint and should always act as though the mint
* would be accepted, regardless if the user has enough tokens approved, etc.
* - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees.
* - MUST NOT revert.
*
* NOTE: any unfavorable discrepancy between convertToAssets and previewMint SHOULD be considered slippage in
* share price or some other type of condition, meaning the depositor will lose assets by minting.
*/
function previewMint(uint256 shares) external view returns (uint256 assets);
/**
* @dev Mints exactly shares Vault shares to receiver by depositing amount of underlying tokens.
*
* - MUST emit the Deposit event.
* - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the mint
* execution, and are accounted for during mint.
* - MUST revert if all of shares cannot be minted (due to deposit limit being reached, slippage, the user not
* approving enough underlying tokens to the Vault contract, etc).
*
* NOTE: most implementations will require pre-approval of the Vault with the Vault’s underlying asset token.
*/
function mint(uint256 shares, address receiver) external returns (uint256 assets);
/**
* @dev Returns the maximum amount of the underlying asset that can be withdrawn from the owner balance in the
* Vault, through a withdraw call.
*
* - MUST return a limited value if owner is subject to some withdrawal limit or timelock.
* - MUST NOT revert.
*/
function maxWithdraw(address owner) external view returns (uint256 maxAssets);
/**
* @dev Allows an on-chain or off-chain user to simulate the effects of their withdrawal at the current block,
* given current on-chain conditions.
*
* - MUST return as close to and no fewer than the exact amount of Vault shares that would be burned in a withdraw
* call in the same transaction. I.e. withdraw should return the same or fewer shares as previewWithdraw if
* called
* in the same transaction.
* - MUST NOT account for withdrawal limits like those returned from maxWithdraw and should always act as though
* the withdrawal would be accepted, regardless if the user has enough shares, etc.
* - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees.
* - MUST NOT revert.
*
* NOTE: any unfavorable discrepancy between convertToShares and previewWithdraw SHOULD be considered slippage in
* share price or some other type of condition, meaning the depositor will lose assets by depositing.
*/
function previewWithdraw(uint256 assets) external view returns (uint256 shares);
/**
* @dev Burns shares from owner and sends exactly assets of underlying tokens to receiver.
*
* - MUST emit the Withdraw event.
* - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the
* withdraw execution, and are accounted for during withdraw.
* - MUST revert if all of assets cannot be withdrawn (due to withdrawal limit being reached, slippage, the owner
* not having enough shares, etc).
*
* Note that some implementations will require pre-requesting to the Vault before a withdrawal may be performed.
* Those methods should be performed separately.
*/
function withdraw(uint256 assets, address receiver, address owner) external returns (uint256 shares);
/**
* @dev Returns the maximum amount of Vault shares that can be redeemed from the owner balance in the Vault,
* through a redeem call.
*
* - MUST return a limited value if owner is subject to some withdrawal limit or timelock.
* - MUST return balanceOf(owner) if owner is not subject to any withdrawal limit or timelock.
* - MUST NOT revert.
*/
function maxRedeem(address owner) external view returns (uint256 maxShares);
/**
* @dev Allows an on-chain or off-chain user to simulate the effects of their redeemption at the current block,
* given current on-chain conditions.
*
* - MUST return as close to and no more than the exact amount of assets that would be withdrawn in a redeem call
* in the same transaction. I.e. redeem should return the same or more assets as previewRedeem if called in the
* same transaction.
* - MUST NOT account for redemption limits like those returned from maxRedeem and should always act as though the
* redemption would be accepted, regardless if the user has enough shares, etc.
* - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees.
* - MUST NOT revert.
*
* NOTE: any unfavorable discrepancy between convertToAssets and previewRedeem SHOULD be considered slippage in
* share price or some other type of condition, meaning the depositor will lose assets by redeeming.
*/
function previewRedeem(uint256 shares) external view returns (uint256 assets);
/**
* @dev Burns exactly shares from owner and sends assets of underlying tokens to receiver.
*
* - MUST emit the Withdraw event.
* - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the
* redeem execution, and are accounted for during redeem.
* - MUST revert if all of shares cannot be redeemed (due to withdrawal limit being reached, slippage, the owner
* not having enough shares, etc).
*
* NOTE: some implementations will require pre-requesting to the Vault before a withdrawal may be performed.
* Those methods should be performed separately.
*/
function redeem(uint256 shares, address receiver, address owner) external returns (uint256 assets);
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.18;
/// @title IPolygonZkEVMBridgeV2
/// @notice Interface for the Polygon zkEVM Unified Bridge (LxLy)
interface IPolygonZkEVMBridgeV2 {
/// @notice Bridge assets to another network
/// @param destinationNetwork Network identifier where the asset should be sent
/// @param destinationAddress Address that will receive the bridged asset
/// @param amount Amount of tokens to bridge
/// @param token Token address to bridge (address(0) for native token)
/// @param forceUpdateGlobalExitRoot Force update of global exit root
/// @param permitData Optional permit data for token approval
function bridgeAsset(
uint32 destinationNetwork,
address destinationAddress,
uint256 amount,
address token,
bool forceUpdateGlobalExitRoot,
bytes calldata permitData
) external payable;
/// @notice Bridge a message to another network
/// @param destinationNetwork Network identifier where the message should be sent
/// @param destinationAddress Address that will receive the message
/// @param forceUpdateGlobalExitRoot Force update of global exit root
/// @param metadata Message data to bridge
function bridgeMessage(
uint32 destinationNetwork,
address destinationAddress,
bool forceUpdateGlobalExitRoot,
bytes calldata metadata
) external payable;
/// @notice Bridge a message with ETH value to another network
/// @param destinationNetwork Network identifier where the message should be sent
/// @param destinationAddress Address that will receive the message
/// @param amountWETH Amount of WETH to include with the message
/// @param forceUpdateGlobalExitRoot Force update of global exit root
/// @param metadata Message data to bridge
function bridgeMessageWETH(
uint32 destinationNetwork,
address destinationAddress,
uint256 amountWETH,
bool forceUpdateGlobalExitRoot,
bytes calldata metadata
) external;
/// @notice Claim bridged assets using Merkle proofs
/// @param smtProofLocalExitRoot Merkle proof against network exit root
/// @param smtProofRollupExitRoot Merkle proof against rollup exit root
/// @param globalIndex Encoded index specifying origin network and leaf position
/// @param mainnetExitRoot Exit root hash from mainnet
/// @param rollupExitRoot Exit root hash from rollup
/// @param originNetwork Source network identifier
/// @param originTokenAddress Token address on origin network
/// @param destinationNetwork Target network identifier
/// @param destinationAddress Recipient address
/// @param amount Amount to claim
/// @param metadata Token metadata for wrapped token creation
function claimAsset(
bytes32[32] calldata smtProofLocalExitRoot,
bytes32[32] calldata smtProofRollupExitRoot,
uint256 globalIndex,
bytes32 mainnetExitRoot,
bytes32 rollupExitRoot,
uint32 originNetwork,
address originTokenAddress,
uint32 destinationNetwork,
address destinationAddress,
uint256 amount,
bytes calldata metadata
) external;
/// @notice Claim bridged message using Merkle proofs
/// @param smtProofLocalExitRoot Merkle proof against network exit root
/// @param smtProofRollupExitRoot Merkle proof against rollup exit root
/// @param globalIndex Encoded index specifying origin network and leaf position
/// @param mainnetExitRoot Exit root hash from mainnet
/// @param rollupExitRoot Exit root hash from rollup
/// @param originNetwork Source network identifier
/// @param originAddress Sender address on origin network
/// @param destinationNetwork Target network identifier
/// @param destinationAddress Recipient address
/// @param amount ETH amount included with message
/// @param metadata Message data
function claimMessage(
bytes32[32] calldata smtProofLocalExitRoot,
bytes32[32] calldata smtProofRollupExitRoot,
uint256 globalIndex,
bytes32 mainnetExitRoot,
bytes32 rollupExitRoot,
uint32 originNetwork,
address originAddress,
uint32 destinationNetwork,
address destinationAddress,
uint256 amount,
bytes calldata metadata
) external;
/// @notice Get the network ID of this bridge instance
/// @return Network identifier
function networkID() external view returns (uint32);
/// @notice Get the wrapped token address for a given origin token
/// @param originNetwork Origin network identifier
/// @param originTokenAddress Token address on origin network
/// @return Wrapped token address on this network
function getTokenWrappedAddress(
uint32 originNetwork,
address originTokenAddress
) external view returns (address);
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.18;
/// @title IBridgeMessageReceiver
/// @notice Interface for contracts that receive cross-chain messages via the LxLy bridge
/// @dev Implement this interface to receive messages from bridgeMessage() calls
interface IBridgeMessageReceiver {
/// @notice Called by the bridge when a message is claimed
/// @param originAddress The sender address on the origin network
/// @param originNetwork The network ID where the message originated
/// @param data The message payload
function onMessageReceived(
address originAddress,
uint32 originNetwork,
bytes calldata data
) external payable;
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity >=0.8.18;
contract Governance {
/// @notice Emitted when the governance address is updated.
event GovernanceTransferred(
address indexed previousGovernance,
address indexed newGovernance
);
modifier onlyGovernance() {
_checkGovernance();
_;
}
/// @notice Checks if the msg sender is the governance.
function _checkGovernance() internal view virtual {
require(governance == msg.sender, "!governance");
}
/// @notice Address that can set the default base fee and provider
address public governance;
constructor(address _governance) {
governance = _governance;
emit GovernanceTransferred(address(0), _governance);
}
/**
* @notice Sets a new address as the governance of the contract.
* @dev Throws if the caller is not current governance.
* @param _newGovernance The new governance address.
*/
function transferGovernance(
address _newGovernance
) external virtual onlyGovernance {
require(_newGovernance != address(0), "ZERO ADDRESS");
address oldGovernance = governance;
governance = _newGovernance;
emit GovernanceTransferred(oldGovernance, _newGovernance);
}
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity >=0.8.18;
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import {AuctionFactory, Auction} from "../Auctions/AuctionFactory.sol";
import {BaseSwapper} from "./BaseSwapper.sol";
/**
* @title AuctionSwapper
* @author yearn.fi
* @dev Helper contract for a strategy to use dutch auctions for token sales.
*
* This contract is meant to be inherited by a V3 strategy in order
* to easily integrate dutch auctions into a contract for token swaps.
*
* AUCTION SETUP:
* - The strategist needs to implement a way to call `_setAuction()`
* to set the auction contract address for token sales
* - `useAuction` defaults to false but is automatically set to true
* when a non-zero auction address is set via `_setAuction()`
* - Auctions can be manually enabled/disabled using `_setUseAuction()`
*
* PERMISSIONLESS OPERATIONS:
* - `kickAuction()` is public and permissionless - anyone can trigger
* auctions when conditions are met (sufficient balance, auctions enabled)
* - This allows for automated auction triggering by bots or external systems
*
* AUCTION TRIGGER INTEGRATION:
* - Implements `auctionTrigger()` for integration with CommonAuctionTrigger
* - Returns encoded calldata for `kickAuction()` when conditions are met
* - Provides smart logic to prevent duplicate auctions and handle edge cases
*
* HOOKS:
* - The contract can act as a `hook` contract for the auction with the
* ability to override functions to implement custom hooks
* - If hooks are not desired, call `setHookFlags()` on the auction contract
* to avoid unnecessary gas for unused functions
*/
contract AuctionSwapper is BaseSwapper {
using SafeERC20 for ERC20;
event AuctionSet(address indexed auction);
event UseAuctionSet(bool indexed useAuction);
/// @notice Address of the specific Auction contract this strategy uses for token sales.
address public auction;
/// @notice Whether to use auctions for token swaps.
/// @dev Defaults to false but automatically set to true when setting a non-zero auction address.
/// Can be manually controlled via _setUseAuction() for fine-grained control.
bool public useAuction;
/*//////////////////////////////////////////////////////////////
AUCTION STARTING AND STOPPING
//////////////////////////////////////////////////////////////*/
/// @notice Set the auction contract to use.
/// @dev Automatically enables auctions (useAuction = true) when setting a non-zero address.
/// @param _auction The auction contract address. Must have this contract as receiver.
function _setAuction(address _auction) internal virtual {
if (_auction != address(0)) {
require(
Auction(_auction).receiver() == address(this),
"wrong receiver"
);
// Automatically enable auctions when setting a non-zero auction address
if (!useAuction) {
useAuction = true;
emit UseAuctionSet(true);
}
}
auction = _auction;
emit AuctionSet(_auction);
}
/// @notice Manually enable or disable auction usage.
/// @dev Can be used to override the auto-enable behavior or temporarily disable auctions.
/// @param _useAuction Whether to use auctions for token swaps.
function _setUseAuction(bool _useAuction) internal virtual {
useAuction = _useAuction;
emit UseAuctionSet(_useAuction);
}
/**
* @notice Return how much of a token could currently be kicked into auction.
* @dev Includes both contract balance and tokens already in the auction contract.
* @param _token The token that could be sold in auction.
* @return The total amount of `_token` available for auction (0 if auctions disabled).
*/
function kickable(address _token) public view virtual returns (uint256) {
if (!useAuction) return 0;
address _auction = auction;
if (_auction == address(0)) return 0;
if (
Auction(_auction).isActive(_token) &&
Auction(_auction).available(_token) > 0
) {
return 0;
}
return
ERC20(_token).balanceOf(address(this)) +
ERC20(_token).balanceOf(_auction);
}
/**
* @notice Kick an auction for a given token (PERMISSIONLESS).
* @dev Anyone can call this function to trigger auctions when conditions are met.
* Useful for automated systems, bots, or manual triggering.
* @param _from The token to be sold in the auction.
* @return The amount of tokens that were kicked into the auction.
*/
function kickAuction(address _from) external virtual returns (uint256) {
return _kickAuction(_from);
}
/**
* @dev Internal function to kick an auction for a given token.
* @param _from The token that was being sold.
*/
function _kickAuction(address _from) internal virtual returns (uint256) {
require(useAuction, "useAuction is false");
address _auction = auction;
if (Auction(_auction).isActive(_from)) {
if (Auction(_auction).available(_from) > 0) {
return 0;
}
Auction(_auction).settle(_from);
}
uint256 _balance = ERC20(_from).balanceOf(address(this));
if (_balance > 0) {
ERC20(_from).safeTransfer(_auction, _balance);
}
return Auction(_auction).kick(_from);
}
/*//////////////////////////////////////////////////////////////
AUCTION TRIGGER INTERFACE
//////////////////////////////////////////////////////////////*/
/**
* @notice Default auction trigger implementation for CommonAuctionTrigger integration.
* @dev Returns whether an auction should be kicked and the encoded calldata to do so.
* This enables automated auction triggering through external trigger systems.
* @param _from The token that could be sold in an auction.
* @return shouldKick True if an auction should be kicked for this token.
* @return data Encoded calldata for `kickAuction(_from)` if shouldKick is true,
* otherwise a descriptive error message explaining why not.
*/
function auctionTrigger(
address _from
) external view virtual returns (bool shouldKick, bytes memory data) {
address _auction = auction;
if (_auction == address(0)) {
return (false, bytes("No auction set"));
}
if (!useAuction) {
return (false, bytes("Auctions disabled"));
}
uint256 kickableAmount = kickable(_from);
if (kickableAmount != 0 && kickableAmount >= minAmountToSell) {
return (true, abi.encodeCall(this.kickAuction, (_from)));
}
return (false, bytes("not enough kickable"));
}
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity >=0.8.18;
import {Auction} from "./Auction.sol";
import {ClonableCreate2} from "../utils/ClonableCreate2.sol";
/// @title AuctionFactory
/// @notice Deploy a new Auction.
contract AuctionFactory is ClonableCreate2 {
event DeployedNewAuction(address indexed auction, address indexed want);
/// @notice The amount to start the auction with.
uint256 public constant DEFAULT_STARTING_PRICE = 1_000_000;
/// @notice Full array of all auctions deployed through this factory.
address[] public auctions;
constructor() {
// Deploy the original
original = address(new Auction());
}
function version() external pure returns (string memory) {
return "1.0.3";
}
/**
* @notice Creates a new auction contract.
* @param _want Address of the token users will bid with.
* @return _newAuction Address of the newly created auction contract.
*/
function createNewAuction(address _want) external returns (address) {
return
_createNewAuction(
_want,
msg.sender,
msg.sender,
DEFAULT_STARTING_PRICE,
bytes32(0)
);
}
/**
* @notice Creates a new auction contract.
* @param _want Address of the token users will bid with.
* @param _receiver Address that will receive the funds in the auction.
* @return _newAuction Address of the newly created auction contract.
*/
function createNewAuction(
address _want,
address _receiver
) external returns (address) {
return
_createNewAuction(
_want,
_receiver,
msg.sender,
DEFAULT_STARTING_PRICE,
bytes32(0)
);
}
/**
* @notice Creates a new auction contract.
* @param _want Address of the token users will bid with.
* @param _receiver Address that will receive the funds in the auction.
* @param _governance Address allowed to enable and disable auctions.
* @return _newAuction Address of the newly created auction contract.
*/
function createNewAuction(
address _want,
address _receiver,
address _governance
) external returns (address) {
return
_createNewAuction(
_want,
_receiver,
_governance,
DEFAULT_STARTING_PRICE,
bytes32(0)
);
}
/**
* @notice Creates a new auction contract.
* @param _want Address of the token users will bid with.
* @param _receiver Address that will receive the funds in the auction.
* @param _governance Address allowed to enable and disable auctions.
* @param _startingPrice Starting price for the auction (no decimals).
* NOTE: The starting price should be without decimals (1k == 1_000).
* @return _newAuction Address of the newly created auction contract.
*/
function createNewAuction(
address _want,
address _receiver,
address _governance,
uint256 _startingPrice
) external returns (address) {
return
_createNewAuction(
_want,
_receiver,
_governance,
_startingPrice,
bytes32(0)
);
}
/**
* @notice Creates a new auction contract.
* @param _want Address of the token users will bid with.
* @param _receiver Address that will receive the funds in the auction.
* @param _governance Address allowed to enable and disable auctions.
* @param _startingPrice Starting price for the auction (no decimals).
* @param _salt The salt to use for deterministic deployment.
* @return _newAuction Address of the newly created auction contract.
*/
function createNewAuction(
address _want,
address _receiver,
address _governance,
uint256 _startingPrice,
bytes32 _salt
) external returns (address) {
return
_createNewAuction(
_want,
_receiver,
_governance,
_startingPrice,
_salt
);
}
/**
* @dev Deploys and initializes a new Auction
*/
function _createNewAuction(
address _want,
address _receiver,
address _governance,
uint256 _startingPrice,
bytes32 _salt
) internal returns (address _newAuction) {
if (_salt == bytes32(0)) {
// If none set, generate unique salt. msg.sender gets encoded in getSalt()
_salt = keccak256(abi.encodePacked(_want, _receiver, _governance));
}
_newAuction = _cloneCreate2(_salt);
Auction(_newAuction).initialize(
_want,
_receiver,
_governance,
_startingPrice
);
auctions.push(_newAuction);
emit DeployedNewAuction(_newAuction, _want);
}
/**
* @notice Get the full list of auctions deployed through this factory.
*/
function getAllAuctions() external view returns (address[] memory) {
return auctions;
}
/**
* @notice Get the total number of auctions deployed through this factory.
*/
function numberOfAuctions() external view returns (uint256) {
return auctions.length;
}
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity >=0.8.18;
/**
* @title BaseSwapper
* @author yearn.fi
* @dev Base contract for all swapper contracts except TradeFactorySwapper.
* Contains the common minAmountToSell variable that most swappers need.
*/
contract BaseSwapper {
/// @notice Minimum amount of tokens to sell in a swap.
uint256 public minAmountToSell;
/**
* @dev Set the minimum amount to sell in a swap.
* @param _minAmountToSell Minimum amount of tokens needed to execute a swap.
*/
function _setMinAmountToSell(uint256 _minAmountToSell) internal virtual {
minAmountToSell = _minAmountToSell;
}
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity >=0.8.18;
import {Maths} from "../libraries/Maths.sol";
import {ITaker} from "../interfaces/ITaker.sol";
import {GPv2Order} from "../libraries/GPv2Order.sol";
import {Governance2Step} from "../utils/Governance2Step.sol";
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol";
interface ICowSettlement {
function domainSeparator() external view returns (bytes32);
}
/**
* @title Auction
* @author yearn.fi
* @notice General use dutch auction contract for token sales.
*/
contract Auction is Governance2Step, ReentrancyGuard {
using GPv2Order for GPv2Order.Data;
using SafeERC20 for ERC20;
/// @notice Emitted when a new auction is enabled
event AuctionEnabled(address indexed from, address indexed to);
/// @notice Emitted when an auction is disabled.
event AuctionDisabled(address indexed from, address indexed to);
/// @notice Emitted when auction has been kicked.
event AuctionKicked(address indexed from, uint256 available);
/// @notice Emitted when the starting price is updated.
event UpdatedStartingPrice(uint256 startingPrice);
/// @notice Emitted when the step decay rate is updated.
event UpdatedStepDecayRate(uint256 indexed stepDecayRate);
/// @notice Emitted when the step duration is updated.
event UpdatedStepDuration(uint256 indexed stepDuration);
/// @notice Emitted when the auction is settled.
event AuctionSettled(address indexed from);
/// @notice Emitted when the auction is swept.
event AuctionSwept(address indexed token, address indexed to);
/// @dev Store address and scaler in one slot.
struct TokenInfo {
address tokenAddress;
uint96 scaler;
}
/// @notice Store all the auction specific information.
struct AuctionInfo {
uint64 kicked;
uint64 scaler;
uint128 initialAvailable;
}
uint256 internal constant WAD = 1e18;
address internal constant COW_SETTLEMENT =
0x9008D19f58AAbD9eD0D60971565AA8510560ab41;
address internal constant VAULT_RELAYER =
0xC92E8bdf79f0507f65a392b0ab4667716BFE0110;
/// @notice The time that each auction lasts.
uint256 internal constant AUCTION_LENGTH = 1 days;
/// @notice Struct to hold the info for `want`.
TokenInfo internal wantInfo;
/// @notice The address that will receive the funds in the auction.
address public receiver;
/// @notice The amount to start the auction at.
/// @dev This is an unscaled "lot size" essentially to start the pricing in "want".
/// The kicked amount of _from is divided by this to get the per auction initial price.
uint256 public startingPrice;
/// @notice The time period for each price step in seconds.
uint256 public stepDuration;
/// @notice The decay rate per step in basis points (e.g., 50 for 0.5% decrease per step).
uint256 public stepDecayRate;
/// @notice Mapping from `from` token to its struct.
mapping(address => AuctionInfo) public auctions;
/// @notice Array of all the enabled auction for this contract.
address[] public enabledAuctions;
constructor() Governance2Step(msg.sender) {}
/**
* @notice Initializes the Auction contract with initial parameters.
* @param _want Address this auction is selling to.
* @param _receiver Address that will receive the funds from the auction.
* @param _governance Address of the contract governance.
* @param _startingPrice Starting price for each auction.
*/
function initialize(
address _want,
address _receiver,
address _governance,
uint256 _startingPrice
) public virtual {
require(stepDecayRate == 0, "initialized");
require(_want != address(0), "ZERO ADDRESS");
require(_startingPrice != 0, "starting price");
require(_receiver != address(0), "receiver");
// Cannot have more than 18 decimals.
uint256 decimals = ERC20(_want).decimals();
require(decimals <= 18, "unsupported decimals");
// Set variables
wantInfo = TokenInfo({
tokenAddress: _want,
scaler: uint96(WAD / 10 ** decimals)
});
receiver = _receiver;
governance = _governance;
emit GovernanceTransferred(address(0), _governance);
startingPrice = _startingPrice;
emit UpdatedStartingPrice(_startingPrice);
// Default to 50bps every 60 seconds
stepDuration = 60;
emit UpdatedStepDuration(stepDuration);
stepDecayRate = 50; // 50 basis points = 0.5% decay per step
emit UpdatedStepDecayRate(stepDecayRate);
}
/*//////////////////////////////////////////////////////////////
VIEW METHODS
//////////////////////////////////////////////////////////////*/
function version() external pure returns (string memory) {
return "1.0.3";
}
/**
* @notice Get the address of this auctions want token.
* @return . The want token.
*/
function want() public view virtual returns (address) {
return wantInfo.tokenAddress;
}
function auctionLength() public view virtual returns (uint256) {
return AUCTION_LENGTH;
}
/**
* @notice Get the available amount for the auction.
* @param _from The address of the token to be auctioned.
* @return . The available amount for the auction.
*/
function available(address _from) public view virtual returns (uint256) {
if (!isActive(_from)) return 0;
return
Maths.min(
auctions[_from].initialAvailable,
ERC20(_from).balanceOf(address(this))
);
}
/**
* @notice Get the kicked timestamp for the auction.
* @param _from The address of the token to be auctioned.
* @return . The kicked timestamp for the auction.
*/
function kicked(address _from) external view virtual returns (uint256) {
return auctions[_from].kicked;
}
/**
* @notice Check if the auction is active.
* @param _from The address of the token to be auctioned.
* @return . Whether the auction is active.
*/
function isActive(address _from) public view virtual returns (bool) {
return auctions[_from].kicked + AUCTION_LENGTH >= block.timestamp;
}
/**
* @notice Get all the enabled auctions.
*/
function getAllEnabledAuctions()
external
view
virtual
returns (address[] memory)
{
return enabledAuctions;
}
/**
* @notice Get the pending amount available for the next auction.
* @dev Defaults to the auctions balance of the from token if no hook.
* @param _from The address of the token to be auctioned.
* @return uint256 The amount that can be kicked into the auction.
*/
function kickable(address _from) external view virtual returns (uint256) {
// If not enough time has passed then `kickable` is 0.
if (isActive(_from)) return 0;
// Use the full balance of this contract.
return ERC20(_from).balanceOf(address(this));
}
/**
* @notice Gets the amount of `want` needed to buy the available amount of `from`.
* @param _from The address of the token to be auctioned.
* @return . The amount of `want` needed to fulfill the take amount.
*/
function getAmountNeeded(
address _from
) external view virtual returns (uint256) {
return
_getAmountNeeded(
auctions[_from],
available(_from),
block.timestamp
);
}
/**
* @notice Gets the amount of `want` needed to buy a specific amount of `from`.
* @param _from The address of the token to be auctioned.
* @param _amountToTake The amount of `from` to take in the auction.
* @return . The amount of `want` needed to fulfill the take amount.
*/
function getAmountNeeded(
address _from,
uint256 _amountToTake
) external view virtual returns (uint256) {
return
_getAmountNeeded(auctions[_from], _amountToTake, block.timestamp);
}
/**
* @notice Gets the amount of `want` needed to buy a specific amount of `from` at a specific timestamp.
* @param _from The address of the token to be auctioned.
* @param _amountToTake The amount `from` to take in the auction.
* @param _timestamp The specific timestamp for calculating the amount needed.
* @return . The amount of `want` needed to fulfill the take amount.
*/
function getAmountNeeded(
address _from,
uint256 _amountToTake,
uint256 _timestamp
) external view virtual returns (uint256) {
return _getAmountNeeded(auctions[_from], _amountToTake, _timestamp);
}
/**
* @dev Return the amount of `want` needed to buy `_amountToTake`.
*/
function _getAmountNeeded(
AuctionInfo memory _auction,
uint256 _amountToTake,
uint256 _timestamp
) internal view virtual returns (uint256) {
return
// Scale _amountToTake to 1e18
(_amountToTake *
_auction.scaler *
// Price is always 1e18
_price(
_auction.kicked,
_auction.initialAvailable * _auction.scaler,
_timestamp
)) /
1e18 /
// Scale back down to want.
wantInfo.scaler;
}
/**
* @notice Gets the price of the auction at the current timestamp.
* @param _from The address of the token to be auctioned.
* @return . The price of the auction.
*/
function price(address _from) external view virtual returns (uint256) {
return price(_from, block.timestamp);
}
/**
* @notice Gets the price of the auction at a specific timestamp.
* @param _from The address of the token to be auctioned.
* @param _timestamp The specific timestamp for calculating the price.
* @return . The price of the auction.
*/
function price(
address _from,
uint256 _timestamp
) public view virtual returns (uint256) {
// Get unscaled price and scale it down.
return
_price(
auctions[_from].kicked,
auctions[_from].initialAvailable * auctions[_from].scaler,
_timestamp
) / wantInfo.scaler;
}
/**
* @dev Internal function to calculate the scaled price based on auction parameters.
* @param _kicked The timestamp the auction was kicked.
* @param _available The initial available amount scaled 1e18.
* @param _timestamp The specific timestamp for calculating the price.
* @return . The calculated price scaled to 1e18.
*/
function _price(
uint256 _kicked,
uint256 _available,
uint256 _timestamp
) internal view virtual returns (uint256) {
if (_available == 0) return 0;
uint256 secondsElapsed = _timestamp - _kicked;
if (secondsElapsed > AUCTION_LENGTH) return 0;
// Calculate the number of price steps that have passed
uint256 steps = secondsElapsed / stepDuration;
// Convert basis points to ray multiplier (e.g., 50 bps = 0.995 * 1e27)
// rayMultiplier = 1e27 - (basisPoints * 1e23)
uint256 rayMultiplier = 1e27 - (stepDecayRate * 1e23);
// Calculate the decay multiplier using the configurable decay rate per step
uint256 decayMultiplier = Maths.rpow(rayMultiplier, steps);
// Calculate initial price per token
uint256 initialPrice = Maths.wdiv(startingPrice * 1e18, _available);
// Apply the decay to get the current price
return Maths.rmul(initialPrice, decayMultiplier);
}
/*//////////////////////////////////////////////////////////////
SETTERS
//////////////////////////////////////////////////////////////*/
/**
* @notice Enables a new auction.
* @param _from The address of the token to be auctioned.
*/
function enable(address _from) external virtual onlyGovernance {
address _want = want();
require(_from != address(0) && _from != _want, "ZERO ADDRESS");
require(auctions[_from].scaler == 0, "already enabled");
// Cannot have more than 18 decimals.
uint256 decimals = ERC20(_from).decimals();
require(decimals <= 18, "unsupported decimals");
// Store all needed info.
auctions[_from].scaler = uint64(WAD / 10 ** decimals);
ERC20(_from).forceApprove(VAULT_RELAYER, type(uint256).max);
// Add to the array.
enabledAuctions.push(_from);
emit AuctionEnabled(_from, _want);
}
/**
* @notice Disables an existing auction.
* @dev Only callable by governance.
* @param _from The address of the token being sold.
*/
function disable(address _from) external virtual {
disable(_from, 0);
}
/**
* @notice Disables an existing auction.
* @dev Only callable by governance.
* @param _from The address of the token being sold.
* @param _index The index the auctionId is at in the array.
*/
function disable(
address _from,
uint256 _index
) public virtual onlyGovernance {
// Make sure the auction was enabled.
require(auctions[_from].scaler != 0, "not enabled");
// Remove the struct.
delete auctions[_from];
ERC20(_from).forceApprove(VAULT_RELAYER, 0);
// Remove the auction ID from the array.
address[] memory _enabledAuctions = enabledAuctions;
if (_enabledAuctions[_index] != _from) {
// If the _index given is not the id find it.
for (uint256 i = 0; i < _enabledAuctions.length; ++i) {
if (_enabledAuctions[i] == _from) {
_index = i;
break;
}
}
}
// Move the id to the last spot if not there.
if (_index < _enabledAuctions.length - 1) {
_enabledAuctions[_index] = _enabledAuctions[
_enabledAuctions.length - 1
];
// Update the array.
enabledAuctions = _enabledAuctions;
}
// Pop the id off the array.
enabledAuctions.pop();
emit AuctionDisabled(_from, want());
}
function isAnActiveAuction() public view returns (bool) {
address[] memory _enabledAuctions = enabledAuctions;
for (uint256 i = 0; i < _enabledAuctions.length; ++i) {
if (isActive(_enabledAuctions[i])) {
return true;
}
}
return false;
}
/**
* @notice Sets the starting price for the auction.
* @dev This is an unscaled "lot size" essentially to start the pricing in "want".
* The kicked amount of _from is divided by this to get the per auction initial price.
* @param _startingPrice The new starting price for the auction.
*/
function setStartingPrice(
uint256 _startingPrice
) external virtual onlyGovernance {
require(_startingPrice != 0, "starting price");
// Don't change the price when an auction is active.
require(!isAnActiveAuction(), "active auction");
startingPrice = _startingPrice;
emit UpdatedStartingPrice(_startingPrice);
}
/**
* @notice Sets the step decay rate for the auction.
* @dev The decay rate is in basis points (e.g., 50 for 0.5% decay per step).
* @param _stepDecayRate The new decay rate per step in basis points (max 10000 = 100%).
*/
function setStepDecayRate(
uint256 _stepDecayRate
) external virtual onlyGovernance {
require(
_stepDecayRate > 0 && _stepDecayRate < 10_000,
"invalid decay rate"
);
// Don't change the decay rate when an auction is active.
require(!isAnActiveAuction(), "active auction");
stepDecayRate = _stepDecayRate;
emit UpdatedStepDecayRate(_stepDecayRate);
}
/**
* @notice Sets the step duration for the auction.
* @param _stepDuration The new step duration in seconds.
*/
function setStepDuration(
uint256 _stepDuration
) external virtual onlyGovernance {
require(
_stepDuration != 0 && _stepDuration < AUCTION_LENGTH,
"invalid step duration"
);
require(!isAnActiveAuction(), "active auction");
stepDuration = _stepDuration;
emit UpdatedStepDuration(_stepDuration);
}
/*//////////////////////////////////////////////////////////////
PARTICIPATE IN AUCTION
//////////////////////////////////////////////////////////////*/
/**
* @notice Kicks off an auction, updating its status and making funds available for bidding.
* @param _from The address of the token to be auctioned.
* @return _available The available amount for bidding on in the auction.
*/
function kick(
address _from
) external virtual nonReentrant returns (uint256 _available) {
return _kick(_from);
}
function _kick(
address _from
) internal virtual returns (uint256 _available) {
require(auctions[_from].scaler != 0, "not enabled");
require(
block.timestamp > auctions[_from].kicked + AUCTION_LENGTH,
"too soon"
);
// Just use current balance.
_available = ERC20(_from).balanceOf(address(this));
require(_available != 0, "nothing to kick");
// Update the auctions status.
auctions[_from].kicked = uint64(block.timestamp);
auctions[_from].initialAvailable = uint128(_available);
emit AuctionKicked(_from, _available);
}
/**
* @notice Take the token being sold in a live auction.
* @dev Defaults to taking the full amount and sending to the msg sender.
* @param _from The address of the token to be auctioned.
* @return . The amount of fromToken taken in the auction.
*/
function take(address _from) external virtual returns (uint256) {
return _take(_from, type(uint256).max, msg.sender, new bytes(0));
}
/**
* @notice Take the token being sold in a live auction with a specified maximum amount.
* @dev Will send the funds to the msg sender.
* @param _from The address of the token to be auctioned.
* @param _maxAmount The maximum amount of fromToken to take in the auction.
* @return . The amount of fromToken taken in the auction.
*/
function take(
address _from,
uint256 _maxAmount
) external virtual returns (uint256) {
return _take(_from, _maxAmount, msg.sender, new bytes(0));
}
/**
* @notice Take the token being sold in a live auction.
* @param _from The address of the token to be auctioned.
* @param _maxAmount The maximum amount of fromToken to take in the auction.
* @param _takerReceiver The address that will receive the fromToken.
* @return _amountTaken The amount of fromToken taken in the auction.
*/
function take(
address _from,
uint256 _maxAmount,
address _takerReceiver
) external virtual returns (uint256) {
return _take(_from, _maxAmount, _takerReceiver, new bytes(0));
}
/**
* @notice Take the token being sold in a live auction.
* @param _from The address of the token to be auctioned.
* @param _maxAmount The maximum amount of fromToken to take in the auction.
* @param _takerReceiver The address that will receive the fromToken.
* @param _data The data signify the callback should be used and sent with it.
* @return _amountTaken The amount of fromToken taken in the auction.
*/
function take(
address _from,
uint256 _maxAmount,
address _takerReceiver,
bytes calldata _data
) external virtual returns (uint256) {
return _take(_from, _maxAmount, _takerReceiver, _data);
}
/// @dev Implements the take of the auction.
function _take(
address _from,
uint256 _maxAmount,
address _takerReceiver,
bytes memory _data
) internal virtual nonReentrant returns (uint256 _amountTaken) {
AuctionInfo memory auction = auctions[_from];
// Make sure the auction is active.
require(
auction.kicked + AUCTION_LENGTH >= block.timestamp,
"not kicked"
);
// Max amount that can be taken.
uint256 _available = available(_from);
_amountTaken = _available > _maxAmount ? _maxAmount : _available;
// Get the amount needed
uint256 needed = _getAmountNeeded(
auction,
_amountTaken,
block.timestamp
);
require(needed != 0, "zero needed");
// Send `from`.
ERC20(_from).safeTransfer(_takerReceiver, _amountTaken);
// If the caller has specified data.
if (_data.length != 0) {
// Do the callback.
ITaker(_takerReceiver).auctionTakeCallback(
_from,
msg.sender,
_amountTaken,
needed,
_data
);
}
// Cache the want address.
address _want = want();
// Pull `want`.
ERC20(_want).safeTransferFrom(msg.sender, receiver, needed);
// If the full amount is taken, end the auction.
if (_amountTaken == _available) {
auctions[_from].kicked = uint64(0);
emit AuctionSettled(_from);
}
}
/// @dev Validates a COW order signature.
function isValidSignature(
bytes32 _hash,
bytes calldata signature
) external view returns (bytes4) {
// Make sure `_take` has not already been entered.
require(!_reentrancyGuardEntered(), "ReentrancyGuard: reentrant call");
// Decode the signature to get the order.
GPv2Order.Data memory order = abi.decode(signature, (GPv2Order.Data));
AuctionInfo memory auction = auctions[address(order.sellToken)];
// Get the current amount needed for the auction.
uint256 paymentAmount = _getAmountNeeded(
auction,
order.sellAmount,
block.timestamp
);
// Verify the order details.
// Retreive domain seperator each time for chains it is not deployed on yet
require(
_hash ==
order.hash(ICowSettlement(COW_SETTLEMENT).domainSeparator()),
"bad order"
);
require(paymentAmount != 0, "zero amount");
require(available(address(order.sellToken)) != 0, "zero available");
require(order.feeAmount == 0, "fee");
require(order.partiallyFillable, "partial fill");
require(order.validTo < auction.kicked + AUCTION_LENGTH, "expired");
require(order.appData == bytes32(0), "app data");
require(order.buyAmount >= paymentAmount, "bad price");
require(address(order.buyToken) == want(), "bad token");
require(order.receiver == receiver, "bad receiver");
require(order.sellAmount <= auction.initialAvailable, "bad amount");
// If all checks pass, return the magic value
return this.isValidSignature.selector;
}
/**
* @notice Forces the auction to be kicked.
* @dev Only callable by governance in replace of sweep settle and kick.
* @param _from The address of the token to be auctioned.
*/
function forceKick(address _from) external onlyGovernance {
auctions[_from].kicked = uint64(0);
_kick(_from);
}
/**
* @notice Allows the auction to be stopped if the full amount is taken.
* @param _from The address of the token to be auctioned.
*/
function settle(address _from) external virtual {
require(isActive(_from), "!active");
require(ERC20(_from).balanceOf(address(this)) == 0, "!empty");
auctions[_from].kicked = uint64(0);
emit AuctionSettled(_from);
}
function sweep(address _token) external virtual onlyGovernance {
ERC20(_token).safeTransfer(
msg.sender,
ERC20(_token).balanceOf(address(this))
);
emit AuctionSwept(_token, msg.sender);
}
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity >=0.8.18;
import {Clonable} from "./Clonable.sol";
contract ClonableCreate2 is Clonable {
/**
* @notice Clone the contracts default `original` contract using CREATE2.
* @param salt The salt to use for deterministic deployment.
* @return Address of the new Minimal Proxy clone.
*/
function _cloneCreate2(bytes32 salt) internal virtual returns (address) {
return _cloneCreate2(original, salt);
}
/**
* @notice Clone any `_original` contract using CREATE2.
* @param _original The address of the contract to clone.
* @param salt The salt to use for deterministic deployment.
* @return _newContract Address of the new Minimal Proxy clone.
*/
function _cloneCreate2(
address _original,
bytes32 salt
) internal virtual returns (address _newContract) {
// Hash the salt with msg.sender to protect deployments for specific callers
bytes32 finalSalt = getSalt(salt, msg.sender);
address predicted = computeCreate2Address(_original, salt, msg.sender);
bytes20 addressBytes = bytes20(_original);
assembly {
// EIP-1167 bytecode
let clone_code := mload(0x40)
mstore(
clone_code,
0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000
)
mstore(add(clone_code, 0x14), addressBytes)
mstore(
add(clone_code, 0x28),
0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000
)
_newContract := create2(0, clone_code, 0x37, finalSalt)
}
require(
_newContract != address(0) && _newContract == predicted,
"ClonableCreate2: create2 failed"
);
}
/**
* @notice Compute the address where a clone would be deployed using CREATE2.
* @param salt The salt to use for address computation.
* @return The address where the clone would be deployed.
*/
function computeCreate2Address(
bytes32 salt
) external view virtual returns (address) {
return computeCreate2Address(original, salt, msg.sender);
}
/**
* @notice Compute the address where a clone would be deployed using CREATE2.
* @param _original The address of the contract to clone.
* @param salt The salt to use for address computation.
* @return predicted address where the clone would be deployed.
*/
function computeCreate2Address(
address _original,
bytes32 salt
) external view virtual returns (address predicted) {
return computeCreate2Address(_original, salt, msg.sender);
}
/**
* @notice Compute the address where a clone would be deployed using CREATE2.
* @param _original The address of the contract to clone.
* @param salt The salt to use for address computation.
* @return predicted The address where the clone would be deployed.
*/
function computeCreate2Address(
address _original,
bytes32 salt,
address deployer
) public view virtual returns (address predicted) {
// Hash the salt with msg.sender to match deployment behavior
bytes32 finalSalt = getSalt(salt, deployer);
bytes20 addressBytes = bytes20(_original);
assembly {
let ptr := mload(0x40)
// Store the prefix
mstore(
ptr,
0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000
)
// Store the address
mstore(add(ptr, 0x14), addressBytes)
// Store the suffix
mstore(
add(ptr, 0x28),
0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000
)
// Compute init code hash
let initCodeHash := keccak256(ptr, 0x37)
// Compute the CREATE2 address
// 0xff ++ address(this) ++ salt ++ initCodeHash
mstore(ptr, 0xff)
mstore8(ptr, 0xff)
mstore(add(ptr, 0x01), shl(96, address()))
mstore(add(ptr, 0x15), finalSalt)
mstore(add(ptr, 0x35), initCodeHash)
predicted := keccak256(ptr, 0x55)
}
}
/**
* @dev Internal function to compute the final salt by hashing with msg.sender.
* This ensures that different callers get different deployment addresses
* even when using the same salt value.
* @param salt The user-provided salt.
* @return The final salt to use for CREATE2.
*/
function getSalt(
bytes32 salt,
address deployer
) public view virtual returns (bytes32) {
return keccak256(abi.encodePacked(salt, deployer));
}
}// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity >=0.8.18;
// Math library from https://github.com/ajna-finance/ajna-core/blob/master/src/libraries/internal/Maths.sol
/**
@title Maths library
@notice Internal library containing common maths.
*/
library Maths {
uint256 internal constant WAD = 1e18;
uint256 internal constant RAY = 1e27;
function wmul(uint256 x, uint256 y) internal pure returns (uint256) {
return (x * y + WAD / 2) / WAD;
}
function floorWmul(uint256 x, uint256 y) internal pure returns (uint256) {
return (x * y) / WAD;
}
function ceilWmul(uint256 x, uint256 y) internal pure returns (uint256) {
return (x * y + WAD - 1) / WAD;
}
function wdiv(uint256 x, uint256 y) internal pure returns (uint256) {
return (x * WAD + y / 2) / y;
}
function floorWdiv(uint256 x, uint256 y) internal pure returns (uint256) {
return (x * WAD) / y;
}
function ceilWdiv(uint256 x, uint256 y) internal pure returns (uint256) {
return (x * WAD + y - 1) / y;
}
function ceilDiv(uint256 x, uint256 y) internal pure returns (uint256) {
return (x + y - 1) / y;
}
function max(uint256 x, uint256 y) internal pure returns (uint256) {
return x >= y ? x : y;
}
function min(uint256 x, uint256 y) internal pure returns (uint256) {
return x <= y ? x : y;
}
function wad(uint256 x) internal pure returns (uint256) {
return x * WAD;
}
function rmul(uint256 x, uint256 y) internal pure returns (uint256) {
return (x * y + RAY / 2) / RAY;
}
function rpow(uint256 x, uint256 n) internal pure returns (uint256 z) {
z = n % 2 != 0 ? x : RAY;
for (n /= 2; n != 0; n /= 2) {
x = rmul(x, x);
if (n % 2 != 0) {
z = rmul(z, x);
}
}
}
/*************************/
/*** Integer Functions ***/
/*************************/
function maxInt(int256 x, int256 y) internal pure returns (int256) {
return x >= y ? x : y;
}
function minInt(int256 x, int256 y) internal pure returns (int256) {
return x <= y ? x : y;
}
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity >=0.8.18;
interface ITaker {
function auctionTakeCallback(
address _from,
address _sender,
uint256 _amountTaken,
uint256 _amountNeeded,
bytes calldata _data
) external;
}// SPDX-License-Identifier: LGPL-3.0-or-later
pragma solidity ^0.8.0;
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
/// @title Gnosis Protocol v2 Order Library
/// @author Gnosis Developers
library GPv2Order {
/// @dev The complete data for a Gnosis Protocol order. This struct contains
/// all order parameters that are signed for submitting to GP.
struct Data {
ERC20 sellToken;
ERC20 buyToken;
address receiver;
uint256 sellAmount;
uint256 buyAmount;
uint32 validTo;
bytes32 appData;
uint256 feeAmount;
bytes32 kind;
bool partiallyFillable;
bytes32 sellTokenBalance;
bytes32 buyTokenBalance;
}
/// @dev The order EIP-712 type hash for the [`GPv2Order.Data`] struct.
///
/// This value is pre-computed from the following expression:
/// ```
/// keccak256(
/// "Order(" +
/// "address sellToken," +
/// "address buyToken," +
/// "address receiver," +
/// "uint256 sellAmount," +
/// "uint256 buyAmount," +
/// "uint32 validTo," +
/// "bytes32 appData," +
/// "uint256 feeAmount," +
/// "string kind," +
/// "bool partiallyFillable" +
/// "string sellTokenBalance" +
/// "string buyTokenBalance" +
/// ")"
/// )
/// ```
bytes32 internal constant TYPE_HASH =
hex"d5a25ba2e97094ad7d83dc28a6572da797d6b3e7fc6663bd93efb789fc17e489";
/// @dev The marker value for a sell order for computing the order struct
/// hash. This allows the EIP-712 compatible wallets to display a
/// descriptive string for the order kind (instead of 0 or 1).
///
/// This value is pre-computed from the following expression:
/// ```
/// keccak256("sell")
/// ```
bytes32 internal constant KIND_SELL =
hex"f3b277728b3fee749481eb3e0b3b48980dbbab78658fc419025cb16eee346775";
/// @dev The OrderKind marker value for a buy order for computing the order
/// struct hash.
///
/// This value is pre-computed from the following expression:
/// ```
/// keccak256("buy")
/// ```
bytes32 internal constant KIND_BUY =
hex"6ed88e868af0a1983e3886d5f3e95a2fafbd6c3450bc229e27342283dc429ccc";
/// @dev The TokenBalance marker value for using direct ERC20 balances for
/// computing the order struct hash.
///
/// This value is pre-computed from the following expression:
/// ```
/// keccak256("erc20")
/// ```
bytes32 internal constant BALANCE_ERC20 =
hex"5a28e9363bb942b639270062aa6bb295f434bcdfc42c97267bf003f272060dc9";
/// @dev The TokenBalance marker value for using Balancer Vault external
/// balances (in order to re-use Vault ERC20 approvals) for computing the
/// order struct hash.
///
/// This value is pre-computed from the following expression:
/// ```
/// keccak256("external")
/// ```
bytes32 internal constant BALANCE_EXTERNAL =
hex"abee3b73373acd583a130924aad6dc38cfdc44ba0555ba94ce2ff63980ea0632";
/// @dev The TokenBalance marker value for using Balancer Vault internal
/// balances for computing the order struct hash.
///
/// This value is pre-computed from the following expression:
/// ```
/// keccak256("internal")
/// ```
bytes32 internal constant BALANCE_INTERNAL =
hex"4ac99ace14ee0a5ef932dc609df0943ab7ac16b7583634612f8dc35a4289a6ce";
/// @dev Marker address used to indicate that the receiver of the trade
/// proceeds should the owner of the order.
///
/// This is chosen to be `address(0)` for gas efficiency as it is expected
/// to be the most common case.
address internal constant RECEIVER_SAME_AS_OWNER = address(0);
/// @dev The byte length of an order unique identifier.
uint256 internal constant UID_LENGTH = 56;
/// @dev Returns the actual receiver for an order. This function checks
/// whether or not the [`receiver`] field uses the marker value to indicate
/// it is the same as the order owner.
///
/// @return receiver The actual receiver of trade proceeds.
function actualReceiver(
Data memory order,
address owner
) internal pure returns (address receiver) {
if (order.receiver == RECEIVER_SAME_AS_OWNER) {
receiver = owner;
} else {
receiver = order.receiver;
}
}
/// @dev Return the EIP-712 signing hash for the specified order.
///
/// @param order The order to compute the EIP-712 signing hash for.
/// @param domainSeparator The EIP-712 domain separator to use.
/// @return orderDigest The 32 byte EIP-712 struct hash.
function hash(
Data memory order,
bytes32 domainSeparator
) internal pure returns (bytes32 orderDigest) {
bytes32 structHash;
// NOTE: Compute the EIP-712 order struct hash in place. As suggested
// in the EIP proposal, noting that the order struct has 10 fields, and
// including the type hash `(12 + 1) * 32 = 416` bytes to hash.
// <https://github.com/ethereum/EIPs/blob/master/EIPS/eip-712.md#rationale-for-encodedata>
// solhint-disable-next-line no-inline-assembly
assembly {
let dataStart := sub(order, 32)
let temp := mload(dataStart)
mstore(dataStart, TYPE_HASH)
structHash := keccak256(dataStart, 416)
mstore(dataStart, temp)
}
// NOTE: Now that we have the struct hash, compute the EIP-712 signing
// hash using scratch memory past the free memory pointer. The signing
// hash is computed from `"\x19\x01" || domainSeparator || structHash`.
// <https://docs.soliditylang.org/en/v0.7.6/internals/layout_in_memory.html#layout-in-memory>
// <https://github.com/ethereum/EIPs/blob/master/EIPS/eip-712.md#specification>
// solhint-disable-next-line no-inline-assembly
assembly {
let freeMemoryPointer := mload(0x40)
mstore(freeMemoryPointer, "\x19\x01")
mstore(add(freeMemoryPointer, 2), domainSeparator)
mstore(add(freeMemoryPointer, 34), structHash)
orderDigest := keccak256(freeMemoryPointer, 66)
}
}
/// @dev Packs order UID parameters into the specified memory location. The
/// result is equivalent to `abi.encodePacked(...)` with the difference that
/// it allows re-using the memory for packing the order UID.
///
/// This function reverts if the order UID buffer is not the correct size.
///
/// @param orderUid The buffer pack the order UID parameters into.
/// @param orderDigest The EIP-712 struct digest derived from the order
/// parameters.
/// @param owner The address of the user who owns this order.
/// @param validTo The epoch time at which the order will stop being valid.
function packOrderUidParams(
bytes memory orderUid,
bytes32 orderDigest,
address owner,
uint32 validTo
) internal pure {
require(orderUid.length == UID_LENGTH, "GPv2: uid buffer overflow");
// NOTE: Write the order UID to the allocated memory buffer. The order
// parameters are written to memory in **reverse order** as memory
// operations write 32-bytes at a time and we want to use a packed
// encoding. This means, for example, that after writing the value of
// `owner` to bytes `20:52`, writing the `orderDigest` to bytes `0:32`
// will **overwrite** bytes `20:32`. This is desirable as addresses are
// only 20 bytes and `20:32` should be `0`s:
//
// | 1111111111222222222233333333334444444444555555
// byte | 01234567890123456789012345678901234567890123456789012345
// -------+---------------------------------------------------------
// field | [.........orderDigest..........][......owner.......][vT]
// -------+---------------------------------------------------------
// mstore | [000000000000000000000000000.vT]
// | [00000000000.......owner.......]
// | [.........orderDigest..........]
//
// Additionally, since Solidity `bytes memory` are length prefixed,
// 32 needs to be added to all the offsets.
//
// solhint-disable-next-line no-inline-assembly
assembly {
mstore(add(orderUid, 56), validTo)
mstore(add(orderUid, 52), owner)
mstore(add(orderUid, 32), orderDigest)
}
}
/// @dev Extracts specific order information from the standardized unique
/// order id of the protocol.
///
/// @param orderUid The unique identifier used to represent an order in
/// the protocol. This uid is the packed concatenation of the order digest,
/// the validTo order parameter and the address of the user who created the
/// order. It is used by the user to interface with the contract directly,
/// and not by calls that are triggered by the solvers.
/// @return orderDigest The EIP-712 signing digest derived from the order
/// parameters.
/// @return owner The address of the user who owns this order.
/// @return validTo The epoch time at which the order will stop being valid.
function extractOrderUidParams(
bytes calldata orderUid
)
internal
pure
returns (bytes32 orderDigest, address owner, uint32 validTo)
{
require(orderUid.length == UID_LENGTH, "GPv2: invalid uid");
// Use assembly to efficiently decode packed calldata.
// solhint-disable-next-line no-inline-assembly
assembly {
orderDigest := calldataload(orderUid.offset)
owner := shr(96, calldataload(add(orderUid.offset, 32)))
validTo := shr(224, calldataload(add(orderUid.offset, 52)))
}
}
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity >=0.8.18;
import {Governance} from "./Governance.sol";
contract Governance2Step is Governance {
/// @notice Emitted when the pending governance address is set.
event UpdatePendingGovernance(address indexed newPendingGovernance);
/// @notice Address that is set to take over governance.
address public pendingGovernance;
constructor(address _governance) Governance(_governance) {}
/**
* @notice Sets a new address as the `pendingGovernance` of the contract.
* @dev Throws if the caller is not current governance.
* @param _newGovernance The new governance address.
*/
function transferGovernance(
address _newGovernance
) external virtual override onlyGovernance {
require(_newGovernance != address(0), "ZERO ADDRESS");
pendingGovernance = _newGovernance;
emit UpdatePendingGovernance(_newGovernance);
}
/**
* @notice Allows the `pendingGovernance` to accept the role.
*/
function acceptGovernance() external virtual {
require(msg.sender == pendingGovernance, "!pending governance");
emit GovernanceTransferred(governance, msg.sender);
governance = msg.sender;
pendingGovernance = address(0);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be _NOT_ENTERED
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
/**
* @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
* `nonReentrant` function in the call stack.
*/
function _reentrancyGuardEntered() internal view returns (bool) {
return _status == _ENTERED;
}
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity >=0.8.18;
contract Clonable {
/// @notice Set to the address to auto clone from.
address public original;
/**
* @notice Clone the contracts default `original` contract.
* @return Address of the new Minimal Proxy clone.
*/
function _clone() internal virtual returns (address) {
return _clone(original);
}
/**
* @notice Clone any `_original` contract.
* @return _newContract Address of the new Minimal Proxy clone.
*/
function _clone(
address _original
) internal virtual returns (address _newContract) {
// Copied from https://github.com/optionality/clone-factory/blob/master/contracts/CloneFactory.sol
bytes20 addressBytes = bytes20(_original);
assembly {
// EIP-1167 bytecode
let clone_code := mload(0x40)
mstore(
clone_code,
0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000
)
mstore(add(clone_code, 0x14), addressBytes)
mstore(
add(clone_code, 0x28),
0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000
)
_newContract := create(0, clone_code, 0x37)
}
}
}{
"remappings": [
"@openzeppelin/=lib/openzeppelin-contracts/",
"forge-std/=lib/forge-std/src/",
"@tokenized-strategy/=lib/tokenized-strategy/src/",
"@periphery/=lib/tokenized-strategy-periphery/src/",
"@yearn-vaults/=lib/tokenized-strategy-periphery/lib/yearn-vaults-v3/contracts/",
"ds-test/=lib/forge-std/lib/ds-test/src/",
"erc4626-tests/=lib/tokenized-strategy/lib/erc4626-tests/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/",
"openzeppelin/=lib/openzeppelin-contracts/contracts/",
"tokenized-strategy-periphery/=lib/tokenized-strategy-periphery/",
"tokenized-strategy/=lib/tokenized-strategy/",
"yearn-vaults-v3/=lib/tokenized-strategy-periphery/lib/yearn-vaults-v3/"
],
"optimizer": {
"enabled": false,
"runs": 200
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "shanghai",
"viaIR": false
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_asset","type":"address"},{"internalType":"address","name":"_governance","type":"address"},{"internalType":"address","name":"_bridge","type":"address"},{"internalType":"uint32","name":"_originNetworkId","type":"uint32"},{"internalType":"address","name":"_originCounterpart","type":"address"},{"internalType":"address","name":"_vault","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"auction","type":"address"}],"name":"AuctionSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousGovernance","type":"address"},{"indexed":true,"internalType":"address","name":"newGovernance","type":"address"}],"name":"GovernanceTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"totalAssets","type":"uint256"}],"name":"Reported","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"amountToTend","type":"uint256"}],"name":"UpdatedAmountToTend","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"isShutdown","type":"bool"}],"name":"UpdatedIsShutdown","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":true,"internalType":"bool","name":"status","type":"bool"}],"name":"UpdatedKeeper","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"profitMaxUnlockTime","type":"uint256"}],"name":"UpdatedProfitMaxUnlockTime","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"useAuction","type":"bool"}],"name":"UseAuctionSet","type":"event"},{"inputs":[],"name":"LOCAL_NETWORK_ID","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LXLY_BRIDGE","outputs":[{"internalType":"contract IPolygonZkEVMBridgeV2","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REMOTE_COUNTERPART","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REMOTE_ID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountToTend","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"asset","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auction","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"}],"name":"auctionTrigger","outputs":[{"internalType":"bool","name":"shouldKick","type":"bool"},{"internalType":"bytes","name":"data","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOfAsset","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isShutdown","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"keepers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"}],"name":"kickAuction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"kickable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastReport","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minAmountToSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onMessageReceived","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"processWithdrawal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"profitMaxUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"pullFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"pushFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"report","outputs":[{"internalType":"uint256","name":"_totalAssets","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"rescue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountToTend","type":"uint256"}],"name":"setAmountToTend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_auction","type":"address"}],"name":"setAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isShutdown","type":"bool"}],"name":"setIsShutdown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_allowed","type":"bool"}],"name":"setKeeper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_profitMaxUnlockTime","type":"uint256"}],"name":"setProfitMaxUnlockTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tendTrigger","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newGovernance","type":"address"}],"name":"transferGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"useAuction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"valueOfDeployedAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"contract IERC4626","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
61014060405234801562000011575f80fd5b506040516200478738038062004787833981810160405281019062000037919062000a73565b8386868563ffffffff165f1b85858484848482805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce8060405160405180910390a3505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000155576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200014c9062000b69565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001bd9062000b69565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508160a081815250508073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250504260038190555062093a806005819055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600481905550505050508073ffffffffffffffffffffffffffffffffffffffff1660e08173ffffffffffffffffffffffffffffffffffffffff16815250508473ffffffffffffffffffffffffffffffffffffffff1660e05173ffffffffffffffffffffffffffffffffffffffff166338d52e0f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000309573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200032f919062000b89565b73ffffffffffffffffffffffffffffffffffffffff161462000388576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037f9062000c07565b60405180910390fd5b620003d7817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60805173ffffffffffffffffffffffffffffffffffffffff166200051660201b9092919060201c565b50505050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200044d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004449062000b69565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166101008173ffffffffffffffffffffffffffffffffffffffff16815250506101005173ffffffffffffffffffffffffffffffffffffffff1663bab161bf6040518163ffffffff1660e01b8152600401602060405180830381865afa158015620004cf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620004f5919062000c27565b63ffffffff166101208163ffffffff16815250505050505050505062001036565b5f63095ea7b360e01b83836040516024016200053492919062000c82565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050509050620005a584826200064e60201b60201c565b6200064857620006358463095ea7b360e01b855f604051602401620005cc92919062000d03565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506200070d60201b60201c565b6200064784826200070d60201b60201c565b5b50505050565b5f805f8473ffffffffffffffffffffffffffffffffffffffff168460405162000678919062000da2565b5f604051808303815f865af19150503d805f8114620006b3576040519150601f19603f3d011682016040523d82523d5f602084013e620006b8565b606091505b5091509150818015620006e957505f81511480620006e8575080806020019051810190620006e7919062000df4565b5b5b80156200070357506200070285620007db60201b60201c565b5b9250505092915050565b5f62000770826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16620007fd60201b9092919060201c565b90505f815114806200079457508080602001905181019062000793919062000df4565b5b620007d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007cd9062000e98565b60405180910390fd5b505050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60606200081384845f856200081c60201b60201c565b90509392505050565b60608247101562000864576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200085b9062000f2c565b60405180910390fd5b5f808673ffffffffffffffffffffffffffffffffffffffff1685876040516200088e919062000da2565b5f6040518083038185875af1925050503d805f8114620008ca576040519150601f19603f3d011682016040523d82523d5f602084013e620008cf565b606091505b5091509150620008e887838387620008f460201b60201c565b92505050949350505050565b6060831562000963575f8351036200095a576200091785620007db60201b60201c565b62000959576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009509062000f9a565b60405180910390fd5b5b82905062000976565b6200097583836200097e60201b60201c565b5b949350505050565b5f82511115620009915781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009c7919062001014565b60405180910390fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620009ff82620009d4565b9050919050565b62000a1181620009f3565b811462000a1c575f80fd5b50565b5f8151905062000a2f8162000a06565b92915050565b5f63ffffffff82169050919050565b62000a4f8162000a35565b811462000a5a575f80fd5b50565b5f8151905062000a6d8162000a44565b92915050565b5f805f805f8060c0878903121562000a905762000a8f620009d0565b5b5f62000a9f89828a0162000a1f565b965050602062000ab289828a0162000a1f565b955050604062000ac589828a0162000a1f565b945050606062000ad889828a0162000a5d565b935050608062000aeb89828a0162000a1f565b92505060a062000afe89828a0162000a1f565b9150509295509295509295565b5f82825260208201905092915050565b7f5a65726f416464726573730000000000000000000000000000000000000000005f82015250565b5f62000b51600b8362000b0b565b915062000b5e8262000b1b565b602082019050919050565b5f6020820190508181035f83015262000b828162000b43565b9050919050565b5f6020828403121562000ba15762000ba0620009d0565b5b5f62000bb08482850162000a1f565b91505092915050565b7f77726f6e67207661756c740000000000000000000000000000000000000000005f82015250565b5f62000bef600b8362000b0b565b915062000bfc8262000bb9565b602082019050919050565b5f6020820190508181035f83015262000c208162000be1565b9050919050565b5f6020828403121562000c3f5762000c3e620009d0565b5b5f62000c4e8482850162000a5d565b91505092915050565b62000c6281620009f3565b82525050565b5f819050919050565b62000c7c8162000c68565b82525050565b5f60408201905062000c975f83018562000c57565b62000ca6602083018462000c71565b9392505050565b5f819050919050565b5f60ff82169050919050565b5f819050919050565b5f62000ceb62000ce562000cdf8462000cad565b62000cc2565b62000cb6565b9050919050565b62000cfd8162000ccb565b82525050565b5f60408201905062000d185f83018562000c57565b62000d27602083018462000cf2565b9392505050565b5f81519050919050565b5f81905092915050565b5f5b8381101562000d6157808201518184015260208101905062000d44565b5f8484015250505050565b5f62000d788262000d2e565b62000d84818562000d38565b935062000d9681856020860162000d42565b80840191505092915050565b5f62000daf828462000d6c565b915081905092915050565b5f8115159050919050565b62000dd08162000dba565b811462000ddb575f80fd5b50565b5f8151905062000dee8162000dc5565b92915050565b5f6020828403121562000e0c5762000e0b620009d0565b5b5f62000e1b8482850162000dde565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e5f8201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b5f62000e80602a8362000b0b565b915062000e8d8262000e24565b604082019050919050565b5f6020820190508181035f83015262000eb18162000e72565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f5f8201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b5f62000f1460268362000b0b565b915062000f218262000eb8565b604082019050919050565b5f6020820190508181035f83015262000f458162000f06565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000005f82015250565b5f62000f82601d8362000b0b565b915062000f8f8262000f4c565b602082019050919050565b5f6020820190508181035f83015262000fb38162000f74565b9050919050565b5f81519050919050565b5f601f19601f8301169050919050565b5f62000fe08262000fba565b62000fec818562000b0b565b935062000ffe81856020860162000d42565b620010098162000fc4565b840191505092915050565b5f6020820190508181035f8301526200102e818462000fd4565b905092915050565b60805160a05160c05160e0516101005161012051613684620011035f395f61169301525f8181611087015281816119f201528181611eb70152611f1f01525f8181610888015281816108c401528181610a1b0152818161165e015281816118ae015281816118ee01528181611cd801528181611d170152611daf01525f81816112dc01528181611a510152611f7e01525f818161131401528181611a2e0152611f5b01525f81816109c401528181610da2015281816111a101528181611ed90152611fa001526136845ff3fe608060405260043610610203575f3560e01c80635f1f6dac11610117578063c3535b521161009f578063df69b22a1161006e578063df69b22a146106f9578063ec8d877714610721578063fbfa77cf14610749578063fc7f71b614610773578063fe234a33146107af57610203565b8063c3535b5214610657578063cd2689f014610681578063d1b9e853146106a9578063d38bfff4146106d157610203565b806384d78a38116100e657806384d78a3814610587578063a08ade97146105b1578063b8c6f579146105db578063b9c2672f14610603578063bf86d6901461062d57610203565b80635f1f6dac146104e3578063797bf3431461050b5780637b36f157146105355780637d9f6db51461055d57610203565b80632606a10b1161019a578063440368a311610169578063440368a3146104125780634aca9482146104285780634bc6d77e146104645780635aa6e6751461048e5780635d265d3f146104b857610203565b80632606a10b146103455780633259356e1461036f57806338d52e0f146103ac5780633bbd64bc146103d657610203565b80631806b5f2116101d65780631806b5f2146102ad57806318144367146102c95780631c700c41146102f357806320ff430b1461031d57610203565b806301e1d114146102075780630952864e146102315780630ab6004f1461025b5780631470379614610285575b5f80fd5b348015610212575f80fd5b5061021b6107d9565b60405161022891906127ad565b60405180910390f35b34801561023c575f80fd5b506102456107f9565b60405161025291906127ad565b60405180910390f35b348015610266575f80fd5b5061026f6107ff565b60405161027c91906127ad565b60405180910390f35b348015610290575f80fd5b506102ab60048036038101906102a691906127f8565b610805565b005b6102c760048036038101906102c29190612917565b610844565b005b3480156102d4575f80fd5b506102dd61087f565b6040516102ea91906127ad565b60405180910390f35b3480156102fe575f80fd5b50610307610885565b60405161031491906127ad565b60405180910390f35b348015610328575f80fd5b50610343600480360381019061033e9190612988565b6109ba565b005b348015610350575f80fd5b50610359610ad9565b60405161036691906127ad565b60405180910390f35b34801561037a575f80fd5b50610395600480360381019061039091906129d8565b610bcd565b6040516103a3929190612aa7565b60405180910390f35b3480156103b7575f80fd5b506103c0610da0565b6040516103cd9190612b30565b60405180910390f35b3480156103e1575f80fd5b506103fc60048036038101906103f791906129d8565b610dc4565b6040516104099190612b49565b60405180910390f35b34801561041d575f80fd5b50610426610de1565b005b348015610433575f80fd5b5061044e600480360381019061044991906129d8565b610dfc565b60405161045b91906127ad565b60405180910390f35b34801561046f575f80fd5b50610478611085565b6040516104859190612b82565b60405180910390f35b348015610499575f80fd5b506104a26110a9565b6040516104af9190612baa565b60405180910390f35b3480156104c3575f80fd5b506104cc6110cc565b6040516104da929190612aa7565b60405180910390f35b3480156104ee575f80fd5b5061050960048036038101906105049190612bed565b61114a565b005b348015610516575f80fd5b5061051f61119e565b60405161052c91906127ad565b60405180910390f35b348015610540575f80fd5b5061055b600480360381019061055691906127f8565b61123c565b005b348015610568575f80fd5b506105716112a2565b60405161057e9190612baa565b60405180910390f35b348015610592575f80fd5b5061059b6112c7565b6040516105a89190612b49565b60405180910390f35b3480156105bc575f80fd5b506105c56112da565b6040516105d29190612baa565b60405180910390f35b3480156105e6575f80fd5b5061060160048036038101906105fc91906129d8565b6112fe565b005b34801561060e575f80fd5b50610617611312565b6040516106249190612c30565b60405180910390f35b348015610638575f80fd5b50610641611336565b60405161064e9190612b49565b60405180910390f35b348015610662575f80fd5b5061066b611349565b60405161067891906127ad565b60405180910390f35b34801561068c575f80fd5b506106a760048036038101906106a291906127f8565b61134f565b005b3480156106b4575f80fd5b506106cf60048036038101906106ca9190612c49565b61142a565b005b3480156106dc575f80fd5b506106f760048036038101906106f291906129d8565b6114d0565b005b348015610704575f80fd5b5061071f600480360381019061071a91906127f8565b611607565b005b34801561072c575f80fd5b50610747600480360381019061074291906127f8565b611646565b005b348015610754575f80fd5b5061075d61165c565b60405161076a9190612ca7565b60405180910390f35b34801561077e575f80fd5b50610799600480360381019061079491906129d8565b611680565b6040516107a691906127ad565b60405180910390f35b3480156107ba575f80fd5b506107c3611691565b6040516107d09190612ccf565b60405180910390f35b5f6107e2610885565b6107ea61119e565b6107f49190612d15565b905090565b60055481565b60045481565b61080d6116b5565b80600481905550807f827fbd03cd1cb4725835796c050f042b157bcd0f1d696b98a8e146be185dfb7c60405160405180910390a250565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087690612da2565b60405180910390fd5b60015481565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166307a2d13a7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161091b9190612baa565b602060405180830381865afa158015610936573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061095a9190612dd4565b6040518263ffffffff1660e01b815260040161097691906127ad565b602060405180830381865afa158015610991573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109b59190612dd4565b905090565b6109c26116b5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610a6a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa090612e49565b60405180910390fd5b610ad482828573ffffffffffffffffffffffffffffffffffffffff166117449092919063ffffffff16565b505050565b5f610ae3336117ca565b6003544211610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e90612eb1565b60405180910390fd5b5f610b3061119e565b90505f81118015610b4e5750600260159054906101000a900460ff16155b15610b5e57610b5c816118ab565b505b42600381905550610b6d6107d9565b91505f82604051602001610b8191906127ad565b6040516020818303038152906040529050610b9b816119f0565b827f4781ca3a51229f25dc69f48b64a6eb8653ef85918e0ae06515ad81df466698bd60405160405180910390a2505090565b5f60605f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c69575f6040518060400160405280600e81526020017f4e6f2061756374696f6e207365740000000000000000000000000000000000008152509250925050610d9b565b600260149054906101000a900460ff16610cbe575f6040518060400160405280601181526020017f41756374696f6e732064697361626c65640000000000000000000000000000008152509250925050610d9b565b5f610cc885610dfc565b90505f8114158015610cdc57506001548110155b15610d5d5760013073ffffffffffffffffffffffffffffffffffffffff1663fc7f71b687604051602401610d109190612baa565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050935093505050610d9b565b5f6040518060400160405280601381526020017f6e6f7420656e6f756768206b69636b61626c65000000000000000000000000008152509350935050505b915091565b7f000000000000000000000000000000000000000000000000000000000000000081565b6006602052805f5260405f205f915054906101000a900460ff1681565b610dea336117ca565b610dfa610df561119e565b611ac2565b565b5f600260149054906101000a900460ff16610e19575f9050611080565b5f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e7a575f915050611080565b8073ffffffffffffffffffffffffffffffffffffffff16639f8a13d7846040518263ffffffff1660e01b8152600401610eb39190612baa565b602060405180830381865afa158015610ece573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ef29190612ee3565b8015610f7457505f8173ffffffffffffffffffffffffffffffffffffffff166310098ad5856040518263ffffffff1660e01b8152600401610f339190612baa565b602060405180830381865afa158015610f4e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f729190612dd4565b115b15610f82575f915050611080565b8273ffffffffffffffffffffffffffffffffffffffff166370a08231826040518263ffffffff1660e01b8152600401610fbb9190612baa565b602060405180830381865afa158015610fd6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ffa9190612dd4565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110339190612baa565b602060405180830381865afa15801561104e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110729190612dd4565b61107c9190612d15565b9150505b919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60606110d7611acf565b63440368a360e01b604051602401604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050915091509091565b6111526116b5565b80600260156101000a81548160ff0219169083151502179055508015157f6db3c9f19d65025af4b85669bb39308cb6ce29e2f4dc9cf2c735ebace623c17460405160405180910390a250565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016111f89190612baa565b602060405180830381865afa158015611213573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112379190612dd4565b905090565b611245336117ca565b600260159054906101000a900460ff1615611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c90612f58565b60405180910390fd5b61129e816118ab565b5050565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260149054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6113066116b5565b61130f81611ae1565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b600260159054906101000a900460ff1681565b60035481565b611358336117ca565b5f810315611427575f61136961119e565b90505f611374610885565b8261137f9190612d15565b90508083111561138d578092505b818311156113d0575f6113aa83856113a59190612f76565b611cd5565b905082846113b89190612f76565b8110156113ce5780836113cb9190612d15565b93505b505b826113d961119e565b101561141a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141190612ff3565b60405180910390fd5b61142383611eb1565b5050505b50565b6114326116b5565b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f4e3a6835b97a0025b87d5fef2f6ccfa98b9b70c98c80e111b353dced694aa0f760405160405180910390a35050565b6114d86116b5565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d9061305b565b60405180910390fd5b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce8060405160405180910390a35050565b61160f6116b5565b80600581905550807fc464d502702beac6615fdfda7756f59ccaf253cb2591db454c8def44d03bddd960405160405180910390a250565b61164f336117ca565b61165881611cd5565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f61168a82612016565b9050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611742576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611739906130c3565b60405180910390fd5b565b6117c58363a9059cbb60e01b84846040516024016117639291906130e1565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612329565b505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161480611869575060065f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f90613152565b60405180910390fd5b50565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16636e553f65611989847f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663402d267d306040518263ffffffff1660e01b81526004016119459190612baa565b602060405180830381865afa158015611960573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119849190612dd4565b6123ef565b306040518363ffffffff1660e01b81526004016119a7929190613170565b6020604051808303815f875af11580156119c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119e79190612dd4565b50819050919050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663240ff3787f00000000000000000000000000000000000000000000000000000000000000005f1c7f00000000000000000000000000000000000000000000000000000000000000006001856040518563ffffffff1660e01b8152600401611a929493929190613197565b5f604051808303815f87803b158015611aa9575f80fd5b505af1158015611abb573d5f803e3d5ffd5b5050505050565b611acb816118ab565b5050565b5f600454611adb61119e565b11905090565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c4f573073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663f7260d3e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b9891906131f5565b73ffffffffffffffffffffffffffffffffffffffff1614611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be59061326a565b60405180910390fd5b600260149054906101000a900460ff16611c4e576001600260146101000a81548160ff021916908315150217905550600115157feefe960f8bad43dcec78179fc0f7c5df660581e221185a4bc5f126f87cd817e160405160405180910390a25b5b8060025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f4da9b3b7ca08b559bc11eb42bb6961e0813372ed0b55f0e9b68b76cf0207fce860405160405180910390a250565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ba087652611e4a7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d905777e306040518263ffffffff1660e01b8152600401611d6e9190612baa565b602060405180830381865afa158015611d89573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dad9190612dd4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16630a28a477876040518263ffffffff1660e01b8152600401611e0691906127ad565b602060405180830381865afa158015611e21573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e459190612dd4565b6123ef565b30306040518463ffffffff1660e01b8152600401611e6a93929190613288565b6020604051808303815f875af1158015611e86573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611eaa9190612dd4565b9050919050565b5f611f1d7f0000000000000000000000000000000000000000000000000000000000000000837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166124079092919063ffffffff16565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663cd5865797f00000000000000000000000000000000000000000000000000000000000000005f1c7f0000000000000000000000000000000000000000000000000000000000000000857f000000000000000000000000000000000000000000000000000000000000000060016040518663ffffffff1660e01b8152600401611fe19594939291906132e0565b5f604051808303815f87803b158015611ff8575f80fd5b505af115801561200a573d5f803e3d5ffd5b50505050819050919050565b5f600260149054906101000a900460ff16612066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205d9061338e565b60405180910390fd5b5f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16639f8a13d7846040518263ffffffff1660e01b81526004016120c49190612baa565b602060405180830381865afa1580156120df573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121039190612ee3565b156121f7575f8173ffffffffffffffffffffffffffffffffffffffff166310098ad5856040518263ffffffff1660e01b81526004016121429190612baa565b602060405180830381865afa15801561215d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121819190612dd4565b1115612190575f915050612324565b8073ffffffffffffffffffffffffffffffffffffffff16636a256b29846040518263ffffffff1660e01b81526004016121c99190612baa565b5f604051808303815f87803b1580156121e0575f80fd5b505af11580156121f2573d5f803e3d5ffd5b505050505b5f8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016122319190612baa565b602060405180830381865afa15801561224c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122709190612dd4565b90505f8111156122a6576122a582828673ffffffffffffffffffffffffffffffffffffffff166117449092919063ffffffff16565b5b8173ffffffffffffffffffffffffffffffffffffffff166396c55175856040518263ffffffff1660e01b81526004016122df9190612baa565b6020604051808303815f875af11580156122fb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061231f9190612dd4565b925050505b919050565b5f61238a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166125229092919063ffffffff16565b90505f815114806123ab5750808060200190518101906123aa9190612ee3565b5b6123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e19061341c565b60405180910390fd5b505050565b5f8183106123fd57816123ff565b825b905092915050565b5f63095ea7b360e01b83836040516024016124239291906130e1565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050905061248c8482612539565b61251c576125118463095ea7b360e01b855f6040516024016124af92919061347f565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612329565b61251b8482612329565b5b50505050565b606061253084845f856125e7565b90509392505050565b5f805f8473ffffffffffffffffffffffffffffffffffffffff168460405161256191906134e0565b5f604051808303815f865af19150503d805f811461259a576040519150601f19603f3d011682016040523d82523d5f602084013e61259f565b606091505b50915091508180156125cc57505f815114806125cb5750808060200190518101906125ca9190612ee3565b5b5b80156125dd57506125dc856126b0565b5b9250505092915050565b60608247101561262c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262390613566565b60405180910390fd5b5f808673ffffffffffffffffffffffffffffffffffffffff16858760405161265491906134e0565b5f6040518083038185875af1925050503d805f811461268e576040519150601f19603f3d011682016040523d82523d5f602084013e612693565b606091505b50915091506126a4878383876126d2565b92505050949350505050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608315612733575f83510361272b576126eb856126b0565b61272a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612721906135ce565b60405180910390fd5b5b82905061273e565b61273d8383612746565b5b949350505050565b5f825111156127585781518083602001fd5b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278c919061362e565b60405180910390fd5b5f819050919050565b6127a781612795565b82525050565b5f6020820190506127c05f83018461279e565b92915050565b5f80fd5b5f80fd5b6127d781612795565b81146127e1575f80fd5b50565b5f813590506127f2816127ce565b92915050565b5f6020828403121561280d5761280c6127c6565b5b5f61281a848285016127e4565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61284c82612823565b9050919050565b61285c81612842565b8114612866575f80fd5b50565b5f8135905061287781612853565b92915050565b5f63ffffffff82169050919050565b6128958161287d565b811461289f575f80fd5b50565b5f813590506128b08161288c565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126128d7576128d66128b6565b5b8235905067ffffffffffffffff8111156128f4576128f36128ba565b5b6020830191508360018202830111156129105761290f6128be565b5b9250929050565b5f805f806060858703121561292f5761292e6127c6565b5b5f61293c87828801612869565b945050602061294d878288016128a2565b935050604085013567ffffffffffffffff81111561296e5761296d6127ca565b5b61297a878288016128c2565b925092505092959194509250565b5f805f6060848603121561299f5761299e6127c6565b5b5f6129ac86828701612869565b93505060206129bd86828701612869565b92505060406129ce868287016127e4565b9150509250925092565b5f602082840312156129ed576129ec6127c6565b5b5f6129fa84828501612869565b91505092915050565b5f8115159050919050565b612a1781612a03565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612a54578082015181840152602081019050612a39565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612a7982612a1d565b612a838185612a27565b9350612a93818560208601612a37565b612a9c81612a5f565b840191505092915050565b5f604082019050612aba5f830185612a0e565b8181036020830152612acc8184612a6f565b90509392505050565b5f819050919050565b5f612af8612af3612aee84612823565b612ad5565b612823565b9050919050565b5f612b0982612ade565b9050919050565b5f612b1a82612aff565b9050919050565b612b2a81612b10565b82525050565b5f602082019050612b435f830184612b21565b92915050565b5f602082019050612b5c5f830184612a0e565b92915050565b5f612b6c82612aff565b9050919050565b612b7c81612b62565b82525050565b5f602082019050612b955f830184612b73565b92915050565b612ba481612842565b82525050565b5f602082019050612bbd5f830184612b9b565b92915050565b612bcc81612a03565b8114612bd6575f80fd5b50565b5f81359050612be781612bc3565b92915050565b5f60208284031215612c0257612c016127c6565b5b5f612c0f84828501612bd9565b91505092915050565b5f819050919050565b612c2a81612c18565b82525050565b5f602082019050612c435f830184612c21565b92915050565b5f8060408385031215612c5f57612c5e6127c6565b5b5f612c6c85828601612869565b9250506020612c7d85828601612bd9565b9150509250929050565b5f612c9182612aff565b9050919050565b612ca181612c87565b82525050565b5f602082019050612cba5f830184612c98565b92915050565b612cc98161287d565b82525050565b5f602082019050612ce25f830184612cc0565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612d1f82612795565b9150612d2a83612795565b9250828201905080821115612d4257612d41612ce8565b5b92915050565b5f82825260208201905092915050565b7f4e6f74537570706f7274656400000000000000000000000000000000000000005f82015250565b5f612d8c600c83612d48565b9150612d9782612d58565b602082019050919050565b5f6020820190508181035f830152612db981612d80565b9050919050565b5f81519050612dce816127ce565b92915050565b5f60208284031215612de957612de86127c6565b5b5f612df684828501612dc0565b91505092915050565b7f496e76616c6964546f6b656e00000000000000000000000000000000000000005f82015250565b5f612e33600c83612d48565b9150612e3e82612dff565b602082019050919050565b5f6020820190508181035f830152612e6081612e27565b9050919050565b7f4e6f7452656164790000000000000000000000000000000000000000000000005f82015250565b5f612e9b600883612d48565b9150612ea682612e67565b602082019050919050565b5f6020820190508181035f830152612ec881612e8f565b9050919050565b5f81519050612edd81612bc3565b92915050565b5f60208284031215612ef857612ef76127c6565b5b5f612f0584828501612ecf565b91505092915050565b7f53687574646f776e0000000000000000000000000000000000000000000000005f82015250565b5f612f42600883612d48565b9150612f4d82612f0e565b602082019050919050565b5f6020820190508181035f830152612f6f81612f36565b9050919050565b5f612f8082612795565b9150612f8b83612795565b9250828203905081811115612fa357612fa2612ce8565b5b92915050565b7f6e6f7420656e6f756768000000000000000000000000000000000000000000005f82015250565b5f612fdd600a83612d48565b9150612fe882612fa9565b602082019050919050565b5f6020820190508181035f83015261300a81612fd1565b9050919050565b7f5a45524f204144445245535300000000000000000000000000000000000000005f82015250565b5f613045600c83612d48565b915061305082613011565b602082019050919050565b5f6020820190508181035f83015261307281613039565b9050919050565b7f21676f7665726e616e63650000000000000000000000000000000000000000005f82015250565b5f6130ad600b83612d48565b91506130b882613079565b602082019050919050565b5f6020820190508181035f8301526130da816130a1565b9050919050565b5f6040820190506130f45f830185612b9b565b613101602083018461279e565b9392505050565b7f4e6f744b656570657200000000000000000000000000000000000000000000005f82015250565b5f61313c600983612d48565b915061314782613108565b602082019050919050565b5f6020820190508181035f83015261316981613130565b9050919050565b5f6040820190506131835f83018561279e565b6131906020830184612b9b565b9392505050565b5f6080820190506131aa5f830187612cc0565b6131b76020830186612b9b565b6131c46040830185612a0e565b81810360608301526131d68184612a6f565b905095945050505050565b5f815190506131ef81612853565b92915050565b5f6020828403121561320a576132096127c6565b5b5f613217848285016131e1565b91505092915050565b7f77726f6e672072656365697665720000000000000000000000000000000000005f82015250565b5f613254600e83612d48565b915061325f82613220565b602082019050919050565b5f6020820190508181035f83015261328181613248565b9050919050565b5f60608201905061329b5f83018661279e565b6132a86020830185612b9b565b6132b56040830184612b9b565b949350505050565b50565b5f6132cb5f83612a27565b91506132d6826132bd565b5f82019050919050565b5f60c0820190506132f35f830188612cc0565b6133006020830187612b9b565b61330d604083018661279e565b61331a6060830185612b9b565b6133276080830184612a0e565b81810360a0830152613338816132c0565b90509695505050505050565b7f75736541756374696f6e2069732066616c7365000000000000000000000000005f82015250565b5f613378601383612d48565b915061338382613344565b602082019050919050565b5f6020820190508181035f8301526133a58161336c565b9050919050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e5f8201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b5f613406602a83612d48565b9150613411826133ac565b604082019050919050565b5f6020820190508181035f830152613433816133fa565b9050919050565b5f819050919050565b5f60ff82169050919050565b5f61346961346461345f8461343a565b612ad5565b613443565b9050919050565b6134798161344f565b82525050565b5f6040820190506134925f830185612b9b565b61349f6020830184613470565b9392505050565b5f81905092915050565b5f6134ba82612a1d565b6134c481856134a6565b93506134d4818560208601612a37565b80840191505092915050565b5f6134eb82846134b0565b915081905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f5f8201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b5f613550602683612d48565b915061355b826134f6565b604082019050919050565b5f6020820190508181035f83015261357d81613544565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000005f82015250565b5f6135b8601d83612d48565b91506135c382613584565b602082019050919050565b5f6020820190508181035f8301526135e5816135ac565b9050919050565b5f81519050919050565b5f613600826135ec565b61360a8185612d48565b935061361a818560208601612a37565b61362381612a5f565b840191505092915050565b5f6020820190508181035f83015261364681846135f6565b90509291505056fea2646970667358221220eb5f65a4b186689588d04e13671106235bb656893e131a355f23c49763e3658964736f6c63430008170033000000000000000000000000203a662b0bd271a6ed5a60edfbd04bfce608fd360000000000000000000000001b5f15dcb82d25f91c65b53cee151e8b9fbdd2710000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede00000000000000000000000000000000000000000000000000000000000000000000000000000000000000007bc019ef7022194feba5f7ff99424a438f68fc21000000000000000000000000ff513347aea1734324b9e7852c685221cf899fa8
Deployed Bytecode
0x608060405260043610610203575f3560e01c80635f1f6dac11610117578063c3535b521161009f578063df69b22a1161006e578063df69b22a146106f9578063ec8d877714610721578063fbfa77cf14610749578063fc7f71b614610773578063fe234a33146107af57610203565b8063c3535b5214610657578063cd2689f014610681578063d1b9e853146106a9578063d38bfff4146106d157610203565b806384d78a38116100e657806384d78a3814610587578063a08ade97146105b1578063b8c6f579146105db578063b9c2672f14610603578063bf86d6901461062d57610203565b80635f1f6dac146104e3578063797bf3431461050b5780637b36f157146105355780637d9f6db51461055d57610203565b80632606a10b1161019a578063440368a311610169578063440368a3146104125780634aca9482146104285780634bc6d77e146104645780635aa6e6751461048e5780635d265d3f146104b857610203565b80632606a10b146103455780633259356e1461036f57806338d52e0f146103ac5780633bbd64bc146103d657610203565b80631806b5f2116101d65780631806b5f2146102ad57806318144367146102c95780631c700c41146102f357806320ff430b1461031d57610203565b806301e1d114146102075780630952864e146102315780630ab6004f1461025b5780631470379614610285575b5f80fd5b348015610212575f80fd5b5061021b6107d9565b60405161022891906127ad565b60405180910390f35b34801561023c575f80fd5b506102456107f9565b60405161025291906127ad565b60405180910390f35b348015610266575f80fd5b5061026f6107ff565b60405161027c91906127ad565b60405180910390f35b348015610290575f80fd5b506102ab60048036038101906102a691906127f8565b610805565b005b6102c760048036038101906102c29190612917565b610844565b005b3480156102d4575f80fd5b506102dd61087f565b6040516102ea91906127ad565b60405180910390f35b3480156102fe575f80fd5b50610307610885565b60405161031491906127ad565b60405180910390f35b348015610328575f80fd5b50610343600480360381019061033e9190612988565b6109ba565b005b348015610350575f80fd5b50610359610ad9565b60405161036691906127ad565b60405180910390f35b34801561037a575f80fd5b50610395600480360381019061039091906129d8565b610bcd565b6040516103a3929190612aa7565b60405180910390f35b3480156103b7575f80fd5b506103c0610da0565b6040516103cd9190612b30565b60405180910390f35b3480156103e1575f80fd5b506103fc60048036038101906103f791906129d8565b610dc4565b6040516104099190612b49565b60405180910390f35b34801561041d575f80fd5b50610426610de1565b005b348015610433575f80fd5b5061044e600480360381019061044991906129d8565b610dfc565b60405161045b91906127ad565b60405180910390f35b34801561046f575f80fd5b50610478611085565b6040516104859190612b82565b60405180910390f35b348015610499575f80fd5b506104a26110a9565b6040516104af9190612baa565b60405180910390f35b3480156104c3575f80fd5b506104cc6110cc565b6040516104da929190612aa7565b60405180910390f35b3480156104ee575f80fd5b5061050960048036038101906105049190612bed565b61114a565b005b348015610516575f80fd5b5061051f61119e565b60405161052c91906127ad565b60405180910390f35b348015610540575f80fd5b5061055b600480360381019061055691906127f8565b61123c565b005b348015610568575f80fd5b506105716112a2565b60405161057e9190612baa565b60405180910390f35b348015610592575f80fd5b5061059b6112c7565b6040516105a89190612b49565b60405180910390f35b3480156105bc575f80fd5b506105c56112da565b6040516105d29190612baa565b60405180910390f35b3480156105e6575f80fd5b5061060160048036038101906105fc91906129d8565b6112fe565b005b34801561060e575f80fd5b50610617611312565b6040516106249190612c30565b60405180910390f35b348015610638575f80fd5b50610641611336565b60405161064e9190612b49565b60405180910390f35b348015610662575f80fd5b5061066b611349565b60405161067891906127ad565b60405180910390f35b34801561068c575f80fd5b506106a760048036038101906106a291906127f8565b61134f565b005b3480156106b4575f80fd5b506106cf60048036038101906106ca9190612c49565b61142a565b005b3480156106dc575f80fd5b506106f760048036038101906106f291906129d8565b6114d0565b005b348015610704575f80fd5b5061071f600480360381019061071a91906127f8565b611607565b005b34801561072c575f80fd5b50610747600480360381019061074291906127f8565b611646565b005b348015610754575f80fd5b5061075d61165c565b60405161076a9190612ca7565b60405180910390f35b34801561077e575f80fd5b50610799600480360381019061079491906129d8565b611680565b6040516107a691906127ad565b60405180910390f35b3480156107ba575f80fd5b506107c3611691565b6040516107d09190612ccf565b60405180910390f35b5f6107e2610885565b6107ea61119e565b6107f49190612d15565b905090565b60055481565b60045481565b61080d6116b5565b80600481905550807f827fbd03cd1cb4725835796c050f042b157bcd0f1d696b98a8e146be185dfb7c60405160405180910390a250565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087690612da2565b60405180910390fd5b60015481565b5f7f000000000000000000000000ff513347aea1734324b9e7852c685221cf899fa873ffffffffffffffffffffffffffffffffffffffff166307a2d13a7f000000000000000000000000ff513347aea1734324b9e7852c685221cf899fa873ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161091b9190612baa565b602060405180830381865afa158015610936573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061095a9190612dd4565b6040518263ffffffff1660e01b815260040161097691906127ad565b602060405180830381865afa158015610991573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109b59190612dd4565b905090565b6109c26116b5565b7f000000000000000000000000203a662b0bd271a6ed5a60edfbd04bfce608fd3673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610a6a57507f000000000000000000000000ff513347aea1734324b9e7852c685221cf899fa873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa090612e49565b60405180910390fd5b610ad482828573ffffffffffffffffffffffffffffffffffffffff166117449092919063ffffffff16565b505050565b5f610ae3336117ca565b6003544211610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e90612eb1565b60405180910390fd5b5f610b3061119e565b90505f81118015610b4e5750600260159054906101000a900460ff16155b15610b5e57610b5c816118ab565b505b42600381905550610b6d6107d9565b91505f82604051602001610b8191906127ad565b6040516020818303038152906040529050610b9b816119f0565b827f4781ca3a51229f25dc69f48b64a6eb8653ef85918e0ae06515ad81df466698bd60405160405180910390a2505090565b5f60605f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c69575f6040518060400160405280600e81526020017f4e6f2061756374696f6e207365740000000000000000000000000000000000008152509250925050610d9b565b600260149054906101000a900460ff16610cbe575f6040518060400160405280601181526020017f41756374696f6e732064697361626c65640000000000000000000000000000008152509250925050610d9b565b5f610cc885610dfc565b90505f8114158015610cdc57506001548110155b15610d5d5760013073ffffffffffffffffffffffffffffffffffffffff1663fc7f71b687604051602401610d109190612baa565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050935093505050610d9b565b5f6040518060400160405280601381526020017f6e6f7420656e6f756768206b69636b61626c65000000000000000000000000008152509350935050505b915091565b7f000000000000000000000000203a662b0bd271a6ed5a60edfbd04bfce608fd3681565b6006602052805f5260405f205f915054906101000a900460ff1681565b610dea336117ca565b610dfa610df561119e565b611ac2565b565b5f600260149054906101000a900460ff16610e19575f9050611080565b5f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e7a575f915050611080565b8073ffffffffffffffffffffffffffffffffffffffff16639f8a13d7846040518263ffffffff1660e01b8152600401610eb39190612baa565b602060405180830381865afa158015610ece573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ef29190612ee3565b8015610f7457505f8173ffffffffffffffffffffffffffffffffffffffff166310098ad5856040518263ffffffff1660e01b8152600401610f339190612baa565b602060405180830381865afa158015610f4e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f729190612dd4565b115b15610f82575f915050611080565b8273ffffffffffffffffffffffffffffffffffffffff166370a08231826040518263ffffffff1660e01b8152600401610fbb9190612baa565b602060405180830381865afa158015610fd6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ffa9190612dd4565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110339190612baa565b602060405180830381865afa15801561104e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110729190612dd4565b61107c9190612d15565b9150505b919050565b7f0000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede81565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60606110d7611acf565b63440368a360e01b604051602401604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050915091509091565b6111526116b5565b80600260156101000a81548160ff0219169083151502179055508015157f6db3c9f19d65025af4b85669bb39308cb6ce29e2f4dc9cf2c735ebace623c17460405160405180910390a250565b5f7f000000000000000000000000203a662b0bd271a6ed5a60edfbd04bfce608fd3673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016111f89190612baa565b602060405180830381865afa158015611213573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112379190612dd4565b905090565b611245336117ca565b600260159054906101000a900460ff1615611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c90612f58565b60405180910390fd5b61129e816118ab565b5050565b60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260149054906101000a900460ff1681565b7f0000000000000000000000007bc019ef7022194feba5f7ff99424a438f68fc2181565b6113066116b5565b61130f81611ae1565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b600260159054906101000a900460ff1681565b60035481565b611358336117ca565b5f810315611427575f61136961119e565b90505f611374610885565b8261137f9190612d15565b90508083111561138d578092505b818311156113d0575f6113aa83856113a59190612f76565b611cd5565b905082846113b89190612f76565b8110156113ce5780836113cb9190612d15565b93505b505b826113d961119e565b101561141a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141190612ff3565b60405180910390fd5b61142383611eb1565b5050505b50565b6114326116b5565b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f4e3a6835b97a0025b87d5fef2f6ccfa98b9b70c98c80e111b353dced694aa0f760405160405180910390a35050565b6114d86116b5565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d9061305b565b60405180910390fd5b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce8060405160405180910390a35050565b61160f6116b5565b80600581905550807fc464d502702beac6615fdfda7756f59ccaf253cb2591db454c8def44d03bddd960405160405180910390a250565b61164f336117ca565b61165881611cd5565b5050565b7f000000000000000000000000ff513347aea1734324b9e7852c685221cf899fa881565b5f61168a82612016565b9050919050565b7f000000000000000000000000000000000000000000000000000000000000001481565b3373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611742576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611739906130c3565b60405180910390fd5b565b6117c58363a9059cbb60e01b84846040516024016117639291906130e1565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612329565b505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161480611869575060065f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f90613152565b60405180910390fd5b50565b5f7f000000000000000000000000ff513347aea1734324b9e7852c685221cf899fa873ffffffffffffffffffffffffffffffffffffffff16636e553f65611989847f000000000000000000000000ff513347aea1734324b9e7852c685221cf899fa873ffffffffffffffffffffffffffffffffffffffff1663402d267d306040518263ffffffff1660e01b81526004016119459190612baa565b602060405180830381865afa158015611960573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119849190612dd4565b6123ef565b306040518363ffffffff1660e01b81526004016119a7929190613170565b6020604051808303815f875af11580156119c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119e79190612dd4565b50819050919050565b7f0000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede73ffffffffffffffffffffffffffffffffffffffff1663240ff3787f00000000000000000000000000000000000000000000000000000000000000005f1c7f0000000000000000000000007bc019ef7022194feba5f7ff99424a438f68fc216001856040518563ffffffff1660e01b8152600401611a929493929190613197565b5f604051808303815f87803b158015611aa9575f80fd5b505af1158015611abb573d5f803e3d5ffd5b5050505050565b611acb816118ab565b5050565b5f600454611adb61119e565b11905090565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c4f573073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663f7260d3e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b9891906131f5565b73ffffffffffffffffffffffffffffffffffffffff1614611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be59061326a565b60405180910390fd5b600260149054906101000a900460ff16611c4e576001600260146101000a81548160ff021916908315150217905550600115157feefe960f8bad43dcec78179fc0f7c5df660581e221185a4bc5f126f87cd817e160405160405180910390a25b5b8060025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f4da9b3b7ca08b559bc11eb42bb6961e0813372ed0b55f0e9b68b76cf0207fce860405160405180910390a250565b5f7f000000000000000000000000ff513347aea1734324b9e7852c685221cf899fa873ffffffffffffffffffffffffffffffffffffffff1663ba087652611e4a7f000000000000000000000000ff513347aea1734324b9e7852c685221cf899fa873ffffffffffffffffffffffffffffffffffffffff1663d905777e306040518263ffffffff1660e01b8152600401611d6e9190612baa565b602060405180830381865afa158015611d89573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dad9190612dd4565b7f000000000000000000000000ff513347aea1734324b9e7852c685221cf899fa873ffffffffffffffffffffffffffffffffffffffff16630a28a477876040518263ffffffff1660e01b8152600401611e0691906127ad565b602060405180830381865afa158015611e21573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e459190612dd4565b6123ef565b30306040518463ffffffff1660e01b8152600401611e6a93929190613288565b6020604051808303815f875af1158015611e86573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611eaa9190612dd4565b9050919050565b5f611f1d7f0000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede837f000000000000000000000000203a662b0bd271a6ed5a60edfbd04bfce608fd3673ffffffffffffffffffffffffffffffffffffffff166124079092919063ffffffff16565b7f0000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede73ffffffffffffffffffffffffffffffffffffffff1663cd5865797f00000000000000000000000000000000000000000000000000000000000000005f1c7f0000000000000000000000007bc019ef7022194feba5f7ff99424a438f68fc21857f000000000000000000000000203a662b0bd271a6ed5a60edfbd04bfce608fd3660016040518663ffffffff1660e01b8152600401611fe19594939291906132e0565b5f604051808303815f87803b158015611ff8575f80fd5b505af115801561200a573d5f803e3d5ffd5b50505050819050919050565b5f600260149054906101000a900460ff16612066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205d9061338e565b60405180910390fd5b5f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16639f8a13d7846040518263ffffffff1660e01b81526004016120c49190612baa565b602060405180830381865afa1580156120df573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121039190612ee3565b156121f7575f8173ffffffffffffffffffffffffffffffffffffffff166310098ad5856040518263ffffffff1660e01b81526004016121429190612baa565b602060405180830381865afa15801561215d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121819190612dd4565b1115612190575f915050612324565b8073ffffffffffffffffffffffffffffffffffffffff16636a256b29846040518263ffffffff1660e01b81526004016121c99190612baa565b5f604051808303815f87803b1580156121e0575f80fd5b505af11580156121f2573d5f803e3d5ffd5b505050505b5f8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016122319190612baa565b602060405180830381865afa15801561224c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122709190612dd4565b90505f8111156122a6576122a582828673ffffffffffffffffffffffffffffffffffffffff166117449092919063ffffffff16565b5b8173ffffffffffffffffffffffffffffffffffffffff166396c55175856040518263ffffffff1660e01b81526004016122df9190612baa565b6020604051808303815f875af11580156122fb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061231f9190612dd4565b925050505b919050565b5f61238a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166125229092919063ffffffff16565b90505f815114806123ab5750808060200190518101906123aa9190612ee3565b5b6123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e19061341c565b60405180910390fd5b505050565b5f8183106123fd57816123ff565b825b905092915050565b5f63095ea7b360e01b83836040516024016124239291906130e1565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050905061248c8482612539565b61251c576125118463095ea7b360e01b855f6040516024016124af92919061347f565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612329565b61251b8482612329565b5b50505050565b606061253084845f856125e7565b90509392505050565b5f805f8473ffffffffffffffffffffffffffffffffffffffff168460405161256191906134e0565b5f604051808303815f865af19150503d805f811461259a576040519150601f19603f3d011682016040523d82523d5f602084013e61259f565b606091505b50915091508180156125cc57505f815114806125cb5750808060200190518101906125ca9190612ee3565b5b5b80156125dd57506125dc856126b0565b5b9250505092915050565b60608247101561262c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262390613566565b60405180910390fd5b5f808673ffffffffffffffffffffffffffffffffffffffff16858760405161265491906134e0565b5f6040518083038185875af1925050503d805f811461268e576040519150601f19603f3d011682016040523d82523d5f602084013e612693565b606091505b50915091506126a4878383876126d2565b92505050949350505050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608315612733575f83510361272b576126eb856126b0565b61272a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612721906135ce565b60405180910390fd5b5b82905061273e565b61273d8383612746565b5b949350505050565b5f825111156127585781518083602001fd5b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278c919061362e565b60405180910390fd5b5f819050919050565b6127a781612795565b82525050565b5f6020820190506127c05f83018461279e565b92915050565b5f80fd5b5f80fd5b6127d781612795565b81146127e1575f80fd5b50565b5f813590506127f2816127ce565b92915050565b5f6020828403121561280d5761280c6127c6565b5b5f61281a848285016127e4565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61284c82612823565b9050919050565b61285c81612842565b8114612866575f80fd5b50565b5f8135905061287781612853565b92915050565b5f63ffffffff82169050919050565b6128958161287d565b811461289f575f80fd5b50565b5f813590506128b08161288c565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126128d7576128d66128b6565b5b8235905067ffffffffffffffff8111156128f4576128f36128ba565b5b6020830191508360018202830111156129105761290f6128be565b5b9250929050565b5f805f806060858703121561292f5761292e6127c6565b5b5f61293c87828801612869565b945050602061294d878288016128a2565b935050604085013567ffffffffffffffff81111561296e5761296d6127ca565b5b61297a878288016128c2565b925092505092959194509250565b5f805f6060848603121561299f5761299e6127c6565b5b5f6129ac86828701612869565b93505060206129bd86828701612869565b92505060406129ce868287016127e4565b9150509250925092565b5f602082840312156129ed576129ec6127c6565b5b5f6129fa84828501612869565b91505092915050565b5f8115159050919050565b612a1781612a03565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612a54578082015181840152602081019050612a39565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612a7982612a1d565b612a838185612a27565b9350612a93818560208601612a37565b612a9c81612a5f565b840191505092915050565b5f604082019050612aba5f830185612a0e565b8181036020830152612acc8184612a6f565b90509392505050565b5f819050919050565b5f612af8612af3612aee84612823565b612ad5565b612823565b9050919050565b5f612b0982612ade565b9050919050565b5f612b1a82612aff565b9050919050565b612b2a81612b10565b82525050565b5f602082019050612b435f830184612b21565b92915050565b5f602082019050612b5c5f830184612a0e565b92915050565b5f612b6c82612aff565b9050919050565b612b7c81612b62565b82525050565b5f602082019050612b955f830184612b73565b92915050565b612ba481612842565b82525050565b5f602082019050612bbd5f830184612b9b565b92915050565b612bcc81612a03565b8114612bd6575f80fd5b50565b5f81359050612be781612bc3565b92915050565b5f60208284031215612c0257612c016127c6565b5b5f612c0f84828501612bd9565b91505092915050565b5f819050919050565b612c2a81612c18565b82525050565b5f602082019050612c435f830184612c21565b92915050565b5f8060408385031215612c5f57612c5e6127c6565b5b5f612c6c85828601612869565b9250506020612c7d85828601612bd9565b9150509250929050565b5f612c9182612aff565b9050919050565b612ca181612c87565b82525050565b5f602082019050612cba5f830184612c98565b92915050565b612cc98161287d565b82525050565b5f602082019050612ce25f830184612cc0565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612d1f82612795565b9150612d2a83612795565b9250828201905080821115612d4257612d41612ce8565b5b92915050565b5f82825260208201905092915050565b7f4e6f74537570706f7274656400000000000000000000000000000000000000005f82015250565b5f612d8c600c83612d48565b9150612d9782612d58565b602082019050919050565b5f6020820190508181035f830152612db981612d80565b9050919050565b5f81519050612dce816127ce565b92915050565b5f60208284031215612de957612de86127c6565b5b5f612df684828501612dc0565b91505092915050565b7f496e76616c6964546f6b656e00000000000000000000000000000000000000005f82015250565b5f612e33600c83612d48565b9150612e3e82612dff565b602082019050919050565b5f6020820190508181035f830152612e6081612e27565b9050919050565b7f4e6f7452656164790000000000000000000000000000000000000000000000005f82015250565b5f612e9b600883612d48565b9150612ea682612e67565b602082019050919050565b5f6020820190508181035f830152612ec881612e8f565b9050919050565b5f81519050612edd81612bc3565b92915050565b5f60208284031215612ef857612ef76127c6565b5b5f612f0584828501612ecf565b91505092915050565b7f53687574646f776e0000000000000000000000000000000000000000000000005f82015250565b5f612f42600883612d48565b9150612f4d82612f0e565b602082019050919050565b5f6020820190508181035f830152612f6f81612f36565b9050919050565b5f612f8082612795565b9150612f8b83612795565b9250828203905081811115612fa357612fa2612ce8565b5b92915050565b7f6e6f7420656e6f756768000000000000000000000000000000000000000000005f82015250565b5f612fdd600a83612d48565b9150612fe882612fa9565b602082019050919050565b5f6020820190508181035f83015261300a81612fd1565b9050919050565b7f5a45524f204144445245535300000000000000000000000000000000000000005f82015250565b5f613045600c83612d48565b915061305082613011565b602082019050919050565b5f6020820190508181035f83015261307281613039565b9050919050565b7f21676f7665726e616e63650000000000000000000000000000000000000000005f82015250565b5f6130ad600b83612d48565b91506130b882613079565b602082019050919050565b5f6020820190508181035f8301526130da816130a1565b9050919050565b5f6040820190506130f45f830185612b9b565b613101602083018461279e565b9392505050565b7f4e6f744b656570657200000000000000000000000000000000000000000000005f82015250565b5f61313c600983612d48565b915061314782613108565b602082019050919050565b5f6020820190508181035f83015261316981613130565b9050919050565b5f6040820190506131835f83018561279e565b6131906020830184612b9b565b9392505050565b5f6080820190506131aa5f830187612cc0565b6131b76020830186612b9b565b6131c46040830185612a0e565b81810360608301526131d68184612a6f565b905095945050505050565b5f815190506131ef81612853565b92915050565b5f6020828403121561320a576132096127c6565b5b5f613217848285016131e1565b91505092915050565b7f77726f6e672072656365697665720000000000000000000000000000000000005f82015250565b5f613254600e83612d48565b915061325f82613220565b602082019050919050565b5f6020820190508181035f83015261328181613248565b9050919050565b5f60608201905061329b5f83018661279e565b6132a86020830185612b9b565b6132b56040830184612b9b565b949350505050565b50565b5f6132cb5f83612a27565b91506132d6826132bd565b5f82019050919050565b5f60c0820190506132f35f830188612cc0565b6133006020830187612b9b565b61330d604083018661279e565b61331a6060830185612b9b565b6133276080830184612a0e565b81810360a0830152613338816132c0565b90509695505050505050565b7f75736541756374696f6e2069732066616c7365000000000000000000000000005f82015250565b5f613378601383612d48565b915061338382613344565b602082019050919050565b5f6020820190508181035f8301526133a58161336c565b9050919050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e5f8201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b5f613406602a83612d48565b9150613411826133ac565b604082019050919050565b5f6020820190508181035f830152613433816133fa565b9050919050565b5f819050919050565b5f60ff82169050919050565b5f61346961346461345f8461343a565b612ad5565b613443565b9050919050565b6134798161344f565b82525050565b5f6040820190506134925f830185612b9b565b61349f6020830184613470565b9392505050565b5f81905092915050565b5f6134ba82612a1d565b6134c481856134a6565b93506134d4818560208601612a37565b80840191505092915050565b5f6134eb82846134b0565b915081905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f5f8201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b5f613550602683612d48565b915061355b826134f6565b604082019050919050565b5f6020820190508181035f83015261357d81613544565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000005f82015250565b5f6135b8601d83612d48565b91506135c382613584565b602082019050919050565b5f6020820190508181035f8301526135e5816135ac565b9050919050565b5f81519050919050565b5f613600826135ec565b61360a8185612d48565b935061361a818560208601612a37565b61362381612a5f565b840191505092915050565b5f6020820190508181035f83015261364681846135f6565b90509291505056fea2646970667358221220eb5f65a4b186689588d04e13671106235bb656893e131a355f23c49763e3658964736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000203a662b0bd271a6ed5a60edfbd04bfce608fd360000000000000000000000001b5f15dcb82d25f91c65b53cee151e8b9fbdd2710000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede00000000000000000000000000000000000000000000000000000000000000000000000000000000000000007bc019ef7022194feba5f7ff99424a438f68fc21000000000000000000000000ff513347aea1734324b9e7852c685221cf899fa8
-----Decoded View---------------
Arg [0] : _asset (address): 0x203A662b0BD271A6ed5a60EdFbd04bFce608FD36
Arg [1] : _governance (address): 0x1b5f15DCb82d25f91c65b53CEe151E8b9fBdD271
Arg [2] : _bridge (address): 0x2a3DD3EB832aF982ec71669E178424b10Dca2EDe
Arg [3] : _originNetworkId (uint32): 0
Arg [4] : _originCounterpart (address): 0x7bC019ef7022194febA5F7Ff99424A438f68fC21
Arg [5] : _vault (address): 0xfF513347Aea1734324B9E7852c685221Cf899fA8
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000203a662b0bd271a6ed5a60edfbd04bfce608fd36
Arg [1] : 0000000000000000000000001b5f15dcb82d25f91c65b53cee151e8b9fbdd271
Arg [2] : 0000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000007bc019ef7022194feba5f7ff99424a438f68fc21
Arg [5] : 000000000000000000000000ff513347aea1734324b9e7852c685221cf899fa8
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.