Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 452 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Exit | 17390221 | 584 days ago | IN | 0 ETH | 0.00336164 | ||||
Exit | 16164236 | 756 days ago | IN | 0 ETH | 0.00134209 | ||||
Exit | 15678402 | 824 days ago | IN | 0 ETH | 0.00130081 | ||||
Exit | 14328847 | 1037 days ago | IN | 0 ETH | 0.0049281 | ||||
Get Reward | 14162649 | 1063 days ago | IN | 0 ETH | 0.00750135 | ||||
Exit | 14148664 | 1065 days ago | IN | 0 ETH | 0.006965 | ||||
Get Reward | 14076280 | 1076 days ago | IN | 0 ETH | 0.01344597 | ||||
Withdraw | 14075832 | 1076 days ago | IN | 0 ETH | 0.01194303 | ||||
Exit | 14035871 | 1083 days ago | IN | 0 ETH | 0.00639343 | ||||
Exit | 14034978 | 1083 days ago | IN | 0 ETH | 0.00973776 | ||||
Exit | 13952162 | 1095 days ago | IN | 0 ETH | 0.00337561 | ||||
Exit | 13951708 | 1096 days ago | IN | 0 ETH | 0.0075656 | ||||
Exit | 13882521 | 1106 days ago | IN | 0 ETH | 0.0075656 | ||||
Exit | 13881123 | 1107 days ago | IN | 0 ETH | 0.0075656 | ||||
Exit | 13845138 | 1112 days ago | IN | 0 ETH | 0.0075656 | ||||
Exit | 13815791 | 1117 days ago | IN | 0 ETH | 0.00428387 | ||||
Exit | 13803895 | 1118 days ago | IN | 0 ETH | 0.0075656 | ||||
Exit | 13782652 | 1122 days ago | IN | 0 ETH | 0.0075656 | ||||
Exit | 13781183 | 1122 days ago | IN | 0 ETH | 0.0075656 | ||||
Exit | 13776501 | 1123 days ago | IN | 0 ETH | 0.00583202 | ||||
Get Reward | 13775976 | 1123 days ago | IN | 0 ETH | 0.00402104 | ||||
Withdraw | 13775972 | 1123 days ago | IN | 0 ETH | 0.0047364 | ||||
Exit | 13774515 | 1123 days ago | IN | 0 ETH | 0.00893326 | ||||
Exit | 13773022 | 1123 days ago | IN | 0 ETH | 0.00788193 | ||||
Exit | 13771216 | 1124 days ago | IN | 0 ETH | 0.0084417 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
UniEDDARewardsPool
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-03-11 */ pragma solidity ^0.6.6; // SPDX-License-Identifier: MIT /** * @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); } } // SPDX-License-Identifier: MIT /** * @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; } } // SPDX-License-Identifier: MIT /* * @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; } } // SPDX-License-Identifier: MIT /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { 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; } } // SPDX-License-Identifier: MIT /** * @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 /** * @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); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // SPDX-License-Identifier: MIT /** * @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 () internal { _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 /** * @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"); } } } // Inheritance abstract contract IRewardDistributionRecipient is Ownable { address rewardDistribution; function notifyRewardAmount(uint256 reward) external virtual; modifier onlyRewardDistribution() { require(_msgSender() == rewardDistribution, "Caller is not reward distribution"); _; } function setRewardDistribution(address _rewardDistribution) external onlyOwner { rewardDistribution = _rewardDistribution; } } // SPDX-License-Identifier: UNLICENSED contract LPTokenWrapper { using SafeMath for uint256; using SafeERC20 for IERC20; IERC20 public lp; uint256 private _totalSupply; mapping(address => uint256) private _balances; constructor(address _lp) public { lp = IERC20(_lp); } function totalSupply() public view returns (uint256) { return _totalSupply; } function balanceOf(address account) public view returns (uint256) { return _balances[account]; } function stake(uint256 amount) public virtual { _totalSupply = _totalSupply.add(amount); _balances[msg.sender] = _balances[msg.sender].add(amount); lp.safeTransferFrom(msg.sender, address(this), amount); } function withdraw(uint256 amount) public virtual { _totalSupply = _totalSupply.sub(amount); _balances[msg.sender] = _balances[msg.sender].sub(amount); lp.safeTransfer(msg.sender, amount); } } // File: @openzeppelin/contracts/math/Math.sol contract RewardsPool is LPTokenWrapper, IRewardDistributionRecipient, ReentrancyGuard { IERC20 public outToken; uint256 public constant DURATION = 7 days; uint256 public stakeDurationSeconds = 3 days; uint256 public constant MIN_STAKE_DURATION_SECONDS = 2 minutes; uint256 public constant REWARD_DELAY_SECONDS = 1 minutes; uint256 public periodFinish = 0; uint256 public rewardRate = 0; uint256 public lastUpdateTime; uint256 public rewardPerTokenStored; mapping(address => uint256) public userRewardPerTokenPaid; mapping(address => uint256) public rewards; mapping(address => uint256) public canWithdrawTime; mapping(address => uint256) public canGetRewardTime; 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); constructor( address lp_, IERC20 outToken_, address rewardDistribution_, uint256 stakeDurationSeconds_ ) public LPTokenWrapper(lp_) { require(stakeDurationSeconds_ >= MIN_STAKE_DURATION_SECONDS, "!minStakeDurationSeconds"); rewardDistribution = rewardDistribution_; outToken = outToken_; stakeDurationSeconds = stakeDurationSeconds_; } modifier updateReward(address account) { rewardPerTokenStored = rewardPerToken(); lastUpdateTime = lastTimeRewardApplicable(); if (account != address(0)) { rewards[account] = earned(account); userRewardPerTokenPaid[account] = rewardPerTokenStored; } _; } 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 balanceOf(account).mul(rewardPerToken().sub(userRewardPerTokenPaid[account])).div(1e18).add(rewards[account]); } function stake(uint256 amount) public override nonReentrant updateReward(msg.sender) { require(amount > 0, "Cannot stake 0"); canWithdrawTime[msg.sender] = now + stakeDurationSeconds; canGetRewardTime[msg.sender] = now + REWARD_DELAY_SECONDS; emit Staked(msg.sender, amount); super.stake(amount); } function withdraw(uint256 amount) public override nonReentrant updateReward(msg.sender) { require(amount > 0, "Cannot withdraw 0"); require(now > canWithdrawTime[msg.sender], "The mortgage will take some time to redeem"); emit Withdrawn(msg.sender, amount); super.withdraw(amount); } // Is not `nonReentrant` because of calls have this modifier. function exit() external { withdraw(balanceOf(msg.sender)); getReward(); } function getReward() public nonReentrant updateReward(msg.sender) { require(now > canGetRewardTime[msg.sender], "Delay after Stake is required"); uint256 reward = earned(msg.sender); if (reward > 0) { rewards[msg.sender] = 0; emit RewardPaid(msg.sender, reward); outToken.safeTransfer(msg.sender, reward); } } function notifyRewardAmount(uint256 reward) external override nonReentrant onlyRewardDistribution updateReward(address(0)) { if (block.timestamp >= periodFinish) { rewardRate = reward.div(DURATION); } else { uint256 remaining = periodFinish.sub(block.timestamp); uint256 leftover = remaining.mul(rewardRate); rewardRate = reward.add(leftover).div(DURATION); } lastUpdateTime = block.timestamp; periodFinish = block.timestamp.add(DURATION); emit RewardAdded(reward); } function lockedDetails() external view returns (bool, uint256) { return (false, periodFinish); } function voteLock(address account) external view returns (uint256) { return (canWithdrawTime[account]); } } contract UniEDDARewardsPool is RewardsPool { constructor( address lp_, IERC20 outToken_, address rewardDistribution_, uint256 stakeDurationSeconds_ ) public RewardsPool(lp_, outToken_, rewardDistribution_, stakeDurationSeconds_) {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"lp_","type":"address"},{"internalType":"contract IERC20","name":"outToken_","type":"address"},{"internalType":"address","name":"rewardDistribution_","type":"address"},{"internalType":"uint256","name":"stakeDurationSeconds_","type":"uint256"}],"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":"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":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[],"name":"DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_STAKE_DURATION_SECONDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REWARD_DELAY_SECONDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"canGetRewardTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"canWithdrawTime","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":"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":"lockedDetails","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lp","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"notifyRewardAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"outToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"periodFinish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"_rewardDistribution","type":"address"}],"name":"setRewardDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakeDurationSeconds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"userRewardPerTokenPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"voteLock","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
60806040526203f480600755600060085560006009553480156200002257600080fd5b50604051620029c3380380620029c3833981810160405260808110156200004857600080fd5b81019080805190602001909291908051906020019092919080519060200190929190805190602001909291905050508383838383806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506000620000cf6200028560201b60201c565b905080600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060016005819055506078811015620001ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f216d696e5374616b654475726174696f6e5365636f6e6473000000000000000081525060200191505060405180910390fd5b81600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060078190555050505050505050506200028d565b600033905090565b612726806200029d6000396000f3fe608060405234801561001057600080fd5b50600436106101d95760003560e01c8063715018a611610104578063c8f33c91116100a2578063e9fad8ee11610071578063e9fad8ee1461073d578063ebe2b12b14610747578063f2fde38b14610765578063fe535ffa146107a9576101d9565b8063c8f33c91146106c5578063cd3daf9d146106e3578063d122e8b314610701578063df136d651461071f576101d9565b80638b876347116100de5780638b8763471461059d5780638da5cb5b146105f5578063a694fc3a1461063f578063b6b590721461066d576101d9565b8063715018a6146105575780637b0a47ee1461056157806380faa57d1461057f576101d9565b8063313c06a01161017c5780633e6e8f231161014b5780633e6e8f23146104315780634e27e9161461048957806351d35dd5146104e157806370a08231146104ff576101d9565b8063313c06a01461036557806333db82fd146103af5780633c6b16ab146103f95780633d18b91214610427576101d9565b80630d68b761116101b85780630d68b761146102b757806318160ddd146102fb5780631be05289146103195780632e1a7d4d14610337576101d9565b80628cc262146101de57806305e5f145146102365780630700037d1461025f575b600080fd5b610220600480360360208110156101f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506107c7565b6040518082815260200191505060405180910390f35b61023e6108ae565b60405180831515151581526020018281526020019250505060405180910390f35b6102a16004803603602081101561027557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506108be565b6040518082815260200191505060405180910390f35b6102f9600480360360208110156102cd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506108d6565b005b6103036109e4565b6040518082815260200191505060405180910390f35b6103216109ee565b6040518082815260200191505060405180910390f35b6103636004803603602081101561034d57600080fd5b81019080803590602001909291905050506109f5565b005b61036d610cca565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103b7610cef565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104256004803603602081101561040f57600080fd5b8101908080359060200190929190505050610d15565b005b61042f61101b565b005b6104736004803603602081101561044757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611337565b6040518082815260200191505060405180910390f35b6104cb6004803603602081101561049f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061134f565b6040518082815260200191505060405180910390f35b6104e9611398565b6040518082815260200191505060405180910390f35b6105416004803603602081101561051557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061139d565b6040518082815260200191505060405180910390f35b61055f6113e6565b005b610569611571565b6040518082815260200191505060405180910390f35b610587611577565b6040518082815260200191505060405180910390f35b6105df600480360360208110156105b357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061158a565b6040518082815260200191505060405180910390f35b6105fd6115a2565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61066b6004803603602081101561065557600080fd5b81019080803590602001909291905050506115cc565b005b6106af6004803603602081101561068357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611899565b6040518082815260200191505060405180910390f35b6106cd6118b1565b6040518082815260200191505060405180910390f35b6106eb6118b7565b6040518082815260200191505060405180910390f35b61070961194f565b6040518082815260200191505060405180910390f35b610727611954565b6040518082815260200191505060405180910390f35b61074561195a565b005b61074f611975565b6040518082815260200191505060405180910390f35b6107a76004803603602081101561077b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061197b565b005b6107b1611b8b565b6040518082815260200191505060405180910390f35b60006108a7600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610899670de0b6b3a764000061088b610874600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108666118b7565b611b9190919063ffffffff16565b61087d8861139d565b611bdb90919063ffffffff16565b611c6190919063ffffffff16565b611cab90919063ffffffff16565b9050919050565b6000806000600854915091509091565b600d6020528060005260406000206000915090505481565b6108de611d33565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600154905090565b62093a8081565b60026005541415610a6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260058190555033610a7f6118b7565b600b81905550610a8d611577565b600a81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b5a57610ad0816107c7565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60008211610bd0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f43616e6e6f74207769746864726177203000000000000000000000000000000081525060200191505060405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544211610c67576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061265b602a913960400191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5836040518082815260200191505060405180910390a2610cbe82611d3b565b50600160058190555050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60026005541415610d8e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600581905550600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610dd7611d33565b73ffffffffffffffffffffffffffffffffffffffff1614610e43576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126a66021913960400191505060405180910390fd5b6000610e4d6118b7565b600b81905550610e5b611577565b600a81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f2857610e9e816107c7565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6008544210610f5257610f4762093a8083611c6190919063ffffffff16565b600981905550610fb5565b6000610f6942600854611b9190919063ffffffff16565b90506000610f8260095483611bdb90919063ffffffff16565b9050610fac62093a80610f9e8387611cab90919063ffffffff16565b611c6190919063ffffffff16565b60098190555050505b42600a81905550610fd262093a8042611cab90919063ffffffff16565b6008819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d826040518082815260200191505060405180910390a150600160058190555050565b60026005541415611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600581905550336110a56118b7565b600b819055506110b3611577565b600a81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611180576110f6816107c7565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544211611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f44656c6179206166746572205374616b6520697320726571756972656400000081525060200191505060405180910390fd5b600061123f336107c7565b9050600081111561132b576000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a261132a3382600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e3a9092919063ffffffff16565b5b50506001600581905550565b600f6020528060005260406000206000915090505481565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b603c81565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113ee611d33565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60095481565b600061158542600854611ef2565b905090565b600c6020528060005260406000206000915090505481565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60026005541415611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600581905550336116566118b7565b600b81905550611664611577565b600a81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611731576116a7816107c7565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600082116117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f43616e6e6f74207374616b65203000000000000000000000000000000000000081525060200191505060405180910390fd5b6007544201600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550603c4201600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d836040518082815260200191505060405180910390a261188d82611f0b565b50600160058190555050565b600e6020528060005260406000206000915090505481565b600a5481565b6000806118c26109e4565b14156118d257600b54905061194c565b6119496119386118e06109e4565b61192a670de0b6b3a764000061191c60095461190e600a54611900611577565b611b9190919063ffffffff16565b611bdb90919063ffffffff16565b611bdb90919063ffffffff16565b611c6190919063ffffffff16565b600b54611cab90919063ffffffff16565b90505b90565b607881565b600b5481565b61196b6119663361139d565b6109f5565b61197361101b565b565b60085481565b611983611d33565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a45576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611acb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061260f6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60075481565b6000611bd383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061200c565b905092915050565b600080831415611bee5760009050611c5b565b6000828402905082848281611bff57fe5b0414611c56576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126856021913960400191505060405180910390fd5b809150505b92915050565b6000611ca383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506120cc565b905092915050565b600080828401905083811015611d29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b611d5081600154611b9190919063ffffffff16565b600181905550611da881600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b9190919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611e3733826000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e3a9092919063ffffffff16565b50565b611eed8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612192565b505050565b6000818310611f015781611f03565b825b905092915050565b611f2081600154611cab90919063ffffffff16565b600181905550611f7881600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cab90919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506120093330836000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612281909392919063ffffffff16565b50565b60008383111582906120b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561207e578082015181840152602081019050612063565b50505050905090810190601f1680156120ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008083118290612178576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561213d578082015181840152602081019050612122565b50505050905090810190601f16801561216a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161218457fe5b049050809150509392505050565b60606121f4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661236e9092919063ffffffff16565b905060008151111561227c5780806020019051602081101561221557600080fd5b810190808051906020019092919050505061227b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806126c7602a913960400191505060405180910390fd5b5b505050565b612368846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612192565b50505050565b606061237d8484600085612386565b90509392505050565b6060824710156123e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806126356026913960400191505060405180910390fd5b6123ea8561252f565b61245c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106124ac5780518252602082019150602081019050602083039250612489565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461250e576040519150601f19603f3d011682016040523d82523d6000602084013e612513565b606091505b5091509150612523828286612542565b92505050949350505050565b600080823b905060008111915050919050565b6060831561255257829050612607565b6000835111156125655782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156125cc5780820151818401526020810190506125b1565b50505050905090810190601f1680156125f95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b939250505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c546865206d6f7274676167652077696c6c2074616b6520736f6d652074696d6520746f2072656465656d536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7743616c6c6572206973206e6f742072657761726420646973747269627574696f6e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a264697066735822122054601833e4dec7f5b4fa3e21fb26dbe0763659d58a2624b3e11224c57daa31cb64736f6c63430006060033000000000000000000000000f44e8ff3bb644479124e691bf572f7813a1bc499000000000000000000000000fbbe9b1142c699512545f47937ee6fae0e4b0aa900000000000000000000000033e3da186e223acc94bc3484127eceb8b54b67040000000000000000000000000000000000000000000000000000000000000078
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101d95760003560e01c8063715018a611610104578063c8f33c91116100a2578063e9fad8ee11610071578063e9fad8ee1461073d578063ebe2b12b14610747578063f2fde38b14610765578063fe535ffa146107a9576101d9565b8063c8f33c91146106c5578063cd3daf9d146106e3578063d122e8b314610701578063df136d651461071f576101d9565b80638b876347116100de5780638b8763471461059d5780638da5cb5b146105f5578063a694fc3a1461063f578063b6b590721461066d576101d9565b8063715018a6146105575780637b0a47ee1461056157806380faa57d1461057f576101d9565b8063313c06a01161017c5780633e6e8f231161014b5780633e6e8f23146104315780634e27e9161461048957806351d35dd5146104e157806370a08231146104ff576101d9565b8063313c06a01461036557806333db82fd146103af5780633c6b16ab146103f95780633d18b91214610427576101d9565b80630d68b761116101b85780630d68b761146102b757806318160ddd146102fb5780631be05289146103195780632e1a7d4d14610337576101d9565b80628cc262146101de57806305e5f145146102365780630700037d1461025f575b600080fd5b610220600480360360208110156101f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506107c7565b6040518082815260200191505060405180910390f35b61023e6108ae565b60405180831515151581526020018281526020019250505060405180910390f35b6102a16004803603602081101561027557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506108be565b6040518082815260200191505060405180910390f35b6102f9600480360360208110156102cd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506108d6565b005b6103036109e4565b6040518082815260200191505060405180910390f35b6103216109ee565b6040518082815260200191505060405180910390f35b6103636004803603602081101561034d57600080fd5b81019080803590602001909291905050506109f5565b005b61036d610cca565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103b7610cef565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104256004803603602081101561040f57600080fd5b8101908080359060200190929190505050610d15565b005b61042f61101b565b005b6104736004803603602081101561044757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611337565b6040518082815260200191505060405180910390f35b6104cb6004803603602081101561049f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061134f565b6040518082815260200191505060405180910390f35b6104e9611398565b6040518082815260200191505060405180910390f35b6105416004803603602081101561051557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061139d565b6040518082815260200191505060405180910390f35b61055f6113e6565b005b610569611571565b6040518082815260200191505060405180910390f35b610587611577565b6040518082815260200191505060405180910390f35b6105df600480360360208110156105b357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061158a565b6040518082815260200191505060405180910390f35b6105fd6115a2565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61066b6004803603602081101561065557600080fd5b81019080803590602001909291905050506115cc565b005b6106af6004803603602081101561068357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611899565b6040518082815260200191505060405180910390f35b6106cd6118b1565b6040518082815260200191505060405180910390f35b6106eb6118b7565b6040518082815260200191505060405180910390f35b61070961194f565b6040518082815260200191505060405180910390f35b610727611954565b6040518082815260200191505060405180910390f35b61074561195a565b005b61074f611975565b6040518082815260200191505060405180910390f35b6107a76004803603602081101561077b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061197b565b005b6107b1611b8b565b6040518082815260200191505060405180910390f35b60006108a7600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610899670de0b6b3a764000061088b610874600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108666118b7565b611b9190919063ffffffff16565b61087d8861139d565b611bdb90919063ffffffff16565b611c6190919063ffffffff16565b611cab90919063ffffffff16565b9050919050565b6000806000600854915091509091565b600d6020528060005260406000206000915090505481565b6108de611d33565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600154905090565b62093a8081565b60026005541415610a6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260058190555033610a7f6118b7565b600b81905550610a8d611577565b600a81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b5a57610ad0816107c7565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60008211610bd0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f43616e6e6f74207769746864726177203000000000000000000000000000000081525060200191505060405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544211610c67576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061265b602a913960400191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5836040518082815260200191505060405180910390a2610cbe82611d3b565b50600160058190555050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60026005541415610d8e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600581905550600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610dd7611d33565b73ffffffffffffffffffffffffffffffffffffffff1614610e43576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126a66021913960400191505060405180910390fd5b6000610e4d6118b7565b600b81905550610e5b611577565b600a81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f2857610e9e816107c7565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6008544210610f5257610f4762093a8083611c6190919063ffffffff16565b600981905550610fb5565b6000610f6942600854611b9190919063ffffffff16565b90506000610f8260095483611bdb90919063ffffffff16565b9050610fac62093a80610f9e8387611cab90919063ffffffff16565b611c6190919063ffffffff16565b60098190555050505b42600a81905550610fd262093a8042611cab90919063ffffffff16565b6008819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d826040518082815260200191505060405180910390a150600160058190555050565b60026005541415611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600581905550336110a56118b7565b600b819055506110b3611577565b600a81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611180576110f6816107c7565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544211611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f44656c6179206166746572205374616b6520697320726571756972656400000081525060200191505060405180910390fd5b600061123f336107c7565b9050600081111561132b576000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a261132a3382600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e3a9092919063ffffffff16565b5b50506001600581905550565b600f6020528060005260406000206000915090505481565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b603c81565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113ee611d33565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60095481565b600061158542600854611ef2565b905090565b600c6020528060005260406000206000915090505481565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60026005541415611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600581905550336116566118b7565b600b81905550611664611577565b600a81905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611731576116a7816107c7565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600082116117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f43616e6e6f74207374616b65203000000000000000000000000000000000000081525060200191505060405180910390fd5b6007544201600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550603c4201600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d836040518082815260200191505060405180910390a261188d82611f0b565b50600160058190555050565b600e6020528060005260406000206000915090505481565b600a5481565b6000806118c26109e4565b14156118d257600b54905061194c565b6119496119386118e06109e4565b61192a670de0b6b3a764000061191c60095461190e600a54611900611577565b611b9190919063ffffffff16565b611bdb90919063ffffffff16565b611bdb90919063ffffffff16565b611c6190919063ffffffff16565b600b54611cab90919063ffffffff16565b90505b90565b607881565b600b5481565b61196b6119663361139d565b6109f5565b61197361101b565b565b60085481565b611983611d33565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a45576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611acb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061260f6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60075481565b6000611bd383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061200c565b905092915050565b600080831415611bee5760009050611c5b565b6000828402905082848281611bff57fe5b0414611c56576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126856021913960400191505060405180910390fd5b809150505b92915050565b6000611ca383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506120cc565b905092915050565b600080828401905083811015611d29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b611d5081600154611b9190919063ffffffff16565b600181905550611da881600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b9190919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611e3733826000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e3a9092919063ffffffff16565b50565b611eed8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612192565b505050565b6000818310611f015781611f03565b825b905092915050565b611f2081600154611cab90919063ffffffff16565b600181905550611f7881600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cab90919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506120093330836000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612281909392919063ffffffff16565b50565b60008383111582906120b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561207e578082015181840152602081019050612063565b50505050905090810190601f1680156120ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008083118290612178576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561213d578082015181840152602081019050612122565b50505050905090810190601f16801561216a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161218457fe5b049050809150509392505050565b60606121f4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661236e9092919063ffffffff16565b905060008151111561227c5780806020019051602081101561221557600080fd5b810190808051906020019092919050505061227b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806126c7602a913960400191505060405180910390fd5b5b505050565b612368846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612192565b50505050565b606061237d8484600085612386565b90509392505050565b6060824710156123e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806126356026913960400191505060405180910390fd5b6123ea8561252f565b61245c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106124ac5780518252602082019150602081019050602083039250612489565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461250e576040519150601f19603f3d011682016040523d82523d6000602084013e612513565b606091505b5091509150612523828286612542565b92505050949350505050565b600080823b905060008111915050919050565b6060831561255257829050612607565b6000835111156125655782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156125cc5780820151818401526020810190506125b1565b50505050905090810190601f1680156125f95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b939250505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c546865206d6f7274676167652077696c6c2074616b6520736f6d652074696d6520746f2072656465656d536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7743616c6c6572206973206e6f742072657761726420646973747269627574696f6e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a264697066735822122054601833e4dec7f5b4fa3e21fb26dbe0763659d58a2624b3e11224c57daa31cb64736f6c63430006060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f44e8ff3bb644479124e691bf572f7813a1bc499000000000000000000000000fbbe9b1142c699512545f47937ee6fae0e4b0aa900000000000000000000000033e3da186e223acc94bc3484127eceb8b54b67040000000000000000000000000000000000000000000000000000000000000078
-----Decoded View---------------
Arg [0] : lp_ (address): 0xF44e8Ff3BB644479124E691bF572f7813A1BC499
Arg [1] : outToken_ (address): 0xFbbE9b1142C699512545f47937Ee6fae0e4B0aA9
Arg [2] : rewardDistribution_ (address): 0x33e3dA186E223aCc94bc3484127eceB8b54B6704
Arg [3] : stakeDurationSeconds_ (uint256): 120
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000f44e8ff3bb644479124e691bf572f7813a1bc499
Arg [1] : 000000000000000000000000fbbe9b1142c699512545f47937ee6fae0e4b0aa9
Arg [2] : 00000000000000000000000033e3da186e223acc94bc3484127eceb8b54b6704
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000078
Deployed Bytecode Sourcemap
31020:260:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;31020:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;28862:199:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;28862:199:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30790:104;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27372:42;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;27372:42:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25682:132;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;25682:132:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;26129:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26941:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29399:306;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;29399:306:0;;;;;;;;;;;;;;;;;:::i;:::-;;25954:16;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;26912:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30228:556;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;30228:556:0;;;;;;;;;;;;;;;;;:::i;:::-;;29869:353;;;:::i;:::-;;27474:51;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;27474:51:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30900:113;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;30900:113:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27103:56;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26220:104;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;26220:104:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8789:148;;;:::i;:::-;;27202:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28433:125;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27310:57;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;27310:57:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8147:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;29067:326;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;29067:326:0;;;;;;;;;;;;;;;;;:::i;:::-;;27419:50;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;27419:50:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27236:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28564:292;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27036:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27270:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29776:87;;;:::i;:::-;;27166:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;9092:244;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;9092:244:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;26987:44;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28862:199;28916:7;28946:109;29038:7;:16;29046:7;29038:16;;;;;;;;;;;;;;;;28946:87;29028:4;28946:77;28969:53;28990:22;:31;29013:7;28990:31;;;;;;;;;;;;;;;;28969:16;:14;:16::i;:::-;:20;;:53;;;;:::i;:::-;28946:18;28956:7;28946:9;:18::i;:::-;:22;;:77;;;;:::i;:::-;:81;;:87;;;;:::i;:::-;:91;;:109;;;;:::i;:::-;28932:123;;28862:199;;;:::o;30790:104::-;30838:4;30844:7;30868:5;30875:12;;30860:28;;;;30790:104;;:::o;27372:42::-;;;;;;;;;;;;;;;;;:::o;25682:132::-;8369:12;:10;:12::i;:::-;8359:22;;:6;;;;;;;;;;;:22;;;8351:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25789:19:::1;25768:18;;:40;;;;;;;;;;;;;;;;;;25682:132:::0;:::o;26129:85::-;26173:7;26196:12;;26189:19;;26129:85;:::o;26941:41::-;26976:6;26941:41;:::o;29399:306::-;20742:1;21348:7;;:19;;21340:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20742:1;21481:7;:18;;;;29475:10:::1;28200:16;:14;:16::i;:::-;28177:20;:39;;;;28240:26;:24;:26::i;:::-;28223:14;:43;;;;28296:1;28277:21;;:7;:21;;;28273:141;;28328:15;28335:7;28328:6;:15::i;:::-;28309:7;:16;28317:7;28309:16;;;;;;;;;;;;;;;:34;;;;28386:20;;28352:22;:31;28375:7;28352:31;;;;;;;;;;;;;;;:54;;;;28273:141;29511:1:::2;29502:6;:10;29494:40;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;29555:15;:27;29571:10;29555:27;;;;;;;;;;;;;;;;29549:3;:33;29541:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29651:10;29641:29;;;29663:6;29641:29;;;;;;;;;;;;;;;;;;29677:22;29692:6;29677:14;:22::i;:::-;21512:1:::1;20698::::0;21660:7;:22;;;;29399:306;:::o;25954:16::-;;;;;;;;;;;;;:::o;26912:22::-;;;;;;;;;;;;;:::o;30228:556::-;20742:1;21348:7;;:19;;21340:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20742:1;21481:7;:18;;;;25606::::1;;;;;;;;;;;25590:34;;:12;:10;:12::i;:::-;:34;;;25582:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30372:1:::2;28200:16;:14;:16::i;:::-;28177:20;:39;;;;28240:26;:24;:26::i;:::-;28223:14;:43;;;;28296:1;28277:21;;:7;:21;;;28273:141;;28328:15;28335:7;28328:6;:15::i;:::-;28309:7;:16;28317:7;28309:16;;;;;;;;;;;;;;;:34;;;;28386:20;;28352:22;:31;28375:7;28352:31;;;;;;;;;;;;;;;:54;;;;28273:141;30409:12:::3;;30390:15;:31;30386:272;;30445:20;26976:6;30445;:10;;:20;;;;:::i;:::-;30432:10;:33;;;;30386:272;;;30488:17;30508:33;30525:15;30508:12;;:16;;:33;;;;:::i;:::-;30488:53;;30550:16;30569:25;30583:10;;30569:9;:13;;:25;;;;:::i;:::-;30550:44;;30616:34;26976:6;30616:20;30627:8;30616:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;30603:10;:47;;;;30386:272;;;30681:15;30664:14;:32;;;;30718:29;26976:6;30718:15;:19;;:29;;;;:::i;:::-;30703:12;:44;;;;30759:19;30771:6;30759:19;;;;;;;;;;;;;;;;;;25669:1:::2;20698::::0;21660:7;:22;;;;30228:556;:::o;29869:353::-;20742:1;21348:7;;:19;;21340:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20742:1;21481:7;:18;;;;29923:10:::1;28200:16;:14;:16::i;:::-;28177:20;:39;;;;28240:26;:24;:26::i;:::-;28223:14;:43;;;;28296:1;28277:21;;:7;:21;;;28273:141;;28328:15;28335:7;28328:6;:15::i;:::-;28309:7;:16;28317:7;28309:16;;;;;;;;;;;;;;;:34;;;;28386:20;;28352:22;:31;28375:7;28352:31;;;;;;;;;;;;;;;:54;;;;28273:141;29956:16:::2;:28;29973:10;29956:28;;;;;;;;;;;;;;;;29950:3;:34;29942:76;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;30025:14;30042:18;30049:10;30042:6;:18::i;:::-;30025:35;;30080:1;30071:6;:10;30067:150;;;30114:1;30092:7;:19;30100:10;30092:19;;;;;;;;;;;;;;;:23;;;;30140:10;30129:30;;;30152:6;30129:30;;;;;;;;;;;;;;;;;;30168:41;30190:10;30202:6;30168:8;;;;;;;;;;;:21;;;;:41;;;;;:::i;:::-;30067:150;28420:1;21512::::1;20698::::0;21660:7;:22;;;;29869:353::o;27474:51::-;;;;;;;;;;;;;;;;;:::o;30900:113::-;30958:7;30982:15;:24;30998:7;30982:24;;;;;;;;;;;;;;;;30974:33;;30900:113;;;:::o;27103:56::-;27150:9;27103:56;:::o;26220:104::-;26277:7;26300:9;:18;26310:7;26300:18;;;;;;;;;;;;;;;;26293:25;;26220:104;;;:::o;8789:148::-;8369:12;:10;:12::i;:::-;8359:22;;:6;;;;;;;;;;;:22;;;8351:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8896:1:::1;8859:40;;8880:6;;;;;;;;;;;8859:40;;;;;;;;;;;;8927:1;8910:6;;:19;;;;;;;;;;;;;;;;;;8789:148::o:0;27202:29::-;;;;:::o;28433:125::-;28490:7;28513:39;28522:15;28539:12;;28513:8;:39::i;:::-;28506:46;;28433:125;:::o;27310:57::-;;;;;;;;;;;;;;;;;:::o;8147:79::-;8185:7;8212:6;;;;;;;;;;;8205:13;;8147:79;:::o;29067:326::-;20742:1;21348:7;;:19;;21340:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20742:1;21481:7;:18;;;;29140:10:::1;28200:16;:14;:16::i;:::-;28177:20;:39;;;;28240:26;:24;:26::i;:::-;28223:14;:43;;;;28296:1;28277:21;;:7;:21;;;28273:141;;28328:15;28335:7;28328:6;:15::i;:::-;28309:7;:16;28317:7;28309:16;;;;;;;;;;;;;;;:34;;;;28386:20;;28352:22;:31;28375:7;28352:31;;;;;;;;;;;;;;;:54;;;;28273:141;29176:1:::2;29167:6;:10;29159:37;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;29239:20;;29233:3;:26;29203:15;:27;29219:10;29203:27;;;;;;;;;;;;;;;:56;;;;27150:9;29297:3;:26;29266:16;:28;29283:10;29266:28;;;;;;;;;;;;;;;:57;;;;29342:10;29335:26;;;29354:6;29335:26;;;;;;;;;;;;;;;;;;29368:19;29380:6;29368:11;:19::i;:::-;21512:1:::1;20698::::0;21660:7;:22;;;;29067:326;:::o;27419:50::-;;;;;;;;;;;;;;;;;:::o;27236:29::-;;;;:::o;28564:292::-;28611:7;28648:1;28631:13;:11;:13::i;:::-;:18;28627:68;;;28667:20;;28660:27;;;;28627:68;28715:135;28750:91;28827:13;:11;:13::i;:::-;28750:72;28817:4;28750:62;28801:10;;28750:46;28781:14;;28750:26;:24;:26::i;:::-;:30;;:46;;;;:::i;:::-;:50;;:62;;;;:::i;:::-;:66;;:72;;;;:::i;:::-;:76;;:91;;;;:::i;:::-;28715:20;;:24;;:135;;;;:::i;:::-;28701:149;;28564:292;;:::o;27036:62::-;27089:9;27036:62;:::o;27270:35::-;;;;:::o;29776:87::-;29808:31;29817:21;29827:10;29817:9;:21::i;:::-;29808:8;:31::i;:::-;29846:11;:9;:11::i;:::-;29776:87::o;27166:31::-;;;;:::o;9092:244::-;8369:12;:10;:12::i;:::-;8359:22;;:6;;;;;;;;;;;:22;;;8351:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9201:1:::1;9181:22;;:8;:22;;;;9173:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9291:8;9262:38;;9283:6;;;;;;;;;;;9262:38;;;;;;;;;;;;9320:8;9311:6;;:17;;;;;;;;;;;;;;;;;;9092:244:::0;:::o;26987:44::-;;;;:::o;2171:136::-;2229:7;2256:43;2260:1;2263;2256:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;2249:50;;2171:136;;;;:::o;3061:471::-;3119:7;3369:1;3364;:6;3360:47;;;3394:1;3387:8;;;;3360:47;3419:9;3435:1;3431;:5;3419:17;;3464:1;3459;3455;:5;;;;;;:10;3447:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3523:1;3516:8;;;3061:471;;;;;:::o;4008:132::-;4066:7;4093:39;4097:1;4100;4093:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;4086:46;;4008:132;;;;:::o;1707:181::-;1765:7;1785:9;1801:1;1797;:5;1785:17;;1826:1;1821;:6;;1813:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1879:1;1872:8;;;1707:181;;;;:::o;6743:106::-;6796:15;6831:10;6824:17;;6743:106;:::o;26559:207::-;26630:24;26647:6;26630:12;;:16;;:24;;;;:::i;:::-;26615:12;:39;;;;26685:33;26711:6;26685:9;:21;26695:10;26685:21;;;;;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;26661:9;:21;26671:10;26661:21;;;;;;;;;;;;;;;:57;;;;26725:35;26741:10;26753:6;26725:2;;;;;;;;;;;:15;;;;:35;;;;;:::i;:::-;26559:207;:::o;22289:177::-;22372:86;22392:5;22422:23;;;22447:2;22451:5;22399:58;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;22399:58:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;22399:58:0;22372:19;:86::i;:::-;22289:177;;;:::o;409:106::-;467:7;498:1;494;:5;:13;;506:1;494:13;;;502:1;494:13;487:20;;409:106;;;;:::o;26330:223::-;26398:24;26415:6;26398:12;;:16;;:24;;;;:::i;:::-;26383:12;:39;;;;26453:33;26479:6;26453:9;:21;26463:10;26453:21;;;;;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;26429:9;:21;26439:10;26429:21;;;;;;;;;;;;;;;:57;;;;26493:54;26513:10;26533:4;26540:6;26493:2;;;;;;;;;;;:19;;;;:54;;;;;;:::i;:::-;26330:223;:::o;2610:192::-;2696:7;2729:1;2724;:6;;2732:12;2716:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;2716:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2756:9;2772:1;2768;:5;2756:17;;2793:1;2786:8;;;2610:192;;;;;:::o;4636:278::-;4722:7;4754:1;4750;:5;4757:12;4742:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;4742:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4781:9;4797:1;4793;:5;;;;;;4781:17;;4905:1;4898:8;;;4636:278;;;;;:::o;24594:761::-;25018:23;25044:69;25072:4;25044:69;;;;;;;;;;;;;;;;;25052:5;25044:27;;;;:69;;;;;:::i;:::-;25018:95;;25148:1;25128:10;:17;:21;25124:224;;;25270:10;25259:30;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;25259:30:0;;;;;;;;;;;;;;;;25251:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25124:224;24594:761;;;:::o;22474:205::-;22575:96;22595:5;22625:27;;;22654:4;22660:2;22664:5;22602:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;22602:68:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;22602:68:0;22575:19;:96::i;:::-;22474:205;;;;:::o;15721:195::-;15824:12;15856:52;15878:6;15886:4;15892:1;15895:12;15856:21;:52::i;:::-;15849:59;;15721:195;;;;;:::o;16773:530::-;16900:12;16958:5;16933:21;:30;;16925:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17025:18;17036:6;17025:10;:18::i;:::-;17017:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17151:12;17165:23;17192:6;:11;;17212:5;17220:4;17192:33;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;17192:33:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;17150:75:0;;;;17243:52;17261:7;17270:10;17282:12;17243:17;:52::i;:::-;17236:59;;;;16773:530;;;;;;:::o;12803:422::-;12863:4;13071:12;13182:7;13170:20;13162:28;;13216:1;13209:4;:8;13202:15;;;12803:422;;;:::o;18309:742::-;18424:12;18453:7;18449:595;;;18484:10;18477:17;;;;18449:595;18618:1;18598:10;:17;:21;18594:439;;;18861:10;18855:17;18922:15;18909:10;18905:2;18901:19;18894:44;18809:148;19004:12;18997:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;18997:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18309:742;;;;;;:::o
Swarm Source
ipfs://54601833e4dec7f5b4fa3e21fb26dbe0763659d58a2624b3e11224c57daa31cb
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $12.32 | 1.0189 | $12.55 |
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.