MetaverseNetwork Token Logo

NUUM [MetaverseNetwork] Token

ALERT: honeypot scam

About NUUM

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 30 May 2022

report
Token seems to be a scam (type: honeypot scam).

MetaverseNetwork.swapETHForTokensAndBurn(uint256) (#911-927) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#919-924)
MetaverseNetwork.swapETHForTokensToHere(uint256) (#929-944) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,address(this),block.timestamp.add(300)) (#936-941)
MetaverseNetwork.addLiquidity(uint256,uint256) (#946-959) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#951-958)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

MetaverseNetwork._transfer(address,address,uint256) (#716-866) uses a weak PRNG: "_bBSLimit = _bBSLimitMin + uint256(keccak256(bytes)(abi.encodePacked(block.timestamp,block.difficulty))) % (buyBackSellLimit - _bBSLimitMin + 1) (#798)"
Do not use block.timestamp, now or blockhash as a source of randomness

Additional information: link

Reentrancy in MetaverseNetwork._transfer(address,address,uint256) (#716-866):
External calls:
- swapTokens(contractTokenBalance) (#784)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#899-905)
- buyBackTokens(_bBSLimit) (#802)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#919-924)
External calls sending eth:
- swapTokens(contractTokenBalance) (#784)
- recipient.transfer(amount) (#1277)
- buyBackTokens(_bBSLimit) (#802)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#919-924)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#865)
- _rOwned[vaultRewardAddress] = _rOwned[vaultRewardAddress].add(rVault) (#1073)
- _rOwned[liquidityWallet] = _rOwned[liquidityWallet].add(rLiquidity) (#1066)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#986)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#976)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1009)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#998)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#977)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#999)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#988)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1011)
- _tokenTransfer(from,to,amount) (#865)
- _rTotal = _rTotal.sub(rFee) (#1019)
- _tokenTransfer(from,to,amount) (#865)
- _tOwned[vaultRewardAddress] = _tOwned[vaultRewardAddress].add(tVault) (#1075)
- _tOwned[liquidityWallet] = _tOwned[liquidityWallet].add(tLiquidity) (#1068)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1008)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#997)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#987)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1010)
- buyBackTokens(_bBSLimit) (#802)
- inSwapAndLiquify = true (#529)
- inSwapAndLiquify = false (#531)
Apply the check-effects-interactions pattern.

Additional information: link


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


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.


Contract ownership is not renounced (belongs to a wallet)

Low level call in Address.sendValue(address,uint256) (#96-102):
- (success) = recipient.call{value: amount}() (#100)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#122-139):
- (success,returndata) = target.call{value: weiValue}(data) (#125)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

MetaverseNetwork._transfer(address,address,uint256) (#716-866) performs a multiplication on the result of a division:
-buyBackSellLimit = balance.div(_buyBackDivisor) (#791)
-_bBSLimitMin = buyBackSellLimit.mul(_buyBackRangeRate).div(100) (#795)
MetaverseNetwork.swapTokens(uint256) (#868-881) performs a multiplication on the result of a division:
-transferToAddressETH(charityAddress,convertedBalance.div(_liquidityFee).mul(charityDivisor)) (#875)
MetaverseNetwork.swapTokens(uint256) (#868-881) performs a multiplication on the result of a division:
-transferToAddressETH(developmentAddress,convertedBalance.div(_liquidityFee).mul(developmentDivisor)) (#877)
MetaverseNetwork.swapTokens(uint256) (#868-881) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,convertedBalance.div(_liquidityFee).mul(marketingDivisor)) (#879)
Consider ordering multiplication before division.

Additional information: link

MetaverseNetwork.addLiquidity(uint256,uint256) (#946-959) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#951-958)
Ensure that all the return values of the function calls are used.

Additional information: link

MetaverseNetwork.allowance(address,address).owner (#591) shadows:
- Ownable.owner() (#155-157) (function)
MetaverseNetwork._approve(address,address,uint256).owner (#708) shadows:
- Ownable.owner() (#155-157) (function)
Rename the local variables that shadow another component.

Additional information: link

MetaverseNetwork.SetBuyBackDivisor(uint256) (#1134-1136) should emit an event for:
- _buyBackDivisor = newDivisor (#1135)
MetaverseNetwork.SetBuyBackRangeRate(uint256) (#1138-1141) should emit an event for:
- _buyBackRangeRate = newPercent (#1140)
MetaverseNetwork.SetSwapMinutes(uint256) (#1147-1149) should emit an event for:
- _intervalMinutesForSwap = newMinutes * 60 (#1148)
MetaverseNetwork.setTaxFeePercent(uint256) (#1151-1153) should emit an event for:
- _taxFee = taxFee (#1152)
MetaverseNetwork.setVaultFeePercent(uint256) (#1155-1157) should emit an event for:
- _vaultFee = vaultFee (#1156)
MetaverseNetwork.setBuyFee(uint256,uint256,uint256) (#1160-1164) should emit an event for:
- _buyTaxFee = buyTaxFee (#1161)
- _buyVaultFee = buyVaultFee (#1162)
- _buyLiquidityFee = buyLiquidityFee (#1163)
MetaverseNetwork.setSellFee(uint256,uint256,uint256) (#1166-1170) should emit an event for:
- _sellTaxFee = sellTaxFee (#1167)
- _sellVaultFee = sellVaultFee (#1168)
- _sellLiquidityFee = sellLiquidityFee (#1169)
MetaverseNetwork.setLiquidityFeePercent(uint256) (#1172-1174) should emit an event for:
- _liquidityFee = liquidityFee (#1173)
MetaverseNetwork.setBuyBackSellLimit(uint256) (#1176-1178) should emit an event for:
- buyBackSellLimit = buyBackSellSetLimit (#1177)
MetaverseNetwork.setBuyMaxTxAmount(uint256) (#1180-1182) should emit an event for:
- _bMaxTxAmount = bMaxTxAmount (#1181)
MetaverseNetwork.setSellMaxTxAmount(uint256) (#1184-1186) should emit an event for:
- _sMaxTxAmount = sMaxTxAmount (#1185)
MetaverseNetwork.setTriggerAmount(uint256) (#1188-1190) should emit an event for:
- _trigger = trigger (#1189)
MetaverseNetwork.setMarketingDivisor(uint256) (#1192-1194) should emit an event for:
- marketingDivisor = divisor (#1193)
MetaverseNetwork.setDevelopmentDivisor(uint256) (#1196-1198) should emit an event for:
- developmentDivisor = divisor (#1197)
MetaverseNetwork.setCharityDivisor(uint256) (#1200-1202) should emit an event for:
- charityDivisor = divisor (#1201)
MetaverseNetwork.setNumTokensSellToAddToBuyBack(uint256) (#1204-1206) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#1205)
Emit an event for critical parameter changes.

Additional information: link

MetaverseNetwork.setPairAddress(address).newPair (#647) lacks a zero-check on :
- uniswapV2Pair = newPair (#648)
MetaverseNetwork.setLiquidityAddress(address).newLiquidityWallet (#652) lacks a zero-check on :
- liquidityWallet = newLiquidityWallet (#653)
MetaverseNetwork.setMarketingAddress(address)._marketingAddress (#1208) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#1209)
MetaverseNetwork.setDevelopmentAddress(address)._developmentAddress (#1213) lacks a zero-check on :
- developmentAddress = address(_developmentAddress) (#1214)
MetaverseNetwork.setCharityAddress(address)._charityAddress (#1218) lacks a zero-check on :
- charityAddress = address(_charityAddress) (#1219)
MetaverseNetwork.setVaultAddress(address)._vaultAddress (#1223) lacks a zero-check on :
- vaultRewardAddress = address(_vaultAddress) (#1224)
Check that the address is not zero.

Additional information: link

Reentrancy in MetaverseNetwork._transfer(address,address,uint256) (#716-866):
External calls:
- swapTokens(contractTokenBalance) (#784)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#899-905)
External calls sending eth:
- swapTokens(contractTokenBalance) (#784)
- recipient.transfer(amount) (#1277)
State variables written after the call(s):
- buyBackSellLimit = balance.div(_buyBackDivisor) (#791)
Reentrancy in MetaverseNetwork._transfer(address,address,uint256) (#716-866):
External calls:
- swapTokens(contractTokenBalance) (#784)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#899-905)
- buyBackTokens(_bBSLimit) (#802)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#919-924)
External calls sending eth:
- swapTokens(contractTokenBalance) (#784)
- recipient.transfer(amount) (#1277)
- buyBackTokens(_bBSLimit) (#802)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#919-924)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#865)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1020)
- _tempLiquidityFee = 0 (#813)
- _tempLiquidityFee = _liquidityFee (#819)
- _tempLiquidityFee = _buyLiquidityFee (#825)
- _tempLiquidityFee = _sellLiquidityFee (#831)
- _tempLiquidityFee = _addressFees[from]._liquidityFee (#839)
- _tempLiquidityFee = _addressFees[from]._sellLiquidityFee (#845)
- _tempLiquidityFee = _addressFees[to]._liquidityFee (#854)
- _tempLiquidityFee = _addressFees[to]._buyLiquidityFee (#859)
- _tempTaxFee = 0 (#811)
- _tempTaxFee = _taxFee (#817)
- _tempTaxFee = _buyTaxFee (#823)
- _tempTaxFee = _sellTaxFee (#829)
- _tempTaxFee = _addressFees[from]._taxFee (#836)
- _tempTaxFee = _addressFees[from]._sellTaxFee (#843)
- _tempTaxFee = _addressFees[to]._taxFee (#852)
- _tempTaxFee = _addressFees[to]._buyTaxFee (#857)
- _tempVaultFee = 0 (#812)
- _tempVaultFee = _vaultFee (#818)
- _tempVaultFee = _buyVaultFee (#824)
- _tempVaultFee = _sellVaultFee (#830)
- _tempVaultFee = _addressFees[from]._vaultFee (#837)
- _tempVaultFee = _addressFees[from]._sellVaultFee (#844)
- _tempVaultFee = _addressFees[to]._vaultFee (#853)
- _tempVaultFee = _addressFees[to]._buyVaultFee (#858)
Reentrancy in MetaverseNetwork.changeRouterVersion(address) (#1280-1293):
External calls:
- _pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1286-1287)
State variables written after the call(s):
- uniswapV2Pair = _pair (#1289)
- uniswapV2Router = _uniswapV2Router (#1292)
Reentrancy in MetaverseNetwork.constructor() (#534-563):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#544-545)
State variables written after the call(s):
- excludeFromReward(uniswapV2Pair) (#557)
- _excluded.push(account) (#692)
- excludeFromReward(deadAddress) (#558)
- _excluded.push(account) (#692)
- excludeFromReward(uniswapV2Pair) (#557)
- _isExcluded[account] = true (#691)
- excludeFromReward(deadAddress) (#558)
- _isExcluded[account] = true (#691)
- _isExcludedFromFee[owner()] = true (#550)
- _isExcludedFromFee[liquidityWallet] = true (#551)
- _isExcludedFromFee[marketingAddress] = true (#552)
- _isExcludedFromFee[developmentAddress] = true (#553)
- _isExcludedFromFee[vaultRewardAddress] = true (#554)
- _isExcludedFromFee[charityAddress] = true (#555)
- _startTimeForSwap = block.timestamp (#560)
- excludeFromReward(uniswapV2Pair) (#557)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#689)
- excludeFromReward(deadAddress) (#558)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#689)
- uniswapV2Router = _uniswapV2Router (#547)
Reentrancy in MetaverseNetwork.manualSwapAndLiquifyBNB(uint256) (#1307-1328):
External calls:
- swapETHForTokensToHere(half) (#1319)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,address(this),block.timestamp.add(300)) (#936-941)
- addLiquidity(newTokenBalance,otherHalf) (#1325)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#951-958)
State variables written after the call(s):
- addLiquidity(newTokenBalance,otherHalf) (#1325)
- _allowances[owner][spender] = amount (#712)
Reentrancy in MetaverseNetwork.manualSwapAndLiquifyTokens(uint256) (#1332-1353):
External calls:
- swapTokensForEth(half) (#1344)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#899-905)
- addLiquidity(otherHalf,newBalance) (#1350)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#951-958)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1350)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#951-958)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1350)
- _allowances[owner][spender] = amount (#712)
Reentrancy in MetaverseNetwork.setRouterAddressAndCreatePair(address) (#634-638):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#636)
State variables written after the call(s):
- uniswapV2Router = _newPancakeRouter (#637)
Reentrancy in MetaverseNetwork.transferFrom(address,address,uint256) (#600-604):
External calls:
- _transfer(sender,recipient,amount) (#601)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#919-924)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#899-905)
External calls sending eth:
- _transfer(sender,recipient,amount) (#601)
- recipient.transfer(amount) (#1277)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#919-924)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#602)
- _allowances[owner][spender] = amount (#712)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MetaverseNetwork._transfer(address,address,uint256) (#716-866):
External calls:
- swapTokens(contractTokenBalance) (#784)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#899-905)
- buyBackTokens(_bBSLimit) (#802)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#919-924)
External calls sending eth:
- swapTokens(contractTokenBalance) (#784)
- recipient.transfer(amount) (#1277)
- buyBackTokens(_bBSLimit) (#802)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#919-924)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#926)
- buyBackTokens(_bBSLimit) (#802)
- Transfer(sender,recipient,tTransferAmount) (#981)
- _tokenTransfer(from,to,amount) (#865)
- Transfer(sender,recipient,tTransferAmount) (#992)
- _tokenTransfer(from,to,amount) (#865)
- Transfer(sender,recipient,tTransferAmount) (#1003)
- _tokenTransfer(from,to,amount) (#865)
- Transfer(sender,recipient,tTransferAmount) (#1015)
- _tokenTransfer(from,to,amount) (#865)
Reentrancy in MetaverseNetwork.constructor() (#534-563):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#544-545)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#562)
Reentrancy in MetaverseNetwork.manualSwapAndLiquifyBNB(uint256) (#1307-1328):
External calls:
- swapETHForTokensToHere(half) (#1319)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,address(this),block.timestamp.add(300)) (#936-941)
- addLiquidity(newTokenBalance,otherHalf) (#1325)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#951-958)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#713)
- addLiquidity(newTokenBalance,otherHalf) (#1325)
- SwapAndLiquifyBNB(half,newTokenBalance,otherHalf) (#1327)
Reentrancy in MetaverseNetwork.manualSwapAndLiquifyTokens(uint256) (#1332-1353):
External calls:
- swapTokensForEth(half) (#1344)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#899-905)
- addLiquidity(otherHalf,newBalance) (#1350)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#951-958)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1350)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#951-958)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#713)
- addLiquidity(otherHalf,newBalance) (#1350)
- SwapAndLiquifyTokens(half,newBalance,otherHalf) (#1352)
Reentrancy in MetaverseNetwork.swapETHForTokensAndBurn(uint256) (#911-927):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#919-924)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#926)
Reentrancy in MetaverseNetwork.swapETHForTokensToHere(uint256) (#929-944):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,address(this),block.timestamp.add(300)) (#936-941)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#943)
Reentrancy in MetaverseNetwork.swapTokensForEth(uint256) (#890-908):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#899-905)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#907)
Reentrancy in MetaverseNetwork.transferFrom(address,address,uint256) (#600-604):
External calls:
- _transfer(sender,recipient,amount) (#601)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#919-924)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#899-905)
External calls sending eth:
- _transfer(sender,recipient,amount) (#601)
- recipient.transfer(amount) (#1277)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#919-924)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#713)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#602)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#190-195) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#192)
MetaverseNetwork._transfer(address,address,uint256) (#716-866) uses timestamp for comparisons
Dangerous comparisons:
- cooldown[to] > block.timestamp (#738)
- cooldown[to] > block.timestamp + 1680 (#739)
- cooldown[to] > block.timestamp + 79200 (#741)
- cooldown[to] > block.timestamp (#753)
- cooldown[from] > 600 (#766)
- require(bool,string)(cooldown[from] < block.timestamp,Antibotmode active for first few hours: sell cooldown for your address is not elapsed. Sell cooldown is caused by repeat purchases, if you did not repeat purchase just wait 10 minutes.) (#767)
- overMinimumTokenBalance && _startTimeForSwap + _intervalMinutesForSwap <= block.timestamp (#780)
- balance > _bBSLimit (#801)
MetaverseNetwork.buyBackTokens(uint256) (#884-888) uses timestamp for comparisons
Dangerous comparisons:
- amount > 0 (#885)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#85-94) uses assembly
- INLINE ASM (#92)
Address._functionCallWithValue(address,bytes,uint256,string) (#122-139) uses assembly
- INLINE ASM (#131-134)
Do not use evm assembly.

Additional information: link

MetaverseNetwork._transfer(address,address,uint256) (#716-866) compares to a boolean constant:
-tradingOpen == true (#724)
MetaverseNetwork._transfer(address,address,uint256) (#716-866) compares to a boolean constant:
-require(bool,string)(bots[from] != true,No bot transactions during antibotmode.) (#730)
MetaverseNetwork._transfer(address,address,uint256) (#716-866) compares to a boolean constant:
-_cooldownMode == true (#765)
MetaverseNetwork._transfer(address,address,uint256) (#716-866) compares to a boolean constant:
-_abmode == true (#729)
MetaverseNetwork._transfer(address,address,uint256) (#716-866) compares to a boolean constant:
-_cooldownMode == true (#737)
MetaverseNetwork._transfer(address,address,uint256) (#716-866) compares to a boolean constant:
-tradingOpen == false (#732)
Remove the equality to the boolean constant.

Additional information: link

MetaverseNetwork.includeInReward(address) (#695-706) has costly operations inside a loop:
- _excluded.pop() (#702)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#122-139) is never used and should be removed
Address.functionCall(address,bytes) (#105-107) is never used and should be removed
Address.functionCall(address,bytes,string) (#109-111) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#113-115) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#117-120) is never used and should be removed
Address.isContract(address) (#85-94) is never used and should be removed
Address.sendValue(address,uint256) (#96-102) is never used and should be removed
Context._msgData() (#8-11) is never used and should be removed
MetaverseNetwork._getSellBnBAmount(uint256) (#1123-1132) is never used and should be removed
SafeMath.mod(uint256,uint256) (#73-75) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#77-80) is never used and should be removed
Remove unused functions.

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#235) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#236) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#252) is not in mixedCase
Function IUniswapV2Router01.WETH() (#273) is not in mixedCase
Parameter MetaverseNetwork.calculateTaxFee(uint256)._amount (#1078) is not in mixedCase
Parameter MetaverseNetwork.calculateVaultFee(uint256)._amount (#1084) is not in mixedCase
Parameter MetaverseNetwork.calculateLiquidityFee(uint256)._amount (#1090) is not in mixedCase
Parameter MetaverseNetwork.checkIfOnBotList(address)._address (#1119) is not in mixedCase
Function MetaverseNetwork.SetBuyBackDivisor(uint256) (#1134-1136) is not in mixedCase
Function MetaverseNetwork.SetBuyBackRangeRate(uint256) (#1138-1141) is not in mixedCase
Function MetaverseNetwork.GetSwapMinutes() (#1143-1145) is not in mixedCase
Function MetaverseNetwork.SetSwapMinutes(uint256) (#1147-1149) is not in mixedCase
Parameter MetaverseNetwork.setNumTokensSellToAddToBuyBack(uint256)._minimumTokensBeforeSwap (#1204) is not in mixedCase
Parameter MetaverseNetwork.setMarketingAddress(address)._marketingAddress (#1208) is not in mixedCase
Parameter MetaverseNetwork.setDevelopmentAddress(address)._developmentAddress (#1213) is not in mixedCase
Parameter MetaverseNetwork.setCharityAddress(address)._charityAddress (#1218) is not in mixedCase
Parameter MetaverseNetwork.setVaultAddress(address)._vaultAddress (#1223) is not in mixedCase
Parameter MetaverseNetwork.setSwapAndLiquifyEnabled(bool)._enabled (#1228) is not in mixedCase
Parameter MetaverseNetwork.setABMode(bool)._enabled (#1233) is not in mixedCase
Parameter MetaverseNetwork.setCooldownMode(bool)._enabled (#1238) is not in mixedCase
Parameter MetaverseNetwork.setBuyBackEnabled(bool)._enabled (#1243) is not in mixedCase
Parameter MetaverseNetwork.setTradingOpen(bool)._status (#1272) is not in mixedCase
Parameter MetaverseNetwork.changeRouterVersion(address)._router (#1280) is not in mixedCase
Parameter MetaverseNetwork.transferForeignToken(address,address)._token (#1300) is not in mixedCase
Parameter MetaverseNetwork.transferForeignToken(address,address)._to (#1300) is not in mixedCase
Function MetaverseNetwork.SweepStuck(uint256) (#1356-1358) is not in mixedCase
Parameter MetaverseNetwork.SweepStuck(uint256)._amount (#1356) is not in mixedCase
Parameter MetaverseNetwork.setAddressFee(address,bool,uint256,uint256,uint256)._address (#1360) is not in mixedCase
Parameter MetaverseNetwork.setAddressFee(address,bool,uint256,uint256,uint256)._enable (#1360) is not in mixedCase
Parameter MetaverseNetwork.setAddressFee(address,bool,uint256,uint256,uint256)._addressTaxFee (#1360) is not in mixedCase
Parameter MetaverseNetwork.setAddressFee(address,bool,uint256,uint256,uint256)._addressVaultFee (#1360) is not in mixedCase
Parameter MetaverseNetwork.setAddressFee(address,bool,uint256,uint256,uint256)._addressLiquidityFee (#1360) is not in mixedCase
Parameter MetaverseNetwork.setBuyAddressFee(address,bool,uint256,uint256,uint256)._address (#1367) is not in mixedCase
Parameter MetaverseNetwork.setBuyAddressFee(address,bool,uint256,uint256,uint256)._enable (#1367) is not in mixedCase
Parameter MetaverseNetwork.setBuyAddressFee(address,bool,uint256,uint256,uint256)._addressTaxFee (#1367) is not in mixedCase
Parameter MetaverseNetwork.setBuyAddressFee(address,bool,uint256,uint256,uint256)._addressVaultFee (#1367) is not in mixedCase
Parameter MetaverseNetwork.setBuyAddressFee(address,bool,uint256,uint256,uint256)._addressLiquidityFee (#1367) is not in mixedCase
Parameter MetaverseNetwork.setSellAddressFee(address,bool,uint256,uint256,uint256)._address (#1374) is not in mixedCase
Parameter MetaverseNetwork.setSellAddressFee(address,bool,uint256,uint256,uint256)._enable (#1374) is not in mixedCase
Parameter MetaverseNetwork.setSellAddressFee(address,bool,uint256,uint256,uint256)._addressTaxFee (#1374) is not in mixedCase
Parameter MetaverseNetwork.setSellAddressFee(address,bool,uint256,uint256,uint256)._addressVaultFee (#1374) is not in mixedCase
Parameter MetaverseNetwork.setSellAddressFee(address,bool,uint256,uint256,uint256)._addressLiquidityFee (#1374) is not in mixedCase
Constant MetaverseNetwork._tTotal (#431) is not in UPPER_CASE_WITH_UNDERSCORES
Constant MetaverseNetwork._name (#435) is not in UPPER_CASE_WITH_UNDERSCORES
Constant MetaverseNetwork._symbol (#436) is not in UPPER_CASE_WITH_UNDERSCORES
Constant MetaverseNetwork._decimals (#437) is not in UPPER_CASE_WITH_UNDERSCORES
Variable MetaverseNetwork._taxFee (#452) is not in mixedCase
Variable MetaverseNetwork._vaultFee (#453) is not in mixedCase
Variable MetaverseNetwork._liquidityFee (#454) is not in mixedCase
Variable MetaverseNetwork._buyTaxFee (#461) is not in mixedCase
Variable MetaverseNetwork._buyVaultFee (#462) is not in mixedCase
Variable MetaverseNetwork._buyLiquidityFee (#463) is not in mixedCase
Variable MetaverseNetwork._sellTaxFee (#465) is not in mixedCase
Variable MetaverseNetwork._sellVaultFee (#466) is not in mixedCase
Variable MetaverseNetwork._sellLiquidityFee (#467) is not in mixedCase
Variable MetaverseNetwork._startTimeForSwap (#469) is not in mixedCase
Variable MetaverseNetwork._intervalMinutesForSwap (#470) is not in mixedCase
Variable MetaverseNetwork._buyBackRangeRate (#472) is not in mixedCase
Variable MetaverseNetwork._addressFees (#475) is not in mixedCase
Variable MetaverseNetwork._bMaxTxAmount (#481) is not in mixedCase
Variable MetaverseNetwork._sMaxTxAmount (#482) is not in mixedCase
Variable MetaverseNetwork._buyBackDivisor (#489) is not in mixedCase
Variable MetaverseNetwork._buyBackTimeInterval (#490) is not in mixedCase
Variable MetaverseNetwork._isEnabledBuyBackAndBurn (#499) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#9)" inContext (#3-12)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in MetaverseNetwork._transfer(address,address,uint256) (#716-866):
External calls:
- swapTokens(contractTokenBalance) (#784)
- recipient.transfer(amount) (#1277)
State variables written after the call(s):
- buyBackSellLimit = balance.div(_buyBackDivisor) (#791)
Reentrancy in MetaverseNetwork._transfer(address,address,uint256) (#716-866):
External calls:
- swapTokens(contractTokenBalance) (#784)
- recipient.transfer(amount) (#1277)
External calls sending eth:
- swapTokens(contractTokenBalance) (#784)
- recipient.transfer(amount) (#1277)
- buyBackTokens(_bBSLimit) (#802)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#919-924)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#865)
- _rOwned[vaultRewardAddress] = _rOwned[vaultRewardAddress].add(rVault) (#1073)
- _rOwned[liquidityWallet] = _rOwned[liquidityWallet].add(rLiquidity) (#1066)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#986)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#976)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1009)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#998)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#977)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#999)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#988)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1011)
- _tokenTransfer(from,to,amount) (#865)
- _rTotal = _rTotal.sub(rFee) (#1019)
- _tokenTransfer(from,to,amount) (#865)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1020)
- _tokenTransfer(from,to,amount) (#865)
- _tOwned[vaultRewardAddress] = _tOwned[vaultRewardAddress].add(tVault) (#1075)
- _tOwned[liquidityWallet] = _tOwned[liquidityWallet].add(tLiquidity) (#1068)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1008)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#997)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#987)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1010)
- _tempLiquidityFee = 0 (#813)
- _tempLiquidityFee = _liquidityFee (#819)
- _tempLiquidityFee = _buyLiquidityFee (#825)
- _tempLiquidityFee = _sellLiquidityFee (#831)
- _tempLiquidityFee = _addressFees[from]._liquidityFee (#839)
- _tempLiquidityFee = _addressFees[from]._sellLiquidityFee (#845)
- _tempLiquidityFee = _addressFees[to]._liquidityFee (#854)
- _tempLiquidityFee = _addressFees[to]._buyLiquidityFee (#859)
- _tempTaxFee = 0 (#811)
- _tempTaxFee = _taxFee (#817)
- _tempTaxFee = _buyTaxFee (#823)
- _tempTaxFee = _sellTaxFee (#829)
- _tempTaxFee = _addressFees[from]._taxFee (#836)
- _tempTaxFee = _addressFees[from]._sellTaxFee (#843)
- _tempTaxFee = _addressFees[to]._taxFee (#852)
- _tempTaxFee = _addressFees[to]._buyTaxFee (#857)
- _tempVaultFee = 0 (#812)
- _tempVaultFee = _vaultFee (#818)
- _tempVaultFee = _buyVaultFee (#824)
- _tempVaultFee = _sellVaultFee (#830)
- _tempVaultFee = _addressFees[from]._vaultFee (#837)
- _tempVaultFee = _addressFees[from]._sellVaultFee (#844)
- _tempVaultFee = _addressFees[to]._vaultFee (#853)
- _tempVaultFee = _addressFees[to]._buyVaultFee (#858)
- buyBackTokens(_bBSLimit) (#802)
- inSwapAndLiquify = true (#529)
- inSwapAndLiquify = false (#531)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#926)
- buyBackTokens(_bBSLimit) (#802)
- Transfer(sender,recipient,tTransferAmount) (#981)
- _tokenTransfer(from,to,amount) (#865)
- Transfer(sender,recipient,tTransferAmount) (#1003)
- _tokenTransfer(from,to,amount) (#865)
- Transfer(sender,recipient,tTransferAmount) (#992)
- _tokenTransfer(from,to,amount) (#865)
- Transfer(sender,recipient,tTransferAmount) (#1015)
- _tokenTransfer(from,to,amount) (#865)
Reentrancy in MetaverseNetwork.transferFrom(address,address,uint256) (#600-604):
External calls:
- _transfer(sender,recipient,amount) (#601)
- recipient.transfer(amount) (#1277)
External calls sending eth:
- _transfer(sender,recipient,amount) (#601)
- recipient.transfer(amount) (#1277)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#919-924)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#602)
- _allowances[owner][spender] = amount (#712)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#713)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#602)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#278) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#279)
Variable MetaverseNetwork._bMaxTxAmount (#481) is too similar to MetaverseNetwork._sMaxTxAmount (#482)
Variable MetaverseNetwork.setBuyMaxTxAmount(uint256).bMaxTxAmount (#1180) is too similar to MetaverseNetwork.setSellMaxTxAmount(uint256).sMaxTxAmount (#1184)
Variable MetaverseNetwork._transferStandard(address,address,uint256).rTransferAmount (#975) is too similar to MetaverseNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#996)
Variable MetaverseNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#674) is too similar to MetaverseNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#1007)
Variable MetaverseNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#1007) is too similar to MetaverseNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#996)
Variable MetaverseNetwork._getValues(uint256).rTransferAmount (#1025) is too similar to MetaverseNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#1007)
Variable MetaverseNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#674) is too similar to MetaverseNetwork._getTValues(uint256).tTransferAmount (#1033)
Variable MetaverseNetwork._transferStandard(address,address,uint256).rTransferAmount (#975) is too similar to MetaverseNetwork._transferStandard(address,address,uint256).tTransferAmount (#975)
Variable MetaverseNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#985) is too similar to MetaverseNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#985)
Variable MetaverseNetwork._transferStandard(address,address,uint256).rTransferAmount (#975) is too similar to MetaverseNetwork._getValues(uint256).tTransferAmount (#1024)
Variable MetaverseNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#985) is too similar to MetaverseNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#996)
Variable MetaverseNetwork._transferStandard(address,address,uint256).rTransferAmount (#975) is too similar to MetaverseNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#1007)
Variable MetaverseNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#1007) is too similar to MetaverseNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#1007)
Variable MetaverseNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#996) is too similar to MetaverseNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#996)
Variable MetaverseNetwork._transferStandard(address,address,uint256).rTransferAmount (#975) is too similar to MetaverseNetwork._getTValues(uint256).tTransferAmount (#1033)
Variable MetaverseNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#985) is too similar to MetaverseNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#1007)
Variable MetaverseNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#674) is too similar to MetaverseNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#985)
Variable MetaverseNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#674) is too similar to MetaverseNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#996)
Variable MetaverseNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#674) is too similar to MetaverseNetwork._transferStandard(address,address,uint256).tTransferAmount (#975)
Variable MetaverseNetwork._getValues(uint256).rTransferAmount (#1025) is too similar to MetaverseNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#996)
Variable MetaverseNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#674) is too similar to MetaverseNetwork._getValues(uint256).tTransferAmount (#1024)
Variable MetaverseNetwork._transferStandard(address,address,uint256).rTransferAmount (#975) is too similar to MetaverseNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#985)
Variable MetaverseNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#985) is too similar to MetaverseNetwork._transferStandard(address,address,uint256).tTransferAmount (#975)
Variable MetaverseNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#1007) is too similar to MetaverseNetwork._getValues(uint256).tTransferAmount (#1024)
Variable MetaverseNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#996) is too similar to MetaverseNetwork._transferStandard(address,address,uint256).tTransferAmount (#975)
Variable MetaverseNetwork._getValues(uint256).rTransferAmount (#1025) is too similar to MetaverseNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#985)
Variable MetaverseNetwork._getValues(uint256).rTransferAmount (#1025) is too similar to MetaverseNetwork._getTValues(uint256).tTransferAmount (#1033)
Variable MetaverseNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#996) is too similar to MetaverseNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#1007)
Variable MetaverseNetwork._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1042) is too similar to MetaverseNetwork._transferStandard(address,address,uint256).tTransferAmount (#975)
Variable MetaverseNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#996) is too similar to MetaverseNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#985)
Variable MetaverseNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#985) is too similar to MetaverseNetwork._getTValues(uint256).tTransferAmount (#1033)
Variable MetaverseNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#996) is too similar to MetaverseNetwork._getTValues(uint256).tTransferAmount (#1033)
Variable MetaverseNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#1007) is too similar to MetaverseNetwork._transferStandard(address,address,uint256).tTransferAmount (#975)
Variable MetaverseNetwork._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1042) is too similar to MetaverseNetwork._transferBothExcluded(address,address,uint256).tTransferAmount (#1007)
Variable MetaverseNetwork._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1042) is too similar to MetaverseNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#985)
Variable MetaverseNetwork._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1042) is too similar to MetaverseNetwork._getTValues(uint256).tTransferAmount (#1033)
Variable MetaverseNetwork._getValues(uint256).rTransferAmount (#1025) is too similar to MetaverseNetwork._getValues(uint256).tTransferAmount (#1024)
Variable MetaverseNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#1007) is too similar to MetaverseNetwork._transferToExcluded(address,address,uint256).tTransferAmount (#985)
Variable MetaverseNetwork._transferToExcluded(address,address,uint256).rTransferAmount (#985) is too similar to MetaverseNetwork._getValues(uint256).tTransferAmount (#1024)
Variable MetaverseNetwork._transferBothExcluded(address,address,uint256).rTransferAmount (#1007) is too similar to MetaverseNetwork._getTValues(uint256).tTransferAmount (#1033)
Variable MetaverseNetwork._transferFromExcluded(address,address,uint256).rTransferAmount (#996) is too similar to MetaverseNetwork._getValues(uint256).tTransferAmount (#1024)
Variable MetaverseNetwork._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1042) is too similar to MetaverseNetwork._transferFromExcluded(address,address,uint256).tTransferAmount (#996)
Variable MetaverseNetwork._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1042) is too similar to MetaverseNetwork._getValues(uint256).tTransferAmount (#1024)
Variable MetaverseNetwork._getValues(uint256).rTransferAmount (#1025) is too similar to MetaverseNetwork._transferStandard(address,address,uint256).tTransferAmount (#975)
Prevent variables from having similar names.

Additional information: link

MetaverseNetwork.prepareForPreSale() (#1248-1258) uses literals with too many digits:
- _bMaxTxAmount = 1000000000 * 10 ** 9 (#1256)
MetaverseNetwork.prepareForPreSale() (#1248-1258) uses literals with too many digits:
- _sMaxTxAmount = 1000000000 * 10 ** 9 (#1257)
MetaverseNetwork.afterPreSale() (#1260-1270) uses literals with too many digits:
- _bMaxTxAmount = 6000000 * 10 ** 9 (#1267)
MetaverseNetwork.afterPreSale() (#1260-1270) uses literals with too many digits:
- _sMaxTxAmount = 3000000 * 10 ** 9 (#1268)
MetaverseNetwork.slitherConstructorVariables() (#408-1382) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#418)
MetaverseNetwork.slitherConstructorVariables() (#408-1382) uses literals with too many digits:
- _bMaxTxAmount = 1000000000 * 10 ** 9 (#481)
MetaverseNetwork.slitherConstructorVariables() (#408-1382) uses literals with too many digits:
- _sMaxTxAmount = 1000000000 * 10 ** 9 (#482)
MetaverseNetwork.slitherConstructorVariables() (#408-1382) uses literals with too many digits:
- _trigger = 1000000000 * 10 ** 9 (#483)
MetaverseNetwork.slitherConstructorConstantVariables() (#408-1382) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 9 (#431)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

MetaverseNetwork._buyBackTimeInterval (#490) should be constant
MetaverseNetwork._isEnabledBuyBackAndBurn (#499) should be constant
MetaverseNetwork.deadAddress (#418) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#164-167)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#169-173)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#175-177)
getTime() should be declared external:
- Ownable.getTime() (#179-181)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#183-188)
unlock() should be declared external:
- Ownable.unlock() (#190-195)
name() should be declared external:
- MetaverseNetwork.name() (#565-567)
symbol() should be declared external:
- MetaverseNetwork.symbol() (#569-571)
decimals() should be declared external:
- MetaverseNetwork.decimals() (#573-575)
totalSupply() should be declared external:
- MetaverseNetwork.totalSupply() (#577-579)
transfer(address,uint256) should be declared external:
- MetaverseNetwork.transfer(address,uint256) (#586-589)
allowance(address,address) should be declared external:
- MetaverseNetwork.allowance(address,address) (#591-593)
approve(address,uint256) should be declared external:
- MetaverseNetwork.approve(address,uint256) (#595-598)
transferFrom(address,address,uint256) should be declared external:
- MetaverseNetwork.transferFrom(address,address,uint256) (#600-604)
increaseAllowance(address,uint256) should be declared external:
- MetaverseNetwork.increaseAllowance(address,uint256) (#606-609)
decreaseAllowance(address,uint256) should be declared external:
- MetaverseNetwork.decreaseAllowance(address,uint256) (#611-614)
isExcludedFromReward(address) should be declared external:
- MetaverseNetwork.isExcludedFromReward(address) (#616-618)
totalFees() should be declared external:
- MetaverseNetwork.totalFees() (#620-622)
minimumTokensBeforeSwapAmount() should be declared external:
- MetaverseNetwork.minimumTokensBeforeSwapAmount() (#624-626)
buyBackSellLimitAmount() should be declared external:
- MetaverseNetwork.buyBackSellLimitAmount() (#628-630)
setRouterAddressAndCreatePair(address) should be declared external:
- MetaverseNetwork.setRouterAddressAndCreatePair(address) (#634-638)
setRouterAddress(address) should be declared external:
- MetaverseNetwork.setRouterAddress(address) (#641-644)
setPairAddress(address) should be declared external:
- MetaverseNetwork.setPairAddress(address) (#647-649)
setLiquidityAddress(address) should be declared external:
- MetaverseNetwork.setLiquidityAddress(address) (#652-655)
airdrop(uint256) should be declared external:
- MetaverseNetwork.airdrop(uint256) (#658-665)
reflectionFromToken(uint256,bool) should be declared external:
- MetaverseNetwork.reflectionFromToken(uint256,bool) (#668-677)
isExcludedFromFee(address) should be declared external:
- MetaverseNetwork.isExcludedFromFee(address) (#1096-1098)
excludeFromFee(address) should be declared external:
- MetaverseNetwork.excludeFromFee(address) (#1100-1102)
includeInFee(address) should be declared external:
- MetaverseNetwork.includeInFee(address) (#1104-1106)
setBots(address[]) should be declared external:
- MetaverseNetwork.setBots(address[]) (#1108-1113)
delBot(address) should be declared external:
- MetaverseNetwork.delBot(address) (#1115-1117)
checkIfOnBotList(address) should be declared external:
- MetaverseNetwork.checkIfOnBotList(address) (#1119-1121)
GetSwapMinutes() should be declared external:
- MetaverseNetwork.GetSwapMinutes() (#1143-1145)
setBuyBackEnabled(bool) should be declared external:
- MetaverseNetwork.setBuyBackEnabled(bool) (#1243-1246)
changeRouterVersion(address) should be declared external:
- MetaverseNetwork.changeRouterVersion(address) (#1280-1293)
transferForeignToken(address,address) should be declared external:
- MetaverseNetwork.transferForeignToken(address,address) (#1300-1304)
manualSwapAndLiquifyBNB(uint256) should be declared external:
- MetaverseNetwork.manualSwapAndLiquifyBNB(uint256) (#1307-1328)
manualSwapAndLiquifyTokens(uint256) should be declared external:
- MetaverseNetwork.manualSwapAndLiquifyTokens(uint256) (#1332-1353)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 0% buy tax and 99% sell tax.
Taxes are extremely high (over 30%)

Additional information: link


Average 30d number of PancakeSwap swaps is low.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Telegram and Twitter accounts


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


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


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 NUUM