Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 6 internal transactions
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Deposit Rewards | 18627668 | 828 days ago | 0.01 ETH | ||||
| Deposit Rewards | 18627668 | 828 days ago | 0.007 ETH | ||||
| Deposit Rewards | 18627668 | 828 days ago | 0.003 ETH | ||||
| 0x60e06040 | 18626595 | 828 days ago | Contract Creation | 0 ETH | |||
| 0x60e06040 | 18626595 | 828 days ago | Contract Creation | 0 ETH | |||
| 0x60e06040 | 18626595 | 828 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
PoolManager
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;
import '@openzeppelin/contracts/access/Ownable.sol';
import './interfaces/IPoolManager.sol';
import './StakingPool.sol';
contract PoolManager is IPoolManager, Ownable {
using SafeERC20 for IERC20;
uint256 constant DENOMENATOR = 10000;
address public override stakingToken;
address public rewardsToken;
uint256 _totalPercentages;
PoolInfo[] public pools;
constructor(address _stakingToken, address _rewardsToken) {
stakingToken = _stakingToken;
rewardsToken = _rewardsToken;
_totalPercentages = DENOMENATOR;
pools.push(
PoolInfo({
pool: address(
new StakingPool(
'OPTI-XA',
'OPTI-XA',
_stakingToken,
_rewardsToken,
7 days
)
),
percentage: (DENOMENATOR * 15) / 100 // 15%
})
);
pools.push(
PoolInfo({
pool: address(
new StakingPool(
'OPTI-XB',
'OPTI-XB',
_stakingToken,
_rewardsToken,
21 days
)
),
percentage: (DENOMENATOR * 35) / 100 // 35%
})
);
pools.push(
PoolInfo({
pool: address(
new StakingPool(
'OPTI-XC',
'OPTI-XC',
_stakingToken,
_rewardsToken,
60 days
)
),
percentage: (DENOMENATOR * 50) / 100 // 50%
})
);
}
function getAllPools() external view override returns (PoolInfo[] memory) {
return pools;
}
function depositNativeRewards() external payable {
require(msg.value > 0, 'ETH');
uint256 _totalETH;
for (uint256 _i; _i < pools.length; _i++) {
NativeRewards _nativeRewards = StakingPool(pools[_i].pool)
.NATIVE_REWARDS();
uint256 _totalBefore = _totalETH;
_totalETH += (msg.value * pools[_i].percentage) / DENOMENATOR;
_nativeRewards.depositRewards{ value: _totalETH - _totalBefore }();
}
uint256 _refund = msg.value - _totalETH;
if (_refund > 0) {
(bool _refunded, ) = payable(_msgSender()).call{ value: _refund }('');
require(_refunded, 'REFUND');
}
}
function depositTokenRewards(uint256 _totalAmount) external {
uint256 _before = IERC20(rewardsToken).balanceOf(address(this));
IERC20(rewardsToken).safeTransferFrom(
_msgSender(),
address(this),
_totalAmount
);
uint256 _totalTokens = IERC20(rewardsToken).balanceOf(address(this)) -
_before;
for (uint256 _i; _i < pools.length; _i++) {
TokenRewards _tokenRewards = StakingPool(pools[_i].pool).TOKEN_REWARDS();
uint256 _poolAmount = (_totalTokens * pools[_i].percentage) / DENOMENATOR;
IERC20(rewardsToken).safeIncreaseAllowance(
address(_tokenRewards),
_poolAmount
);
_tokenRewards.depositRewards(_poolAmount);
}
uint256 _refund = IERC20(rewardsToken).balanceOf(address(this)) - _before;
if (_refund > 0) {
IERC20(rewardsToken).safeTransfer(_msgSender(), _refund);
}
}
function setTimelockSeconds(uint256[] memory _seconds) external onlyOwner {
for (uint256 _i; _i < _seconds.length; _i++) {
StakingPool(pools[_i].pool).setTimelockSeconds(_seconds[_i]);
}
}
function setPercentages(uint256[] memory _percentages) external onlyOwner {
_totalPercentages = 0;
for (uint256 _i; _i < _percentages.length; _i++) {
_totalPercentages += _percentages[_i];
pools[_i].percentage = _percentages[_i];
}
require(_totalPercentages <= DENOMENATOR, 'lte 100%');
}
function createPool(
string memory _name,
string memory _symbol,
uint256 _lockupSeconds,
uint256 _percentage
) external onlyOwner {
require(_totalPercentages + _percentage <= DENOMENATOR, 'MAX');
_totalPercentages += _percentage;
pools.push(
PoolInfo({
pool: address(
new StakingPool(
_name,
_symbol,
stakingToken,
rewardsToken,
_lockupSeconds
)
),
percentage: _percentage
})
);
}
function removePool(uint256 _idx) external onlyOwner {
PoolInfo memory _pool = pools[_idx];
_totalPercentages -= _pool.percentage;
pools[_idx] = pools[pools.length - 1];
pools.pop();
}
function renounceAllOwnership() external onlyOwner {
for (uint256 _i; _i < pools.length; _i++) {
StakingPool(pools[_i].pool).renounceOwnership();
}
renounceOwnership();
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// 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: 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.0) (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.
*/
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].
*/
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) (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.0) (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. Compatible with tokens that require the approval to be set to
* 0 before setting it to a non-zero value.
*/
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) (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 (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;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;
interface IPoolManager {
struct PoolInfo {
address pool;
uint256 percentage;
}
function stakingToken() external view returns (address);
function getAllPools() external view returns (PoolInfo[] memory);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;
interface IStakingPool {
function resetWalletStakedTime(address wallet) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;
import '@openzeppelin/contracts/utils/Context.sol';
import './interfaces/IStakingPool.sol';
contract NativeRewards is Context {
uint256 constant PRECISION = 10 ** 36;
address public controllerToken;
uint256 public totalUsers;
uint256 public totalShares;
struct Reward {
uint256 excluded;
uint256 realized;
}
mapping(address => uint256) public shares;
mapping(address => Reward) public rewards;
uint256 _rewardsPerShare;
uint256 public totalDistributed;
uint256 public totalDeposited;
event AddShares(address indexed user, uint256 amount);
event RemoveShares(address indexed user, uint256 amount);
event ClaimReward(address user);
event DistributeReward(address indexed user, uint256 amount);
event DepositRewards(address indexed user, uint256 amountTokens);
modifier onlyControllerToken() {
require(_msgSender() == controllerToken, 'TOKEN');
_;
}
constructor(address _controllerToken) {
controllerToken = _controllerToken;
}
function setShare(
address _wallet,
uint256 _balUpdate,
bool _removing
) public onlyControllerToken {
_setShare(_wallet, _balUpdate, _removing);
}
function _setShare(
address _wallet,
uint256 _balUpdate,
bool _removing
) internal {
if (_removing) {
_removeShares(_wallet, _balUpdate);
emit RemoveShares(_wallet, _balUpdate);
} else {
_addShares(_wallet, _balUpdate);
emit AddShares(_wallet, _balUpdate);
}
}
function _addShares(address _wallet, uint256 _amount) private {
if (shares[_wallet] > 0) {
_distributeReward(_wallet);
}
uint256 sharesBefore = shares[_wallet];
totalShares += _amount;
shares[_wallet] += _amount;
if (sharesBefore == 0 && shares[_wallet] > 0) {
totalUsers++;
}
rewards[_wallet].excluded = _cumulativeRewards(shares[_wallet]);
}
function _removeShares(address _wallet, uint256 _amount) private {
require(shares[_wallet] > 0 && _amount <= shares[_wallet], 'REMOVE');
uint256 _unpaid = getUnpaid(_wallet);
if (_unpaid > 0) {
_depositRewards(_unpaid);
}
totalShares -= _amount;
shares[_wallet] -= _amount;
if (shares[_wallet] == 0) {
totalUsers--;
}
rewards[_wallet].excluded = _cumulativeRewards(shares[_wallet]);
}
function depositRewards() external payable {
_depositRewards(msg.value);
}
function _depositRewards(uint256 _amount) internal {
require(_amount > 0, 'DEPOSIT0');
require(totalShares > 0, 'DEPOSIT1');
totalDeposited += _amount;
_rewardsPerShare += (PRECISION * _amount) / totalShares;
emit DepositRewards(_msgSender(), _amount);
}
function _distributeReward(address _wallet) internal {
if (shares[_wallet] == 0) {
return;
}
uint256 amount = getUnpaid(_wallet);
rewards[_wallet].realized += amount;
rewards[_wallet].excluded = _cumulativeRewards(shares[_wallet]);
if (amount > 0) {
IStakingPool(controllerToken).resetWalletStakedTime(_wallet);
totalDistributed += amount;
uint256 _balBefore = address(this).balance;
(bool success, ) = payable(_wallet).call{ value: amount }('');
require(success, 'DIST0');
require(address(this).balance >= _balBefore - amount, 'DIST1');
emit DistributeReward(_wallet, amount);
}
}
function claimReward() external {
_distributeReward(_msgSender());
emit ClaimReward(_msgSender());
}
function getUnpaid(address _wallet) public view returns (uint256) {
if (shares[_wallet] == 0) {
return 0;
}
uint256 earnedRewards = _cumulativeRewards(shares[_wallet]);
uint256 rewardsExcluded = rewards[_wallet].excluded;
if (earnedRewards <= rewardsExcluded) {
return 0;
}
return earnedRewards - rewardsExcluded;
}
function _cumulativeRewards(uint256 _share) internal view returns (uint256) {
return (_share * _rewardsPerShare) / PRECISION;
}
receive() external payable {
_depositRewards(msg.value);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/token/ERC20/ERC20.sol';
import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';
import './NativeRewards.sol';
import './TokenRewards.sol';
contract StakingPool is IStakingPool, ERC20, Ownable {
using SafeERC20 for IERC20;
IERC20 public immutable STAKING_TOKEN;
NativeRewards public immutable NATIVE_REWARDS;
TokenRewards public immutable TOKEN_REWARDS;
uint256 public timelockSeconds;
mapping(address => uint256) public walletStakedTime;
event SetRewardsFromError(address indexed _from);
event SetRewardsToError(address indexed _to);
event Stake(address indexed owner, uint256 amount);
event Unstake(address indexed owner, uint256 amount);
modifier onlyRewards() {
require(
_msgSender() == address(NATIVE_REWARDS) ||
_msgSender() == address(TOKEN_REWARDS),
'REWARDS'
);
_;
}
constructor(
string memory _name,
string memory _symbol,
address _stakingToken,
address _rewardsToken,
uint256 _timelock
) ERC20(_name, _symbol) {
STAKING_TOKEN = IERC20(_stakingToken);
NATIVE_REWARDS = new NativeRewards(address(this));
TOKEN_REWARDS = new TokenRewards(address(this), _rewardsToken);
timelockSeconds = _timelock;
}
function decimals() public view override returns (uint8) {
return 9;
}
function stake(uint256 _amount) external {
walletStakedTime[_msgSender()] = block.timestamp;
STAKING_TOKEN.safeTransferFrom(_msgSender(), address(this), _amount);
_mint(_msgSender(), _amount);
emit Stake(_msgSender(), _amount);
}
function unstake(uint256 _amount) external {
_burn(_msgSender(), _amount);
STAKING_TOKEN.safeTransfer(_msgSender(), _amount);
emit Unstake(_msgSender(), _amount);
}
function resetWalletStakedTime(
address _wallet
) external override onlyRewards {
walletStakedTime[_wallet] = block.timestamp;
}
function setTimelockSeconds(uint256 _seconds) external onlyOwner {
timelockSeconds = _seconds;
}
function _afterTokenTransfer(
address _from,
address _to,
uint256 _amount
) internal override {
if (_from != address(0) && _from != address(0xdead)) {
bool _early = walletStakedTime[_from] == 0 ||
block.timestamp < walletStakedTime[_from] + timelockSeconds;
require(!_early, 'EARLYUNSTAKE');
try NATIVE_REWARDS.setShare(_from, _amount, true) {} catch {
emit SetRewardsFromError(_from);
}
TOKEN_REWARDS.setShare(_from, _amount, true);
}
if (_to != address(0) && _to != address(0xdead)) {
try NATIVE_REWARDS.setShare(_to, _amount, false) {} catch {
emit SetRewardsToError(_to);
}
TOKEN_REWARDS.setShare(_to, _amount, false);
walletStakedTime[_to] = walletStakedTime[_from] > walletStakedTime[_to]
? walletStakedTime[_from]
: walletStakedTime[_to];
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;
import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import './interfaces/IStakingPool.sol';
contract TokenRewards is Context {
using SafeERC20 for IERC20;
uint256 constant PRECISION = 10 ** 36;
struct Reward {
uint256 excluded;
uint256 realized;
}
address public trackingToken;
address public rewardsToken;
uint256 public totalShares;
uint256 public totalStakers;
mapping(address => uint256) public shares;
mapping(address => Reward) public rewards;
uint256 _rewardsSwapSlippage = 10; // 1%
uint256 _rewardsPerShare;
uint256 public rewardsDistributed;
uint256 public rewardsDeposited;
mapping(uint256 => uint256) public rewardsDepMonthly;
event AddShares(address indexed wallet, uint256 amount);
event RemoveShares(address indexed wallet, uint256 amount);
event ClaimReward(address indexed wallet);
event DistributeReward(address indexed wallet, uint256 amount);
event DepositRewards(address indexed wallet, uint256 amount);
modifier onlyTrackingToken() {
require(_msgSender() == trackingToken, 'UNAUTHORIZED');
_;
}
constructor(address _trackingToken, address _rewardsToken) {
trackingToken = _trackingToken;
rewardsToken = _rewardsToken;
}
function setShare(
address _wallet,
uint256 _amount,
bool _sharesRemoving
) external onlyTrackingToken {
if (_sharesRemoving) {
_removeShares(_wallet, _amount);
emit RemoveShares(_wallet, _amount);
} else {
_addShares(_wallet, _amount);
emit AddShares(_wallet, _amount);
}
}
function _addShares(address _wallet, uint256 _amount) internal {
if (shares[_wallet] > 0) {
_distributeReward(_wallet);
}
uint256 sharesBefore = shares[_wallet];
totalShares += _amount;
shares[_wallet] += _amount;
if (sharesBefore == 0 && shares[_wallet] > 0) {
totalStakers++;
}
rewards[_wallet].excluded = _cumulativeRewards(shares[_wallet]);
}
function _removeShares(address _wallet, uint256 _amount) internal {
require(shares[_wallet] > 0 && _amount <= shares[_wallet], 'REMOVE');
uint256 _unpaid = getUnpaid(_wallet);
if (_unpaid > 0) {
_depositRewards(_unpaid);
}
totalShares -= _amount;
shares[_wallet] -= _amount;
if (shares[_wallet] == 0) {
totalStakers--;
}
rewards[_wallet].excluded = _cumulativeRewards(shares[_wallet]);
}
function depositRewards(uint256 _amount) external {
require(_amount > 0, 'DEPAM');
uint256 _rewardsBalBefore = IERC20(rewardsToken).balanceOf(address(this));
IERC20(rewardsToken).safeTransferFrom(_msgSender(), address(this), _amount);
_depositRewards(
IERC20(rewardsToken).balanceOf(address(this)) - _rewardsBalBefore
);
}
function _depositRewards(uint256 _depositAmount) internal {
require(_depositAmount > 0 && totalShares > 0, 'VAL');
rewardsDeposited += _depositAmount;
_rewardsPerShare += (PRECISION * _depositAmount) / totalShares;
emit DepositRewards(_msgSender(), _depositAmount);
}
function _distributeReward(address _wallet) internal {
if (shares[_wallet] == 0) {
return;
}
uint256 _amount = getUnpaid(_wallet);
rewards[_wallet].realized += _amount;
rewards[_wallet].excluded = _cumulativeRewards(shares[_wallet]);
if (_amount > 0) {
IStakingPool(trackingToken).resetWalletStakedTime(_wallet);
rewardsDistributed += _amount;
IERC20(rewardsToken).safeTransfer(_wallet, _amount);
emit DistributeReward(_wallet, _amount);
}
}
function claimReward() external {
_distributeReward(_msgSender());
emit ClaimReward(_msgSender());
}
function getUnpaid(address _wallet) public view returns (uint256) {
if (shares[_wallet] == 0) {
return 0;
}
uint256 earnedRewards = _cumulativeRewards(shares[_wallet]);
uint256 rewardsExcluded = rewards[_wallet].excluded;
if (earnedRewards <= rewardsExcluded) {
return 0;
}
return earnedRewards - rewardsExcluded;
}
function _cumulativeRewards(uint256 _share) internal view returns (uint256) {
return (_share * _rewardsPerShare) / PRECISION;
}
}{
"metadata": {
"bytecodeHash": "none"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_stakingToken","type":"address"},{"internalType":"address","name":"_rewardsToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_lockupSeconds","type":"uint256"},{"internalType":"uint256","name":"_percentage","type":"uint256"}],"name":"createPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositNativeRewards","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_totalAmount","type":"uint256"}],"name":"depositTokenRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllPools","outputs":[{"components":[{"internalType":"address","name":"pool","type":"address"},{"internalType":"uint256","name":"percentage","type":"uint256"}],"internalType":"struct IPoolManager.PoolInfo[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"pools","outputs":[{"internalType":"address","name":"pool","type":"address"},{"internalType":"uint256","name":"percentage","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_idx","type":"uint256"}],"name":"removePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceAllOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_percentages","type":"uint256[]"}],"name":"setPercentages","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_seconds","type":"uint256[]"}],"name":"setTimelockSeconds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801562000010575f80fd5b506040516200840438038062008404833981016040819052620000339162000324565b6200003e33620002ab565b600180546001600160a01b038085166001600160a01b0319928316179092556002805492841692909116919091179055612710600355604080518082019182905260049181908590859062093a80906200009890620002fa565b620000a6939291906200035a565b604051809103905ff080158015620000c0573d5f803e3d5ffd5b506001600160a01b031681526020016064620000e0612710600f620003cb565b620000ec9190620003f5565b90528154600180820184555f938452602093849020835160029093020180546001600160a01b0319166001600160a01b0390931692909217825591909201519101556040805180820191829052600491819085908590621baf80906200015290620002fa565b620001609392919062000415565b604051809103905ff0801580156200017a573d5f803e3d5ffd5b506001600160a01b0316815260200160646200019a6127106023620003cb565b620001a69190620003f5565b90528154600180820184555f938452602093849020835160029093020180546001600160a01b0319166001600160a01b0390931692909217825591909201519101556040805180820191829052600491819085908590624f1a00906200020c90620002fa565b6200021a9392919062000463565b604051809103905ff08015801562000234573d5f803e3d5ffd5b506001600160a01b031681526020016064620002546127106032620003cb565b620002609190620003f5565b90528154600180820184555f938452602093849020835160029093020180546001600160a01b0319166001600160a01b03909316929092178255919092015191015550620004b19050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6134088062004ffc83390190565b80516001600160a01b03811681146200031f575f80fd5b919050565b5f806040838503121562000336575f80fd5b620003418362000308565b9150620003516020840162000308565b90509250929050565b60a081525f6200038160a0830160078152664f5054492d584160c81b602082015260400190565b8281036020840152620003a88160078152664f5054492d584160c81b602082015260400190565b6001600160a01b0396871660408501529490951660608301525060800152919050565b8082028115828204841417620003ef57634e487b7160e01b5f52601160045260245ffd5b92915050565b5f826200041057634e487b7160e01b5f52601260045260245ffd5b500490565b60a081525f6200043c60a08301600781526627a82a2496ac2160c91b602082015260400190565b8281036020840152620003a881600781526627a82a2496ac2160c91b602082015260400190565b60a081525f6200048a60a0830160078152664f5054492d584360c81b602082015260400190565b8281036020840152620003a88160078152664f5054492d584360c81b602082015260400190565b614b3d80620004bf5f395ff3fe608060405260043610620000eb575f3560e01c8063ac4afa381162000086578063cad473b7116200005e578063cad473b71462000259578063d1af0c7d146200027d578063d88ff1f4146200029e578063f2fde38b14620002c4575f80fd5b8063ac4afa3814620001da578063c87d2f7e146200021e578063c88f8f5b1462000242575f80fd5b806372f702f311620000c657806372f702f314620001505780638da5cb5b146200018e578063926053ee14620001ac578063a38dcbd014620001b6575f80fd5b80631324968d14620000ef578063485c686f1462000115578063715018a61462000139575b5f80fd5b348015620000fb575f80fd5b50620001136200010d366004620012ff565b620002e8565b005b34801562000121575f80fd5b5062000113620001333660046200141e565b620003dd565b34801562000145575f80fd5b5062000113620004f6565b3480156200015c575f80fd5b5060015462000171906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200019a575f80fd5b505f546001600160a01b031662000171565b620001136200050d565b348015620001c2575f80fd5b5062000113620001d436600462001494565b6200074a565b348015620001e6575f80fd5b50620001fe620001f836600462001494565b62000875565b604080516001600160a01b03909316835260208301919091520162000185565b3480156200022a575f80fd5b50620001136200023c36600462001494565b620008ac565b3480156200024e575f80fd5b506200011362000bc5565b34801562000265575f80fd5b506200011362000277366004620012ff565b62000c76565b34801562000289575f80fd5b5060025462000171906001600160a01b031681565b348015620002aa575f80fd5b50620002b562000d47565b604051620001859190620014ac565b348015620002d0575f80fd5b5062000113620002e23660046200151a565b62000dbc565b620002f262000e38565b5f60038190555b815181101562000394578181815181106200031857620003186200153f565b602002602001015160035f82825462000332919062001567565b925050819055508181815181106200034e576200034e6200153f565b6020026020010151600482815481106200036c576200036c6200153f565b5f918252602090912060016002909202010155806200038b8162001583565b915050620002f9565b506127106003541115620003da5760405162461bcd60e51b81526020600482015260086024820152676c7465203130302560c01b60448201526064015b60405180910390fd5b50565b620003e762000e38565b61271081600354620003fa919062001567565b1115620004305760405162461bcd60e51b815260206004820152600360248201526209a82b60eb1b6044820152606401620003d1565b8060035f82825462000443919062001567565b909155505060408051808201918290526001546002546004938392899289926001600160a01b03928316929091169089906200047f90620012a9565b6200048f959493929190620015ef565b604051809103905ff080158015620004a9573d5f803e3d5ffd5b506001600160a01b0390811682526020918201949094528254600180820185555f94855293829020835160029092020180546001600160a01b031916919095161784550151910155505050565b6200050062000e38565b6200050b5f62000e93565b565b5f3411620005445760405162461bcd60e51b815260206004820152600360248201526208aa8960eb1b6044820152606401620003d1565b5f805b600454811015620006ab575f600482815481106200056957620005696200153f565b5f918252602091829020600290910201546040805163f96a574b60e01b815290516001600160a01b039092169263f96a574b926004808401938290030181865afa158015620005ba573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620005e091906200163c565b90505f83905061271060048481548110620005ff57620005ff6200153f565b905f5260205f20906002020160010154346200061c91906200165a565b62000628919062001674565b62000634908562001567565b93506001600160a01b03821663152111f762000651838762001694565b6040518263ffffffff1660e01b81526004015f604051808303818588803b1580156200067b575f80fd5b505af11580156200068e573d5f803e3d5ffd5b505050505050508080620006a29062001583565b91505062000547565b505f620006b9823462001694565b9050801562000746576040515f90339083908381818185875af1925050503d805f811462000703576040519150601f19603f3d011682016040523d82523d5f602084013e62000708565b606091505b5050905080620007445760405162461bcd60e51b815260206004820152600660248201526514915195539160d21b6044820152606401620003d1565b505b5050565b6200075462000e38565b5f600482815481106200076b576200076b6200153f565b5f91825260208083206040805180820190915260029093020180546001600160a01b03168352600101549082018190526003805492945090929091620007b390849062001694565b909155505060048054620007ca9060019062001694565b81548110620007dd57620007dd6200153f565b905f5260205f20906002020160048381548110620007ff57620007ff6200153f565b5f9182526020909120825460029092020180546001600160a01b0319166001600160a01b0390921691909117815560019182015491015560048054806200084a576200084a620016aa565b5f8281526020812060025f199093019283020180546001600160a01b03191681556001015590555050565b6004818154811062000885575f80fd5b5f918252602090912060029091020180546001909101546001600160a01b03909116915082565b6002546040516370a0823160e01b81523060048201525f916001600160a01b0316906370a0823190602401602060405180830381865afa158015620008f3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620009199190620016be565b905062000935336002546001600160a01b031690308562000ee2565b6002546040516370a0823160e01b81523060048201525f9183916001600160a01b03909116906370a0823190602401602060405180830381865afa15801562000980573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620009a69190620016be565b620009b2919062001694565b90505f5b60045481101562000b1f575f60048281548110620009d857620009d86200153f565b5f9182526020918290206002909102015460408051634216ff9d60e01b815290516001600160a01b0390921692634216ff9d926004808401938290030181865afa15801562000a29573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000a4f91906200163c565b90505f6127106004848154811062000a6b5762000a6b6200153f565b905f5260205f209060020201600101548562000a8891906200165a565b62000a94919062001674565b60025490915062000ab0906001600160a01b0316838362000f4f565b6040516345efb3f960e11b8152600481018290526001600160a01b03831690638bdf67f2906024015f604051808303815f87803b15801562000af0575f80fd5b505af115801562000b03573d5f803e3d5ffd5b505050505050808062000b169062001583565b915050620009b6565b506002546040516370a0823160e01b81523060048201525f9184916001600160a01b03909116906370a0823190602401602060405180830381865afa15801562000b6b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000b919190620016be565b62000b9d919062001694565b9050801562000bbf5762000bbf336002546001600160a01b0316908362001000565b50505050565b62000bcf62000e38565b5f5b60045481101562000c6b576004818154811062000bf25762000bf26200153f565b5f9182526020822060029091020154604080516338a80c5360e11b815290516001600160a01b039092169263715018a69260048084019382900301818387803b15801562000c3e575f80fd5b505af115801562000c51573d5f803e3d5ffd5b50505050808062000c629062001583565b91505062000bd1565b506200050b620004f6565b62000c8062000e38565b5f5b815181101562000746576004818154811062000ca25762000ca26200153f565b5f91825260209091206002909102015482516001600160a01b03909116906349067f759084908490811062000cdb5762000cdb6200153f565b60200260200101516040518263ffffffff1660e01b815260040162000d0291815260200190565b5f604051808303815f87803b15801562000d1a575f80fd5b505af115801562000d2d573d5f803e3d5ffd5b50505050808062000d3e9062001583565b91505062000c82565b60606004805480602002602001604051908101604052809291908181526020015f905b8282101562000db3575f848152602090819020604080518082019091526002850290910180546001600160a01b0316825260019081015482840152908352909201910162000d6a565b50505050905090565b62000dc662000e38565b6001600160a01b03811662000e2d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620003d1565b620003da8162000e93565b5f546001600160a01b031633146200050b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003d1565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040516001600160a01b038085166024830152831660448201526064810182905262000bbf9085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915262001032565b604051636eb1769f60e11b81523060048201526001600160a01b0383811660248301525f919085169063dd62ed3e90604401602060405180830381865afa15801562000f9d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000fc39190620016be565b905062000bbf8463095ea7b360e01b8562000fdf868662001567565b6040516001600160a01b039092166024830152604482015260640162000f17565b6040516001600160a01b0383166024820152604481018290526200074490849063a9059cbb60e01b9060640162000f17565b5f62001088826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166200110c9092919063ffffffff16565b905080515f1480620010ab575080806020019051810190620010ab9190620016d6565b620007445760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401620003d1565b60606200111c84845f8562001124565b949350505050565b606082471015620011875760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401620003d1565b5f80866001600160a01b03168587604051620011a49190620016f7565b5f6040518083038185875af1925050503d805f8114620011e0576040519150601f19603f3d011682016040523d82523d5f602084013e620011e5565b606091505b5091509150620011f88783838762001203565b979650505050505050565b60608315620012765782515f036200126e576001600160a01b0385163b6200126e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401620003d1565b50816200111c565b6200111c83838151156200128d5781518083602001fd5b8060405162461bcd60e51b8152600401620003d1919062001714565b613408806200172983390190565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f1916810167ffffffffffffffff81118282101715620012f757620012f7620012b7565b604052919050565b5f602080838503121562001311575f80fd5b823567ffffffffffffffff8082111562001329575f80fd5b818501915085601f8301126200133d575f80fd5b813581811115620013525762001352620012b7565b8060051b915062001365848301620012cb565b81815291830184019184810190888411156200137f575f80fd5b938501935b838510156200139f5784358252938501939085019062001384565b98975050505050505050565b5f82601f830112620013bb575f80fd5b813567ffffffffffffffff811115620013d857620013d8620012b7565b620013ed601f8201601f1916602001620012cb565b81815284602083860101111562001402575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f806080858703121562001432575f80fd5b843567ffffffffffffffff808211156200144a575f80fd5b6200145888838901620013ab565b955060208701359150808211156200146e575f80fd5b506200147d87828801620013ab565b949794965050505060408301359260600135919050565b5f60208284031215620014a5575f80fd5b5035919050565b602080825282518282018190525f919060409081850190868401855b82811015620014f857815180516001600160a01b03168552860151868501529284019290850190600101620014c8565b5091979650505050505050565b6001600160a01b0381168114620003da575f80fd5b5f602082840312156200152b575f80fd5b8135620015388162001505565b9392505050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b808201808211156200157d576200157d62001553565b92915050565b5f6001820162001597576200159762001553565b5060010190565b5f5b83811015620015ba578181015183820152602001620015a0565b50505f910152565b5f8151808452620015db8160208601602086016200159e565b601f01601f19169290920160200192915050565b60a081525f6200160360a0830188620015c2565b8281036020840152620016178188620015c2565b6001600160a01b03968716604085015294909516606083015250608001529392505050565b5f602082840312156200164d575f80fd5b8151620015388162001505565b80820281158282048414176200157d576200157d62001553565b5f826200168f57634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156200157d576200157d62001553565b634e487b7160e01b5f52603160045260245ffd5b5f60208284031215620016cf575f80fd5b5051919050565b5f60208284031215620016e7575f80fd5b8151801515811462001538575f80fd5b5f82516200170a8184602087016200159e565b9190910192915050565b602081525f620015386020830184620015c256fe60e060405234801562000010575f80fd5b50604051620034083803806200340883398101604081905262000033916200026c565b848460036200004383826200038b565b5060046200005282826200038b565b5050506200006f620000696200012160201b60201c565b62000125565b6001600160a01b03831660805260405130906200008c9062000176565b6001600160a01b039091168152602001604051809103905ff080158015620000b6573d5f803e3d5ffd5b506001600160a01b031660a05260405130908390620000d59062000184565b6001600160a01b03928316815291166020820152604001604051809103905ff08015801562000106573d5f803e3d5ffd5b506001600160a01b031660c052600655506200045392505050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b610adf8062001aa383390190565b610e86806200258283390190565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112620001b6575f80fd5b81516001600160401b0380821115620001d357620001d362000192565b604051601f8301601f19908116603f01168101908282118183101715620001fe57620001fe62000192565b816040528381526020925086838588010111156200021a575f80fd5b5f91505b838210156200023d57858201830151818301840152908201906200021e565b5f93810190920192909252949350505050565b80516001600160a01b038116811462000267575f80fd5b919050565b5f805f805f60a0868803121562000281575f80fd5b85516001600160401b038082111562000298575f80fd5b620002a689838a01620001a6565b96506020880151915080821115620002bc575f80fd5b50620002cb88828901620001a6565b945050620002dc6040870162000250565b9250620002ec6060870162000250565b9150608086015190509295509295909350565b600181811c908216806200031457607f821691505b6020821081036200033357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000386575f81815260208120601f850160051c81016020861015620003615750805b601f850160051c820191505b8181101562000382578281556001016200036d565b5050505b505050565b81516001600160401b03811115620003a757620003a762000192565b620003bf81620003b88454620002ff565b8462000339565b602080601f831160018114620003f5575f8415620003dd5750858301515b5f19600386901b1c1916600185901b17855562000382565b5f85815260208120601f198616915b82811015620004255788860151825594840194600190910190840162000404565b50858210156200044357878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a05160c0516115ed620004b65f395f818161023c0152818161044601528181610f5f01526110b701525f81816103460152818161041401528181610eae015261100701525f8181610151015281816104f8015261064101526115ed5ff3fe608060405234801561000f575f80fd5b5060043610610148575f3560e01c806365a1f3c3116100bf578063a457c2d711610079578063a457c2d7146102e2578063a694fc3a146102f5578063a9059cbb14610308578063dd62ed3e1461031b578063f2fde38b1461032e578063f96a574b14610341575f80fd5b806365a1f3c31461027157806370a082311461027a578063715018a6146102a257806377ffd593146102aa5780638da5cb5b146102c957806395d89b41146102da575f80fd5b806323b872dd1161011057806323b872dd146101ef5780632e17de7814610202578063313ce5671461021557806339509351146102245780634216ff9d1461023757806349067f751461025e575f80fd5b80630479d6441461014c57806306fdde0314610190578063095ea7b3146101a557806318160ddd146101c85780631878962b146101da575b5f80fd5b6101737f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b610198610368565b6040516101879190611416565b6101b86101b3366004611463565b6103f8565b6040519015158152602001610187565b6002545b604051908152602001610187565b6101ed6101e836600461148b565b610411565b005b6101b86101fd3660046114ab565b6104c6565b6101ed6102103660046114e4565b6104e9565b60405160098152602001610187565b6101b8610232366004611463565b610560565b6101737f000000000000000000000000000000000000000000000000000000000000000081565b6101ed61026c3660046114e4565b610581565b6101cc60065481565b6101cc61028836600461148b565b6001600160a01b03165f9081526020819052604090205490565b6101ed61058e565b6101cc6102b836600461148b565b60076020525f908152604090205481565b6005546001600160a01b0316610173565b6101986105a1565b6101b86102f0366004611463565b6105b0565b6101ed6103033660046114e4565b61062a565b6101b8610316366004611463565b6106ad565b6101cc6103293660046114fb565b6106ba565b6101ed61033c36600461148b565b6106e4565b6101737f000000000000000000000000000000000000000000000000000000000000000081565b6060600380546103779061152c565b80601f01602080910402602001604051908101604052809291908181526020018280546103a39061152c565b80156103ee5780601f106103c5576101008083540402835291602001916103ee565b820191905f5260205f20905b8154815290600101906020018083116103d157829003601f168201915b5050505050905090565b5f3361040581858561075d565b60019150505b92915050565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614806104705750337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316145b6104ab5760405162461bcd60e51b81526020600482015260076024820152665245574152445360c81b60448201526064015b60405180910390fd5b6001600160a01b03165f908152600760205260409020429055565b5f336104d3858285610880565b6104de8585856108f8565b506001949350505050565b6104f33382610aa0565b6105277f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163383610bdb565b60405181815233907f85082129d87b2fe11527cb1b3b7a520aeb5aa6913f88a3d8757fe40d1db02fdd906020015b60405180910390a250565b5f3361040581858561057283836106ba565b61057c9190611564565b61075d565b610589610c3e565b600655565b610596610c3e565b61059f5f610c98565b565b6060600480546103779061152c565b5f33816105bd82866106ba565b90508381101561061d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104a2565b6104de828686840361075d565b335f818152600760205260409020429055610671907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316903084610ce9565b61067b3382610d21565b60405181815233907febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a90602001610555565b5f336104058185856108f8565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6106ec610c3e565b6001600160a01b0381166107515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104a2565b61075a81610c98565b50565b6001600160a01b0383166107bf5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104a2565b6001600160a01b0382166108205760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104a2565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61088b84846106ba565b90505f1981146108f257818110156108e55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104a2565b6108f2848484840361075d565b50505050565b6001600160a01b03831661095c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104a2565b6001600160a01b0382166109be5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104a2565b6001600160a01b0383165f9081526020819052604090205481811015610a355760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104a2565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108f2848484610de9565b6001600160a01b038216610b005760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104a2565b6001600160a01b0382165f9081526020819052604090205481811015610b735760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104a2565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610bd6835f84610de9565b505050565b6040516001600160a01b038316602482015260448101829052610bd690849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611197565b6005546001600160a01b0316331461059f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104a2565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6040516001600160a01b03808516602483015283166044820152606481018290526108f29085906323b872dd60e01b90608401610c07565b6001600160a01b038216610d775760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104a2565b8060025f828254610d889190611564565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610de55f8383610de9565b5050565b6001600160a01b03831615801590610e0c57506001600160a01b03831661dead14155b15610fc8576001600160a01b0383165f908152600760205260408120541580610e5857506006546001600160a01b0385165f90815260076020526040902054610e559190611564565b42105b90508015610e975760405162461bcd60e51b815260206004820152600c60248201526b4541524c59554e5354414b4560a01b60448201526064016104a2565b6040516329cc05cf60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906329cc05cf90610ee89087908690600190600401611583565b5f604051808303815f87803b158015610eff575f80fd5b505af1925050508015610f10575060015b610f48576040516001600160a01b038516907ffa39add39f2e26e397e50148e2f230f912c11e87bbd59a62ee215cf109bee5e0905f90a25b6040516329cc05cf60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906329cc05cf90610f999087908690600190600401611583565b5f604051808303815f87803b158015610fb0575f80fd5b505af1158015610fc2573d5f803e3d5ffd5b50505050505b6001600160a01b03821615801590610feb57506001600160a01b03821661dead14155b15610bd6576040516329cc05cf60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906329cc05cf9061104090859085905f90600401611583565b5f604051808303815f87803b158015611057575f80fd5b505af1925050508015611068575060015b6110a0576040516001600160a01b038316907f81c3373a2f115ceb117c3799e33f6b9e0a42dcbec8c02bd648cc835861d4664b905f90a25b6040516329cc05cf60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906329cc05cf906110f090859085905f90600401611583565b5f604051808303815f87803b158015611107575f80fd5b505af1158015611119573d5f803e3d5ffd5b505050506001600160a01b038281165f9081526007602052604080822054928616825290205411611161576001600160a01b0382165f9081526007602052604090205461117a565b6001600160a01b0383165f908152600760205260409020545b6001600160a01b0383165f90815260076020526040902055505050565b5f6111eb826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661126a9092919063ffffffff16565b905080515f148061120b57508080602001905181019061120b91906115a6565b610bd65760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016104a2565b606061127884845f85611280565b949350505050565b6060824710156112e15760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016104a2565b5f80866001600160a01b031685876040516112fc91906115c5565b5f6040518083038185875af1925050503d805f8114611336576040519150601f19603f3d011682016040523d82523d5f602084013e61133b565b606091505b509150915061134c87838387611357565b979650505050505050565b606083156113c55782515f036113be576001600160a01b0385163b6113be5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016104a2565b5081611278565b61127883838151156113da5781518083602001fd5b8060405162461bcd60e51b81526004016104a29190611416565b5f5b8381101561140e5781810151838201526020016113f6565b50505f910152565b602081525f82518060208401526114348160408501602087016113f4565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461145e575f80fd5b919050565b5f8060408385031215611474575f80fd5b61147d83611448565b946020939093013593505050565b5f6020828403121561149b575f80fd5b6114a482611448565b9392505050565b5f805f606084860312156114bd575f80fd5b6114c684611448565b92506114d460208501611448565b9150604084013590509250925092565b5f602082840312156114f4575f80fd5b5035919050565b5f806040838503121561150c575f80fd5b61151583611448565b915061152360208401611448565b90509250929050565b600181811c9082168061154057607f821691505b60208210810361155e57634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561040b57634e487b7160e01b5f52601160045260245ffd5b6001600160a01b0393909316835260208301919091521515604082015260600190565b5f602082840312156115b6575f80fd5b815180151581146114a4575f80fd5b5f82516115d68184602087016113f4565b919091019291505056fea164736f6c6343000815000a608060405234801561000f575f80fd5b50604051610adf380380610adf83398101604081905261002e91610052565b5f80546001600160a01b0319166001600160a01b039290921691909117905561007f565b5f60208284031215610062575f80fd5b81516001600160a01b0381168114610078575f80fd5b9392505050565b610a538061008c5f395ff3fe60806040526004361061009d575f3560e01c806389d969171161006257806389d969171461017d578063b88a802f1461019c578063bff1f9e1146101b0578063ce7c2ac2146101c5578063efca2eed146101f0578063ff50abdc14610205575f80fd5b80630700037d146100b1578063152111f7146100fd57806329cc05cf146101055780633a98ef3914610124578063427e440d14610147575f80fd5b366100ad576100ab3461021a565b005b5f80fd5b3480156100bc575f80fd5b506100e36100cb366004610948565b60046020525f90815260409020805460019091015482565b604080519283526020830191909152015b60405180910390f35b6100ab61031e565b348015610110575f80fd5b506100ab61011f366004610968565b610329565b34801561012f575f80fd5b5061013960025481565b6040519081526020016100f4565b348015610152575f80fd5b505f54610165906001600160a01b031681565b6040516001600160a01b0390911681526020016100f4565b348015610188575f80fd5b50610139610197366004610948565b610383565b3480156101a7575f80fd5b506100ab610406565b3480156101bb575f80fd5b5061013960015481565b3480156101d0575f80fd5b506101396101df366004610948565b60036020525f908152604090205481565b3480156101fb575f80fd5b5061013960065481565b348015610210575f80fd5b5061013960075481565b5f81116102595760405162461bcd60e51b815260206004820152600860248201526704445504f534954360c41b60448201526064015b60405180910390fd5b5f600254116102955760405162461bcd60e51b81526020600482015260086024820152674445504f5349543160c01b6044820152606401610250565b8060075f8282546102a691906109bd565b90915550506002546102c7826ec097ce7bc90715b34b9f10000000006109d0565b6102d191906109e7565b60055f8282546102e191906109bd565b909155505060405181815233907fb9ad861b752f80117b35bea6dec99933d8a5ae360f2839ee8784b750d56134099060200160405180910390a250565b6103273461021a565b565b5f546001600160a01b0316336001600160a01b0316146103735760405162461bcd60e51b81526020600482015260056024820152642a27a5a2a760d91b6044820152606401610250565b61037e838383610444565b505050565b6001600160a01b0381165f9081526003602052604081205481036103a857505f919050565b6001600160a01b0382165f908152600360205260408120546103c9906104e1565b6001600160a01b0384165f908152600460205260409020549091508082116103f457505f9392505050565b6103fe8183610a06565b949350505050565b61040f33610510565b6040805133815290517f63e32091e4445d16e29c33a6b264577c2d86694021aa4e6f4dd590048f5792e89181900360200190a1565b801561049c576104548383610730565b826001600160a01b03167fae0577e1c96b26fbc0b9df702431f5470979d001d24f136eded791b8b6521d6f8360405161048f91815260200190565b60405180910390a2505050565b6104a68383610873565b826001600160a01b03167fba8f3777cf908803bf1f3dd58e7f4b7d3de4dbe3c234c4ccab0975d98f7cd3888360405161048f91815260200190565b5f6ec097ce7bc90715b34b9f10000000006005548361050091906109d0565b61050a91906109e7565b92915050565b6001600160a01b0381165f9081526003602052604081205490036105315750565b5f61053b82610383565b6001600160a01b0383165f9081526004602052604081206001018054929350839290919061056a9084906109bd565b90915550506001600160a01b0382165f90815260036020526040902054610590906104e1565b6001600160a01b0383165f90815260046020526040902055801561072c575f54604051631878962b60e01b81526001600160a01b03848116600483015290911690631878962b906024015f604051808303815f87803b1580156105f1575f80fd5b505af1158015610603573d5f803e3d5ffd5b505050508060065f82825461061891906109bd565b909155505060405147905f906001600160a01b0385169084908381818185875af1925050503d805f8114610667576040519150601f19603f3d011682016040523d82523d5f602084013e61066c565b606091505b50509050806106a55760405162461bcd60e51b8152602060048201526005602482015264044495354360dc1b6044820152606401610250565b6106af8383610a06565b4710156106e65760405162461bcd60e51b8152602060048201526005602482015264444953543160d81b6044820152606401610250565b836001600160a01b03167fe8b160e373db99a103e0a2abfa029b9c3fc8b328984a1ead8a65ae68ae646db78460405161072191815260200190565b60405180910390a250505b5050565b6001600160a01b0382165f908152600360205260409020541580159061076d57506001600160a01b0382165f908152600360205260409020548111155b6107a25760405162461bcd60e51b815260206004820152600660248201526552454d4f564560d01b6044820152606401610250565b5f6107ac83610383565b905080156107bd576107bd8161021a565b8160025f8282546107ce9190610a06565b90915550506001600160a01b0383165f90815260036020526040812080548492906107fa908490610a06565b90915550506001600160a01b0383165f9081526003602052604081205490036108325760018054905f61082c83610a19565b91905055505b6001600160a01b0383165f90815260036020526040902054610853906104e1565b6001600160a01b039093165f908152600460205260409020929092555050565b6001600160a01b0382165f90815260036020526040902054156108995761089982610510565b6001600160a01b0382165f9081526003602052604081205460028054919284926108c49084906109bd565b90915550506001600160a01b0383165f90815260036020526040812080548492906108f09084906109bd565b90915550508015801561091957506001600160a01b0383165f9081526003602052604090205415155b156108325760018054905f61082c83610a2e565b80356001600160a01b0381168114610943575f80fd5b919050565b5f60208284031215610958575f80fd5b6109618261092d565b9392505050565b5f805f6060848603121561097a575f80fd5b6109838461092d565b9250602084013591506040840135801515811461099e575f80fd5b809150509250925092565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561050a5761050a6109a9565b808202811582820484141761050a5761050a6109a9565b5f82610a0157634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561050a5761050a6109a9565b5f81610a2757610a276109a9565b505f190190565b5f60018201610a3f57610a3f6109a9565b506001019056fea164736f6c6343000815000a6080604052600a600655348015610014575f80fd5b50604051610e86380380610e868339810160408190526100339161007e565b5f80546001600160a01b039384166001600160a01b031991821617909155600180549290931691161790556100af565b80516001600160a01b0381168114610079575f80fd5b919050565b5f806040838503121561008f575f80fd5b61009883610063565b91506100a660208401610063565b90509250929050565b610dca806100bc5f395ff3fe608060405234801561000f575f80fd5b50600436106100cb575f3560e01c80639c1454d411610088578063ba32722e11610063578063ba32722e14610184578063bde30818146101a3578063ce7c2ac2146101cd578063d1af0c7d146101ec575f80fd5b80639c1454d41461016a578063a95ae7eb14610173578063b88a802f1461017c575f80fd5b80630700037d146100cf57806329cc05cf1461010f5780633a98ef3914610124578063869890381461013b57806389d96917146101445780638bdf67f214610157575b5f80fd5b6100f56100dd366004610bfb565b60056020525f90815260409020805460019091015482565b604080519283526020830191909152015b60405180910390f35b61012261011d366004610c2b565b6101ff565b005b61012d60025481565b604051908152602001610106565b61012d60035481565b61012d610152366004610bfb565b6102f7565b610122610165366004610c68565b61037a565b61012d60085481565b61012d60095481565b6101226104b8565b61012d610192366004610c68565b600a6020525f908152604090205481565b5f546101b5906001600160a01b031681565b6040516001600160a01b039091168152602001610106565b61012d6101db366004610bfb565b60046020525f908152604090205481565b6001546101b5906001600160a01b031681565b5f546001600160a01b0316336001600160a01b0316146102555760405162461bcd60e51b815260206004820152600c60248201526b15539055551213d49256915160a21b60448201526064015b60405180910390fd5b80156102ad5761026583836104ed565b826001600160a01b03167fae0577e1c96b26fbc0b9df702431f5470979d001d24f136eded791b8b6521d6f836040516102a091815260200190565b60405180910390a2505050565b6102b78383610630565b826001600160a01b03167fba8f3777cf908803bf1f3dd58e7f4b7d3de4dbe3c234c4ccab0975d98f7cd388836040516102a091815260200190565b505050565b6001600160a01b0381165f90815260046020526040812054810361031c57505f919050565b6001600160a01b0382165f9081526004602052604081205461033d906106ea565b6001600160a01b0384165f9081526005602052604090205490915080821161036857505f9392505050565b6103728183610c93565b949350505050565b5f81116103b15760405162461bcd60e51b8152602060048201526005602482015264444550414d60d81b604482015260640161024c565b6001546040516370a0823160e01b81523060048201525f916001600160a01b0316906370a0823190602401602060405180830381865afa1580156103f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061041b9190610ca6565b9050610435336001546001600160a01b0316903085610719565b6001546040516370a0823160e01b81523060048201526104b49183916001600160a01b03909116906370a0823190602401602060405180830381865afa158015610481573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a59190610ca6565b6104af9190610c93565b61078a565b5050565b6104c133610855565b60405133907f63e32091e4445d16e29c33a6b264577c2d86694021aa4e6f4dd590048f5792e8905f90a2565b6001600160a01b0382165f908152600460205260409020541580159061052a57506001600160a01b0382165f908152600460205260409020548111155b61055f5760405162461bcd60e51b815260206004820152600660248201526552454d4f564560d01b604482015260640161024c565b5f610569836102f7565b9050801561057a5761057a8161078a565b8160025f82825461058b9190610c93565b90915550506001600160a01b0383165f90815260046020526040812080548492906105b7908490610c93565b90915550506001600160a01b0383165f9081526004602052604081205490036105ef5760038054905f6105e983610cbd565b91905055505b6001600160a01b0383165f90815260046020526040902054610610906106ea565b6001600160a01b039093165f908152600560205260409020929092555050565b6001600160a01b0382165f90815260046020526040902054156106565761065682610855565b6001600160a01b0382165f908152600460205260408120546002805491928492610681908490610cd2565b90915550506001600160a01b0383165f90815260046020526040812080548492906106ad908490610cd2565b9091555050801580156106d657506001600160a01b0383165f9081526004602052604090205415155b156105ef5760038054905f6105e983610ce5565b5f6ec097ce7bc90715b34b9f1000000000600754836107099190610cfd565b6107139190610d14565b92915050565b6040516001600160a01b03808516602483015283166044820152606481018290526107849085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526109c0565b50505050565b5f8111801561079a57505f600254115b6107cc5760405162461bcd60e51b815260206004820152600360248201526215905360ea1b604482015260640161024c565b8060095f8282546107dd9190610cd2565b90915550506002546107fe826ec097ce7bc90715b34b9f1000000000610cfd565b6108089190610d14565b60075f8282546108189190610cd2565b909155505060405181815233907fb9ad861b752f80117b35bea6dec99933d8a5ae360f2839ee8784b750d56134099060200160405180910390a250565b6001600160a01b0381165f9081526004602052604081205490036108765750565b5f610880826102f7565b6001600160a01b0383165f908152600560205260408120600101805492935083929091906108af908490610cd2565b90915550506001600160a01b0382165f908152600460205260409020546108d5906106ea565b6001600160a01b0383165f9081526005602052604090205580156104b4575f54604051631878962b60e01b81526001600160a01b03848116600483015290911690631878962b906024015f604051808303815f87803b158015610936575f80fd5b505af1158015610948573d5f803e3d5ffd5b505050508060085f82825461095d9190610cd2565b9091555050600154610979906001600160a01b03168383610a93565b816001600160a01b03167fe8b160e373db99a103e0a2abfa029b9c3fc8b328984a1ead8a65ae68ae646db7826040516109b491815260200190565b60405180910390a25050565b5f610a14826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610ac39092919063ffffffff16565b905080515f1480610a34575080806020019051810190610a349190610d33565b6102f25760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161024c565b6040516001600160a01b0383166024820152604481018290526102f290849063a9059cbb60e01b9060640161074d565b606061037284845f85855f80866001600160a01b03168587604051610ae89190610d70565b5f6040518083038185875af1925050503d805f8114610b22576040519150601f19603f3d011682016040523d82523d5f602084013e610b27565b606091505b5091509150610b3887838387610b43565b979650505050505050565b60608315610bb15782515f03610baa576001600160a01b0385163b610baa5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161024c565b5081610372565b6103728383815115610bc65781518083602001fd5b8060405162461bcd60e51b815260040161024c9190610d8b565b80356001600160a01b0381168114610bf6575f80fd5b919050565b5f60208284031215610c0b575f80fd5b610c1482610be0565b9392505050565b8015158114610c28575f80fd5b50565b5f805f60608486031215610c3d575f80fd5b610c4684610be0565b9250602084013591506040840135610c5d81610c1b565b809150509250925092565b5f60208284031215610c78575f80fd5b5035919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561071357610713610c7f565b5f60208284031215610cb6575f80fd5b5051919050565b5f81610ccb57610ccb610c7f565b505f190190565b8082018082111561071357610713610c7f565b5f60018201610cf657610cf6610c7f565b5060010190565b808202811582820484141761071357610713610c7f565b5f82610d2e57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215610d43575f80fd5b8151610c1481610c1b565b5f5b83811015610d68578181015183820152602001610d50565b50505f910152565b5f8251610d81818460208701610d4e565b9190910192915050565b602081525f8251806020840152610da9816040850160208701610d4e565b601f01601f1916919091016040019291505056fea164736f6c6343000815000aa164736f6c6343000815000a60e060405234801562000010575f80fd5b50604051620034083803806200340883398101604081905262000033916200026c565b848460036200004383826200038b565b5060046200005282826200038b565b5050506200006f620000696200012160201b60201c565b62000125565b6001600160a01b03831660805260405130906200008c9062000176565b6001600160a01b039091168152602001604051809103905ff080158015620000b6573d5f803e3d5ffd5b506001600160a01b031660a05260405130908390620000d59062000184565b6001600160a01b03928316815291166020820152604001604051809103905ff08015801562000106573d5f803e3d5ffd5b506001600160a01b031660c052600655506200045392505050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b610adf8062001aa383390190565b610e86806200258283390190565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112620001b6575f80fd5b81516001600160401b0380821115620001d357620001d362000192565b604051601f8301601f19908116603f01168101908282118183101715620001fe57620001fe62000192565b816040528381526020925086838588010111156200021a575f80fd5b5f91505b838210156200023d57858201830151818301840152908201906200021e565b5f93810190920192909252949350505050565b80516001600160a01b038116811462000267575f80fd5b919050565b5f805f805f60a0868803121562000281575f80fd5b85516001600160401b038082111562000298575f80fd5b620002a689838a01620001a6565b96506020880151915080821115620002bc575f80fd5b50620002cb88828901620001a6565b945050620002dc6040870162000250565b9250620002ec6060870162000250565b9150608086015190509295509295909350565b600181811c908216806200031457607f821691505b6020821081036200033357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000386575f81815260208120601f850160051c81016020861015620003615750805b601f850160051c820191505b8181101562000382578281556001016200036d565b5050505b505050565b81516001600160401b03811115620003a757620003a762000192565b620003bf81620003b88454620002ff565b8462000339565b602080601f831160018114620003f5575f8415620003dd5750858301515b5f19600386901b1c1916600185901b17855562000382565b5f85815260208120601f198616915b82811015620004255788860151825594840194600190910190840162000404565b50858210156200044357878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a05160c0516115ed620004b65f395f818161023c0152818161044601528181610f5f01526110b701525f81816103460152818161041401528181610eae015261100701525f8181610151015281816104f8015261064101526115ed5ff3fe608060405234801561000f575f80fd5b5060043610610148575f3560e01c806365a1f3c3116100bf578063a457c2d711610079578063a457c2d7146102e2578063a694fc3a146102f5578063a9059cbb14610308578063dd62ed3e1461031b578063f2fde38b1461032e578063f96a574b14610341575f80fd5b806365a1f3c31461027157806370a082311461027a578063715018a6146102a257806377ffd593146102aa5780638da5cb5b146102c957806395d89b41146102da575f80fd5b806323b872dd1161011057806323b872dd146101ef5780632e17de7814610202578063313ce5671461021557806339509351146102245780634216ff9d1461023757806349067f751461025e575f80fd5b80630479d6441461014c57806306fdde0314610190578063095ea7b3146101a557806318160ddd146101c85780631878962b146101da575b5f80fd5b6101737f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b610198610368565b6040516101879190611416565b6101b86101b3366004611463565b6103f8565b6040519015158152602001610187565b6002545b604051908152602001610187565b6101ed6101e836600461148b565b610411565b005b6101b86101fd3660046114ab565b6104c6565b6101ed6102103660046114e4565b6104e9565b60405160098152602001610187565b6101b8610232366004611463565b610560565b6101737f000000000000000000000000000000000000000000000000000000000000000081565b6101ed61026c3660046114e4565b610581565b6101cc60065481565b6101cc61028836600461148b565b6001600160a01b03165f9081526020819052604090205490565b6101ed61058e565b6101cc6102b836600461148b565b60076020525f908152604090205481565b6005546001600160a01b0316610173565b6101986105a1565b6101b86102f0366004611463565b6105b0565b6101ed6103033660046114e4565b61062a565b6101b8610316366004611463565b6106ad565b6101cc6103293660046114fb565b6106ba565b6101ed61033c36600461148b565b6106e4565b6101737f000000000000000000000000000000000000000000000000000000000000000081565b6060600380546103779061152c565b80601f01602080910402602001604051908101604052809291908181526020018280546103a39061152c565b80156103ee5780601f106103c5576101008083540402835291602001916103ee565b820191905f5260205f20905b8154815290600101906020018083116103d157829003601f168201915b5050505050905090565b5f3361040581858561075d565b60019150505b92915050565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614806104705750337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316145b6104ab5760405162461bcd60e51b81526020600482015260076024820152665245574152445360c81b60448201526064015b60405180910390fd5b6001600160a01b03165f908152600760205260409020429055565b5f336104d3858285610880565b6104de8585856108f8565b506001949350505050565b6104f33382610aa0565b6105277f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163383610bdb565b60405181815233907f85082129d87b2fe11527cb1b3b7a520aeb5aa6913f88a3d8757fe40d1db02fdd906020015b60405180910390a250565b5f3361040581858561057283836106ba565b61057c9190611564565b61075d565b610589610c3e565b600655565b610596610c3e565b61059f5f610c98565b565b6060600480546103779061152c565b5f33816105bd82866106ba565b90508381101561061d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104a2565b6104de828686840361075d565b335f818152600760205260409020429055610671907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316903084610ce9565b61067b3382610d21565b60405181815233907febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a90602001610555565b5f336104058185856108f8565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6106ec610c3e565b6001600160a01b0381166107515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104a2565b61075a81610c98565b50565b6001600160a01b0383166107bf5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104a2565b6001600160a01b0382166108205760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104a2565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61088b84846106ba565b90505f1981146108f257818110156108e55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104a2565b6108f2848484840361075d565b50505050565b6001600160a01b03831661095c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104a2565b6001600160a01b0382166109be5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104a2565b6001600160a01b0383165f9081526020819052604090205481811015610a355760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104a2565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108f2848484610de9565b6001600160a01b038216610b005760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104a2565b6001600160a01b0382165f9081526020819052604090205481811015610b735760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104a2565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610bd6835f84610de9565b505050565b6040516001600160a01b038316602482015260448101829052610bd690849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611197565b6005546001600160a01b0316331461059f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104a2565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6040516001600160a01b03808516602483015283166044820152606481018290526108f29085906323b872dd60e01b90608401610c07565b6001600160a01b038216610d775760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104a2565b8060025f828254610d889190611564565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610de55f8383610de9565b5050565b6001600160a01b03831615801590610e0c57506001600160a01b03831661dead14155b15610fc8576001600160a01b0383165f908152600760205260408120541580610e5857506006546001600160a01b0385165f90815260076020526040902054610e559190611564565b42105b90508015610e975760405162461bcd60e51b815260206004820152600c60248201526b4541524c59554e5354414b4560a01b60448201526064016104a2565b6040516329cc05cf60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906329cc05cf90610ee89087908690600190600401611583565b5f604051808303815f87803b158015610eff575f80fd5b505af1925050508015610f10575060015b610f48576040516001600160a01b038516907ffa39add39f2e26e397e50148e2f230f912c11e87bbd59a62ee215cf109bee5e0905f90a25b6040516329cc05cf60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906329cc05cf90610f999087908690600190600401611583565b5f604051808303815f87803b158015610fb0575f80fd5b505af1158015610fc2573d5f803e3d5ffd5b50505050505b6001600160a01b03821615801590610feb57506001600160a01b03821661dead14155b15610bd6576040516329cc05cf60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906329cc05cf9061104090859085905f90600401611583565b5f604051808303815f87803b158015611057575f80fd5b505af1925050508015611068575060015b6110a0576040516001600160a01b038316907f81c3373a2f115ceb117c3799e33f6b9e0a42dcbec8c02bd648cc835861d4664b905f90a25b6040516329cc05cf60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906329cc05cf906110f090859085905f90600401611583565b5f604051808303815f87803b158015611107575f80fd5b505af1158015611119573d5f803e3d5ffd5b505050506001600160a01b038281165f9081526007602052604080822054928616825290205411611161576001600160a01b0382165f9081526007602052604090205461117a565b6001600160a01b0383165f908152600760205260409020545b6001600160a01b0383165f90815260076020526040902055505050565b5f6111eb826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661126a9092919063ffffffff16565b905080515f148061120b57508080602001905181019061120b91906115a6565b610bd65760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016104a2565b606061127884845f85611280565b949350505050565b6060824710156112e15760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016104a2565b5f80866001600160a01b031685876040516112fc91906115c5565b5f6040518083038185875af1925050503d805f8114611336576040519150601f19603f3d011682016040523d82523d5f602084013e61133b565b606091505b509150915061134c87838387611357565b979650505050505050565b606083156113c55782515f036113be576001600160a01b0385163b6113be5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016104a2565b5081611278565b61127883838151156113da5781518083602001fd5b8060405162461bcd60e51b81526004016104a29190611416565b5f5b8381101561140e5781810151838201526020016113f6565b50505f910152565b602081525f82518060208401526114348160408501602087016113f4565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461145e575f80fd5b919050565b5f8060408385031215611474575f80fd5b61147d83611448565b946020939093013593505050565b5f6020828403121561149b575f80fd5b6114a482611448565b9392505050565b5f805f606084860312156114bd575f80fd5b6114c684611448565b92506114d460208501611448565b9150604084013590509250925092565b5f602082840312156114f4575f80fd5b5035919050565b5f806040838503121561150c575f80fd5b61151583611448565b915061152360208401611448565b90509250929050565b600181811c9082168061154057607f821691505b60208210810361155e57634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561040b57634e487b7160e01b5f52601160045260245ffd5b6001600160a01b0393909316835260208301919091521515604082015260600190565b5f602082840312156115b6575f80fd5b815180151581146114a4575f80fd5b5f82516115d68184602087016113f4565b919091019291505056fea164736f6c6343000815000a608060405234801561000f575f80fd5b50604051610adf380380610adf83398101604081905261002e91610052565b5f80546001600160a01b0319166001600160a01b039290921691909117905561007f565b5f60208284031215610062575f80fd5b81516001600160a01b0381168114610078575f80fd5b9392505050565b610a538061008c5f395ff3fe60806040526004361061009d575f3560e01c806389d969171161006257806389d969171461017d578063b88a802f1461019c578063bff1f9e1146101b0578063ce7c2ac2146101c5578063efca2eed146101f0578063ff50abdc14610205575f80fd5b80630700037d146100b1578063152111f7146100fd57806329cc05cf146101055780633a98ef3914610124578063427e440d14610147575f80fd5b366100ad576100ab3461021a565b005b5f80fd5b3480156100bc575f80fd5b506100e36100cb366004610948565b60046020525f90815260409020805460019091015482565b604080519283526020830191909152015b60405180910390f35b6100ab61031e565b348015610110575f80fd5b506100ab61011f366004610968565b610329565b34801561012f575f80fd5b5061013960025481565b6040519081526020016100f4565b348015610152575f80fd5b505f54610165906001600160a01b031681565b6040516001600160a01b0390911681526020016100f4565b348015610188575f80fd5b50610139610197366004610948565b610383565b3480156101a7575f80fd5b506100ab610406565b3480156101bb575f80fd5b5061013960015481565b3480156101d0575f80fd5b506101396101df366004610948565b60036020525f908152604090205481565b3480156101fb575f80fd5b5061013960065481565b348015610210575f80fd5b5061013960075481565b5f81116102595760405162461bcd60e51b815260206004820152600860248201526704445504f534954360c41b60448201526064015b60405180910390fd5b5f600254116102955760405162461bcd60e51b81526020600482015260086024820152674445504f5349543160c01b6044820152606401610250565b8060075f8282546102a691906109bd565b90915550506002546102c7826ec097ce7bc90715b34b9f10000000006109d0565b6102d191906109e7565b60055f8282546102e191906109bd565b909155505060405181815233907fb9ad861b752f80117b35bea6dec99933d8a5ae360f2839ee8784b750d56134099060200160405180910390a250565b6103273461021a565b565b5f546001600160a01b0316336001600160a01b0316146103735760405162461bcd60e51b81526020600482015260056024820152642a27a5a2a760d91b6044820152606401610250565b61037e838383610444565b505050565b6001600160a01b0381165f9081526003602052604081205481036103a857505f919050565b6001600160a01b0382165f908152600360205260408120546103c9906104e1565b6001600160a01b0384165f908152600460205260409020549091508082116103f457505f9392505050565b6103fe8183610a06565b949350505050565b61040f33610510565b6040805133815290517f63e32091e4445d16e29c33a6b264577c2d86694021aa4e6f4dd590048f5792e89181900360200190a1565b801561049c576104548383610730565b826001600160a01b03167fae0577e1c96b26fbc0b9df702431f5470979d001d24f136eded791b8b6521d6f8360405161048f91815260200190565b60405180910390a2505050565b6104a68383610873565b826001600160a01b03167fba8f3777cf908803bf1f3dd58e7f4b7d3de4dbe3c234c4ccab0975d98f7cd3888360405161048f91815260200190565b5f6ec097ce7bc90715b34b9f10000000006005548361050091906109d0565b61050a91906109e7565b92915050565b6001600160a01b0381165f9081526003602052604081205490036105315750565b5f61053b82610383565b6001600160a01b0383165f9081526004602052604081206001018054929350839290919061056a9084906109bd565b90915550506001600160a01b0382165f90815260036020526040902054610590906104e1565b6001600160a01b0383165f90815260046020526040902055801561072c575f54604051631878962b60e01b81526001600160a01b03848116600483015290911690631878962b906024015f604051808303815f87803b1580156105f1575f80fd5b505af1158015610603573d5f803e3d5ffd5b505050508060065f82825461061891906109bd565b909155505060405147905f906001600160a01b0385169084908381818185875af1925050503d805f8114610667576040519150601f19603f3d011682016040523d82523d5f602084013e61066c565b606091505b50509050806106a55760405162461bcd60e51b8152602060048201526005602482015264044495354360dc1b6044820152606401610250565b6106af8383610a06565b4710156106e65760405162461bcd60e51b8152602060048201526005602482015264444953543160d81b6044820152606401610250565b836001600160a01b03167fe8b160e373db99a103e0a2abfa029b9c3fc8b328984a1ead8a65ae68ae646db78460405161072191815260200190565b60405180910390a250505b5050565b6001600160a01b0382165f908152600360205260409020541580159061076d57506001600160a01b0382165f908152600360205260409020548111155b6107a25760405162461bcd60e51b815260206004820152600660248201526552454d4f564560d01b6044820152606401610250565b5f6107ac83610383565b905080156107bd576107bd8161021a565b8160025f8282546107ce9190610a06565b90915550506001600160a01b0383165f90815260036020526040812080548492906107fa908490610a06565b90915550506001600160a01b0383165f9081526003602052604081205490036108325760018054905f61082c83610a19565b91905055505b6001600160a01b0383165f90815260036020526040902054610853906104e1565b6001600160a01b039093165f908152600460205260409020929092555050565b6001600160a01b0382165f90815260036020526040902054156108995761089982610510565b6001600160a01b0382165f9081526003602052604081205460028054919284926108c49084906109bd565b90915550506001600160a01b0383165f90815260036020526040812080548492906108f09084906109bd565b90915550508015801561091957506001600160a01b0383165f9081526003602052604090205415155b156108325760018054905f61082c83610a2e565b80356001600160a01b0381168114610943575f80fd5b919050565b5f60208284031215610958575f80fd5b6109618261092d565b9392505050565b5f805f6060848603121561097a575f80fd5b6109838461092d565b9250602084013591506040840135801515811461099e575f80fd5b809150509250925092565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561050a5761050a6109a9565b808202811582820484141761050a5761050a6109a9565b5f82610a0157634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561050a5761050a6109a9565b5f81610a2757610a276109a9565b505f190190565b5f60018201610a3f57610a3f6109a9565b506001019056fea164736f6c6343000815000a6080604052600a600655348015610014575f80fd5b50604051610e86380380610e868339810160408190526100339161007e565b5f80546001600160a01b039384166001600160a01b031991821617909155600180549290931691161790556100af565b80516001600160a01b0381168114610079575f80fd5b919050565b5f806040838503121561008f575f80fd5b61009883610063565b91506100a660208401610063565b90509250929050565b610dca806100bc5f395ff3fe608060405234801561000f575f80fd5b50600436106100cb575f3560e01c80639c1454d411610088578063ba32722e11610063578063ba32722e14610184578063bde30818146101a3578063ce7c2ac2146101cd578063d1af0c7d146101ec575f80fd5b80639c1454d41461016a578063a95ae7eb14610173578063b88a802f1461017c575f80fd5b80630700037d146100cf57806329cc05cf1461010f5780633a98ef3914610124578063869890381461013b57806389d96917146101445780638bdf67f214610157575b5f80fd5b6100f56100dd366004610bfb565b60056020525f90815260409020805460019091015482565b604080519283526020830191909152015b60405180910390f35b61012261011d366004610c2b565b6101ff565b005b61012d60025481565b604051908152602001610106565b61012d60035481565b61012d610152366004610bfb565b6102f7565b610122610165366004610c68565b61037a565b61012d60085481565b61012d60095481565b6101226104b8565b61012d610192366004610c68565b600a6020525f908152604090205481565b5f546101b5906001600160a01b031681565b6040516001600160a01b039091168152602001610106565b61012d6101db366004610bfb565b60046020525f908152604090205481565b6001546101b5906001600160a01b031681565b5f546001600160a01b0316336001600160a01b0316146102555760405162461bcd60e51b815260206004820152600c60248201526b15539055551213d49256915160a21b60448201526064015b60405180910390fd5b80156102ad5761026583836104ed565b826001600160a01b03167fae0577e1c96b26fbc0b9df702431f5470979d001d24f136eded791b8b6521d6f836040516102a091815260200190565b60405180910390a2505050565b6102b78383610630565b826001600160a01b03167fba8f3777cf908803bf1f3dd58e7f4b7d3de4dbe3c234c4ccab0975d98f7cd388836040516102a091815260200190565b505050565b6001600160a01b0381165f90815260046020526040812054810361031c57505f919050565b6001600160a01b0382165f9081526004602052604081205461033d906106ea565b6001600160a01b0384165f9081526005602052604090205490915080821161036857505f9392505050565b6103728183610c93565b949350505050565b5f81116103b15760405162461bcd60e51b8152602060048201526005602482015264444550414d60d81b604482015260640161024c565b6001546040516370a0823160e01b81523060048201525f916001600160a01b0316906370a0823190602401602060405180830381865afa1580156103f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061041b9190610ca6565b9050610435336001546001600160a01b0316903085610719565b6001546040516370a0823160e01b81523060048201526104b49183916001600160a01b03909116906370a0823190602401602060405180830381865afa158015610481573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a59190610ca6565b6104af9190610c93565b61078a565b5050565b6104c133610855565b60405133907f63e32091e4445d16e29c33a6b264577c2d86694021aa4e6f4dd590048f5792e8905f90a2565b6001600160a01b0382165f908152600460205260409020541580159061052a57506001600160a01b0382165f908152600460205260409020548111155b61055f5760405162461bcd60e51b815260206004820152600660248201526552454d4f564560d01b604482015260640161024c565b5f610569836102f7565b9050801561057a5761057a8161078a565b8160025f82825461058b9190610c93565b90915550506001600160a01b0383165f90815260046020526040812080548492906105b7908490610c93565b90915550506001600160a01b0383165f9081526004602052604081205490036105ef5760038054905f6105e983610cbd565b91905055505b6001600160a01b0383165f90815260046020526040902054610610906106ea565b6001600160a01b039093165f908152600560205260409020929092555050565b6001600160a01b0382165f90815260046020526040902054156106565761065682610855565b6001600160a01b0382165f908152600460205260408120546002805491928492610681908490610cd2565b90915550506001600160a01b0383165f90815260046020526040812080548492906106ad908490610cd2565b9091555050801580156106d657506001600160a01b0383165f9081526004602052604090205415155b156105ef5760038054905f6105e983610ce5565b5f6ec097ce7bc90715b34b9f1000000000600754836107099190610cfd565b6107139190610d14565b92915050565b6040516001600160a01b03808516602483015283166044820152606481018290526107849085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526109c0565b50505050565b5f8111801561079a57505f600254115b6107cc5760405162461bcd60e51b815260206004820152600360248201526215905360ea1b604482015260640161024c565b8060095f8282546107dd9190610cd2565b90915550506002546107fe826ec097ce7bc90715b34b9f1000000000610cfd565b6108089190610d14565b60075f8282546108189190610cd2565b909155505060405181815233907fb9ad861b752f80117b35bea6dec99933d8a5ae360f2839ee8784b750d56134099060200160405180910390a250565b6001600160a01b0381165f9081526004602052604081205490036108765750565b5f610880826102f7565b6001600160a01b0383165f908152600560205260408120600101805492935083929091906108af908490610cd2565b90915550506001600160a01b0382165f908152600460205260409020546108d5906106ea565b6001600160a01b0383165f9081526005602052604090205580156104b4575f54604051631878962b60e01b81526001600160a01b03848116600483015290911690631878962b906024015f604051808303815f87803b158015610936575f80fd5b505af1158015610948573d5f803e3d5ffd5b505050508060085f82825461095d9190610cd2565b9091555050600154610979906001600160a01b03168383610a93565b816001600160a01b03167fe8b160e373db99a103e0a2abfa029b9c3fc8b328984a1ead8a65ae68ae646db7826040516109b491815260200190565b60405180910390a25050565b5f610a14826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610ac39092919063ffffffff16565b905080515f1480610a34575080806020019051810190610a349190610d33565b6102f25760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161024c565b6040516001600160a01b0383166024820152604481018290526102f290849063a9059cbb60e01b9060640161074d565b606061037284845f85855f80866001600160a01b03168587604051610ae89190610d70565b5f6040518083038185875af1925050503d805f8114610b22576040519150601f19603f3d011682016040523d82523d5f602084013e610b27565b606091505b5091509150610b3887838387610b43565b979650505050505050565b60608315610bb15782515f03610baa576001600160a01b0385163b610baa5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161024c565b5081610372565b6103728383815115610bc65781518083602001fd5b8060405162461bcd60e51b815260040161024c9190610d8b565b80356001600160a01b0381168114610bf6575f80fd5b919050565b5f60208284031215610c0b575f80fd5b610c1482610be0565b9392505050565b8015158114610c28575f80fd5b50565b5f805f60608486031215610c3d575f80fd5b610c4684610be0565b9250602084013591506040840135610c5d81610c1b565b809150509250925092565b5f60208284031215610c78575f80fd5b5035919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561071357610713610c7f565b5f60208284031215610cb6575f80fd5b5051919050565b5f81610ccb57610ccb610c7f565b505f190190565b8082018082111561071357610713610c7f565b5f60018201610cf657610cf6610c7f565b5060010190565b808202811582820484141761071357610713610c7f565b5f82610d2e57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215610d43575f80fd5b8151610c1481610c1b565b5f5b83811015610d68578181015183820152602001610d50565b50505f910152565b5f8251610d81818460208701610d4e565b9190910192915050565b602081525f8251806020840152610da9816040850160208701610d4e565b601f01601f1916919091016040019291505056fea164736f6c6343000815000a000000000000000000000000562e362876c8aee4744fc2c6aac8394c312d215d000000000000000000000000562e362876c8aee4744fc2c6aac8394c312d215d
Deployed Bytecode
0x608060405260043610620000eb575f3560e01c8063ac4afa381162000086578063cad473b7116200005e578063cad473b71462000259578063d1af0c7d146200027d578063d88ff1f4146200029e578063f2fde38b14620002c4575f80fd5b8063ac4afa3814620001da578063c87d2f7e146200021e578063c88f8f5b1462000242575f80fd5b806372f702f311620000c657806372f702f314620001505780638da5cb5b146200018e578063926053ee14620001ac578063a38dcbd014620001b6575f80fd5b80631324968d14620000ef578063485c686f1462000115578063715018a61462000139575b5f80fd5b348015620000fb575f80fd5b50620001136200010d366004620012ff565b620002e8565b005b34801562000121575f80fd5b5062000113620001333660046200141e565b620003dd565b34801562000145575f80fd5b5062000113620004f6565b3480156200015c575f80fd5b5060015462000171906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200019a575f80fd5b505f546001600160a01b031662000171565b620001136200050d565b348015620001c2575f80fd5b5062000113620001d436600462001494565b6200074a565b348015620001e6575f80fd5b50620001fe620001f836600462001494565b62000875565b604080516001600160a01b03909316835260208301919091520162000185565b3480156200022a575f80fd5b50620001136200023c36600462001494565b620008ac565b3480156200024e575f80fd5b506200011362000bc5565b34801562000265575f80fd5b506200011362000277366004620012ff565b62000c76565b34801562000289575f80fd5b5060025462000171906001600160a01b031681565b348015620002aa575f80fd5b50620002b562000d47565b604051620001859190620014ac565b348015620002d0575f80fd5b5062000113620002e23660046200151a565b62000dbc565b620002f262000e38565b5f60038190555b815181101562000394578181815181106200031857620003186200153f565b602002602001015160035f82825462000332919062001567565b925050819055508181815181106200034e576200034e6200153f565b6020026020010151600482815481106200036c576200036c6200153f565b5f918252602090912060016002909202010155806200038b8162001583565b915050620002f9565b506127106003541115620003da5760405162461bcd60e51b81526020600482015260086024820152676c7465203130302560c01b60448201526064015b60405180910390fd5b50565b620003e762000e38565b61271081600354620003fa919062001567565b1115620004305760405162461bcd60e51b815260206004820152600360248201526209a82b60eb1b6044820152606401620003d1565b8060035f82825462000443919062001567565b909155505060408051808201918290526001546002546004938392899289926001600160a01b03928316929091169089906200047f90620012a9565b6200048f959493929190620015ef565b604051809103905ff080158015620004a9573d5f803e3d5ffd5b506001600160a01b0390811682526020918201949094528254600180820185555f94855293829020835160029092020180546001600160a01b031916919095161784550151910155505050565b6200050062000e38565b6200050b5f62000e93565b565b5f3411620005445760405162461bcd60e51b815260206004820152600360248201526208aa8960eb1b6044820152606401620003d1565b5f805b600454811015620006ab575f600482815481106200056957620005696200153f565b5f918252602091829020600290910201546040805163f96a574b60e01b815290516001600160a01b039092169263f96a574b926004808401938290030181865afa158015620005ba573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620005e091906200163c565b90505f83905061271060048481548110620005ff57620005ff6200153f565b905f5260205f20906002020160010154346200061c91906200165a565b62000628919062001674565b62000634908562001567565b93506001600160a01b03821663152111f762000651838762001694565b6040518263ffffffff1660e01b81526004015f604051808303818588803b1580156200067b575f80fd5b505af11580156200068e573d5f803e3d5ffd5b505050505050508080620006a29062001583565b91505062000547565b505f620006b9823462001694565b9050801562000746576040515f90339083908381818185875af1925050503d805f811462000703576040519150601f19603f3d011682016040523d82523d5f602084013e62000708565b606091505b5050905080620007445760405162461bcd60e51b815260206004820152600660248201526514915195539160d21b6044820152606401620003d1565b505b5050565b6200075462000e38565b5f600482815481106200076b576200076b6200153f565b5f91825260208083206040805180820190915260029093020180546001600160a01b03168352600101549082018190526003805492945090929091620007b390849062001694565b909155505060048054620007ca9060019062001694565b81548110620007dd57620007dd6200153f565b905f5260205f20906002020160048381548110620007ff57620007ff6200153f565b5f9182526020909120825460029092020180546001600160a01b0319166001600160a01b0390921691909117815560019182015491015560048054806200084a576200084a620016aa565b5f8281526020812060025f199093019283020180546001600160a01b03191681556001015590555050565b6004818154811062000885575f80fd5b5f918252602090912060029091020180546001909101546001600160a01b03909116915082565b6002546040516370a0823160e01b81523060048201525f916001600160a01b0316906370a0823190602401602060405180830381865afa158015620008f3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620009199190620016be565b905062000935336002546001600160a01b031690308562000ee2565b6002546040516370a0823160e01b81523060048201525f9183916001600160a01b03909116906370a0823190602401602060405180830381865afa15801562000980573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620009a69190620016be565b620009b2919062001694565b90505f5b60045481101562000b1f575f60048281548110620009d857620009d86200153f565b5f9182526020918290206002909102015460408051634216ff9d60e01b815290516001600160a01b0390921692634216ff9d926004808401938290030181865afa15801562000a29573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000a4f91906200163c565b90505f6127106004848154811062000a6b5762000a6b6200153f565b905f5260205f209060020201600101548562000a8891906200165a565b62000a94919062001674565b60025490915062000ab0906001600160a01b0316838362000f4f565b6040516345efb3f960e11b8152600481018290526001600160a01b03831690638bdf67f2906024015f604051808303815f87803b15801562000af0575f80fd5b505af115801562000b03573d5f803e3d5ffd5b505050505050808062000b169062001583565b915050620009b6565b506002546040516370a0823160e01b81523060048201525f9184916001600160a01b03909116906370a0823190602401602060405180830381865afa15801562000b6b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000b919190620016be565b62000b9d919062001694565b9050801562000bbf5762000bbf336002546001600160a01b0316908362001000565b50505050565b62000bcf62000e38565b5f5b60045481101562000c6b576004818154811062000bf25762000bf26200153f565b5f9182526020822060029091020154604080516338a80c5360e11b815290516001600160a01b039092169263715018a69260048084019382900301818387803b15801562000c3e575f80fd5b505af115801562000c51573d5f803e3d5ffd5b50505050808062000c629062001583565b91505062000bd1565b506200050b620004f6565b62000c8062000e38565b5f5b815181101562000746576004818154811062000ca25762000ca26200153f565b5f91825260209091206002909102015482516001600160a01b03909116906349067f759084908490811062000cdb5762000cdb6200153f565b60200260200101516040518263ffffffff1660e01b815260040162000d0291815260200190565b5f604051808303815f87803b15801562000d1a575f80fd5b505af115801562000d2d573d5f803e3d5ffd5b50505050808062000d3e9062001583565b91505062000c82565b60606004805480602002602001604051908101604052809291908181526020015f905b8282101562000db3575f848152602090819020604080518082019091526002850290910180546001600160a01b0316825260019081015482840152908352909201910162000d6a565b50505050905090565b62000dc662000e38565b6001600160a01b03811662000e2d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620003d1565b620003da8162000e93565b5f546001600160a01b031633146200050b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003d1565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040516001600160a01b038085166024830152831660448201526064810182905262000bbf9085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915262001032565b604051636eb1769f60e11b81523060048201526001600160a01b0383811660248301525f919085169063dd62ed3e90604401602060405180830381865afa15801562000f9d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000fc39190620016be565b905062000bbf8463095ea7b360e01b8562000fdf868662001567565b6040516001600160a01b039092166024830152604482015260640162000f17565b6040516001600160a01b0383166024820152604481018290526200074490849063a9059cbb60e01b9060640162000f17565b5f62001088826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166200110c9092919063ffffffff16565b905080515f1480620010ab575080806020019051810190620010ab9190620016d6565b620007445760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401620003d1565b60606200111c84845f8562001124565b949350505050565b606082471015620011875760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401620003d1565b5f80866001600160a01b03168587604051620011a49190620016f7565b5f6040518083038185875af1925050503d805f8114620011e0576040519150601f19603f3d011682016040523d82523d5f602084013e620011e5565b606091505b5091509150620011f88783838762001203565b979650505050505050565b60608315620012765782515f036200126e576001600160a01b0385163b6200126e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401620003d1565b50816200111c565b6200111c83838151156200128d5781518083602001fd5b8060405162461bcd60e51b8152600401620003d1919062001714565b613408806200172983390190565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f1916810167ffffffffffffffff81118282101715620012f757620012f7620012b7565b604052919050565b5f602080838503121562001311575f80fd5b823567ffffffffffffffff8082111562001329575f80fd5b818501915085601f8301126200133d575f80fd5b813581811115620013525762001352620012b7565b8060051b915062001365848301620012cb565b81815291830184019184810190888411156200137f575f80fd5b938501935b838510156200139f5784358252938501939085019062001384565b98975050505050505050565b5f82601f830112620013bb575f80fd5b813567ffffffffffffffff811115620013d857620013d8620012b7565b620013ed601f8201601f1916602001620012cb565b81815284602083860101111562001402575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f806080858703121562001432575f80fd5b843567ffffffffffffffff808211156200144a575f80fd5b6200145888838901620013ab565b955060208701359150808211156200146e575f80fd5b506200147d87828801620013ab565b949794965050505060408301359260600135919050565b5f60208284031215620014a5575f80fd5b5035919050565b602080825282518282018190525f919060409081850190868401855b82811015620014f857815180516001600160a01b03168552860151868501529284019290850190600101620014c8565b5091979650505050505050565b6001600160a01b0381168114620003da575f80fd5b5f602082840312156200152b575f80fd5b8135620015388162001505565b9392505050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b808201808211156200157d576200157d62001553565b92915050565b5f6001820162001597576200159762001553565b5060010190565b5f5b83811015620015ba578181015183820152602001620015a0565b50505f910152565b5f8151808452620015db8160208601602086016200159e565b601f01601f19169290920160200192915050565b60a081525f6200160360a0830188620015c2565b8281036020840152620016178188620015c2565b6001600160a01b03968716604085015294909516606083015250608001529392505050565b5f602082840312156200164d575f80fd5b8151620015388162001505565b80820281158282048414176200157d576200157d62001553565b5f826200168f57634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156200157d576200157d62001553565b634e487b7160e01b5f52603160045260245ffd5b5f60208284031215620016cf575f80fd5b5051919050565b5f60208284031215620016e7575f80fd5b8151801515811462001538575f80fd5b5f82516200170a8184602087016200159e565b9190910192915050565b602081525f620015386020830184620015c256fe60e060405234801562000010575f80fd5b50604051620034083803806200340883398101604081905262000033916200026c565b848460036200004383826200038b565b5060046200005282826200038b565b5050506200006f620000696200012160201b60201c565b62000125565b6001600160a01b03831660805260405130906200008c9062000176565b6001600160a01b039091168152602001604051809103905ff080158015620000b6573d5f803e3d5ffd5b506001600160a01b031660a05260405130908390620000d59062000184565b6001600160a01b03928316815291166020820152604001604051809103905ff08015801562000106573d5f803e3d5ffd5b506001600160a01b031660c052600655506200045392505050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b610adf8062001aa383390190565b610e86806200258283390190565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112620001b6575f80fd5b81516001600160401b0380821115620001d357620001d362000192565b604051601f8301601f19908116603f01168101908282118183101715620001fe57620001fe62000192565b816040528381526020925086838588010111156200021a575f80fd5b5f91505b838210156200023d57858201830151818301840152908201906200021e565b5f93810190920192909252949350505050565b80516001600160a01b038116811462000267575f80fd5b919050565b5f805f805f60a0868803121562000281575f80fd5b85516001600160401b038082111562000298575f80fd5b620002a689838a01620001a6565b96506020880151915080821115620002bc575f80fd5b50620002cb88828901620001a6565b945050620002dc6040870162000250565b9250620002ec6060870162000250565b9150608086015190509295509295909350565b600181811c908216806200031457607f821691505b6020821081036200033357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000386575f81815260208120601f850160051c81016020861015620003615750805b601f850160051c820191505b8181101562000382578281556001016200036d565b5050505b505050565b81516001600160401b03811115620003a757620003a762000192565b620003bf81620003b88454620002ff565b8462000339565b602080601f831160018114620003f5575f8415620003dd5750858301515b5f19600386901b1c1916600185901b17855562000382565b5f85815260208120601f198616915b82811015620004255788860151825594840194600190910190840162000404565b50858210156200044357878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a05160c0516115ed620004b65f395f818161023c0152818161044601528181610f5f01526110b701525f81816103460152818161041401528181610eae015261100701525f8181610151015281816104f8015261064101526115ed5ff3fe608060405234801561000f575f80fd5b5060043610610148575f3560e01c806365a1f3c3116100bf578063a457c2d711610079578063a457c2d7146102e2578063a694fc3a146102f5578063a9059cbb14610308578063dd62ed3e1461031b578063f2fde38b1461032e578063f96a574b14610341575f80fd5b806365a1f3c31461027157806370a082311461027a578063715018a6146102a257806377ffd593146102aa5780638da5cb5b146102c957806395d89b41146102da575f80fd5b806323b872dd1161011057806323b872dd146101ef5780632e17de7814610202578063313ce5671461021557806339509351146102245780634216ff9d1461023757806349067f751461025e575f80fd5b80630479d6441461014c57806306fdde0314610190578063095ea7b3146101a557806318160ddd146101c85780631878962b146101da575b5f80fd5b6101737f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b610198610368565b6040516101879190611416565b6101b86101b3366004611463565b6103f8565b6040519015158152602001610187565b6002545b604051908152602001610187565b6101ed6101e836600461148b565b610411565b005b6101b86101fd3660046114ab565b6104c6565b6101ed6102103660046114e4565b6104e9565b60405160098152602001610187565b6101b8610232366004611463565b610560565b6101737f000000000000000000000000000000000000000000000000000000000000000081565b6101ed61026c3660046114e4565b610581565b6101cc60065481565b6101cc61028836600461148b565b6001600160a01b03165f9081526020819052604090205490565b6101ed61058e565b6101cc6102b836600461148b565b60076020525f908152604090205481565b6005546001600160a01b0316610173565b6101986105a1565b6101b86102f0366004611463565b6105b0565b6101ed6103033660046114e4565b61062a565b6101b8610316366004611463565b6106ad565b6101cc6103293660046114fb565b6106ba565b6101ed61033c36600461148b565b6106e4565b6101737f000000000000000000000000000000000000000000000000000000000000000081565b6060600380546103779061152c565b80601f01602080910402602001604051908101604052809291908181526020018280546103a39061152c565b80156103ee5780601f106103c5576101008083540402835291602001916103ee565b820191905f5260205f20905b8154815290600101906020018083116103d157829003601f168201915b5050505050905090565b5f3361040581858561075d565b60019150505b92915050565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614806104705750337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316145b6104ab5760405162461bcd60e51b81526020600482015260076024820152665245574152445360c81b60448201526064015b60405180910390fd5b6001600160a01b03165f908152600760205260409020429055565b5f336104d3858285610880565b6104de8585856108f8565b506001949350505050565b6104f33382610aa0565b6105277f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163383610bdb565b60405181815233907f85082129d87b2fe11527cb1b3b7a520aeb5aa6913f88a3d8757fe40d1db02fdd906020015b60405180910390a250565b5f3361040581858561057283836106ba565b61057c9190611564565b61075d565b610589610c3e565b600655565b610596610c3e565b61059f5f610c98565b565b6060600480546103779061152c565b5f33816105bd82866106ba565b90508381101561061d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104a2565b6104de828686840361075d565b335f818152600760205260409020429055610671907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316903084610ce9565b61067b3382610d21565b60405181815233907febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a90602001610555565b5f336104058185856108f8565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6106ec610c3e565b6001600160a01b0381166107515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104a2565b61075a81610c98565b50565b6001600160a01b0383166107bf5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104a2565b6001600160a01b0382166108205760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104a2565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61088b84846106ba565b90505f1981146108f257818110156108e55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104a2565b6108f2848484840361075d565b50505050565b6001600160a01b03831661095c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104a2565b6001600160a01b0382166109be5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104a2565b6001600160a01b0383165f9081526020819052604090205481811015610a355760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104a2565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108f2848484610de9565b6001600160a01b038216610b005760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104a2565b6001600160a01b0382165f9081526020819052604090205481811015610b735760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104a2565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610bd6835f84610de9565b505050565b6040516001600160a01b038316602482015260448101829052610bd690849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611197565b6005546001600160a01b0316331461059f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104a2565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6040516001600160a01b03808516602483015283166044820152606481018290526108f29085906323b872dd60e01b90608401610c07565b6001600160a01b038216610d775760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104a2565b8060025f828254610d889190611564565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610de55f8383610de9565b5050565b6001600160a01b03831615801590610e0c57506001600160a01b03831661dead14155b15610fc8576001600160a01b0383165f908152600760205260408120541580610e5857506006546001600160a01b0385165f90815260076020526040902054610e559190611564565b42105b90508015610e975760405162461bcd60e51b815260206004820152600c60248201526b4541524c59554e5354414b4560a01b60448201526064016104a2565b6040516329cc05cf60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906329cc05cf90610ee89087908690600190600401611583565b5f604051808303815f87803b158015610eff575f80fd5b505af1925050508015610f10575060015b610f48576040516001600160a01b038516907ffa39add39f2e26e397e50148e2f230f912c11e87bbd59a62ee215cf109bee5e0905f90a25b6040516329cc05cf60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906329cc05cf90610f999087908690600190600401611583565b5f604051808303815f87803b158015610fb0575f80fd5b505af1158015610fc2573d5f803e3d5ffd5b50505050505b6001600160a01b03821615801590610feb57506001600160a01b03821661dead14155b15610bd6576040516329cc05cf60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906329cc05cf9061104090859085905f90600401611583565b5f604051808303815f87803b158015611057575f80fd5b505af1925050508015611068575060015b6110a0576040516001600160a01b038316907f81c3373a2f115ceb117c3799e33f6b9e0a42dcbec8c02bd648cc835861d4664b905f90a25b6040516329cc05cf60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906329cc05cf906110f090859085905f90600401611583565b5f604051808303815f87803b158015611107575f80fd5b505af1158015611119573d5f803e3d5ffd5b505050506001600160a01b038281165f9081526007602052604080822054928616825290205411611161576001600160a01b0382165f9081526007602052604090205461117a565b6001600160a01b0383165f908152600760205260409020545b6001600160a01b0383165f90815260076020526040902055505050565b5f6111eb826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661126a9092919063ffffffff16565b905080515f148061120b57508080602001905181019061120b91906115a6565b610bd65760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016104a2565b606061127884845f85611280565b949350505050565b6060824710156112e15760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016104a2565b5f80866001600160a01b031685876040516112fc91906115c5565b5f6040518083038185875af1925050503d805f8114611336576040519150601f19603f3d011682016040523d82523d5f602084013e61133b565b606091505b509150915061134c87838387611357565b979650505050505050565b606083156113c55782515f036113be576001600160a01b0385163b6113be5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016104a2565b5081611278565b61127883838151156113da5781518083602001fd5b8060405162461bcd60e51b81526004016104a29190611416565b5f5b8381101561140e5781810151838201526020016113f6565b50505f910152565b602081525f82518060208401526114348160408501602087016113f4565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461145e575f80fd5b919050565b5f8060408385031215611474575f80fd5b61147d83611448565b946020939093013593505050565b5f6020828403121561149b575f80fd5b6114a482611448565b9392505050565b5f805f606084860312156114bd575f80fd5b6114c684611448565b92506114d460208501611448565b9150604084013590509250925092565b5f602082840312156114f4575f80fd5b5035919050565b5f806040838503121561150c575f80fd5b61151583611448565b915061152360208401611448565b90509250929050565b600181811c9082168061154057607f821691505b60208210810361155e57634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561040b57634e487b7160e01b5f52601160045260245ffd5b6001600160a01b0393909316835260208301919091521515604082015260600190565b5f602082840312156115b6575f80fd5b815180151581146114a4575f80fd5b5f82516115d68184602087016113f4565b919091019291505056fea164736f6c6343000815000a608060405234801561000f575f80fd5b50604051610adf380380610adf83398101604081905261002e91610052565b5f80546001600160a01b0319166001600160a01b039290921691909117905561007f565b5f60208284031215610062575f80fd5b81516001600160a01b0381168114610078575f80fd5b9392505050565b610a538061008c5f395ff3fe60806040526004361061009d575f3560e01c806389d969171161006257806389d969171461017d578063b88a802f1461019c578063bff1f9e1146101b0578063ce7c2ac2146101c5578063efca2eed146101f0578063ff50abdc14610205575f80fd5b80630700037d146100b1578063152111f7146100fd57806329cc05cf146101055780633a98ef3914610124578063427e440d14610147575f80fd5b366100ad576100ab3461021a565b005b5f80fd5b3480156100bc575f80fd5b506100e36100cb366004610948565b60046020525f90815260409020805460019091015482565b604080519283526020830191909152015b60405180910390f35b6100ab61031e565b348015610110575f80fd5b506100ab61011f366004610968565b610329565b34801561012f575f80fd5b5061013960025481565b6040519081526020016100f4565b348015610152575f80fd5b505f54610165906001600160a01b031681565b6040516001600160a01b0390911681526020016100f4565b348015610188575f80fd5b50610139610197366004610948565b610383565b3480156101a7575f80fd5b506100ab610406565b3480156101bb575f80fd5b5061013960015481565b3480156101d0575f80fd5b506101396101df366004610948565b60036020525f908152604090205481565b3480156101fb575f80fd5b5061013960065481565b348015610210575f80fd5b5061013960075481565b5f81116102595760405162461bcd60e51b815260206004820152600860248201526704445504f534954360c41b60448201526064015b60405180910390fd5b5f600254116102955760405162461bcd60e51b81526020600482015260086024820152674445504f5349543160c01b6044820152606401610250565b8060075f8282546102a691906109bd565b90915550506002546102c7826ec097ce7bc90715b34b9f10000000006109d0565b6102d191906109e7565b60055f8282546102e191906109bd565b909155505060405181815233907fb9ad861b752f80117b35bea6dec99933d8a5ae360f2839ee8784b750d56134099060200160405180910390a250565b6103273461021a565b565b5f546001600160a01b0316336001600160a01b0316146103735760405162461bcd60e51b81526020600482015260056024820152642a27a5a2a760d91b6044820152606401610250565b61037e838383610444565b505050565b6001600160a01b0381165f9081526003602052604081205481036103a857505f919050565b6001600160a01b0382165f908152600360205260408120546103c9906104e1565b6001600160a01b0384165f908152600460205260409020549091508082116103f457505f9392505050565b6103fe8183610a06565b949350505050565b61040f33610510565b6040805133815290517f63e32091e4445d16e29c33a6b264577c2d86694021aa4e6f4dd590048f5792e89181900360200190a1565b801561049c576104548383610730565b826001600160a01b03167fae0577e1c96b26fbc0b9df702431f5470979d001d24f136eded791b8b6521d6f8360405161048f91815260200190565b60405180910390a2505050565b6104a68383610873565b826001600160a01b03167fba8f3777cf908803bf1f3dd58e7f4b7d3de4dbe3c234c4ccab0975d98f7cd3888360405161048f91815260200190565b5f6ec097ce7bc90715b34b9f10000000006005548361050091906109d0565b61050a91906109e7565b92915050565b6001600160a01b0381165f9081526003602052604081205490036105315750565b5f61053b82610383565b6001600160a01b0383165f9081526004602052604081206001018054929350839290919061056a9084906109bd565b90915550506001600160a01b0382165f90815260036020526040902054610590906104e1565b6001600160a01b0383165f90815260046020526040902055801561072c575f54604051631878962b60e01b81526001600160a01b03848116600483015290911690631878962b906024015f604051808303815f87803b1580156105f1575f80fd5b505af1158015610603573d5f803e3d5ffd5b505050508060065f82825461061891906109bd565b909155505060405147905f906001600160a01b0385169084908381818185875af1925050503d805f8114610667576040519150601f19603f3d011682016040523d82523d5f602084013e61066c565b606091505b50509050806106a55760405162461bcd60e51b8152602060048201526005602482015264044495354360dc1b6044820152606401610250565b6106af8383610a06565b4710156106e65760405162461bcd60e51b8152602060048201526005602482015264444953543160d81b6044820152606401610250565b836001600160a01b03167fe8b160e373db99a103e0a2abfa029b9c3fc8b328984a1ead8a65ae68ae646db78460405161072191815260200190565b60405180910390a250505b5050565b6001600160a01b0382165f908152600360205260409020541580159061076d57506001600160a01b0382165f908152600360205260409020548111155b6107a25760405162461bcd60e51b815260206004820152600660248201526552454d4f564560d01b6044820152606401610250565b5f6107ac83610383565b905080156107bd576107bd8161021a565b8160025f8282546107ce9190610a06565b90915550506001600160a01b0383165f90815260036020526040812080548492906107fa908490610a06565b90915550506001600160a01b0383165f9081526003602052604081205490036108325760018054905f61082c83610a19565b91905055505b6001600160a01b0383165f90815260036020526040902054610853906104e1565b6001600160a01b039093165f908152600460205260409020929092555050565b6001600160a01b0382165f90815260036020526040902054156108995761089982610510565b6001600160a01b0382165f9081526003602052604081205460028054919284926108c49084906109bd565b90915550506001600160a01b0383165f90815260036020526040812080548492906108f09084906109bd565b90915550508015801561091957506001600160a01b0383165f9081526003602052604090205415155b156108325760018054905f61082c83610a2e565b80356001600160a01b0381168114610943575f80fd5b919050565b5f60208284031215610958575f80fd5b6109618261092d565b9392505050565b5f805f6060848603121561097a575f80fd5b6109838461092d565b9250602084013591506040840135801515811461099e575f80fd5b809150509250925092565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561050a5761050a6109a9565b808202811582820484141761050a5761050a6109a9565b5f82610a0157634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561050a5761050a6109a9565b5f81610a2757610a276109a9565b505f190190565b5f60018201610a3f57610a3f6109a9565b506001019056fea164736f6c6343000815000a6080604052600a600655348015610014575f80fd5b50604051610e86380380610e868339810160408190526100339161007e565b5f80546001600160a01b039384166001600160a01b031991821617909155600180549290931691161790556100af565b80516001600160a01b0381168114610079575f80fd5b919050565b5f806040838503121561008f575f80fd5b61009883610063565b91506100a660208401610063565b90509250929050565b610dca806100bc5f395ff3fe608060405234801561000f575f80fd5b50600436106100cb575f3560e01c80639c1454d411610088578063ba32722e11610063578063ba32722e14610184578063bde30818146101a3578063ce7c2ac2146101cd578063d1af0c7d146101ec575f80fd5b80639c1454d41461016a578063a95ae7eb14610173578063b88a802f1461017c575f80fd5b80630700037d146100cf57806329cc05cf1461010f5780633a98ef3914610124578063869890381461013b57806389d96917146101445780638bdf67f214610157575b5f80fd5b6100f56100dd366004610bfb565b60056020525f90815260409020805460019091015482565b604080519283526020830191909152015b60405180910390f35b61012261011d366004610c2b565b6101ff565b005b61012d60025481565b604051908152602001610106565b61012d60035481565b61012d610152366004610bfb565b6102f7565b610122610165366004610c68565b61037a565b61012d60085481565b61012d60095481565b6101226104b8565b61012d610192366004610c68565b600a6020525f908152604090205481565b5f546101b5906001600160a01b031681565b6040516001600160a01b039091168152602001610106565b61012d6101db366004610bfb565b60046020525f908152604090205481565b6001546101b5906001600160a01b031681565b5f546001600160a01b0316336001600160a01b0316146102555760405162461bcd60e51b815260206004820152600c60248201526b15539055551213d49256915160a21b60448201526064015b60405180910390fd5b80156102ad5761026583836104ed565b826001600160a01b03167fae0577e1c96b26fbc0b9df702431f5470979d001d24f136eded791b8b6521d6f836040516102a091815260200190565b60405180910390a2505050565b6102b78383610630565b826001600160a01b03167fba8f3777cf908803bf1f3dd58e7f4b7d3de4dbe3c234c4ccab0975d98f7cd388836040516102a091815260200190565b505050565b6001600160a01b0381165f90815260046020526040812054810361031c57505f919050565b6001600160a01b0382165f9081526004602052604081205461033d906106ea565b6001600160a01b0384165f9081526005602052604090205490915080821161036857505f9392505050565b6103728183610c93565b949350505050565b5f81116103b15760405162461bcd60e51b8152602060048201526005602482015264444550414d60d81b604482015260640161024c565b6001546040516370a0823160e01b81523060048201525f916001600160a01b0316906370a0823190602401602060405180830381865afa1580156103f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061041b9190610ca6565b9050610435336001546001600160a01b0316903085610719565b6001546040516370a0823160e01b81523060048201526104b49183916001600160a01b03909116906370a0823190602401602060405180830381865afa158015610481573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a59190610ca6565b6104af9190610c93565b61078a565b5050565b6104c133610855565b60405133907f63e32091e4445d16e29c33a6b264577c2d86694021aa4e6f4dd590048f5792e8905f90a2565b6001600160a01b0382165f908152600460205260409020541580159061052a57506001600160a01b0382165f908152600460205260409020548111155b61055f5760405162461bcd60e51b815260206004820152600660248201526552454d4f564560d01b604482015260640161024c565b5f610569836102f7565b9050801561057a5761057a8161078a565b8160025f82825461058b9190610c93565b90915550506001600160a01b0383165f90815260046020526040812080548492906105b7908490610c93565b90915550506001600160a01b0383165f9081526004602052604081205490036105ef5760038054905f6105e983610cbd565b91905055505b6001600160a01b0383165f90815260046020526040902054610610906106ea565b6001600160a01b039093165f908152600560205260409020929092555050565b6001600160a01b0382165f90815260046020526040902054156106565761065682610855565b6001600160a01b0382165f908152600460205260408120546002805491928492610681908490610cd2565b90915550506001600160a01b0383165f90815260046020526040812080548492906106ad908490610cd2565b9091555050801580156106d657506001600160a01b0383165f9081526004602052604090205415155b156105ef5760038054905f6105e983610ce5565b5f6ec097ce7bc90715b34b9f1000000000600754836107099190610cfd565b6107139190610d14565b92915050565b6040516001600160a01b03808516602483015283166044820152606481018290526107849085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526109c0565b50505050565b5f8111801561079a57505f600254115b6107cc5760405162461bcd60e51b815260206004820152600360248201526215905360ea1b604482015260640161024c565b8060095f8282546107dd9190610cd2565b90915550506002546107fe826ec097ce7bc90715b34b9f1000000000610cfd565b6108089190610d14565b60075f8282546108189190610cd2565b909155505060405181815233907fb9ad861b752f80117b35bea6dec99933d8a5ae360f2839ee8784b750d56134099060200160405180910390a250565b6001600160a01b0381165f9081526004602052604081205490036108765750565b5f610880826102f7565b6001600160a01b0383165f908152600560205260408120600101805492935083929091906108af908490610cd2565b90915550506001600160a01b0382165f908152600460205260409020546108d5906106ea565b6001600160a01b0383165f9081526005602052604090205580156104b4575f54604051631878962b60e01b81526001600160a01b03848116600483015290911690631878962b906024015f604051808303815f87803b158015610936575f80fd5b505af1158015610948573d5f803e3d5ffd5b505050508060085f82825461095d9190610cd2565b9091555050600154610979906001600160a01b03168383610a93565b816001600160a01b03167fe8b160e373db99a103e0a2abfa029b9c3fc8b328984a1ead8a65ae68ae646db7826040516109b491815260200190565b60405180910390a25050565b5f610a14826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610ac39092919063ffffffff16565b905080515f1480610a34575080806020019051810190610a349190610d33565b6102f25760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161024c565b6040516001600160a01b0383166024820152604481018290526102f290849063a9059cbb60e01b9060640161074d565b606061037284845f85855f80866001600160a01b03168587604051610ae89190610d70565b5f6040518083038185875af1925050503d805f8114610b22576040519150601f19603f3d011682016040523d82523d5f602084013e610b27565b606091505b5091509150610b3887838387610b43565b979650505050505050565b60608315610bb15782515f03610baa576001600160a01b0385163b610baa5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161024c565b5081610372565b6103728383815115610bc65781518083602001fd5b8060405162461bcd60e51b815260040161024c9190610d8b565b80356001600160a01b0381168114610bf6575f80fd5b919050565b5f60208284031215610c0b575f80fd5b610c1482610be0565b9392505050565b8015158114610c28575f80fd5b50565b5f805f60608486031215610c3d575f80fd5b610c4684610be0565b9250602084013591506040840135610c5d81610c1b565b809150509250925092565b5f60208284031215610c78575f80fd5b5035919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561071357610713610c7f565b5f60208284031215610cb6575f80fd5b5051919050565b5f81610ccb57610ccb610c7f565b505f190190565b8082018082111561071357610713610c7f565b5f60018201610cf657610cf6610c7f565b5060010190565b808202811582820484141761071357610713610c7f565b5f82610d2e57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215610d43575f80fd5b8151610c1481610c1b565b5f5b83811015610d68578181015183820152602001610d50565b50505f910152565b5f8251610d81818460208701610d4e565b9190910192915050565b602081525f8251806020840152610da9816040850160208701610d4e565b601f01601f1916919091016040019291505056fea164736f6c6343000815000aa164736f6c6343000815000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000562e362876c8aee4744fc2c6aac8394c312d215d000000000000000000000000562e362876c8aee4744fc2c6aac8394c312d215d
-----Decoded View---------------
Arg [0] : _stakingToken (address): 0x562E362876c8Aee4744FC2c6aaC8394C312d215d
Arg [1] : _rewardsToken (address): 0x562E362876c8Aee4744FC2c6aaC8394C312d215d
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000562e362876c8aee4744fc2c6aac8394c312d215d
Arg [1] : 000000000000000000000000562e362876c8aee4744fc2c6aac8394c312d215d
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.