BscScan - Sponsored slots available. Book your slot here!
Contract Overview
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Contract Name:
bpDOTRewardPool
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at BscScan.com on 2021-03-31 */ // SPDX-License-Identifier: MIT pragma solidity 0.6.12; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies in 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"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue( address target, bytes memory data, uint256 weiValue, string memory errorMessage ) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: weiValue}(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // Note that this pool has no minter key of BpDot (rewards). // Instead, the governance will call BpDot distributeReward method and send reward to this pool at the beginning. contract bpDOTRewardPool { using SafeMath for uint256; using SafeERC20 for IERC20; // governance address public operator; // Info of each user. struct UserInfo { uint256 amount; // How many LP tokens the user has provided. uint256 rewardDebt; // Reward debt. See explanation below. } // Info of each pool. struct PoolInfo { IERC20 lpToken; // Address of LP token contract. uint256 allocPoint; // How many allocation points assigned to this pool. bpDOTs to distribute per block. uint256 lastRewardBlock; // Last block number that bpDOTs distribution occurs. uint256 accBpDotPerShare; // Accumulated bpDOTs per share, times 1e18. See below. bool isStarted; // if lastRewardBlock has passed } IERC20 public bpdot = IERC20(0x0000000000000000000000000000000000000000); // Info of each pool. PoolInfo[] public poolInfo; // Info of each user that stakes LP tokens. mapping(uint256 => mapping(address => UserInfo)) public userInfo; // Total allocation points. Must be the sum of all allocation points in all pools. uint256 public totalAllocPoint = 0; // The block number when BpDot mining starts. uint256 public startBlock; uint256 public constant BLOCKS_PER_DAY = 28800; uint256[] public epochTotalRewards = [70000 ether, 180000 ether]; // Block number when each epoch ends. uint256[2] public epochEndBlocks; // Reward per block for each of 3 epochs (last item is equal to 0 - for sanity). uint256[3] public epochBpDotPerBlock; event Deposit(address indexed user, uint256 indexed pid, uint256 amount); event Withdraw(address indexed user, uint256 indexed pid, uint256 amount); event EmergencyWithdraw(address indexed user, uint256 indexed pid, uint256 amount); event RewardPaid(address indexed user, uint256 amount); constructor(address _bpdot, uint256 _startBlock) public { require(block.number < _startBlock, "late"); if (_bpdot != address(0)) bpdot = IERC20(_bpdot); startBlock = _startBlock; // supposed to be 6180000 (Thu Apr 01 2021 05:30:00 GMT+0) epochEndBlocks[0] = startBlock + BLOCKS_PER_DAY * 7; epochBpDotPerBlock[0] = epochTotalRewards[0].div(BLOCKS_PER_DAY * 7); epochEndBlocks[1] = epochEndBlocks[0] + BLOCKS_PER_DAY * 180; epochBpDotPerBlock[1] = epochTotalRewards[1].div(BLOCKS_PER_DAY * 180); epochBpDotPerBlock[2] = 0; operator = msg.sender; } modifier onlyOperator() { require(operator == msg.sender, "bpDOTRewardPool: caller is not the operator"); _; } function poolLength() external view returns (uint256) { return poolInfo.length; } function checkPoolDuplicate(IERC20 _lpToken) internal view { uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; ++pid) { require(poolInfo[pid].lpToken != _lpToken, "bpDOTRewardPool: existing pool?"); } } // Add a new lp to the pool. Can only be called by the owner. function add( uint256 _allocPoint, IERC20 _lpToken, bool _withUpdate, uint256 _lastRewardBlock ) public onlyOperator { checkPoolDuplicate(_lpToken); if (_withUpdate) { massUpdatePools(); } if (block.number < startBlock) { // chef is sleeping if (_lastRewardBlock == 0) { _lastRewardBlock = startBlock; } else { if (_lastRewardBlock < startBlock) { _lastRewardBlock = startBlock; } } } else { // chef is cooking if (_lastRewardBlock == 0 || _lastRewardBlock < block.number) { _lastRewardBlock = block.number; } } bool _isStarted = (_lastRewardBlock <= startBlock) || (_lastRewardBlock <= block.number); poolInfo.push(PoolInfo({lpToken: _lpToken, allocPoint: _allocPoint, lastRewardBlock: _lastRewardBlock, accBpDotPerShare: 0, isStarted: _isStarted})); if (_isStarted) { totalAllocPoint = totalAllocPoint.add(_allocPoint); } } // Update the given pool's BpDot allocation point. Can only be called by the owner. function set(uint256 _pid, uint256 _allocPoint) public onlyOperator { massUpdatePools(); PoolInfo storage pool = poolInfo[_pid]; if (pool.isStarted) { totalAllocPoint = totalAllocPoint.sub(pool.allocPoint).add(_allocPoint); } pool.allocPoint = _allocPoint; } // Return accumulate rewards over the given _from to _to block. function getGeneratedReward(uint256 _from, uint256 _to) public view returns (uint256) { for (uint8 epochId = 2; epochId >= 1; --epochId) { if (_to >= epochEndBlocks[epochId - 1]) { if (_from >= epochEndBlocks[epochId - 1]) return _to.sub(_from).mul(epochBpDotPerBlock[epochId]); uint256 _generatedReward = _to.sub(epochEndBlocks[epochId - 1]).mul(epochBpDotPerBlock[epochId]); if (epochId == 1) return _generatedReward.add(epochEndBlocks[0].sub(_from).mul(epochBpDotPerBlock[0])); for (epochId = epochId - 1; epochId >= 1; --epochId) { if (_from >= epochEndBlocks[epochId - 1]) return _generatedReward.add(epochEndBlocks[epochId].sub(_from).mul(epochBpDotPerBlock[epochId])); _generatedReward = _generatedReward.add(epochEndBlocks[epochId].sub(epochEndBlocks[epochId - 1]).mul(epochBpDotPerBlock[epochId])); } return _generatedReward.add(epochEndBlocks[0].sub(_from).mul(epochBpDotPerBlock[0])); } } return _to.sub(_from).mul(epochBpDotPerBlock[0]); } // View function to see pending bpDOTs on frontend. function pendingReward(uint256 _pid, address _user) external view returns (uint256) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accBpDotPerShare = pool.accBpDotPerShare; uint256 lpSupply = pool.lpToken.balanceOf(address(this)); if (block.number > pool.lastRewardBlock && lpSupply != 0) { uint256 _generatedReward = getGeneratedReward(pool.lastRewardBlock, block.number); uint256 _bpdotReward = _generatedReward.mul(pool.allocPoint).div(totalAllocPoint); accBpDotPerShare = accBpDotPerShare.add(_bpdotReward.mul(1e18).div(lpSupply)); } return user.amount.mul(accBpDotPerShare).div(1e18).sub(user.rewardDebt); } // Update reward variables for all pools. Be careful of gas spending! function massUpdatePools() public { uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; ++pid) { updatePool(pid); } } // Update reward variables of the given pool to be up-to-date. function updatePool(uint256 _pid) public { PoolInfo storage pool = poolInfo[_pid]; if (block.number <= pool.lastRewardBlock) { return; } uint256 lpSupply = pool.lpToken.balanceOf(address(this)); if (lpSupply == 0) { pool.lastRewardBlock = block.number; return; } if (!pool.isStarted) { pool.isStarted = true; totalAllocPoint = totalAllocPoint.add(pool.allocPoint); } if (totalAllocPoint > 0) { uint256 _generatedReward = getGeneratedReward(pool.lastRewardBlock, block.number); uint256 _bpdotReward = _generatedReward.mul(pool.allocPoint).div(totalAllocPoint); pool.accBpDotPerShare = pool.accBpDotPerShare.add(_bpdotReward.mul(1e18).div(lpSupply)); } pool.lastRewardBlock = block.number; } // Deposit LP tokens. function deposit(uint256 _pid, uint256 _amount) public { address _sender = msg.sender; PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_sender]; updatePool(_pid); if (user.amount > 0) { uint256 _pending = user.amount.mul(pool.accBpDotPerShare).div(1e18).sub(user.rewardDebt); if (_pending > 0) { safeBpDotTransfer(_sender, _pending); emit RewardPaid(_sender, _pending); } } if (_amount > 0) { pool.lpToken.safeTransferFrom(_sender, address(this), _amount); user.amount = user.amount.add(_amount); } user.rewardDebt = user.amount.mul(pool.accBpDotPerShare).div(1e18); emit Deposit(_sender, _pid, _amount); } // Withdraw LP tokens. function withdraw(uint256 _pid, uint256 _amount) public { address _sender = msg.sender; PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_sender]; require(user.amount >= _amount, "withdraw: not good"); updatePool(_pid); uint256 _pending = user.amount.mul(pool.accBpDotPerShare).div(1e18).sub(user.rewardDebt); if (_pending > 0) { safeBpDotTransfer(_sender, _pending); emit RewardPaid(_sender, _pending); } if (_amount > 0) { user.amount = user.amount.sub(_amount); pool.lpToken.safeTransfer(_sender, _amount); } user.rewardDebt = user.amount.mul(pool.accBpDotPerShare).div(1e18); emit Withdraw(_sender, _pid, _amount); } // Withdraw without caring about rewards. EMERGENCY ONLY. function emergencyWithdraw(uint256 _pid) public { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; uint256 _amount = user.amount; user.amount = 0; user.rewardDebt = 0; pool.lpToken.safeTransfer(msg.sender, _amount); emit EmergencyWithdraw(msg.sender, _pid, _amount); } // Safe transfer function, just in case if rounding error causes pool to not have enough bpDOTs. function safeBpDotTransfer(address _to, uint256 _amount) internal { uint256 _bpdotBal = bpdot.balanceOf(address(this)); if (_bpdotBal > 0) { if (_amount > _bpdotBal) { bpdot.safeTransfer(_to, _bpdotBal); } else { bpdot.safeTransfer(_to, _amount); } } } function setOperator(address _operator) external onlyOperator { operator = _operator; } function governanceRecoverUnsupported( IERC20 _token, uint256 amount, address to ) external onlyOperator { if (block.number < epochEndBlocks[1] + BLOCKS_PER_DAY * 180) { // do not allow to drain lpToken if less than 6 months after farming ends. require(_token != bpdot, "!bpdot"); uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; ++pid) { PoolInfo storage pool = poolInfo[pid]; require(_token != pool.lpToken, "!pool.lpToken"); } } _token.safeTransfer(to, amount); } }
[{"inputs":[{"internalType":"address","name":"_bpdot","type":"address"},{"internalType":"uint256","name":"_startBlock","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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"}],"name":"Deposit","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"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardPaid","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"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"BLOCKS_PER_DAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IERC20","name":"_lpToken","type":"address"},{"internalType":"bool","name":"_withUpdate","type":"bool"},{"internalType":"uint256","name":"_lastRewardBlock","type":"uint256"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bpdot","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"epochBpDotPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"epochEndBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"epochTotalRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"getGeneratedReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IERC20","name":"lpToken","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accBpDotPerShare","type":"uint256"},{"internalType":"bool","name":"isStarted","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","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":"address","name":"_operator","type":"address"}],"name":"setOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"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"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600180546001600160a01b0319169055600060045560c0604052690ed2b525841adfc00000608090815269261dd1ce2f208880000060a0526200004790600690600262000272565b503480156200005557600080fd5b506040516200214138038062002141833981810160405260408110156200007b57600080fd5b508051602090910151438111620000c2576040805162461bcd60e51b815260206004808301919091526024820152636c61746560e01b604482015290519081900360640190fd5b6001600160a01b03821615620000ee57600180546001600160a01b0319166001600160a01b0384161790555b60058190556203138080820160075560068054620001319291906000906200011257fe5b90600052602060002001546200017a60201b620015591790919060201c565b600955600754624f1a00908101600855600680546200015892919060019081106200011257fe5b600a5550506000600b81905580546001600160a01b03191633179055620002e4565b6000620001c483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620001cb60201b60201c565b9392505050565b600081836200025b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200021f57818101518382015260200162000205565b50505050905090810190601f1680156200024d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816200026857fe5b0495945050505050565b828054828255906000526020600020908101928215620002bb579160200282015b82811115620002bb57825182906001600160501b031690559160200191906001019062000293565b50620002c9929150620002cd565b5090565b5b80821115620002c95760008155600101620002ce565b611e4d80620002f46000396000f3fe608060405234801561001057600080fd5b50600436106101825760003560e01c806354575af4116100d857806393f1a40b1161008c5780639a25cefc116100665780639a25cefc1461044f578063b3ab15fb1461046c578063e2bbb1581461049f57610182565b806393f1a40b1461037d57806396805e54146103cf57806398969e821461041657610182565b8063630b5ba1116100bd578063630b5ba1146103655780636bb987fe1461036d578063775a9fe91461037557610182565b806354575af4146102f1578063570ca7351461033457610182565b80633e30d80a1161013a57806348cd4cb11161011457806348cd4cb1146102af57806351eb05a6146102b75780635312ea8e146102d457610182565b80633e30d80a146102525780633fd500011461026f578063441a3e701461028c57610182565b806317caf6f11161016b57806317caf6f1146102025780631ab06ee51461020a578063231f0c6a1461022f57610182565b8063081e3eda146101875780631526fe27146101a1575b600080fd5b61018f6104c2565b60408051918252519081900360200190f35b6101be600480360360208110156101b757600080fd5b50356104c8565b6040805173ffffffffffffffffffffffffffffffffffffffff9096168652602086019490945284840192909252606084015215156080830152519081900360a00190f35b61018f610520565b61022d6004803603604081101561022057600080fd5b5080359060200135610526565b005b61018f6004803603604081101561024557600080fd5b50803590602001356105fb565b61018f6004803603602081101561026857600080fd5b50356107f6565b61018f6004803603602081101561028557600080fd5b503561080a565b61022d600480360360408110156102a257600080fd5b5080359060200135610817565b61018f610a2d565b61022d600480360360208110156102cd57600080fd5b5035610a33565b61022d600480360360208110156102ea57600080fd5b5035610bd5565b61022d6004803603606081101561030757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359160409091013516610c7e565b61033c610e72565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b61022d610e8e565b61018f610eb1565b61033c610eb7565b6103b66004803603604081101561039357600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16610ed3565b6040805192835260208301919091528051918290030190f35b61022d600480360360808110156103e557600080fd5b5080359073ffffffffffffffffffffffffffffffffffffffff60208201351690604081013515159060600135610ef7565b61018f6004803603604081101561042c57600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff1661115e565b61018f6004803603602081101561046557600080fd5b50356112e0565b61022d6004803603602081101561048257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166112fe565b61022d600480360360408110156104b557600080fd5b50803590602001356113b5565b60025490565b600281815481106104d557fe5b60009182526020909120600590910201805460018201546002830154600384015460049094015473ffffffffffffffffffffffffffffffffffffffff90931694509092909160ff1685565b60045481565b60005473ffffffffffffffffffffffffffffffffffffffff163314610596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180611ded602b913960400191505060405180910390fd5b61059e610e8e565b6000600283815481106105ad57fe5b60009182526020909120600590910201600481015490915060ff16156105f4576105f0826105ea836001015460045461159b90919063ffffffff16565b906115dd565b6004555b6001015550565b600060025b60018160ff16106107db5760076001820360ff166002811061061e57fe5b015483106107b45760076001820360ff166002811061063957fe5b0154841061066e5761066660098260ff166003811061065457fe5b0154610660858761159b565b90611651565b9150506107f0565b60006106a460098360ff166003811061068357fe5b015461066060076001860360ff166002811061069b57fe5b0154879061159b565b90508160ff16600114156106e0576106d76106d0600960005b015461066088600760005b01549061159b565b82906115dd565b925050506107f0565b6001820391505b60018260ff16106107a55760076001830360ff166002811061070557fe5b01548510610739576106d76106d060098460ff166003811061072357fe5b01546106608860078760ff16600281106106c857fe5b6107796106d060098460ff166003811061074f57fe5b015461066060076001870360ff166002811061076757fe5b015460078760ff16600281106106c857fe5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9092019190506106e7565b6106d76106d0600960006106bd565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01610600565b506009546107ed90610660848661159b565b90505b92915050565b6009816003811061080357fe5b0154905081565b6007816002811061080357fe5b600033905060006002848154811061082b57fe5b6000918252602080832087845260038252604080852073ffffffffffffffffffffffffffffffffffffffff8816865290925292208054600590920290920192508411156108d957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f77697468647261773a206e6f7420676f6f640000000000000000000000000000604482015290519081900360640190fd5b6108e285610a33565b600061091f8260010154610919670de0b6b3a76400006109138760030154876000015461165190919063ffffffff16565b90611559565b9061159b565b9050801561097e5761093184826116c4565b60408051828152905173ffffffffffffffffffffffffffffffffffffffff8616917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b84156109b5578154610990908661159b565b825582546109b59073ffffffffffffffffffffffffffffffffffffffff1685876117ba565b600383015482546109d391670de0b6b3a76400009161091391611651565b6001830155604080518681529051879173ffffffffffffffffffffffffffffffffffffffff8716917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a3505050505050565b60055481565b600060028281548110610a4257fe5b9060005260206000209060050201905080600201544311610a635750610bd2565b8054604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009273ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b158015610ad357600080fd5b505afa158015610ae7573d6000803e3d6000fd5b505050506040513d6020811015610afd57600080fd5b5051905080610b13575043600290910155610bd2565b600482015460ff16610b6257600480830180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091558301549054610b5e916115dd565b6004555b60045415610bc9576000610b7a8360020154436105fb565b90506000610b9b60045461091386600101548561165190919063ffffffff16565b9050610bc1610bb68461091384670de0b6b3a7640000611651565b6003860154906115dd565b600385015550505b50436002909101555b50565b600060028281548110610be457fe5b600091825260208083208584526003825260408085203380875293528420805485825560018201959095556005909302018054909450919291610c419173ffffffffffffffffffffffffffffffffffffffff9190911690836117ba565b604080518281529051859133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a350505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610cee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180611ded602b913960400191505060405180910390fd5b600854624f1a0001431015610e4c5760015473ffffffffffffffffffffffffffffffffffffffff84811691161415610d8757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f216270646f740000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b60025460005b81811015610e4957600060028281548110610da457fe5b60009182526020909120600590910201805490915073ffffffffffffffffffffffffffffffffffffffff87811691161415610e4057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f21706f6f6c2e6c70546f6b656e00000000000000000000000000000000000000604482015290519081900360640190fd5b50600101610d8d565b50505b610e6d73ffffffffffffffffffffffffffffffffffffffff841682846117ba565b505050565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b60025460005b81811015610ead57610ea581610a33565b600101610e94565b5050565b61708081565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b60036020908152600092835260408084209091529082529020805460019091015482565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f67576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180611ded602b913960400191505060405180910390fd5b610f7083611847565b8115610f7e57610f7e610e8e565b600554431015610faa5780610f965750600554610fa5565b600554811015610fa557506005545b610fbe565b801580610fb657504381105b15610fbe5750435b600060055482111580610fd15750438211155b6040805160a08101825273ffffffffffffffffffffffffffffffffffffffff878116825260208201898152928201868152600060608401818152861580156080870190815260028054600181018255945295517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace600590940293840180547fffffffffffffffffffffffff000000000000000000000000000000000000000016919096161790945594517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acf82015590517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad082015592517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad184015590517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ad290920180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016921515929092179091559091506111575760045461115390866115dd565b6004555b5050505050565b6000806002848154811061116e57fe5b600091825260208083208784526003808352604080862073ffffffffffffffffffffffffffffffffffffffff808b168852908552818720600590960290930191820154825482517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015292519398509596909590949316926370a0823192602480840193829003018186803b15801561120c57600080fd5b505afa158015611220573d6000803e3d6000fd5b505050506040513d602081101561123657600080fd5b505160028501549091504311801561124d57508015155b156112aa5760006112628560020154436105fb565b9050600061128360045461091388600101548561165190919063ffffffff16565b90506112a561129e8461091384670de0b6b3a7640000611651565b85906115dd565b935050505b6112d58360010154610919670de0b6b3a764000061091386886000015461165190919063ffffffff16565b979650505050505050565b600681815481106112ed57fe5b600091825260209091200154905081565b60005473ffffffffffffffffffffffffffffffffffffffff16331461136e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180611ded602b913960400191505060405180910390fd5b600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60003390506000600284815481106113c957fe5b6000918252602080832087845260038252604080852073ffffffffffffffffffffffffffffffffffffffff8816865290925292206005909102909101915061141085610a33565b8054156114a95760006114488260010154610919670de0b6b3a76400006109138760030154876000015461165190919063ffffffff16565b905080156114a75761145a84826116c4565b60408051828152905173ffffffffffffffffffffffffffffffffffffffff8616917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b505b83156114e25781546114d39073ffffffffffffffffffffffffffffffffffffffff16843087611915565b80546114df90856115dd565b81555b6003820154815461150091670de0b6b3a76400009161091391611651565b6001820155604080518581529051869173ffffffffffffffffffffffffffffffffffffffff8616917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a35050505050565b60006107ed83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506119b0565b60006107ed83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611a6c565b6000828201838110156107ed57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082611660575060006107f0565b8282028284828161166d57fe5b04146107ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611da26021913960400191505060405180910390fd5b600154604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009273ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b15801561173557600080fd5b505afa158015611749573d6000803e3d6000fd5b505050506040513d602081101561175f57600080fd5b505190508015610e6d578082111561179a576001546117959073ffffffffffffffffffffffffffffffffffffffff1684836117ba565b610e6d565b600154610e6d9073ffffffffffffffffffffffffffffffffffffffff1684845b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610e6d908490611ae0565b60025460005b81811015610e6d578273ffffffffffffffffffffffffffffffffffffffff166002828154811061187957fe5b600091825260209091206005909102015473ffffffffffffffffffffffffffffffffffffffff16141561190d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f6270444f54526577617264506f6f6c3a206578697374696e6720706f6f6c3f00604482015290519081900360640190fd5b60010161184d565b6040805173ffffffffffffffffffffffffffffffffffffffff80861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd000000000000000000000000000000000000000000000000000000001790526119aa908590611ae0565b50505050565b60008183611a56576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611a1b578181015183820152602001611a03565b50505050905090810190601f168015611a485780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581611a6257fe5b0495945050505050565b60008184841115611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152835160248401528351909283926044909101919085019080838360008315611a1b578181015183820152602001611a03565b505050900390565b6060611b42826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611bb89092919063ffffffff16565b805190915015610e6d57808060200190516020811015611b6157600080fd5b5051610e6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180611dc3602a913960400191505060405180910390fd5b6060611bc78484600085611bcf565b949350505050565b6060611bda85611d9b565b611c4557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310611caf57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101611c72565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611d11576040519150601f19603f3d011682016040523d82523d6000602084013e611d16565b606091505b50915091508115611d2a579150611bc79050565b805115611d3a5780518082602001fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152865160248401528651879391928392604401919085019080838360008315611a1b578181015183820152602001611a03565b3b15159056fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565646270444f54526577617264506f6f6c3a2063616c6c6572206973206e6f7420746865206f70657261746f72a26469706673582212200d46c0895c7f3f5d3fda2250cf7b87a97f4ccea4c4c7021090a23fa0d1cce2f664736f6c634300060c0033000000000000000000000000557b3ab377bbd68dfc6dadefafa3cc4e4b6677c600000000000000000000000000000000000000000000000000000000005e4ca0
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000557b3ab377bbd68dfc6dadefafa3cc4e4b6677c600000000000000000000000000000000000000000000000000000000005e4ca0
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000557b3ab377bbd68dfc6dadefafa3cc4e4b6677c6
Arg [1] : 00000000000000000000000000000000000000000000000000000000005e4ca0
Deployed ByteCode Sourcemap
18325:11470:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21061:95;;;:::i;:::-;;;;;;;;;;;;;;;;19249:26;;;;;;;;;;;;;;;;-1:-1:-1;19249:26:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19494:34;;;:::i;22770:321::-;;;;;;;;;;;;;;;;-1:-1:-1;22770:321:0;;;;;;;:::i;:::-;;23168:1153;;;;;;;;;;;;;;;;-1:-1:-1;23168:1153:0;;;;;;;:::i;19920:36::-;;;;;;;;;;;;;;;;-1:-1:-1;19920:36:0;;:::i;19793:32::-;;;;;;;;;;;;;;;;-1:-1:-1;19793:32:0;;:::i;27293:815::-;;;;;;;;;;;;;;;;-1:-1:-1;27293:815:0;;;;;;;:::i;19588:25::-;;;:::i;25494:897::-;;;;;;;;;;;;;;;;-1:-1:-1;25494:897:0;;:::i;28179:379::-;;;;;;;;;;;;;;;;-1:-1:-1;28179:379:0;;:::i;29142:650::-;;;;;;;;;;;;;;;;-1:-1:-1;29142:650:0;;;;;;;;;;;;;;;;;;:::i;18444:23::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25238:180;;;:::i;19622:46::-;;;:::i;19141:72::-;;;:::i;19333:64::-;;;;;;;;;;;;;;;;-1:-1:-1;19333:64:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21506:1167;;;;;;;;;;;;;;;;-1:-1:-1;21506:1167:0;;;;;;;;;;;;;;;;;;;;;:::i;24386:769::-;;;;;;;;;;;;;;;;-1:-1:-1;24386:769:0;;;;;;;;;:::i;19677:64::-;;;;;;;;;;;;;;;;-1:-1:-1;19677:64:0;;:::i;29033:101::-;;;;;;;;;;;;;;;;-1:-1:-1;29033:101:0;;;;:::i;26426:831::-;;;;;;;;;;;;;;;;-1:-1:-1;26426:831:0;;;;;;;:::i;21061:95::-;21133:8;:15;21061:95;:::o;19249:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19249:26:0;;;;;;;:::o;19494:34::-;;;;:::o;22770:321::-;20963:8;;:22;:8;20975:10;20963:22;20955:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22849:17:::1;:15;:17::i;:::-;22877:21;22901:8;22910:4;22901:14;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;22930;::::0;::::1;::::0;22901;;-1:-1:-1;22930:14:0::1;;22926:118;;;22979:53;23020:11;22979:36;22999:4;:15;;;22979;;:19;;:36;;;;:::i;:::-;:40:::0;::::1;:53::i;:::-;22961:15;:71:::0;22926:118:::1;23054:15;;:29:::0;-1:-1:-1;22770:321:0:o;23168:1153::-;23245:7;23286:1;23265:990;23300:1;23289:7;:12;;;23265:990;;23340:14;23365:1;23355:7;:11;23340:27;;;;;;;;;;;23333:3;:34;23329:915;;23401:14;23426:1;23416:7;:11;23401:27;;;;;;;;;;;23392:5;:36;23388:96;;23437:47;23456:18;23475:7;23456:27;;;;;;;;;;;23437:14;:3;23445:5;23437:7;:14::i;:::-;:18;;:47::i;:::-;23430:54;;;;;23388:96;23503:24;23530:69;23571:18;23590:7;23571:27;;;;;;;;;;;23530:36;23538:14;23563:1;23553:7;:11;23538:27;;;;;;;;;;;23530:3;;:7;:36::i;:69::-;23503:96;;23622:7;:12;;23633:1;23622:12;23618:102;;;23643:77;23664:55;23697:18;23716:1;23697:21;;;23664:28;23686:5;23664:14;23679:1;23664:17;;;;:21;:28::i;:55::-;23643:16;;:20;:77::i;:::-;23636:84;;;;;;23618:102;23764:1;23754:7;:11;23744:21;;23739:387;23778:1;23767:7;:12;;;23739:387;;23828:14;23853:1;23843:7;:11;23828:27;;;;;;;;;;;23819:5;:36;23815:138;;23864:89;23885:67;23924:18;23943:7;23924:27;;;;;;;;;;;23885:34;23913:5;23885:14;23900:7;23885:23;;;;;;;;23815:138;23995:111;24016:89;24077:18;24096:7;24077:27;;;;;;;;;;;24016:56;24044:14;24069:1;24059:7;:11;24044:27;;;;;;;;;;;24016:14;24031:7;24016:23;;;;;;;;23995:111;23781:9;;;;;23976:130;-1:-1:-1;23739:387:0;;;24151:77;24172:55;24205:18;24224:1;24205:21;;23329:915;23303:9;;23265:990;;;-1:-1:-1;24291:18:0;:21;24272:41;;:14;:3;24280:5;24272:7;:14::i;:41::-;24265:48;;23168:1153;;;;;:::o;19920:36::-;;;;;;;;;;;;;-1:-1:-1;19920:36:0;:::o;19793:32::-;;;;;;;;;27293:815;27360:15;27378:10;27360:28;;27399:21;27423:8;27432:4;27423:14;;;;;;;;;;;;;;;;27472;;;:8;:14;;;;;;:23;;;;;;;;;;27514:11;;27423:14;;;;;;;;-1:-1:-1;27514:22:0;-1:-1:-1;27514:22:0;27506:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27570:16;27581:4;27570:10;:16::i;:::-;27597;27616:69;27669:4;:15;;;27616:48;27659:4;27616:38;27632:4;:21;;;27616:4;:11;;;:15;;:38;;;;:::i;:::-;:42;;:48::i;:::-;:52;;:69::i;:::-;27597:88;-1:-1:-1;27700:12:0;;27696:130;;27729:36;27747:7;27756:8;27729:17;:36::i;:::-;27785:29;;;;;;;;;;;;;;;;;;;;;;27696:130;27840:11;;27836:140;;27882:11;;:24;;27898:7;27882:15;:24::i;:::-;27868:38;;27921:12;;:43;;:12;;27947:7;27956;27921:25;:43::i;:::-;28020:21;;;;28004:11;;:48;;28047:4;;28004:38;;:15;:38::i;:48::-;27986:15;;;:66;28068:32;;;;;;;;28086:4;;28068:32;;;;;;;;;;;;;27293:815;;;;;;:::o;19588:25::-;;;;:::o;25494:897::-;25546:21;25570:8;25579:4;25570:14;;;;;;;;;;;;;;;;;;25546:38;;25615:4;:20;;;25599:12;:36;25595:75;;25652:7;;;25595:75;25699:12;;:37;;;;;;25730:4;25699:37;;;;;;25680:16;;25699:12;;;:22;;:37;;;;;;;;;;;;;;:12;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25699:37:0;;-1:-1:-1;25751:13:0;25747:102;;-1:-1:-1;25804:12:0;25781:20;;;;:35;25831:7;;25747:102;25864:14;;;;;;25859:138;;25895:14;;;;:21;;;;25912:4;25895:21;;;;;;25969:15;;;25949;;:36;;:19;:36::i;:::-;25931:15;:54;25859:138;26011:15;;:19;26007:331;;26047:24;26074:54;26093:4;:20;;;26115:12;26074:18;:54::i;:::-;26047:81;;26143:20;26166:58;26208:15;;26166:37;26187:4;:15;;;26166:16;:20;;:37;;;;:::i;:58::-;26143:81;-1:-1:-1;26263:63:0;26289:36;26316:8;26289:22;26143:81;26306:4;26289:16;:22::i;:36::-;26263:21;;;;;:25;:63::i;:::-;26239:21;;;:87;-1:-1:-1;;26007:331:0;-1:-1:-1;26371:12:0;26348:20;;;;:35;25494:897;;:::o;28179:379::-;28238:21;28262:8;28271:4;28262:14;;;;;;;;;;;;;;;;28311;;;:8;:14;;;;;;28326:10;28311:26;;;;;;;28366:11;;28388:15;;;-1:-1:-1;28414:15:0;;:19;;;;28262:14;;;;;28444:12;;28262:14;;-1:-1:-1;28311:26:0;;28366:11;28444:46;;28311:26;28444:12;;;;;28366:11;28444:25;:46::i;:::-;28506:44;;;;;;;;28536:4;;28524:10;;28506:44;;;;;;;;;28179:379;;;;:::o;29142:650::-;20963:8;;:22;:8;20975:10;20963:22;20955:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29309:17;;29329:20;29309:40:::1;29294:12;:55;29290:453;;;29472:5;::::0;::::1;29462:15:::0;;::::1;29472:5:::0;::::1;29462:15;;29454:34;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;29520:8;:15:::0;29503:14:::1;29550:182;29578:6;29572:3;:12;29550:182;;;29612:21;29636:8;29645:3;29636:13;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;29686:12:::0;;29636:13;;-1:-1:-1;29686:12:0::1;29676:22:::0;;::::1;29686:12:::0;::::1;29676:22;;29668:48;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;29586:5:0::1;;29550:182;;;;29290:453;;29753:31;:19;::::0;::::1;29773:2:::0;29777:6;29753:19:::1;:31::i;:::-;29142:650:::0;;;:::o;18444:23::-;;;;;;:::o;25238:180::-;25300:8;:15;25283:14;25326:85;25354:6;25348:3;:12;25326:85;;;25384:15;25395:3;25384:10;:15::i;:::-;25362:5;;25326:85;;;;25238:180;:::o;19622:46::-;19663:5;19622:46;:::o;19141:72::-;;;;;;:::o;19333:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21506:1167::-;20963:8;;:22;:8;20975:10;20963:22;20955:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21675:28:::1;21694:8;21675:18;:28::i;:::-;21718:11;21714:61;;;21746:17;:15;:17::i;:::-;21804:10;;21789:12;:25;21785:520;;;21868:21:::0;21864:238:::1;;-1:-1:-1::0;21929:10:0::1;::::0;21864:238:::1;;;22003:10;;21984:16;:29;21980:107;;;-1:-1:-1::0;22057:10:0::1;::::0;21980:107:::1;21785:520;;;22170:21:::0;;;:56:::1;;;22214:12;22195:16;:31;22170:56;22166:128;;;-1:-1:-1::0;22266:12:0::1;22166:128;22315:15;22354:10;;22334:16;:30;;22333:70;;;;22390:12;22370:16;:32;;22333:70;22428:133;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;-1:-1:-1;22428:133:0;;;;;;;::::1;::::0;::::1;::::0;;;;;;22414:8:::1;:148:::0;;::::1;::::0;::::1;::::0;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;::::1;;::::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;;22428:133;;-1:-1:-1;22573:93:0::1;;22622:15;::::0;:32:::1;::::0;22642:11;22622:19:::1;:32::i;:::-;22604:15;:50:::0;22573:93:::1;21044:1;21506:1167:::0;;;;:::o;24386:769::-;24461:7;24481:21;24505:8;24514:4;24505:14;;;;;;;;;;;;;;;;24554;;;:8;:14;;;;;;;:21;;;;;;;;;;;;24505:14;;;;;;;24613:21;;;;24664:12;;:37;;;;;24695:4;24664:37;;;;;;24505:14;;-1:-1:-1;24554:21:0;;24613;;24505:14;;24664:12;;;:22;;:37;;;;;;;;;;:12;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24664:37:0;24731:20;;;;24664:37;;-1:-1:-1;24716:12:0;:35;:52;;;;-1:-1:-1;24755:13:0;;;24716:52;24712:354;;;24785:24;24812:54;24831:4;:20;;;24853:12;24812:18;:54::i;:::-;24785:81;;24881:20;24904:58;24946:15;;24904:37;24925:4;:15;;;24904:16;:20;;:37;;;;:::i;:58::-;24881:81;-1:-1:-1;24996:58:0;25017:36;25044:8;25017:22;24881:81;25034:4;25017:16;:22::i;:36::-;24996:16;;:20;:58::i;:::-;24977:77;;24712:354;;;25083:64;25131:4;:15;;;25083:43;25121:4;25083:33;25099:16;25083:4;:11;;;:15;;:33;;;;:::i;:64::-;25076:71;24386:769;-1:-1:-1;;;;;;;24386:769:0:o;19677:64::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19677:64:0;:::o;29033:101::-;20963:8;;:22;:8;20975:10;20963:22;20955:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29106:8:::1;:20:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;29033:101::o;26426:831::-;26492:15;26510:10;26492:28;;26531:21;26555:8;26564:4;26555:14;;;;;;;;;;;;;;;;26604;;;:8;:14;;;;;;:23;;;;;;;;;;26555:14;;;;;;;;-1:-1:-1;26638:16:0;26613:4;26638:10;:16::i;:::-;26669:11;;:15;26665:292;;26701:16;26720:69;26773:4;:15;;;26720:48;26763:4;26720:38;26736:4;:21;;;26720:4;:11;;;:15;;:38;;;;:::i;:69::-;26701:88;-1:-1:-1;26808:12:0;;26804:142;;26841:36;26859:7;26868:8;26841:17;:36::i;:::-;26901:29;;;;;;;;;;;;;;;;;;;;;;26804:142;26665:292;;26971:11;;26967:159;;26999:12;;:62;;:12;;27029:7;27046:4;27053:7;26999:29;:62::i;:::-;27090:11;;:24;;27106:7;27090:15;:24::i;:::-;27076:38;;26967:159;27170:21;;;;27154:11;;:48;;27197:4;;27154:38;;:15;:38::i;:48::-;27136:15;;;:66;27218:31;;;;;;;;27235:4;;27218:31;;;;;;;;;;;;;26426:831;;;;;:::o;5984:132::-;6042:7;6069:39;6073:1;6076;6069:39;;;;;;;;;;;;;;;;;:3;:39::i;4113:136::-;4171:7;4198:43;4202:1;4205;4198:43;;;;;;;;;;;;;;;;;:3;:43::i;3649:181::-;3707:7;3739:5;;;3763:6;;;;3755:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5037:471;5095:7;5340:6;5336:47;;-1:-1:-1;5370:1:0;5363:8;;5336:47;5407:5;;;5411:1;5407;:5;:1;5431:5;;;;;:10;5423:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28668:357;28765:5;;:30;;;;;;28789:4;28765:30;;;;;;28745:17;;28765:5;;;:15;;:30;;;;;;;;;;;;;;:5;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28765:30:0;;-1:-1:-1;28810:13:0;;28806:212;;28854:9;28844:7;:19;28840:167;;;28884:5;;:34;;:5;;28903:3;28908:9;28884:18;:34::i;:::-;28840:167;;;28959:5;;:32;;:5;;28978:3;28983:7;14906:211;15050:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15073:23;15050:58;;;15023:86;;15043:5;;15023:19;:86::i;21164:267::-;21251:8;:15;21234:14;21277:147;21305:6;21299:3;:12;21277:147;;;21368:8;21343:33;;:8;21352:3;21343:13;;;;;;;;;;;;;;;;;;;;;:21;;;:33;;21335:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21313:5;;21277:147;;15125:248;15296:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15319:27;15296:68;;;15269:96;;15289:5;;15269:19;:96::i;:::-;15125:248;;;;:::o;6612:312::-;6732:7;6767:12;6760:5;6752:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6791:9;6807:1;6803;:5;;;;;;;6612:312;-1:-1:-1;;;;;6612:312:0:o;4552:226::-;4672:7;4708:12;4700:6;;;;4692:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4744:5:0;;;4552:226::o;17367:774::-;17791:23;17817:69;17845:4;17817:69;;;;;;;;;;;;;;;;;17825:5;17817:27;;;;:69;;;;;:::i;:::-;17901:17;;17791:95;;-1:-1:-1;17901:21:0;17897:237;;18056:10;18045:30;;;;;;;;;;;;;;;-1:-1:-1;18045:30:0;18037:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11832:230;11969:12;12001:53;12024:6;12032:4;12038:1;12041:12;12001:22;:53::i;:::-;11994:60;11832:230;-1:-1:-1;;;;11832:230:0:o;13320:1020::-;13493:12;13526:18;13537:6;13526:10;:18::i;:::-;13518:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13652:12;13666:23;13693:6;:11;;13712:8;13722:4;13693:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13651:76;;;;13742:7;13738:595;;;13773:10;-1:-1:-1;13766:17:0;;-1:-1:-1;13766:17:0;13738:595;13887:17;;:21;13883:439;;14150:10;14144:17;14211:15;14198:10;14194:2;14190:19;14183:44;14098:148;14286:20;;;;;;;;;;;;;;;;;;;;14293:12;;14286:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8892:444;9272:20;9320:8;;;8892:444::o
Swarm Source
ipfs://0d46c0895c7f3f5d3fda2250cf7b87a97f4ccea4c4c7021090a23fa0d1cce2f6
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.