BscScan - Sponsored slots available. Book your slot here!
Contract Overview
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Contract Source Code Verified (Similar Match)
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0xC0920F6bcECf1967b1C9D8019b876aC78b7980ED
Contract Name:
SmartChef
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at BscScan.com on 2021-03-08 */ // File: @pancakeswap/pancake-swap-lib/contracts/math/SafeMath.sol pragma solidity >=0.4.0; /** * @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; } function min(uint256 x, uint256 y) internal pure returns (uint256 z) { z = x < y ? x : y; } // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method) function sqrt(uint256 y) internal pure returns (uint256 z) { if (y > 3) { z = y; uint256 x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } } else if (y != 0) { z = 1; } } } // File: @pancakeswap/pancake-swap-lib/contracts/token/BEP20/IBEP20.sol pragma solidity >=0.4.0; interface IBEP20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the bep token owner. */ function getOwner() external view returns (address); /** * @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); } // File: @pancakeswap/pancake-swap-lib/contracts/utils/Address.sol pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, 'Address: insufficient balance'); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(''); require(success, 'Address: unable to send value, recipient may have reverted'); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, 'Address: low-level call failed'); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, 'Address: low-level call with value failed'); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, 'Address: insufficient balance for call'); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue( address target, bytes memory data, uint256 weiValue, string memory errorMessage ) private returns (bytes memory) { require(isContract(target), 'Address: call to non-contract'); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: weiValue}(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @pancakeswap/pancake-swap-lib/contracts/token/BEP20/SafeBEP20.sol pragma solidity ^0.6.0; /** * @title SafeBEP20 * @dev Wrappers around BEP20 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 SafeBEP20 for IBEP20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeBEP20 { using SafeMath for uint256; using Address for address; function safeTransfer( IBEP20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IBEP20 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 * {IBEP20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IBEP20 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), 'SafeBEP20: approve from non-zero to non-zero allowance' ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IBEP20 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( IBEP20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender).sub( value, 'SafeBEP20: 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(IBEP20 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, 'SafeBEP20: low-level call failed'); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), 'SafeBEP20: BEP20 operation did not succeed'); } } } // File: @pancakeswap/pancake-swap-lib/contracts/GSN/Context.sol pragma solidity >=0.4.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor() internal {} function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @pancakeswap/pancake-swap-lib/contracts/access/Ownable.sol pragma solidity >=0.4.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), 'Ownable: caller is not the owner'); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), 'Ownable: new owner is the zero address'); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: contracts/SmartChef.sol pragma solidity 0.6.12; // import "@nomiclabs/buidler/console.sol"; contract SmartChef is Ownable { using SafeMath for uint256; using SafeBEP20 for IBEP20; // 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 { IBEP20 lpToken; // Address of LP token contract. uint256 allocPoint; // How many allocation points assigned to this pool. CAKEs to distribute per block. uint256 lastRewardBlock; // Last block number that CAKEs distribution occurs. uint256 accCakePerShare; // Accumulated CAKEs per share, times 1e12. See below. } // The CAKE TOKEN! IBEP20 public syrup; IBEP20 public rewardToken; // uint256 public maxStaking; // CAKE tokens created per block. uint256 public rewardPerBlock; // Info of each pool. PoolInfo[] public poolInfo; // Info of each user that stakes LP tokens. mapping (address => UserInfo) public userInfo; // Total allocation poitns. Must be the sum of all allocation points in all pools. uint256 private totalAllocPoint = 0; // The block number when CAKE mining starts. uint256 public startBlock; // The block number when CAKE mining ends. uint256 public bonusEndBlock; event Deposit(address indexed user, uint256 amount); event Withdraw(address indexed user, uint256 amount); event EmergencyWithdraw(address indexed user, uint256 amount); constructor( IBEP20 _syrup, IBEP20 _rewardToken, uint256 _rewardPerBlock, uint256 _startBlock, uint256 _bonusEndBlock ) public { syrup = _syrup; rewardToken = _rewardToken; rewardPerBlock = _rewardPerBlock; startBlock = _startBlock; bonusEndBlock = _bonusEndBlock; // staking pool poolInfo.push(PoolInfo({ lpToken: _syrup, allocPoint: 1000, lastRewardBlock: startBlock, accCakePerShare: 0 })); totalAllocPoint = 1000; // maxStaking = 50000000000000000000; } function stopReward() public onlyOwner { bonusEndBlock = block.number; } // Return reward multiplier over the given _from to _to block. function getMultiplier(uint256 _from, uint256 _to) public view returns (uint256) { if (_to <= bonusEndBlock) { return _to.sub(_from); } else if (_from >= bonusEndBlock) { return 0; } else { return bonusEndBlock.sub(_from); } } // View function to see pending Reward on frontend. function pendingReward(address _user) external view returns (uint256) { PoolInfo storage pool = poolInfo[0]; UserInfo storage user = userInfo[_user]; uint256 accCakePerShare = pool.accCakePerShare; uint256 lpSupply = pool.lpToken.balanceOf(address(this)); if (block.number > pool.lastRewardBlock && lpSupply != 0) { uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); uint256 cakeReward = multiplier.mul(rewardPerBlock).mul(pool.allocPoint).div(totalAllocPoint); accCakePerShare = accCakePerShare.add(cakeReward.mul(1e12).div(lpSupply)); } return user.amount.mul(accCakePerShare).div(1e12).sub(user.rewardDebt); } // 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; } uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); uint256 cakeReward = multiplier.mul(rewardPerBlock).mul(pool.allocPoint).div(totalAllocPoint); pool.accCakePerShare = pool.accCakePerShare.add(cakeReward.mul(1e12).div(lpSupply)); pool.lastRewardBlock = block.number; } // 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); } } // Stake SYRUP tokens to SmartChef function deposit(uint256 _amount) public { PoolInfo storage pool = poolInfo[0]; UserInfo storage user = userInfo[msg.sender]; // require (_amount.add(user.amount) <= maxStaking, 'exceed max stake'); updatePool(0); if (user.amount > 0) { uint256 pending = user.amount.mul(pool.accCakePerShare).div(1e12).sub(user.rewardDebt); if(pending > 0) { rewardToken.safeTransfer(address(msg.sender), pending); } } if(_amount > 0) { pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount); user.amount = user.amount.add(_amount); } user.rewardDebt = user.amount.mul(pool.accCakePerShare).div(1e12); emit Deposit(msg.sender, _amount); } // Withdraw SYRUP tokens from STAKING. function withdraw(uint256 _amount) public { PoolInfo storage pool = poolInfo[0]; UserInfo storage user = userInfo[msg.sender]; require(user.amount >= _amount, "withdraw: not good"); updatePool(0); uint256 pending = user.amount.mul(pool.accCakePerShare).div(1e12).sub(user.rewardDebt); if(pending > 0) { rewardToken.safeTransfer(address(msg.sender), pending); } if(_amount > 0) { user.amount = user.amount.sub(_amount); pool.lpToken.safeTransfer(address(msg.sender), _amount); } user.rewardDebt = user.amount.mul(pool.accCakePerShare).div(1e12); emit Withdraw(msg.sender, _amount); } // Withdraw without caring about rewards. EMERGENCY ONLY. function emergencyWithdraw() public { PoolInfo storage pool = poolInfo[0]; UserInfo storage user = userInfo[msg.sender]; pool.lpToken.safeTransfer(address(msg.sender), user.amount); user.amount = 0; user.rewardDebt = 0; emit EmergencyWithdraw(msg.sender, user.amount); } // Withdraw reward. EMERGENCY ONLY. function emergencyRewardWithdraw(uint256 _amount) public onlyOwner { require(_amount < rewardToken.balanceOf(address(this)), 'not enough token'); rewardToken.safeTransfer(address(msg.sender), _amount); } }
[{"inputs":[{"internalType":"contract IBEP20","name":"_syrup","type":"address"},{"internalType":"contract IBEP20","name":"_rewardToken","type":"address"},{"internalType":"uint256","name":"_rewardPerBlock","type":"uint256"},{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"uint256","name":"_bonusEndBlock","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"bonusEndBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"emergencyRewardWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"getMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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 IBEP20","name":"lpToken","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accCakePerShare","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"contract IBEP20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stopReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"syrup","outputs":[{"internalType":"contract IBEP20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600060065534801561001557600080fd5b506040516114e33803806114e3833981810160405260a081101561003857600080fd5b5080516020820151604083015160608401516080909401519293919290919060006100616101d1565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180546001600160a01b039687166001600160a01b03199182168117835560028054978916978316979097179096556003949094556007839055600891909155604080516080810182529485526103e86020860181815291860193845260006060870181815260048054958601815591829052965193027f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b8101805494909816939095169290921790955593517f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19c830155517f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19d82015590517f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19e909101556006556101d5565b3390565b6112ff806101e46000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806380dc0672116100ad578063b6b55f2511610071578063b6b55f251461029c578063db2e21bc146102b9578063f2fde38b146102c1578063f40f0f52146102e7578063f7c618c11461030d57610121565b806380dc06721461023d57806386a952c4146102455780638ae39cac146102695780638da5cb5b146102715780638dbb1e3a1461027957610121565b80633279beab116100f45780633279beab146101eb57806348cd4cb11461020857806351eb05a614610210578063630b5ba11461022d578063715018a61461023557610121565b80631526fe27146101265780631959a002146101735780631aed6553146101b25780632e1a7d4d146101cc575b600080fd5b6101436004803603602081101561013c57600080fd5b5035610315565b604080516001600160a01b0390951685526020850193909352838301919091526060830152519081900360800190f35b6101996004803603602081101561018957600080fd5b50356001600160a01b0316610356565b6040805192835260208301919091528051918290030190f35b6101ba61036f565b60408051918252519081900360200190f35b6101e9600480360360208110156101e257600080fd5b5035610375565b005b6101e96004803603602081101561020157600080fd5b50356104da565b6101ba610609565b6101e96004803603602081101561022657600080fd5b503561060f565b6101e961073e565b6101e9610761565b6101e9610803565b61024d610861565b604080516001600160a01b039092168252519081900360200190f35b6101ba610870565b61024d610876565b6101ba6004803603604081101561028f57600080fd5b5080359060200135610885565b6101e9600480360360208110156102b257600080fd5b50356108c5565b6101e96109da565b6101e9600480360360208110156102d757600080fd5b50356001600160a01b0316610a6d565b6101ba600480360360208110156102fd57600080fd5b50356001600160a01b0316610ace565b61024d610c26565b6004818154811061032257fe5b600091825260209091206004909102018054600182015460028301546003909301546001600160a01b039092169350919084565b6005602052600090815260409020805460019091015482565b60085481565b6000600460008154811061038557fe5b60009182526020808320338452600590915260409092208054600490920290920192508311156103f1576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b6103fb600061060f565b6000610435826001015461042f64e8d4a5100061042987600301548760000154610c3590919063ffffffff16565b90610c95565b90610cd7565b9050801561045457600254610454906001600160a01b03163383610d19565b831561047e5781546104669085610cd7565b8255825461047e906001600160a01b03163386610d19565b600383015482546104999164e8d4a510009161042991610c35565b600183015560408051858152905133917f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364919081900360200190a250505050565b6104e2610d70565b6000546001600160a01b03908116911614610532576040805162461bcd60e51b815260206004820181905260248201526000805160206112aa833981519152604482015290519081900360640190fd5b600254604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561057d57600080fd5b505afa158015610591573d6000803e3d6000fd5b505050506040513d60208110156105a757600080fd5b505181106105ef576040805162461bcd60e51b815260206004820152601060248201526f3737ba1032b737bab3b4103a37b5b2b760811b604482015290519081900360640190fd5b600254610606906001600160a01b03163383610d19565b50565b60075481565b60006004828154811061061e57fe5b906000526020600020906004020190508060020154431161063f5750610606565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561068957600080fd5b505afa15801561069d573d6000803e3d6000fd5b505050506040513d60208110156106b357600080fd5b50519050806106c9575043600290910155610606565b60006106d9836002015443610885565b90506000610706600654610429866001015461070060035487610c3590919063ffffffff16565b90610c35565b905061072961071e846104298464e8d4a51000610c35565b600386015490610d74565b60038501555050436002909201919091555050565b60045460005b8181101561075d576107558161060f565b600101610744565b5050565b610769610d70565b6000546001600160a01b039081169116146107b9576040805162461bcd60e51b815260206004820181905260248201526000805160206112aa833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61080b610d70565b6000546001600160a01b0390811691161461085b576040805162461bcd60e51b815260206004820181905260248201526000805160206112aa833981519152604482015290519081900360640190fd5b43600855565b6001546001600160a01b031681565b60035481565b6000546001600160a01b031690565b600060085482116108a15761089a8284610cd7565b90506108bf565b60085483106108b2575060006108bf565b60085461089a9084610cd7565b92915050565b600060046000815481106108d557fe5b600091825260208083203384526005909152604083206004909202019250906108fd9061060f565b805415610953576000610932826001015461042f64e8d4a5100061042987600301548760000154610c3590919063ffffffff16565b9050801561095157600254610951906001600160a01b03163383610d19565b505b821561097f578154610970906001600160a01b0316333086610dce565b805461097c9084610d74565b81555b6003820154815461099a9164e8d4a510009161042991610c35565b600182015560408051848152905133917fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c919081900360200190a2505050565b600060046000815481106109ea57fe5b600091825260208083203380855260059092526040909320805460049093029093018054909450610a28926001600160a01b03919091169190610d19565b600080825560018201819055604080519182525133917f5fafa99d0643513820be26656b45130b01e1c03062e1266bf36f88cbd3bd9695919081900360200190a25050565b610a75610d70565b6000546001600160a01b03908116911614610ac5576040805162461bcd60e51b815260206004820181905260248201526000805160206112aa833981519152604482015290519081900360640190fd5b61060681610e2e565b6000806004600081548110610adf57fe5b600091825260208083206001600160a01b03878116855260058352604080862060049586029093016003810154815483516370a0823160e01b81523098810198909852925191985093969395939491909216926370a082319260248083019392829003018186803b158015610b5357600080fd5b505afa158015610b67573d6000803e3d6000fd5b505050506040513d6020811015610b7d57600080fd5b5051600285015490915043118015610b9457508015155b15610bf4576000610ba9856002015443610885565b90506000610bd0600654610429886001015461070060035487610c3590919063ffffffff16565b9050610bef610be8846104298464e8d4a51000610c35565b8590610d74565b935050505b610c1c836001015461042f64e8d4a51000610429868860000154610c3590919063ffffffff16565b9695505050505050565b6002546001600160a01b031681565b600082610c44575060006108bf565b82820282848281610c5157fe5b0414610c8e5760405162461bcd60e51b81526004018080602001828103825260218152602001806112896021913960400191505060405180910390fd5b9392505050565b6000610c8e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610ece565b6000610c8e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610f70565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610d6b908490610fca565b505050565b3390565b600082820183811015610c8e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610e28908590610fca565b50505050565b6001600160a01b038116610e735760405162461bcd60e51b81526004018080602001828103825260268152602001806112636026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60008183610f5a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610f1f578181015183820152602001610f07565b50505050905090810190601f168015610f4c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581610f6657fe5b0495945050505050565b60008184841115610fc25760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610f1f578181015183820152602001610f07565b505050900390565b606061101f826040518060400160405280602081526020017f5361666542455032303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661107b9092919063ffffffff16565b805190915015610d6b5780806020019051602081101561103e57600080fd5b5051610d6b5760405162461bcd60e51b815260040180806020018281038252602a815260200180611239602a913960400191505060405180910390fd5b606061108a8484600085611092565b949350505050565b606061109d856111ff565b6110ee576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061112d5780518252601f19909201916020918201910161110e565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461118f576040519150601f19603f3d011682016040523d82523d6000602084013e611194565b606091505b509150915081156111a857915061108a9050565b8051156111b85780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315610f1f578181015183820152602001610f07565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061108a57505015159291505056fe5361666542455032303a204245503230206f7065726174696f6e20646964206e6f7420737563636565644f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212200c3f1977379339a2345b71b998f4b4ff2bb97e1ce7e8d1f478c47a57c6474ccc64736f6c634300060c00330000000000000000000000000e09fabb73bd3ade0a17ecc321fd13a19e81ce82000000000000000000000000039cb485212f996a9dbb85a9a75d898f94d38da60000000000000000000000000000000000000000000000000022f2b30aa7d000000000000000000000000000000000000000000000000000000000000053da3600000000000000000000000000000000000000000000000000000000006e3836
Deployed ByteCode Sourcemap
23496:6875:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24450:26;;;;;;;;;;;;;;;;-1:-1:-1;24450:26:0;;:::i;:::-;;;;-1:-1:-1;;;;;24450:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24532:45;;;;;;;;;;;;;;;;-1:-1:-1;24532:45:0;-1:-1:-1;;;;;24532:45:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;24844:28;;;:::i;:::-;;;;;;;;;;;;;;;;28964:727;;;;;;;;;;;;;;;;-1:-1:-1;28964:727:0;;:::i;:::-;;30140:226;;;;;;;;;;;;;;;;-1:-1:-1;30140:226:0;;:::i;24764:25::-;;;:::i;27087:687::-;;;;;;;;;;;;;;;;-1:-1:-1;27087:687:0;;:::i;27857:180::-;;;:::i;22630:140::-;;;:::i;25736:86::-;;;:::i;24249:19::-;;;:::i;:::-;;;;-1:-1:-1;;;;;24249:19:0;;;;;;;;;;;;;;24385:29;;;:::i;21988:79::-;;;:::i;25900:306::-;;;;;;;;;;;;;;;;-1:-1:-1;25900:306:0;;;;;;;:::i;28087:825::-;;;;;;;;;;;;;;;;-1:-1:-1;28087:825:0;;:::i;29762:329::-;;;:::i;22925:109::-;;;;;;;;;;;;;;;;-1:-1:-1;22925:109:0;-1:-1:-1;;;;;22925:109:0;;:::i;26271:740::-;;;;;;;;;;;;;;;;-1:-1:-1;26271:740:0;-1:-1:-1;;;;;26271:740:0;;:::i;24275:25::-;;;:::i;24450:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24450:26:0;;;;-1:-1:-1;24450:26:0;;;:::o;24532:45::-;;;;;;;;;;;;;;;;;;;:::o;24844:28::-;;;;:::o;28964:727::-;29017:21;29041:8;29050:1;29041:11;;;;;;;;;;;;;;;;29096:10;29087:20;;:8;:20;;;;;;;29126:11;;29041;;;;;;;;-1:-1:-1;29126:22:0;-1:-1:-1;29126:22:0;29118:53;;;;;-1:-1:-1;;;29118:53:0;;;;;;;;;;;;-1:-1:-1;;;29118:53:0;;;;;;;;;;;;;;;29182:13;29193:1;29182:10;:13::i;:::-;29206:15;29224:68;29276:4;:15;;;29224:47;29266:4;29224:37;29240:4;:20;;;29224:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47::i;:::-;:51;;:68::i;:::-;29206:86;-1:-1:-1;29306:11:0;;29303:97;;29334:11;;:54;;-1:-1:-1;;;;;29334:11:0;29367:10;29380:7;29334:24;:54::i;:::-;29413:11;;29410:151;;29455:11;;:24;;29471:7;29455:15;:24::i;:::-;29441:38;;29494:12;;:55;;-1:-1:-1;;;;;29494:12:0;29528:10;29541:7;29494:25;:55::i;:::-;29605:20;;;;29589:11;;:47;;29631:4;;29589:37;;:15;:37::i;:47::-;29571:15;;;:65;29654:29;;;;;;;;29663:10;;29654:29;;;;;;;;;;28964:727;;;;:::o;30140:226::-;22210:12;:10;:12::i;:::-;22200:6;;-1:-1:-1;;;;;22200:6:0;;;:22;;;22192:67;;;;;-1:-1:-1;;;22192:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22192:67:0;;;;;;;;;;;;;;;30236:11:::1;::::0;:36:::1;::::0;;-1:-1:-1;;;30236:36:0;;30266:4:::1;30236:36;::::0;::::1;::::0;;;-1:-1:-1;;;;;30236:11:0;;::::1;::::0;:21:::1;::::0;:36;;;;;::::1;::::0;;;;;;;;;:11;:36;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;30236:36:0;30226:46;::::1;30218:75;;;::::0;;-1:-1:-1;;;30218:75:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;30218:75:0;;;;;;;;;;;;;::::1;;30304:11;::::0;:54:::1;::::0;-1:-1:-1;;;;;30304:11:0::1;30337:10;30350:7:::0;30304:24:::1;:54::i;:::-;30140:226:::0;:::o;24764:25::-;;;;:::o;27087:687::-;27139:21;27163:8;27172:4;27163:14;;;;;;;;;;;;;;;;;;27139:38;;27208:4;:20;;;27192:12;:36;27188:75;;27245:7;;;27188:75;27292:12;;:37;;;-1:-1:-1;;;27292:37:0;;27323:4;27292:37;;;;;;27273:16;;-1:-1:-1;;;;;27292:12:0;;:22;;:37;;;;;;;;;;;;;;:12;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27292:37:0;;-1:-1:-1;27344:13:0;27340:102;;-1:-1:-1;27397:12:0;27374:20;;;;:35;27424:7;;27340:102;27452:18;27473:49;27487:4;:20;;;27509:12;27473:13;:49::i;:::-;27452:70;;27533:18;27554:72;27610:15;;27554:51;27589:4;:15;;;27554:30;27569:14;;27554:10;:14;;:30;;;;:::i;:::-;:34;;:51::i;:72::-;27533:93;-1:-1:-1;27660:60:0;27685:34;27710:8;27685:20;27533:93;27700:4;27685:14;:20::i;:34::-;27660:20;;;;;:24;:60::i;:::-;27637:20;;;:83;-1:-1:-1;;27754:12:0;27731:20;;;;:35;;;;-1:-1:-1;27087:687:0;:::o;27857:180::-;27919:8;:15;27902:14;27945:85;27973:6;27967:3;:12;27945:85;;;28003:15;28014:3;28003:10;:15::i;:::-;27981:5;;27945:85;;;;27857:180;:::o;22630:140::-;22210:12;:10;:12::i;:::-;22200:6;;-1:-1:-1;;;;;22200:6:0;;;:22;;;22192:67;;;;;-1:-1:-1;;;22192:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22192:67:0;;;;;;;;;;;;;;;22729:1:::1;22713:6:::0;;22692:40:::1;::::0;-1:-1:-1;;;;;22713:6:0;;::::1;::::0;22692:40:::1;::::0;22729:1;;22692:40:::1;22760:1;22743:19:::0;;-1:-1:-1;;;;;;22743:19:0::1;::::0;;22630:140::o;25736:86::-;22210:12;:10;:12::i;:::-;22200:6;;-1:-1:-1;;;;;22200:6:0;;;:22;;;22192:67;;;;;-1:-1:-1;;;22192:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22192:67:0;;;;;;;;;;;;;;;25802:12:::1;25786:13;:28:::0;25736:86::o;24249:19::-;;;-1:-1:-1;;;;;24249:19:0;;:::o;24385:29::-;;;;:::o;21988:79::-;22026:7;22053:6;-1:-1:-1;;;;;22053:6:0;21988:79;:::o;25900:306::-;25972:7;26003:13;;25996:3;:20;25992:207;;26040:14;:3;26048:5;26040:7;:14::i;:::-;26033:21;;;;25992:207;26085:13;;26076:5;:22;26072:127;;-1:-1:-1;26122:1:0;26115:8;;26072:127;26163:13;;:24;;26181:5;26163:17;:24::i;26072:127::-;25900:306;;;;:::o;28087:825::-;28139:21;28163:8;28172:1;28163:11;;;;;;;;;;;;;;;;28218:10;28209:20;;:8;:20;;;;;;28163:11;;;;;;-1:-1:-1;28209:20:0;28326:13;;:10;:13::i;:::-;28354:11;;:15;28350:253;;28386:15;28404:68;28456:4;:15;;;28404:47;28446:4;28404:37;28420:4;:20;;;28404:4;:11;;;:15;;:37;;;;:::i;:68::-;28386:86;-1:-1:-1;28490:11:0;;28487:105;;28522:11;;:54;;-1:-1:-1;;;;;28522:11:0;28555:10;28568:7;28522:24;:54::i;:::-;28350:253;;28616:11;;28613:170;;28644:12;;:74;;-1:-1:-1;;;;;28644:12:0;28682:10;28703:4;28710:7;28644:29;:74::i;:::-;28747:11;;:24;;28763:7;28747:15;:24::i;:::-;28733:38;;28613:170;28827:20;;;;28811:11;;:47;;28853:4;;28811:37;;:15;:37::i;:47::-;28793:15;;;:65;28876:28;;;;;;;;28884:10;;28876:28;;;;;;;;;;28087:825;;;:::o;29762:329::-;29809:21;29833:8;29842:1;29833:11;;;;;;;;;;;;;;;;29888:10;29879:20;;;:8;:20;;;;;;;29957:11;;29833;;;;;;;29910:12;;29833:11;;-1:-1:-1;29910:59:0;;-1:-1:-1;;;;;29910:12:0;;;;;29888:10;29910:25;:59::i;:::-;29994:1;29980:15;;;30006;;;:19;;;30041:42;;;;;;;30059:10;;30041:42;;;;;;;;;;29762:329;;:::o;22925:109::-;22210:12;:10;:12::i;:::-;22200:6;;-1:-1:-1;;;;;22200:6:0;;;:22;;;22192:67;;;;;-1:-1:-1;;;22192:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22192:67:0;;;;;;;;;;;;;;;22998:28:::1;23017:8;22998:18;:28::i;26271:740::-:0;26332:7;26352:21;26376:8;26385:1;26376:11;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26422:15:0;;;;;:8;:15;;;;;;26376:11;;;;;;;26474:20;;;;26524:12;;:37;;-1:-1:-1;;;26524:37:0;;26555:4;26524:37;;;;;;;;;26376:11;;-1:-1:-1;26422:15:0;;26474:20;;26376:11;;26524:12;;;;;:22;;:37;;;;;26376:11;26524:37;;;;;:12;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26524:37:0;26591:20;;;;26524:37;;-1:-1:-1;26576:12:0;:35;:52;;;;-1:-1:-1;26615:13:0;;;26576:52;26572:351;;;26645:18;26666:49;26680:4;:20;;;26702:12;26666:13;:49::i;:::-;26645:70;;26730:18;26751:72;26807:15;;26751:51;26786:4;:15;;;26751:30;26766:14;;26751:10;:14;;:30;;;;:::i;:72::-;26730:93;-1:-1:-1;26856:55:0;26876:34;26901:8;26876:20;26730:93;26891:4;26876:14;:20::i;:34::-;26856:15;;:19;:55::i;:::-;26838:73;;26572:351;;;26940:63;26987:4;:15;;;26940:42;26977:4;26940:32;26956:15;26940:4;:11;;;:15;;:32;;;;:::i;:63::-;26933:70;26271:740;-1:-1:-1;;;;;;26271:740:0:o;24275:25::-;;;-1:-1:-1;;;;;24275:25:0;;:::o;2328:471::-;2386:7;2631:6;2627:47;;-1:-1:-1;2661:1:0;2654:8;;2627:47;2698:5;;;2702:1;2698;:5;:1;2722:5;;;;;:10;2714:56;;;;-1:-1:-1;;;2714:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2790:1;2328:471;-1:-1:-1;;;2328:471:0:o;3275:132::-;3333:7;3360:39;3364:1;3367;3360:39;;;;;;;;;;;;;;;;;:3;:39::i;1404:136::-;1462:7;1489:43;1493:1;1496;1489:43;;;;;;;;;;;;;;;;;:3;:43::i;16403:211::-;16547:58;;;-1:-1:-1;;;;;16547:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16547:58:0;-1:-1:-1;;;16547:58:0;;;16520:86;;16540:5;;16520:19;:86::i;:::-;16403:211;;;:::o;20540:98::-;20620:10;20540:98;:::o;940:181::-;998:7;1030:5;;;1054:6;;;;1046:46;;;;;-1:-1:-1;;;1046:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;16622:248;16793:68;;;-1:-1:-1;;;;;16793:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16793:68:0;-1:-1:-1;;;16793:68:0;;;16766:96;;16786:5;;16766:19;:96::i;:::-;16622:248;;;;:::o;23140:229::-;-1:-1:-1;;;;;23214:22:0;;23206:73;;;;-1:-1:-1;;;23206:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23316:6;;;23295:38;;-1:-1:-1;;;;;23295:38:0;;;;23316:6;;;23295:38;;;23344:6;:17;;-1:-1:-1;;;;;;23344:17:0;-1:-1:-1;;;;;23344:17:0;;;;;;;;;;23140:229::o;3903:312::-;4023:7;4058:12;4051:5;4043:28;;;;-1:-1:-1;;;4043:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4082:9;4098:1;4094;:5;;;;;;;3903:312;-1:-1:-1;;;;;3903:312:0:o;1843:226::-;1963:7;1999:12;1991:6;;;;1983:29;;;;-1:-1:-1;;;1983:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2035:5:0;;;1843:226::o;18938:774::-;19362:23;19388:69;19416:4;19388:69;;;;;;;;;;;;;;;;;19396:5;-1:-1:-1;;;;;19388:27:0;;;:69;;;;;:::i;:::-;19472:17;;19362:95;;-1:-1:-1;19472:21:0;19468:237;;19627:10;19616:30;;;;;;;;;;;;;;;-1:-1:-1;19616:30:0;19608:85;;;;-1:-1:-1;;;19608:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13216:230;13353:12;13385:53;13408:6;13416:4;13422:1;13425:12;13385:22;:53::i;:::-;13378:60;13216:230;-1:-1:-1;;;;13216:230:0:o;14704:1020::-;14877:12;14910:18;14921:6;14910:10;:18::i;:::-;14902:60;;;;;-1:-1:-1;;;14902:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15036:12;15050:23;15077:6;-1:-1:-1;;;;;15077:11:0;15096:8;15106:4;15077:34;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;15077:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15035:76;;;;15126:7;15122:595;;;15157:10;-1:-1:-1;15150:17:0;;-1:-1:-1;15150:17:0;15122:595;15271:17;;:21;15267:439;;15534:10;15528:17;15595:15;15582:10;15578:2;15574:19;15567:44;15482:148;15670:20;;-1:-1:-1;;;15670:20:0;;;;;;;;;;;;;;;;;15677:12;;15670:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10079:641;10139:4;10620:20;;10450:66;10669:23;;;;;;:42;;-1:-1:-1;;10696:15:0;;;10661:51;-1:-1:-1;;10079:641:0:o
Swarm Source
ipfs://0c3f1977379339a2345b71b998f4b4ff2bb97e1ce7e8d1f478c47a57c6474ccc
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.