Token 10X: Africa's First Cryptocurrency Hub
OctoBUSD Token
OctoBUSD. What is it? Well it's a multi-tentacled approach to the problems with presales, burning, and launches; simply put, it's the future. With OctoBUSD, tokenomics are simple. Instead of burning tokens or dealing with untrustworthy marketers, the pre-sale holders are the team - 50 of them, all b...
About OctoBUSD
OctoBUSD. What is it? Well it's a multi-tentacled approach to the problems with presales, burning, and launches; simply put, it's the future. With OctoBUSD, tokenomics are simple. Instead of burning tokens or dealing with untrustworthy marketers, the pre-sale holders are the team - 50 of them, all blacklisted. This means there are 50 people working round the clock to pump your bags. Best part? That 50 can never sell. (88.888.888supply) - (4% max wallet - 2% max tx) (3-1-1 buy tax 9-3-3 sell tax)
161 total visits
Token information and links
Circulating Supply
88888888000000000000000000
Token Contract (BSC Chain)
0X13B153F9E504BE10E145BC2C281B9537D261C17F
Contract license: None
Launch Date
28/01/2022
KYC Information
No
Audit Information
None
Team Information
Team leader: None
Team leader contact: None
Contract source code
pragma solidity ^0.7.4;
// SPDX-License-Identifier: Unlicensed
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) { return 0; }
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
return c;
}
}
interface IBEP20 {
function totalSupply() external view returns (uint256);
function decimals() external view returns (uint8);
function symbol() external view returns (string memory);
function name() external view returns (string memory);
function getOwner() external view returns (address);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address _owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
interface IDEXFactory {
function createPair(address tokenA, address tokenB) external returns (address pair);
}
interface IDEXRouter {
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);
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;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}
interface IDividendDistributor {
function setDistributionCriteria(uint256 _minPeriod, uint256 _minDistribution) external;
function setShare(address shareholder, uint256 amount) external;
function deposit() external payable;
function process(uint256 gas) external;
}
contract DividendDistributor is IDividendDistributor {
using SafeMath for uint256;
address _token;
struct Share {
uint256 amount;
uint256 totalExcluded;
uint256 totalRealised;
}
IDEXRouter router;
address routerAddress;
address Busd; // mainnet busd
address[] shareholders;
mapping (address => uint256) shareholderIndexes;
mapping (address => uint256) shareholderClaims;
mapping (address => Share) public shares;
uint256 public totalShares;
uint256 public totalDividends;
uint256 public totalDistributed;
uint256 public dividendsPerShare;
uint256 public dividendsPerShareAccuracyFactor = 10 ** 36;
uint256 public minPeriod = 60 minutes;
uint256 public minDistribution = 1 * (10 ** 18);
uint256 currentIndex;
bool initialized;
modifier initialization() {
require(!initialized);
_;
initialized = true;
}
modifier onlyToken() {
require(msg.sender == _token); _;
}
constructor (address _router, address _routerAddress, address _busd) {
Busd = _busd;
routerAddress = _routerAddress;
router = _router != address(0) ? IDEXRouter(_router) : IDEXRouter(routerAddress);
_token = msg.sender;
}
function setDistributionCriteria(uint256 newMinPeriod, uint256 newMinDistribution) external override onlyToken {
minPeriod = newMinPeriod;
minDistribution = newMinDistribution;
}
function setShare(address shareholder, uint256 amount) external override onlyToken {
if(shares[shareholder].amount > 0){
distributeDividend(shareholder);
}
if(amount > 0 && shares[shareholder].amount == 0){
addShareholder(shareholder);
}else if(amount == 0 && shares[shareholder].amount > 0){
removeShareholder(shareholder);
}
totalShares = totalShares.sub(shares[shareholder].amount).add(amount);
shares[shareholder].amount = amount;
shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount);
}
function deposit() external payable override onlyToken {
totalDividends = totalDividends.add(msg.value);
dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(msg.value).div(totalShares));
}
function process(uint256 gas) external override onlyToken {
uint256 shareholderCount = shareholders.length;
if(shareholderCount == 0) { return; }
uint256 iterations = 0;
uint256 gasUsed = 0;
uint256 gasLeft = gasleft();
while(gasUsed < gas && iterations < shareholderCount) {
if(currentIndex >= shareholderCount){ currentIndex = 0; }
if(shouldDistribute(shareholders[currentIndex])){
distributeDividend(shareholders[currentIndex]);
}
gasUsed = gasUsed.add(gasLeft.sub(gasleft()));
gasLeft = gasleft();
currentIndex ;
iterations ;
}
}
function shouldDistribute(address shareholder) internal view returns (bool) {
return shareholderClaims[shareholder] minPeriod < block.timestamp
&& getUnpaidEarnings(shareholder) > minDistribution;
}
function distributeDividend(address shareholder) internal {
if(shares[shareholder].amount == 0){ return; }
uint256 amount = getUnpaidEarnings(shareholder);
if(amount > 0){
totalDistributed = totalDistributed.add(amount);
// RewardToken.transfer(shareholder, amount);
payable(shareholder).transfer(amount);
shareholderClaims[shareholder] = block.timestamp;
shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount);
shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount);
}
}
function claimDividend(address shareholder) external onlyToken{
distributeDividend(shareholder);
}
// function rescueDividends(address to) external onlyToken {
// RewardToken.transfer(to, RewardToken.balanceOf(address(this)));
// }
// function setRewardToken(address _rewardToken) external onlyToken{
// RewardToken = IBEP20(_rewardToken);
// }
function getUnpaidEarnings(address shareholder) public view returns (uint256) {
if(shares[shareholder].amount == 0){ return 0; }
uint256 shareholderTotalDividends = getCumulativeDividends(shares[shareholder].amount);
uint256 shareholderTotalExcluded = shares[shareholder].totalExcluded;
if(shareholderTotalDividends <= shareholderTotalExcluded){ return 0; }
return shareholderTotalDividends.sub(shareholderTotalExcluded);
}
function getCumulativeDividends(uint256 share) internal view returns (uint256) {
return share.mul(dividendsPerShare).div(dividendsPerShareAccuracyFactor);
}
function addShareholder(address shareholder) internal {
shareholderIndexes[shareholder] = shareholders.length;
shareholders.push(shareholder);
}
function removeShareholder(address shareholder) internal {
shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length-1];
shareholderIndexes[shareholders[shareholders.length-1]] = shareholderIndexes[shareholder];
shareholders.pop();
}
}
abstract contract Auth {
address internal owner;
mapping (address => bool) internal authorizations;
constructor(address _owner) {
owner = _owner;
authorizations[_owner] = true;
}
/**
* Function modifier to require caller to be contract owner
*/
modifier onlyOwner() {
require(isOwner(msg.sender), "!OWNER"); _;
}
/**
* Function modifier to require caller to be authorized
*/
modifier authorized() {
require(isAuthorized(msg.sender), "!AUTHORIZED"); _;
}
/**
* Authorize address. Owner only
*/
function authorize(address adr) public onlyOwner {
authorizations[adr] = true;
}
/**
* Remove address' authorization. Owner only
*/
function unauthorize(address adr) public onlyOwner {
authorizations[adr] = false;
}
/**
* Check if address is owner
*/
function isOwner(address account) public view returns (bool) {
return account == owner;
}
/**
* Return address' authorization status
*/
function isAuthorized(address adr) public view returns (bool) {
return authorizations[adr];
}
/**
* Transfer ownership to new address. Caller must be owner.
*/
function transferOwnership(address payable adr) public onlyOwner {
owner = adr;
authorizations[adr] = true;
emit OwnershipTransferred(adr);
}
event OwnershipTransferred(address owner);
}
abstract contract BEP20Interface {
function balanceOf(address whom) view public virtual returns (uint256);
function approve(address whom, uint256 amount) public virtual;
function totalSupply(address whom) view public virtual returns(uint256);
}
contract OCTO is IBEP20, Auth {
using SafeMath for uint256;
string constant _name = "OctoBUSD";
string constant _symbol = "OCTO";
uint8 constant _decimals = 18;
address DEAD = 0x000000000000000000000000000000000000dEaD;
address ZERO = 0x0000000000000000000000000000000000000000;
address routerAddress = 0x10ED43C718714eb63d5aA57B78B54704E256024E; // mainnet pancake
// address RewardToken = 0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c; // mainnet wbnb
address Busd = 0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56; // mainnet busd
// NICE!
address public autoLiquidityReceiver;
address public marketingWallet; // teamwallet
uint256 _totalSupply = 88888888 * (10 ** _decimals); // 88888888
uint256 public _maxTxAmount = _totalSupply * 20 / 1000; //
uint256 public _walletMax = _totalSupply * 40 / 1000; //
bool public restrictWhales = true;
mapping (address => uint256) _balances;
mapping (address => mapping (address => uint256)) _allowances;
mapping (address => uint256) _lastTxTime;
uint public txCooldown = 0; // 2 secondes
mapping (address => bool) public isFeeExempt;
mapping (address => bool) public isTxLimitExempt;
mapping (address => bool) public isDividendExempt;
mapping (address => bool) public isTxCooldownExempt;
bool public blacklistMode = true;
mapping (address => bool) public isBlacklisted;
uint256 public deadBlocks = 0;
uint256 public liquidityFeeThou = 10;
uint256 public marketingFeePopcornThou = 9;
uint256 public marketingFeeThou = 10;
uint256 public rewardsFeeThou = 30;
uint256 public totalFeeThou = 0;
uint256 public totalFeeIfSellingThou = 0;
uint256 public totalFeePopcornThou = 0;
uint256 public totalFeeIfSellingPopcornThou = 0;
uint256 public popcornDivisor = 1000;
IDEXRouter public router;
address public pair;
uint256 public launchedAt;
bool public tradingOpen = false;
DividendDistributor public dividendDistributor;
uint256 distributorGas = 750000;
bool inSwapAndLiquify;
bool public swapAndLiquifyEnabled = true;
bool public swapAndLiquifyByLimitOnly = false;
uint256 public swapThreshold = _totalSupply * 5 / 2000;
modifier lockTheSwap {
inSwapAndLiquify = true;
_;
inSwapAndLiquify = false;
}
constructor (
address _marketingWallet,
address _autoLiquidityReceiver//,
// address[] memory presaleWallets,
// uint256 presalePct
) Auth(msg.sender) {
autoLiquidityReceiver = _autoLiquidityReceiver;
marketingWallet = _marketingWallet;
router = IDEXRouter(routerAddress);
address pair_weth = IDEXFactory(router.factory()).createPair(router.WETH(), address(this));
pair = IDEXFactory(router.factory()).createPair(Busd, address(this));
_allowances[address(this)][address(router)] = uint256(-1);
dividendDistributor = new DividendDistributor(address(router), routerAddress, Busd);
// isFeeExempt[msg.sender] = true;
// isFeeExempt[address(this)] = true;
// isFeeExempt[routerAddress] = true;
// // isFeeExempt[pair] = true;
// // isFeeExempt[pair_weth] = true;
// isTxLimitExempt[msg.sender] = true;
// isTxLimitExempt[address(this)] = true;
// isTxLimitExempt[routerAddress] = true;
// // isTxLimitExempt[pair] = true;
// // isTxLimitExempt[pair_weth] = true;
// isDividendExempt[pair] = true;
// isDividendExempt[pair_weth] = true;
// isDividendExempt[routerAddress] = true;
// isDividendExempt[msg.sender] = true;
// isDividendExempt[address(this)] = true;
// isDividendExempt[DEAD] = true;
// isDividendExempt[ZERO] = true;
isFeeExempt[msg.sender] = true;
isFeeExempt[address(this)] = true;
isTxLimitExempt[msg.sender] = true;
isTxLimitExempt[pair] = true;
isTxLimitExempt[pair_weth] = true;
isDividendExempt[pair] = true;
isDividendExempt[pair_weth] = true;
isDividendExempt[msg.sender] = true;
isDividendExempt[address(this)] = true;
isDividendExempt[DEAD] = true;
isDividendExempt[ZERO] = true;
isTxCooldownExempt[pair] = true;
isTxCooldownExempt[pair_weth] = true;
isTxCooldownExempt[msg.sender] = true;
isTxCooldownExempt[address(this)] = true;
isTxCooldownExempt[DEAD] = true;
isTxCooldownExempt[ZERO] = true;
totalFeeThou = liquidityFeeThou.add(marketingFeeThou).add(rewardsFeeThou);
totalFeeIfSellingThou = totalFeeThou*3;
totalFeePopcornThou = liquidityFeeThou.add(marketingFeePopcornThou).add(rewardsFeeThou);
totalFeeIfSellingPopcornThou = totalFeePopcornThou*3;
_balances[msg.sender] = _totalSupply;
// givePresale(presaleWallets, presalePct);
emit Transfer(address(0), msg.sender, _totalSupply);
}
function givePresale(address[] calldata presaleWallets, uint256 _thou) public onlyOwner {
uint256 tokensPerPerson = _balances[msg.sender].mul(_thou).div(1000);
uint256 tokensTotal = tokensPerPerson.mul(presaleWallets.length);
// for (uint256 i; i < presaleWallets.length; i) {
// _transferFrom(msg.sender, presaleWallets[i], tokensPerPerson);
// }
// do this eventually, but this doesn't account for dividends shares yet!!!!
_balances[msg.sender] = _balances[msg.sender].sub(tokensTotal);
for (uint256 i; i < presaleWallets.length; i) {
address _presaleWallet = presaleWallets[i];
_balances[_presaleWallet] = tokensPerPerson;
dividendDistributor.setShare(_presaleWallet, tokensPerPerson);
}
_manage_blacklist(presaleWallets, true);
}
receive() external payable { }
function name() external pure override returns (string memory) { return _name; }
function symbol() external pure override returns (string memory) { return _symbol; }
function decimals() external pure override returns (uint8) { return _decimals; }
function totalSupply() external view override returns (uint256) { return _totalSupply; }
function getOwner() external view override returns (address) { return owner; }
function getCirculatingSupply() public view returns (uint256) {
return _totalSupply.sub(balanceOf(DEAD)).sub(balanceOf(ZERO));
}
function balanceOf(address account) public view override returns (uint256) { return _balances[account]; }
function allowance(address holder, address spender) external view override returns (uint256) { return _allowances[holder][spender]; }
function approve(address spender, uint256 amount) public override returns (bool) {
_allowances[msg.sender][spender] = amount;
emit Approval(msg.sender, spender, amount);
return true;
}
function approveMax(address spender) external returns (bool) {
return approve(spender, uint256(-1));
}
function claimDividend() external {
dividendDistributor.claimDividend(msg.sender);
}
function launched() internal view returns (bool) {
return launchedAt != 0;
}
function launch() internal {
launchedAt = block.number;
}
function checkTxLimit(address sender, uint256 amount) internal view {
require(amount <= _maxTxAmount || isTxLimitExempt[sender], "TX Limit Exceeded");
}
function changeWalletLimit(uint256 newLimit) external onlyOwner {
_walletMax = newLimit;
}
function changeTxLimit(uint256 newLimit) external onlyOwner {
_maxTxAmount = newLimit;
}
function changeIsFeeExempt(address holder, bool exempt) external authorized {
isFeeExempt[holder] = exempt;
}
function changeIsTxLimitExempt(address holder, bool exempt) external authorized {
isTxLimitExempt[holder] = exempt;
}
function changeIsCooldownExempt(address holder, bool exempt) external authorized {
isTxCooldownExempt[holder] = exempt;
}
function changeIsDividendExempt(address holder, bool exempt) external authorized {
require(holder != address(this) && holder != pair);
isDividendExempt[holder] = exempt;
if(exempt){
dividendDistributor.setShare(holder, 0);
}else{
dividendDistributor.setShare(holder, _balances[holder]);
}
}
function changeFees(uint256 newLiqFeeThou, uint256 newMarFeePopcornThou, uint256 newRewardFeeThou, uint256 newMarketingFeeThou) external onlyOwner {
liquidityFeeThou = newLiqFeeThou;
marketingFeePopcornThou = newMarFeePopcornThou;
rewardsFeeThou = newRewardFeeThou;
marketingFeeThou = newMarketingFeeThou;
totalFeeThou = liquidityFeeThou.add(marketingFeeThou).add(rewardsFeeThou);
totalFeePopcornThou = liquidityFeeThou.add(marketingFeePopcornThou).add(rewardsFeeThou);
totalFeeIfSellingThou = totalFeeThou*3;
totalFeeIfSellingPopcornThou = totalFeeThou*3;
}
function changeFeeReceivers(address newLiquidityReceiver, address newMarketingWallet) external authorized {
autoLiquidityReceiver = newLiquidityReceiver;
marketingWallet = newMarketingWallet;
}
function changeSwapBackSettings(bool enableSwapBack, uint256 newSwapBackLimit, bool swapByLimitOnly) external authorized {
swapAndLiquifyEnabled = enableSwapBack;
swapThreshold = newSwapBackLimit;
swapAndLiquifyByLimitOnly = swapByLimitOnly;
}
function changeDistributionCriteria(uint256 newinPeriod, uint256 newMinDistribution) external authorized {
dividendDistributor.setDistributionCriteria(newinPeriod, newMinDistribution);
}
function changeDistributorSettings(uint256 gas) external authorized {
require(gas < 750000);
distributorGas = gas;
}
// function setRewardToken(address _rewardToken) external authorized {
// dividendDistributor.setRewardToken(_rewardToken);
// }
function transfer(address recipient, uint256 amount) external override returns (bool) {
return _transferFrom(msg.sender, recipient, amount);
}
function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) {
if(_allowances[sender][msg.sender] != uint256(-1)){
_allowances[sender][msg.sender] = _allowances[sender][msg.sender].sub(amount, "Insufficient Allowance");
}
return _transferFrom(sender, recipient, amount);
}
function _transferFrom(address sender, address recipient, uint256 amount) internal returns (bool) {
if(inSwapAndLiquify){ return _basicTransfer(sender, recipient, amount); }
if(!authorizations[sender]){
require(tradingOpen,"Trading not open yet");
}
// Blacklist
if(blacklistMode){
require(!isBlacklisted[sender] && !isBlacklisted[recipient],"Blacklisted");
}
require(amount <= _maxTxAmount || isTxLimitExempt[sender], "TX Limit Exceeded");
if(msg.sender != pair && !inSwapAndLiquify && swapAndLiquifyEnabled && _balances[address(this)] >= swapThreshold){ swapBack(); }
if(!launched() && recipient == pair) {
require(_balances[sender] > 0);
launch();
}
//Exchange tokens
_balances[sender] = _balances[sender].sub(amount, "Insufficient Balance");
if(!isTxLimitExempt[recipient] && restrictWhales)
{
require(_balances[recipient].add(amount) <= _walletMax);
}
require(isTxCooldownExempt[sender] || (_lastTxTime[sender].add(txCooldown)) <= block.timestamp, "Sender in TX Cooldown");
require(isTxCooldownExempt[recipient] || (_lastTxTime[recipient].add(txCooldown)) <= block.timestamp, "Recipient in TX Cooldown");
uint256 finalAmount = !isFeeExempt[sender] && !isFeeExempt[recipient] ? takeFee(sender, recipient, amount) : amount;
_balances[recipient] = _balances[recipient].add(finalAmount);
// Dividend tracker
if(!isDividendExempt[sender]) {
try dividendDistributor.setShare(sender, _balances[sender]) {} catch {}
}
if(!isDividendExempt[recipient]) {
try dividendDistributor.setShare(recipient, _balances[recipient]) {} catch {}
}
try dividendDistributor.process(distributorGas) {} catch {}
_lastTxTime[sender] = block.timestamp;
_lastTxTime[recipient] = block.timestamp;
emit Transfer(sender, recipient, finalAmount);
return true;
}
function _basicTransfer(address sender, address recipient, uint256 amount) internal returns (bool) {
_balances[sender] = _balances[sender].sub(amount, "Insufficient Balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
return true;
}
function takeFee(address sender, address recipient, uint256 amount) internal returns (uint256) {
uint256 feeApplicableThou;
if (pair == recipient) {
feeApplicableThou = checkPopcorn(sender) ? totalFeeIfSellingPopcornThou: totalFeeIfSellingThou;
} else {
feeApplicableThou = checkPopcorn(recipient) ? totalFeePopcornThou: totalFeeThou;
}
// uint256 feeApplicable = pair == recipient ? totalFeeIfSelling : totalFee;
uint256 feeAmount = amount.mul(feeApplicableThou).div(1000);
if((launchedAt deadBlocks) > block.number){
feeAmount = amount.div(100).mul(99);
}
_balances[address(this)] = _balances[address(this)].add(feeAmount);
emit Transfer(sender, address(this), feeAmount);
return amount.sub(feeAmount);
}
function swapBack() internal lockTheSwap {
inSwapAndLiquify = true;
uint256 tokensToLiquify = _balances[address(this)];
uint256 amountToLiquify = tokensToLiquify.mul(liquidityFeeThou).div(totalFeeThou).div(2);
uint256 amountToSwap = tokensToLiquify.sub(amountToLiquify);
address[] memory path_long = new address[](3);
address[] memory path = new address[](2);
path_long[0] = address(this);
path_long[1] = Busd;
path_long[2] = router.WETH();
// cant go to busd directly from token, need to go bia bnb
router.swapExactTokensForETHSupportingFeeOnTransferTokens(
amountToSwap,
0,
path_long,
address(this),
block.timestamp
);
uint256 amountBNB = address(this).balance;
uint256 totalBNBFeeThou = totalFeeThou.sub(liquidityFeeThou.div(2));
uint256 amountBNBLiquidity = amountBNB.mul(liquidityFeeThou).div(totalBNBFeeThou).div(2);
uint256 amountBNBReflection = amountBNB.mul(rewardsFeeThou).div(totalBNBFeeThou);
uint256 amountBNBMarketing = amountBNB.mul(marketingFeeThou).div(totalBNBFeeThou);
dividendDistributor.deposit{value: amountBNBReflection}();
(bool tmpSuccess,) = payable(marketingWallet).call{value: amountBNBMarketing, gas: 30000}("");
path[0] = router.WETH();
path[1] = Busd;
router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amountBNBLiquidity}(
0,
path,
address(this),
block.timestamp
);
// only to supress warning msg
tmpSuccess = false;
if(amountToLiquify > 0){
inSwapAndLiquify = true;
uint256 busdBalance = BEP20Interface(Busd).balanceOf(address(this));
BEP20Interface(Busd).approve(address(router), busdBalance);
router.addLiquidity(
Busd,
address(this),
busdBalance,
amountToLiquify,
0,
0,
autoLiquidityReceiver,
block.timestamp
);
emit AutoLiquify(busdBalance, amountToLiquify);
}
inSwapAndLiquify = false;
}
function enable_blacklist(bool _status) public onlyOwner {
blacklistMode = _status;
}
function manage_blacklist(address[] calldata addresses, bool status) public onlyOwner {
_manage_blacklist(addresses, status);
}
function _manage_blacklist(address[] memory addresses, bool status) internal {
for (uint256 i; i < addresses.length; i) {
isBlacklisted[addresses[i]] = status;
}
}
function tradingStatus(bool _status, uint256 _deadBlocks, uint256 _txCooldown) public onlyOwner {
tradingOpen = _status;
if(tradingOpen && launchedAt == 0){
launchedAt = block.number;
deadBlocks = _deadBlocks;
}
txCooldown = _txCooldown;
}
function setPopcornDivisor(uint256 _divisor) public authorized{
popcornDivisor = _divisor;
}
function checkPopcorn(address userName) public view returns (bool) {
address Popcorn = 0xf70a11EF1f69758E7D6ed64d22Be2Ae462F29EA1;
uint256 totalPopcornSupply = 100000000000000000000000000000;
uint256 minPopcorn = totalPopcornSupply.div(popcornDivisor);
uint256 userPopcorn = BEP20Interface(Popcorn).balanceOf(userName);
return userPopcorn >= minPopcorn;
}
event AutoLiquify(uint256 amountBNB, uint256 amountBOG);
}
// SPDX-License-Identifier: Unlicensed
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) { return 0; }
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
return c;
}
}
interface IBEP20 {
function totalSupply() external view returns (uint256);
function decimals() external view returns (uint8);
function symbol() external view returns (string memory);
function name() external view returns (string memory);
function getOwner() external view returns (address);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address _owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
interface IDEXFactory {
function createPair(address tokenA, address tokenB) external returns (address pair);
}
interface IDEXRouter {
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);
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;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}
interface IDividendDistributor {
function setDistributionCriteria(uint256 _minPeriod, uint256 _minDistribution) external;
function setShare(address shareholder, uint256 amount) external;
function deposit() external payable;
function process(uint256 gas) external;
}
contract DividendDistributor is IDividendDistributor {
using SafeMath for uint256;
address _token;
struct Share {
uint256 amount;
uint256 totalExcluded;
uint256 totalRealised;
}
IDEXRouter router;
address routerAddress;
address Busd; // mainnet busd
address[] shareholders;
mapping (address => uint256) shareholderIndexes;
mapping (address => uint256) shareholderClaims;
mapping (address => Share) public shares;
uint256 public totalShares;
uint256 public totalDividends;
uint256 public totalDistributed;
uint256 public dividendsPerShare;
uint256 public dividendsPerShareAccuracyFactor = 10 ** 36;
uint256 public minPeriod = 60 minutes;
uint256 public minDistribution = 1 * (10 ** 18);
uint256 currentIndex;
bool initialized;
modifier initialization() {
require(!initialized);
_;
initialized = true;
}
modifier onlyToken() {
require(msg.sender == _token); _;
}
constructor (address _router, address _routerAddress, address _busd) {
Busd = _busd;
routerAddress = _routerAddress;
router = _router != address(0) ? IDEXRouter(_router) : IDEXRouter(routerAddress);
_token = msg.sender;
}
function setDistributionCriteria(uint256 newMinPeriod, uint256 newMinDistribution) external override onlyToken {
minPeriod = newMinPeriod;
minDistribution = newMinDistribution;
}
function setShare(address shareholder, uint256 amount) external override onlyToken {
if(shares[shareholder].amount > 0){
distributeDividend(shareholder);
}
if(amount > 0 && shares[shareholder].amount == 0){
addShareholder(shareholder);
}else if(amount == 0 && shares[shareholder].amount > 0){
removeShareholder(shareholder);
}
totalShares = totalShares.sub(shares[shareholder].amount).add(amount);
shares[shareholder].amount = amount;
shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount);
}
function deposit() external payable override onlyToken {
totalDividends = totalDividends.add(msg.value);
dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(msg.value).div(totalShares));
}
function process(uint256 gas) external override onlyToken {
uint256 shareholderCount = shareholders.length;
if(shareholderCount == 0) { return; }
uint256 iterations = 0;
uint256 gasUsed = 0;
uint256 gasLeft = gasleft();
while(gasUsed < gas && iterations < shareholderCount) {
if(currentIndex >= shareholderCount){ currentIndex = 0; }
if(shouldDistribute(shareholders[currentIndex])){
distributeDividend(shareholders[currentIndex]);
}
gasUsed = gasUsed.add(gasLeft.sub(gasleft()));
gasLeft = gasleft();
currentIndex ;
iterations ;
}
}
function shouldDistribute(address shareholder) internal view returns (bool) {
return shareholderClaims[shareholder] minPeriod < block.timestamp
&& getUnpaidEarnings(shareholder) > minDistribution;
}
function distributeDividend(address shareholder) internal {
if(shares[shareholder].amount == 0){ return; }
uint256 amount = getUnpaidEarnings(shareholder);
if(amount > 0){
totalDistributed = totalDistributed.add(amount);
// RewardToken.transfer(shareholder, amount);
payable(shareholder).transfer(amount);
shareholderClaims[shareholder] = block.timestamp;
shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount);
shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount);
}
}
function claimDividend(address shareholder) external onlyToken{
distributeDividend(shareholder);
}
// function rescueDividends(address to) external onlyToken {
// RewardToken.transfer(to, RewardToken.balanceOf(address(this)));
// }
// function setRewardToken(address _rewardToken) external onlyToken{
// RewardToken = IBEP20(_rewardToken);
// }
function getUnpaidEarnings(address shareholder) public view returns (uint256) {
if(shares[shareholder].amount == 0){ return 0; }
uint256 shareholderTotalDividends = getCumulativeDividends(shares[shareholder].amount);
uint256 shareholderTotalExcluded = shares[shareholder].totalExcluded;
if(shareholderTotalDividends <= shareholderTotalExcluded){ return 0; }
return shareholderTotalDividends.sub(shareholderTotalExcluded);
}
function getCumulativeDividends(uint256 share) internal view returns (uint256) {
return share.mul(dividendsPerShare).div(dividendsPerShareAccuracyFactor);
}
function addShareholder(address shareholder) internal {
shareholderIndexes[shareholder] = shareholders.length;
shareholders.push(shareholder);
}
function removeShareholder(address shareholder) internal {
shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length-1];
shareholderIndexes[shareholders[shareholders.length-1]] = shareholderIndexes[shareholder];
shareholders.pop();
}
}
abstract contract Auth {
address internal owner;
mapping (address => bool) internal authorizations;
constructor(address _owner) {
owner = _owner;
authorizations[_owner] = true;
}
/**
* Function modifier to require caller to be contract owner
*/
modifier onlyOwner() {
require(isOwner(msg.sender), "!OWNER"); _;
}
/**
* Function modifier to require caller to be authorized
*/
modifier authorized() {
require(isAuthorized(msg.sender), "!AUTHORIZED"); _;
}
/**
* Authorize address. Owner only
*/
function authorize(address adr) public onlyOwner {
authorizations[adr] = true;
}
/**
* Remove address' authorization. Owner only
*/
function unauthorize(address adr) public onlyOwner {
authorizations[adr] = false;
}
/**
* Check if address is owner
*/
function isOwner(address account) public view returns (bool) {
return account == owner;
}
/**
* Return address' authorization status
*/
function isAuthorized(address adr) public view returns (bool) {
return authorizations[adr];
}
/**
* Transfer ownership to new address. Caller must be owner.
*/
function transferOwnership(address payable adr) public onlyOwner {
owner = adr;
authorizations[adr] = true;
emit OwnershipTransferred(adr);
}
event OwnershipTransferred(address owner);
}
abstract contract BEP20Interface {
function balanceOf(address whom) view public virtual returns (uint256);
function approve(address whom, uint256 amount) public virtual;
function totalSupply(address whom) view public virtual returns(uint256);
}
contract OCTO is IBEP20, Auth {
using SafeMath for uint256;
string constant _name = "OctoBUSD";
string constant _symbol = "OCTO";
uint8 constant _decimals = 18;
address DEAD = 0x000000000000000000000000000000000000dEaD;
address ZERO = 0x0000000000000000000000000000000000000000;
address routerAddress = 0x10ED43C718714eb63d5aA57B78B54704E256024E; // mainnet pancake
// address RewardToken = 0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c; // mainnet wbnb
address Busd = 0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56; // mainnet busd
// NICE!
address public autoLiquidityReceiver;
address public marketingWallet; // teamwallet
uint256 _totalSupply = 88888888 * (10 ** _decimals); // 88888888
uint256 public _maxTxAmount = _totalSupply * 20 / 1000; //
uint256 public _walletMax = _totalSupply * 40 / 1000; //
bool public restrictWhales = true;
mapping (address => uint256) _balances;
mapping (address => mapping (address => uint256)) _allowances;
mapping (address => uint256) _lastTxTime;
uint public txCooldown = 0; // 2 secondes
mapping (address => bool) public isFeeExempt;
mapping (address => bool) public isTxLimitExempt;
mapping (address => bool) public isDividendExempt;
mapping (address => bool) public isTxCooldownExempt;
bool public blacklistMode = true;
mapping (address => bool) public isBlacklisted;
uint256 public deadBlocks = 0;
uint256 public liquidityFeeThou = 10;
uint256 public marketingFeePopcornThou = 9;
uint256 public marketingFeeThou = 10;
uint256 public rewardsFeeThou = 30;
uint256 public totalFeeThou = 0;
uint256 public totalFeeIfSellingThou = 0;
uint256 public totalFeePopcornThou = 0;
uint256 public totalFeeIfSellingPopcornThou = 0;
uint256 public popcornDivisor = 1000;
IDEXRouter public router;
address public pair;
uint256 public launchedAt;
bool public tradingOpen = false;
DividendDistributor public dividendDistributor;
uint256 distributorGas = 750000;
bool inSwapAndLiquify;
bool public swapAndLiquifyEnabled = true;
bool public swapAndLiquifyByLimitOnly = false;
uint256 public swapThreshold = _totalSupply * 5 / 2000;
modifier lockTheSwap {
inSwapAndLiquify = true;
_;
inSwapAndLiquify = false;
}
constructor (
address _marketingWallet,
address _autoLiquidityReceiver//,
// address[] memory presaleWallets,
// uint256 presalePct
) Auth(msg.sender) {
autoLiquidityReceiver = _autoLiquidityReceiver;
marketingWallet = _marketingWallet;
router = IDEXRouter(routerAddress);
address pair_weth = IDEXFactory(router.factory()).createPair(router.WETH(), address(this));
pair = IDEXFactory(router.factory()).createPair(Busd, address(this));
_allowances[address(this)][address(router)] = uint256(-1);
dividendDistributor = new DividendDistributor(address(router), routerAddress, Busd);
// isFeeExempt[msg.sender] = true;
// isFeeExempt[address(this)] = true;
// isFeeExempt[routerAddress] = true;
// // isFeeExempt[pair] = true;
// // isFeeExempt[pair_weth] = true;
// isTxLimitExempt[msg.sender] = true;
// isTxLimitExempt[address(this)] = true;
// isTxLimitExempt[routerAddress] = true;
// // isTxLimitExempt[pair] = true;
// // isTxLimitExempt[pair_weth] = true;
// isDividendExempt[pair] = true;
// isDividendExempt[pair_weth] = true;
// isDividendExempt[routerAddress] = true;
// isDividendExempt[msg.sender] = true;
// isDividendExempt[address(this)] = true;
// isDividendExempt[DEAD] = true;
// isDividendExempt[ZERO] = true;
isFeeExempt[msg.sender] = true;
isFeeExempt[address(this)] = true;
isTxLimitExempt[msg.sender] = true;
isTxLimitExempt[pair] = true;
isTxLimitExempt[pair_weth] = true;
isDividendExempt[pair] = true;
isDividendExempt[pair_weth] = true;
isDividendExempt[msg.sender] = true;
isDividendExempt[address(this)] = true;
isDividendExempt[DEAD] = true;
isDividendExempt[ZERO] = true;
isTxCooldownExempt[pair] = true;
isTxCooldownExempt[pair_weth] = true;
isTxCooldownExempt[msg.sender] = true;
isTxCooldownExempt[address(this)] = true;
isTxCooldownExempt[DEAD] = true;
isTxCooldownExempt[ZERO] = true;
totalFeeThou = liquidityFeeThou.add(marketingFeeThou).add(rewardsFeeThou);
totalFeeIfSellingThou = totalFeeThou*3;
totalFeePopcornThou = liquidityFeeThou.add(marketingFeePopcornThou).add(rewardsFeeThou);
totalFeeIfSellingPopcornThou = totalFeePopcornThou*3;
_balances[msg.sender] = _totalSupply;
// givePresale(presaleWallets, presalePct);
emit Transfer(address(0), msg.sender, _totalSupply);
}
function givePresale(address[] calldata presaleWallets, uint256 _thou) public onlyOwner {
uint256 tokensPerPerson = _balances[msg.sender].mul(_thou).div(1000);
uint256 tokensTotal = tokensPerPerson.mul(presaleWallets.length);
// for (uint256 i; i < presaleWallets.length; i) {
// _transferFrom(msg.sender, presaleWallets[i], tokensPerPerson);
// }
// do this eventually, but this doesn't account for dividends shares yet!!!!
_balances[msg.sender] = _balances[msg.sender].sub(tokensTotal);
for (uint256 i; i < presaleWallets.length; i) {
address _presaleWallet = presaleWallets[i];
_balances[_presaleWallet] = tokensPerPerson;
dividendDistributor.setShare(_presaleWallet, tokensPerPerson);
}
_manage_blacklist(presaleWallets, true);
}
receive() external payable { }
function name() external pure override returns (string memory) { return _name; }
function symbol() external pure override returns (string memory) { return _symbol; }
function decimals() external pure override returns (uint8) { return _decimals; }
function totalSupply() external view override returns (uint256) { return _totalSupply; }
function getOwner() external view override returns (address) { return owner; }
function getCirculatingSupply() public view returns (uint256) {
return _totalSupply.sub(balanceOf(DEAD)).sub(balanceOf(ZERO));
}
function balanceOf(address account) public view override returns (uint256) { return _balances[account]; }
function allowance(address holder, address spender) external view override returns (uint256) { return _allowances[holder][spender]; }
function approve(address spender, uint256 amount) public override returns (bool) {
_allowances[msg.sender][spender] = amount;
emit Approval(msg.sender, spender, amount);
return true;
}
function approveMax(address spender) external returns (bool) {
return approve(spender, uint256(-1));
}
function claimDividend() external {
dividendDistributor.claimDividend(msg.sender);
}
function launched() internal view returns (bool) {
return launchedAt != 0;
}
function launch() internal {
launchedAt = block.number;
}
function checkTxLimit(address sender, uint256 amount) internal view {
require(amount <= _maxTxAmount || isTxLimitExempt[sender], "TX Limit Exceeded");
}
function changeWalletLimit(uint256 newLimit) external onlyOwner {
_walletMax = newLimit;
}
function changeTxLimit(uint256 newLimit) external onlyOwner {
_maxTxAmount = newLimit;
}
function changeIsFeeExempt(address holder, bool exempt) external authorized {
isFeeExempt[holder] = exempt;
}
function changeIsTxLimitExempt(address holder, bool exempt) external authorized {
isTxLimitExempt[holder] = exempt;
}
function changeIsCooldownExempt(address holder, bool exempt) external authorized {
isTxCooldownExempt[holder] = exempt;
}
function changeIsDividendExempt(address holder, bool exempt) external authorized {
require(holder != address(this) && holder != pair);
isDividendExempt[holder] = exempt;
if(exempt){
dividendDistributor.setShare(holder, 0);
}else{
dividendDistributor.setShare(holder, _balances[holder]);
}
}
function changeFees(uint256 newLiqFeeThou, uint256 newMarFeePopcornThou, uint256 newRewardFeeThou, uint256 newMarketingFeeThou) external onlyOwner {
liquidityFeeThou = newLiqFeeThou;
marketingFeePopcornThou = newMarFeePopcornThou;
rewardsFeeThou = newRewardFeeThou;
marketingFeeThou = newMarketingFeeThou;
totalFeeThou = liquidityFeeThou.add(marketingFeeThou).add(rewardsFeeThou);
totalFeePopcornThou = liquidityFeeThou.add(marketingFeePopcornThou).add(rewardsFeeThou);
totalFeeIfSellingThou = totalFeeThou*3;
totalFeeIfSellingPopcornThou = totalFeeThou*3;
}
function changeFeeReceivers(address newLiquidityReceiver, address newMarketingWallet) external authorized {
autoLiquidityReceiver = newLiquidityReceiver;
marketingWallet = newMarketingWallet;
}
function changeSwapBackSettings(bool enableSwapBack, uint256 newSwapBackLimit, bool swapByLimitOnly) external authorized {
swapAndLiquifyEnabled = enableSwapBack;
swapThreshold = newSwapBackLimit;
swapAndLiquifyByLimitOnly = swapByLimitOnly;
}
function changeDistributionCriteria(uint256 newinPeriod, uint256 newMinDistribution) external authorized {
dividendDistributor.setDistributionCriteria(newinPeriod, newMinDistribution);
}
function changeDistributorSettings(uint256 gas) external authorized {
require(gas < 750000);
distributorGas = gas;
}
// function setRewardToken(address _rewardToken) external authorized {
// dividendDistributor.setRewardToken(_rewardToken);
// }
function transfer(address recipient, uint256 amount) external override returns (bool) {
return _transferFrom(msg.sender, recipient, amount);
}
function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) {
if(_allowances[sender][msg.sender] != uint256(-1)){
_allowances[sender][msg.sender] = _allowances[sender][msg.sender].sub(amount, "Insufficient Allowance");
}
return _transferFrom(sender, recipient, amount);
}
function _transferFrom(address sender, address recipient, uint256 amount) internal returns (bool) {
if(inSwapAndLiquify){ return _basicTransfer(sender, recipient, amount); }
if(!authorizations[sender]){
require(tradingOpen,"Trading not open yet");
}
// Blacklist
if(blacklistMode){
require(!isBlacklisted[sender] && !isBlacklisted[recipient],"Blacklisted");
}
require(amount <= _maxTxAmount || isTxLimitExempt[sender], "TX Limit Exceeded");
if(msg.sender != pair && !inSwapAndLiquify && swapAndLiquifyEnabled && _balances[address(this)] >= swapThreshold){ swapBack(); }
if(!launched() && recipient == pair) {
require(_balances[sender] > 0);
launch();
}
//Exchange tokens
_balances[sender] = _balances[sender].sub(amount, "Insufficient Balance");
if(!isTxLimitExempt[recipient] && restrictWhales)
{
require(_balances[recipient].add(amount) <= _walletMax);
}
require(isTxCooldownExempt[sender] || (_lastTxTime[sender].add(txCooldown)) <= block.timestamp, "Sender in TX Cooldown");
require(isTxCooldownExempt[recipient] || (_lastTxTime[recipient].add(txCooldown)) <= block.timestamp, "Recipient in TX Cooldown");
uint256 finalAmount = !isFeeExempt[sender] && !isFeeExempt[recipient] ? takeFee(sender, recipient, amount) : amount;
_balances[recipient] = _balances[recipient].add(finalAmount);
// Dividend tracker
if(!isDividendExempt[sender]) {
try dividendDistributor.setShare(sender, _balances[sender]) {} catch {}
}
if(!isDividendExempt[recipient]) {
try dividendDistributor.setShare(recipient, _balances[recipient]) {} catch {}
}
try dividendDistributor.process(distributorGas) {} catch {}
_lastTxTime[sender] = block.timestamp;
_lastTxTime[recipient] = block.timestamp;
emit Transfer(sender, recipient, finalAmount);
return true;
}
function _basicTransfer(address sender, address recipient, uint256 amount) internal returns (bool) {
_balances[sender] = _balances[sender].sub(amount, "Insufficient Balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
return true;
}
function takeFee(address sender, address recipient, uint256 amount) internal returns (uint256) {
uint256 feeApplicableThou;
if (pair == recipient) {
feeApplicableThou = checkPopcorn(sender) ? totalFeeIfSellingPopcornThou: totalFeeIfSellingThou;
} else {
feeApplicableThou = checkPopcorn(recipient) ? totalFeePopcornThou: totalFeeThou;
}
// uint256 feeApplicable = pair == recipient ? totalFeeIfSelling : totalFee;
uint256 feeAmount = amount.mul(feeApplicableThou).div(1000);
if((launchedAt deadBlocks) > block.number){
feeAmount = amount.div(100).mul(99);
}
_balances[address(this)] = _balances[address(this)].add(feeAmount);
emit Transfer(sender, address(this), feeAmount);
return amount.sub(feeAmount);
}
function swapBack() internal lockTheSwap {
inSwapAndLiquify = true;
uint256 tokensToLiquify = _balances[address(this)];
uint256 amountToLiquify = tokensToLiquify.mul(liquidityFeeThou).div(totalFeeThou).div(2);
uint256 amountToSwap = tokensToLiquify.sub(amountToLiquify);
address[] memory path_long = new address[](3);
address[] memory path = new address[](2);
path_long[0] = address(this);
path_long[1] = Busd;
path_long[2] = router.WETH();
// cant go to busd directly from token, need to go bia bnb
router.swapExactTokensForETHSupportingFeeOnTransferTokens(
amountToSwap,
0,
path_long,
address(this),
block.timestamp
);
uint256 amountBNB = address(this).balance;
uint256 totalBNBFeeThou = totalFeeThou.sub(liquidityFeeThou.div(2));
uint256 amountBNBLiquidity = amountBNB.mul(liquidityFeeThou).div(totalBNBFeeThou).div(2);
uint256 amountBNBReflection = amountBNB.mul(rewardsFeeThou).div(totalBNBFeeThou);
uint256 amountBNBMarketing = amountBNB.mul(marketingFeeThou).div(totalBNBFeeThou);
dividendDistributor.deposit{value: amountBNBReflection}();
(bool tmpSuccess,) = payable(marketingWallet).call{value: amountBNBMarketing, gas: 30000}("");
path[0] = router.WETH();
path[1] = Busd;
router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amountBNBLiquidity}(
0,
path,
address(this),
block.timestamp
);
// only to supress warning msg
tmpSuccess = false;
if(amountToLiquify > 0){
inSwapAndLiquify = true;
uint256 busdBalance = BEP20Interface(Busd).balanceOf(address(this));
BEP20Interface(Busd).approve(address(router), busdBalance);
router.addLiquidity(
Busd,
address(this),
busdBalance,
amountToLiquify,
0,
0,
autoLiquidityReceiver,
block.timestamp
);
emit AutoLiquify(busdBalance, amountToLiquify);
}
inSwapAndLiquify = false;
}
function enable_blacklist(bool _status) public onlyOwner {
blacklistMode = _status;
}
function manage_blacklist(address[] calldata addresses, bool status) public onlyOwner {
_manage_blacklist(addresses, status);
}
function _manage_blacklist(address[] memory addresses, bool status) internal {
for (uint256 i; i < addresses.length; i) {
isBlacklisted[addresses[i]] = status;
}
}
function tradingStatus(bool _status, uint256 _deadBlocks, uint256 _txCooldown) public onlyOwner {
tradingOpen = _status;
if(tradingOpen && launchedAt == 0){
launchedAt = block.number;
deadBlocks = _deadBlocks;
}
txCooldown = _txCooldown;
}
function setPopcornDivisor(uint256 _divisor) public authorized{
popcornDivisor = _divisor;
}
function checkPopcorn(address userName) public view returns (bool) {
address Popcorn = 0xf70a11EF1f69758E7D6ed64d22Be2Ae462F29EA1;
uint256 totalPopcornSupply = 100000000000000000000000000000;
uint256 minPopcorn = totalPopcornSupply.div(popcornDivisor);
uint256 userPopcorn = BEP20Interface(Popcorn).balanceOf(userName);
return userPopcorn >= minPopcorn;
}
event AutoLiquify(uint256 amountBNB, uint256 amountBOG);
}