Polygon Sponsored slots available. Book your slot here!
Contract Overview
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Contract Name:
MasterChefV3
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* ·▄▄▄▄ ▄▄▄ ..▄▄ · ▄▄▄▄▄▄▄▄ ▄• ▄▌ ▄▄· ▄▄▄▄▄▪ ▐ ▄ ██▪ ██ ▀▄.▀·▐█ ▀. •██ ▀▄ █·█▪██▌▐█ ▌▪•██ ██ ▪ •█▌▐█ ▐█· ▐█▌▐▀▀▪▄▄▀▀▀█▄ ▐█.▪▐▀▀▄ █▌▐█▌██ ▄▄ ▐█.▪▐█· ▄█▀▄ ▐█▐▐▌ ██. ██ ▐█▄▄▌▐█▄▪▐█ ▐█▌·▐█•█▌▐█▄█▌▐███▌ ▐█▌·▐█▌▐█▌.▐▌██▐█▌ ▀▀▀▀▀• ▀▀▀ ▀▀▀▀ ▀▀▀ .▀ ▀ ▀▀▀ ·▀▀▀ ▀▀▀ ▀▀▀ ▀█▄▀▪▀▀ █▪ */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./DestructionTokenV3.sol"; // MasterChef is the master of Destruction. He can make Destruction and he is a fair guy. // // Note that it's ownable and the owner wields tremendous power. The ownership // will be transferred to a governance smart contract once DESTRUCTION is sufficiently // distributed and the community can show to govern itself. // // Have fun reading it. Hopefully it's bug-free. God bless. contract MasterChefV3 is Ownable, ReentrancyGuard { using SafeERC20 for IERC20; // Info of each user. struct UserInfo { uint256 amount; // How many LP tokens the user has provided. uint256 rewardDebt; // Reward debt. See explanation below. // // We do some fancy math here. Basically, any point in time, the amount of DESTRUCTIONs // entitled to a user but is pending to be distributed is: // // pending reward = (user.amount * pool.accDestructionPerShare) - user.rewardDebt // // Whenever a user deposits or withdraws LP tokens to a pool. Here's what happens: // 1. The pool's `accDestructionPerShare` (and `lastRewardBlock`) gets updated. // 2. User receives the pending reward sent to his/her address. // 3. User's `amount` gets updated. // 4. User's `rewardDebt` gets updated. } // Info of each pool. struct PoolInfo { IERC20 lpToken; // Address of LP token contract. uint256 allocPoint; // How many allocation points assigned to this pool. DESTRUCTIONs to distribute per block. uint256 lastRewardBlock; // Last block number that DESTRUCTIONs distribution occurs. uint256 accDestructionPerShare; // Accumulated DESTRUCTIONs per share, times 1e18. See below. uint16 depositFeeBP; // Deposit fee in basis points uint256 lpSupply; } uint256 public constant destructionMaximumSupply = 5 * (10 ** 3) * (10 ** 18); // 5000 destruction uint256 public constant MAX_EMISSION_RATE = 10 * (10 ** 18); // 10 // The DESTRUCTION TOKEN! DestructionTokenV3 public immutable destruction; // DESTRUCTION tokens created per block. uint256 public destructionPerBlock; // Deposit Fee address address public feeAddress; // Info of each pool. PoolInfo[] public poolInfo; // Info of each user that stakes LP tokens. mapping(uint256 => mapping(address => UserInfo)) public userInfo; // Total allocation points. Must be the sum of all allocation points in all pools. uint256 public totalAllocPoint = 0; // The block number when DESTRUCTION mining starts. uint256 public startBlock; // The block number when DESTRUCTION mining ends. uint256 public emmissionEndBlock = type(uint256).max; event addPool(uint256 indexed pid, address lpToken, uint256 allocPoint, uint256 depositFeeBP); event setPool(uint256 indexed pid, address lpToken, uint256 allocPoint, uint256 depositFeeBP); 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 SetEmissionRate(address indexed caller, uint256 previousAmount, uint256 newAmount); event SetFeeAddress(address indexed user, address indexed newAddress); event SetStartBlock(uint256 newStartBlock); constructor( DestructionTokenV3 _destruction, address _feeAddress, uint256 _destructionPerBlock, uint256 _startBlock ) { require(_feeAddress != address(0), "!nonzero"); destruction = _destruction; feeAddress = _feeAddress; destructionPerBlock = _destructionPerBlock; startBlock = _startBlock; } function poolLength() external view returns (uint256) { return poolInfo.length; } mapping(IERC20 => bool) public poolExistence; modifier nonDuplicated(IERC20 _lpToken) { require(!poolExistence[_lpToken], "nonDuplicated: duplicated"); _; } // Add a new lp to the pool. Can only be called by the owner. function add(uint256 _allocPoint, IERC20 _lpToken, uint16 _depositFeeBP, bool _withUpdate) external onlyOwner nonDuplicated(_lpToken) { // Make sure the provided token is ERC20 _lpToken.balanceOf(address(this)); require(_depositFeeBP <= 401, "add: invalid deposit fee basis points"); if (_withUpdate) { massUpdatePools(); } uint256 lastRewardBlock = block.number > startBlock ? block.number : startBlock; totalAllocPoint = totalAllocPoint + _allocPoint; poolExistence[_lpToken] = true; poolInfo.push(PoolInfo({ lpToken : _lpToken, allocPoint : _allocPoint, lastRewardBlock : lastRewardBlock, accDestructionPerShare : 0, depositFeeBP : _depositFeeBP, lpSupply: 0 })); emit addPool(poolInfo.length - 1, address(_lpToken), _allocPoint, _depositFeeBP); } // Update the given pool's DESTRUCTION allocation point and deposit fee. Can only be called by the owner. function set(uint256 _pid, uint256 _allocPoint, uint16 _depositFeeBP, bool _withUpdate) external onlyOwner { require(_depositFeeBP <= 401, "set: invalid deposit fee basis points"); if (_withUpdate) { massUpdatePools(); } totalAllocPoint = totalAllocPoint - poolInfo[_pid].allocPoint + _allocPoint; poolInfo[_pid].allocPoint = _allocPoint; poolInfo[_pid].depositFeeBP = _depositFeeBP; emit setPool(_pid, address(poolInfo[_pid].lpToken), _allocPoint, _depositFeeBP); } // Return reward multiplier over the given _from to _to block. function getMultiplier(uint256 _from, uint256 _to) public view returns (uint256) { // As we set the multiplier to 0 here after emmissionEndBlock // deposits aren't blocked after farming ends. if (_from > emmissionEndBlock) return 0; if (_to > emmissionEndBlock) return emmissionEndBlock - _from; else return _to - _from; } // View function to see pending DESTRUCTIONs on frontend. function pendingDestruction(uint256 _pid, address _user) external view returns (uint256) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accDestructionPerShare = pool.accDestructionPerShare; if (block.number > pool.lastRewardBlock && pool.lpSupply != 0 && totalAllocPoint > 0) { uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); uint256 destructionReward = (multiplier * destructionPerBlock * pool.allocPoint) / totalAllocPoint; accDestructionPerShare = accDestructionPerShare + ((destructionReward * 1e18) / pool.lpSupply); } return ((user.amount * accDestructionPerShare) / 1e18) - user.rewardDebt; } // Update reward variables for all pools. Be careful of gas spending! function massUpdatePools() public { uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; ++pid) { updatePool(pid); } } // Update reward variables of the given pool to be up-to-date. function updatePool(uint256 _pid) public { PoolInfo storage pool = poolInfo[_pid]; if (block.number <= pool.lastRewardBlock) { return; } if (pool.lpSupply == 0 || pool.allocPoint == 0) { pool.lastRewardBlock = block.number; return; } uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); uint256 destructionReward = (multiplier * destructionPerBlock * pool.allocPoint) / totalAllocPoint; // This shouldn't happen, but just in case we stop rewards. if (destruction.totalSupply() > destructionMaximumSupply) destructionReward = 0; else if ((destruction.totalSupply() + destructionReward) > destructionMaximumSupply) destructionReward = destructionMaximumSupply - destruction.totalSupply(); if (destructionReward > 0) destruction.mint(address(this), destructionReward); // The first time we reach Destruction max supply we solidify the end of farming. if (destruction.totalSupply() >= destructionMaximumSupply && emmissionEndBlock == type(uint256).max) emmissionEndBlock = block.number; pool.accDestructionPerShare = pool.accDestructionPerShare + ((destructionReward * 1e18) / pool.lpSupply); pool.lastRewardBlock = block.number; } // Deposit LP tokens to MasterChef for DESTRUCTION allocation. function deposit(uint256 _pid, uint256 _amount) external nonReentrant { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; updatePool(_pid); if (user.amount > 0) { uint256 pending = ((user.amount * pool.accDestructionPerShare) / 1e18) - user.rewardDebt; if (pending > 0) { safeDestructionTransfer(msg.sender, pending); } } if (_amount > 0) { uint256 balanceBefore = pool.lpToken.balanceOf(address(this)); pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount); _amount = pool.lpToken.balanceOf(address(this)) - balanceBefore; require(_amount > 0, "we dont accept deposits of 0 size"); if (pool.depositFeeBP > 0) { uint256 depositFee = (_amount * pool.depositFeeBP) / 10000; pool.lpToken.safeTransfer(feeAddress, depositFee); user.amount = user.amount + _amount - depositFee; pool.lpSupply = pool.lpSupply + _amount - depositFee; } else { user.amount = user.amount + _amount; pool.lpSupply = pool.lpSupply + _amount; } } user.rewardDebt = (user.amount * pool.accDestructionPerShare) / 1e18; emit Deposit(msg.sender, _pid, _amount); } // Withdraw LP tokens from MasterChef. function withdraw(uint256 _pid, uint256 _amount) external nonReentrant { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; require(user.amount >= _amount, "withdraw: not good"); updatePool(_pid); uint256 pending = ((user.amount * pool.accDestructionPerShare) / 1e18) - user.rewardDebt; if (pending > 0) { safeDestructionTransfer(msg.sender, pending); } if (_amount > 0) { user.amount = user.amount - _amount; pool.lpToken.safeTransfer(address(msg.sender), _amount); pool.lpSupply = pool.lpSupply - _amount; } user.rewardDebt = (user.amount * pool.accDestructionPerShare) / 1e18; emit Withdraw(msg.sender, _pid, _amount); } // Withdraw without caring about rewards. EMERGENCY ONLY. function emergencyWithdraw(uint256 _pid) external nonReentrant { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; uint256 amount = user.amount; user.amount = 0; user.rewardDebt = 0; pool.lpToken.safeTransfer(address(msg.sender), amount); // In the case of an accounting error, we choose to let the user emergency withdraw anyway if (pool.lpSupply >= amount) pool.lpSupply = pool.lpSupply - amount; else pool.lpSupply = 0; emit EmergencyWithdraw(msg.sender, _pid, amount); } // Safe destruction transfer function, just in case if rounding error causes pool to not have enough DESTRUCTIONs. function safeDestructionTransfer(address _to, uint256 _amount) internal { uint256 destructionBal = destruction.balanceOf(address(this)); bool transferSuccess = false; if (_amount > destructionBal) { transferSuccess = destruction.transfer(_to, destructionBal); } else { transferSuccess = destruction.transfer(_to, _amount); } require(transferSuccess, "safeDestructionTransfer: transfer failed"); } function setFeeAddress(address _feeAddress) external onlyOwner { require(_feeAddress != address(0), "!nonzero"); feeAddress = _feeAddress; emit SetFeeAddress(msg.sender, _feeAddress); } // Update lastRewardBlock variables for all pools. function _massUpdateLastRewardBlockPools() internal { uint256 length = poolInfo.length; for (uint256 _pid = 0; _pid < length; ++_pid) { poolInfo[_pid].lastRewardBlock = startBlock; } } function setStartBlock(uint256 _newStartBlock) external onlyOwner { require(block.number < startBlock, "cannot change start block if sale has already commenced"); require(block.number < _newStartBlock, "cannot set start block in the past"); startBlock = _newStartBlock; _massUpdateLastRewardBlockPools(); emit SetStartBlock(startBlock); } function setEmissionRate(uint256 _destructionPerBlock) external onlyOwner { require(_destructionPerBlock > 0); require(_destructionPerBlock < MAX_EMISSION_RATE); massUpdatePools(); destructionPerBlock = _destructionPerBlock; emit SetEmissionRate(msg.sender, destructionPerBlock, _destructionPerBlock); } }
// SPDX-License-Identifier: MIT pragma solidity ^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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @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 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' 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) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _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 require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
/* ·▄▄▄▄ ▄▄▄ ..▄▄ · ▄▄▄▄▄▄▄▄ ▄• ▄▌ ▄▄· ▄▄▄▄▄▪ ▐ ▄ ██▪ ██ ▀▄.▀·▐█ ▀. •██ ▀▄ █·█▪██▌▐█ ▌▪•██ ██ ▪ •█▌▐█ ▐█· ▐█▌▐▀▀▪▄▄▀▀▀█▄ ▐█.▪▐▀▀▄ █▌▐█▌██ ▄▄ ▐█.▪▐█· ▄█▀▄ ▐█▐▐▌ ██. ██ ▐█▄▄▌▐█▄▪▐█ ▐█▌·▐█•█▌▐█▄█▌▐███▌ ▐█▌·▐█▌▐█▌.▐▌██▐█▌ ▀▀▀▀▀• ▀▀▀ ▀▀▀▀ ▀▀▀ .▀ ▀ ▀▀▀ ·▀▀▀ ▀▀▀ ▀▀▀ ▀█▄▀▪▀▀ █▪ */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; /* TABLE ERROR REFERENCE: ERR1: The sender is on the blacklist. Please contact to support. ERR2: The recipient is on the blacklist. Please contact to support. ERR3: User cannot send more than allowed. ERR4: User is not operator. ERR5: User is excluded from antibot system. ERR6: Bot address is already on the blacklist. ERR7: The expiration time has to be greater than 0. ERR8: Bot address is not found on the blacklist. ERR9: Address cant be 0. */ // DestructionToken contract DestructionTokenV3 is ERC20, Ownable { event OperatorTransferred(address indexed previousOperator, address indexed newOperator); event TransferTaxRateUpdated(address indexed operator, uint256 previousRate, uint256 newRate); event HoldingAmountRateUpdated(address indexed operator, uint256 previousRate, uint256 newRate); event AntiBotWorkingStatus(address indexed operator, bool previousStatus, bool newStatus); event AddBotAddress(address indexed botAddress); event RemoveBotAddress(address indexed botAddress); event ExcludedOperatorsUpdated(address indexed operatorAddress, bool previousStatus, bool newStatus); event ExcludedHoldersUpdated(address indexed holderAddress, bool previousStatus, bool newStatus); using SafeMath for uint256; ///@dev Max transfer amount rate. (default is 3% of total supply) uint16 public maxUserTransferAmountRate = 300; ///@dev Max holding rate. (default is 9% of total supply) uint16 public maxUserHoldAmountRate = 900; ///@dev Length of blacklist addressess uint256 public blacklistLength; ///@dev Enable|Disable antiBot bool public antiBotWorking; ///@dev Exclude operators from antiBot system mapping(address => bool) private _excludedOperatorsFromAntiBot; ///@dev Exclude holders from antiBot system mapping(address => bool) private _excludedHoldersFromAntiBot; ///@dev mapping store blacklist. address=>ExpirationTime mapping(address => uint256) private _blacklist; address public constant BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD; // operator role address internal _operator; // MODIFIERS modifier antiBot(address _sender, address _recipient, uint256 _amount) { //check blacklist require(!blacklistCheck(_sender), "ERR1"); require(!blacklistCheck(_recipient), "ERR2"); // This code will be disabled after launch and before farming if (antiBotWorking){ // check if sender|recipient has a tx amount is within the allowed limits if (_isNotOperatorExcludedFromAntiBot(_sender)){ if(_isNotOperatorExcludedFromAntiBot(_recipient)) require(_amount <= _maxUserTransferAmount(), "ERR3"); } } _; } modifier onlyOperator() { require(_operator == _msgSender(), "ERR4"); _; } constructor() ERC20('DESTRUCTION', 'DESTRUCTION') { // Exclude operator addresses, lps, etc from antibot system _excludedOperatorsFromAntiBot[msg.sender] = true; _excludedOperatorsFromAntiBot[address(0)] = true; _excludedOperatorsFromAntiBot[address(this)] = true; _excludedOperatorsFromAntiBot[BURN_ADDRESS] = true; _operator = _msgSender(); } function mint(address _to, uint256 _amount) public onlyOwner { _mint(_to, _amount); } //INTERNALS /// @dev overrides transfer function to use antibot system function _transfer(address _sender, address _recipient, uint256 _amount) internal virtual override antiBot(_sender, _recipient, _amount) { // Autodetect is sender is a BOT // This code will be disabled after launch and before farming if (antiBotWorking){ // check if sender|recipient has a tx amount is within the allowed limits if (_isNotHolderExcludedFromAntiBot(_sender)){ if(_isNotOperatorExcludedFromAntiBot(_sender)){ if (balanceOf(_sender) > _maxUserHoldAmount()) { _addBotAddressToBlackList(_sender, type(uint256).max); return; } } } } super._transfer(_sender, _recipient, _amount); } /// @dev internal function to add address to blacklist. function _addBotAddressToBlackList(address _botAddress, uint256 _expirationTime) internal { require(_isNotHolderExcludedFromAntiBot(_botAddress), "ERR5"); require(_isNotOperatorExcludedFromAntiBot(_botAddress), "ERR5"); require(_blacklist[_botAddress] == 0, "ERR6"); require(_expirationTime > 0, "ERR7"); _blacklist[_botAddress] = _expirationTime; blacklistLength = blacklistLength.add(1); emit AddBotAddress(_botAddress); } ///@dev internal function to remove address from blacklist. function _removeBotAddressToBlackList(address _botAddress) internal { require(_blacklist[_botAddress] > 0, "ERR8"); delete _blacklist[_botAddress]; blacklistLength = blacklistLength.sub(1); emit RemoveBotAddress(_botAddress); } ///@dev Check if the address is excluded from antibot system. function _isNotHolderExcludedFromAntiBot(address _userAddress) internal view returns(bool) { return(!_excludedHoldersFromAntiBot[_userAddress]); } ///@dev Check if the address is excluded from antibot system. function _isNotOperatorExcludedFromAntiBot(address _userAddress) internal view returns(bool) { return(!_excludedOperatorsFromAntiBot[_userAddress]); } ///@dev Max user transfer allowed function _maxUserTransferAmount() internal view returns (uint256) { return totalSupply().mul(maxUserTransferAmountRate).div(10000); } ///@dev Max user Holding allowed function _maxUserHoldAmount() internal view returns (uint256) { return totalSupply().mul(maxUserHoldAmountRate).div(10000); } // PUBLICS ///@dev Max user transfer allowed function maxUserTransferAmount() external view returns (uint256) { return _maxUserTransferAmount(); } ///@dev Max user Holding allowed function maxUserHoldAmount() external view returns (uint256) { return _maxUserHoldAmount(); } ///@dev check if the address is in the blacklist or expired function blacklistCheck(address botAddress) public view returns(bool){ if(_blacklist[botAddress] > 0) return _blacklist[botAddress] > block.timestamp; else return false; } ///@dev check if the address is in the blacklist or not function blacklistCheckExpirationTime(address botAddress) public view returns(uint256){ return _blacklist[botAddress]; } // EXTERNALS ///@dev Update operator address status function updateOperatorsFromAntiBot(address _operatorAddress, bool _status) external onlyOwner { require(_operatorAddress != address(0), "ERR9"); emit ExcludedOperatorsUpdated(_operatorAddress, _excludedOperatorsFromAntiBot[_operatorAddress], _status); _excludedOperatorsFromAntiBot[_operatorAddress] = _status; } ///@dev Update operator address status function updateHoldersFromAntiBot(address _holderAddress, bool _status) external onlyOwner { require(_holderAddress != address(0), "ERR9"); emit ExcludedHoldersUpdated(_holderAddress, _excludedHoldersFromAntiBot[_holderAddress], _status); _excludedHoldersFromAntiBot[_holderAddress] = _status; } ///@dev Update operator address function transferOperator(address newOperator) external onlyOperator { require(newOperator != address(0), "ERR9"); emit OperatorTransferred(_operator, newOperator); _operator = newOperator; } function operator() external view returns (address) { return _operator; } ///@dev Updates the max holding amount. function updateMaxUserHoldAmountRate(uint16 _maxUserHoldAmountRate) external onlyOwner { require(_maxUserHoldAmountRate >= 500); require(_maxUserHoldAmountRate <= 10000); emit TransferTaxRateUpdated(_msgSender(), maxUserHoldAmountRate, _maxUserHoldAmountRate); maxUserHoldAmountRate = _maxUserHoldAmountRate; } ///@dev Updates the max user transfer amount. function updateMaxUserTransferAmountRate(uint16 _maxUserTransferAmountRate) external onlyOwner { require(_maxUserTransferAmountRate >= 50); require(_maxUserTransferAmountRate <= 10000); emit HoldingAmountRateUpdated(_msgSender(), maxUserHoldAmountRate, _maxUserTransferAmountRate); maxUserTransferAmountRate = _maxUserTransferAmountRate; } ///@dev Update the antiBotWorking status: ENABLE|DISABLE. function updateStatusAntiBotWorking(bool _status) external onlyOwner { emit AntiBotWorkingStatus(_msgSender(), antiBotWorking, _status); antiBotWorking = _status; } ///@dev Add an address to the blacklist. Only the owner can add. Owner is the address of the Governance contract. function addBotAddress(address _botAddress, uint256 _expirationTime) external onlyOwner { _addBotAddressToBlackList(_botAddress, _expirationTime); } ///@dev Remove an address from the blacklist. Only the owner can remove. Owner is the address of the Governance contract. function removeBotAddress(address botAddress) external onlyOperator { _removeBotAddressToBlackList(botAddress); } ///@dev Add multi address to the blacklist. Only the owner can add. Owner is the address of the Governance contract. function addBotAddressBatch(address[] memory _addresses, uint256 _expirationTime) external onlyOwner { require(_addresses.length > 0); for(uint i=0;i<_addresses.length;i++){ _addBotAddressToBlackList(_addresses[i], _expirationTime); } } ///@dev Remove multi address from the blacklist. Only the owner can remove. Owner is the address of the Governance contract. function removeBotAddressBatch(address[] memory _addresses) external onlyOperator { require(_addresses.length > 0); for(uint i=0;i<_addresses.length;i++){ _removeBotAddressToBlackList(_addresses[i]); } } ///@dev Check if the address is excluded from antibot system. function isExcludedOperatorFromAntiBot(address _userAddress) external view returns(bool) { return(_excludedOperatorsFromAntiBot[_userAddress]); } ///@dev Check if the address is excluded from antibot system. function isExcludedHolderFromAntiBot(address _userAddress) external view returns(bool) { return(_excludedHoldersFromAntiBot[_userAddress]); } }
// SPDX-License-Identifier: MIT pragma solidity ^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; 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"); (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"); (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"); (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"); (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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ 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) { unchecked { 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) { unchecked { 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) { unchecked { // 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) { unchecked { 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) { unchecked { 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) { return a + b; } /** * @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 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) { return a * b; } /** * @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. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { 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) { 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) { unchecked { 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. * * 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) { unchecked { 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) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.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 meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract DestructionTokenV3","name":"_destruction","type":"address"},{"internalType":"address","name":"_feeAddress","type":"address"},{"internalType":"uint256","name":"_destructionPerBlock","type":"uint256"},{"internalType":"uint256","name":"_startBlock","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"SetEmissionRate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"SetFeeAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newStartBlock","type":"uint256"}],"name":"SetStartBlock","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"address","name":"lpToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"allocPoint","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"depositFeeBP","type":"uint256"}],"name":"addPool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"address","name":"lpToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"allocPoint","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"depositFeeBP","type":"uint256"}],"name":"setPool","type":"event"},{"inputs":[],"name":"MAX_EMISSION_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IERC20","name":"_lpToken","type":"address"},{"internalType":"uint16","name":"_depositFeeBP","type":"uint16"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"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":[],"name":"destruction","outputs":[{"internalType":"contract DestructionTokenV3","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"destructionMaximumSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"destructionPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emmissionEndBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingDestruction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"name":"poolExistence","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IERC20","name":"lpToken","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accDestructionPerShare","type":"uint256"},{"internalType":"uint16","name":"depositFeeBP","type":"uint16"},{"internalType":"uint256","name":"lpSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"uint16","name":"_depositFeeBP","type":"uint16"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_destructionPerBlock","type":"uint256"}],"name":"setEmissionRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeAddress","type":"address"}],"name":"setFeeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newStartBlock","type":"uint256"}],"name":"setStartBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"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
60a060405260006006557fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6008553480156200003a57600080fd5b5060405162003ecd38038062003ecd83398181016040528101906200006091906200029b565b62000080620000746200018a60201b60201c565b6200019260201b60201c565b60018081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620000fa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000f1906200032e565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b8152505082600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160028190555080600781905550505050506200042a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000815190506200026781620003dc565b92915050565b6000815190506200027e81620003f6565b92915050565b600081519050620002958162000410565b92915050565b60008060008060808587031215620002b257600080fd5b6000620002c2878288016200026d565b9450506020620002d58782880162000256565b9350506040620002e88782880162000284565b9250506060620002fb8782880162000284565b91505092959194509250565b60006200031660088362000350565b91506200032382620003b3565b602082019050919050565b60006020820190508181036000830152620003498162000307565b9050919050565b600082825260208201905092915050565b60006200036e8262000389565b9050919050565b6000620003828262000361565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f216e6f6e7a65726f000000000000000000000000000000000000000000000000600082015250565b620003e78162000361565b8114620003f357600080fd5b50565b620004018162000375565b81146200040d57600080fd5b50565b6200041b81620003a9565b81146200042757600080fd5b50565b60805160601c613a4c6200048160003960008181610ac201528181610b7b01528181610c2901528181610ce901528181610d820152818161186a015281816122ad0152818161236201526124160152613a4c6000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80637c0ed79d116100f9578063cbd258b511610097578063e2bbb15811610071578063e2bbb1581461048a578063f2fde38b146104a6578063f35e4a6e146104c2578063ff297b78146104de576101a9565b8063cbd258b514610420578063d37c6c9e14610450578063d96384221461046e576101a9565b80638da5cb5b116100d35780638da5cb5b146103855780638dbb1e3a146103a357806393f1a40b146103d3578063a1bdb15e14610404576101a9565b80637c0ed79d1461032f57806384e82a331461034d5780638705fcd414610369576101a9565b8063436cc3d61161016657806351eb05a61161014057806351eb05a6146102e35780635312ea8e146102ff578063630b5ba11461031b578063715018a614610325576101a9565b8063436cc3d61461028b578063441a3e70146102a957806348cd4cb1146102c5576101a9565b8063081e3eda146101ae5780631526fe27146101cc57806317caf6f11461020157806338a2c5811461021f5780633ecd5ff01461023d578063412753581461026d575b600080fd5b6101b66104fc565b6040516101c391906132ae565b60405180910390f35b6101e660048036038101906101e19190612adc565b610509565b6040516101f89695949392919061304b565b60405180910390f35b610209610583565b60405161021691906132ae565b60405180910390f35b610227610589565b60405161023491906132ae565b60405180910390f35b61025760048036038101906102529190612b2e565b61058f565b60405161026491906132ae565b60405180910390f35b610275610714565b6040516102829190612f63565b60405180910390f35b61029361073a565b6040516102a091906132ae565b60405180910390f35b6102c360048036038101906102be9190612bcd565b610746565b005b6102cd6109e7565b6040516102da91906132ae565b60405180910390f35b6102fd60048036038101906102f89190612adc565b6109ed565b005b61031960048036038101906103149190612adc565b610ea4565b005b61032361108d565b005b61032d6110c0565b005b610337611148565b60405161034491906132ae565b60405180910390f35b61036760048036038101906103629190612b6a565b61114e565b005b610383600480360381019061037e9190612a61565b61151a565b005b61038d6116a4565b60405161039a9190612f63565b60405180910390f35b6103bd60048036038101906103b89190612bcd565b6116cd565b6040516103ca91906132ae565b60405180910390f35b6103ed60048036038101906103e89190612b2e565b611716565b6040516103fb9291906132c9565b60405180910390f35b61041e60048036038101906104199190612adc565b611747565b005b61043a60048036038101906104359190612ab3565b611848565b6040516104479190613015565b60405180910390f35b610458611868565b6040516104659190613030565b60405180910390f35b61048860048036038101906104839190612c09565b61188c565b005b6104a4600480360381019061049f9190612bcd565b611b2d565b005b6104c060048036038101906104bb9190612a61565b612056565b005b6104dc60048036038101906104d79190612adc565b61214e565b005b6104e661229b565b6040516104f391906132ae565b60405180910390f35b6000600480549050905090565b6004818154811061051957600080fd5b90600052602060002090600602016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030154908060040160009054906101000a900461ffff16908060050154905086565b60065481565b60085481565b600080600484815481106105cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060060201905060006005600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008260030154905082600201544311801561065157506000836005015414155b801561065f57506000600654115b156106d75760006106748460020154436116cd565b9050600060065485600101546002548461068e91906133ab565b61069891906133ab565b6106a2919061337a565b90508460050154670de0b6b3a7640000826106bd91906133ab565b6106c7919061337a565b836106d29190613324565b925050505b8160010154670de0b6b3a76400008284600001546106f591906133ab565b6106ff919061337a565b6107099190613405565b935050505092915050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b678ac7230489e8000081565b6002600154141561078c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107839061328e565b60405180910390fd5b60026001819055506000600483815481106107d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060060201905060006005600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050828160000154101561087b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108729061322e565b60405180910390fd5b610884846109ed565b60008160010154670de0b6b3a7640000846003015484600001546108a891906133ab565b6108b2919061337a565b6108bc9190613405565b905060008111156108d2576108d133826122a9565b5b600084111561095b578382600001546108eb9190613405565b826000018190555061094233858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661250a9092919063ffffffff16565b8383600501546109529190613405565b83600501819055505b670de0b6b3a76400008360030154836000015461097891906133ab565b610982919061337a565b8260010181905550843373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568866040516109d191906132ae565b60405180910390a3505050600180819055505050565b60075481565b600060048281548110610a29577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060060201905080600201544311610a4a5750610ea1565b600081600501541480610a61575060008160010154145b15610a755743816002018190555050610ea1565b6000610a858260020154436116cd565b90506000600654836001015460025484610a9f91906133ab565b610aa991906133ab565b610ab3919061337a565b905069010f0cf064dd592000007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610b2657600080fd5b505afa158015610b3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5e9190612b05565b1115610b6d5760009050610cde565b69010f0cf064dd59200000817f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610bdf57600080fd5b505afa158015610bf3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c179190612b05565b610c219190613324565b1115610cdd577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610c8d57600080fd5b505afa158015610ca1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc59190612b05565b69010f0cf064dd59200000610cda9190613405565b90505b5b6000811115610d75577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166340c10f1930836040518363ffffffff1660e01b8152600401610d42929190612fb5565b600060405180830381600087803b158015610d5c57600080fd5b505af1158015610d70573d6000803e3d6000fd5b505050505b69010f0cf064dd592000007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610de657600080fd5b505afa158015610dfa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1e9190612b05565b10158015610e4d57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600854145b15610e5a57436008819055505b8260050154670de0b6b3a764000082610e7391906133ab565b610e7d919061337a565b8360030154610e8c9190613324565b83600301819055504383600201819055505050505b50565b60026001541415610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee19061328e565b60405180910390fd5b6002600181905550600060048281548110610f2e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060060201905060006005600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000816000015490506000826000018190555060008260010181905550610ffe33828560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661250a9092919063ffffffff16565b80836005015410611026578083600501546110199190613405565b8360050181905550611031565b600083600501819055505b833373ffffffffffffffffffffffffffffffffffffffff167fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05958360405161107891906132ae565b60405180910390a35050506001808190555050565b6000600480549050905060005b818110156110bc576110ab816109ed565b806110b59061352e565b905061109a565b5050565b6110c8612590565b73ffffffffffffffffffffffffffffffffffffffff166110e66116a4565b73ffffffffffffffffffffffffffffffffffffffff161461113c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611133906131ee565b60405180910390fd5b6111466000612598565b565b60025481565b611156612590565b73ffffffffffffffffffffffffffffffffffffffff166111746116a4565b73ffffffffffffffffffffffffffffffffffffffff16146111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c1906131ee565b60405180910390fd5b82600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f9061324e565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112919190612f63565b60206040518083038186803b1580156112a957600080fd5b505afa1580156112bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e19190612b05565b506101918361ffff16111561132b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611322906130ee565b60405180910390fd5b811561133a5761133961108d565b5b6000600754431161134d5760075461134f565b435b90508560065461135f9190613324565b6006819055506001600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060046040518060c001604052808773ffffffffffffffffffffffffffffffffffffffff168152602001888152602001838152602001600081526020018661ffff1681526020016000815250908060018154018082558091505060019003906000526020600020906006020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a81548161ffff021916908361ffff16021790555060a08201518160050155505060016004805490506114d79190613405565b7faa6642278d4bbef86d8990c37355d5d4dfe365c194106bdf7a65162268606f0786888760405161150a93929190612fde565b60405180910390a2505050505050565b611522612590565b73ffffffffffffffffffffffffffffffffffffffff166115406116a4565b73ffffffffffffffffffffffffffffffffffffffff1614611596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158d906131ee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd906131ae565b60405180910390fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fd44190acf9d04bdb5d3a1aafff7e6dee8b40b93dfb8c5d3f0eea4b9f4539c3f760405160405180910390a350565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006008548311156116e25760009050611710565b60085482111561170157826008546116fa9190613405565b9050611710565b828261170d9190613405565b90505b92915050565b6005602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b61174f612590565b73ffffffffffffffffffffffffffffffffffffffff1661176d6116a4565b73ffffffffffffffffffffffffffffffffffffffff16146117c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ba906131ee565b60405180910390fd5b600081116117d057600080fd5b678ac7230489e8000081106117e457600080fd5b6117ec61108d565b806002819055503373ffffffffffffffffffffffffffffffffffffffff167f1d6d701a35096c20378cd75889e191ea7805a050284fffba3bc572d9d354644f6002548360405161183d9291906132c9565b60405180910390a250565b60096020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b611894612590565b73ffffffffffffffffffffffffffffffffffffffff166118b26116a4565b73ffffffffffffffffffffffffffffffffffffffff1614611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff906131ee565b60405180910390fd5b6101918261ffff161115611951576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611948906131ce565b60405180910390fd5b80156119605761195f61108d565b5b826004858154811061199b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060060201600101546006546119ba9190613405565b6119c49190613324565b6006819055508260048581548110611a05577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060060201600101819055508160048581548110611a55577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906006020160040160006101000a81548161ffff021916908361ffff160217905550837f39f0c3d078af018954b4fa56832a05a2b511afaa999b133ea3f1c487c21ed28760048681548110611adc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906006020160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168585604051611b1f93929190612fde565b60405180910390a250505050565b60026001541415611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a9061328e565b60405180910390fd5b6002600181905550600060048381548110611bb7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060060201905060006005600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611c24846109ed565b600081600001541115611c815760008160010154670de0b6b3a764000084600301548460000154611c5591906133ab565b611c5f919061337a565b611c699190613405565b90506000811115611c7f57611c7e33826122a9565b5b505b6000831115611fcb5760008260000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611ce99190612f63565b60206040518083038186803b158015611d0157600080fd5b505afa158015611d15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d399190612b05565b9050611d8c3330868660000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661265c909392919063ffffffff16565b808360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611dea9190612f63565b60206040518083038186803b158015611e0257600080fd5b505afa158015611e16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e3a9190612b05565b611e449190613405565b935060008411611e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e809061316e565b60405180910390fd5b60008360040160009054906101000a900461ffff1661ffff161115611f985760006127108460040160009054906101000a900461ffff1661ffff1686611ecf91906133ab565b611ed9919061337a565b9050611f4c600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828660000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661250a9092919063ffffffff16565b80858460000154611f5d9190613324565b611f679190613405565b836000018190555080858560050154611f809190613324565b611f8a9190613405565b846005018190555050611fc9565b838260000154611fa89190613324565b8260000181905550838360050154611fc09190613324565b83600501819055505b505b670de0b6b3a764000082600301548260000154611fe891906133ab565b611ff2919061337a565b8160010181905550833373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a158560405161204191906132ae565b60405180910390a35050600180819055505050565b61205e612590565b73ffffffffffffffffffffffffffffffffffffffff1661207c6116a4565b73ffffffffffffffffffffffffffffffffffffffff16146120d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c9906131ee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612142576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121399061312e565b60405180910390fd5b61214b81612598565b50565b612156612590565b73ffffffffffffffffffffffffffffffffffffffff166121746116a4565b73ffffffffffffffffffffffffffffffffffffffff16146121ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c1906131ee565b60405180910390fd5b600754431061220e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122059061318e565b60405180910390fd5b804310612250576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612247906130ce565b60405180910390fd5b8060078190555061225f6126e5565b7f63b90b79f11a0f132bcb2c4a4ddd44abda45c1308a83b2919318df7f5f8b7be460075460405161229091906132ae565b60405180910390a150565b69010f0cf064dd5920000081565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016123049190612f63565b60206040518083038186803b15801561231c57600080fd5b505afa158015612330573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123549190612b05565b9050600081831115612414577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85846040518363ffffffff1660e01b81526004016123bb929190612fb5565b602060405180830381600087803b1580156123d557600080fd5b505af11580156123e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061240d9190612a8a565b90506124c4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040518363ffffffff1660e01b815260040161246f929190612fb5565b602060405180830381600087803b15801561248957600080fd5b505af115801561249d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124c19190612a8a565b90505b80612504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fb9061310e565b60405180910390fd5b50505050565b61258b8363a9059cbb60e01b8484604051602401612529929190612fb5565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612761565b505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126df846323b872dd60e01b85858560405160240161267d93929190612f7e565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612761565b50505050565b6000600480549050905060005b8181101561275d5760075460048281548110612737577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906006020160020181905550806127569061352e565b90506126f2565b5050565b60006127c3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166128289092919063ffffffff16565b905060008151111561282357808060200190518101906127e39190612a8a565b612822576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128199061326e565b60405180910390fd5b5b505050565b60606128378484600085612840565b90509392505050565b606082471015612885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287c9061314e565b60405180910390fd5b61288e85612954565b6128cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c49061320e565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516128f69190612f4c565b60006040518083038185875af1925050503d8060008114612933576040519150601f19603f3d011682016040523d82523d6000602084013e612938565b606091505b5091509150612948828286612967565b92505050949350505050565b600080823b905060008111915050919050565b60608315612977578290506129c7565b60008351111561298a5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129be91906130ac565b60405180910390fd5b9392505050565b6000813590506129dd816139a3565b92915050565b6000813590506129f2816139ba565b92915050565b600081519050612a07816139ba565b92915050565b600081359050612a1c816139d1565b92915050565b600081359050612a31816139e8565b92915050565b600081359050612a46816139ff565b92915050565b600081519050612a5b816139ff565b92915050565b600060208284031215612a7357600080fd5b6000612a81848285016129ce565b91505092915050565b600060208284031215612a9c57600080fd5b6000612aaa848285016129f8565b91505092915050565b600060208284031215612ac557600080fd5b6000612ad384828501612a0d565b91505092915050565b600060208284031215612aee57600080fd5b6000612afc84828501612a37565b91505092915050565b600060208284031215612b1757600080fd5b6000612b2584828501612a4c565b91505092915050565b60008060408385031215612b4157600080fd5b6000612b4f85828601612a37565b9250506020612b60858286016129ce565b9150509250929050565b60008060008060808587031215612b8057600080fd5b6000612b8e87828801612a37565b9450506020612b9f87828801612a0d565b9350506040612bb087828801612a22565b9250506060612bc1878288016129e3565b91505092959194509250565b60008060408385031215612be057600080fd5b6000612bee85828601612a37565b9250506020612bff85828601612a37565b9150509250929050565b60008060008060808587031215612c1f57600080fd5b6000612c2d87828801612a37565b9450506020612c3e87828801612a37565b9350506040612c4f87828801612a22565b9250506060612c60878288016129e3565b91505092959194509250565b612c7581613439565b82525050565b612c848161344b565b82525050565b6000612c95826132f2565b612c9f8185613308565b9350612caf8185602086016134fb565b80840191505092915050565b612cc4816134a1565b82525050565b612cd3816134c5565b82525050565b6000612ce4826132fd565b612cee8185613313565b9350612cfe8185602086016134fb565b612d07816135d5565b840191505092915050565b6000612d1f602283613313565b9150612d2a826135e6565b604082019050919050565b6000612d42602583613313565b9150612d4d82613635565b604082019050919050565b6000612d65602883613313565b9150612d7082613684565b604082019050919050565b6000612d88602683613313565b9150612d93826136d3565b604082019050919050565b6000612dab602683613313565b9150612db682613722565b604082019050919050565b6000612dce602183613313565b9150612dd982613771565b604082019050919050565b6000612df1603783613313565b9150612dfc826137c0565b604082019050919050565b6000612e14600883613313565b9150612e1f8261380f565b602082019050919050565b6000612e37602583613313565b9150612e4282613838565b604082019050919050565b6000612e5a602083613313565b9150612e6582613887565b602082019050919050565b6000612e7d601d83613313565b9150612e88826138b0565b602082019050919050565b6000612ea0601283613313565b9150612eab826138d9565b602082019050919050565b6000612ec3601983613313565b9150612ece82613902565b602082019050919050565b6000612ee6602a83613313565b9150612ef18261392b565b604082019050919050565b6000612f09601f83613313565b9150612f148261397a565b602082019050919050565b612f2881613469565b82525050565b612f37816134e9565b82525050565b612f4681613497565b82525050565b6000612f588284612c8a565b915081905092915050565b6000602082019050612f786000830184612c6c565b92915050565b6000606082019050612f936000830186612c6c565b612fa06020830185612c6c565b612fad6040830184612f3d565b949350505050565b6000604082019050612fca6000830185612c6c565b612fd76020830184612f3d565b9392505050565b6000606082019050612ff36000830186612c6c565b6130006020830185612f3d565b61300d6040830184612f2e565b949350505050565b600060208201905061302a6000830184612c7b565b92915050565b60006020820190506130456000830184612cbb565b92915050565b600060c0820190506130606000830189612cca565b61306d6020830188612f3d565b61307a6040830187612f3d565b6130876060830186612f3d565b6130946080830185612f1f565b6130a160a0830184612f3d565b979650505050505050565b600060208201905081810360008301526130c68184612cd9565b905092915050565b600060208201905081810360008301526130e781612d12565b9050919050565b6000602082019050818103600083015261310781612d35565b9050919050565b6000602082019050818103600083015261312781612d58565b9050919050565b6000602082019050818103600083015261314781612d7b565b9050919050565b6000602082019050818103600083015261316781612d9e565b9050919050565b6000602082019050818103600083015261318781612dc1565b9050919050565b600060208201905081810360008301526131a781612de4565b9050919050565b600060208201905081810360008301526131c781612e07565b9050919050565b600060208201905081810360008301526131e781612e2a565b9050919050565b6000602082019050818103600083015261320781612e4d565b9050919050565b6000602082019050818103600083015261322781612e70565b9050919050565b6000602082019050818103600083015261324781612e93565b9050919050565b6000602082019050818103600083015261326781612eb6565b9050919050565b6000602082019050818103600083015261328781612ed9565b9050919050565b600060208201905081810360008301526132a781612efc565b9050919050565b60006020820190506132c36000830184612f3d565b92915050565b60006040820190506132de6000830185612f3d565b6132eb6020830184612f3d565b9392505050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b600061332f82613497565b915061333a83613497565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561336f5761336e613577565b5b828201905092915050565b600061338582613497565b915061339083613497565b9250826133a05761339f6135a6565b5b828204905092915050565b60006133b682613497565b91506133c183613497565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133fa576133f9613577565b5b828202905092915050565b600061341082613497565b915061341b83613497565b92508282101561342e5761342d613577565b5b828203905092915050565b600061344482613477565b9050919050565b60008115159050919050565b600061346282613439565b9050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006134ac826134b3565b9050919050565b60006134be82613477565b9050919050565b60006134d0826134d7565b9050919050565b60006134e282613477565b9050919050565b60006134f482613469565b9050919050565b60005b838110156135195780820151818401526020810190506134fe565b83811115613528576000848401525b50505050565b600061353982613497565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561356c5761356b613577565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000601f19601f8301169050919050565b7f63616e6e6f742073657420737461727420626c6f636b20696e2074686520706160008201527f7374000000000000000000000000000000000000000000000000000000000000602082015250565b7f6164643a20696e76616c6964206465706f73697420666565206261736973207060008201527f6f696e7473000000000000000000000000000000000000000000000000000000602082015250565b7f736166654465737472756374696f6e5472616e736665723a207472616e73666560008201527f72206661696c6564000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f776520646f6e7420616363657074206465706f73697473206f6620302073697a60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e6e6f74206368616e676520737461727420626c6f636b2069662073616c60008201527f652068617320616c726561647920636f6d6d656e636564000000000000000000602082015250565b7f216e6f6e7a65726f000000000000000000000000000000000000000000000000600082015250565b7f7365743a20696e76616c6964206465706f73697420666565206261736973207060008201527f6f696e7473000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f77697468647261773a206e6f7420676f6f640000000000000000000000000000600082015250565b7f6e6f6e4475706c6963617465643a206475706c69636174656400000000000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6139ac81613439565b81146139b757600080fd5b50565b6139c38161344b565b81146139ce57600080fd5b50565b6139da81613457565b81146139e557600080fd5b50565b6139f181613469565b81146139fc57600080fd5b50565b613a0881613497565b8114613a1357600080fd5b5056fea264697066735822122053bc818962c5936276a1a76352e7b849c7244c4ade6830291778c111160ac0c664736f6c63430008040033000000000000000000000000ca4992f01b63c7ceb98505946b79d7d8855449f90000000000000000000000000c4b9038f7d01d4413acc1641953856e732c864d000000000000000000000000000000000000000000000000001bd43b15ace8c0000000000000000000000000000000000000000000000000000000000146215c
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ca4992f01b63c7ceb98505946b79d7d8855449f90000000000000000000000000c4b9038f7d01d4413acc1641953856e732c864d000000000000000000000000000000000000000000000000001bd43b15ace8c0000000000000000000000000000000000000000000000000000000000146215c
-----Decoded View---------------
Arg [0] : _destruction (address): 0xca4992f01b63c7ceb98505946b79d7d8855449f9
Arg [1] : _feeAddress (address): 0x0c4b9038f7d01d4413acc1641953856e732c864d
Arg [2] : _destructionPerBlock (uint256): 7833174603000000
Arg [3] : _startBlock (uint256): 21373276
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000ca4992f01b63c7ceb98505946b79d7d8855449f9
Arg [1] : 0000000000000000000000000c4b9038f7d01d4413acc1641953856e732c864d
Arg [2] : 000000000000000000000000000000000000000000000000001bd43b15ace8c0
Arg [3] : 000000000000000000000000000000000000000000000000000000000146215c
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.