Contract Overview
My Name Tag:
Not Available
Txn Hash | Method |
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0x90d843c7d0988953e194d6540720ce3168df093d8ce7a129c8f44410c7c21476 | 0x60806040 | 69162399 | 194 days 16 hrs ago | 0x9ee976cf6edb36653745d95f51768bebce5a2bb9 | IN | Create: ShellRewardPool | 0 ETH | 0.00097391 |
[ Download CSV Export ]
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
ShellRewardPool
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Arbiscan.io on 2023-03-12 */ // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @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); } // File @openzeppelin/contracts/math/[email protected] pragma solidity >=0.6.0 <0.8.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, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @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) { 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, reverting 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) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * 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); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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; } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @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"); } } } // File contracts/distribution/ShellRewardPool.sol pragma solidity 0.6.12; // Note that this pool has no minter key of shell (rewards). // Instead, the governance will call shell distributeReward method and send reward to this pool at the beginning. contract ShellRewardPool { 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 token; // Address of LP token contract. uint256 allocPoint; // How many allocation points assigned to this pool. Shell to distribute per block. uint256 lastRewardTime; // Last time that shell distribution occurs. uint256 accShellPerShare; // Accumulated shell per share, times 1e18. See below. bool isStarted; // if lastRewardTime has passed } IERC20 public shell; // 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 time when shell mining starts. uint256 public poolStartTime; // The time when shell mining ends. uint256 public poolEndTime; uint256 public shellPerSecond = 0.0004692192 ether; // 15000 shell / (370 days * 24h * 60min * 60s) uint256 public runningTime = 370 days; // 370 days uint256 public constant TOTAL_REWARDS = 15000 ether; 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 _shell, uint256 _poolStartTime ) public { require(block.timestamp < _poolStartTime, "late"); if (_shell != address(0)) shell = IERC20(_shell); poolStartTime = _poolStartTime; poolEndTime = poolStartTime + runningTime; operator = msg.sender; } modifier onlyOperator() { require(operator == msg.sender, "ShellRewardPool: caller is not the operator"); _; } function checkPoolDuplicate(IERC20 _token) internal view { uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; ++pid) { require(poolInfo[pid].token != _token, "ShellRewardPool: existing pool?"); } } // Add a new lp to the pool. Can only be called by the owner. function add( uint256 _allocPoint, IERC20 _token, bool _withUpdate, uint256 _lastRewardTime ) public onlyOperator { checkPoolDuplicate(_token); if (_withUpdate) { massUpdatePools(); } if (block.timestamp < poolStartTime) { // chef is sleeping if (_lastRewardTime == 0) { _lastRewardTime = poolStartTime; } else { if (_lastRewardTime < poolStartTime) { _lastRewardTime = poolStartTime; } } } else { // chef is cooking if (_lastRewardTime == 0 || _lastRewardTime < block.timestamp) { _lastRewardTime = block.timestamp; } } bool _isStarted = (_lastRewardTime <= poolStartTime) || (_lastRewardTime <= block.timestamp); poolInfo.push(PoolInfo({ token : _token, allocPoint : _allocPoint, lastRewardTime : _lastRewardTime, accShellPerShare : 0, isStarted : _isStarted })); if (_isStarted) { totalAllocPoint = totalAllocPoint.add(_allocPoint); } } // Update the given pool's shell 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 _fromTime, uint256 _toTime) public view returns (uint256) { if (_fromTime >= _toTime) return 0; if (_toTime >= poolEndTime) { if (_fromTime >= poolEndTime) return 0; if (_fromTime <= poolStartTime) return poolEndTime.sub(poolStartTime).mul(shellPerSecond); return poolEndTime.sub(_fromTime).mul(shellPerSecond); } else { if (_toTime <= poolStartTime) return 0; if (_fromTime <= poolStartTime) return _toTime.sub(poolStartTime).mul(shellPerSecond); return _toTime.sub(_fromTime).mul(shellPerSecond); } } // View function to see pending Shell on frontend. function pendingShare(uint256 _pid, address _user) external view returns (uint256) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accShellPerShare = pool.accShellPerShare; uint256 tokenSupply = pool.token.balanceOf(address(this)); if (block.timestamp > pool.lastRewardTime && tokenSupply != 0) { uint256 _generatedReward = getGeneratedReward(pool.lastRewardTime, block.timestamp); uint256 _shellReward = _generatedReward.mul(pool.allocPoint).div(totalAllocPoint); accShellPerShare = accShellPerShare.add(_shellReward.mul(1e18).div(tokenSupply)); } return user.amount.mul(accShellPerShare).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.timestamp <= pool.lastRewardTime) { return; } uint256 tokenSupply = pool.token.balanceOf(address(this)); if (tokenSupply == 0) { pool.lastRewardTime = block.timestamp; return; } if (!pool.isStarted) { pool.isStarted = true; totalAllocPoint = totalAllocPoint.add(pool.allocPoint); } if (totalAllocPoint > 0) { uint256 _generatedReward = getGeneratedReward(pool.lastRewardTime, block.timestamp); uint256 _shellReward = _generatedReward.mul(pool.allocPoint).div(totalAllocPoint); pool.accShellPerShare = pool.accShellPerShare.add(_shellReward.mul(1e18).div(tokenSupply)); } pool.lastRewardTime = block.timestamp; } // 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.accShellPerShare).div(1e18).sub(user.rewardDebt); if (_pending > 0) { safeShellTransfer(_sender, _pending); emit RewardPaid(_sender, _pending); } } if (_amount > 0) { pool.token.safeTransferFrom(_sender, address(this), _amount); user.amount = user.amount.add(_amount); } user.rewardDebt = user.amount.mul(pool.accShellPerShare).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.accShellPerShare).div(1e18).sub(user.rewardDebt); if (_pending > 0) { safeShellTransfer(_sender, _pending); emit RewardPaid(_sender, _pending); } if (_amount > 0) { user.amount = user.amount.sub(_amount); pool.token.safeTransfer(_sender, _amount); } user.rewardDebt = user.amount.mul(pool.accShellPerShare).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.token.safeTransfer(msg.sender, _amount); emit EmergencyWithdraw(msg.sender, _pid, _amount); } // Safe shell transfer function, just in case if rounding error causes pool to not have enough shell. function safeShellTransfer(address _to, uint256 _amount) internal { uint256 _shellBal = shell.balanceOf(address(this)); if (_shellBal > 0) { if (_amount > _shellBal) { shell.safeTransfer(_to, _shellBal); } else { shell.safeTransfer(_to, _amount); } } } function setOperator(address _operator) external onlyOperator { operator = _operator; } function governanceRecoverUnsupported(IERC20 _token, uint256 amount, address to) external onlyOperator { if (block.timestamp < poolEndTime + 90 days) { // do not allow to drain core token (shell or lps) if less than 90 days after pool ends require(_token != shell, "shell"); uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; ++pid) { PoolInfo storage pool = poolInfo[pid]; require(_token != pool.token, "pool.token"); } } _token.safeTransfer(to, amount); } }
[{"inputs":[{"internalType":"address","name":"_shell","type":"address"},{"internalType":"uint256","name":"_poolStartTime","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":"TOTAL_REWARDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"bool","name":"_withUpdate","type":"bool"},{"internalType":"uint256","name":"_lastRewardTime","type":"uint256"}],"name":"add","outputs":[],"stateMutability":"nonpayable","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":"_fromTime","type":"uint256"},{"internalType":"uint256","name":"_toTime","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":"pendingShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardTime","type":"uint256"},{"internalType":"uint256","name":"accShellPerShare","type":"uint256"},{"internalType":"bool","name":"isStarted","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"runningTime","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":"shell","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"shellPerSecond","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
608060405260006004556601aac09bbce0006007556301e7cb0060085534801561002857600080fd5b506040516125e93803806125e98339818101604052604081101561004b57600080fd5b8101908080519060200190929190805190602001909291905050508042106100db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260048152602001807f6c6174650000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146101515781600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b8060058190555060085460055401600681905550336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050612433806101b66000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80635f96dc11116100b857806396805e541161007c57806396805e5414610475578063b2c6c58a146104d9578063b3ab15fb146104f7578063cf4b55cb1461053b578063e2bbb1581461059d578063f11d2ff4146105d557610137565b80635f96dc11146103a8578063630b5ba1146103c65780636e271dd5146103d057806393f1a40b146103ee578063943f013d1461045757610137565b8063441a3e70116100ff578063441a3e701461027257806351eb05a6146102aa5780635312ea8e146102d857806354575af414610306578063570ca7351461037457610137565b806309cf60911461013c5780631526fe271461015a57806317caf6f1146101d05780631ab06ee5146101ee578063231f0c6a14610226575b600080fd5b610144610609565b6040518082815260200191505060405180910390f35b6101866004803603602081101561017057600080fd5b8101908080359060200190929190505050610617565b604051808673ffffffffffffffffffffffffffffffffffffffff16815260200185815260200184815260200183815260200182151581526020019550505050505060405180910390f35b6101d8610687565b6040518082815260200191505060405180910390f35b6102246004803603604081101561020457600080fd5b81019080803590602001909291908035906020019092919050505061068d565b005b61025c6004803603604081101561023c57600080fd5b8101908080359060200190929190803590602001909291905050506107af565b6040518082815260200191505060405180910390f35b6102a86004803603604081101561028857600080fd5b8101908080359060200190929190803590602001909291905050506108c2565b005b6102d6600480360360208110156102c057600080fd5b8101908080359060200190929190505050610b7a565b005b610304600480360360208110156102ee57600080fd5b8101908080359060200190929190505050610d89565b005b6103726004803603606081101561031c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ebd565b005b61037c61116d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103b0611191565b6040518082815260200191505060405180910390f35b6103ce611197565b005b6103d86111c4565b6040518082815260200191505060405180910390f35b61043a6004803603604081101561040457600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111ca565b604051808381526020018281526020019250505060405180910390f35b61045f6111fb565b6040518082815260200191505060405180910390f35b6104d76004803603608081101561048b57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919080359060200190929190505050611201565b005b6104e1611438565b6040518082815260200191505060405180910390f35b6105396004803603602081101561050d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061143e565b005b6105876004803603604081101561055157600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611525565b6040518082815260200191505060405180910390f35b6105d3600480360360408110156105b357600080fd5b81019080803590602001909291908035906020019092919050505061175d565b005b6105dd6119ab565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b69032d26d12e980b60000081565b6002818154811061062457fe5b90600052602060002090600502016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030154908060040160009054906101000a900460ff16905085565b60045481565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806123a9602b913960400191505060405180910390fd5b610739611197565b60006002838154811061074857fe5b906000526020600020906005020190508060040160009054906101000a900460ff16156107a15761079a8261078c83600101546004546119d190919063ffffffff16565b611a5490919063ffffffff16565b6004819055505b818160010181905550505050565b60008183106107c157600090506108bc565b60065482106108475760065483106107dc57600090506108bc565b6005548311610817576108106007546108026005546006546119d190919063ffffffff16565b611adc90919063ffffffff16565b90506108bc565b610840600754610832856006546119d190919063ffffffff16565b611adc90919063ffffffff16565b90506108bc565b600554821161085957600090506108bc565b60055483116108925761088b60075461087d600554856119d190919063ffffffff16565b611adc90919063ffffffff16565b90506108bc565b6108b96007546108ab85856119d190919063ffffffff16565b611adc90919063ffffffff16565b90505b92915050565b60003390506000600284815481106108d657fe5b9060005260206000209060050201905060006003600086815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905083816000015410156109b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f77697468647261773a206e6f7420676f6f64000000000000000000000000000081525060200191505060405180910390fd5b6109bd85610b7a565b6000610a0a82600101546109fc670de0b6b3a76400006109ee87600301548760000154611adc90919063ffffffff16565b611b6290919063ffffffff16565b6119d190919063ffffffff16565b90506000811115610a6e57610a1f8482611beb565b8373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a25b6000851115610ae657610a8e8583600001546119d190919063ffffffff16565b8260000181905550610ae584868560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d6a9092919063ffffffff16565b5b610b1b670de0b6b3a7640000610b0d85600301548560000154611adc90919063ffffffff16565b611b6290919063ffffffff16565b8260010181905550858473ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568876040518082815260200191505060405180910390a3505050505050565b600060028281548110610b8957fe5b9060005260206000209060050201905080600201544211610baa5750610d86565b60008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610c3757600080fd5b505afa158015610c4b573d6000803e3d6000fd5b505050506040513d6020811015610c6157600080fd5b810190808051906020019092919050505090506000811415610c8d574282600201819055505050610d86565b8160040160009054906101000a900460ff16610ce05760018260040160006101000a81548160ff021916908315150217905550610cd98260010154600454611a5490919063ffffffff16565b6004819055505b60006004541115610d7a576000610cfb8360020154426107af565b90506000610d2a600454610d1c866001015485611adc90919063ffffffff16565b611b6290919063ffffffff16565b9050610d6f610d5c84610d4e670de0b6b3a764000085611adc90919063ffffffff16565b611b6290919063ffffffff16565b8560030154611a5490919063ffffffff16565b846003018190555050505b42826002018190555050505b50565b600060028281548110610d9857fe5b9060005260206000209060050201905060006003600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000816000015490506000826000018190555060008260010181905550610e6833828560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d6a9092919063ffffffff16565b833373ffffffffffffffffffffffffffffffffffffffff167fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae0595836040518082815260200191505060405180910390a350505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f61576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806123a9602b913960400191505060405180910390fd5b6276a7006006540142101561113d57600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611034576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260058152602001807f7368656c6c00000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000600280549050905060005b8181101561113a5760006002828154811061105857fe5b906000526020600020906005020190508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141561112e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600a8152602001807f706f6f6c2e746f6b656e0000000000000000000000000000000000000000000081525060200191505060405180910390fd5b50806001019050611041565b50505b61116881838573ffffffffffffffffffffffffffffffffffffffff16611d6a9092919063ffffffff16565b505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60055481565b6000600280549050905060005b818110156111c0576111b581610b7a565b8060010190506111a4565b5050565b60065481565b6003602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b60085481565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806123a9602b913960400191505060405180910390fd5b6112ae83611e0c565b81156112bd576112bc611197565b5b6005544210156112f05760008114156112da5760055490506112eb565b6005548110156112ea5760055490505b5b611308565b60008114806112fe57504281105b15611307574290505b5b60006005548211158061131b5750428211155b905060026040518060a001604052808673ffffffffffffffffffffffffffffffffffffffff16815260200187815260200184815260200160008152602001831515815250908060018154018082558091505060019003906000526020600020906005020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a81548160ff021916908315150217905550505080156114315761142a85600454611a5490919063ffffffff16565b6004819055505b5050505050565b60075481565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806123a9602b913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806002848154811061153557fe5b9060005260206000209060050201905060006003600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008260030154905060008360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561162f57600080fd5b505afa158015611643573d6000803e3d6000fd5b505050506040513d602081101561165957600080fd5b81019080805190602001909291905050509050836002015442118015611680575060008114155b1561170a5760006116958560020154426107af565b905060006116c46004546116b6886001015485611adc90919063ffffffff16565b611b6290919063ffffffff16565b90506117056116f6846116e8670de0b6b3a764000085611adc90919063ffffffff16565b611b6290919063ffffffff16565b85611a5490919063ffffffff16565b935050505b6117518360010154611743670de0b6b3a7640000611735868860000154611adc90919063ffffffff16565b611b6290919063ffffffff16565b6119d190919063ffffffff16565b94505050505092915050565b600033905060006002848154811061177157fe5b9060005260206000209060050201905060006003600086815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506117de85610b7a565b60008160000154111561189e576000611838826001015461182a670de0b6b3a764000061181c87600301548760000154611adc90919063ffffffff16565b611b6290919063ffffffff16565b6119d190919063ffffffff16565b9050600081111561189c5761184d8482611beb565b8373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a25b505b6000841115611918576118f88330868560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611f11909392919063ffffffff16565b61190f848260000154611a5490919063ffffffff16565b81600001819055505b61194d670de0b6b3a764000061193f84600301548460000154611adc90919063ffffffff16565b611b6290919063ffffffff16565b8160010181905550848373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15866040518082815260200191505060405180910390a35050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600082821115611a49576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b600080828401905083811015611ad2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080831415611aef5760009050611b5c565b6000828402905082848281611b0057fe5b0414611b57576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806123886021913960400191505060405180910390fd5b809150505b92915050565b6000808211611bd9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b818381611be257fe5b04905092915050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611c7657600080fd5b505afa158015611c8a573d6000803e3d6000fd5b505050506040513d6020811015611ca057600080fd5b810190808051906020019092919050505090506000811115611d655780821115611d1657611d118382600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d6a9092919063ffffffff16565b611d64565b611d638383600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d6a9092919063ffffffff16565b5b5b505050565b611e078363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611fd2565b505050565b6000600280549050905060005b81811015611f0c578273ffffffffffffffffffffffffffffffffffffffff1660028281548110611e4557fe5b906000526020600020906005020160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5368656c6c526577617264506f6f6c3a206578697374696e6720706f6f6c3f0081525060200191505060405180910390fd5b806001019050611e19565b505050565b611fcc846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611fd2565b50505050565b6060612034826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166120c19092919063ffffffff16565b90506000815111156120bc5780806020019051602081101561205557600080fd5b81019080805190602001909291905050506120bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806123d4602a913960400191505060405180910390fd5b5b505050565b60606120d084846000856120d9565b90509392505050565b606082471015612134576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806123626026913960400191505060405180910390fd5b61213d85612282565b6121af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106121ff57805182526020820191506020810190506020830392506121dc565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612261576040519150601f19603f3d011682016040523d82523d6000602084013e612266565b606091505b5091509150612276828286612295565b92505050949350505050565b600080823b905060008111915050919050565b606083156122a55782905061235a565b6000835111156122b85782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561231f578082015181840152602081019050612304565b50505050905090810190601f16801561234c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b939250505056fe416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775368656c6c526577617264506f6f6c3a2063616c6c6572206973206e6f7420746865206f70657261746f725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220cc0cfdc2c3dc7b6076ba1e659df25b9d23d394c96c9f110bbbd2e7bcc9e7460564736f6c634300060c003300000000000000000000000027b1594a7004b88ff84ee276a5ec1cfda80ad590000000000000000000000000000000000000000000000000000000006415fc20
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000027b1594a7004b88ff84ee276a5ec1cfda80ad590000000000000000000000000000000000000000000000000000000006415fc20
-----Decoded View---------------
Arg [0] : _shell (address): 0x27b1594a7004b88ff84ee276a5ec1cfda80ad590
Arg [1] : _poolStartTime (uint256): 1679162400
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000027b1594a7004b88ff84ee276a5ec1cfda80ad590
Arg [1] : 000000000000000000000000000000000000000000000000000000006415fc20
Deployed ByteCode Sourcemap
22311:10568:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23772:51;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23167:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23412:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26338:353;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26768:657;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30419:813;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28607:912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31303:377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32269:607;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22430:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23498:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28351:180;;;:::i;:::-;;23576:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23251:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;23716:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24964:1277;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23611:50;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32160:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27489:779;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29554:829;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23112:19;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23772:51;23812:11;23772:51;:::o;23167:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23412:34::-;;;;:::o;26338:353::-;24542:10;24530:22;;:8;;;;;;;;;;:22;;;24522:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26417:17:::1;:15;:17::i;:::-;26445:21;26469:8;26478:4;26469:14;;;;;;;;;;;;;;;;;;26445:38;;26498:4;:14;;;;;;;;;;;;26494:150;;;26547:85;26606:11;26547:36;26567:4;:15;;;26547;;:19;;:36;;;;:::i;:::-;:40;;:85;;;;:::i;:::-;26529:15;:103;;;;26494:150;26672:11;26654:4;:15;;:29;;;;24611:1;26338:353:::0;;:::o;26768:657::-;26853:7;26890;26877:9;:20;26873:34;;26906:1;26899:8;;;;26873:34;26933:11;;26922:7;:22;26918:500;;26978:11;;26965:9;:24;26961:38;;26998:1;26991:8;;;;26961:38;27031:13;;27018:9;:26;27014:89;;27053:50;27088:14;;27053:30;27069:13;;27053:11;;:15;;:30;;;;:::i;:::-;:34;;:50;;;;:::i;:::-;27046:57;;;;27014:89;27125:46;27156:14;;27125:26;27141:9;27125:11;;:15;;:26;;;;:::i;:::-;:30;;:46;;;;:::i;:::-;27118:53;;;;26918:500;27219:13;;27208:7;:24;27204:38;;27241:1;27234:8;;;;27204:38;27274:13;;27261:9;:26;27257:85;;27296:46;27327:14;;27296:26;27308:13;;27296:7;:11;;:26;;;;:::i;:::-;:30;;:46;;;;:::i;:::-;27289:53;;;;27257:85;27364:42;27391:14;;27364:22;27376:9;27364:7;:11;;:22;;;;:::i;:::-;:26;;:42;;;;:::i;:::-;27357:49;;26768:657;;;;;:::o;30419:813::-;30486:15;30504:10;30486:28;;30525:21;30549:8;30558:4;30549:14;;;;;;;;;;;;;;;;;;30525:38;;30574:21;30598:8;:14;30607:4;30598:14;;;;;;;;;;;:23;30613:7;30598:23;;;;;;;;;;;;;;;30574:47;;30655:7;30640:4;:11;;;:22;;30632:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30696:16;30707:4;30696:10;:16::i;:::-;30723;30742:69;30795:4;:15;;;30742:48;30785:4;30742:38;30758:4;:21;;;30742:4;:11;;;:15;;:38;;;;:::i;:::-;:42;;:48;;;;:::i;:::-;:52;;:69;;;;:::i;:::-;30723:88;;30837:1;30826:8;:12;30822:130;;;30855:36;30873:7;30882:8;30855:17;:36::i;:::-;30922:7;30911:29;;;30931:8;30911:29;;;;;;;;;;;;;;;;;;30822:130;30976:1;30966:7;:11;30962:138;;;31008:24;31024:7;31008:4;:11;;;:15;;:24;;;;:::i;:::-;30994:4;:11;;:38;;;;31047:41;31071:7;31080;31047:4;:10;;;;;;;;;;;;:23;;;;:41;;;;;:::i;:::-;30962:138;31128:48;31171:4;31128:38;31144:4;:21;;;31128:4;:11;;;:15;;:38;;;;:::i;:::-;:42;;:48;;;;:::i;:::-;31110:4;:15;;:66;;;;31210:4;31201:7;31192:32;;;31216:7;31192:32;;;;;;;;;;;;;;;;;;30419:813;;;;;;:::o;28607:912::-;28659:21;28683:8;28692:4;28683:14;;;;;;;;;;;;;;;;;;28659:38;;28731:4;:19;;;28712:15;:38;28708:77;;28767:7;;;28708:77;28795:19;28817:4;:10;;;;;;;;;;;;:20;;;28846:4;28817:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28795:57;;28882:1;28867:11;:16;28863:107;;;28922:15;28900:4;:19;;:37;;;;28952:7;;;;28863:107;28985:4;:14;;;;;;;;;;;;28980:138;;29033:4;29016;:14;;;:21;;;;;;;;;;;;;;;;;;29070:36;29090:4;:15;;;29070;;:19;;:36;;;;:::i;:::-;29052:15;:54;;;;28980:138;29150:1;29132:15;;:19;29128:336;;;29168:24;29195:56;29214:4;:19;;;29235:15;29195:18;:56::i;:::-;29168:83;;29266:20;29289:58;29331:15;;29289:37;29310:4;:15;;;29289:16;:20;;:37;;;;:::i;:::-;:41;;:58;;;;:::i;:::-;29266:81;;29386:66;29412:39;29439:11;29412:22;29429:4;29412:12;:16;;:22;;;;:::i;:::-;:26;;:39;;;;:::i;:::-;29386:4;:21;;;:25;;:66;;;;:::i;:::-;29362:4;:21;;:90;;;;29128:336;;;29496:15;29474:4;:19;;:37;;;;28607:912;;;;:::o;31303:377::-;31362:21;31386:8;31395:4;31386:14;;;;;;;;;;;;;;;;;;31362:38;;31411:21;31435:8;:14;31444:4;31435:14;;;;;;;;;;;:26;31450:10;31435:26;;;;;;;;;;;;;;;31411:50;;31472:15;31490:4;:11;;;31472:29;;31526:1;31512:4;:11;;:15;;;;31556:1;31538:4;:15;;:19;;;;31568:44;31592:10;31604:7;31568:4;:10;;;;;;;;;;;;:23;;;;:44;;;;;:::i;:::-;31658:4;31646:10;31628:44;;;31664:7;31628:44;;;;;;;;;;;;;;;;;;31303:377;;;;:::o;32269:607::-;24542:10;24530:22;;:8;;;;;;;;;;:22;;;24522:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32419:7:::1;32405:11;;:21;32387:15;:39;32383:444;;;32562:5;;;;;;;;;;;32552:15;;:6;:15;;;;32544:33;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32592:14;32609:8;:15;;;;32592:32;;32644:11;32639:177;32667:6;32661:3;:12;32639:177;;;32701:21;32725:8;32734:3;32725:13;;;;;;;;;;;;;;;;;;32701:37;;32775:4;:10;;;;;;;;;;;;32765:20;;:6;:20;;;;32757:43;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;32639:177;32675:5;;;;;32639:177;;;;32383:444;;32837:31;32857:2;32861:6;32837;:19;;;;:31;;;;;:::i;:::-;32269:607:::0;;;:::o;22430:23::-;;;;;;;;;;;;:::o;23498:28::-;;;;:::o;28351:180::-;28396:14;28413:8;:15;;;;28396:32;;28444:11;28439:85;28467:6;28461:3;:12;28439:85;;;28497:15;28508:3;28497:10;:15::i;:::-;28475:5;;;;;28439:85;;;;28351:180;:::o;23576:26::-;;;;:::o;23251:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23716:37::-;;;;:::o;24964:1277::-;24542:10;24530:22;;:8;;;;;;;;;;:22;;;24522:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25130:26:::1;25149:6;25130:18;:26::i;:::-;25171:11;25167:61;;;25199:17;:15;:17::i;:::-;25167:61;25260:13;;25242:15;:31;25238:534;;;25346:1;25327:15;:20;25323:243;;;25386:13;;25368:31;;25323:243;;;25462:13;;25444:15;:31;25440:111;;;25518:13;;25500:31;;25440:111;25323:243;25238:534;;;25653:1;25634:15;:20;:57;;;;25676:15;25658;:33;25634:57;25630:131;;;25730:15;25712:33;;25630:131;25238:534;25782:15;25829:13;;25810:15;:32;;25809:83;;;;25876:15;25857;:34;;25809:83;25782:110;;25903:8;25917:212;;;;;;;;25949:6;25917:212;;;;;;25983:11;25917:212;;;;26026:15;25917:212;;;;26075:1;25917:212;;;;26103:10;25917:212;;;;::::0;25903:227:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26145:10;26141:93;;;26190:32;26210:11;26190:15;;:19;;:32;;;;:::i;:::-;26172:15;:50;;;;26141:93;24611:1;24964:1277:::0;;;;:::o;23611:50::-;;;;:::o;32160:101::-;24542:10;24530:22;;:8;;;;;;;;;;:22;;;24522:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32244:9:::1;32233:8;::::0;:20:::1;;;;;;;;;;;;;;;;;;32160:101:::0;:::o;27489:779::-;27563:7;27583:21;27607:8;27616:4;27607:14;;;;;;;;;;;;;;;;;;27583:38;;27632:21;27656:8;:14;27665:4;27656:14;;;;;;;;;;;:21;27671:5;27656:21;;;;;;;;;;;;;;;27632:45;;27688:24;27715:4;:21;;;27688:48;;27747:19;27769:4;:10;;;;;;;;;;;;:20;;;27798:4;27769:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27747:57;;27837:4;:19;;;27819:15;:37;:57;;;;;27875:1;27860:11;:16;;27819:57;27815:364;;;27893:24;27920:56;27939:4;:19;;;27960:15;27920:18;:56::i;:::-;27893:83;;27991:20;28014:58;28056:15;;28014:37;28035:4;:15;;;28014:16;:20;;:37;;;;:::i;:::-;:41;;:58;;;;:::i;:::-;27991:81;;28106:61;28127:39;28154:11;28127:22;28144:4;28127:12;:16;;:22;;;;:::i;:::-;:26;;:39;;;;:::i;:::-;28106:16;:20;;:61;;;;:::i;:::-;28087:80;;27815:364;;;28196:64;28244:4;:15;;;28196:43;28234:4;28196:33;28212:16;28196:4;:11;;;:15;;:33;;;;:::i;:::-;:37;;:43;;;;:::i;:::-;:47;;:64;;;;:::i;:::-;28189:71;;;;;;27489:779;;;;:::o;29554:829::-;29620:15;29638:10;29620:28;;29659:21;29683:8;29692:4;29683:14;;;;;;;;;;;;;;;;;;29659:38;;29708:21;29732:8;:14;29741:4;29732:14;;;;;;;;;;;:23;29747:7;29732:23;;;;;;;;;;;;;;;29708:47;;29766:16;29777:4;29766:10;:16::i;:::-;29811:1;29797:4;:11;;;:15;29793:292;;;29829:16;29848:69;29901:4;:15;;;29848:48;29891:4;29848:38;29864:4;:21;;;29848:4;:11;;;:15;;:38;;;;:::i;:::-;:42;;:48;;;;:::i;:::-;:52;;:69;;;;:::i;:::-;29829:88;;29947:1;29936:8;:12;29932:142;;;29969:36;29987:7;29996:8;29969:17;:36::i;:::-;30040:7;30029:29;;;30049:8;30029:29;;;;;;;;;;;;;;;;;;29932:142;29793:292;;30109:1;30099:7;:11;30095:157;;;30127:60;30155:7;30172:4;30179:7;30127:4;:10;;;;;;;;;;;;:27;;;;:60;;;;;;:::i;:::-;30216:24;30232:7;30216:4;:11;;;:15;;:24;;;;:::i;:::-;30202:4;:11;;:38;;;;30095:157;30280:48;30323:4;30280:38;30296:4;:21;;;30280:4;:11;;;:15;;:38;;;;:::i;:::-;:42;;:48;;;;:::i;:::-;30262:4;:15;;:66;;;;30361:4;30352:7;30344:31;;;30367:7;30344:31;;;;;;;;;;;;;;;;;;29554:829;;;;;:::o;23112:19::-;;;;;;;;;;;;;:::o;6052:158::-;6110:7;6143:1;6138;:6;;6130:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6201:1;6197;:5;6190:12;;6052:158;;;;:::o;5590:179::-;5648:7;5668:9;5684:1;5680;:5;5668:17;;5709:1;5704;:6;;5696:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5760:1;5753:8;;;5590:179;;;;:::o;6469:220::-;6527:7;6556:1;6551;:6;6547:20;;;6566:1;6559:8;;;;6547:20;6578:9;6594:1;6590;:5;6578:17;;6623:1;6618;6614;:5;;;;;;:10;6606:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6680:1;6673:8;;;6469:220;;;;;:::o;7167:153::-;7225:7;7257:1;7253;:5;7245:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7311:1;7307;:5;;;;;;7300:12;;7167:153;;;;:::o;31795:357::-;31872:17;31892:5;;;;;;;;;;;:15;;;31916:4;31892:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31872:50;;31949:1;31937:9;:13;31933:212;;;31981:9;31971:7;:19;31967:167;;;32011:34;32030:3;32035:9;32011:5;;;;;;;;;;;:18;;;;:34;;;;;:::i;:::-;31967:167;;;32086:32;32105:3;32110:7;32086:5;;;;;;;;;;;:18;;;;:32;;;;;:::i;:::-;31967:167;31933:212;31795:357;;;:::o;18970:177::-;19053:86;19073:5;19103:23;;;19128:2;19132:5;19080:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19053:19;:86::i;:::-;18970:177;;;:::o;24628:261::-;24696:14;24713:8;:15;;;;24696:32;;24744:11;24739:143;24767:6;24761:3;:12;24739:143;;;24828:6;24805:29;;:8;24814:3;24805:13;;;;;;;;;;;;;;;;;;:19;;;;;;;;;;;;:29;;;;24797:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24775:5;;;;;24739:143;;;;24628:261;;:::o;19155:205::-;19256:96;19276:5;19306:27;;;19335:4;19341:2;19345:5;19283:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19256:19;:96::i;:::-;19155:205;;;;:::o;21275:761::-;21699:23;21725:69;21753:4;21725:69;;;;;;;;;;;;;;;;;21733:5;21725:27;;;;:69;;;;;:::i;:::-;21699:95;;21829:1;21809:10;:17;:21;21805:224;;;21951:10;21940:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21932:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21805:224;21275:761;;;:::o;13957:195::-;14060:12;14092:52;14114:6;14122:4;14128:1;14131:12;14092:21;:52::i;:::-;14085:59;;13957:195;;;;;:::o;15009:530::-;15136:12;15194:5;15169:21;:30;;15161:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15261:18;15272:6;15261:10;:18::i;:::-;15253:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15387:12;15401:23;15428:6;:11;;15448:5;15456:4;15428:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15386:75;;;;15479:52;15497:7;15506:10;15518:12;15479:17;:52::i;:::-;15472:59;;;;15009:530;;;;;;:::o;11039:422::-;11099:4;11307:12;11418:7;11406:20;11398:28;;11452:1;11445:4;:8;11438:15;;;11039:422;;;:::o;17549:742::-;17664:12;17693:7;17689:595;;;17724:10;17717:17;;;;17689:595;17858:1;17838:10;:17;:21;17834:439;;;18101:10;18095:17;18162:15;18149:10;18145:2;18141:19;18134:44;18049:148;18244:12;18237:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17549:742;;;;;;:::o
Metadata Hash
cc0cfdc2c3dc7b6076ba1e659df25b9d23d394c96c9f110bbbd2e7bcc9e74605
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.