Contract
0x75f52766a6a23f736edefcd69dfbe6153a48c3f3
5
Contract Overview
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Contract Name:
ComplexRewarderTime
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at bttcscan.com on 2022-10-24 */ /** *Submitted for verification at moonriver.moonscan.io on 2021-10-27 */ // File @boringcrypto/boring-solidity/contracts/interfaces/[email protected] // SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); // EIP 2612 function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external; } // File @boringcrypto/boring-solidity/contracts/libraries/[email protected] pragma solidity 0.6.12; library BoringERC20 { function safeSymbol(IERC20 token) internal view returns(string memory) { (bool success, bytes memory data) = address(token).staticcall(abi.encodeWithSelector(0x95d89b41)); return success && data.length > 0 ? abi.decode(data, (string)) : "???"; } function safeName(IERC20 token) internal view returns(string memory) { (bool success, bytes memory data) = address(token).staticcall(abi.encodeWithSelector(0x06fdde03)); return success && data.length > 0 ? abi.decode(data, (string)) : "???"; } function safeDecimals(IERC20 token) internal view returns (uint8) { (bool success, bytes memory data) = address(token).staticcall(abi.encodeWithSelector(0x313ce567)); return success && data.length == 32 ? abi.decode(data, (uint8)) : 18; } function safeTransfer(IERC20 token, address to, uint256 amount) internal { (bool success, bytes memory data) = address(token).call(abi.encodeWithSelector(0xa9059cbb, to, amount)); require(success && (data.length == 0 || abi.decode(data, (bool))), "BoringERC20: Transfer failed"); } function safeTransferFrom(IERC20 token, address from, address to, uint256 amount) internal { (bool success, bytes memory data) = address(token).call(abi.encodeWithSelector(0x23b872dd, from, to, amount)); require(success && (data.length == 0 || abi.decode(data, (bool))), "BoringERC20: TransferFrom failed"); } } // File contracts/interfaces/IRewarder.sol pragma solidity 0.6.12; interface IRewarder { using BoringERC20 for IERC20; function onSushiReward(uint256 pid, address user, address recipient, uint256 sushiAmount, uint256 newLpAmount) external; function pendingTokens(uint256 pid, address user, uint256 sushiAmount) external view returns (IERC20[] memory, uint256[] memory); } // File @boringcrypto/boring-solidity/contracts/libraries/[email protected] pragma solidity 0.6.12; // a library for performing overflow-safe math, updated with awesomeness from of DappHub (https://github.com/dapphub/ds-math) library BoringMath { function add(uint256 a, uint256 b) internal pure returns (uint256 c) {require((c = a + b) >= b, "BoringMath: Add Overflow");} function sub(uint256 a, uint256 b) internal pure returns (uint256 c) {require((c = a - b) <= a, "BoringMath: Underflow");} function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {require(b == 0 || (c = a * b)/b == a, "BoringMath: Mul Overflow");} function to128(uint256 a) internal pure returns (uint128 c) { require(a <= uint128(-1), "BoringMath: uint128 Overflow"); c = uint128(a); } function to64(uint256 a) internal pure returns (uint64 c) { require(a <= uint64(-1), "BoringMath: uint64 Overflow"); c = uint64(a); } function to32(uint256 a) internal pure returns (uint32 c) { require(a <= uint32(-1), "BoringMath: uint32 Overflow"); c = uint32(a); } } library BoringMath128 { function add(uint128 a, uint128 b) internal pure returns (uint128 c) {require((c = a + b) >= b, "BoringMath: Add Overflow");} function sub(uint128 a, uint128 b) internal pure returns (uint128 c) {require((c = a - b) <= a, "BoringMath: Underflow");} } library BoringMath64 { function add(uint64 a, uint64 b) internal pure returns (uint64 c) {require((c = a + b) >= b, "BoringMath: Add Overflow");} function sub(uint64 a, uint64 b) internal pure returns (uint64 c) {require((c = a - b) <= a, "BoringMath: Underflow");} } library BoringMath32 { function add(uint32 a, uint32 b) internal pure returns (uint32 c) {require((c = a + b) >= b, "BoringMath: Add Overflow");} function sub(uint32 a, uint32 b) internal pure returns (uint32 c) {require((c = a - b) <= a, "BoringMath: Underflow");} } // File @boringcrypto/boring-solidity/contracts/[email protected] // Audit on 5-Jan-2021 by Keno and BoringCrypto // P1 - P3: OK pragma solidity 0.6.12; // Source: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol + Claimable.sol // Edited by BoringCrypto // T1 - T4: OK contract BoringOwnableData { // V1 - V5: OK address public owner; // V1 - V5: OK address public pendingOwner; } // T1 - T4: OK contract BoringOwnable is BoringOwnableData { // E1: OK event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor () public { owner = msg.sender; emit OwnershipTransferred(address(0), msg.sender); } // F1 - F9: OK // C1 - C21: OK function transferOwnership(address newOwner, bool direct, bool renounce) public onlyOwner { if (direct) { // Checks require(newOwner != address(0) || renounce, "Ownable: zero address"); // Effects emit OwnershipTransferred(owner, newOwner); owner = newOwner; pendingOwner = address(0); } else { // Effects pendingOwner = newOwner; } } // F1 - F9: OK // C1 - C21: OK function claimOwnership() public { address _pendingOwner = pendingOwner; // Checks require(msg.sender == _pendingOwner, "Ownable: caller != pending owner"); // Effects emit OwnershipTransferred(owner, _pendingOwner); owner = _pendingOwner; pendingOwner = address(0); } // M1 - M5: OK // C1 - C21: OK modifier onlyOwner() { require(msg.sender == owner, "Ownable: caller is not the owner"); _; } } // File @boringcrypto/boring-solidity/contracts/[email protected] // Audit on 5-Jan-2021 by Keno and BoringCrypto // P1 - P3: OK pragma solidity 0.6.12; pragma experimental ABIEncoderV2; // solhint-disable avoid-low-level-calls // T1 - T4: OK contract BaseBoringBatchable { function _getRevertMsg(bytes memory _returnData) internal pure returns (string memory) { // If the _res length is less than 68, then the transaction failed silently (without a revert message) if (_returnData.length < 68) return "Transaction reverted silently"; assembly { // Slice the sighash. _returnData := add(_returnData, 0x04) } return abi.decode(_returnData, (string)); // All that remains is the revert string } // F3 - F9: OK // F1: External is ok here because this is the batch function, adding it to a batch makes no sense // F2: Calls in the batch may be payable, delegatecall operates in the same context, so each call in the batch has access to msg.value // C1 - C21: OK // C3: The length of the loop is fully under user control, so can't be exploited // C7: Delegatecall is only used on the same contract, so it's safe function batch(bytes[] calldata calls, bool revertOnFail) external payable returns(bool[] memory successes, bytes[] memory results) { // Interactions successes = new bool[](calls.length); results = new bytes[](calls.length); for (uint256 i = 0; i < calls.length; i++) { (bool success, bytes memory result) = address(this).delegatecall(calls[i]); require(success || !revertOnFail, _getRevertMsg(result)); successes[i] = success; results[i] = result; } } } // T1 - T4: OK contract BoringBatchable is BaseBoringBatchable { // F1 - F9: OK // F6: Parameters can be used front-run the permit and the user's permit will fail (due to nonce or other revert) // if part of a batch this could be used to grief once as the second call would not need the permit // C1 - C21: OK function permitToken(IERC20 token, address from, address to, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { // Interactions // X1 - X5 token.permit(from, to, amount, deadline, v, r, s); } } // File contracts/libraries/SignedSafeMath.sol pragma solidity 0.6.12; library SignedSafeMath { int256 constant private _INT256_MIN = -2**255; /** * @dev Returns the multiplication of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { // 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; } require(!(a == -1 && b == _INT256_MIN), "SignedSafeMath: multiplication overflow"); int256 c = a * b; require(c / a == b, "SignedSafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two signed 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(int256 a, int256 b) internal pure returns (int256) { require(b != 0, "SignedSafeMath: division by zero"); require(!(b == -1 && a == _INT256_MIN), "SignedSafeMath: division overflow"); int256 c = a / b; return c; } /** * @dev Returns the subtraction of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a), "SignedSafeMath: subtraction overflow"); return c; } /** * @dev Returns the addition of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a), "SignedSafeMath: addition overflow"); return c; } function toUInt256(int256 a) internal pure returns (uint256) { require(a >= 0, "Integer < 0"); return uint256(a); } } // File contracts/interfaces/IMasterChef.sol pragma solidity 0.6.12; interface IMasterChef { using BoringERC20 for IERC20; struct UserInfo { uint256 amount; // How many LP tokens the user has provided. uint256 rewardDebt; // Reward debt. See explanation below. } struct PoolInfo { IERC20 lpToken; // Address of LP token contract. uint256 allocPoint; // How many allocation points assigned to this pool. SUSHI to distribute per block. uint256 lastRewardBlock; // Last block number that SUSHI distribution occurs. uint256 accSushiPerShare; // Accumulated SUSHI per share, times 1e12. See below. } function poolInfo(uint256 pid) external view returns (IMasterChef.PoolInfo memory); function totalAllocPoint() external view returns (uint256); function deposit(uint256 _pid, uint256 _amount) external; } // File contracts/MasterChefV2.sol pragma solidity 0.6.12; interface IMigratorChef { // Take the current LP token address and return the new LP token address. // Migrator should have full access to the caller's LP token. function migrate(IERC20 token) external returns (IERC20); } /// @notice The (older) MasterChef contract gives out a constant number of SUSHI tokens per block. /// It is the only address with minting rights for SUSHI. /// The idea for this MasterChef V2 (MCV2) contract is therefore to be the owner of a dummy token /// that is deposited into the MasterChef V1 (MCV1) contract. /// The allocation point for this pool on MCV1 is the total allocation point for all pools that receive double incentives. contract MasterChefV2 is BoringOwnable, BoringBatchable { using BoringMath for uint256; using BoringMath128 for uint128; using BoringERC20 for IERC20; using SignedSafeMath for int256; /// @notice Info of each MCV2 user. /// `amount` LP token amount the user has provided. /// `rewardDebt` The amount of SUSHI entitled to the user. struct UserInfo { uint256 amount; int256 rewardDebt; } /// @notice Info of each MCV2 pool. /// `allocPoint` The amount of allocation points assigned to the pool. /// Also known as the amount of SUSHI to distribute per block. struct PoolInfo { uint128 accSushiPerShare; uint64 lastRewardBlock; uint64 allocPoint; } /// @notice Address of MCV1 contract. IMasterChef public immutable MASTER_CHEF; /// @notice Address of SUSHI contract. IERC20 public immutable SUSHI; /// @notice The index of MCV2 master pool in MCV1. uint256 public immutable MASTER_PID; // @notice The migrator contract. It has a lot of power. Can only be set through governance (owner). IMigratorChef public migrator; /// @notice Info of each MCV2 pool. PoolInfo[] public poolInfo; /// @notice Address of the LP token for each MCV2 pool. IERC20[] public lpToken; /// @notice Address of each `IRewarder` contract in MCV2. IRewarder[] public rewarder; /// @notice Info of each user that stakes LP tokens. mapping (uint256 => mapping (address => UserInfo)) public userInfo; /// @dev Total allocation points. Must be the sum of all allocation points in all pools. uint256 public totalAllocPoint; uint256 private constant MASTERCHEF_SUSHI_PER_BLOCK = 1e20; uint256 private constant ACC_SUSHI_PRECISION = 1e12; event Deposit(address indexed user, uint256 indexed pid, uint256 amount, address indexed to); event Withdraw(address indexed user, uint256 indexed pid, uint256 amount, address indexed to); event EmergencyWithdraw(address indexed user, uint256 indexed pid, uint256 amount, address indexed to); event Harvest(address indexed user, uint256 indexed pid, uint256 amount); event LogPoolAddition(uint256 indexed pid, uint256 allocPoint, IERC20 indexed lpToken, IRewarder indexed rewarder); event LogSetPool(uint256 indexed pid, uint256 allocPoint, IRewarder indexed rewarder, bool overwrite); event LogUpdatePool(uint256 indexed pid, uint64 lastRewardBlock, uint256 lpSupply, uint256 accSushiPerShare); event LogInit(); /// @param _MASTER_CHEF The SushiSwap MCV1 contract address. /// @param _sushi The SUSHI token contract address. /// @param _MASTER_PID The pool ID of the dummy token on the base MCV1 contract. constructor(IMasterChef _MASTER_CHEF, IERC20 _sushi, uint256 _MASTER_PID) public { MASTER_CHEF = _MASTER_CHEF; SUSHI = _sushi; MASTER_PID = _MASTER_PID; } /// @notice Deposits a dummy token to `MASTER_CHEF` MCV1. This is required because MCV1 holds the minting rights for SUSHI. /// Any balance of transaction sender in `dummyToken` is transferred. /// The allocation point for the pool on MCV1 is the total allocation point for all pools that receive double incentives. /// @param dummyToken The address of the ERC-20 token to deposit into MCV1. function init(IERC20 dummyToken) external { uint256 balance = dummyToken.balanceOf(msg.sender); require(balance != 0, "MasterChefV2: Balance must exceed 0"); dummyToken.safeTransferFrom(msg.sender, address(this), balance); dummyToken.approve(address(MASTER_CHEF), balance); MASTER_CHEF.deposit(MASTER_PID, balance); emit LogInit(); } /// @notice Returns the number of MCV2 pools. function poolLength() public view returns (uint256 pools) { pools = poolInfo.length; } /// @notice Add a new LP to the pool. Can only be called by the owner. /// DO NOT add the same LP token more than once. Rewards will be messed up if you do. /// @param allocPoint AP of the new pool. /// @param _lpToken Address of the LP ERC-20 token. /// @param _rewarder Address of the rewarder delegate. function add(uint256 allocPoint, IERC20 _lpToken, IRewarder _rewarder) public onlyOwner { uint256 lastRewardBlock = block.number; totalAllocPoint = totalAllocPoint.add(allocPoint); lpToken.push(_lpToken); rewarder.push(_rewarder); poolInfo.push(PoolInfo({ allocPoint: allocPoint.to64(), lastRewardBlock: lastRewardBlock.to64(), accSushiPerShare: 0 })); emit LogPoolAddition(lpToken.length.sub(1), allocPoint, _lpToken, _rewarder); } /// @notice Update the given pool's SUSHI allocation point and `IRewarder` contract. Can only be called by the owner. /// @param _pid The index of the pool. See `poolInfo`. /// @param _allocPoint New AP of the pool. /// @param _rewarder Address of the rewarder delegate. /// @param overwrite True if _rewarder should be `set`. Otherwise `_rewarder` is ignored. function set(uint256 _pid, uint256 _allocPoint, IRewarder _rewarder, bool overwrite) public onlyOwner { totalAllocPoint = totalAllocPoint.sub(poolInfo[_pid].allocPoint).add(_allocPoint); poolInfo[_pid].allocPoint = _allocPoint.to64(); if (overwrite) { rewarder[_pid] = _rewarder; } emit LogSetPool(_pid, _allocPoint, overwrite ? _rewarder : rewarder[_pid], overwrite); } /// @notice Set the `migrator` contract. Can only be called by the owner. /// @param _migrator The contract address to set. function setMigrator(IMigratorChef _migrator) public onlyOwner { migrator = _migrator; } /// @notice Migrate LP token to another LP contract through the `migrator` contract. /// @param _pid The index of the pool. See `poolInfo`. function migrate(uint256 _pid) public { require(address(migrator) != address(0), "MasterChefV2: no migrator set"); IERC20 _lpToken = lpToken[_pid]; uint256 bal = _lpToken.balanceOf(address(this)); _lpToken.approve(address(migrator), bal); IERC20 newLpToken = migrator.migrate(_lpToken); require(bal == newLpToken.balanceOf(address(this)), "MasterChefV2: migrated balance must match"); lpToken[_pid] = newLpToken; } /// @notice View function to see pending SUSHI on frontend. /// @param _pid The index of the pool. See `poolInfo`. /// @param _user Address of user. /// @return pending SUSHI reward for a given user. function pendingSushi(uint256 _pid, address _user) external view returns (uint256 pending) { PoolInfo memory pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accSushiPerShare = pool.accSushiPerShare; uint256 lpSupply = lpToken[_pid].balanceOf(address(this)); if (block.number > pool.lastRewardBlock && lpSupply != 0) { uint256 blocks = block.number.sub(pool.lastRewardBlock); uint256 sushiReward = blocks.mul(sushiPerBlock()).mul(pool.allocPoint) / totalAllocPoint; accSushiPerShare = accSushiPerShare.add(sushiReward.mul(ACC_SUSHI_PRECISION) / lpSupply); } pending = int256(user.amount.mul(accSushiPerShare) / ACC_SUSHI_PRECISION).sub(user.rewardDebt).toUInt256(); } /// @notice Update reward variables for all pools. Be careful of gas spending! /// @param pids Pool IDs of all to be updated. Make sure to update all active pools. function massUpdatePools(uint256[] calldata pids) external { uint256 len = pids.length; for (uint256 i = 0; i < len; ++i) { updatePool(pids[i]); } } /// @notice Calculates and returns the `amount` of SUSHI per block. function sushiPerBlock() public view returns (uint256 amount) { amount = uint256(MASTERCHEF_SUSHI_PER_BLOCK) .mul(MASTER_CHEF.poolInfo(MASTER_PID).allocPoint) / MASTER_CHEF.totalAllocPoint(); } /// @notice Update reward variables of the given pool. /// @param pid The index of the pool. See `poolInfo`. /// @return pool Returns the pool that was updated. function updatePool(uint256 pid) public returns (PoolInfo memory pool) { pool = poolInfo[pid]; if (block.number > pool.lastRewardBlock) { uint256 lpSupply = lpToken[pid].balanceOf(address(this)); if (lpSupply > 0) { uint256 blocks = block.number.sub(pool.lastRewardBlock); uint256 sushiReward = blocks.mul(sushiPerBlock()).mul(pool.allocPoint) / totalAllocPoint; pool.accSushiPerShare = pool.accSushiPerShare.add((sushiReward.mul(ACC_SUSHI_PRECISION) / lpSupply).to128()); } pool.lastRewardBlock = block.number.to64(); poolInfo[pid] = pool; emit LogUpdatePool(pid, pool.lastRewardBlock, lpSupply, pool.accSushiPerShare); } } /// @notice Deposit LP tokens to MCV2 for SUSHI allocation. /// @param pid The index of the pool. See `poolInfo`. /// @param amount LP token amount to deposit. /// @param to The receiver of `amount` deposit benefit. function deposit(uint256 pid, uint256 amount, address to) public { PoolInfo memory pool = updatePool(pid); UserInfo storage user = userInfo[pid][to]; // Effects user.amount = user.amount.add(amount); user.rewardDebt = user.rewardDebt.add(int256(amount.mul(pool.accSushiPerShare) / ACC_SUSHI_PRECISION)); // Interactions IRewarder _rewarder = rewarder[pid]; if (address(_rewarder) != address(0)) { _rewarder.onSushiReward(pid, to, to, 0, user.amount); } lpToken[pid].safeTransferFrom(msg.sender, address(this), amount); emit Deposit(msg.sender, pid, amount, to); } /// @notice Withdraw LP tokens from MCV2. /// @param pid The index of the pool. See `poolInfo`. /// @param amount LP token amount to withdraw. /// @param to Receiver of the LP tokens. function withdraw(uint256 pid, uint256 amount, address to) public { PoolInfo memory pool = updatePool(pid); UserInfo storage user = userInfo[pid][msg.sender]; // Effects user.rewardDebt = user.rewardDebt.sub(int256(amount.mul(pool.accSushiPerShare) / ACC_SUSHI_PRECISION)); user.amount = user.amount.sub(amount); // Interactions IRewarder _rewarder = rewarder[pid]; if (address(_rewarder) != address(0)) { _rewarder.onSushiReward(pid, msg.sender, to, 0, user.amount); } lpToken[pid].safeTransfer(to, amount); emit Withdraw(msg.sender, pid, amount, to); } /// @notice Harvest proceeds for transaction sender to `to`. /// @param pid The index of the pool. See `poolInfo`. /// @param to Receiver of SUSHI rewards. function harvest(uint256 pid, address to) public { PoolInfo memory pool = updatePool(pid); UserInfo storage user = userInfo[pid][msg.sender]; int256 accumulatedSushi = int256(user.amount.mul(pool.accSushiPerShare) / ACC_SUSHI_PRECISION); uint256 _pendingSushi = accumulatedSushi.sub(user.rewardDebt).toUInt256(); // Effects user.rewardDebt = accumulatedSushi; // Interactions if (_pendingSushi != 0) { SUSHI.safeTransfer(to, _pendingSushi); } IRewarder _rewarder = rewarder[pid]; if (address(_rewarder) != address(0)) { _rewarder.onSushiReward( pid, msg.sender, to, _pendingSushi, user.amount); } emit Harvest(msg.sender, pid, _pendingSushi); } /// @notice Withdraw LP tokens from MCV2 and harvest proceeds for transaction sender to `to`. /// @param pid The index of the pool. See `poolInfo`. /// @param amount LP token amount to withdraw. /// @param to Receiver of the LP tokens and SUSHI rewards. function withdrawAndHarvest(uint256 pid, uint256 amount, address to) public { PoolInfo memory pool = updatePool(pid); UserInfo storage user = userInfo[pid][msg.sender]; int256 accumulatedSushi = int256(user.amount.mul(pool.accSushiPerShare) / ACC_SUSHI_PRECISION); uint256 _pendingSushi = accumulatedSushi.sub(user.rewardDebt).toUInt256(); // Effects user.rewardDebt = accumulatedSushi.sub(int256(amount.mul(pool.accSushiPerShare) / ACC_SUSHI_PRECISION)); user.amount = user.amount.sub(amount); // Interactions SUSHI.safeTransfer(to, _pendingSushi); IRewarder _rewarder = rewarder[pid]; if (address(_rewarder) != address(0)) { _rewarder.onSushiReward(pid, msg.sender, to, _pendingSushi, user.amount); } lpToken[pid].safeTransfer(to, amount); emit Withdraw(msg.sender, pid, amount, to); emit Harvest(msg.sender, pid, _pendingSushi); } /// @notice Harvests SUSHI from `MASTER_CHEF` MCV1 and pool `MASTER_PID` to this MCV2 contract. function harvestFromMasterChef() public { MASTER_CHEF.deposit(MASTER_PID, 0); } /// @notice Withdraw without caring about rewards. EMERGENCY ONLY. /// @param pid The index of the pool. See `poolInfo`. /// @param to Receiver of the LP tokens. function emergencyWithdraw(uint256 pid, address to) public { UserInfo storage user = userInfo[pid][msg.sender]; uint256 amount = user.amount; user.amount = 0; user.rewardDebt = 0; IRewarder _rewarder = rewarder[pid]; if (address(_rewarder) != address(0)) { _rewarder.onSushiReward(pid, msg.sender, to, 0, 0); } // Note: transfer can fail or succeed if `amount` is zero. lpToken[pid].safeTransfer(to, amount); emit EmergencyWithdraw(msg.sender, pid, amount, to); } } // File contracts/mocks/ComplexRewarderTime.sol pragma solidity 0.6.12; /// @author @0xKeno contract ComplexRewarderTime is IRewarder, BoringOwnable{ using BoringMath for uint256; using BoringMath128 for uint128; using BoringERC20 for IERC20; IERC20 private immutable rewardToken; /// @notice Info of each MCV2 user. /// `amount` LP token amount the user has provided. /// `rewardDebt` The amount of SUSHI entitled to the user. struct UserInfo { uint256 amount; uint256 rewardDebt; uint256 unpaidRewards; } /// @notice Info of each MCV2 pool. /// `allocPoint` The amount of allocation points assigned to the pool. /// Also known as the amount of SUSHI to distribute per block. struct PoolInfo { uint128 accSushiPerShare; uint64 lastRewardTime; uint64 allocPoint; } /// @notice Info of each pool. mapping (uint256 => PoolInfo) public poolInfo; uint256[] public poolIds; /// @notice Info of each user that stakes LP tokens. mapping (uint256 => mapping (address => UserInfo)) public userInfo; /// @dev Total allocation points. Must be the sum of all allocation points in all pools. uint256 totalAllocPoint; uint256 public rewardPerSecond; uint256 private constant ACC_TOKEN_PRECISION = 1e12; address private immutable MASTERCHEF_V2; uint256 internal unlocked; modifier lock() { require(unlocked == 1, "LOCKED"); unlocked = 2; _; unlocked = 1; } event LogOnReward(address indexed user, uint256 indexed pid, uint256 amount, address indexed to); event LogPoolAddition(uint256 indexed pid, uint256 allocPoint); event LogSetPool(uint256 indexed pid, uint256 allocPoint); event LogUpdatePool(uint256 indexed pid, uint64 lastRewardTime, uint256 lpSupply, uint256 accSushiPerShare); event LogRewardPerSecond(uint256 rewardPerSecond); event LogInit(); constructor (IERC20 _rewardToken, uint256 _rewardPerSecond, address _MASTERCHEF_V2) public { rewardToken = _rewardToken; rewardPerSecond = _rewardPerSecond; MASTERCHEF_V2 = _MASTERCHEF_V2; unlocked = 1; } function onSushiReward (uint256 pid, address _user, address to, uint256, uint256 lpToken) onlyMCV2 lock override external { PoolInfo memory pool = updatePool(pid); UserInfo storage user = userInfo[pid][_user]; uint256 pending; if (user.amount > 0) { pending = (user.amount.mul(pool.accSushiPerShare) / ACC_TOKEN_PRECISION).sub( user.rewardDebt ).add(user.unpaidRewards); uint256 balance = rewardToken.balanceOf(address(this)); if (pending > balance) { rewardToken.safeTransfer(to, balance); user.unpaidRewards = pending - balance; } else { rewardToken.safeTransfer(to, pending); user.unpaidRewards = 0; } } user.amount = lpToken; user.rewardDebt = lpToken.mul(pool.accSushiPerShare) / ACC_TOKEN_PRECISION; emit LogOnReward(_user, pid, pending - user.unpaidRewards, to); } function pendingTokens(uint256 pid, address user, uint256) override external view returns (IERC20[] memory rewardTokens, uint256[] memory rewardAmounts) { IERC20[] memory _rewardTokens = new IERC20[](1); _rewardTokens[0] = (rewardToken); uint256[] memory _rewardAmounts = new uint256[](1); _rewardAmounts[0] = pendingToken(pid, user); return (_rewardTokens, _rewardAmounts); } /// @notice Sets the sushi per second to be distributed. Can only be called by the owner. /// @param _rewardPerSecond The amount of Sushi to be distributed per second. function setRewardPerSecond(uint256 _rewardPerSecond) public onlyOwner { rewardPerSecond = _rewardPerSecond; emit LogRewardPerSecond(_rewardPerSecond); } modifier onlyMCV2 { require( msg.sender == MASTERCHEF_V2, "Only MCV2 can call this function." ); _; } /// @notice Returns the number of MCV2 pools. function poolLength() public view returns (uint256 pools) { pools = poolIds.length; } /// @notice Add a new LP to the pool. Can only be called by the owner. /// DO NOT add the same LP token more than once. Rewards will be messed up if you do. /// @param allocPoint AP of the new pool. /// @param _pid Pid on MCV2 function add(uint256 allocPoint, uint256 _pid) public onlyOwner { require(poolInfo[_pid].lastRewardTime == 0, "Pool already exists"); uint256 lastRewardTime = block.timestamp; totalAllocPoint = totalAllocPoint.add(allocPoint); poolInfo[_pid] = PoolInfo({ allocPoint: allocPoint.to64(), lastRewardTime: lastRewardTime.to64(), accSushiPerShare: 0 }); poolIds.push(_pid); emit LogPoolAddition(_pid, allocPoint); } /// @notice Update the given pool's SUSHI allocation point and `IRewarder` contract. Can only be called by the owner. /// @param _pid The index of the pool. See `poolInfo`. /// @param _allocPoint New AP of the pool. function set(uint256 _pid, uint256 _allocPoint) public onlyOwner { totalAllocPoint = totalAllocPoint.sub(poolInfo[_pid].allocPoint).add(_allocPoint); poolInfo[_pid].allocPoint = _allocPoint.to64(); emit LogSetPool(_pid, _allocPoint); } /// @notice Allows owner to reclaim/withdraw any tokens (including reward tokens) held by this contract /// @param token Token to reclaim, use 0x00 for Ethereum /// @param amount Amount of tokens to reclaim /// @param to Receiver of the tokens, first of his name, rightful heir to the lost tokens, /// reightful owner of the extra tokens, and ether, protector of mistaken transfers, mother of token reclaimers, /// the Khaleesi of the Great Token Sea, the Unburnt, the Breaker of blockchains. function reclaimTokens(address token, uint256 amount, address payable to) public onlyOwner { if (token == address(0)) { to.transfer(amount); } else { IERC20(token).safeTransfer(to, amount); } } /// @notice View function to see pending Token /// @param _pid The index of the pool. See `poolInfo`. /// @param _user Address of user. /// @return pending SUSHI reward for a given user. function pendingToken(uint256 _pid, address _user) public view returns (uint256 pending) { PoolInfo memory pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accSushiPerShare = pool.accSushiPerShare; uint256 lpSupply = MasterChefV2(MASTERCHEF_V2).lpToken(_pid).balanceOf(MASTERCHEF_V2); if (block.timestamp > pool.lastRewardTime && lpSupply != 0) { uint256 time = block.timestamp.sub(pool.lastRewardTime); uint256 sushiReward = time.mul(rewardPerSecond).mul(pool.allocPoint) / totalAllocPoint; accSushiPerShare = accSushiPerShare.add(sushiReward.mul(ACC_TOKEN_PRECISION) / lpSupply); } pending = (user.amount.mul(accSushiPerShare) / ACC_TOKEN_PRECISION).sub(user.rewardDebt).add(user.unpaidRewards); } /// @notice Update reward variables for all pools. Be careful of gas spending! /// @param pids Pool IDs of all to be updated. Make sure to update all active pools. function massUpdatePools(uint256[] calldata pids) external { uint256 len = pids.length; for (uint256 i = 0; i < len; ++i) { updatePool(pids[i]); } } /// @notice Update reward variables of the given pool. /// @param pid The index of the pool. See `poolInfo`. /// @return pool Returns the pool that was updated. function updatePool(uint256 pid) public returns (PoolInfo memory pool) { pool = poolInfo[pid]; if (block.timestamp > pool.lastRewardTime) { uint256 lpSupply = MasterChefV2(MASTERCHEF_V2).lpToken(pid).balanceOf(MASTERCHEF_V2); if (lpSupply > 0) { uint256 time = block.timestamp.sub(pool.lastRewardTime); uint256 sushiReward = time.mul(rewardPerSecond).mul(pool.allocPoint) / totalAllocPoint; pool.accSushiPerShare = pool.accSushiPerShare.add((sushiReward.mul(ACC_TOKEN_PRECISION) / lpSupply).to128()); } pool.lastRewardTime = block.timestamp.to64(); poolInfo[pid] = pool; emit LogUpdatePool(pid, pool.lastRewardTime, lpSupply, pool.accSushiPerShare); } } }
[{"inputs":[{"internalType":"contract IERC20","name":"_rewardToken","type":"address"},{"internalType":"uint256","name":"_rewardPerSecond","type":"uint256"},{"internalType":"address","name":"_MASTERCHEF_V2","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"LogInit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"LogOnReward","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"allocPoint","type":"uint256"}],"name":"LogPoolAddition","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rewardPerSecond","type":"uint256"}],"name":"LogRewardPerSecond","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"allocPoint","type":"uint256"}],"name":"LogSetPool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint64","name":"lastRewardTime","type":"uint64"},{"indexed":false,"internalType":"uint256","name":"lpSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"accSushiPerShare","type":"uint256"}],"name":"LogUpdatePool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"pids","type":"uint256[]"}],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"lpToken","type":"uint256"}],"name":"onSushiReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingToken","outputs":[{"internalType":"uint256","name":"pending","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"pid","type":"uint256"},{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"pendingTokens","outputs":[{"internalType":"contract IERC20[]","name":"rewardTokens","type":"address[]"},{"internalType":"uint256[]","name":"rewardAmounts","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"uint128","name":"accSushiPerShare","type":"uint128"},{"internalType":"uint64","name":"lastRewardTime","type":"uint64"},{"internalType":"uint64","name":"allocPoint","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"pools","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address payable","name":"to","type":"address"}],"name":"reclaimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPerSecond","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardPerSecond","type":"uint256"}],"name":"setRewardPerSecond","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"},{"internalType":"bool","name":"direct","type":"bool"},{"internalType":"bool","name":"renounce","type":"bool"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pid","type":"uint256"}],"name":"updatePool","outputs":[{"components":[{"internalType":"uint128","name":"accSushiPerShare","type":"uint128"},{"internalType":"uint64","name":"lastRewardTime","type":"uint64"},{"internalType":"uint64","name":"allocPoint","type":"uint64"}],"internalType":"struct ComplexRewarderTime.PoolInfo","name":"pool","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"},{"internalType":"uint256","name":"unpaidRewards","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60c06040523480156200001157600080fd5b5060405162001b5d38038062001b5d83398101604081905262000034916200009e565b600080546001600160a01b0319163390811782556040519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36001600160601b0319606093841b811660805260069290925590911b1660a0526001600755620000fe565b600080600060608486031215620000b3578283fd5b8351620000c081620000e5565b602085015160408601519194509250620000da81620000e5565b809150509250925092565b6001600160a01b0381168114620000fb57600080fd5b50565b60805160601c60a05160601c611a126200014b6000398061053252806105c7528061084752806108dc5280610d2b525080610e0d5280610ebe5280610eff52806110b25250611a126000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806369883b4e116100a25780638f10369a116100715780638f10369a1461023257806393f1a40b1461023a578063c1ea38681461025c578063d63b3c491461026f578063e30c39781461029057610116565b806369883b4e146101e4578063771602f7146101f75780638bf637421461020a5780638da5cb5b1461021d57610116565b806348e43af4116100e957806348e43af4146101835780634e71e0c81461019657806351eb05a61461019e57806357a5b58c146101be57806366da5815146101d157610116565b8063078dfbe71461011b578063081e3eda146101305780631526fe271461014e5780631ab06ee514610170575b600080fd5b61012e61012936600461136e565b610298565b005b610138610387565b604051610145919061196d565b60405180910390f35b61016161015c36600461149b565b61038d565b60405161014593929190611943565b61012e61017e366004611582565b6103c4565b6101386101913660046114cb565b6104a3565b61012e610741565b6101b16101ac36600461149b565b6107ce565b604051610145919061190a565b61012e6101cc3660046113ee565b610acc565b61012e6101df36600461149b565b610b02565b6101386101f236600461149b565b610b6c565b61012e610205366004611582565b610b8a565b61012e6102183660046114fa565b610d20565b610225610fc1565b60405161014591906115e4565b610138610fd0565b61024d6102483660046114cb565b610fd6565b60405161014593929190611976565b61012e61026a3660046113b8565b611002565b61028261027d36600461154b565b61108a565b604051610145929190611611565b610225611149565b6000546001600160a01b031633146102cb5760405162461bcd60e51b81526004016102c290611812565b60405180910390fd5b8115610366576001600160a01b0383161515806102e55750805b6103015760405162461bcd60e51b81526004016102c290611775565b600080546040516001600160a01b03808716939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0385166001600160a01b031991821617909155600180549091169055610382565b600180546001600160a01b0319166001600160a01b0385161790555b505050565b60035490565b6002602052600090815260409020546001600160801b038116906001600160401b03600160801b8204811691600160c01b90041683565b6000546001600160a01b031633146103ee5760405162461bcd60e51b81526004016102c290611812565b60008281526002602052604090205460055461042591839161041f91600160c01b90046001600160401b0316611158565b90611181565b600555610431816111a4565b6000838152600260205260409081902080546001600160401b0393909316600160c01b026001600160c01b03909316929092179091555182907f942cc7e17a17c164bd977f32ab8c54265d5b9d481e4e352bf874f1e568874e7c9061049790849061196d565b60405180910390a25050565b60006104ad61134e565b506000838152600260209081526040808320815160608101835290546001600160801b0380821683526001600160401b03600160801b8304811684870152600160c01b9092049091168284015287855260048085528386206001600160a01b03808a1688529552838620835194516378ed5d1f60e01b815293969095949092169391927f0000000000000000000000000000000000000000000000000000000000000000909216916378ed5d1f91610567918b910161196d565b60206040518083038186803b15801561057f57600080fd5b505afa158015610593573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105b7919061147f565b6001600160a01b03166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161060291906115e4565b60206040518083038186803b15801561061a57600080fd5b505afa15801561062e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061065291906114b3565b905083602001516001600160401b03164211801561066f57508015155b156106fb57600061069685602001516001600160401b03164261115890919063ffffffff16565b905060006005546106c987604001516001600160401b03166106c3600654866111d190919063ffffffff16565b906111d1565b816106d057fe5b0490506106f6836106e68364e8d4a510006111d1565b816106ed57fe5b86919004611181565b935050505b610736836002015461041f856001015464e8d4a510006107288789600001546111d190919063ffffffff16565b8161072f57fe5b0490611158565b979650505050505050565b6001546001600160a01b031633811461076c5760405162461bcd60e51b81526004016102c290611847565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b039092166001600160a01b0319928316179055600180549091169055565b6107d661134e565b50600081815260026020908152604091829020825160608101845290546001600160801b03811682526001600160401b03600160801b82048116938301849052600160c01b9091041692810192909252421115610ac7576040516378ed5d1f60e01b81526000906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906378ed5d1f9061087c90869060040161196d565b60206040518083038186803b15801561089457600080fd5b505afa1580156108a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108cc919061147f565b6001600160a01b03166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161091791906115e4565b60206040518083038186803b15801561092f57600080fd5b505afa158015610943573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096791906114b3565b90508015610a0a57600061099183602001516001600160401b03164261115890919063ffffffff16565b905060006005546109be85604001516001600160401b03166106c3600654866111d190919063ffffffff16565b816109c557fe5b0490506109fc6109eb846109de8464e8d4a510006111d1565b816109e557fe5b04611208565b85516001600160801b031690611231565b6001600160801b0316845250505b610a13426111a4565b6001600160401b03908116602084810191825260008681526002909152604090819020855181549351838801516001600160801b03199095166001600160801b0383161767ffffffffffffffff60801b1916600160801b82881602176001600160c01b0316600160c01b95909616949094029490941790555185927f0fc9545022a542541ad085d091fb09a2ab36fee366a4576ab63714ea907ad35392610abd929091869161198c565b60405180910390a2505b919050565b8060005b81811015610afc57610af3848483818110610ae757fe5b905060200201356107ce565b50600101610ad0565b50505050565b6000546001600160a01b03163314610b2c5760405162461bcd60e51b81526004016102c290611812565b60068190556040517fde89cb17ac7f58f94792b3e91e086ed85403819c24ceea882491f960ccb1a27890610b6190839061196d565b60405180910390a150565b60038181548110610b7957fe5b600091825260209091200154905081565b6000546001600160a01b03163314610bb45760405162461bcd60e51b81526004016102c290611812565b600081815260026020526040902054600160801b90046001600160401b031615610bf05760405162461bcd60e51b81526004016102c2906116d0565b6005544290610bff9084611181565b60055560408051606081019091526000815260208101610c1e836111a4565b6001600160401b03168152602001610c35856111a4565b6001600160401b0390811690915260008481526002602090815260408083208551815493870151968301518616600160c01b026001600160c01b0397909616600160801b0267ffffffffffffffff60801b196001600160801b039092166001600160801b031990951694909417169290921794909416929092179091556003805460018101825591527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b018390555182907f38410508059921573ab9ebdca2a5034be738d236366b8f32de4434ea95ed3c8190610d1390869061196d565b60405180910390a2505050565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610d685760405162461bcd60e51b81526004016102c290611734565b600754600114610d8a5760405162461bcd60e51b81526004016102c2906118b3565b6002600755610d9761134e565b610da0866107ce565b60008781526004602090815260408083206001600160a01b038a168452909152812080549293509115610f3057610e07826002015461041f846001015464e8d4a5100061072888600001516001600160801b031688600001546111d190919063ffffffff16565b905060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b8152600401610e5791906115e4565b60206040518083038186803b158015610e6f57600080fd5b505afa158015610e83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea791906114b3565b905080821115610ef257610ee56001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168883611260565b8082036002840155610f2e565b610f266001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168884611260565b600060028401555b505b838255825164e8d4a5100090610f509086906001600160801b03166111d1565b81610f5757fe5b048260010181905550856001600160a01b031688886001600160a01b03167f2ece88ca2bc08dd018db50e1d25a20bf1241e5fab1c396caa51f01a54bd2f75b85600201548503604051610faa919061196d565b60405180910390a450506001600755505050505050565b6000546001600160a01b031681565b60065481565b600460209081526000928352604080842090915290825290208054600182015460029092015490919083565b6000546001600160a01b0316331461102c5760405162461bcd60e51b81526004016102c290611812565b6001600160a01b038316611076576040516001600160a01b0382169083156108fc029084906000818181858888f19350505050158015611070573d6000803e3d6000fd5b50610382565b6103826001600160a01b0384168284611260565b60408051600180825281830190925260609182918291602080830190803683370190505090507f0000000000000000000000000000000000000000000000000000000000000000816000815181106110de57fe5b6001600160a01b03929092166020928302919091019091015260408051600180825281830190925260609181602001602082028036833701905050905061112587876104a3565b8160008151811061113257fe5b602090810291909101015290969095509350505050565b6001546001600160a01b031681565b8082038281111561117b5760405162461bcd60e51b81526004016102c2906116a1565b92915050565b8181018181101561117b5760405162461bcd60e51b81526004016102c2906117db565b60006001600160401b038211156111cd5760405162461bcd60e51b81526004016102c29061187c565b5090565b60008115806111ec575050808202828282816111e957fe5b04145b61117b5760405162461bcd60e51b81526004016102c2906118d3565b60006001600160801b038211156111cd5760405162461bcd60e51b81526004016102c2906117a4565b8181016001600160801b03808316908216101561117b5760405162461bcd60e51b81526004016102c2906117db565b60006060846001600160a01b031663a9059cbb85856040516024016112869291906115f8565b6040516020818303038152906040529060e01b6020820180516001600160e01b0383818316178352505050506040516112bf91906115ab565b6000604051808303816000865af19150503d80600081146112fc576040519150601f19603f3d011682016040523d82523d6000602084013e611301565b606091505b509150915081801561132b57508051158061132b57508080602001905181019061132b919061145c565b6113475760405162461bcd60e51b81526004016102c2906116fd565b5050505050565b604080516060810182526000808252602082018190529181019190915290565b600080600060608486031215611382578283fd5b833561138d816119b6565b9250602084013561139d816119ce565b915060408401356113ad816119ce565b809150509250925092565b6000806000606084860312156113cc578283fd5b83356113d7816119b6565b92506020840135915060408401356113ad816119b6565b60008060208385031215611400578182fd5b82356001600160401b0380821115611416578384fd5b818501915085601f830112611429578384fd5b813581811115611437578485fd5b866020808302850101111561144a578485fd5b60209290920196919550909350505050565b60006020828403121561146d578081fd5b8151611478816119ce565b9392505050565b600060208284031215611490578081fd5b8151611478816119b6565b6000602082840312156114ac578081fd5b5035919050565b6000602082840312156114c4578081fd5b5051919050565b600080604083850312156114dd578182fd5b8235915060208301356114ef816119b6565b809150509250929050565b600080600080600060a08688031215611511578081fd5b853594506020860135611523816119b6565b93506040860135611533816119b6565b94979396509394606081013594506080013592915050565b60008060006060848603121561155f578283fd5b833592506020840135611571816119b6565b929592945050506040919091013590565b60008060408385031215611594578182fd5b50508035926020909101359150565b815260200190565b60008251815b818110156115cb57602081860181015185830152016115b1565b818111156115d95782828501525b509190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b604080825283519082018190526000906020906060840190828701845b828110156116535781516001600160a01b03168452928401929084019060010161162e565b5050508381038285015280855161166a818461196d565b91508387019250845b81811015611694576116868385516115a3565b938501939250600101611673565b5090979650505050505050565b602080825260159082015274426f72696e674d6174683a20556e646572666c6f7760581b604082015260600190565b602080825260139082015272506f6f6c20616c72656164792065786973747360681b604082015260600190565b6020808252601c908201527f426f72696e6745524332303a205472616e73666572206661696c656400000000604082015260600190565b60208082526021908201527f4f6e6c79204d4356322063616e2063616c6c20746869732066756e6374696f6e6040820152601760f91b606082015260800190565b6020808252601590820152744f776e61626c653a207a65726f206164647265737360581b604082015260600190565b6020808252601c908201527f426f72696e674d6174683a2075696e74313238204f766572666c6f7700000000604082015260600190565b60208082526018908201527f426f72696e674d6174683a20416464204f766572666c6f770000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c657220213d2070656e64696e67206f776e6572604082015260600190565b6020808252601b908201527f426f72696e674d6174683a2075696e743634204f766572666c6f770000000000604082015260600190565b6020808252600690820152651313d0d2d15160d21b604082015260600190565b60208082526018908201527f426f72696e674d6174683a204d756c204f766572666c6f770000000000000000604082015260600190565b81516001600160801b031681526020808301516001600160401b0390811691830191909152604092830151169181019190915260600190565b6001600160801b039390931683526001600160401b03918216602084015216604082015260600190565b90815260200190565b9283526020830191909152604082015260600190565b6001600160401b0393909316835260208301919091526001600160801b0316604082015260600190565b6001600160a01b03811681146119cb57600080fd5b50565b80151581146119cb57600080fdfea2646970667358221220a3897d6995af035f53fcbbaf8be68176862166811c127d0f6f2890f2e18dfd4764736f6c634300060c003300000000000000000000000023181f21dea5936e24163ffaba4ea3b316b57f3c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c09756432dad2ff50b2d40618f7b04546dd20043
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000023181f21dea5936e24163ffaba4ea3b316b57f3c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c09756432dad2ff50b2d40618f7b04546dd20043
-----Decoded View---------------
Arg [0] : _rewardToken (address): 0x23181f21dea5936e24163ffaba4ea3b316b57f3c
Arg [1] : _rewardPerSecond (uint256): 0
Arg [2] : _MASTERCHEF_V2 (address): 0xc09756432dad2ff50b2d40618f7b04546dd20043
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000023181f21dea5936e24163ffaba4ea3b316b57f3c
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 000000000000000000000000c09756432dad2ff50b2d40618f7b04546dd20043
Deployed ByteCode Sourcemap
28033:8835:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5693:472;;;;;;:::i;:::-;;:::i;:::-;;32277:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28880:45;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;33389:267::-;;;;;;:::i;:::-;;:::i;34653:835::-;;;;;;:::i;:::-;;:::i;6214:348::-;;;:::i;36047:816::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;35670:193::-;;;;;;:::i;:::-;;:::i;31875:176::-;;;;;;:::i;:::-;;:::i;28934:24::-;;;;;;:::i;:::-;;:::i;32631:519::-;;;;;;:::i;:::-;;:::i;30219:1036::-;;;;;;:::i;:::-;;:::i;5269:20::-;;;:::i;:::-;;;;;;;:::i;29224:30::-;;;:::i;29025:66::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;34187:251::-;;;;;;:::i;:::-;;:::i;31263:426::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;5316:27::-;;;:::i;5693:472::-;6665:5;;-1:-1:-1;;;;;6665:5:0;6651:10;:19;6643:64;;;;-1:-1:-1;;;6643:64:0;;;;;;;:::i;:::-;;;;;;;;;5798:6:::1;5794:364;;;-1:-1:-1::0;;;;;5852:22:0;::::1;::::0;::::1;::::0;:34:::1;;;5878:8;5852:34;5844:68;;;;-1:-1:-1::0;;;5844:68:0::1;;;;;;;:::i;:::-;5979:5;::::0;;5958:37:::1;::::0;-1:-1:-1;;;;;5958:37:0;;::::1;::::0;5979:5;::::1;::::0;5958:37:::1;::::0;::::1;6010:5;:16:::0;;-1:-1:-1;;;;;6010:16:0;::::1;-1:-1:-1::0;;;;;;6010:16:0;;::::1;;::::0;;;;6041:25;;;;::::1;::::0;;5794:364:::1;;;6123:12;:23:::0;;-1:-1:-1;;;;;;6123:23:0::1;-1:-1:-1::0;;;;;6123:23:0;::::1;;::::0;;5794:364:::1;5693:472:::0;;;:::o;32277:99::-;32354:7;:14;;32277:99::o;28880:45::-;;;;;;;;;;;;-1:-1:-1;;;;;28880:45:0;;;-1:-1:-1;;;;;;;;28880:45:0;;;;;-1:-1:-1;;;28880:45:0;;;;:::o;33389:267::-;6665:5;;-1:-1:-1;;;;;6665:5:0;6651:10;:19;6643:64;;;;-1:-1:-1;;;6643:64:0;;;;;;;:::i;:::-;33503:14:::1;::::0;;;:8:::1;:14;::::0;;;;:25;33483:15:::1;::::0;:63:::1;::::0;33534:11;;33483:46:::1;::::0;-1:-1:-1;;;33503:25:0;::::1;-1:-1:-1::0;;;;;33503:25:0::1;33483:19;:46::i;:::-;:50:::0;::::1;:63::i;:::-;33465:15;:81:::0;33585:18:::1;:11:::0;:16:::1;:18::i;:::-;33557:14;::::0;;;:8:::1;:14;::::0;;;;;;:46;;-1:-1:-1;;;;;33557:46:0;;;::::1;-1:-1:-1::0;;;33557:46:0::1;-1:-1:-1::0;;;;;33557:46:0;;::::1;::::0;;;::::1;::::0;;;33619:29;33566:4;;33619:29:::1;::::0;::::1;::::0;33636:11;;33619:29:::1;:::i;:::-;;;;;;;;33389:267:::0;;:::o;34653:835::-;34725:15;34753:20;;:::i;:::-;-1:-1:-1;34776:14:0;;;;:8;:14;;;;;;;;34753:37;;;;;;;;;-1:-1:-1;;;;;34753:37:0;;;;;-1:-1:-1;;;;;;;;34753:37:0;;;;;;;;-1:-1:-1;;;34753:37:0;;;;;;;;;;34825:14;;;:8;:14;;;;;;-1:-1:-1;;;;;34825:21:0;;;;;;;;;;34884;;34935:41;;-1:-1:-1;;;34935:41:0;;34753:37;;34825:21;;34857:48;;;;;34776:14;;34948:13;34935:35;;;;;;:41;;34785:4;;34935:41;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34935:51:0;;34987:13;34935:66;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34916:85;;35034:4;:19;;;-1:-1:-1;;;;;35016:37:0;:15;:37;:54;;;;-1:-1:-1;35057:13:0;;;35016:54;35012:346;;;35087:12;35102:40;35122:4;:19;;;-1:-1:-1;;;;;35102:40:0;:15;:19;;:40;;;;:::i;:::-;35087:55;;35157:19;35228:15;;35179:46;35209:4;:15;;;-1:-1:-1;;;;;35179:46:0;:25;35188:15;;35179:4;:8;;:25;;;;:::i;:::-;:29;;:46::i;:::-;:64;;;;;;;-1:-1:-1;35277:69:0;35337:8;35298:36;35179:64;29308:4;35298:15;:36::i;:::-;:47;;;;;35277:16;;35298:47;;35277:20;:69::i;:::-;35258:88;;35012:346;;;35378:102;35461:4;:18;;;35378:78;35440:4;:15;;;29308:4;35379:33;35395:16;35379:4;:11;;;:15;;:33;;;;:::i;:::-;:55;;;;;;;35378:61;:78::i;:102::-;35368:112;34653:835;-1:-1:-1;;;;;;;34653:835:0:o;6214:348::-;6282:12;;-1:-1:-1;;;;;6282:12:0;6342:10;:27;;6334:72;;;;-1:-1:-1;;;6334:72:0;;;;;;;:::i;:::-;6465:5;;;6444:42;;-1:-1:-1;;;;;6444:42:0;;;;6465:5;;;6444:42;;;6497:5;:21;;-1:-1:-1;;;;;6497:21:0;;;-1:-1:-1;;;;;;6497:21:0;;;;;;;6529:25;;;;;;;6214:348::o;36047:816::-;36096:20;;:::i;:::-;-1:-1:-1;36136:13:0;;;;:8;:13;;;;;;;;;36129:20;;;;;;;;;-1:-1:-1;;;;;36129:20:0;;;;-1:-1:-1;;;;;;;;36129:20:0;;;;;;;;;;-1:-1:-1;;;36129:20:0;;;;;;;;;;;36164:15;:37;36160:696;;;36237:40;;-1:-1:-1;;;36237:40:0;;36218:16;;-1:-1:-1;;;;;36250:13:0;36237:35;;;;:40;;36273:3;;36237:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;36237:50:0;;36288:13;36237:65;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36218:84;-1:-1:-1;36323:12:0;;36319:340;;36356:12;36371:40;36391:4;:19;;;-1:-1:-1;;;;;36371:40:0;:15;:19;;:40;;;;:::i;:::-;36356:55;;36430:19;36501:15;;36452:46;36482:4;:15;;;-1:-1:-1;;;;;36452:46:0;:25;36461:15;;36452:4;:8;;:25;;;;:::i;:46::-;:64;;;;;;;-1:-1:-1;36559:84:0;36585:57;36625:8;36586:36;36452:64;29308:4;36586:15;:36::i;:::-;:47;;;;;;36585:55;:57::i;:::-;36559:21;;-1:-1:-1;;;;;36559:25:0;;;:84::i;:::-;-1:-1:-1;;;;;36535:108:0;;;-1:-1:-1;;36319:340:0;36695:22;:15;:20;:22::i;:::-;-1:-1:-1;;;;;36673:44:0;;;:19;;;;:44;;;36732:13;;;;:8;:13;;;;;;;;:20;;;;;;;;;;-1:-1:-1;;;;;;36732:20:0;;;-1:-1:-1;;;;;36732:20:0;;;-1:-1:-1;;;;36732:20:0;-1:-1:-1;;;36732:20:0;;;;;-1:-1:-1;;;;;36732:20:0;-1:-1:-1;;;36732:20:0;;;;;;;;;;;;;;36772:72;36732:13;;36772:72;;;;36732:20;;36812:8;;36772:72;:::i;:::-;;;;;;;;36160:696;;36047:816;;;:::o;35670:193::-;35754:4;35740:11;35776:80;35800:3;35796:1;:7;35776:80;;;35825:19;35836:4;;35841:1;35836:7;;;;;;;;;;;;;35825:10;:19::i;:::-;-1:-1:-1;35805:3:0;;35776:80;;;;35670:193;;;:::o;31875:176::-;6665:5;;-1:-1:-1;;;;;6665:5:0;6651:10;:19;6643:64;;;;-1:-1:-1;;;6643:64:0;;;;;;;:::i;:::-;31957:15:::1;:34:::0;;;32007:36:::1;::::0;::::1;::::0;::::1;::::0;31975:16;;32007:36:::1;:::i;:::-;;;;;;;;31875:176:::0;:::o;28934:24::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28934:24:0;:::o;32631:519::-;6665:5;;-1:-1:-1;;;;;6665:5:0;6651:10;:19;6643:64;;;;-1:-1:-1;;;6643:64:0;;;;;;;:::i;:::-;32714:14:::1;::::0;;;:8:::1;:14;::::0;;;;:29;-1:-1:-1;;;32714:29:0;::::1;-1:-1:-1::0;;;;;32714:29:0::1;:34:::0;32706:66:::1;;;;-1:-1:-1::0;;;32706:66:0::1;;;;;;;:::i;:::-;32852:15;::::0;32808::::1;::::0;32852:31:::1;::::0;32872:10;32852:19:::1;:31::i;:::-;32834:15;:49:::0;32913:151:::1;::::0;;::::1;::::0;::::1;::::0;;;-1:-1:-1;32913:151:0;;::::1;::::0;::::1;32997:21;:14:::0;:19:::1;:21::i;:::-;-1:-1:-1::0;;;;;32913:151:0::1;;;;;32949:17;:10;:15;:17::i;:::-;-1:-1:-1::0;;;;;32913:151:0;;::::1;::::0;;;32896:14:::1;::::0;;;:8:::1;:14;::::0;;;;;;;:168;;;;;;::::1;::::0;;;::::1;::::0;;::::1;-1:-1:-1::0;;;32896:168:0::1;-1:-1:-1::0;;;;;32896:168:0;;;::::1;-1:-1:-1::0;;;32896:168:0::1;-1:-1:-1::0;;;;;;;;;32896:168:0;;::::1;-1:-1:-1::0;;;;;;32896:168:0;;::::1;::::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;33075:7:::1;:18:::0;;32896:168;33075:18;::::1;::::0;;;;;::::1;::::0;;;33109:33;32905:4;;33109:33:::1;::::0;::::1;::::0;33131:10;;33109:33:::1;:::i;:::-;;;;;;;;6718:1;32631:519:::0;;:::o;30219:1036::-;32110:10;-1:-1:-1;;;;;32124:13:0;32110:27;;32088:110;;;;-1:-1:-1;;;32088:110:0;;;;;;;:::i;:::-;29436:8:::1;;29448:1;29436:13;29428:32;;;;-1:-1:-1::0;;;29428:32:0::1;;;;;;;:::i;:::-;29482:1;29471:8;:12:::0;30352:20:::2;;:::i;:::-;30375:15;30386:3;30375:10;:15::i;:::-;30401:21;30425:13:::0;;;:8:::2;:13;::::0;;;;;;;-1:-1:-1;;;;;30425:20:0;::::2;::::0;;;;;;;30486:11;;30352:38;;-1:-1:-1;30425:20:0;30486:15;30482:576:::2;;30545:147;30673:4;:18;;;30545:123;30634:4;:15;;;29308:4;30546:38;30562:4;:21;;;-1:-1:-1::0;;;;;30546:38:0::2;:4;:11;;;:15;;:38;;;;:::i;30545:147::-;30518:174;;30707:15;30725:11;-1:-1:-1::0;;;;;30725:21:0::2;;30755:4;30725:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30707:54;;30790:7;30780;:17;30776:271;;;30818:37;-1:-1:-1::0;;;;;30818:11:0::2;:24;30843:2:::0;30847:7;30818:24:::2;:37::i;:::-;30895:17:::0;;::::2;30874:18;::::0;::::2;:38:::0;30776:271:::2;;;30953:37;-1:-1:-1::0;;;;;30953:11:0::2;:24;30978:2:::0;30982:7;30953:24:::2;:37::i;:::-;31030:1;31009:18;::::0;::::2;:22:::0;30776:271:::2;30482:576;;31068:21:::0;;;31130;;29308:4:::2;::::0;31118:34:::2;::::0;31082:7;;-1:-1:-1;;;;;31118:34:0::2;:11;:34::i;:::-;:56;;;;;;31100:4;:15;;:74;;;;31244:2;-1:-1:-1::0;;;;;31190:57:0::2;31209:3;31202:5;-1:-1:-1::0;;;;;31190:57:0::2;;31224:4;:18;;;31214:7;:28;31190:57;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;29517:1:0::1;29506:8;:12:::0;-1:-1:-1;;;;;;30219:1036:0:o;5269:20::-;;;-1:-1:-1;;;;;5269:20:0;;:::o;29224:30::-;;;;:::o;29025:66::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34187:251::-;6665:5;;-1:-1:-1;;;;;6665:5:0;6651:10;:19;6643:64;;;;-1:-1:-1;;;6643:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34293:19:0;::::1;34289:142;;34329:19;::::0;-1:-1:-1;;;;;34329:11:0;::::1;::::0;:19;::::1;;;::::0;34341:6;;34329:19:::1;::::0;;;34341:6;34329:11;:19;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;34289:142;;;34381:38;-1:-1:-1::0;;;;;34381:26:0;::::1;34408:2:::0;34412:6;34381:26:::1;:38::i;31263:426::-:0;31459:15;;;31472:1;31459:15;;;;;;;;;31354:28;;;;;;31459:15;;;;;;;;;;;-1:-1:-1;31459:15:0;31427:47;;31505:11;31485:13;31499:1;31485:16;;;;;;;;-1:-1:-1;;;;;31485:32:0;;;;:16;;;;;;;;;;;:32;31562:16;;;31576:1;31562:16;;;;;;;;;31528:31;;31562:16;;;;;;;;;;;;-1:-1:-1;31562:16:0;31528:50;;31609:23;31622:3;31627:4;31609:12;:23::i;:::-;31589:14;31604:1;31589:17;;;;;;;;;;;;;;;;;:43;31651:13;;;;-1:-1:-1;31263:426:0;-1:-1:-1;;;;31263:426:0:o;5316:27::-;;;-1:-1:-1;;;;;5316:27:0;;:::o;3258:122::-;3341:5;;;3336:16;;;;3328:50;;;;-1:-1:-1;;;3328:50:0;;;;;;;:::i;:::-;3258:122;;;;:::o;3127:125::-;3210:5;;;3205:16;;;;3197:53;;;;-1:-1:-1;;;3197:53:0;;;;;;;:::i;3696:156::-;3744:8;-1:-1:-1;;;;;3773:15:0;;;3765:55;;;;-1:-1:-1;;;3765:55:0;;;;;;;:::i;:::-;-1:-1:-1;3842:1:0;3696:156::o;3386:137::-;3444:9;3464:6;;;:28;;-1:-1:-1;;3479:5:0;;;3491:1;3486;3479:5;3486:1;3474:13;;;;;:18;3464:28;3456:65;;;;-1:-1:-1;;;3456:65:0;;;;;;;:::i;3529:161::-;3578:9;-1:-1:-1;;;;;3608:16:0;;;3600:57;;;;-1:-1:-1;;;3600:57:0;;;;;;;:::i;4050:125::-;4133:5;;;-1:-1:-1;;;;;4128:16:0;;;;;;;;4120:53;;;;-1:-1:-1;;;4120:53:0;;;;;;;:::i;1814:304::-;1899:12;1913:17;1942:5;-1:-1:-1;;;;;1934:19:0;1977:10;1989:2;1993:6;1954:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1954:46:0;;;;;;;;;;;1934:67;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1898:103;;;;2020:7;:57;;;;-1:-1:-1;2032:11:0;;:16;;:44;;;2063:4;2052:24;;;;;;;;;;;;:::i;:::-;2012:98;;;;-1:-1:-1;;;2012:98:0;;;;;;;:::i;:::-;1814:304;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1384:479::-;;;;1516:2;1504:9;1495:7;1491:23;1487:32;1484:2;;;-1:-1;;1522:12;1484:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;1574:63;-1:-1;1674:2;1710:22;;737:20;762:30;737:20;762:30;:::i;:::-;1682:60;-1:-1;1779:2;1815:22;;737:20;762:30;737:20;762:30;:::i;:::-;1787:60;;;;1478:385;;;;;:::o;1870:507::-;;;;2016:2;2004:9;1995:7;1991:23;1987:32;1984:2;;;-1:-1;;2022:12;1984:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;2074:63;-1:-1;2174:2;2213:22;;1173:20;;-1:-1;2282:2;2329:22;;217:20;242:41;217:20;242:41;:::i;2384:397::-;;;2523:2;2511:9;2502:7;2498:23;2494:32;2491:2;;;-1:-1;;2529:12;2491:2;2587:17;2574:31;-1:-1;;;;;2625:18;2617:6;2614:30;2611:2;;;-1:-1;;2647:12;2611:2;2748:6;2737:9;2733:22;;;443:3;436:4;428:6;424:17;420:27;410:2;;-1:-1;;451:12;410:2;494:6;481:20;2625:18;513:6;510:30;507:2;;;-1:-1;;543:12;507:2;638:3;2523:2;;622:6;618:17;579:6;604:32;;601:41;598:2;;;-1:-1;;645:12;598:2;2523;575:17;;;;;2667:98;;-1:-1;2485:296;;-1:-1;;;;2485:296::o;2788:257::-;;2900:2;2888:9;2879:7;2875:23;2871:32;2868:2;;;-1:-1;;2906:12;2868:2;885:6;879:13;897:30;921:5;897:30;:::i;:::-;2958:71;2862:183;-1:-1;;;2862:183::o;3052:289::-;;3180:2;3168:9;3159:7;3155:23;3151:32;3148:2;;;-1:-1;;3186:12;3148:2;1036:6;1030:13;1048:46;1088:5;1048:46;:::i;3348:241::-;;3452:2;3440:9;3431:7;3427:23;3423:32;3420:2;;;-1:-1;;3458:12;3420:2;-1:-1;1173:20;;3414:175;-1:-1;3414:175::o;3596:263::-;;3711:2;3699:9;3690:7;3686:23;3682:32;3679:2;;;-1:-1;;3717:12;3679:2;-1:-1;1321:13;;3673:186;-1:-1;3673:186::o;3866:366::-;;;3987:2;3975:9;3966:7;3962:23;3958:32;3955:2;;;-1:-1;;3993:12;3955:2;1186:6;1173:20;4045:63;;4145:2;4188:9;4184:22;72:20;97:33;124:5;97:33;:::i;:::-;4153:63;;;;3949:283;;;;;:::o;4239:743::-;;;;;;4411:3;4399:9;4390:7;4386:23;4382:33;4379:2;;;-1:-1;;4418:12;4379:2;1186:6;1173:20;4470:63;;4570:2;4613:9;4609:22;72:20;97:33;124:5;97:33;:::i;:::-;4578:63;-1:-1;4678:2;4717:22;;72:20;97:33;72:20;97:33;:::i;:::-;4373:609;;;;-1:-1;4686:63;;4786:2;4825:22;;1173:20;;-1:-1;4894:3;4934:22;1173:20;;4373:609;-1:-1;;4373:609::o;4989:491::-;;;;5127:2;5115:9;5106:7;5102:23;5098:32;5095:2;;;-1:-1;;5133:12;5095:2;1186:6;1173:20;5185:63;;5285:2;5328:9;5324:22;72:20;97:33;124:5;97:33;:::i;:::-;5089:391;;5293:63;;-1:-1;;;5393:2;5432:22;;;;1173:20;;5089:391::o;5487:366::-;;;5608:2;5596:9;5587:7;5583:23;5579:32;5576:2;;;-1:-1;;5614:12;5576:2;-1:-1;;1173:20;;;5766:2;5805:22;;;1173:20;;-1:-1;5570:283::o;6069:173::-;13620:37;;6231:4;6222:14;;6149:93::o;14013:271::-;;8061:5;22946:12;-1:-1;25508:101;25522:6;25519:1;25516:13;25508:101;;;8205:4;25589:11;;;;;25583:18;25570:11;;;25563:39;25537:10;25508:101;;;25624:6;25621:1;25618:13;25615:2;;;-1:-1;25680:6;25675:3;25671:16;25664:27;25615:2;-1:-1;8236:16;;;;;14147:137;-1:-1;;14147:137::o;14291:222::-;-1:-1;;;;;24790:54;;;;6321:37;;14418:2;14403:18;;14389:124::o;14520:333::-;-1:-1;;;;;24790:54;;;;6321:37;;14839:2;14824:18;;13620:37;14675:2;14660:18;;14646:207::o;14860:655::-;15128:2;15142:47;;;22946:12;;15113:18;;;23621:19;;;14860:655;;23670:4;;23661:14;;;;22629;;;14860:655;6856:286;6881:6;6878:1;6875:13;6856:286;;;6942:13;;-1:-1;;;;;24790:54;8338:63;;6040:14;;;;23361;;;;2625:18;6896:9;6856:286;;;6860:14;;;15372:9;15366:4;15362:20;23670:4;15346:9;15342:18;15335:48;15397:108;7396:5;22946:12;7415:86;7494:6;7489:3;7415:86;:::i;:::-;7408:93;;23670:4;7572:5;22629:14;7584:21;;-1:-1;7611:260;7636:6;7633:1;7630:13;7611:260;;;7724:63;7783:3;7703:6;7697:13;7724:63;:::i;:::-;23361:14;;;;7717:70;-1:-1;6903:1;7651:9;7611:260;;;-1:-1;15389:116;;15099:416;-1:-1;;;;;;;15099:416::o;15522:::-;15722:2;15736:47;;;8638:2;15707:18;;;23621:19;-1:-1;;;23661:14;;;8654:44;8717:12;;;15693:245::o;15945:416::-;16145:2;16159:47;;;8968:2;16130:18;;;23621:19;-1:-1;;;23661:14;;;8984:42;9045:12;;;16116:245::o;16368:416::-;16568:2;16582:47;;;9296:2;16553:18;;;23621:19;9332:30;23661:14;;;9312:51;9382:12;;;16539:245::o;16791:416::-;16991:2;17005:47;;;9633:2;16976:18;;;23621:19;9669:34;23661:14;;;9649:55;-1:-1;;;9724:12;;;9717:25;9761:12;;;16962:245::o;17214:416::-;17414:2;17428:47;;;10012:2;17399:18;;;23621:19;-1:-1;;;23661:14;;;10028:44;10091:12;;;17385:245::o;17637:416::-;17837:2;17851:47;;;10342:2;17822:18;;;23621:19;10378:30;23661:14;;;10358:51;10428:12;;;17808:245::o;18060:416::-;18260:2;18274:47;;;10679:2;18245:18;;;23621:19;10715:26;23661:14;;;10695:47;10761:12;;;18231:245::o;18483:416::-;18683:2;18697:47;;;18668:18;;;23621:19;11048:34;23661:14;;;11028:55;11102:12;;;18654:245::o;18906:416::-;19106:2;19120:47;;;19091:18;;;23621:19;11389:34;23661:14;;;11369:55;11443:12;;;19077:245::o;19329:416::-;19529:2;19543:47;;;11694:2;19514:18;;;23621:19;11730:29;23661:14;;;11710:50;11779:12;;;19500:245::o;19752:416::-;19952:2;19966:47;;;12030:1;19937:18;;;23621:19;-1:-1;;;23661:14;;;12045:29;12093:12;;;19923:245::o;20175:416::-;20375:2;20389:47;;;12344:2;20360:18;;;23621:19;12380:26;23661:14;;;12360:47;12426:12;;;20346:245::o;20598:326::-;12756:23;;-1:-1;;;;;24670:46;13257:37;;12937:4;12926:16;;;12920:23;-1:-1;;;;;24996:30;;;12995:14;;;13848:36;;;;13095:4;13084:16;;;13078:23;24996:30;13153:14;;;13848:36;;;;20777:2;20762:18;;20748:176::o;20931:436::-;-1:-1;;;;;24670:46;;;;13257:37;;-1:-1;;;;;24996:30;;;21272:2;21257:18;;13848:36;24996:30;21353:2;21338:18;;13848:36;21110:2;21095:18;;21081:286::o;21374:222::-;13620:37;;;21501:2;21486:18;;21472:124::o;21603:444::-;13620:37;;;21950:2;21935:18;;13620:37;;;;22033:2;22018:18;;13620:37;21786:2;21771:18;;21757:290::o;22054:440::-;-1:-1;;;;;24996:30;;;;13848:36;;22397:2;22382:18;;13620:37;;;;-1:-1;;;;;24670:46;22480:2;22465:18;;13497:50;22235:2;22220:18;;22206:288::o;25712:117::-;-1:-1;;;;;24790:54;;25771:35;;25761:2;;25820:1;;25810:12;25761:2;25755:74;:::o;25976:111::-;26057:5;24471:13;24464:21;26035:5;26032:32;26022:2;;26078:1;;26068:12
Swarm Source
ipfs://a3897d6995af035f53fcbbaf8be68176862166811c127d0f6f2890f2e18dfd47
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.