Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Latest 25 from a total of 85 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Exit | 11021031 | 1981 days ago | IN | 0 ETH | 0.0062632 | ||||
| Get Reward | 11021029 | 1981 days ago | IN | 0 ETH | 0.0103899 | ||||
| Exit | 10952132 | 1992 days ago | IN | 0 ETH | 0.02605636 | ||||
| Exit | 10949579 | 1993 days ago | IN | 0 ETH | 0.01075705 | ||||
| Get Reward | 10949576 | 1993 days ago | IN | 0 ETH | 0.00752465 | ||||
| Exit | 10945710 | 1993 days ago | IN | 0 ETH | 0.0164114 | ||||
| Get Reward | 10945707 | 1993 days ago | IN | 0 ETH | 0.00523364 | ||||
| Get Reward | 10945707 | 1993 days ago | IN | 0 ETH | 0.01021867 | ||||
| Exit | 10944664 | 1993 days ago | IN | 0 ETH | 0.00893298 | ||||
| Exit | 10944218 | 1993 days ago | IN | 0 ETH | 0.02068665 | ||||
| Get Reward | 10944216 | 1993 days ago | IN | 0 ETH | 0.01298362 | ||||
| Exit | 10943495 | 1994 days ago | IN | 0 ETH | 0.00774191 | ||||
| Exit | 10943406 | 1994 days ago | IN | 0 ETH | 0.01517021 | ||||
| Get Reward | 10943400 | 1994 days ago | IN | 0 ETH | 0.00975418 | ||||
| Exit | 10943324 | 1994 days ago | IN | 0 ETH | 0.01627349 | ||||
| Exit | 10943266 | 1994 days ago | IN | 0 ETH | 0.03034042 | ||||
| Get Reward | 10943241 | 1994 days ago | IN | 0 ETH | 0.02043734 | ||||
| Exit | 10942495 | 1994 days ago | IN | 0 ETH | 0.0137911 | ||||
| Exit | 10942231 | 1994 days ago | IN | 0 ETH | 0.01020541 | ||||
| Get Reward | 10942226 | 1994 days ago | IN | 0 ETH | 0.00357856 | ||||
| Get Reward | 10942226 | 1994 days ago | IN | 0 ETH | 0.00362329 | ||||
| Get Reward | 10942226 | 1994 days ago | IN | 0 ETH | 0.00598052 | ||||
| Get Reward | 10941546 | 1994 days ago | IN | 0 ETH | 0.00499882 | ||||
| Exit | 10941443 | 1994 days ago | IN | 0 ETH | 0.00730928 | ||||
| Get Reward | 10941440 | 1994 days ago | IN | 0 ETH | 0.00434202 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
SuperYinYangStakingRewards
Compiler Version
v0.7.1+commit.f4a555be
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-09-22
*/
pragma solidity ^0.7.1;
//
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
//
/**
* @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.
*/
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 () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
//
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a >= b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow, so we distribute
return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
}
}
//
/**
* @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);
}
//
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
//
/**
* @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) {
// According to EIP-1052, 0x0 is the value returned for not-yet created accounts
// and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
// for accounts without code, i.e. `keccak256('')`
bytes32 codehash;
bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
// solhint-disable-next-line no-inline-assembly
assembly { codehash := extcodehash(account) }
return (codehash != accountHash && codehash != 0x0);
}
/**
* @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");
return _functionCallWithValue(target, data, value, errorMessage);
}
function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
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);
}
}
}
}
//
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using SafeMath for uint256;
using Address for address;
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
// solhint-disable-next-line max-line-length
require((value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).add(value);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) { // Return data is optional
// solhint-disable-next-line max-line-length
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
//
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor () {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
require(!_paused, "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
require(_paused, "Pausable: not paused");
_;
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
//
/**
* @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].
*/
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;
}
}
contract SuperYinYangStakingRewards is ReentrancyGuard, Pausable, Ownable {
using SafeMath for uint256;
using SafeERC20 for IERC20;
IERC20 public rewardsToken;
IERC20 public stakingToken;
uint256 public periodFinish = 0;
uint256 public rewardRate = 0;
uint256 public rewardsDuration = 7 days;
uint256 public lastUpdateTime;
uint256 public rewardPerTokenStored;
mapping(address => uint) public stakeLock; // period that your sake it locked to keep it for staking
uint256 public lock = 17280; // stake lock in blocks ~ 17280 3 days for 15s/block
mapping(address => uint256) public userRewardPerTokenPaid;
mapping(address => uint256) public rewards;
uint256 private _totalSupply;
mapping(address => uint256) private _balances;
constructor(
address _rewardsToken,
address _stakingToken
) Ownable() {
rewardsToken = IERC20(_rewardsToken);
stakingToken = IERC20(_stakingToken);
_pause();
}
function totalSupply() external view returns (uint256) {
return _totalSupply;
}
function balanceOf(address account) external view returns (uint256) {
return _balances[account];
}
function lastTimeRewardApplicable() public view returns (uint256) {
return Math.min(block.timestamp, periodFinish);
}
function rewardPerToken() public view returns (uint256) {
if (_totalSupply == 0) {
return rewardPerTokenStored;
}
return
rewardPerTokenStored.add(
lastTimeRewardApplicable().sub(lastUpdateTime).mul(rewardRate).mul(1e18).div(_totalSupply)
);
}
function earned(address account) public view returns (uint256) {
return _balances[account].mul(rewardPerToken().sub(userRewardPerTokenPaid[account])).div(1e18).add(rewards[account]);
}
function getRewardForDuration() external view returns (uint256) {
return rewardRate.mul(rewardsDuration);
}
function stake(uint256 amount) external nonReentrant whenNotPaused updateReward(msg.sender) {
require(amount > 0, "Cannot stake 0");
_totalSupply = _totalSupply.add(amount);
_balances[msg.sender] = _balances[msg.sender].add(amount);
stakingToken.safeTransferFrom(msg.sender, address(this), amount);
stakeLock[msg.sender] = lock.add(block.number);
emit Staked(msg.sender, amount);
}
function withdraw(uint256 amount) public nonReentrant updateReward(msg.sender) {
require(amount > 0, "Cannot withdraw 0");
require(stakeLock[msg.sender] < block.number, "!locked");
_totalSupply = _totalSupply.sub(amount);
_balances[msg.sender] = _balances[msg.sender].sub(amount);
stakingToken.safeTransfer(msg.sender, amount);
emit Withdrawn(msg.sender, amount);
}
function getReward() public nonReentrant updateReward(msg.sender) {
uint256 reward = rewards[msg.sender];
if (reward > 0) {
rewards[msg.sender] = 0;
rewardsToken.safeTransfer(msg.sender, reward);
emit RewardPaid(msg.sender, reward);
}
}
function exit() external {
withdraw(_balances[msg.sender]);
getReward();
}
function unpause() external onlyOwner {
super._unpause();
}
function notifyRewardAmount(uint256 reward) external onlyOwner updateReward(address(0)) {
if (block.timestamp >= periodFinish) {
rewardRate = reward.div(rewardsDuration);
} else {
uint256 remaining = periodFinish.sub(block.timestamp);
uint256 leftover = remaining.mul(rewardRate);
rewardRate = reward.add(leftover).div(rewardsDuration);
}
// Ensure the provided reward amount is not more than the balance in the contract.
// This keeps the reward rate in the right range, preventing overflows due to
// very high values of rewardRate in the earned and rewardsPerToken functions;
// Reward + leftover must be less than 2^256 / 10^18 to avoid overflow.
uint balance = rewardsToken.balanceOf(address(this));
require(rewardRate <= balance.div(rewardsDuration), "Provided reward too high");
lastUpdateTime = block.timestamp;
periodFinish = block.timestamp.add(rewardsDuration);
emit RewardAdded(reward);
}
// Added to support recovering LP Rewards from other systems to be distributed to holders
function recoverERC20(address tokenAddress, uint256 tokenAmount) external onlyOwner {
// Cannot recover the staking token or the rewards token
require(
tokenAddress != address(stakingToken) && tokenAddress != address(rewardsToken),
"Cannot withdraw the staking or rewards tokens"
);
IERC20(tokenAddress).safeTransfer(owner(), tokenAmount);
emit Recovered(tokenAddress, tokenAmount);
}
modifier updateReward(address account) {
rewardPerTokenStored = rewardPerToken();
lastUpdateTime = lastTimeRewardApplicable();
if (account != address(0)) {
rewards[account] = earned(account);
userRewardPerTokenPaid[account] = rewardPerTokenStored;
}
_;
}
event RewardAdded(uint256 reward);
event Staked(address indexed user, uint256 amount);
event Withdrawn(address indexed user, uint256 amount);
event RewardPaid(address indexed user, uint256 reward);
event Recovered(address token, uint256 amount);
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_rewardsToken","type":"address"},{"internalType":"address","name":"_stakingToken","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Recovered","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"exit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getRewardForDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"notifyRewardAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"periodFinish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerTokenStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakeLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userRewardPerTokenPaid","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
60806040526000600455600060055562093a80600655614380600a553480156200002857600080fd5b5060405162002c0f38038062002c0f833981810160405260408110156200004e57600080fd5b81019080805190602001909291908051906020019092919050505060016000819055506000600160006101000a81548160ff02191690831515021790555060006200009e620001d660201b60201c565b9050806001806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001ce620001de60201b60201c565b5050620002da565b600033905090565b600160009054906101000a900460ff161562000262576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b60018060006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002ad620001d660201b60201c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b61292580620002ea6000396000f3fe608060405234801561001057600080fd5b50600436106101c35760003560e01c806380faa57d116100f9578063d1af0c7d11610097578063e9fad8ee11610071578063e9fad8ee14610622578063ebe2b12b1461062c578063f2fde38b1461064a578063f83d08ba1461068e576101c3565b8063d1af0c7d14610578578063df136d65146105ac578063e0160a10146105ca576101c3565b80638da5cb5b116100d35780638da5cb5b146104da578063a694fc3a1461050e578063c8f33c911461053c578063cd3daf9d1461055a576101c3565b806380faa57d146104165780638980f11f146104345780638b87634714610482576101c3565b80633d18b9121161016657806370a082311161014057806370a0823114610362578063715018a6146103ba57806372f702f3146103c45780637b0a47ee146103f8576101c3565b80633d18b9121461032e5780633f4ba83a146103385780635c975abb14610342576101c3565b80631c1f78eb116101a25780631c1f78eb146102965780632e1a7d4d146102b4578063386a9525146102e25780633c6b16ab14610300576101c3565b80628cc262146101c85780630700037d1461022057806318160ddd14610278575b600080fd5b61020a600480360360208110156101de57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506106ac565b6040518082815260200191505060405180910390f35b6102626004803603602081101561023657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506107ca565b6040518082815260200191505060405180910390f35b6102806107e2565b6040518082815260200191505060405180910390f35b61029e6107ec565b6040518082815260200191505060405180910390f35b6102e0600480360360208110156102ca57600080fd5b810190808035906020019092919050505061080a565b005b6102ea610bf0565b6040518082815260200191505060405180910390f35b61032c6004803603602081101561031657600080fd5b8101908080359060200190929190505050610bf6565b005b610336610fe0565b005b61034061127f565b005b61034a611351565b60405180821515815260200191505060405180910390f35b6103a46004803603602081101561037857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611368565b6040518082815260200191505060405180910390f35b6103c26113b1565b005b6103cc611537565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61040061155d565b6040518082815260200191505060405180910390f35b61041e611563565b6040518082815260200191505060405180910390f35b6104806004803603604081101561044a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611576565b005b6104c46004803603602081101561049857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117ca565b6040518082815260200191505060405180910390f35b6104e26117e2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61053a6004803603602081101561052457600080fd5b810190808035906020019092919050505061180a565b005b610544611c19565b6040518082815260200191505060405180910390f35b610562611c1f565b6040518082815260200191505060405180910390f35b610580611cad565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105b4611cd3565b6040518082815260200191505060405180910390f35b61060c600480360360208110156105e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cd9565b6040518082815260200191505060405180910390f35b61062a611cf1565b005b610634611d43565b6040518082815260200191505060405180910390f35b61068c6004803603602081101561066057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d49565b005b610696611f54565b6040518082815260200191505060405180910390f35b60006107c3600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107b5670de0b6b3a76400006107a7610759600b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461074b611c1f565b611f5a90919063ffffffff16565b600e60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fa490919063ffffffff16565b61202a90919063ffffffff16565b61207490919063ffffffff16565b9050919050565b600c6020528060005260406000206000915090505481565b6000600d54905090565b6000610805600654600554611fa490919063ffffffff16565b905090565b60026000541415610883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260008190555033610894611c1f565b6008819055506108a2611563565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461096f576108e5816106ac565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600082116109e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f43616e6e6f74207769746864726177203000000000000000000000000000000081525060200191505060405180910390fd5b43600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610a99576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260078152602001807f216c6f636b65640000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b610aae82600d54611f5a90919063ffffffff16565b600d81905550610b0682600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f5a90919063ffffffff16565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610b963383600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166120fc9092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5836040518082815260200191505060405180910390a250600160008190555050565b60065481565b610bfe61219e565b73ffffffffffffffffffffffffffffffffffffffff1660018054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cbe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000610cc8611c1f565b600881905550610cd6611563565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610da357610d19816106ac565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6004544210610dcc57610dc16006548361202a90919063ffffffff16565b600581905550610e2e565b6000610de342600454611f5a90919063ffffffff16565b90506000610dfc60055483611fa490919063ffffffff16565b9050610e25600654610e17838761207490919063ffffffff16565b61202a90919063ffffffff16565b60058190555050505b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610eb957600080fd5b505afa158015610ecd573d6000803e3d6000fd5b505050506040513d6020811015610ee357600080fd5b81019080805190602001909291905050509050610f0b6006548261202a90919063ffffffff16565b6005541115610f82576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f50726f76696465642072657761726420746f6f2068696768000000000000000081525060200191505060405180910390fd5b42600781905550610f9e6006544261207490919063ffffffff16565b6004819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d836040518082815260200191505060405180910390a1505050565b60026000541415611059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026000819055503361106a611c1f565b600881905550611078611563565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611145576110bb816106ac565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811115611273576000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112243382600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166120fc9092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a25b50506001600081905550565b61128761219e565b73ffffffffffffffffffffffffffffffffffffffff1660018054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611347576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61134f6121a6565b565b6000600160009054906101000a900460ff16905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113b961219e565b73ffffffffffffffffffffffffffffffffffffffff1660018054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611479576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660018054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360006001806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60055481565b600061157142600454612299565b905090565b61157e61219e565b73ffffffffffffffffffffffffffffffffffffffff1660018054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461163e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156116ea5750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b61173f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180612899602d913960400191505060405180910390fd5b61177161174a6117e2565b828473ffffffffffffffffffffffffffffffffffffffff166120fc9092919063ffffffff16565b7f8c1256b8896378cd5044f80c202f9772b9d77dc85c8a6eb51967210b09bfaa288282604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b600b6020528060005260406000206000915090505481565b600060018054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60026000541415611883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600081905550600160009054906101000a900460ff161561190e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b33611917611c1f565b600881905550611925611563565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119f257611968816106ac565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60008211611a68576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f43616e6e6f74207374616b65203000000000000000000000000000000000000081525060200191505060405180910390fd5b611a7d82600d5461207490919063ffffffff16565b600d81905550611ad582600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461207490919063ffffffff16565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b67333084600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122b2909392919063ffffffff16565b611b7c43600a5461207490919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d836040518082815260200191505060405180910390a250600160008190555050565b60075481565b600080600d541415611c35576008549050611caa565b611ca7611c96600d54611c88670de0b6b3a7640000611c7a600554611c6c600754611c5e611563565b611f5a90919063ffffffff16565b611fa490919063ffffffff16565b611fa490919063ffffffff16565b61202a90919063ffffffff16565b60085461207490919063ffffffff16565b90505b90565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b60096020528060005260406000206000915090505481565b611d39600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461080a565b611d41610fe0565b565b60045481565b611d5161219e565b73ffffffffffffffffffffffffffffffffffffffff1660018054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e11576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e97576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806128526026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660018054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806001806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b6000611f9c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612373565b905092915050565b600080831415611fb75760009050612024565b6000828402905082848281611fc857fe5b041461201f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806128786021913960400191505060405180910390fd5b809150505b92915050565b600061206c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612433565b905092915050565b6000808284019050838110156120f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6121998363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506124f9565b505050565b600033905090565b600160009054906101000a900460ff16612228576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600160006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61226c61219e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60008183106122a857816122aa565b825b905092915050565b61236d846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506124f9565b50505050565b6000838311158290612420576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156123e55780820151818401526020810190506123ca565b50505050905090810190601f1680156124125780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080831182906124df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156124a4578082015181840152602081019050612489565b50505050905090810190601f1680156124d15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816124eb57fe5b049050809150509392505050565b606061255b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166125e89092919063ffffffff16565b90506000815111156125e35780806020019051602081101561257c57600080fd5b81019080805190602001909291905050506125e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806128c6602a913960400191505060405180910390fd5b5b505050565b60606125f78484600085612600565b90509392505050565b606061260b85612806565b61267d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106126cd57805182526020820191506020810190506020830392506126aa565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461272f576040519150601f19603f3d011682016040523d82523d6000602084013e612734565b606091505b509150915081156127495780925050506127fe565b60008151111561275c5780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156127c35780820151818401526020810190506127a8565b50505050905090810190601f1680156127f05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561284857506000801b8214155b9250505091905056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7743616e6e6f7420776974686472617720746865207374616b696e67206f72207265776172647320746f6b656e735361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220e5e7ac3b8595fc1d3fcc608b51f25a747c9733feab022a9e740b0c97398c209d64736f6c63430007010033000000000000000000000000a9402793f40b8e4a2cb79555bbabd45e40fae0e3000000000000000000000000f7239a3be607ad88a06eaee37ae1b92c1b440548
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c35760003560e01c806380faa57d116100f9578063d1af0c7d11610097578063e9fad8ee11610071578063e9fad8ee14610622578063ebe2b12b1461062c578063f2fde38b1461064a578063f83d08ba1461068e576101c3565b8063d1af0c7d14610578578063df136d65146105ac578063e0160a10146105ca576101c3565b80638da5cb5b116100d35780638da5cb5b146104da578063a694fc3a1461050e578063c8f33c911461053c578063cd3daf9d1461055a576101c3565b806380faa57d146104165780638980f11f146104345780638b87634714610482576101c3565b80633d18b9121161016657806370a082311161014057806370a0823114610362578063715018a6146103ba57806372f702f3146103c45780637b0a47ee146103f8576101c3565b80633d18b9121461032e5780633f4ba83a146103385780635c975abb14610342576101c3565b80631c1f78eb116101a25780631c1f78eb146102965780632e1a7d4d146102b4578063386a9525146102e25780633c6b16ab14610300576101c3565b80628cc262146101c85780630700037d1461022057806318160ddd14610278575b600080fd5b61020a600480360360208110156101de57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506106ac565b6040518082815260200191505060405180910390f35b6102626004803603602081101561023657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506107ca565b6040518082815260200191505060405180910390f35b6102806107e2565b6040518082815260200191505060405180910390f35b61029e6107ec565b6040518082815260200191505060405180910390f35b6102e0600480360360208110156102ca57600080fd5b810190808035906020019092919050505061080a565b005b6102ea610bf0565b6040518082815260200191505060405180910390f35b61032c6004803603602081101561031657600080fd5b8101908080359060200190929190505050610bf6565b005b610336610fe0565b005b61034061127f565b005b61034a611351565b60405180821515815260200191505060405180910390f35b6103a46004803603602081101561037857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611368565b6040518082815260200191505060405180910390f35b6103c26113b1565b005b6103cc611537565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61040061155d565b6040518082815260200191505060405180910390f35b61041e611563565b6040518082815260200191505060405180910390f35b6104806004803603604081101561044a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611576565b005b6104c46004803603602081101561049857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117ca565b6040518082815260200191505060405180910390f35b6104e26117e2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61053a6004803603602081101561052457600080fd5b810190808035906020019092919050505061180a565b005b610544611c19565b6040518082815260200191505060405180910390f35b610562611c1f565b6040518082815260200191505060405180910390f35b610580611cad565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105b4611cd3565b6040518082815260200191505060405180910390f35b61060c600480360360208110156105e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cd9565b6040518082815260200191505060405180910390f35b61062a611cf1565b005b610634611d43565b6040518082815260200191505060405180910390f35b61068c6004803603602081101561066057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d49565b005b610696611f54565b6040518082815260200191505060405180910390f35b60006107c3600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107b5670de0b6b3a76400006107a7610759600b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461074b611c1f565b611f5a90919063ffffffff16565b600e60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fa490919063ffffffff16565b61202a90919063ffffffff16565b61207490919063ffffffff16565b9050919050565b600c6020528060005260406000206000915090505481565b6000600d54905090565b6000610805600654600554611fa490919063ffffffff16565b905090565b60026000541415610883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260008190555033610894611c1f565b6008819055506108a2611563565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461096f576108e5816106ac565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600082116109e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f43616e6e6f74207769746864726177203000000000000000000000000000000081525060200191505060405180910390fd5b43600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610a99576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260078152602001807f216c6f636b65640000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b610aae82600d54611f5a90919063ffffffff16565b600d81905550610b0682600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f5a90919063ffffffff16565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610b963383600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166120fc9092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5836040518082815260200191505060405180910390a250600160008190555050565b60065481565b610bfe61219e565b73ffffffffffffffffffffffffffffffffffffffff1660018054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cbe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000610cc8611c1f565b600881905550610cd6611563565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610da357610d19816106ac565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6004544210610dcc57610dc16006548361202a90919063ffffffff16565b600581905550610e2e565b6000610de342600454611f5a90919063ffffffff16565b90506000610dfc60055483611fa490919063ffffffff16565b9050610e25600654610e17838761207490919063ffffffff16565b61202a90919063ffffffff16565b60058190555050505b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610eb957600080fd5b505afa158015610ecd573d6000803e3d6000fd5b505050506040513d6020811015610ee357600080fd5b81019080805190602001909291905050509050610f0b6006548261202a90919063ffffffff16565b6005541115610f82576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f50726f76696465642072657761726420746f6f2068696768000000000000000081525060200191505060405180910390fd5b42600781905550610f9e6006544261207490919063ffffffff16565b6004819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d836040518082815260200191505060405180910390a1505050565b60026000541415611059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026000819055503361106a611c1f565b600881905550611078611563565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611145576110bb816106ac565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811115611273576000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112243382600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166120fc9092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a25b50506001600081905550565b61128761219e565b73ffffffffffffffffffffffffffffffffffffffff1660018054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611347576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61134f6121a6565b565b6000600160009054906101000a900460ff16905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113b961219e565b73ffffffffffffffffffffffffffffffffffffffff1660018054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611479576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660018054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360006001806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60055481565b600061157142600454612299565b905090565b61157e61219e565b73ffffffffffffffffffffffffffffffffffffffff1660018054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461163e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156116ea5750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b61173f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180612899602d913960400191505060405180910390fd5b61177161174a6117e2565b828473ffffffffffffffffffffffffffffffffffffffff166120fc9092919063ffffffff16565b7f8c1256b8896378cd5044f80c202f9772b9d77dc85c8a6eb51967210b09bfaa288282604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b600b6020528060005260406000206000915090505481565b600060018054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60026000541415611883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600081905550600160009054906101000a900460ff161561190e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b33611917611c1f565b600881905550611925611563565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119f257611968816106ac565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60008211611a68576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f43616e6e6f74207374616b65203000000000000000000000000000000000000081525060200191505060405180910390fd5b611a7d82600d5461207490919063ffffffff16565b600d81905550611ad582600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461207490919063ffffffff16565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b67333084600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166122b2909392919063ffffffff16565b611b7c43600a5461207490919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d836040518082815260200191505060405180910390a250600160008190555050565b60075481565b600080600d541415611c35576008549050611caa565b611ca7611c96600d54611c88670de0b6b3a7640000611c7a600554611c6c600754611c5e611563565b611f5a90919063ffffffff16565b611fa490919063ffffffff16565b611fa490919063ffffffff16565b61202a90919063ffffffff16565b60085461207490919063ffffffff16565b90505b90565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b60096020528060005260406000206000915090505481565b611d39600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461080a565b611d41610fe0565b565b60045481565b611d5161219e565b73ffffffffffffffffffffffffffffffffffffffff1660018054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e11576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e97576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806128526026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660018054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806001806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b6000611f9c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612373565b905092915050565b600080831415611fb75760009050612024565b6000828402905082848281611fc857fe5b041461201f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806128786021913960400191505060405180910390fd5b809150505b92915050565b600061206c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612433565b905092915050565b6000808284019050838110156120f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6121998363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506124f9565b505050565b600033905090565b600160009054906101000a900460ff16612228576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600160006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61226c61219e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60008183106122a857816122aa565b825b905092915050565b61236d846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506124f9565b50505050565b6000838311158290612420576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156123e55780820151818401526020810190506123ca565b50505050905090810190601f1680156124125780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080831182906124df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156124a4578082015181840152602081019050612489565b50505050905090810190601f1680156124d15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816124eb57fe5b049050809150509392505050565b606061255b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166125e89092919063ffffffff16565b90506000815111156125e35780806020019051602081101561257c57600080fd5b81019080805190602001909291905050506125e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806128c6602a913960400191505060405180910390fd5b5b505050565b60606125f78484600085612600565b90509392505050565b606061260b85612806565b61267d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106126cd57805182526020820191506020810190506020830392506126aa565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461272f576040519150601f19603f3d011682016040523d82523d6000602084013e612734565b606091505b509150915081156127495780925050506127fe565b60008151111561275c5780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156127c35780820151818401526020810190506127a8565b50505050905090810190601f1680156127f05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561284857506000801b8214155b9250505091905056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7743616e6e6f7420776974686472617720746865207374616b696e67206f72207265776172647320746f6b656e735361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220e5e7ac3b8595fc1d3fcc608b51f25a747c9733feab022a9e740b0c97398c209d64736f6c63430007010033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a9402793f40b8e4a2cb79555bbabd45e40fae0e3000000000000000000000000f7239a3be607ad88a06eaee37ae1b92c1b440548
-----Decoded View---------------
Arg [0] : _rewardsToken (address): 0xA9402793F40B8e4A2cb79555bbaBD45E40fAe0E3
Arg [1] : _stakingToken (address): 0xf7239a3bE607ad88a06eAeE37Ae1b92C1B440548
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000a9402793f40b8e4a2cb79555bbabd45e40fae0e3
Arg [1] : 000000000000000000000000f7239a3be607ad88a06eaee37ae1b92c1b440548
Deployed Bytecode Sourcemap
26481:5696:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28215:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27155:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27517:93;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28421:121;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28998:424;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26770:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29931:1069;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29430:307;;;:::i;:::-;;29850:73;;;:::i;:::-;;22712:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27618:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2577:148;;;:::i;:::-;;26663:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26734:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27738:131;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31103:460;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27091:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1935:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28550:440;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26816:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27877:330;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26630:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26852:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26896:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29745:97;;;:::i;:::-;;26696:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2880:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27002:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28215:198;28269:7;28296:109;28388:7;:16;28396:7;28388:16;;;;;;;;;;;;;;;;28296:87;28378:4;28296:77;28319:53;28340:22;:31;28363:7;28340:31;;;;;;;;;;;;;;;;28319:16;:14;:16::i;:::-;:20;;:53;;;;:::i;:::-;28296:9;:18;28306:7;28296:18;;;;;;;;;;;;;;;;:22;;:77;;;;:::i;:::-;:81;;:87;;;;:::i;:::-;:91;;:109;;;;:::i;:::-;28289:116;;28215:198;;;:::o;27155:42::-;;;;;;;;;;;;;;;;;:::o;27517:93::-;27563:7;27590:12;;27583:19;;27517:93;:::o;28421:121::-;28476:7;28503:31;28518:15;;28503:10;;:14;;:31;;;;:::i;:::-;28496:38;;28421:121;:::o;28998:424::-;25535:1;26132:7;;:19;;26124:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25535:1;26265:7;:18;;;;29065:10:::1;31644:16;:14;:16::i;:::-;31621:20;:39;;;;31688:26;:24;:26::i;:::-;31671:14;:43;;;;31748:1;31729:21;;:7;:21;;;31725:157;;31786:15;31793:7;31786:6;:15::i;:::-;31767:7;:16;31775:7;31767:16;;;;;;;;;;;;;;;:34;;;;31850:20;;31816:22;:31;31839:7;31816:31;;;;;;;;;;;;;;;:54;;;;31725:157;29105:1:::2;29096:6;:10;29088:40;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;29171:12;29147:9;:21;29157:10;29147:21;;;;;;;;;;;;;;;;:36;29139:56;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;29221:24;29238:6;29221:12;;:16;;:24;;;;:::i;:::-;29206:12;:39;;;;29280:33;29306:6;29280:9;:21;29290:10;29280:21;;;;;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;29256:9;:21;29266:10;29256:21;;;;;;;;;;;;;;;:57;;;;29324:45;29350:10;29362:6;29324:12;;;;;;;;;;;:25;;;;:45;;;;;:::i;:::-;29395:10;29385:29;;;29407:6;29385:29;;;;;;;;;;;;;;;;;;26296:1:::1;25491::::0;26444:7;:22;;;;28998:424;:::o;26770:39::-;;;;:::o;29931:1069::-;2157:12;:10;:12::i;:::-;2147:22;;:6;;;;;;;;;;:22;;;2139:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30015:1:::1;31644:16;:14;:16::i;:::-;31621:20;:39;;;;31688:26;:24;:26::i;:::-;31671:14;:43;;;;31748:1;31729:21;;:7;:21;;;31725:157;;31786:15;31793:7;31786:6;:15::i;:::-;31767:7;:16;31775:7;31767:16;;;;;;;;;;;;;;;:34;;;;31850:20;;31816:22;:31;31839:7;31816:31;;;;;;;;;;;;;;;:54;;;;31725:157;30053:12:::2;;30034:15;:31;30030:318;;30095:27;30106:15;;30095:6;:10;;:27;;;;:::i;:::-;30082:10;:40;;;;30030:318;;;30155:17;30175:33;30192:15;30175:12;;:16;;:33;;;;:::i;:::-;30155:53;;30223:16;30242:25;30256:10;;30242:9;:13;;:25;;;;:::i;:::-;30223:44;;30295:41;30320:15;;30295:20;30306:8;30295:6;:10;;:20;;;;:::i;:::-;:24;;:41;;;;:::i;:::-;30282:10;:54;;;;30030:318;;;30708:12;30723;;;;;;;;;;;:22;;;30754:4;30723:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;30708:52;;30793:28;30805:15;;30793:7;:11;;:28;;;;:::i;:::-;30779:10;;:42;;30771:79;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;30880:15;30863:14;:32;;;;30921:36;30941:15;;30921;:19;;:36;;;;:::i;:::-;30906:12;:51;;;;30973:19;30985:6;30973:19;;;;;;;;;;;;;;;;;;31892:1;2217::::1;29931:1069:::0;:::o;29430:307::-;25535:1;26132:7;;:19;;26124:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25535:1;26265:7;:18;;;;29484:10:::1;31644:16;:14;:16::i;:::-;31621:20;:39;;;;31688:26;:24;:26::i;:::-;31671:14;:43;;;;31748:1;31729:21;;:7;:21;;;31725:157;;31786:15;31793:7;31786:6;:15::i;:::-;31767:7;:16;31775:7;31767:16;;;;;;;;;;;;;;;:34;;;;31850:20;;31816:22;:31;31839:7;31816:31;;;;;;;;;;;;;;;:54;;;;31725:157;29507:14:::2;29524:7;:19;29532:10;29524:19;;;;;;;;;;;;;;;;29507:36;;29567:1;29558:6;:10;29554:176;;;29607:1;29585:7;:19;29593:10;29585:19;;;;;;;;;;;;;;;:23;;;;29623:45;29649:10;29661:6;29623:12;;;;;;;;;;;:25;;;;:45;;;;;:::i;:::-;29699:10;29688:30;;;29711:6;29688:30;;;;;;;;;;;;;;;;;;29554:176;31892:1;26296::::1;25491::::0;26444:7;:22;;;;29430:307::o;29850:73::-;2157:12;:10;:12::i;:::-;2147:22;;:6;;;;;;;;;;:22;;;2139:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29899:16:::1;:14;:16::i;:::-;29850:73::o:0;22712:78::-;22751:4;22775:7;;;;;;;;;;;22768:14;;22712:78;:::o;27618:112::-;27677:7;27704:9;:18;27714:7;27704:18;;;;;;;;;;;;;;;;27697:25;;27618:112;;;:::o;2577:148::-;2157:12;:10;:12::i;:::-;2147:22;;:6;;;;;;;;;;:22;;;2139:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2684:1:::1;2647:40;;2668:6;::::0;::::1;;;;;;;;2647:40;;;;;;;;;;;;2715:1;2698:6;::::0;:19:::1;;;;;;;;;;;;;;;;;;2577:148::o:0;26663:26::-;;;;;;;;;;;;;:::o;26734:29::-;;;;:::o;27738:131::-;27795:7;27822:39;27831:15;27848:12;;27822:8;:39::i;:::-;27815:46;;27738:131;:::o;31103:460::-;2157:12;:10;:12::i;:::-;2147:22;;:6;;;;;;;;;;:22;;;2139:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31310:12:::1;;;;;;;;;;;31286:37;;:12;:37;;;;:78;;;;;31351:12;;;;;;;;;;;31327:37;;:12;:37;;;;31286:78;31264:173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31448:55;31482:7;:5;:7::i;:::-;31491:11;31455:12;31448:33;;;;:55;;;;;:::i;:::-;31519:36;31529:12;31543:11;31519:36;;;;;;;;;;;;;;;;;;;;;;;;;;31103:460:::0;;:::o;27091:57::-;;;;;;;;;;;;;;;;;:::o;1935:79::-;1973:7;2000:6;;;;;;;;;;1993:13;;1935:79;:::o;28550:440::-;25535:1;26132:7;;:19;;26124:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25535:1;26265:7;:18;;;;23030:7:::1;;;;;;;;;;;23029:8;23021:37;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;28630:10:::2;31644:16;:14;:16::i;:::-;31621:20;:39;;;;31688:26;:24;:26::i;:::-;31671:14;:43;;;;31748:1;31729:21;;:7;:21;;;31725:157;;31786:15;31793:7;31786:6;:15::i;:::-;31767:7;:16;31775:7;31767:16;;;;;;;;;;;;;;;:34;;;;31850:20;;31816:22;:31;31839:7;31816:31;;;;;;;;;;;;;;;:54;;;;31725:157;28670:1:::3;28661:6;:10;28653:37;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;28716:24;28733:6;28716:12;;:16;;:24;;;;:::i;:::-;28701:12;:39;;;;28775:33;28801:6;28775:9;:21;28785:10;28775:21;;;;;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;28751:9;:21;28761:10;28751:21;;;;;;;;;;;;;;;:57;;;;28819:64;28849:10;28869:4;28876:6;28819:12;;;;;;;;;;;:29;;;;:64;;;;;;:::i;:::-;28918:22;28927:12;28918:4;;:8;;:22;;;;:::i;:::-;28894:9;:21;28904:10;28894:21;;;;;;;;;;;;;;;:46;;;;28963:10;28956:26;;;28975:6;28956:26;;;;;;;;;;;;;;;;;;23069:1:::2;25491::::0;26444:7;:22;;;;28550:440;:::o;26816:29::-;;;;:::o;27877:330::-;27924:7;27964:1;27948:12;;:17;27944:77;;;27989:20;;27982:27;;;;27944:77;28051:148;28094:90;28171:12;;28094:72;28161:4;28094:62;28145:10;;28094:46;28125:14;;28094:26;:24;:26::i;:::-;:30;;:46;;;;:::i;:::-;:50;;:62;;;;:::i;:::-;:66;;:72;;;;:::i;:::-;:76;;:90;;;;:::i;:::-;28051:20;;:24;;:148;;;;:::i;:::-;28031:168;;27877:330;;:::o;26630:26::-;;;;;;;;;;;;;:::o;26852:35::-;;;;:::o;26896:41::-;;;;;;;;;;;;;;;;;:::o;29745:97::-;29781:31;29790:9;:21;29800:10;29790:21;;;;;;;;;;;;;;;;29781:8;:31::i;:::-;29823:11;:9;:11::i;:::-;29745:97::o;26696:31::-;;;;:::o;2880:244::-;2157:12;:10;:12::i;:::-;2147:22;;:6;;;;;;;;;;:22;;;2139:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2989:1:::1;2969:22;;:8;:22;;;;2961:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3079:8;3050:38;;3071:6;::::0;::::1;;;;;;;;3050:38;;;;;;;;;;;;3108:8;3099:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;2880:244:::0;:::o;27002:27::-;;;;:::o;7935:136::-;7993:7;8020:43;8024:1;8027;8020:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;8013:50;;7935:136;;;;:::o;8825:471::-;8883:7;9133:1;9128;:6;9124:47;;;9158:1;9151:8;;;;9124:47;9183:9;9199:1;9195;:5;9183:17;;9228:1;9223;9219;:5;;;;;;:10;9211:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9287:1;9280:8;;;8825:471;;;;;:::o;9772:132::-;9830:7;9857:39;9861:1;9864;9857:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;9850:46;;9772:132;;;;:::o;7471:181::-;7529:7;7549:9;7565:1;7561;:5;7549:17;;7590:1;7585;:6;;7577:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7643:1;7636:8;;;7471:181;;;;:::o;18659:177::-;18742:86;18762:5;18792:23;;;18817:2;18821:5;18769:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18742:19;:86::i;:::-;18659:177;;;:::o;577:106::-;630:15;665:10;658:17;;577:106;:::o;23761:120::-;23306:7;;;;;;;;;;;23298:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23830:5:::1;23820:7;;:15;;;;;;;;;;;;;;;;;;23851:22;23860:12;:10;:12::i;:::-;23851:22;;;;;;;;;;;;;;;;;;;;23761:120::o:0;3483:106::-;3541:7;3572:1;3568;:5;:13;;3580:1;3568:13;;;3576:1;3568:13;3561:20;;3483:106;;;;:::o;18844:205::-;18945:96;18965:5;18995:27;;;19024:4;19030:2;19034:5;18972:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18945:19;:96::i;:::-;18844:205;;;;:::o;8374:192::-;8460:7;8493:1;8488;:6;;8496:12;8480:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8520:9;8536:1;8532;:5;8520:17;;8557:1;8550:8;;;8374:192;;;;;:::o;10400:278::-;10486:7;10518:1;10514;:5;10521:12;10506:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10545:9;10561:1;10557;:5;;;;;;10545:17;;10669:1;10662:8;;;10400:278;;;;;:::o;20964:761::-;21388:23;21414:69;21442:4;21414:69;;;;;;;;;;;;;;;;;21422:5;21414:27;;;;:69;;;;;:::i;:::-;21388:95;;21518:1;21498:10;:17;:21;21494:224;;;21640:10;21629:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21621:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21494:224;20964:761;;;:::o;15732:196::-;15835:12;15867:53;15890:6;15898:4;15904:1;15907:12;15867:22;:53::i;:::-;15860:60;;15732:196;;;;;:::o;17109:979::-;17239:12;17272:18;17283:6;17272:10;:18::i;:::-;17264:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17398:12;17412:23;17439:6;:11;;17459:8;17470:4;17439:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17397:78;;;;17490:7;17486:595;;;17521:10;17514:17;;;;;;17486:595;17655:1;17635:10;:17;:21;17631:439;;;17898:10;17892:17;17959:15;17946:10;17942:2;17938:19;17931:44;17846:148;18041:12;18034:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17109:979;;;;;;;:::o;12617:619::-;12677:4;12939:16;12966:19;12988:66;12966:88;;;;13157:7;13145:20;13133:32;;13197:11;13185:8;:23;;:42;;;;;13224:3;13212:15;;:8;:15;;13185:42;13177:51;;;;12617:619;;;:::o
Swarm Source
ipfs://e5e7ac3b8595fc1d3fcc608b51f25a747c9733feab022a9e740b0c97398c209d
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 ]
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.