Cycling Token Logo

CYC [Cycling] Token

About CYC

Listings

Token 2 years
CoinMarketCap 2 years
white paper

Cycling is a trending Move-to-earn lifestyle app with inbuilt Game-Fi and Social-Fi elements to improve everyone's health and help protecting the environment.
We help people have better live through Cycling App, which motivates increase their health and earn rewards.
Join us & Cycling for a green planet !!

Social

Laser Scorebeta Last Audit: 4 June 2022

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

Reentrancy in Cycling._transfer(address,address,uint256) (contracts/Cycling.sol#268-306):
External calls:
- swapTokens(contractTokenBalance) (contracts/Cycling.sol#291)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Cycling.sol#333-339)
External calls sending eth:
- swapTokens(contractTokenBalance) (contracts/Cycling.sol#291)
- recipient.transfer(amount) (contracts/Cycling.sol#652)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
- _liquidityFee = _previousLiquidityFee (contracts/Cycling.sol#590)
- _liquidityFee = 0 (contracts/Cycling.sol#585)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (contracts/Cycling.sol#561)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Cycling.sol#393)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Cycling.sol#413)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Cycling.sol#435)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Cycling.sol#456)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Cycling.sol#394)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Cycling.sol#415)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Cycling.sol#436)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Cycling.sol#458)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
- _rTotal = _rTotal.sub(rFee) (contracts/Cycling.sol#465)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (contracts/Cycling.sol#563)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/Cycling.sol#455)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/Cycling.sol#434)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/Cycling.sol#414)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/Cycling.sol#457)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains

Cycling.swapTokens(uint256) (contracts/Cycling.sol#308-322) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_liquidityFee).mul(marketingDivisor)) (contracts/Cycling.sol#314-317)
Cycling.swapTokens(uint256) (contracts/Cycling.sol#308-322) performs a multiplication on the result of a division:
-transferToAddressETH(burnAddress,transferredBalance.div(_liquidityFee).mul(burnDivisor)) (contracts/Cycling.sol#318-321)
Consider ordering multiplication before division.

Additional information: link

Cycling._rTotal (contracts/Cycling.sol#29) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Cycling._previousTaxFee (contracts/Cycling.sol#37) is set pre-construction with a non-constant function or state variable:
- _taxFee
Cycling._previousLiquidityFee (contracts/Cycling.sol#40) 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

Low level call in Address.sendValue(address,uint256) (contracts/Address.sol#17-23):
- (success) = recipient.call{value: amount}() (contracts/Address.sol#21)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (contracts/Address.sol#43-60):
- (success,returndata) = target.call{value: weiValue}(data) (contracts/Address.sol#46)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Redundant expression "this (contracts/Context.sol#11)" inContext (contracts/Context.sol#5-15)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Cycling.addLiquidity(uint256,uint256) (contracts/Cycling.sol#344-357) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/Cycling.sol#349-356)
Ensure that all the return values of the function calls are used.

Additional information: link

Cycling.allowance(address,address).owner (contracts/Cycling.sol#118) shadows:
- Ownable.owner() (contracts/Ownable.sol#15-17) (function)
Cycling._approve(address,address,uint256).owner (contracts/Cycling.sol#257) shadows:
- Ownable.owner() (contracts/Ownable.sol#15-17) (function)
Rename the local variables that shadow another component.

Additional information: link

Cycling.setTaxFeePercent(uint256) (contracts/Cycling.sol#605-608) should emit an event for:
- _taxFee = taxFee (contracts/Cycling.sol#607)
Cycling.setLiquidityFeePercent(uint256) (contracts/Cycling.sol#610-613) should emit an event for:
- _liquidityFee = liquidityFee (contracts/Cycling.sol#612)
Cycling.setMaxTxAmount(uint256) (contracts/Cycling.sol#615-618) should emit an event for:
- _maxTxAmount = maxTxAmount (contracts/Cycling.sol#617)
Cycling.setMarketingDivisor(uint256) (contracts/Cycling.sol#620-622) should emit an event for:
- marketingDivisor = divisor (contracts/Cycling.sol#621)
Cycling.setBurnDivisor(uint256) (contracts/Cycling.sol#624-626) should emit an event for:
- burnDivisor = divisor (contracts/Cycling.sol#625)
Cycling.setNumTokensSellToAddToLiquidity(uint256) (contracts/Cycling.sol#628-633) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (contracts/Cycling.sol#632)
Emit an event for critical parameter changes.

Additional information: link

Cycling.setMarketingAddress(address)._marketingAddress (contracts/Cycling.sol#635) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (contracts/Cycling.sol#636)
Cycling.setBurnAddress(address)._burnAddress (contracts/Cycling.sol#639) lacks a zero-check on :
- burnAddress = address(_burnAddress) (contracts/Cycling.sol#640)
Check that the address is not zero.

Additional information: link

Reentrancy in Cycling._transfer(address,address,uint256) (contracts/Cycling.sol#268-306):
External calls:
- swapTokens(contractTokenBalance) (contracts/Cycling.sol#291)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Cycling.sol#333-339)
External calls sending eth:
- swapTokens(contractTokenBalance) (contracts/Cycling.sol#291)
- recipient.transfer(amount) (contracts/Cycling.sol#652)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
- _previousLiquidityFee = _liquidityFee (contracts/Cycling.sol#582)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
- _previousTaxFee = _taxFee (contracts/Cycling.sol#581)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
- _tFeeTotal = _tFeeTotal.add(tFee) (contracts/Cycling.sol#466)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
- _taxFee = _previousTaxFee (contracts/Cycling.sol#589)
- _taxFee = 0 (contracts/Cycling.sol#584)
Reentrancy in Cycling.constructor() (contracts/Cycling.sol#71-86):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/Cycling.sol#77-78)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (contracts/Cycling.sol#82)
- _isExcludedFromFee[address(this)] = true (contracts/Cycling.sol#83)
- uniswapV2Router = _uniswapV2Router (contracts/Cycling.sol#80)
Reentrancy in Cycling.transferFrom(address,address,uint256) (contracts/Cycling.sol#136-151):
External calls:
- _transfer(sender,recipient,amount) (contracts/Cycling.sol#141)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Cycling.sol#333-339)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/Cycling.sol#141)
- recipient.transfer(amount) (contracts/Cycling.sol#652)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/Cycling.sol#142-149)
- _allowances[owner][spender] = amount (contracts/Cycling.sol#264)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Cycling._transfer(address,address,uint256) (contracts/Cycling.sol#268-306):
External calls:
- swapTokens(contractTokenBalance) (contracts/Cycling.sol#291)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Cycling.sol#333-339)
External calls sending eth:
- swapTokens(contractTokenBalance) (contracts/Cycling.sol#291)
- recipient.transfer(amount) (contracts/Cycling.sol#652)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (contracts/Cycling.sol#397)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
- Transfer(sender,recipient,tTransferAmount) (contracts/Cycling.sol#418)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
- Transfer(sender,recipient,tTransferAmount) (contracts/Cycling.sol#439)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
- Transfer(sender,recipient,tTransferAmount) (contracts/Cycling.sol#461)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
Reentrancy in Cycling.constructor() (contracts/Cycling.sol#71-86):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/Cycling.sol#77-78)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (contracts/Cycling.sol#85)
Reentrancy in Cycling.swapTokensForEth(uint256) (contracts/Cycling.sol#324-342):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Cycling.sol#333-339)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (contracts/Cycling.sol#341)
Reentrancy in Cycling.transferFrom(address,address,uint256) (contracts/Cycling.sol#136-151):
External calls:
- _transfer(sender,recipient,amount) (contracts/Cycling.sol#141)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Cycling.sol#333-339)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/Cycling.sol#141)
- recipient.transfer(amount) (contracts/Cycling.sol#652)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/Cycling.sol#265)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/Cycling.sol#142-149)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (contracts/Address.sol#6-15) uses assembly
- INLINE ASM (contracts/Address.sol#13)
Address._functionCallWithValue(address,bytes,uint256,string) (contracts/Address.sol#43-60) uses assembly
- INLINE ASM (contracts/Address.sol#52-55)
Do not use evm assembly.

Additional information: link

Different versions of Solidity is used:
- Version used: ['>=0.8.7', '^0.8.7']
- ^0.8.7 (contracts/Address.sol#3)
- ^0.8.7 (contracts/Context.sol#3)
- ^0.8.7 (contracts/Cycling.sol#2)
- ^0.8.7 (contracts/IERC20.sol#2)
- ^0.8.7 (contracts/IUniswapV2Factory.sol#3)
- >=0.8.7 (contracts/IUniswapV2Router01.sol#1)
- >=0.8.7 (contracts/IUniswapV2Router02.sol#2)
- ^0.8.7 (contracts/Ownable.sol#2)
- >=0.8.7 (contracts/SafeMath.sol#1)
Use one Solidity version.

Additional information: link

Cycling.includeInReward(address) (contracts/Cycling.sol#243-254) has costly operations inside a loop:
- _excluded.pop() (contracts/Cycling.sol#250)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (contracts/Address.sol#43-60) is never used and should be removed
Address.functionCall(address,bytes) (contracts/Address.sol#26-28) is never used and should be removed
Address.functionCall(address,bytes,string) (contracts/Address.sol#30-32) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (contracts/Address.sol#34-36) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (contracts/Address.sol#38-41) is never used and should be removed
Address.isContract(address) (contracts/Address.sol#6-15) is never used and should be removed
Address.sendValue(address,uint256) (contracts/Address.sol#17-23) is never used and should be removed
Context._msgData() (contracts/Context.sol#10-13) is never used and should be removed
Cycling.addLiquidity(uint256,uint256) (contracts/Cycling.sol#344-357) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/SafeMath.sol#47-49) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/SafeMath.sol#51-54) is never used and should be removed
Remove unused functions.

Additional information: link

Parameter Cycling.calculateTaxFee(uint256)._amount (contracts/Cycling.sol#566) is not in mixedCase
Parameter Cycling.calculateLiquidityFee(uint256)._amount (contracts/Cycling.sol#570) is not in mixedCase
Parameter Cycling.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (contracts/Cycling.sol#628) is not in mixedCase
Parameter Cycling.setMarketingAddress(address)._marketingAddress (contracts/Cycling.sol#635) is not in mixedCase
Parameter Cycling.setBurnAddress(address)._burnAddress (contracts/Cycling.sol#639) is not in mixedCase
Parameter Cycling.setSwapAndLiquifyEnabled(bool)._enabled (contracts/Cycling.sol#643) is not in mixedCase
Variable Cycling._taxFee (contracts/Cycling.sol#36) is not in mixedCase
Variable Cycling._liquidityFee (contracts/Cycling.sol#39) is not in mixedCase
Variable Cycling._maxTxAmount (contracts/Cycling.sol#45) is not in mixedCase
Function IUniswapV2Router01.WETH() (contracts/IUniswapV2Router01.sol#5) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in Cycling._transfer(address,address,uint256) (contracts/Cycling.sol#268-306):
External calls:
- swapTokens(contractTokenBalance) (contracts/Cycling.sol#291)
- recipient.transfer(amount) (contracts/Cycling.sol#652)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
- _liquidityFee = _previousLiquidityFee (contracts/Cycling.sol#590)
- _liquidityFee = 0 (contracts/Cycling.sol#585)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
- _previousLiquidityFee = _liquidityFee (contracts/Cycling.sol#582)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
- _previousTaxFee = _taxFee (contracts/Cycling.sol#581)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (contracts/Cycling.sol#561)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Cycling.sol#393)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Cycling.sol#413)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Cycling.sol#435)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Cycling.sol#456)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Cycling.sol#394)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Cycling.sol#415)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Cycling.sol#436)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Cycling.sol#458)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
- _rTotal = _rTotal.sub(rFee) (contracts/Cycling.sol#465)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
- _tFeeTotal = _tFeeTotal.add(tFee) (contracts/Cycling.sol#466)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (contracts/Cycling.sol#563)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/Cycling.sol#455)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/Cycling.sol#434)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/Cycling.sol#414)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/Cycling.sol#457)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
- _taxFee = _previousTaxFee (contracts/Cycling.sol#589)
- _taxFee = 0 (contracts/Cycling.sol#584)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (contracts/Cycling.sol#397)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
- Transfer(sender,recipient,tTransferAmount) (contracts/Cycling.sol#439)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
- Transfer(sender,recipient,tTransferAmount) (contracts/Cycling.sol#418)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
- Transfer(sender,recipient,tTransferAmount) (contracts/Cycling.sol#461)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Cycling.sol#305)
Reentrancy in Cycling.transferFrom(address,address,uint256) (contracts/Cycling.sol#136-151):
External calls:
- _transfer(sender,recipient,amount) (contracts/Cycling.sol#141)
- recipient.transfer(amount) (contracts/Cycling.sol#652)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/Cycling.sol#142-149)
- _allowances[owner][spender] = amount (contracts/Cycling.sol#264)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/Cycling.sol#265)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/Cycling.sol#142-149)
Apply the check-effects-interactions pattern.

Additional information: link

Variable Cycling._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Cycling.sol#428) is too similar to Cycling._getValues(uint256).tTransferAmount (contracts/Cycling.sol#482)
Variable Cycling._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Cycling.sol#407) is too similar to Cycling._getValues(uint256).tTransferAmount (contracts/Cycling.sol#482)
Variable Cycling._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/Cycling.sol#534) is too similar to Cycling._getTValues(uint256).tTransferAmount (contracts/Cycling.sol#513)
Variable Cycling._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Cycling.sol#407) is too similar to Cycling._getTValues(uint256).tTransferAmount (contracts/Cycling.sol#513)
Variable Cycling.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Cycling.sol#216) is too similar to Cycling._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Cycling.sol#430)
Variable Cycling._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/Cycling.sol#534) is too similar to Cycling._getValues(uint256).tTransferAmount (contracts/Cycling.sol#482)
Variable Cycling._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Cycling.sol#449) is too similar to Cycling._getValues(uint256).tTransferAmount (contracts/Cycling.sol#482)
Variable Cycling._getValues(uint256).rTransferAmount (contracts/Cycling.sol#486) is too similar to Cycling._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Cycling.sol#451)
Variable Cycling._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Cycling.sol#428) is too similar to Cycling._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Cycling.sol#451)
Variable Cycling._transferStandard(address,address,uint256).rTransferAmount (contracts/Cycling.sol#387) is too similar to Cycling._getTValues(uint256).tTransferAmount (contracts/Cycling.sol#513)
Variable Cycling._transferStandard(address,address,uint256).rTransferAmount (contracts/Cycling.sol#387) is too similar to Cycling._getValues(uint256).tTransferAmount (contracts/Cycling.sol#482)
Variable Cycling._getValues(uint256).rTransferAmount (contracts/Cycling.sol#486) is too similar to Cycling._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Cycling.sol#430)
Variable Cycling._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Cycling.sol#407) is too similar to Cycling._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Cycling.sol#451)
Variable Cycling._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Cycling.sol#407) is too similar to Cycling._transferStandard(address,address,uint256).tTransferAmount (contracts/Cycling.sol#389)
Variable Cycling._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/Cycling.sol#534) is too similar to Cycling._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Cycling.sol#451)
Variable Cycling._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Cycling.sol#428) is too similar to Cycling._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Cycling.sol#430)
Variable Cycling._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/Cycling.sol#534) is too similar to Cycling._transferStandard(address,address,uint256).tTransferAmount (contracts/Cycling.sol#389)
Variable Cycling._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Cycling.sol#449) is too similar to Cycling._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Cycling.sol#451)
Variable Cycling._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Cycling.sol#407) is too similar to Cycling._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Cycling.sol#409)
Variable Cycling._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/Cycling.sol#534) is too similar to Cycling._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Cycling.sol#430)
Variable Cycling._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Cycling.sol#407) is too similar to Cycling._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Cycling.sol#430)
Variable Cycling._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/Cycling.sol#534) is too similar to Cycling._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Cycling.sol#409)
Variable Cycling.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Cycling.sol#216) is too similar to Cycling._getValues(uint256).tTransferAmount (contracts/Cycling.sol#482)
Variable Cycling._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Cycling.sol#449) is too similar to Cycling._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Cycling.sol#430)
Variable Cycling._transferStandard(address,address,uint256).rTransferAmount (contracts/Cycling.sol#387) is too similar to Cycling._transferStandard(address,address,uint256).tTransferAmount (contracts/Cycling.sol#389)
Variable Cycling._transferStandard(address,address,uint256).rTransferAmount (contracts/Cycling.sol#387) is too similar to Cycling._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Cycling.sol#451)
Variable Cycling._transferStandard(address,address,uint256).rTransferAmount (contracts/Cycling.sol#387) is too similar to Cycling._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Cycling.sol#430)
Variable Cycling._getValues(uint256).rTransferAmount (contracts/Cycling.sol#486) is too similar to Cycling._getValues(uint256).tTransferAmount (contracts/Cycling.sol#482)
Variable Cycling._getValues(uint256).rTransferAmount (contracts/Cycling.sol#486) is too similar to Cycling._getTValues(uint256).tTransferAmount (contracts/Cycling.sol#513)
Variable Cycling.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Cycling.sol#216) is too similar to Cycling._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Cycling.sol#451)
Variable Cycling.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Cycling.sol#216) is too similar to Cycling._getTValues(uint256).tTransferAmount (contracts/Cycling.sol#513)
Variable Cycling._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Cycling.sol#428) is too similar to Cycling._getTValues(uint256).tTransferAmount (contracts/Cycling.sol#513)
Variable Cycling._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Cycling.sol#449) is too similar to Cycling._getTValues(uint256).tTransferAmount (contracts/Cycling.sol#513)
Variable Cycling._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Cycling.sol#449) is too similar to Cycling._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Cycling.sol#409)
Variable Cycling._getValues(uint256).rTransferAmount (contracts/Cycling.sol#486) is too similar to Cycling._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Cycling.sol#409)
Variable Cycling._transferStandard(address,address,uint256).rTransferAmount (contracts/Cycling.sol#387) is too similar to Cycling._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Cycling.sol#409)
Variable Cycling.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Cycling.sol#216) is too similar to Cycling._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Cycling.sol#409)
Variable Cycling._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Cycling.sol#428) is too similar to Cycling._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Cycling.sol#409)
Variable Cycling._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Cycling.sol#449) is too similar to Cycling._transferStandard(address,address,uint256).tTransferAmount (contracts/Cycling.sol#389)
Variable Cycling._getValues(uint256).rTransferAmount (contracts/Cycling.sol#486) is too similar to Cycling._transferStandard(address,address,uint256).tTransferAmount (contracts/Cycling.sol#389)
Variable Cycling.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Cycling.sol#216) is too similar to Cycling._transferStandard(address,address,uint256).tTransferAmount (contracts/Cycling.sol#389)
Variable Cycling._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Cycling.sol#428) is too similar to Cycling._transferStandard(address,address,uint256).tTransferAmount (contracts/Cycling.sol#389)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (contracts/IUniswapV2Router01.sol#10) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (contracts/IUniswapV2Router01.sol#11)
Prevent variables from having similar names.

Additional information: link

Cycling._decimals (contracts/Cycling.sol#34) should be constant
Cycling._name (contracts/Cycling.sol#32) should be constant
Cycling._symbol (contracts/Cycling.sol#33) should be constant
Cycling._tTotal (contracts/Cycling.sol#28) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

name() should be declared external:
- Cycling.name() (contracts/Cycling.sol#88-90)
symbol() should be declared external:
- Cycling.symbol() (contracts/Cycling.sol#92-94)
decimals() should be declared external:
- Cycling.decimals() (contracts/Cycling.sol#96-98)
totalSupply() should be declared external:
- Cycling.totalSupply() (contracts/Cycling.sol#100-102)
transfer(address,uint256) should be declared external:
- Cycling.transfer(address,uint256) (contracts/Cycling.sol#109-116)
allowance(address,address) should be declared external:
- Cycling.allowance(address,address) (contracts/Cycling.sol#118-125)
approve(address,uint256) should be declared external:
- Cycling.approve(address,uint256) (contracts/Cycling.sol#127-134)
transferFrom(address,address,uint256) should be declared external:
- Cycling.transferFrom(address,address,uint256) (contracts/Cycling.sol#136-151)
increaseAllowance(address,uint256) should be declared external:
- Cycling.increaseAllowance(address,uint256) (contracts/Cycling.sol#153-164)
decreaseAllowance(address,uint256) should be declared external:
- Cycling.decreaseAllowance(address,uint256) (contracts/Cycling.sol#166-180)
isExcludedFromReward(address) should be declared external:
- Cycling.isExcludedFromReward(address) (contracts/Cycling.sol#182-184)
totalFees() should be declared external:
- Cycling.totalFees() (contracts/Cycling.sol#186-188)
minimumTokensBeforeSwapAmount() should be declared external:
- Cycling.minimumTokensBeforeSwapAmount() (contracts/Cycling.sol#190-192)
deliver(uint256) should be declared external:
- Cycling.deliver(uint256) (contracts/Cycling.sol#194-204)
reflectionFromToken(uint256,bool) should be declared external:
- Cycling.reflectionFromToken(uint256,bool) (contracts/Cycling.sol#206-219)
excludeFromReward(address) should be declared external:
- Cycling.excludeFromReward(address) (contracts/Cycling.sol#234-241)
isExcludedFromFee(address) should be declared external:
- Cycling.isExcludedFromFee(address) (contracts/Cycling.sol#593-595)
excludeFromFee(address) should be declared external:
- Cycling.excludeFromFee(address) (contracts/Cycling.sol#597-599)
includeInFee(address) should be declared external:
- Cycling.includeInFee(address) (contracts/Cycling.sol#601-603)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Cycling.setSwapAndLiquifyEnabled(bool) (contracts/Cycling.sol#643-646)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/Ownable.sol#24-27)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (contracts/Ownable.sol#29-33)
getTime() should be declared external:
- Ownable.getTime() (contracts/Ownable.sol#35-37)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain

Contract has 0% buy tax and 4% sell tax.
Taxes are low and contract ownership is renounced.


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Token is not listed at Mobula.Finance

Additional information: link


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


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

Additional information: link


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


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


Token has no active CoinGecko listing / rank


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank

Price for CYC

News for CYC