Source Code
Latest 25 from a total of 804 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Unstake | 23303035 | 60 days ago | IN | 0 ETH | 0.00016164 | ||||
| Unstake | 23041764 | 97 days ago | IN | 0 ETH | 0.00062645 | ||||
| Unstake | 23002487 | 102 days ago | IN | 0 ETH | 0.0006259 | ||||
| Claim | 22996143 | 103 days ago | IN | 0 ETH | 0.00018849 | ||||
| Unstake | 22953703 | 109 days ago | IN | 0 ETH | 0.00070878 | ||||
| Unstake | 22757502 | 137 days ago | IN | 0 ETH | 0.00018438 | ||||
| Unstake | 21463927 | 317 days ago | IN | 0 ETH | 0.00139442 | ||||
| Unstake | 21408489 | 325 days ago | IN | 0 ETH | 0.00248985 | ||||
| Unstake | 21359994 | 332 days ago | IN | 0 ETH | 0.00285374 | ||||
| Unstake | 21337135 | 335 days ago | IN | 0 ETH | 0.00482009 | ||||
| Unstake | 20726824 | 420 days ago | IN | 0 ETH | 0.00067109 | ||||
| Unstake | 20484453 | 454 days ago | IN | 0 ETH | 0.00485565 | ||||
| Unstake | 20243356 | 488 days ago | IN | 0 ETH | 0.00047486 | ||||
| Unstake | 20172106 | 498 days ago | IN | 0 ETH | 0.00057135 | ||||
| Transfer Ownersh... | 19703433 | 563 days ago | IN | 0 ETH | 0.00022582 | ||||
| Transfer Control | 19703419 | 563 days ago | IN | 0 ETH | 0.00045401 | ||||
| Unstake | 19511291 | 590 days ago | IN | 0 ETH | 0.00352788 | ||||
| Unstake | 19487398 | 594 days ago | IN | 0 ETH | 0.00461491 | ||||
| Withdraw | 19428392 | 602 days ago | IN | 0 ETH | 0.00378287 | ||||
| Unstake | 19428043 | 602 days ago | IN | 0 ETH | 0.02329423 | ||||
| Unstake | 19369953 | 610 days ago | IN | 0 ETH | 0.02813664 | ||||
| Unstake | 19340344 | 614 days ago | IN | 0 ETH | 0.01070018 | ||||
| Unstake | 19337262 | 615 days ago | IN | 0 ETH | 0.01105972 | ||||
| Unstake | 19330291 | 616 days ago | IN | 0 ETH | 0.01338347 | ||||
| Unstake | 19287405 | 622 days ago | IN | 0 ETH | 0.00793911 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| - | 14430212 | 1325 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Pool
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 10000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/*
Pool
https://github.com/gysr-io/core
SPDX-License-Identifier: MIT
*/
pragma solidity 0.8.4;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./interfaces/IPool.sol";
import "./interfaces/IPoolFactory.sol";
import "./interfaces/IStakingModule.sol";
import "./interfaces/IRewardModule.sol";
import "./interfaces/IEvents.sol";
import "./OwnerController.sol";
/**
* @title Pool
*
* @notice this implements the GYSR core Pool contract. It supports generalized
* incentive mechanisms through a modular architecture, where
* staking and reward logic is contained in child contracts.
*/
contract Pool is IPool, IEvents, ReentrancyGuard, OwnerController {
using SafeERC20 for IERC20;
// constants
uint256 public constant DECIMALS = 18;
// modules
IStakingModule private immutable _staking;
IRewardModule private immutable _reward;
// gysr fields
IERC20 private immutable _gysr;
IPoolFactory private immutable _factory;
uint256 private _gysrVested;
/**
* @param staking_ the staking module address
* @param reward_ the reward module address
* @param gysr_ address for GYSR token
* @param factory_ address for parent factory
*/
constructor(
address staking_,
address reward_,
address gysr_,
address factory_
) {
_staking = IStakingModule(staking_);
_reward = IRewardModule(reward_);
_gysr = IERC20(gysr_);
_factory = IPoolFactory(factory_);
}
// -- IPool --------------------------------------------------------------
/**
* @inheritdoc IPool
*/
function stakingTokens() external view override returns (address[] memory) {
return _staking.tokens();
}
/**
* @inheritdoc IPool
*/
function rewardTokens() external view override returns (address[] memory) {
return _reward.tokens();
}
/**
* @inheritdoc IPool
*/
function stakingBalances(address user)
external
view
override
returns (uint256[] memory)
{
return _staking.balances(user);
}
/**
* @inheritdoc IPool
*/
function stakingTotals() external view override returns (uint256[] memory) {
return _staking.totals();
}
/**
* @inheritdoc IPool
*/
function rewardBalances()
external
view
override
returns (uint256[] memory)
{
return _reward.balances();
}
/**
* @inheritdoc IPool
*/
function usage() external view override returns (uint256) {
return _reward.usage();
}
/**
* @inheritdoc IPool
*/
function stakingModule() external view override returns (address) {
return address(_staking);
}
/**
* @inheritdoc IPool
*/
function rewardModule() external view override returns (address) {
return address(_reward);
}
/**
* @inheritdoc IPool
*/
function stake(
uint256 amount,
bytes calldata stakingdata,
bytes calldata rewarddata
) external override nonReentrant {
(address account, uint256 shares) =
_staking.stake(msg.sender, amount, stakingdata);
(uint256 spent, uint256 vested) =
_reward.stake(account, msg.sender, shares, rewarddata);
_processGysr(spent, vested);
}
/**
* @inheritdoc IPool
*/
function unstake(
uint256 amount,
bytes calldata stakingdata,
bytes calldata rewarddata
) external override nonReentrant {
(address account, uint256 shares) =
_staking.unstake(msg.sender, amount, stakingdata);
(uint256 spent, uint256 vested) =
_reward.unstake(account, msg.sender, shares, rewarddata);
_processGysr(spent, vested);
}
/**
* @inheritdoc IPool
*/
function claim(
uint256 amount,
bytes calldata stakingdata,
bytes calldata rewarddata
) external override nonReentrant {
(address account, uint256 shares) =
_staking.claim(msg.sender, amount, stakingdata);
(uint256 spent, uint256 vested) =
_reward.claim(account, msg.sender, shares, rewarddata);
_processGysr(spent, vested);
}
/**
* @inheritdoc IPool
*/
function update() external override nonReentrant {
_staking.update(msg.sender);
_reward.update(msg.sender);
}
/**
* @inheritdoc IPool
*/
function clean() external override nonReentrant {
requireController();
_staking.clean();
_reward.clean();
}
/**
* @inheritdoc IPool
*/
function gysrBalance() external view override returns (uint256) {
return _gysrVested;
}
/**
* @inheritdoc IPool
*/
function withdraw(uint256 amount) external override {
requireController();
require(amount > 0, "p1");
require(amount <= _gysrVested, "p2");
// do transfer
_gysr.safeTransfer(msg.sender, amount);
_gysrVested = _gysrVested - amount;
emit GysrWithdrawn(amount);
}
/**
* @notice transfer control of the Pool and modules to another account
* @param newController address of new controller
*/
function transferControl(address newController) public override {
super.transferControl(newController);
_staking.transferControl(newController);
_reward.transferControl(newController);
}
// -- Pool internal -----------------------------------------------------
/**
* @dev private method to process GYSR spending and vesting
* @param spent number of tokens to unstake
* @param vested data passed to staking module
*/
function _processGysr(uint256 spent, uint256 vested) private {
// spending
if (spent > 0) {
_gysr.safeTransferFrom(msg.sender, address(this), spent);
}
// vesting
if (vested > 0) {
uint256 fee = (vested * _factory.fee()) / 10**DECIMALS;
if (fee > 0) {
_gysr.safeTransfer(_factory.treasury(), fee);
}
_gysrVested = _gysrVested + vested - fee;
}
}
}/*
OwnerController
https://github.com/gysr-io/core
SPDX-License-Identifier: MIT
*/
pragma solidity 0.8.4;
/**
* @title Owner controller
*
* @notice this base contract implements an owner-controller access model.
*
* @dev the contract is an adapted version of the OpenZeppelin Ownable contract.
* It allows the owner to designate an additional account as the controller to
* perform restricted operations.
*
* Other changes include supporting role verification with a require method
* in addition to the modifier option, and removing some unneeded functionality.
*
* Original contract here:
* https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol
*/
contract OwnerController {
address private _owner;
address private _controller;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
event ControlTransferred(
address indexed previousController,
address indexed newController
);
constructor() {
_owner = msg.sender;
_controller = msg.sender;
emit OwnershipTransferred(address(0), _owner);
emit ControlTransferred(address(0), _owner);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Returns the address of the current controller.
*/
function controller() public view returns (address) {
return _controller;
}
/**
* @dev Modifier that throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == msg.sender, "oc1");
_;
}
/**
* @dev Modifier that throws if called by any account other than the controller.
*/
modifier onlyController() {
require(_controller == msg.sender, "oc2");
_;
}
/**
* @dev Throws if called by any account other than the owner.
*/
function requireOwner() internal view {
require(_owner == msg.sender, "oc1");
}
/**
* @dev Throws if called by any account other than the controller.
*/
function requireController() internal view {
require(_controller == msg.sender, "oc2");
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`). This can
* include renouncing ownership by transferring to the zero address.
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual {
requireOwner();
require(newOwner != address(0), "oc3");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
/**
* @dev Transfers control of the contract to a new account (`newController`).
* Can only be called by the owner.
*/
function transferControl(address newController) public virtual {
requireOwner();
require(newController != address(0), "oc4");
emit ControlTransferred(_controller, newController);
_controller = newController;
}
}/*
IEvents
https://github.com/gysr-io/core
SPDX-License-Identifier: MIT
*/
pragma solidity 0.8.4;
/**
* @title GYSR event system
*
* @notice common interface to define GYSR event system
*/
interface IEvents {
// staking
event Staked(
address indexed user,
address indexed token,
uint256 amount,
uint256 shares
);
event Unstaked(
address indexed user,
address indexed token,
uint256 amount,
uint256 shares
);
event Claimed(
address indexed user,
address indexed token,
uint256 amount,
uint256 shares
);
// rewards
event RewardsDistributed(
address indexed user,
address indexed token,
uint256 amount,
uint256 shares
);
event RewardsFunded(
address indexed token,
uint256 amount,
uint256 shares,
uint256 timestamp
);
event RewardsUnlocked(address indexed token, uint256 shares);
event RewardsExpired(
address indexed token,
uint256 amount,
uint256 shares,
uint256 timestamp
);
// gysr
event GysrSpent(address indexed user, uint256 amount);
event GysrVested(address indexed user, uint256 amount);
event GysrWithdrawn(uint256 amount);
}/*
IPool
https://github.com/gysr-io/core
SPDX-License-Identifier: MIT
*/
pragma solidity 0.8.4;
/**
* @title Pool interface
*
* @notice this defines the core Pool contract interface
*/
interface IPool {
/**
* @return staking tokens for Pool
*/
function stakingTokens() external view returns (address[] memory);
/**
* @return reward tokens for Pool
*/
function rewardTokens() external view returns (address[] memory);
/**
* @return staking balances for user
*/
function stakingBalances(address user)
external
view
returns (uint256[] memory);
/**
* @return total staking balances for Pool
*/
function stakingTotals() external view returns (uint256[] memory);
/**
* @return reward balances for Pool
*/
function rewardBalances() external view returns (uint256[] memory);
/**
* @return GYSR usage ratio for Pool
*/
function usage() external view returns (uint256);
/**
* @return address of staking module
*/
function stakingModule() external view returns (address);
/**
* @return address of reward module
*/
function rewardModule() external view returns (address);
/**
* @notice stake asset and begin earning rewards
* @param amount number of tokens to unstake
* @param stakingdata data passed to staking module
* @param rewarddata data passed to reward module
*/
function stake(
uint256 amount,
bytes calldata stakingdata,
bytes calldata rewarddata
) external;
/**
* @notice unstake asset and claim rewards
* @param amount number of tokens to unstake
* @param stakingdata data passed to staking module
* @param rewarddata data passed to reward module
*/
function unstake(
uint256 amount,
bytes calldata stakingdata,
bytes calldata rewarddata
) external;
/**
* @notice claim rewards without unstaking
* @param amount number of tokens to claim against
* @param stakingdata data passed to staking module
* @param rewarddata data passed to reward module
*/
function claim(
uint256 amount,
bytes calldata stakingdata,
bytes calldata rewarddata
) external;
/**
* @notice method called ad hoc to update user accounting
*/
function update() external;
/**
* @notice method called ad hoc to clean up and perform additional accounting
*/
function clean() external;
/**
* @return gysr balance available for withdrawal
*/
function gysrBalance() external view returns (uint256);
/**
* @notice withdraw GYSR tokens applied during unstaking
* @param amount number of GYSR to withdraw
*/
function withdraw(uint256 amount) external;
}/*
IPoolFactory
https://github.com/gysr-io/core
SPDX-License-Identifier: MIT
*/
pragma solidity 0.8.4;
/**
* @title Pool factory interface
*
* @notice this defines the Pool factory interface, primarily intended for
* the Pool contract to interact with
*/
interface IPoolFactory {
/**
* @return GYSR treasury address
*/
function treasury() external view returns (address);
/**
* @return GYSR spending fee
*/
function fee() external view returns (uint256);
}/*
IRewardModule
https://github.com/gysr-io/core
SPDX-License-Identifier: MIT
*/
pragma solidity 0.8.4;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./IEvents.sol";
import "../OwnerController.sol";
/**
* @title Reward module interface
*
* @notice this contract defines the common interface that any reward module
* must implement to be compatible with the modular Pool architecture.
*/
abstract contract IRewardModule is OwnerController, IEvents {
// constants
uint256 public constant DECIMALS = 18;
/**
* @return array of reward tokens
*/
function tokens() external view virtual returns (address[] memory);
/**
* @return array of reward token balances
*/
function balances() external view virtual returns (uint256[] memory);
/**
* @return GYSR usage ratio for reward module
*/
function usage() external view virtual returns (uint256);
/**
* @return address of module factory
*/
function factory() external view virtual returns (address);
/**
* @notice perform any necessary accounting for new stake
* @param account address of staking account
* @param user address of user
* @param shares number of new shares minted
* @param data addtional data
* @return amount of gysr spent
* @return amount of gysr vested
*/
function stake(
address account,
address user,
uint256 shares,
bytes calldata data
) external virtual returns (uint256, uint256);
/**
* @notice reward user and perform any necessary accounting for unstake
* @param account address of staking account
* @param user address of user
* @param shares number of shares burned
* @param data additional data
* @return amount of gysr spent
* @return amount of gysr vested
*/
function unstake(
address account,
address user,
uint256 shares,
bytes calldata data
) external virtual returns (uint256, uint256);
/**
* @notice reward user and perform and necessary accounting for existing stake
* @param account address of staking account
* @param user address of user
* @param shares number of shares being claimed against
* @param data addtional data
* @return amount of gysr spent
* @return amount of gysr vested
*/
function claim(
address account,
address user,
uint256 shares,
bytes calldata data
) external virtual returns (uint256, uint256);
/**
* @notice method called by anyone to update accounting
* @param user address of user for update
* @dev will only be called ad hoc and should not contain essential logic
*/
function update(address user) external virtual;
/**
* @notice method called by owner to clean up and perform additional accounting
* @dev will only be called ad hoc and should not contain any essential logic
*/
function clean() external virtual;
}/*
IStakingModule
https://github.com/gysr-io/core
SPDX-License-Identifier: MIT
*/
pragma solidity 0.8.4;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./IEvents.sol";
import "../OwnerController.sol";
/**
* @title Staking module interface
*
* @notice this contract defines the common interface that any staking module
* must implement to be compatible with the modular Pool architecture.
*/
abstract contract IStakingModule is OwnerController, IEvents {
// constants
uint256 public constant DECIMALS = 18;
/**
* @return array of staking tokens
*/
function tokens() external view virtual returns (address[] memory);
/**
* @notice get balance of user
* @param user address of user
* @return balances of each staking token
*/
function balances(address user)
external
view
virtual
returns (uint256[] memory);
/**
* @return address of module factory
*/
function factory() external view virtual returns (address);
/**
* @notice get total staked amount
* @return totals for each staking token
*/
function totals() external view virtual returns (uint256[] memory);
/**
* @notice stake an amount of tokens for user
* @param user address of user
* @param amount number of tokens to stake
* @param data additional data
* @return address of staking account
* @return number of shares minted for stake
*/
function stake(
address user,
uint256 amount,
bytes calldata data
) external virtual returns (address, uint256);
/**
* @notice unstake an amount of tokens for user
* @param user address of user
* @param amount number of tokens to unstake
* @param data additional data
* @return address of staking account
* @return number of shares burned for unstake
*/
function unstake(
address user,
uint256 amount,
bytes calldata data
) external virtual returns (address, uint256);
/**
* @notice quote the share value for an amount of tokens without unstaking
* @param user address of user
* @param amount number of tokens to claim with
* @param data additional data
* @return address of staking account
* @return number of shares that the claim amount is worth
*/
function claim(
address user,
uint256 amount,
bytes calldata data
) external virtual returns (address, uint256);
/**
* @notice method called by anyone to update accounting
* @param user address of user for update
* @dev will only be called ad hoc and should not contain essential logic
*/
function update(address user) external virtual;
/**
* @notice method called by owner to clean up and perform additional accounting
* @dev will only be called ad hoc and should not contain any essential logic
*/
function clean() external virtual;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor () {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and make it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC20.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;
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
// solhint-disable-next-line max-line-length
require((value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
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");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) { // Return data is optional
// solhint-disable-next-line max-line-length
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// solhint-disable-next-line no-inline-assembly
assembly { size := extcodesize(account) }
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain`call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: value }(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}{
"remappings": [],
"optimizer": {
"enabled": true,
"runs": 10000
},
"evmVersion": "istanbul",
"libraries": {},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"staking_","type":"address"},{"internalType":"address","name":"reward_","type":"address"},{"internalType":"address","name":"gysr_","type":"address"},{"internalType":"address","name":"factory_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousController","type":"address"},{"indexed":true,"internalType":"address","name":"newController","type":"address"}],"name":"ControlTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"GysrSpent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"GysrVested","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"GysrWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"RewardsDistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"RewardsExpired","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"RewardsFunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"RewardsUnlocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Unstaked","type":"event"},{"inputs":[],"name":"DECIMALS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"stakingdata","type":"bytes"},{"internalType":"bytes","name":"rewarddata","type":"bytes"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clean","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"controller","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gysrBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardBalances","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardModule","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardTokens","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"stakingdata","type":"bytes"},{"internalType":"bytes","name":"rewarddata","type":"bytes"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"stakingBalances","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingModule","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingTokens","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingTotals","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newController","type":"address"}],"name":"transferControl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"stakingdata","type":"bytes"},{"internalType":"bytes","name":"rewarddata","type":"bytes"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"update","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"usage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6101006040523480156200001257600080fd5b50604051620023333803806200233383398101604081905262000035916200010a565b600160008181558154336001600160a01b0319918216811790935560028054909116831790556040517f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36001546040516001600160a01b03909116906000907fa06677f7b64342b4bcbde423684dbdb5356acfe41ad0285b6ecbe6dc4bf427f2908290a36001600160601b0319606094851b811660805292841b831660a05290831b821660c05290911b1660e05262000166565b80516001600160a01b03811681146200010557600080fd5b919050565b6000806000806080858703121562000120578384fd5b6200012b85620000ed565b93506200013b60208601620000ed565b92506200014b60408601620000ed565b91506200015b60608601620000ed565b905092959194509250565b60805160601c60a05160601c60c05160601c60e05160601c6120f46200023f6000396000818161127401526113310152600081816105d70152818161123601526113e40152600081816102b501528181610445015281816108a90152818161090e01528181610ad801528181610c5a01528181610cd801528181610d4001528181610f7601526111b00152600081816101ba015281816103b00152818161068d015281816107170152818161080a01528181610a4301528181610bbd01528181610de401528181610ee1015261113001526120f46000f3fe608060405234801561001057600080fd5b506004361061016c5760003560e01c806396ce3f0b116100cd578063e066716511610081578063f2fde38b11610066578063f2fde38b146102d9578063f77c4791146102ec578063fc4333cd1461030a57600080fd5b8063e0667165146102a0578063e70c20d9146102b357600080fd5b8063b2e4a7e5116100b2578063b2e4a7e51461027b578063c2b18aa014610283578063d12e56b41461029857600080fd5b806396ce3f0b14610260578063a2e620451461027357600080fd5b806361b8b5dc116101245780636d16fa41116101095780636d16fa41146102275780636d811e711461023a5780638da5cb5b1461024257600080fd5b806361b8b5dc146101ff57806368ba5a421461021f57600080fd5b80632e0f2625116101555780632e0f26251461019d5780632e1a7d4d146101a5578063504b82bf146101b857600080fd5b806308aa325f146101715780632971c33e14610186575b600080fd5b61018461017f366004611bc9565b610312565b005b6003545b6040519081526020015b60405180910390f35b61018a601281565b6101846101b3366004611b99565b610513565b7f00000000000000000000000000000000000000000000000000000000000000005b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610194565b61021261020d3660046119ec565b610645565b6040516101949190611d83565b610212610713565b6101846102353660046119ec565b6107bc565b61018a61090a565b60015473ffffffffffffffffffffffffffffffffffffffff166101da565b61018461026e366004611bc9565b6109aa565b610184610b37565b610212610cd4565b61028b610d3c565b6040516101949190611d29565b61028b610de0565b6101846102ae366004611bc9565b610e48565b7f00000000000000000000000000000000000000000000000000000000000000006101da565b6101846102e73660046119ec565b610fd5565b60025473ffffffffffffffffffffffffffffffffffffffff166101da565b6101846110ce565b6002600054141561036a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260009081556040517f8f0bc152000000000000000000000000000000000000000000000000000000008152819073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001690638f0bc152906103eb9033908b908b908b90600401611ce9565b6040805180830381600087803b15801561040457600080fd5b505af1158015610418573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061043c9190611a24565b915091506000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c7537f368533868a8a6040518663ffffffff1660e01b81526004016104a4959493929190611ca9565b6040805180830381600087803b1580156104bd57600080fd5b505af11580156104d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104f59190611c40565b915091506105038282611216565b5050600160005550505050505050565b61051b61142d565b6000811161056b5760405162461bcd60e51b815260206004820152600260248201527f70310000000000000000000000000000000000000000000000000000000000006044820152606401610361565b6003548111156105bd5760405162461bcd60e51b815260206004820152600260248201527f70320000000000000000000000000000000000000000000000000000000000006044820152606401610361565b6105fe73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000163383611496565b8060035461060c9190611ff8565b6003556040518181527f9893b6ecc024ca2ea684c8b98d392ba3e47fd995e6f6ddddc1b0c7acf5b9dd2b9060200160405180910390a150565b6040517f27e235e300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301526060917f0000000000000000000000000000000000000000000000000000000000000000909116906327e235e39060240160006040518083038186803b1580156106d157600080fd5b505afa1580156106e5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261070d9190810190611af2565b92915050565b60607f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c038a38e6040518163ffffffff1660e01b815260040160006040518083038186803b15801561077b57600080fd5b505afa15801561078f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526107b79190810190611af2565b905090565b6107c581611551565b6040517f6d16fa4100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301527f00000000000000000000000000000000000000000000000000000000000000001690636d16fa4190602401600060405180830381600087803b15801561084e57600080fd5b505af1158015610862573d6000803e3d6000fd5b50506040517f6d16fa4100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84811660048301527f0000000000000000000000000000000000000000000000000000000000000000169250636d16fa419150602401600060405180830381600087803b1580156108ef57600080fd5b505af1158015610903573d6000803e3d6000fd5b5050505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16636d811e716040518163ffffffff1660e01b815260040160206040518083038186803b15801561097257600080fd5b505afa158015610986573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b79190611bb1565b600260005414156109fd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610361565b600260009081556040517f3e12170f000000000000000000000000000000000000000000000000000000008152819073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001690633e12170f90610a7e9033908b908b908b90600401611ce9565b6040805180830381600087803b158015610a9757600080fd5b505af1158015610aab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acf9190611a24565b915091506000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16634854b1438533868a8a6040518663ffffffff1660e01b81526004016104a4959493929190611ca9565b60026000541415610b8a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610361565b60026000556040517f1c1b87720000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690631c1b877290602401600060405180830381600087803b158015610c1657600080fd5b505af1158015610c2a573d6000803e3d6000fd5b50506040517f1c1b87720000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169250631c1b87729150602401600060405180830381600087803b158015610cb557600080fd5b505af1158015610cc9573d6000803e3d6000fd5b505060016000555050565b60607f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16637bb98a686040518163ffffffff1660e01b815260040160006040518083038186803b15801561077b57600080fd5b60607f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16639d63848a6040518163ffffffff1660e01b815260040160006040518083038186803b158015610da457600080fd5b505afa158015610db8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526107b79190810190611a51565b60607f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16639d63848a6040518163ffffffff1660e01b815260040160006040518083038186803b158015610da457600080fd5b60026000541415610e9b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610361565b600260009081556040517fc4113b88000000000000000000000000000000000000000000000000000000008152819073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063c4113b8890610f1c9033908b908b908b90600401611ce9565b6040805180830381600087803b158015610f3557600080fd5b505af1158015610f49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6d9190611a24565b915091506000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c148cf858533868a8a6040518663ffffffff1660e01b81526004016104a4959493929190611ca9565b610fdd61164a565b73ffffffffffffffffffffffffffffffffffffffff81166110405760405162461bcd60e51b815260206004820152600360248201527f6f633300000000000000000000000000000000000000000000000000000000006044820152606401610361565b60015460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600260005414156111215760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610361565b600260005561112e61142d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663fc4333cd6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561119657600080fd5b505af11580156111aa573d6000803e3d6000fd5b505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663fc4333cd6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610cb557600080fd5b811561125e5761125e73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000163330856116b1565b80156114295760006112726012600a611ef5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ddca3f436040518163ffffffff1660e01b815260040160206040518083038186803b1580156112d857600080fd5b505afa1580156112ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113109190611bb1565b61131a9084611fbb565b6113249190611e5b565b9050801561140b5761140b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166361d027b36040518163ffffffff1660e01b815260040160206040518083038186803b15801561139557600080fd5b505afa1580156113a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113cd9190611a08565b73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169083611496565b808260035461141a9190611e43565b6114249190611ff8565b600355505b5050565b60025473ffffffffffffffffffffffffffffffffffffffff1633146114945760405162461bcd60e51b815260206004820152600360248201527f6f633200000000000000000000000000000000000000000000000000000000006044820152606401610361565b565b60405173ffffffffffffffffffffffffffffffffffffffff831660248201526044810182905261154c9084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152611715565b505050565b61155961164a565b73ffffffffffffffffffffffffffffffffffffffff81166115bc5760405162461bcd60e51b815260206004820152600360248201527f6f633400000000000000000000000000000000000000000000000000000000006044820152606401610361565b60025460405173ffffffffffffffffffffffffffffffffffffffff8084169216907fa06677f7b64342b4bcbde423684dbdb5356acfe41ad0285b6ecbe6dc4bf427f290600090a3600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60015473ffffffffffffffffffffffffffffffffffffffff1633146114945760405162461bcd60e51b815260206004820152600360248201527f6f633100000000000000000000000000000000000000000000000000000000006044820152606401610361565b60405173ffffffffffffffffffffffffffffffffffffffff8085166024830152831660448201526064810182905261170f9085907f23b872dd00000000000000000000000000000000000000000000000000000000906084016114e8565b50505050565b6000611777826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166118079092919063ffffffff16565b80519091501561154c57808060200190518101906117959190611b79565b61154c5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610361565b60606118168484600085611820565b90505b9392505050565b6060824710156118985760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610361565b843b6118e65760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610361565b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161190f9190611c8d565b60006040518083038185875af1925050503d806000811461194c576040519150601f19603f3d011682016040523d82523d6000602084013e611951565b606091505b509150915061196182828661196c565b979650505050505050565b6060831561197b575081611819565b82511561198b5782518084602001fd5b8160405162461bcd60e51b81526004016103619190611dbb565b60008083601f8401126119b6578182fd5b50813567ffffffffffffffff8111156119cd578182fd5b6020830191508360208285010111156119e557600080fd5b9250929050565b6000602082840312156119fd578081fd5b813561181981612099565b600060208284031215611a19578081fd5b815161181981612099565b60008060408385031215611a36578081fd5b8251611a4181612099565b6020939093015192949293505050565b60006020808385031215611a63578182fd5b825167ffffffffffffffff811115611a79578283fd5b8301601f81018513611a89578283fd5b8051611a9c611a9782611e1f565b611dee565b80828252848201915084840188868560051b8701011115611abb578687fd5b8694505b83851015611ae6578051611ad281612099565b835260019490940193918501918501611abf565b50979650505050505050565b60006020808385031215611b04578182fd5b825167ffffffffffffffff811115611b1a578283fd5b8301601f81018513611b2a578283fd5b8051611b38611a9782611e1f565b80828252848201915084840188868560051b8701011115611b57578687fd5b8694505b83851015611ae6578051835260019490940193918501918501611b5b565b600060208284031215611b8a578081fd5b81518015158114611819578182fd5b600060208284031215611baa578081fd5b5035919050565b600060208284031215611bc2578081fd5b5051919050565b600080600080600060608688031215611be0578081fd5b85359450602086013567ffffffffffffffff80821115611bfe578283fd5b611c0a89838a016119a5565b90965094506040880135915080821115611c22578283fd5b50611c2f888289016119a5565b969995985093965092949392505050565b60008060408385031215611c52578182fd5b505080516020909101519092909150565b8183528181602085013750600080602083850101526020601f19601f840116840101905092915050565b60008251611c9f81846020870161200f565b9190910192915050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525084604083015260806060830152611961608083018486611c63565b73ffffffffffffffffffffffffffffffffffffffff85168152836020820152606060408201526000611d1f606083018486611c63565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611d7757835173ffffffffffffffffffffffffffffffffffffffff1683529284019291840191600101611d45565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611d7757835183529284019291840191600101611d9f565b6020815260008251806020840152611dda81604085016020870161200f565b601f01601f19169190910160400192915050565b604051601f8201601f1916810167ffffffffffffffff81118282101715611e1757611e1761206a565b604052919050565b600067ffffffffffffffff821115611e3957611e3961206a565b5060051b60200190565b60008219821115611e5657611e5661203b565b500190565b600082611e8f577f4e487b710000000000000000000000000000000000000000000000000000000081526012600452602481fd5b500490565b600181815b80851115611eed57817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115611ed357611ed361203b565b80851615611ee057918102915b93841c9390800290611e99565b509250929050565b60006118198383600082611f0b5750600161070d565b81611f185750600061070d565b8160018114611f2e5760028114611f3857611f54565b600191505061070d565b60ff841115611f4957611f4961203b565b50506001821b61070d565b5060208310610133831016604e8410600b8410161715611f77575081810a61070d565b611f818383611e94565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115611fb357611fb361203b565b029392505050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611ff357611ff361203b565b500290565b60008282101561200a5761200a61203b565b500390565b60005b8381101561202a578181015183820152602001612012565b8381111561170f5750506000910152565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff811681146120bb57600080fd5b5056fea2646970667358221220536a7cfe52be79c5a658f9c96c084f1e69c817a809222280c36cd321f806e09864736f6c63430008040033000000000000000000000000b52a2eae33cce1983e9badef2afe1ea0d9e949350000000000000000000000002184740fab7752f79da19227be0f1e840cfcfef7000000000000000000000000bea98c05eeae2f3bc8c3565db7551eb738c8ccab000000000000000000000000c517a08aee9ca160a610752e50a6ed8087049091
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061016c5760003560e01c806396ce3f0b116100cd578063e066716511610081578063f2fde38b11610066578063f2fde38b146102d9578063f77c4791146102ec578063fc4333cd1461030a57600080fd5b8063e0667165146102a0578063e70c20d9146102b357600080fd5b8063b2e4a7e5116100b2578063b2e4a7e51461027b578063c2b18aa014610283578063d12e56b41461029857600080fd5b806396ce3f0b14610260578063a2e620451461027357600080fd5b806361b8b5dc116101245780636d16fa41116101095780636d16fa41146102275780636d811e711461023a5780638da5cb5b1461024257600080fd5b806361b8b5dc146101ff57806368ba5a421461021f57600080fd5b80632e0f2625116101555780632e0f26251461019d5780632e1a7d4d146101a5578063504b82bf146101b857600080fd5b806308aa325f146101715780632971c33e14610186575b600080fd5b61018461017f366004611bc9565b610312565b005b6003545b6040519081526020015b60405180910390f35b61018a601281565b6101846101b3366004611b99565b610513565b7f000000000000000000000000b52a2eae33cce1983e9badef2afe1ea0d9e949355b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610194565b61021261020d3660046119ec565b610645565b6040516101949190611d83565b610212610713565b6101846102353660046119ec565b6107bc565b61018a61090a565b60015473ffffffffffffffffffffffffffffffffffffffff166101da565b61018461026e366004611bc9565b6109aa565b610184610b37565b610212610cd4565b61028b610d3c565b6040516101949190611d29565b61028b610de0565b6101846102ae366004611bc9565b610e48565b7f0000000000000000000000002184740fab7752f79da19227be0f1e840cfcfef76101da565b6101846102e73660046119ec565b610fd5565b60025473ffffffffffffffffffffffffffffffffffffffff166101da565b6101846110ce565b6002600054141561036a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260009081556040517f8f0bc152000000000000000000000000000000000000000000000000000000008152819073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000b52a2eae33cce1983e9badef2afe1ea0d9e949351690638f0bc152906103eb9033908b908b908b90600401611ce9565b6040805180830381600087803b15801561040457600080fd5b505af1158015610418573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061043c9190611a24565b915091506000807f0000000000000000000000002184740fab7752f79da19227be0f1e840cfcfef773ffffffffffffffffffffffffffffffffffffffff1663c7537f368533868a8a6040518663ffffffff1660e01b81526004016104a4959493929190611ca9565b6040805180830381600087803b1580156104bd57600080fd5b505af11580156104d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104f59190611c40565b915091506105038282611216565b5050600160005550505050505050565b61051b61142d565b6000811161056b5760405162461bcd60e51b815260206004820152600260248201527f70310000000000000000000000000000000000000000000000000000000000006044820152606401610361565b6003548111156105bd5760405162461bcd60e51b815260206004820152600260248201527f70320000000000000000000000000000000000000000000000000000000000006044820152606401610361565b6105fe73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000bea98c05eeae2f3bc8c3565db7551eb738c8ccab163383611496565b8060035461060c9190611ff8565b6003556040518181527f9893b6ecc024ca2ea684c8b98d392ba3e47fd995e6f6ddddc1b0c7acf5b9dd2b9060200160405180910390a150565b6040517f27e235e300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301526060917f000000000000000000000000b52a2eae33cce1983e9badef2afe1ea0d9e94935909116906327e235e39060240160006040518083038186803b1580156106d157600080fd5b505afa1580156106e5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261070d9190810190611af2565b92915050565b60607f000000000000000000000000b52a2eae33cce1983e9badef2afe1ea0d9e9493573ffffffffffffffffffffffffffffffffffffffff1663c038a38e6040518163ffffffff1660e01b815260040160006040518083038186803b15801561077b57600080fd5b505afa15801561078f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526107b79190810190611af2565b905090565b6107c581611551565b6040517f6d16fa4100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301527f000000000000000000000000b52a2eae33cce1983e9badef2afe1ea0d9e949351690636d16fa4190602401600060405180830381600087803b15801561084e57600080fd5b505af1158015610862573d6000803e3d6000fd5b50506040517f6d16fa4100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84811660048301527f0000000000000000000000002184740fab7752f79da19227be0f1e840cfcfef7169250636d16fa419150602401600060405180830381600087803b1580156108ef57600080fd5b505af1158015610903573d6000803e3d6000fd5b5050505050565b60007f0000000000000000000000002184740fab7752f79da19227be0f1e840cfcfef773ffffffffffffffffffffffffffffffffffffffff16636d811e716040518163ffffffff1660e01b815260040160206040518083038186803b15801561097257600080fd5b505afa158015610986573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b79190611bb1565b600260005414156109fd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610361565b600260009081556040517f3e12170f000000000000000000000000000000000000000000000000000000008152819073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000b52a2eae33cce1983e9badef2afe1ea0d9e949351690633e12170f90610a7e9033908b908b908b90600401611ce9565b6040805180830381600087803b158015610a9757600080fd5b505af1158015610aab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acf9190611a24565b915091506000807f0000000000000000000000002184740fab7752f79da19227be0f1e840cfcfef773ffffffffffffffffffffffffffffffffffffffff16634854b1438533868a8a6040518663ffffffff1660e01b81526004016104a4959493929190611ca9565b60026000541415610b8a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610361565b60026000556040517f1c1b87720000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000b52a2eae33cce1983e9badef2afe1ea0d9e9493573ffffffffffffffffffffffffffffffffffffffff1690631c1b877290602401600060405180830381600087803b158015610c1657600080fd5b505af1158015610c2a573d6000803e3d6000fd5b50506040517f1c1b87720000000000000000000000000000000000000000000000000000000081523360048201527f0000000000000000000000002184740fab7752f79da19227be0f1e840cfcfef773ffffffffffffffffffffffffffffffffffffffff169250631c1b87729150602401600060405180830381600087803b158015610cb557600080fd5b505af1158015610cc9573d6000803e3d6000fd5b505060016000555050565b60607f0000000000000000000000002184740fab7752f79da19227be0f1e840cfcfef773ffffffffffffffffffffffffffffffffffffffff16637bb98a686040518163ffffffff1660e01b815260040160006040518083038186803b15801561077b57600080fd5b60607f0000000000000000000000002184740fab7752f79da19227be0f1e840cfcfef773ffffffffffffffffffffffffffffffffffffffff16639d63848a6040518163ffffffff1660e01b815260040160006040518083038186803b158015610da457600080fd5b505afa158015610db8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526107b79190810190611a51565b60607f000000000000000000000000b52a2eae33cce1983e9badef2afe1ea0d9e9493573ffffffffffffffffffffffffffffffffffffffff16639d63848a6040518163ffffffff1660e01b815260040160006040518083038186803b158015610da457600080fd5b60026000541415610e9b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610361565b600260009081556040517fc4113b88000000000000000000000000000000000000000000000000000000008152819073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000b52a2eae33cce1983e9badef2afe1ea0d9e94935169063c4113b8890610f1c9033908b908b908b90600401611ce9565b6040805180830381600087803b158015610f3557600080fd5b505af1158015610f49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6d9190611a24565b915091506000807f0000000000000000000000002184740fab7752f79da19227be0f1e840cfcfef773ffffffffffffffffffffffffffffffffffffffff1663c148cf858533868a8a6040518663ffffffff1660e01b81526004016104a4959493929190611ca9565b610fdd61164a565b73ffffffffffffffffffffffffffffffffffffffff81166110405760405162461bcd60e51b815260206004820152600360248201527f6f633300000000000000000000000000000000000000000000000000000000006044820152606401610361565b60015460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600260005414156111215760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610361565b600260005561112e61142d565b7f000000000000000000000000b52a2eae33cce1983e9badef2afe1ea0d9e9493573ffffffffffffffffffffffffffffffffffffffff1663fc4333cd6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561119657600080fd5b505af11580156111aa573d6000803e3d6000fd5b505050507f0000000000000000000000002184740fab7752f79da19227be0f1e840cfcfef773ffffffffffffffffffffffffffffffffffffffff1663fc4333cd6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610cb557600080fd5b811561125e5761125e73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000bea98c05eeae2f3bc8c3565db7551eb738c8ccab163330856116b1565b80156114295760006112726012600a611ef5565b7f000000000000000000000000c517a08aee9ca160a610752e50a6ed808704909173ffffffffffffffffffffffffffffffffffffffff1663ddca3f436040518163ffffffff1660e01b815260040160206040518083038186803b1580156112d857600080fd5b505afa1580156112ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113109190611bb1565b61131a9084611fbb565b6113249190611e5b565b9050801561140b5761140b7f000000000000000000000000c517a08aee9ca160a610752e50a6ed808704909173ffffffffffffffffffffffffffffffffffffffff166361d027b36040518163ffffffff1660e01b815260040160206040518083038186803b15801561139557600080fd5b505afa1580156113a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113cd9190611a08565b73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000bea98c05eeae2f3bc8c3565db7551eb738c8ccab169083611496565b808260035461141a9190611e43565b6114249190611ff8565b600355505b5050565b60025473ffffffffffffffffffffffffffffffffffffffff1633146114945760405162461bcd60e51b815260206004820152600360248201527f6f633200000000000000000000000000000000000000000000000000000000006044820152606401610361565b565b60405173ffffffffffffffffffffffffffffffffffffffff831660248201526044810182905261154c9084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152611715565b505050565b61155961164a565b73ffffffffffffffffffffffffffffffffffffffff81166115bc5760405162461bcd60e51b815260206004820152600360248201527f6f633400000000000000000000000000000000000000000000000000000000006044820152606401610361565b60025460405173ffffffffffffffffffffffffffffffffffffffff8084169216907fa06677f7b64342b4bcbde423684dbdb5356acfe41ad0285b6ecbe6dc4bf427f290600090a3600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60015473ffffffffffffffffffffffffffffffffffffffff1633146114945760405162461bcd60e51b815260206004820152600360248201527f6f633100000000000000000000000000000000000000000000000000000000006044820152606401610361565b60405173ffffffffffffffffffffffffffffffffffffffff8085166024830152831660448201526064810182905261170f9085907f23b872dd00000000000000000000000000000000000000000000000000000000906084016114e8565b50505050565b6000611777826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166118079092919063ffffffff16565b80519091501561154c57808060200190518101906117959190611b79565b61154c5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610361565b60606118168484600085611820565b90505b9392505050565b6060824710156118985760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610361565b843b6118e65760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610361565b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161190f9190611c8d565b60006040518083038185875af1925050503d806000811461194c576040519150601f19603f3d011682016040523d82523d6000602084013e611951565b606091505b509150915061196182828661196c565b979650505050505050565b6060831561197b575081611819565b82511561198b5782518084602001fd5b8160405162461bcd60e51b81526004016103619190611dbb565b60008083601f8401126119b6578182fd5b50813567ffffffffffffffff8111156119cd578182fd5b6020830191508360208285010111156119e557600080fd5b9250929050565b6000602082840312156119fd578081fd5b813561181981612099565b600060208284031215611a19578081fd5b815161181981612099565b60008060408385031215611a36578081fd5b8251611a4181612099565b6020939093015192949293505050565b60006020808385031215611a63578182fd5b825167ffffffffffffffff811115611a79578283fd5b8301601f81018513611a89578283fd5b8051611a9c611a9782611e1f565b611dee565b80828252848201915084840188868560051b8701011115611abb578687fd5b8694505b83851015611ae6578051611ad281612099565b835260019490940193918501918501611abf565b50979650505050505050565b60006020808385031215611b04578182fd5b825167ffffffffffffffff811115611b1a578283fd5b8301601f81018513611b2a578283fd5b8051611b38611a9782611e1f565b80828252848201915084840188868560051b8701011115611b57578687fd5b8694505b83851015611ae6578051835260019490940193918501918501611b5b565b600060208284031215611b8a578081fd5b81518015158114611819578182fd5b600060208284031215611baa578081fd5b5035919050565b600060208284031215611bc2578081fd5b5051919050565b600080600080600060608688031215611be0578081fd5b85359450602086013567ffffffffffffffff80821115611bfe578283fd5b611c0a89838a016119a5565b90965094506040880135915080821115611c22578283fd5b50611c2f888289016119a5565b969995985093965092949392505050565b60008060408385031215611c52578182fd5b505080516020909101519092909150565b8183528181602085013750600080602083850101526020601f19601f840116840101905092915050565b60008251611c9f81846020870161200f565b9190910192915050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525084604083015260806060830152611961608083018486611c63565b73ffffffffffffffffffffffffffffffffffffffff85168152836020820152606060408201526000611d1f606083018486611c63565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611d7757835173ffffffffffffffffffffffffffffffffffffffff1683529284019291840191600101611d45565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611d7757835183529284019291840191600101611d9f565b6020815260008251806020840152611dda81604085016020870161200f565b601f01601f19169190910160400192915050565b604051601f8201601f1916810167ffffffffffffffff81118282101715611e1757611e1761206a565b604052919050565b600067ffffffffffffffff821115611e3957611e3961206a565b5060051b60200190565b60008219821115611e5657611e5661203b565b500190565b600082611e8f577f4e487b710000000000000000000000000000000000000000000000000000000081526012600452602481fd5b500490565b600181815b80851115611eed57817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115611ed357611ed361203b565b80851615611ee057918102915b93841c9390800290611e99565b509250929050565b60006118198383600082611f0b5750600161070d565b81611f185750600061070d565b8160018114611f2e5760028114611f3857611f54565b600191505061070d565b60ff841115611f4957611f4961203b565b50506001821b61070d565b5060208310610133831016604e8410600b8410161715611f77575081810a61070d565b611f818383611e94565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115611fb357611fb361203b565b029392505050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611ff357611ff361203b565b500290565b60008282101561200a5761200a61203b565b500390565b60005b8381101561202a578181015183820152602001612012565b8381111561170f5750506000910152565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff811681146120bb57600080fd5b5056fea2646970667358221220536a7cfe52be79c5a658f9c96c084f1e69c817a809222280c36cd321f806e09864736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b52a2eae33cce1983e9badef2afe1ea0d9e949350000000000000000000000002184740fab7752f79da19227be0f1e840cfcfef7000000000000000000000000bea98c05eeae2f3bc8c3565db7551eb738c8ccab000000000000000000000000c517a08aee9ca160a610752e50a6ed8087049091
-----Decoded View---------------
Arg [0] : staking_ (address): 0xB52A2eAE33cCE1983e9badEF2AFe1Ea0d9E94935
Arg [1] : reward_ (address): 0x2184740fab7752F79da19227bE0F1e840CfCFef7
Arg [2] : gysr_ (address): 0xbEa98c05eEAe2f3bC8c3565Db7551Eb738c8CCAb
Arg [3] : factory_ (address): 0xc517A08aeE9CA160a610752e50A6ED8087049091
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000b52a2eae33cce1983e9badef2afe1ea0d9e94935
Arg [1] : 0000000000000000000000002184740fab7752f79da19227be0f1e840cfcfef7
Arg [2] : 000000000000000000000000bea98c05eeae2f3bc8c3565db7551eb738c8ccab
Arg [3] : 000000000000000000000000c517a08aee9ca160a610752e50a6ed8087049091
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $0.02736 | 11,408.0923 | $312.13 |
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.