PogChart Token Logo

PogChart Token

About PogChart

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Laser Scorebeta Last Audit: 4 February 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

PogChart.swapBack() (#1119-1153) sends eth to arbitrary user
Dangerous calls:
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1144)
PogChart.addLiquidity(uint256,uint256) (#1169-1179) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1171-1178)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in PogChart._transfer(address,address,uint256) (#1022-1117):
External calls:
- swapBack() (#1080)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1171-1178)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1160-1166)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1143)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1144)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1151)
External calls sending eth:
- swapBack() (#1080)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1171-1178)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1143)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1144)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1151)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1115)
- _liquidityTokensToSwap += tLiquidity * _buyLiquidityFee / _liquidityFee (#1382)
- _liquidityTokensToSwap += tLiquidity * _sellLiquidityFee / _liquidityFee (#1386)
- _tokenTransfer(from,to,amount,takeFee) (#1115)
- _marketingTokensToSwap += tLiquidity * _buyMarketingFee / _liquidityFee (#1384)
- _marketingTokensToSwap += tLiquidity * _sellMarketingFee / _liquidityFee (#1388)
- _tokenTransfer(from,to,amount,takeFee) (#1115)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1235)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1215)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1216)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1257)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1278)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1237)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1258)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1280)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1392)
- _tokenTransfer(from,to,amount,takeFee) (#1115)
- _rTotal = _rTotal.sub(rFee) (#1287)
- _tokenTransfer(from,to,amount,takeFee) (#1115)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1256)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1277)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1236)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1279)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1394)
- _tokenTransfer(from,to,amount,takeFee) (#1115)
- _teamTokensToSwap += tLiquidity * _buyTeamFee / _liquidityFee (#1383)
- _teamTokensToSwap += tLiquidity * _sellTeamFee / _liquidityFee (#1387)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable._lockTime (#211) is never initialized. It is used in:
- Ownable.getUnlockTime() (#247-249)
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

PogChart._transfer(address,address,uint256) (#1022-1117) uses a dangerous strict equality:
- from != owner() && to != uniswapV2Pair && block.number == tradingActiveBlock (#1044)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link

PogChart.swapBack().success (#1143) is written in both
(success) = address(teamAddress).call{value: bnbForTeam}() (#1143)
(success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1144)
Fix or remove the writes.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

Reentrancy in PogChart.swapBack() (#1119-1153):
External calls:
- swapTokensForBNB(amountToSwapForBNB) (#1130)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1160-1166)
State variables written after the call(s):
- _liquidityTokensToSwap = 0 (#1139)
- _marketingTokensToSwap = 0 (#1140)
- _teamTokensToSwap = 0 (#1141)
Apply the check-effects-interactions pattern.

Additional information: link

PogChart.addLiquidity(uint256,uint256) (#1169-1179) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1171-1178)
Ensure that all the return values of the function calls are used.

Additional information: link

PogChart.allowance(address,address).owner (#807) shadows:
- Ownable.owner() (#224-226) (function)
PogChart._approve(address,address,uint256).owner (#1011) shadows:
- Ownable.owner() (#224-226) (function)
Rename the local variables that shadow another component.

Additional information: link

PogChart.setGasPriceLimit(uint256) (#926-929) should emit an event for:
- gasPriceLimit = gas * 1000000000 (#928)
PogChart.setMaxWallet(uint256) (#931-933) should emit an event for:
- maxWalletAmount = _tTotal * maxwalletpercent / 100 (#932)
PogChart.setMaxTx(uint256) (#935-937) should emit an event for:
- maxTransactionAmount = _tTotal * maxtx / 100 (#936)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in PogChart._transfer(address,address,uint256) (#1022-1117):
External calls:
- swapBack() (#1080)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1171-1178)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1160-1166)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1143)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1144)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1151)
External calls sending eth:
- swapBack() (#1080)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1171-1178)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1143)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1144)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1151)
State variables written after the call(s):
- removeAllFee() (#1092)
- _liquidityFee = 0 (#1416)
- _liquidityFee = _buyLiquidityFee + _buyMarketingFee + _buyTeamFee (#1094)
- removeAllFee() (#1099)
- _liquidityFee = 0 (#1416)
- _liquidityFee = _sellLiquidityFee + _sellMarketingFee + _sellTeamFee (#1101)
- _liquidityFee = 99 (#1106)
- removeAllFee() (#1110)
- _liquidityFee = 0 (#1416)
- _tokenTransfer(from,to,amount,takeFee) (#1115)
- _liquidityFee = _previousLiquidityFee (#1421)
- _liquidityFee = 0 (#1416)
- removeAllFee() (#1092)
- _previousLiquidityFee = _liquidityFee (#1413)
- removeAllFee() (#1099)
- _previousLiquidityFee = _liquidityFee (#1413)
- removeAllFee() (#1110)
- _previousLiquidityFee = _liquidityFee (#1413)
- _tokenTransfer(from,to,amount,takeFee) (#1115)
- _previousLiquidityFee = _liquidityFee (#1413)
- removeAllFee() (#1092)
- _previousTaxFee = _taxFee (#1412)
- removeAllFee() (#1099)
- _previousTaxFee = _taxFee (#1412)
- removeAllFee() (#1110)
- _previousTaxFee = _taxFee (#1412)
- _tokenTransfer(from,to,amount,takeFee) (#1115)
- _previousTaxFee = _taxFee (#1412)
- _tokenTransfer(from,to,amount,takeFee) (#1115)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1288)
- removeAllFee() (#1092)
- _taxFee = 0 (#1415)
- _taxFee = _buyTaxFee (#1093)
- removeAllFee() (#1099)
- _taxFee = 0 (#1415)
- _taxFee = _sellTaxFee (#1100)
- _taxFee = _taxFee * 3 (#1105)
- removeAllFee() (#1110)
- _taxFee = 0 (#1415)
- _tokenTransfer(from,to,amount,takeFee) (#1115)
- _taxFee = _previousTaxFee (#1420)
- _taxFee = 0 (#1415)
- buyOrSellSwitch = TRANSFER (#1088)
- buyOrSellSwitch = BUY (#1095)
- buyOrSellSwitch = SELL (#1102)
- buyOrSellSwitch = TRANSFER (#1111)
Reentrancy in PogChart.changeRouterVersion(address) (#1503-1527):
External calls:
- _pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1517-1520)
State variables written after the call(s):
- uniswapV2Pair = _pair (#1522)
- uniswapV2Router = _uniswapV2Router (#1525)
Reentrancy in PogChart.constructor() (#739-775):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#750-751)
State variables written after the call(s):
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#756)
- _excluded[i] = _excluded[_excluded.length - 1] (#993)
- _excluded.push(account) (#986)
- _excluded.pop() (#996)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#756)
- _isExcluded[account] = true (#985)
- _isExcluded[account] = false (#995)
- _isExcludedFromFee[owner()] = true (#758)
- _isExcludedFromFee[address(this)] = true (#759)
- _isExcludedFromFee[marketingAddress] = true (#760)
- _isExcludedFromFee[liquidityAddress] = true (#761)
- _isExcludedFromFee[teamAddress] = true (#762)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#756)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1003)
- excludeFromMaxTransaction(owner(),true) (#764)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1003)
- excludeFromMaxTransaction(address(this),true) (#765)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1003)
- excludeFromMaxTransaction(address(0xdead),true) (#766)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1003)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#756)
- _isExcludedMaxWalletAmount[updAds] = isEx (#1007)
- excludeFromWalletAmount(owner(),true) (#768)
- _isExcludedMaxWalletAmount[updAds] = isEx (#1007)
- excludeFromWalletAmount(address(this),true) (#769)
- _isExcludedMaxWalletAmount[updAds] = isEx (#1007)
- excludeFromWalletAmount(address(0xdead),true) (#770)
- _isExcludedMaxWalletAmount[updAds] = isEx (#1007)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#756)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#983)
- _tOwned[account] = 0 (#994)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#756)
- automatedMarketMakerPairs[pair] = value (#912)
- uniswapV2Pair = _uniswapV2Pair (#754)
- uniswapV2Router = _uniswapV2Router (#753)
Reentrancy in PogChart.swapBack() (#1119-1153):
External calls:
- swapTokensForBNB(amountToSwapForBNB) (#1130)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1160-1166)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1143)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1144)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1146)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1171-1178)
External calls sending eth:
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1143)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1144)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1146)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1171-1178)
State variables written after the call(s):
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1146)
- _allowances[owner][spender] = amount (#1018)
Reentrancy in PogChart.transferFrom(address,address,uint256) (#825-840):
External calls:
- _transfer(sender,recipient,amount) (#830)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1171-1178)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1160-1166)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1143)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1144)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1151)
External calls sending eth:
- _transfer(sender,recipient,amount) (#830)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1171-1178)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1143)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1144)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1151)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#831-838)
- _allowances[owner][spender] = amount (#1018)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in PogChart._transfer(address,address,uint256) (#1022-1117):
External calls:
- swapBack() (#1080)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1171-1178)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1160-1166)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1143)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1144)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1151)
External calls sending eth:
- swapBack() (#1080)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1171-1178)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1143)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1144)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1151)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1219)
- _tokenTransfer(from,to,amount,takeFee) (#1115)
- Transfer(sender,recipient,tTransferAmount) (#1240)
- _tokenTransfer(from,to,amount,takeFee) (#1115)
- Transfer(sender,recipient,tTransferAmount) (#1261)
- _tokenTransfer(from,to,amount,takeFee) (#1115)
- Transfer(sender,recipient,tTransferAmount) (#1283)
- _tokenTransfer(from,to,amount,takeFee) (#1115)
Reentrancy in PogChart.changeRouterVersion(address) (#1503-1527):
External calls:
- _pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1517-1520)
Event emitted after the call(s):
- UpdatedRouter(_router) (#1526)
Reentrancy in PogChart.constructor() (#739-775):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#750-751)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#919)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#756)
- Transfer(address(0),_msgSender(),_tTotal) (#774)
Reentrancy in PogChart.swapBack() (#1119-1153):
External calls:
- swapTokensForBNB(amountToSwapForBNB) (#1130)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1160-1166)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1143)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1144)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1146)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1171-1178)
External calls sending eth:
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1143)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1144)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1146)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1171-1178)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1019)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1146)
- SwapAndLiquify(amountToSwapForBNB,bnbForLiquidity,tokensForLiquidity) (#1147)
Reentrancy in PogChart.transferForeignToken(address,address) (#1532-1542):
External calls:
- _sent = IERC20(_token).transfer(_to,_contractBalance) (#1540)
Event emitted after the call(s):
- TransferForeignToken(_token,_contractBalance) (#1541)
Reentrancy in PogChart.transferFrom(address,address,uint256) (#825-840):
External calls:
- _transfer(sender,recipient,amount) (#830)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1171-1178)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1160-1166)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1143)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1144)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1151)
External calls sending eth:
- _transfer(sender,recipient,amount) (#830)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1171-1178)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1143)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1144)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1151)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1019)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#831-838)
Apply the check-effects-interactions pattern.

Additional information: link

PogChart._transfer(address,address,uint256) (#1022-1117) uses timestamp for comparisons
Dangerous comparisons:
- boughtEarly[from] && earlyBuyPenaltyEnd <= block.number (#1104)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#113-124) uses assembly
- INLINE ASM (#120-122)
Address._functionCallWithValue(address,bytes,uint256,string) (#182-205) uses assembly
- INLINE ASM (#197-200)
Do not use evm assembly.

Additional information: link

PogChart.includeInReward(address) (#989-1000) has costly operations inside a loop:
- _excluded.pop() (#996)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#182-205) is never used and should be removed
Address.functionCall(address,bytes) (#140-145) is never used and should be removed
Address.functionCall(address,bytes,string) (#147-153) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#155-167) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#169-180) is never used and should be removed
Address.isContract(address) (#113-124) is never used and should be removed
Address.sendValue(address,uint256) (#126-138) is never used and should be removed
Context._msgData() (#12-15) is never used and should be removed
SafeMath.mod(uint256,uint256) (#98-100) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#102-109) is never used and should be removed
Remove unused functions.

Additional information: link

PogChart._previousTaxFee (#644) is set pre-construction with a non-constant function or state variable:
- _taxFee
PogChart._previousLiquidityFee (#647) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Pragma version0.8.9 (#5) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.9 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#126-138):
- (success) = recipient.call{value: amount}() (#133)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#182-205):
- (success,returndata) = target.call{value: weiValue}(data) (#190-192)
Low level call in PogChart.swapBack() (#1119-1153):
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1143)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1144)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1151)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#321) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#323) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#353) is not in mixedCase
Function IUniswapV2Router01.WETH() (#397) is not in mixedCase
Parameter PogChart.addPresaleAddressForExclusions(address,address)._presaleAddress (#892) is not in mixedCase
Parameter PogChart.addPresaleAddressForExclusions(address,address)._presaleRouterAddress (#892) is not in mixedCase
Parameter PogChart.calculateTaxFee(uint256)._amount (#1397) is not in mixedCase
Parameter PogChart.calculateLiquidityFee(uint256)._amount (#1401) is not in mixedCase
Parameter PogChart.setMarketingAddress(address)._marketingAddress (#1473) is not in mixedCase
Parameter PogChart.setTeamAddress(address)._teamAddress (#1480) is not in mixedCase
Parameter PogChart.setLiquidityAddress(address)._liquidityAddress (#1487) is not in mixedCase
Parameter PogChart.setSwapAndLiquifyEnabled(bool)._enabled (#1494) is not in mixedCase
Parameter PogChart.changeRouterVersion(address)._router (#1503) is not in mixedCase
Parameter PogChart.transferForeignToken(address,address)._token (#1532) is not in mixedCase
Parameter PogChart.transferForeignToken(address,address)._to (#1532) is not in mixedCase
Constant PogChart._tTotal (#626) is not in UPPER_CASE_WITH_UNDERSCORES
Constant PogChart._name (#632) is not in UPPER_CASE_WITH_UNDERSCORES
Constant PogChart._symbol (#633) is not in UPPER_CASE_WITH_UNDERSCORES
Constant PogChart._decimals (#635) is not in UPPER_CASE_WITH_UNDERSCORES
Variable PogChart._buyTaxFee (#649) is not in mixedCase
Variable PogChart._buyLiquidityFee (#650) is not in mixedCase
Variable PogChart._buyMarketingFee (#651) is not in mixedCase
Variable PogChart._buyTeamFee (#652) is not in mixedCase
Variable PogChart._sellTaxFee (#654) is not in mixedCase
Variable PogChart._sellLiquidityFee (#655) is not in mixedCase
Variable PogChart._sellMarketingFee (#656) is not in mixedCase
Variable PogChart._sellTeamFee (#657) is not in mixedCase
Variable PogChart._isExcludedMaxTransactionAmount (#673) is not in mixedCase
Variable PogChart._isExcludedMaxWalletAmount (#674) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#13)" inContext (#7-16)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#402) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#403)
Variable PogChart._transferBothExcluded(address,address,uint256).rTransferAmount (#1271) is too similar to PogChart._transferFromExcluded(address,address,uint256).tTransferAmount (#1252)
Variable PogChart._transferToExcluded(address,address,uint256).rTransferAmount (#1229) is too similar to PogChart._transferToExcluded(address,address,uint256).tTransferAmount (#1231)
Variable PogChart._transferToExcluded(address,address,uint256).rTransferAmount (#1229) is too similar to PogChart._transferFromExcluded(address,address,uint256).tTransferAmount (#1252)
Variable PogChart._transferStandard(address,address,uint256).rTransferAmount (#1209) is too similar to PogChart._transferFromExcluded(address,address,uint256).tTransferAmount (#1252)
Variable PogChart._transferBothExcluded(address,address,uint256).rTransferAmount (#1271) is too similar to PogChart._getValues(uint256).tTransferAmount (#1304)
Variable PogChart.reflectionFromToken(uint256,bool).rTransferAmount (#961) is too similar to PogChart._transferFromExcluded(address,address,uint256).tTransferAmount (#1252)
Variable PogChart._transferStandard(address,address,uint256).rTransferAmount (#1209) is too similar to PogChart._getValues(uint256).tTransferAmount (#1304)
Variable PogChart._transferToExcluded(address,address,uint256).rTransferAmount (#1229) is too similar to PogChart._getValues(uint256).tTransferAmount (#1304)
Variable PogChart._transferToExcluded(address,address,uint256).rTransferAmount (#1229) is too similar to PogChart._getTValues(uint256).tTransferAmount (#1335)
Variable PogChart.reflectionFromToken(uint256,bool).rTransferAmount (#961) is too similar to PogChart._getValues(uint256).tTransferAmount (#1304)
Variable PogChart._transferStandard(address,address,uint256).rTransferAmount (#1209) is too similar to PogChart._getTValues(uint256).tTransferAmount (#1335)
Variable PogChart._transferStandard(address,address,uint256).rTransferAmount (#1209) is too similar to PogChart._transferStandard(address,address,uint256).tTransferAmount (#1211)
Variable PogChart._transferToExcluded(address,address,uint256).rTransferAmount (#1229) is too similar to PogChart._transferStandard(address,address,uint256).tTransferAmount (#1211)
Variable PogChart._transferStandard(address,address,uint256).rTransferAmount (#1209) is too similar to PogChart._transferToExcluded(address,address,uint256).tTransferAmount (#1231)
Variable PogChart._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1356) is too similar to PogChart._transferBothExcluded(address,address,uint256).tTransferAmount (#1273)
Variable PogChart.reflectionFromToken(uint256,bool).rTransferAmount (#961) is too similar to PogChart._transferToExcluded(address,address,uint256).tTransferAmount (#1231)
Variable PogChart._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1356) is too similar to PogChart._transferStandard(address,address,uint256).tTransferAmount (#1211)
Variable PogChart._getValues(uint256).rTransferAmount (#1308) is too similar to PogChart._getTValues(uint256).tTransferAmount (#1335)
Variable PogChart._transferToExcluded(address,address,uint256).rTransferAmount (#1229) is too similar to PogChart._transferBothExcluded(address,address,uint256).tTransferAmount (#1273)
Variable PogChart._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1356) is too similar to PogChart._transferToExcluded(address,address,uint256).tTransferAmount (#1231)
Variable PogChart._transferFromExcluded(address,address,uint256).rTransferAmount (#1250) is too similar to PogChart._getTValues(uint256).tTransferAmount (#1335)
Variable PogChart._transferBothExcluded(address,address,uint256).rTransferAmount (#1271) is too similar to PogChart._getTValues(uint256).tTransferAmount (#1335)
Variable PogChart._getValues(uint256).rTransferAmount (#1308) is too similar to PogChart._transferBothExcluded(address,address,uint256).tTransferAmount (#1273)
Variable PogChart._getValues(uint256).rTransferAmount (#1308) is too similar to PogChart._transferStandard(address,address,uint256).tTransferAmount (#1211)
Variable PogChart._transferBothExcluded(address,address,uint256).rTransferAmount (#1271) is too similar to PogChart._transferBothExcluded(address,address,uint256).tTransferAmount (#1273)
Variable PogChart._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1356) is too similar to PogChart._getValues(uint256).tTransferAmount (#1304)
Variable PogChart._transferFromExcluded(address,address,uint256).rTransferAmount (#1250) is too similar to PogChart._transferBothExcluded(address,address,uint256).tTransferAmount (#1273)
Variable PogChart._transferBothExcluded(address,address,uint256).rTransferAmount (#1271) is too similar to PogChart._transferStandard(address,address,uint256).tTransferAmount (#1211)
Variable PogChart._transferFromExcluded(address,address,uint256).rTransferAmount (#1250) is too similar to PogChart._transferStandard(address,address,uint256).tTransferAmount (#1211)
Variable PogChart._getValues(uint256).rTransferAmount (#1308) is too similar to PogChart._transferToExcluded(address,address,uint256).tTransferAmount (#1231)
Variable PogChart._transferBothExcluded(address,address,uint256).rTransferAmount (#1271) is too similar to PogChart._transferToExcluded(address,address,uint256).tTransferAmount (#1231)
Variable PogChart._getValues(uint256).rTransferAmount (#1308) is too similar to PogChart._getValues(uint256).tTransferAmount (#1304)
Variable PogChart._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1356) is too similar to PogChart._transferFromExcluded(address,address,uint256).tTransferAmount (#1252)
Variable PogChart._transferFromExcluded(address,address,uint256).rTransferAmount (#1250) is too similar to PogChart._transferToExcluded(address,address,uint256).tTransferAmount (#1231)
Variable PogChart._transferFromExcluded(address,address,uint256).rTransferAmount (#1250) is too similar to PogChart._getValues(uint256).tTransferAmount (#1304)
Variable PogChart._getValues(uint256).rTransferAmount (#1308) is too similar to PogChart._transferFromExcluded(address,address,uint256).tTransferAmount (#1252)
Variable PogChart.reflectionFromToken(uint256,bool).rTransferAmount (#961) is too similar to PogChart._getTValues(uint256).tTransferAmount (#1335)
Variable PogChart._transferStandard(address,address,uint256).rTransferAmount (#1209) is too similar to PogChart._transferBothExcluded(address,address,uint256).tTransferAmount (#1273)
Variable PogChart.reflectionFromToken(uint256,bool).rTransferAmount (#961) is too similar to PogChart._transferBothExcluded(address,address,uint256).tTransferAmount (#1273)
Variable PogChart.reflectionFromToken(uint256,bool).rTransferAmount (#961) is too similar to PogChart._transferStandard(address,address,uint256).tTransferAmount (#1211)
Variable PogChart._transferFromExcluded(address,address,uint256).rTransferAmount (#1250) is too similar to PogChart._transferFromExcluded(address,address,uint256).tTransferAmount (#1252)
Variable PogChart._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1356) is too similar to PogChart._getTValues(uint256).tTransferAmount (#1335)
Prevent variables from having similar names.

Additional information: link

PogChart.slitherConstructorVariables() (#600-1545) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#613-614)
PogChart.slitherConstructorVariables() (#600-1545) uses literals with too many digits:
- gasMaxLimit = 50000000 (#669)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#210) is never used in PogChart (#600-1545)
Remove unused state variables.

Additional information: link

Ownable._lockTime (#211) should be constant
Ownable._previousOwner (#210) should be constant
PogChart.minimumTokensBeforeSwap (#681) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#247-249)
getTime() should be declared external:
- Ownable.getTime() (#251-253)
setSwapAndLiquifyEnabled(bool) should be declared external:
- PogChart.setSwapAndLiquifyEnabled(bool) (#1494-1497)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Unable to find Twitter account


Telegram account has less than 100 subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find website, listings and other project-related information


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for PogChart