// SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// solhint-disable-next-line no-inline-assembly
assembly { size := extcodesize(account) }
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain`call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: value }(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.3._
*/
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.3._
*/
function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
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 () internal {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
interface IUniswapV2Factory {
function createPair(address tokenA, address tokenB) external returns (address pair);
}
interface IUniswapV2Pair {
function sync() external;
}
interface IUniswapV2Router01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint amountADesired,
uint amountBDesired,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB, uint liquidity);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}
interface IUniswapV2Router02 is IUniswapV2Router01 {
function removeLiquidityETHSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountETH);
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external payable;
}
contract RewardWallet {
constructor() public {
}
}
contract Balancer {
using SafeMath for uint256;
IUniswapV2Router02 public immutable _uniswapV2Router;
FRACTAL private _tokenContract;
constructor(FRACTAL tokenContract, IUniswapV2Router02 uniswapV2Router) public {
_tokenContract = tokenContract;
_uniswapV2Router = uniswapV2Router;
}
receive() external payable {}
function rebalance() external returns (uint256) {
swapEthForTokens(address(this).balance);
}
function swapEthForTokens(uint256 EthAmount) private {
address[] memory uniswapPairPath = new address[](2);
uniswapPairPath[0] = _uniswapV2Router.WETH();
uniswapPairPath[1] = address(_tokenContract);
_uniswapV2Router
.swapExactETHForTokensSupportingFeeOnTransferTokens{value: EthAmount}(
0,
uniswapPairPath,
address(this),
block.timestamp
);
}
}
contract Swapper {
using SafeMath for uint256;
IUniswapV2Router02 public immutable _uniswapV2Router;
FRACTAL private _tokenContract;
constructor(FRACTAL tokenContract, IUniswapV2Router02 uniswapV2Router) public {
_tokenContract = tokenContract;
_uniswapV2Router = uniswapV2Router;
}
function swapTokens(address pairTokenAddress, uint256 tokenAmount) external {
uint256 initialPairTokenBalance = IERC20(pairTokenAddress).balanceOf(address(this));
swapTokensForTokens(pairTokenAddress, tokenAmount);
uint256 newPairTokenBalance = IERC20(pairTokenAddress).balanceOf(address(this)).sub(initialPairTokenBalance);
IERC20(pairTokenAddress).transfer(address(_tokenContract), newPairTokenBalance);
}
function swapTokensForTokens(address pairTokenAddress, uint256 tokenAmount) private {
address[] memory path = new address[](2);
path[0] = address(_tokenContract);
path[1] = pairTokenAddress;
_tokenContract.approve(address(_uniswapV2Router), tokenAmount);
// make the swap
_uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
tokenAmount,
0, // accept any amount of pair token
path,
address(this),
block.timestamp
);
}
}
contract FRACTAL is Context, IERC20, Ownable {
using SafeMath for uint256;
using Address for address;
IUniswapV2Router02 public immutable _uniswapV2Router;
mapping (address => uint256) private _rOwned;
mapping (address => uint256) private _tOwned;
mapping (address => mapping (address => uint256)) private _allowances;
mapping (address => bool) private _isExcluded;
address[] private _excluded;
address public _rewardWallet;
uint256 public _initialRewardLockAmount;
address public _uniswapETHPool;
uint256 private constant MAX = ~uint256(0);
uint256 private _tTotal = 10000000e9;
uint256 private _rTotal = (MAX - (MAX % _tTotal));
uint256 public _tFeeTotal;
uint256 public _tBurnTotal;
string private _name = 'FractalDefi.com';
string private _symbol = 'FRCTL';
uint8 private _decimals = 9;
uint256 public _feeDecimals = 1;
uint256 public _maxTxAmount = 2000000e9;
uint256 public _minTokensBeforeSwap = 10000e9;
uint256 public _minInterestForReward = 15e9; // 1.5% interest
uint256 private _autoSwapCallerFee = 200e9;
bool private inSwapAndLiquify;
bool public swapAndLiquifyEnabled;
bool public tradingEnabled;
bool private _isCycling;
address private currentPairTokenAddress;
address private currentPoolAddress;
uint256 private _liquidityRemoveFee = 2;
uint256 private _fractalizeCallerFee = 5;
uint256 private _minTokenForFractalize = 1000e9;
uint256 private _lastFractalize;
uint256 private _fractalizeInterval = 1 hours;
uint256 private _taxFeeDefault; // 1%
uint256 private _lockFeeDefault; // 1%
uint256 private _burnFeeDefault;
uint256 private _devFeeDefault;
uint256 private _cycleLimit;
uint256 private _MAX_TAX_LIMIT; // 20%;
uint256 private _feeInterval; // we reset the interval at 4 turns
uint256 private _timeSinceLastFeeUpdate;
uint256 private _timeCheckInterval;
uint256 private _taxFee;
uint256 private _lockFee;
uint256 private _burnFee;
uint256 private _devFee;
// pre-set to true, so when iscycled is toggled we don't have to flip 4 switches
bool public taxFeeIsCycling = true;
bool public burnFeeIsCycling = true;
bool public devFeeIsCycling = true;
bool public lockFeeIsCycling = true;
bool public _isBotThrottling;
uint256 public _txCounter;
uint256 public _txLimit;
uint256 public buyLimit;
address public devAddr;
event DefaultFeesUpdated(uint256 cycleLimit, uint256 taxFDefault, uint256 burnFDefault, uint256 devFDefault, uint256 lockFDefault );
event FeeDecimalsUpdated(uint256 taxFeeDecimals);
event MaxTxAmountUpdated(uint256 maxTxAmount);
event WhitelistUpdated(address indexed pairTokenAddress);
event TradingEnabled();
event SwapAndLiquifyEnabledUpdated(bool enabled);
event SwapAndLiquify(
address indexed pairTokenAddress,
uint256 tokensSwapped,
uint256 pairTokenReceived,
uint256 tokensIntoLiqudity
);
event Rebalance(uint256 tokenBurnt);
event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
event AutoSwapCallerFeeUpdated(uint256 autoSwapCallerFee);
event MinInterestForRewardUpdated(uint256 minInterestForReward);
event LiquidityRemoveFeeUpdated(uint256 liquidityRemoveFee);
event FractalizeCallerFeeUpdated(uint256 rebalanceCallerFee);
event MinTokenForFractalizeUpdated(uint256 minRebalanceAmount);
event FractalizeIntervalUpdated(uint256 rebalanceInterval);
event Redistributed(address from, uint256 t, uint256 rAmount, uint256 tAmount);
event BotThrottlerUpdated(bool to);
modifier lockTheSwap {
inSwapAndLiquify = true;
_;
inSwapAndLiquify = false;
}
Balancer public balancer;
Swapper public swapper;
//0xf164fC0Ec4E93095b804a4795bBe1e041497b92a 1000000000000000 -> 10% to rewards
constructor (IUniswapV2Router02 uniswapV2Router, uint256 initialRewardLockAmount, address dev) public {
_lastFractalize = block.timestamp;
devAddr = dev;
_uniswapV2Router = uniswapV2Router;
_rewardWallet = address(new RewardWallet());
_initialRewardLockAmount = initialRewardLockAmount;
balancer = new Balancer(this, uniswapV2Router);
swapper = new Swapper(this, uniswapV2Router);
currentPoolAddress = IUniswapV2Factory(uniswapV2Router.factory())
.createPair(address(this), uniswapV2Router.WETH());
currentPairTokenAddress = uniswapV2Router.WETH();
_uniswapETHPool = currentPoolAddress;
updateSwapAndLiquifyEnabled(false);
_rOwned[_msgSender()] = reflectionFromToken(_tTotal.sub(_initialRewardLockAmount), false);
_rOwned[_rewardWallet] = reflectionFromToken(_initialRewardLockAmount, false);
_isCycling = false;
_taxFeeDefault = 10;
_burnFeeDefault = 5;
_devFeeDefault = 5;
_lockFeeDefault = 20;
_cycleLimit = 4;
_MAX_TAX_LIMIT = 200; // 20%;
_feeInterval = 0; // we reset the interval at 4 turns
_timeSinceLastFeeUpdate = block.timestamp;
_timeCheckInterval = 3600;
_lockFee = _lockFeeDefault;
_taxFee = _taxFeeDefault;
_burnFee = _burnFeeDefault;
_devFee = _devFeeDefault;
_severePunishment = true;
_frontRunGuard = true;
_isBotThrottling = false;
_goEasyOnThem = false;
_txLimit = 200;
buyLimit = 10000; // 10000 $FRCTL
emit Transfer(address(0), _msgSender(), _tTotal.sub(_initialRewardLockAmount));
emit Transfer(address(0), _rewardWallet, _initialRewardLockAmount);
}
function name() public view returns (string memory) {
return _name;
}
function symbol() public view returns (string memory) {
return _symbol;
}
function decimals() public view returns (uint8) {
return _decimals;
}
function totalSupply() public view override returns (uint256) {
return _tTotal;
}
function balanceOf(address account) public view override returns (uint256) {
if (_isExcluded[account]) return _tOwned[account];
return tokenFromReflection(_rOwned[account]);
}
function transfer(address recipient, uint256 amount) public override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
function allowance(address owner, address spender) public view override returns (uint256) {
return _allowances[owner][spender];
}
function approve(address spender, uint256 amount) public override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
function isExcluded(address account) public view returns (bool) {
return _isExcluded[account];
}
function reflect(uint256 tAmount) public {
address sender = _msgSender();
require(!_isExcluded[sender], "Excluded addresses cannot call this function");
(uint256 rAmount,,,,,,) = _getValues(tAmount);
_rOwned[sender] = _rOwned[sender].sub(rAmount);
_rTotal = _rTotal.sub(rAmount);
_tFeeTotal = _tFeeTotal.add(tAmount);
}
function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns (uint256) {
require(tAmount <= _tTotal, "Amount must be less than supply");
if (!deductTransferFee) {
(uint256 rAmount,,,,,,) = _getValues(tAmount);
return rAmount;
} else {
(,uint256 rTransferAmount,,,,,) = _getValues(tAmount);
return rTransferAmount;
}
}
function tokenFromReflection(uint256 rAmount) public view returns (uint256) {
require(rAmount <= _rTotal, "Amount must be less than total reflections");
uint256 currentRate = _getRate();
return rAmount.div(currentRate);
}
function excludeAccount(address account) public onlyOwner() {
require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
require(account != address(this), 'We can not exclude contract self.');
require(account != _rewardWallet, 'We can not exclude reweard wallet.');
require(!_isExcluded[account], "Account is already excluded");
if(_rOwned[account] > 0) {
_tOwned[account] = tokenFromReflection(_rOwned[account]);
}
_isExcluded[account] = true;
_excluded.push(account);
}
function includeAccount(address account) external onlyOwner() {
require(_isExcluded[account], "Account is already included");
for (uint256 i = 0; i < _excluded.length; i++) {
if (_excluded[i] == account) {
_excluded[i] = _excluded[_excluded.length - 1];
_tOwned[account] = 0;
_isExcluded[account] = false;
_excluded.pop();
break;
}
}
}
function _approve(address owner, address spender, uint256 amount) private {
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);
}
// ANTI BOT MEASURES //
mapping(address => uint256) private _lastTransferred;
mapping(address => uint256) private _possibleFrontRunners;
event PunishedBot(address bot);
event FrontRunnerStrike(address possibleBot, uint256 count);
bool public _severePunishment;
bool public _frontRunGuard;
bool public _lastlastTransferWasABuy;
address private _lastTransfer;
address private _lastlastTransfer;
uint256 private _lastBlockNumber;
bool private _goEasyOnThem;
function _toggleGoEasyOnThem() external onlyOwner{
_goEasyOnThem = !_goEasyOnThem;
}
function _toggleFrontRunGuard() external onlyOwner{
_frontRunGuard = !_frontRunGuard;
}
function _toggleSeverePunishment() external onlyOwner{
_severePunishment = !_severePunishment;
}
function setBuySizeLimit(uint256 limit) external onlyOwner {
buyLimit = limit;
}
function toggleBotThrottling() external onlyOwner {
if(_isBotThrottling) {
_txCounter = 0; // reset tx counter back to 0 if bots are being a pain
}
_isBotThrottling = !_isBotThrottling;
emit BotThrottlerUpdated(_isBotThrottling);
}
// how long we keep the buy limit going
function setNthTxLimit(uint256 txLimit) external onlyOwner {
_txLimit = txLimit;
}
function _transfer(address sender, address recipient, uint256 amount) private {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
require(amount > 0, "ERC20: Transfer amount must be greater than zero");
// short-circuit if we are not cycling
if(_isCycling && block.timestamp > (_timeSinceLastFeeUpdate.add(_timeCheckInterval))) {
_cycleFees();
}
if(sender != owner() && recipient != owner() && !inSwapAndLiquify) {
require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
if((_msgSender() == currentPoolAddress || _msgSender() == address(_uniswapV2Router)) && !tradingEnabled)
require(false, "Trading is disabled.");
}
if(!inSwapAndLiquify) {
uint256 lockedBalanceForPool = balanceOf(address(this));
bool overMinTokenBalance = lockedBalanceForPool >= _minTokensBeforeSwap;
if (
overMinTokenBalance &&
msg.sender != currentPoolAddress &&
swapAndLiquifyEnabled
) {
if(currentPairTokenAddress == _uniswapV2Router.WETH())
swapAndLiquifyForEth(lockedBalanceForPool);
else
swapAndLiquifyForTokens(currentPairTokenAddress, lockedBalanceForPool);
}
}
// not a good use of gas but we need to keep these in scope
bool isBeingPunished = false;
uint256 tf = _taxFee;
uint256 df = _devFee;
uint256 lf = _lockFee;
// since we are bootstrapping liquidity, we want to protect holders from bots and someone snatching up all the tokens
// also, fuck bots.
if(_isBotThrottling) {
// if there is a tx limit then we assume the bot will turn off afterwards.
if(_txCounter < _txLimit){
// we can also set the buys to 0
// if txCounter is less than y make sure buy limits are enforced, else time to turn off bot throttling
// if this contract is not being sold to
if(recipient != address(this)){
require(_lastTransfer != tx.origin && _lastBlockNumber != block.number, "THROTTLEBOT: Are you a spam bot?");
}
require(amount <= (buyLimit * 10 ** _decimals), "THROTTLEBOT: Exceeded buy limit before txLimit");
_txCounter++;
} else {
_isBotThrottling = !_isBotThrottling;
emit BotThrottlerUpdated(_isBotThrottling);
}
_lastBlockNumber = block.number;
}
if(_frontRunGuard && _lastlastTransfer == tx.origin){
bool wasFrontRunAttempt = _lastlastTransferWasABuy == (recipient == address(this));
if(wasFrontRunAttempt){
if(_goEasyOnThem){
require(!wasFrontRunAttempt, "GUARDBOT says: no");
}
_possibleFrontRunners[tx.origin] += 1;
emit FrontRunnerStrike(tx.origin, _possibleFrontRunners[tx.origin]);
}
// timesPossiblyFrontRunning, 3 strikes rule
if(_possibleFrontRunners[tx.origin] > 3) {
isBeingPunished = true;
if(_severePunishment){
_taxFee = _taxFeeDefault.mul(_feeInterval).add(30);
_devFee = _devFeeDefault.mul(_feeInterval).add(30);
_lockFee = _lockFeeDefault.mul(_feeInterval).add(30);
}
}
}
if (_isExcluded[sender] && !_isExcluded[recipient]) {
_transferFromExcluded(sender, recipient, amount);
} else if (!_isExcluded[sender] && _isExcluded[recipient]) {
_transferToExcluded(sender, recipient, amount);
} else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
_transferStandard(sender, recipient, amount);
} else if (_isExcluded[sender] && _isExcluded[recipient]) {
_transferBothExcluded(sender, recipient, amount);
} else {
_transferStandard(sender, recipient, amount);
}
// save gas on assignments
if(_frontRunGuard){
_lastTransferred[tx.origin] = block.timestamp;
_lastlastTransfer = _lastTransfer; // used to prevent front-running bots
_lastlastTransferWasABuy = recipient != address(this);
_lastTransfer = tx.origin;
if(isBeingPunished){
if(_severePunishment){
_taxFee = tf;
_devFee = df;
_lockFee = lf;
}
emit PunishedBot(tx.origin); // we can always use this to exclude later
}
}
// cleanup
delete isBeingPunished;
delete df;
delete tf;
delete lf;
}
receive() external payable {}
function swapAndLiquifyForEth(uint256 lockedBalanceForPool) private lockTheSwap {
// split the contract balance except swapCallerFee into halves
uint256 lockedForSwap = lockedBalanceForPool.sub(_autoSwapCallerFee);
uint256 half = lockedForSwap.div(2);
uint256 otherHalf = lockedForSwap.sub(half);
// capture the contract's current ETH balance.
// this is so that we can capture exactly the amount of ETH that the
// swap creates, and not make the liquidity event include any ETH that
// has been manually sent to the contract
uint256 initialBalance = address(this).balance;
// swap tokens for ETH
swapTokensForEth(half);
// how much ETH did we just swap into?
uint256 newBalance = address(this).balance.sub(initialBalance);
// add liquidity to uniswap
addLiquidityForEth(otherHalf, newBalance);
emit SwapAndLiquify(_uniswapV2Router.WETH(), half, newBalance, otherHalf);
_transfer(address(this), msg.sender, _autoSwapCallerFee);
_sendRewardInterestToPool();
}
function swapTokensForEth(uint256 tokenAmount) private {
// generate the uniswap pair path of token -> weth
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = _uniswapV2Router.WETH();
_approve(address(this), address(_uniswapV2Router), tokenAmount);
// make the swap
_uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0, // accept any amount of ETH
path,
address(this),
block.timestamp
);
}
function addLiquidityForEth(uint256 tokenAmount, uint256 ethAmount) private {
// approve token transfer to cover all possible scenarios
_approve(address(this), address(_uniswapV2Router), tokenAmount);
// add the liquidity
_uniswapV2Router.addLiquidityETH{value: ethAmount}(
address(this),
tokenAmount,
0, // slippage is unavoidable
0, // slippage is unavoidable
address(this),
block.timestamp
);
}
function swapAndLiquifyForTokens(address pairTokenAddress, uint256 lockedBalanceForPool) private lockTheSwap {
// split the contract balance except swapCallerFee into halves
uint256 lockedForSwap = lockedBalanceForPool.sub(_autoSwapCallerFee);
uint256 half = lockedForSwap.div(2);
uint256 otherHalf = lockedForSwap.sub(half);
_transfer(address(this), address(swapper), half);
uint256 initialPairTokenBalance = IERC20(pairTokenAddress).balanceOf(address(this));
// swap tokens for pairToken
swapper.swapTokens(pairTokenAddress, half);
uint256 newPairTokenBalance = IERC20(pairTokenAddress).balanceOf(address(this)).sub(initialPairTokenBalance);
// add liquidity to uniswap
addLiquidityForTokens(pairTokenAddress, otherHalf, newPairTokenBalance);
emit SwapAndLiquify(pairTokenAddress, half, newPairTokenBalance, otherHalf);
_transfer(address(this), msg.sender, _autoSwapCallerFee);
_sendRewardInterestToPool();
}
function addLiquidityForTokens(address pairTokenAddress, uint256 tokenAmount, uint256 pairTokenAmount) private {
// approve token transfer to cover all possible scenarios
_approve(address(this), address(_uniswapV2Router), tokenAmount);
IERC20(pairTokenAddress).approve(address(_uniswapV2Router), pairTokenAmount);
// add the liquidity
_uniswapV2Router.addLiquidity(
address(this),
pairTokenAddress,
tokenAmount,
pairTokenAmount,
0, // slippage is unavoidable
0, // slippage is unavoidable
address(this),
block.timestamp
);
}
function fractalize() public lockTheSwap {
require(balanceOf(_msgSender()) >= _minTokenForFractalize, "Need MOAR FRACTALs");
require(block.timestamp > _lastFractalize + _fractalizeInterval, 'Chill please. Fractalization. soon.');
_lastFractalize = block.timestamp;
uint256 amountToRemove = IERC20(_uniswapETHPool).balanceOf(address(this)).mul(_liquidityRemoveFee).div(100);
removeLiquidityETH(amountToRemove);
balancer.rebalance();
uint256 tNewTokenBalance = balanceOf(address(balancer));
uint256 tRewardForCaller = tNewTokenBalance.mul(_fractalizeCallerFee).div(100);
uint256 tBurn = tNewTokenBalance.sub(tRewardForCaller);
uint256 currentRate = _getRate();
uint256 rBurn = tBurn.mul(currentRate);
_rOwned[_msgSender()] = _rOwned[_msgSender()].add(tRewardForCaller.mul(currentRate));
_rOwned[address(balancer)] = 0;
_tBurnTotal = _tBurnTotal.add(tBurn);
_tTotal = _tTotal.sub(tBurn);
_rTotal = _rTotal.sub(rBurn);
emit Transfer(address(balancer), _msgSender(), tRewardForCaller);
emit Transfer(address(balancer), address(0), tBurn);
emit Rebalance(tBurn);
}
function removeLiquidityETH(uint256 lpAmount) private returns(uint ETHAmount) {
IERC20(_uniswapETHPool).approve(address(_uniswapV2Router), lpAmount);
(ETHAmount) = _uniswapV2Router
.removeLiquidityETHSupportingFeeOnTransferTokens(
address(this),
lpAmount,
0,
0,
address(balancer),
block.timestamp
);
}
function _sendRewardInterestToPool() private {
uint256 tRewardInterest = balanceOf(_rewardWallet).sub(_initialRewardLockAmount);
if(tRewardInterest > _minInterestForReward) {
uint256 rRewardInterest = reflectionFromToken(tRewardInterest, false);
_rOwned[currentPoolAddress] = _rOwned[currentPoolAddress].add(rRewardInterest);
_rOwned[_rewardWallet] = _rOwned[_rewardWallet].sub(rRewardInterest);
emit Transfer(_rewardWallet, currentPoolAddress, tRewardInterest);
IUniswapV2Pair(currentPoolAddress).sync();
}
}
function _transferStandard(address sender, address recipient, uint256 tAmount) private {
uint256 currentRate = _getRate();
(uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLock, uint256 tBurn) = _getValues(tAmount);
uint256 rLock = tLock.mul(currentRate);
_rOwned[sender] = _rOwned[sender].sub(rAmount);
if(inSwapAndLiquify) {
_rOwned[recipient] = _rOwned[recipient].add(rAmount);
emit Transfer(sender, recipient, tAmount);
} else {
_rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
_rOwned[address(this)] = _rOwned[address(this)].add(rLock);
uint256 rBurn = tBurn.mul(currentRate);
_reflectFee(rFee, rBurn, tFee, tBurn);
emit Transfer(sender, address(this), tLock);
emit Transfer(sender, recipient, tTransferAmount);
}
emit Redistributed(sender, 1, rAmount, tAmount);
}
function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
uint256 currentRate = _getRate();
(uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLock, uint256 tBurn) = _getValues(tAmount);
uint256 rLock = tLock.mul(currentRate);
_rOwned[sender] = _rOwned[sender].sub(rAmount);
if(inSwapAndLiquify) {
_tOwned[recipient] = _tOwned[recipient].add(tAmount);
_rOwned[recipient] = _rOwned[recipient].add(rAmount);
emit Transfer(sender, recipient, tAmount);
} else {
_tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
_rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
_rOwned[address(this)] = _rOwned[address(this)].add(rLock);
uint256 rBurn = tBurn.mul(currentRate);
_reflectFee(rFee, rBurn, tFee, tBurn);
emit Transfer(sender, address(this), tLock);
emit Transfer(sender, recipient, tTransferAmount);
}
emit Redistributed(sender, 2, rAmount, tAmount);
}
function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
uint256 currentRate = _getRate();
(uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLock, uint256 tBurn) = _getValues(tAmount);
uint256 rLock = tLock.mul(currentRate);
_tOwned[sender] = _tOwned[sender].sub(tAmount);
_rOwned[sender] = _rOwned[sender].sub(rAmount);
if(inSwapAndLiquify) {
_rOwned[recipient] = _rOwned[recipient].add(rAmount);
emit Transfer(sender, recipient, tAmount);
} else {
_rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
_rOwned[address(this)] = _rOwned[address(this)].add(rLock);
uint256 rBurn = tBurn.mul(currentRate);
_reflectFee(rFee, rBurn, tFee, tBurn);
emit Transfer(sender, address(this), tLock);
emit Transfer(sender, recipient, tTransferAmount);
}
emit Redistributed(sender, 3, rAmount, tAmount);
}
function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
uint256 currentRate = _getRate();
(uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLock, uint256 tBurn) = _getValues(tAmount);
uint256 rLock = tLock.mul(currentRate);
_tOwned[sender] = _tOwned[sender].sub(tAmount);
_rOwned[sender] = _rOwned[sender].sub(rAmount);
if(inSwapAndLiquify) {
_tOwned[recipient] = _tOwned[recipient].add(tAmount);
_rOwned[recipient] = _rOwned[recipient].add(rAmount);
emit Transfer(sender, recipient, tAmount);
}
else {
_tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
_rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
_rOwned[address(this)] = _rOwned[address(this)].add(rLock);
uint256 rBurn = tBurn.mul(currentRate);
_reflectFee(rFee, rBurn, tFee, tBurn);
emit Transfer(sender, address(this), tLock);
emit Transfer(sender, recipient, tTransferAmount);
}
emit Redistributed(sender, 4, rAmount, tAmount);
}
function _reflectFee(uint256 rFee, uint256 rBurn, uint256 tFee, uint256 tBurn) private {
uint256 rDev = rFee.mul(_devFee).div(_taxFee);
uint256 tDev = tFee.mul(_devFee).div(_taxFee);
_rOwned[devAddr] = _rOwned[devAddr].add(rDev);
_rTotal = _rTotal.sub(rFee).sub(rBurn).add(rDev);
_tFeeTotal = _tFeeTotal.add(tFee).sub(tDev);
_tBurnTotal = _tBurnTotal.add(tBurn);
_tTotal = _tTotal.sub(tBurn);
}
function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) {
(uint256 tTransferAmount, uint256 tFee, uint256 tLock, uint256 tBurn) = _getTValues(tAmount);
(uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount);
return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLock, tBurn);
}
function _getTValues(uint256 tAmount) private view returns(uint256, uint256, uint256, uint256) {
uint256 tFee = tAmount.mul(_taxFee).div(10**(_feeDecimals + 2));
uint256 tLockFee = tAmount.mul(_lockFee).div(10**(_feeDecimals + 2));
uint256 tBurn = tAmount.mul(_burnFee).div(10**(_feeDecimals + 2));
uint256 tTransferAmount = tAmount.sub(tFee).sub(tLockFee).sub(tBurn);
return (tTransferAmount, tFee, tLockFee, tBurn);
}
function _getRValues(uint256 tAmount) private view returns (uint256, uint256, uint256) {
(, uint256 tFee, uint256 tLock, uint256 tBurn) = _getTValues(tAmount);
uint256 currentRate = _getRate();
uint256 rAmount = tAmount.mul(currentRate);
uint256 rFee = tFee.mul(currentRate);
uint256 rTransferAmount = rAmount.sub(rFee).sub(tLock.mul(currentRate)).sub(tBurn.mul(currentRate));
return (rAmount, rTransferAmount, rFee);
}
function _getRate() public view returns(uint256) {
uint256 rSupply = _rTotal;
uint256 tSupply = _tTotal;
for (uint256 i = 0; i < _excluded.length; i++) {
if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return _rTotal.div(_tTotal);
rSupply = rSupply.sub(_rOwned[_excluded[i]]);
tSupply = tSupply.sub(_tOwned[_excluded[i]]);
}
if (rSupply < _rTotal.div(_tTotal)) return _rTotal.div(_tTotal);
return rSupply.div(tSupply);
}
// CYCLER
function _setDefaults() internal {
_feeInterval = 1; // by the time it gets to 6, itll restart and go back to 1
_taxFee = _taxFeeDefault;
_burnFee = _burnFeeDefault;
_devFee = _devFeeDefault;
_lockFee = _lockFeeDefault;
}
function _toggleIsCycling() external onlyOwner() {
// whether we turn cycling on or off we make sure we start over
_isCycling = !_isCycling;
_setDefaults();
}
function _toggleTaxFeeCycling() external onlyOwner(){
// we only switch this when we are turning it from on to off
if(taxFeeIsCycling){
_taxFee = _taxFeeDefault;
}
taxFeeIsCycling = !taxFeeIsCycling;
}
function _toggleBurnFeeCycling() external onlyOwner(){
if(burnFeeIsCycling){
_burnFee = _burnFeeDefault;
}
burnFeeIsCycling = !burnFeeIsCycling;
}
function _toggleDevFeeCycling() external onlyOwner(){
if(devFeeIsCycling){
_devFee = _devFeeDefault;
}
devFeeIsCycling = !devFeeIsCycling;
}
function _toggleLockFeeCycling() external onlyOwner(){
if(lockFeeIsCycling){
_lockFee = _lockFeeDefault;
}
lockFeeIsCycling = !lockFeeIsCycling;
}
function _cycleFees() internal {
// we assume that ts is new since this was called
_timeSinceLastFeeUpdate = block.timestamp;
// we start over after the interval
if(_feeInterval > _cycleLimit){
_setDefaults();
} else {
// sanity check
require(_feeInterval > 0, "feeInterval should not be 0");
_feeInterval = _feeInterval.add(1);
if (taxFeeIsCycling){
_taxFee = _taxFeeDefault.mul(_feeInterval);
}
if (burnFeeIsCycling){
_burnFee = _burnFeeDefault.mul(_feeInterval);
}
if (devFeeIsCycling){
_devFee = _devFeeDefault.mul(_feeInterval);
}
if (lockFeeIsCycling){
_lockFee = _lockFeeDefault.mul(_feeInterval);
}
}
}
function _getMaxTotalTax(uint256 cl, uint256 td, uint256 bd, uint256 dd, uint256 ld) public pure returns (uint256){
return cl.mul(td).add(cl.mul(bd)).add(cl.mul(dd)).add(cl.mul(ld));
}
function getCurrentCycle() public view returns (uint256){
return _feeInterval;
}
function getCurrentTotalTax() public view returns(uint256){
return (_taxFee).add(_devFee).add(_lockFee).add(_burnFee);
}
function getTaxFee() public view returns(uint256) {
return _taxFee;
}
function getLockFee() public view returns(uint256) {
return _lockFee;
}
function getDevFee() public view returns(uint256) {
return _devFee;
}
function getBurnFee() public view returns(uint256) {
return _burnFee;
}
function getCycleLimit() public view returns(uint256) {
return _cycleLimit;
}
function getIsCycling() public view returns(bool) {
return _isCycling;
}
function getDefaults() public view returns(uint256,uint256,uint256,uint256,uint256,uint256) {
return (_cycleLimit,_taxFeeDefault, _burnFeeDefault, _devFeeDefault, _lockFeeDefault, _MAX_TAX_LIMIT);
}
// to save on gas + contract size we will set all defaults at once
function setNewDefaults(uint256 cycleLimit, uint256 txfd, uint256 bufd, uint256 defd, uint256 lofd)
external
onlyOwner(){
require(_getMaxTotalTax(cycleLimit, txfd, bufd, defd, lofd) <= _MAX_TAX_LIMIT, "cycledFees > _MAX_TAX_LIMIT");
require(defd <= _taxFeeDefault, 'devFee > taxFee');
require(bufd <= _taxFeeDefault, 'burnFee > taxFee');
require(cycleLimit > 0, "!=0");
require(txfd > 0 && txfd.mul(cycleLimit) <= _MAX_TAX_LIMIT, 'tax < 0');
_cycleLimit = cycleLimit;
_taxFeeDefault = txfd;
_burnFeeDefault = bufd;
_devFeeDefault = defd;
_lockFeeDefault = lofd;
_setDefaults();
emit DefaultFeesUpdated(cycleLimit, txfd, bufd, defd, lofd);
}
// this sets how often intervals will occur within the specified cycle limit
// ie. if this is set to 3600, then we will go through the cycle every hour until limit
function _setTimeCheckInterval(uint256 timeCheckInterval) external onlyOwner() {
require(timeCheckInterval >= 1, "timeCheckInterval must be greater or equal to 1");
_timeCheckInterval = timeCheckInterval;
}
function setDevAddr(address _devAddr) external {
require(_msgSender() == devAddr , '!dev');
devAddr = _devAddr;
}
// FRACTALIZER
function getCurrentPoolAddress() public view returns(address) {
return currentPoolAddress;
}
function getCurrentPairTokenAddress() public view returns(address) {
return currentPairTokenAddress;
}
function getLiquidityRemoveFee() public view returns(uint256) {
return _liquidityRemoveFee;
}
function getFractalizeCallerFee() public view returns(uint256) {
return _fractalizeCallerFee;
}
function getMinTokenForFractalize() public view returns(uint256) {
return _minTokenForFractalize;
}
function getLastFractalize() public view returns(uint256) {
return _lastFractalize;
}
function getFractalizeInterval() public view returns(uint256) {
return _fractalizeInterval;
}
function _setFeeDecimals(uint256 feeDecimals) external onlyOwner() {
require(feeDecimals >= 0 && feeDecimals <= 2, 'fee decimals should be in 0 - 2');
_feeDecimals = feeDecimals;
emit FeeDecimalsUpdated(feeDecimals);
}
function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
require(maxTxAmount >= 500000e9 , 'maxTxAmount < 500000e9');
_maxTxAmount = maxTxAmount;
emit MaxTxAmountUpdated(maxTxAmount);
}
function _setMinTokensBeforeSwap(uint256 minTokensBeforeSwap) external onlyOwner() {
require(minTokensBeforeSwap >= 50e9 && minTokensBeforeSwap <= 25000e9 , 'minTokenBeforeSwap should be in 50e9 - 25000e9');
require(minTokensBeforeSwap > _autoSwapCallerFee , 'minTokenBeforeSwap < autoSwapCallerFee');
_minTokensBeforeSwap = minTokensBeforeSwap;
emit MinTokensBeforeSwapUpdated(minTokensBeforeSwap);
}
function _setAutoSwapCallerFee(uint256 autoSwapCallerFee) external onlyOwner() {
require(autoSwapCallerFee >= 1e9, 'autoSwapCallerFee < 1e9');
_autoSwapCallerFee = autoSwapCallerFee;
emit AutoSwapCallerFeeUpdated(autoSwapCallerFee);
}
function _setMinInterestForReward(uint256 minInterestForReward) external onlyOwner() {
_minInterestForReward = minInterestForReward;
emit MinInterestForRewardUpdated(minInterestForReward);
}
function _setLiquidityRemoveFee(uint256 liquidityRemoveFee) external onlyOwner() {
require(liquidityRemoveFee >= 1 && liquidityRemoveFee <= 10 , 'lf < 1, lf > 15');
_liquidityRemoveFee = liquidityRemoveFee;
emit LiquidityRemoveFeeUpdated(liquidityRemoveFee);
}
function _setFractalizeCallerFee(uint256 fractalizeCallerFee) external onlyOwner() {
require(fractalizeCallerFee >= 1 && fractalizeCallerFee <= 15 , 'fc < 1, > 15');
_fractalizeCallerFee = fractalizeCallerFee;
emit FractalizeCallerFeeUpdated(fractalizeCallerFee);
}
function _setMinTokenForFractalize(uint256 minTokenForFractalize) external onlyOwner() {
_minTokenForFractalize = minTokenForFractalize;
emit MinTokenForFractalizeUpdated(minTokenForFractalize);
}
function _setFractalizeInterval(uint256 fractalizeInterval) external onlyOwner() {
_fractalizeInterval = fractalizeInterval;
emit FractalizeIntervalUpdated(fractalizeInterval);
}
function updateSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
swapAndLiquifyEnabled = _enabled;
emit SwapAndLiquifyEnabledUpdated(_enabled);
}
function _updateWhitelist(address poolAddress, address pairTokenAddress) public onlyOwner() {
require(poolAddress != address(0), "Pool address is zero.");
require(pairTokenAddress != address(0), "Pair token address is zero.");
require(pairTokenAddress != address(this), "Pair token address self address.");
require(pairTokenAddress != currentPairTokenAddress, "Pair token address is same as current one.");
currentPoolAddress = poolAddress;
currentPairTokenAddress = pairTokenAddress;
emit WhitelistUpdated(pairTokenAddress);
}
function _enableTrading() external onlyOwner() {
tradingEnabled = true;
TradingEnabled();
}
}
{
"compilationTarget": {
"FRACTAL.sol": "FRACTAL"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 40
},
"remappings": []
}
[{"inputs":[{"internalType":"contract IUniswapV2Router02","name":"uniswapV2Router","type":"address"},{"internalType":"uint256","name":"initialRewardLockAmount","type":"uint256"},{"internalType":"address","name":"dev","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"autoSwapCallerFee","type":"uint256"}],"name":"AutoSwapCallerFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"to","type":"bool"}],"name":"BotThrottlerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"cycleLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"taxFDefault","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"burnFDefault","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"devFDefault","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lockFDefault","type":"uint256"}],"name":"DefaultFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"taxFeeDecimals","type":"uint256"}],"name":"FeeDecimalsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rebalanceCallerFee","type":"uint256"}],"name":"FractalizeCallerFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rebalanceInterval","type":"uint256"}],"name":"FractalizeIntervalUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"possibleBot","type":"address"},{"indexed":false,"internalType":"uint256","name":"count","type":"uint256"}],"name":"FrontRunnerStrike","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"liquidityRemoveFee","type":"uint256"}],"name":"LiquidityRemoveFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minInterestForReward","type":"uint256"}],"name":"MinInterestForRewardUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minRebalanceAmount","type":"uint256"}],"name":"MinTokenForFractalizeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":false,"internalType":"address","name":"bot","type":"address"}],"name":"PunishedBot","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenBurnt","type":"uint256"}],"name":"Rebalance","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"t","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"rAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"Redistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pairTokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"pairTokenReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pairTokenAddress","type":"address"}],"name":"WhitelistUpdated","type":"event"},{"inputs":[],"name":"_enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_feeDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_frontRunGuard","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"cl","type":"uint256"},{"internalType":"uint256","name":"td","type":"uint256"},{"internalType":"uint256","name":"bd","type":"uint256"},{"internalType":"uint256","name":"dd","type":"uint256"},{"internalType":"uint256","name":"ld","type":"uint256"}],"name":"_getMaxTotalTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"_getRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_initialRewardLockAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isBotThrottling","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lastlastTransferWasABuy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_minInterestForReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_minTokensBeforeSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_rewardWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"autoSwapCallerFee","type":"uint256"}],"name":"_setAutoSwapCallerFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"feeDecimals","type":"uint256"}],"name":"_setFeeDecimals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fractalizeCallerFee","type":"uint256"}],"name":"_setFractalizeCallerFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fractalizeInterval","type":"uint256"}],"name":"_setFractalizeInterval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityRemoveFee","type":"uint256"}],"name":"_setLiquidityRemoveFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minInterestForReward","type":"uint256"}],"name":"_setMinInterestForReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minTokenForFractalize","type":"uint256"}],"name":"_setMinTokenForFractalize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"_setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timeCheckInterval","type":"uint256"}],"name":"_setTimeCheckInterval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_severePunishment","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tBurnTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tFeeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_toggleBurnFeeCycling","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_toggleDevFeeCycling","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_toggleFrontRunGuard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_toggleGoEasyOnThem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_toggleIsCycling","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_toggleLockFeeCycling","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_toggleSeverePunishment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_toggleTaxFeeCycling","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_txCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_txLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapETHPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"poolAddress","type":"address"},{"internalType":"address","name":"pairTokenAddress","type":"address"}],"name":"_updateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balancer","outputs":[{"internalType":"contract Balancer","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFeeIsCycling","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFeeIsCycling","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fractalize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentCycle","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentPairTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentPoolAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentTotalTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCycleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDefaults","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFractalizeCallerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFractalizeInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getIsCycling","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastFractalize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLiquidityRemoveFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLockFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinTokenForFractalize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockFeeIsCycling","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"reflect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setBuySizeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_devAddr","type":"address"}],"name":"setDevAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cycleLimit","type":"uint256"},{"internalType":"uint256","name":"txfd","type":"uint256"},{"internalType":"uint256","name":"bufd","type":"uint256"},{"internalType":"uint256","name":"defd","type":"uint256"},{"internalType":"uint256","name":"lofd","type":"uint256"}],"name":"setNewDefaults","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"txLimit","type":"uint256"}],"name":"setNthTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapper","outputs":[{"internalType":"contract Swapper","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxFeeIsCycling","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleBotThrottling","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"updateSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]