FlappyDoge Token Logo

FLPD [FlappyDoge] Token

About FLPD

Listings

Token 2 years
white paper

FlappyDoge is a blockchain-based, P2E, 3D game that will be released on IOS and Android with future integration to VR. It will be the first Play-2-Earn for the indie, mobile-format gaming industry. The game is runner with special abilities and coins to collect .After game launch, Flappy Token will be used introduce a variety of additional games, broadening utlilty for the $FLPD token into the FlappyPad launchpad for P2E games in the pipeline. Eventually, characters and games created and will be evolved to a VR metaverse.

FlappyDoge partnership with Narsun Studio the creator of DogeDash will be developing the game with unreal engine.

$FLPD has a total supply of 2 Billion tokens, 3% goes to holders 3% goes to marketing and 3% burnt. In the future plans to integrate a DAO system in which users can vote for new upcoming titles of games to airdrop for loyal holders of when which the new games will be release in the future

Laser Scorebeta Last Audit: 10 December 2021

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

Contract locking ether found:
Contract FLPD (Flap.sol#473-824) has payable functions:
- FLPD.receive() (Flap.sol#639)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.

Additional information: link

FLPD._takeMarketingAndBurnToken(uint256,address) (Flap.sol#684-703) performs a multiplication on the result of a division:
-tMarketing = tMarketingAndBurn.mul(_marketingFee).div(_marketingFee + _burnFee) (Flap.sol#686)
-rMarketing = tMarketing.mul(currentRate) (Flap.sol#697)
Consider ordering multiplication before division.

Additional information: link

FLPD.allowance(address,address).owner (Flap.sol#549) shadows:
- Ownable.owner() (Flap.sol#418-420) (function)
FLPD._approve(address,address,uint256).owner (Flap.sol#736) shadows:
- Ownable.owner() (Flap.sol#418-420) (function)
Rename the local variables that shadow another component.

Additional information: link

FLPD.setDistributionFeePercent(uint256) (Flap.sol#622-624) should emit an event for:
- _distributionFee = distributionFee (Flap.sol#623)
FLPD.setBurnFeePercent(uint256) (Flap.sol#626-628) should emit an event for:
- _burnFee = burnFee (Flap.sol#627)
FLPD.setMarketingFeePercent(uint256) (Flap.sol#630-632) should emit an event for:
- _marketingFee = marketingFee (Flap.sol#631)
Emit an event for critical parameter changes.

Additional information: link

FLPD.updateMarketingWallet(address).account (Flap.sol#634) lacks a zero-check on :
- marketingWallet = account (Flap.sol#635)
Check that the address is not zero.

Additional information: link

Ownable.unlock() (Flap.sol#465-470) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (Flap.sol#467)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (Flap.sol#270-279) uses assembly
- INLINE ASM (Flap.sol#277)
Address._functionCallWithValue(address,bytes,uint256,string) (Flap.sol#363-384) uses assembly
- INLINE ASM (Flap.sol#376-379)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (Flap.sol#363-384) is never used and should be removed
Address.functionCall(address,bytes) (Flap.sol#323-325) is never used and should be removed
Address.functionCall(address,bytes,string) (Flap.sol#333-335) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (Flap.sol#348-350) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (Flap.sol#358-361) is never used and should be removed
Address.isContract(address) (Flap.sol#270-279) is never used and should be removed
Address.sendValue(address,uint256) (Flap.sol#297-303) is never used and should be removed
Context._msgData() (Flap.sol#242-245) is never used and should be removed
SafeMath.mod(uint256,uint256) (Flap.sol#215-217) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (Flap.sol#231-234) is never used and should be removed
Remove unused functions.

Additional information: link

FLPD._rTotal (Flap.sol#490) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
FLPD._previousDistributionFee (Flap.sol#498) is set pre-construction with a non-constant function or state variable:
- _distributionFee
FLPD._previousBurnFee (Flap.sol#501) is set pre-construction with a non-constant function or state variable:
- _burnFee
FLPD._previousMarketingFee (Flap.sol#504) is set pre-construction with a non-constant function or state variable:
- _marketingFee
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) (Flap.sol#297-303):
- (success) = recipient.call{value: amount}() (Flap.sol#301)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (Flap.sol#363-384):
- (success,returndata) = target.call{value: weiValue}(data) (Flap.sol#367)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter FLPD.calculateDistributionFee(uint256)._amount (Flap.sol#705) is not in mixedCase
Parameter FLPD.calculateBurnAndMarketingFee(uint256)._amount (Flap.sol#711) is not in mixedCase
Variable FLPD._distributionFee (Flap.sol#497) is not in mixedCase
Variable FLPD._burnFee (Flap.sol#500) is not in mixedCase
Variable FLPD._marketingFee (Flap.sol#503) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (Flap.sol#243)" inContext (Flap.sol#237-246)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable FLPD._transferBothExcluded(address,address,uint256).rDistribution (Flap.sol#814) is too similar to FLPD._distributionToAllHolder(uint256,uint256).tDistribution (Flap.sol#641)
Variable FLPD._transferToExcluded(address,address,uint256).rDistribution (Flap.sol#794) is too similar to FLPD._transferFromExcluded(address,address,uint256).tDistribution (Flap.sol#804)
Variable FLPD._transferFromExcluded(address,address,uint256).rDistribution (Flap.sol#804) is too similar to FLPD._getRValues(uint256,uint256,uint256,uint256).tDistribution (Flap.sol#659)
Variable FLPD._transferFromExcluded(address,address,uint256).rDistribution (Flap.sol#804) is too similar to FLPD._transferBothExcluded(address,address,uint256).tDistribution (Flap.sol#814)
Variable FLPD._getValues(uint256).rDistribution (Flap.sol#648) is too similar to FLPD._distributionToAllHolder(uint256,uint256).tDistribution (Flap.sol#641)
Variable FLPD._distributionToAllHolder(uint256,uint256).rDistribution (Flap.sol#641) is too similar to FLPD._getRValues(uint256,uint256,uint256,uint256).tDistribution (Flap.sol#659)
Variable FLPD._distributionToAllHolder(uint256,uint256).rDistribution (Flap.sol#641) is too similar to FLPD._transferBothExcluded(address,address,uint256).tDistribution (Flap.sol#814)
Variable FLPD._transferStandard(address,address,uint256).rDistribution (Flap.sol#785) is too similar to FLPD._distributionToAllHolder(uint256,uint256).tDistribution (Flap.sol#641)
Variable FLPD._transferBothExcluded(address,address,uint256).rDistribution (Flap.sol#814) is too similar to FLPD._transferToExcluded(address,address,uint256).tDistribution (Flap.sol#794)
Variable FLPD._getRValues(uint256,uint256,uint256,uint256).rDistribution (Flap.sol#661) is too similar to FLPD._getRValues(uint256,uint256,uint256,uint256).tDistribution (Flap.sol#659)
Variable FLPD._getRValues(uint256,uint256,uint256,uint256).rDistribution (Flap.sol#661) is too similar to FLPD._transferBothExcluded(address,address,uint256).tDistribution (Flap.sol#814)
Variable FLPD._transferFromExcluded(address,address,uint256).rDistribution (Flap.sol#804) is too similar to FLPD._transferFromExcluded(address,address,uint256).tDistribution (Flap.sol#804)
Variable FLPD._getValues(uint256).rDistribution (Flap.sol#648) is too similar to FLPD._transferFromExcluded(address,address,uint256).tDistribution (Flap.sol#804)
Variable FLPD._transferToExcluded(address,address,uint256).rDistribution (Flap.sol#794) is too similar to FLPD._transferToExcluded(address,address,uint256).tDistribution (Flap.sol#794)
Variable FLPD._getValues(uint256).rDistribution (Flap.sol#648) is too similar to FLPD._transferToExcluded(address,address,uint256).tDistribution (Flap.sol#794)
Variable FLPD._distributionToAllHolder(uint256,uint256).rDistribution (Flap.sol#641) is too similar to FLPD._distributionToAllHolder(uint256,uint256).tDistribution (Flap.sol#641)
Variable FLPD._transferStandard(address,address,uint256).rDistribution (Flap.sol#785) is too similar to FLPD._transferFromExcluded(address,address,uint256).tDistribution (Flap.sol#804)
Variable FLPD._transferStandard(address,address,uint256).rDistribution (Flap.sol#785) is too similar to FLPD._getValues(uint256).tDistribution (Flap.sol#647)
Variable FLPD._transferToExcluded(address,address,uint256).rDistribution (Flap.sol#794) is too similar to FLPD._getRValues(uint256,uint256,uint256,uint256).tDistribution (Flap.sol#659)
Variable FLPD._getRValues(uint256,uint256,uint256,uint256).rDistribution (Flap.sol#661) is too similar to FLPD._distributionToAllHolder(uint256,uint256).tDistribution (Flap.sol#641)
Variable FLPD._transferStandard(address,address,uint256).rDistribution (Flap.sol#785) is too similar to FLPD._transferStandard(address,address,uint256).tDistribution (Flap.sol#785)
Variable FLPD._distributionToAllHolder(uint256,uint256).rDistribution (Flap.sol#641) is too similar to FLPD._transferFromExcluded(address,address,uint256).tDistribution (Flap.sol#804)
Variable FLPD._transferFromExcluded(address,address,uint256).rDistribution (Flap.sol#804) is too similar to FLPD._transferToExcluded(address,address,uint256).tDistribution (Flap.sol#794)
Variable FLPD._distributionToAllHolder(uint256,uint256).rDistribution (Flap.sol#641) is too similar to FLPD._transferToExcluded(address,address,uint256).tDistribution (Flap.sol#794)
Variable FLPD._transferBothExcluded(address,address,uint256).rDistribution (Flap.sol#814) is too similar to FLPD._getRValues(uint256,uint256,uint256,uint256).tDistribution (Flap.sol#659)
Variable FLPD._transferBothExcluded(address,address,uint256).rDistribution (Flap.sol#814) is too similar to FLPD._transferBothExcluded(address,address,uint256).tDistribution (Flap.sol#814)
Variable FLPD._getRValues(uint256,uint256,uint256,uint256).rDistribution (Flap.sol#661) is too similar to FLPD._transferFromExcluded(address,address,uint256).tDistribution (Flap.sol#804)
Variable FLPD._transferStandard(address,address,uint256).rDistribution (Flap.sol#785) is too similar to FLPD._transferToExcluded(address,address,uint256).tDistribution (Flap.sol#794)
Variable FLPD._getValues(uint256).rDistribution (Flap.sol#648) is too similar to FLPD._getRValues(uint256,uint256,uint256,uint256).tDistribution (Flap.sol#659)
Variable FLPD._getRValues(uint256,uint256,uint256,uint256).rDistribution (Flap.sol#661) is too similar to FLPD._transferToExcluded(address,address,uint256).tDistribution (Flap.sol#794)
Variable FLPD._getValues(uint256).rDistribution (Flap.sol#648) is too similar to FLPD._transferBothExcluded(address,address,uint256).tDistribution (Flap.sol#814)
Variable FLPD._transferBothExcluded(address,address,uint256).rDistribution (Flap.sol#814) is too similar to FLPD._transferFromExcluded(address,address,uint256).tDistribution (Flap.sol#804)
Variable FLPD._transferStandard(address,address,uint256).rDistribution (Flap.sol#785) is too similar to FLPD._getRValues(uint256,uint256,uint256,uint256).tDistribution (Flap.sol#659)
Variable FLPD._transferStandard(address,address,uint256).rDistribution (Flap.sol#785) is too similar to FLPD._transferBothExcluded(address,address,uint256).tDistribution (Flap.sol#814)
Variable FLPD._getRValues(uint256,uint256,uint256,uint256).rMarketingAndBurn (Flap.sol#662) is too similar to FLPD._transferBothExcluded(address,address,uint256).tMarketingAndBurn (Flap.sol#814)
Variable FLPD._getRValues(uint256,uint256,uint256,uint256).rMarketingAndBurn (Flap.sol#662) is too similar to FLPD._transferFromExcluded(address,address,uint256).tMarketingAndBurn (Flap.sol#804)
Variable FLPD._getRValues(uint256,uint256,uint256,uint256).rMarketingAndBurn (Flap.sol#662) is too similar to FLPD._getRValues(uint256,uint256,uint256,uint256).tMarketingAndBurn (Flap.sol#659)
Variable FLPD._getRValues(uint256,uint256,uint256,uint256).rMarketingAndBurn (Flap.sol#662) is too similar to FLPD._transferToExcluded(address,address,uint256).tMarketingAndBurn (Flap.sol#794)
Variable FLPD._getRValues(uint256,uint256,uint256,uint256).rMarketingAndBurn (Flap.sol#662) is too similar to FLPD._takeMarketingAndBurnToken(uint256,address).tMarketingAndBurn (Flap.sol#684)
Variable FLPD._transferStandard(address,address,uint256).rTransferAmount (Flap.sol#785) is too similar to FLPD._transferStandard(address,address,uint256).tTransferAmount (Flap.sol#785)
Variable FLPD._getValues(uint256).rTransferAmount (Flap.sol#648) is too similar to FLPD._transferBothExcluded(address,address,uint256).tTransferAmount (Flap.sol#814)
Variable FLPD._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (Flap.sol#663) is too similar to FLPD._transferToExcluded(address,address,uint256).tTransferAmount (Flap.sol#794)
Variable FLPD._transferStandard(address,address,uint256).rTransferAmount (Flap.sol#785) is too similar to FLPD._getValues(uint256).tTransferAmount (Flap.sol#647)
Variable FLPD._transferStandard(address,address,uint256).rTransferAmount (Flap.sol#785) is too similar to FLPD._transferToExcluded(address,address,uint256).tTransferAmount (Flap.sol#794)
Variable FLPD._transferFromExcluded(address,address,uint256).rTransferAmount (Flap.sol#804) is too similar to FLPD._transferBothExcluded(address,address,uint256).tTransferAmount (Flap.sol#814)
Variable FLPD._transferBothExcluded(address,address,uint256).rTransferAmount (Flap.sol#814) is too similar to FLPD._transferFromExcluded(address,address,uint256).tTransferAmount (Flap.sol#804)
Variable FLPD._transferToExcluded(address,address,uint256).rTransferAmount (Flap.sol#794) is too similar to FLPD._transferFromExcluded(address,address,uint256).tTransferAmount (Flap.sol#804)
Variable FLPD._transferBothExcluded(address,address,uint256).rTransferAmount (Flap.sol#814) is too similar to FLPD._transferToExcluded(address,address,uint256).tTransferAmount (Flap.sol#794)
Variable FLPD._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (Flap.sol#663) is too similar to FLPD._transferBothExcluded(address,address,uint256).tTransferAmount (Flap.sol#814)
Variable FLPD._getValues(uint256).rTransferAmount (Flap.sol#648) is too similar to FLPD._transferFromExcluded(address,address,uint256).tTransferAmount (Flap.sol#804)
Variable FLPD._transferStandard(address,address,uint256).rTransferAmount (Flap.sol#785) is too similar to FLPD._transferBothExcluded(address,address,uint256).tTransferAmount (Flap.sol#814)
Variable FLPD._transferFromExcluded(address,address,uint256).rTransferAmount (Flap.sol#804) is too similar to FLPD._transferFromExcluded(address,address,uint256).tTransferAmount (Flap.sol#804)
Variable FLPD._transferToExcluded(address,address,uint256).rTransferAmount (Flap.sol#794) is too similar to FLPD._transferToExcluded(address,address,uint256).tTransferAmount (Flap.sol#794)
Variable FLPD._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (Flap.sol#663) is too similar to FLPD._getTValues(uint256).tTransferAmount (Flap.sol#655)
Variable FLPD._transferFromExcluded(address,address,uint256).rTransferAmount (Flap.sol#804) is too similar to FLPD._transferToExcluded(address,address,uint256).tTransferAmount (Flap.sol#794)
Variable FLPD._getValues(uint256).rTransferAmount (Flap.sol#648) is too similar to FLPD._transferToExcluded(address,address,uint256).tTransferAmount (Flap.sol#794)
Variable FLPD._transferStandard(address,address,uint256).rTransferAmount (Flap.sol#785) is too similar to FLPD._transferFromExcluded(address,address,uint256).tTransferAmount (Flap.sol#804)
Variable FLPD._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (Flap.sol#663) is too similar to FLPD._transferStandard(address,address,uint256).tTransferAmount (Flap.sol#785)
Variable FLPD._transferBothExcluded(address,address,uint256).rTransferAmount (Flap.sol#814) is too similar to FLPD._transferBothExcluded(address,address,uint256).tTransferAmount (Flap.sol#814)
Variable FLPD._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (Flap.sol#663) is too similar to FLPD._transferFromExcluded(address,address,uint256).tTransferAmount (Flap.sol#804)
Variable FLPD._transferToExcluded(address,address,uint256).rTransferAmount (Flap.sol#794) is too similar to FLPD._transferBothExcluded(address,address,uint256).tTransferAmount (Flap.sol#814)
Variable FLPD._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (Flap.sol#663) is too similar to FLPD._getValues(uint256).tTransferAmount (Flap.sol#647)
Variable FLPD._transferToExcluded(address,address,uint256).rDistribution (Flap.sol#794) is too similar to FLPD._getTValues(uint256).tDistribution (Flap.sol#653)
Variable FLPD._transferFromExcluded(address,address,uint256).rDistribution (Flap.sol#804) is too similar to FLPD._getValues(uint256).tDistribution (Flap.sol#647)
Variable FLPD._getRValues(uint256,uint256,uint256,uint256).rDistribution (Flap.sol#661) is too similar to FLPD._getTValues(uint256).tDistribution (Flap.sol#653)
Variable FLPD._transferToExcluded(address,address,uint256).rDistribution (Flap.sol#794) is too similar to FLPD._transferBothExcluded(address,address,uint256).tDistribution (Flap.sol#814)
Variable FLPD._transferToExcluded(address,address,uint256).rDistribution (Flap.sol#794) is too similar to FLPD._getValues(uint256).tDistribution (Flap.sol#647)
Variable FLPD._getRValues(uint256,uint256,uint256,uint256).rDistribution (Flap.sol#661) is too similar to FLPD._getValues(uint256).tDistribution (Flap.sol#647)
Variable FLPD._transferFromExcluded(address,address,uint256).rDistribution (Flap.sol#804) is too similar to FLPD._distributionToAllHolder(uint256,uint256).tDistribution (Flap.sol#641)
Variable FLPD._transferBothExcluded(address,address,uint256).rDistribution (Flap.sol#814) is too similar to FLPD._transferStandard(address,address,uint256).tDistribution (Flap.sol#785)
Variable FLPD._getValues(uint256).rDistribution (Flap.sol#648) is too similar to FLPD._transferStandard(address,address,uint256).tDistribution (Flap.sol#785)
Variable FLPD._transferFromExcluded(address,address,uint256).rDistribution (Flap.sol#804) is too similar to FLPD._transferStandard(address,address,uint256).tDistribution (Flap.sol#785)
Variable FLPD._transferBothExcluded(address,address,uint256).rDistribution (Flap.sol#814) is too similar to FLPD._getTValues(uint256).tDistribution (Flap.sol#653)
Variable FLPD._distributionToAllHolder(uint256,uint256).rDistribution (Flap.sol#641) is too similar to FLPD._transferStandard(address,address,uint256).tDistribution (Flap.sol#785)
Variable FLPD._transferBothExcluded(address,address,uint256).rDistribution (Flap.sol#814) is too similar to FLPD._getValues(uint256).tDistribution (Flap.sol#647)
Variable FLPD._transferToExcluded(address,address,uint256).rDistribution (Flap.sol#794) is too similar to FLPD._distributionToAllHolder(uint256,uint256).tDistribution (Flap.sol#641)
Variable FLPD._getValues(uint256).rDistribution (Flap.sol#648) is too similar to FLPD._getTValues(uint256).tDistribution (Flap.sol#653)
Variable FLPD._transferFromExcluded(address,address,uint256).rDistribution (Flap.sol#804) is too similar to FLPD._getTValues(uint256).tDistribution (Flap.sol#653)
Variable FLPD._getValues(uint256).rDistribution (Flap.sol#648) is too similar to FLPD._getValues(uint256).tDistribution (Flap.sol#647)
Variable FLPD._distributionToAllHolder(uint256,uint256).rDistribution (Flap.sol#641) is too similar to FLPD._getTValues(uint256).tDistribution (Flap.sol#653)
Variable FLPD._transferToExcluded(address,address,uint256).rDistribution (Flap.sol#794) is too similar to FLPD._transferStandard(address,address,uint256).tDistribution (Flap.sol#785)
Variable FLPD._getRValues(uint256,uint256,uint256,uint256).rDistribution (Flap.sol#661) is too similar to FLPD._transferStandard(address,address,uint256).tDistribution (Flap.sol#785)
Variable FLPD._distributionToAllHolder(uint256,uint256).rDistribution (Flap.sol#641) is too similar to FLPD._getValues(uint256).tDistribution (Flap.sol#647)
Variable FLPD._transferStandard(address,address,uint256).rDistribution (Flap.sol#785) is too similar to FLPD._getTValues(uint256).tDistribution (Flap.sol#653)
Variable FLPD._getRValues(uint256,uint256,uint256,uint256).rMarketingAndBurn (Flap.sol#662) is too similar to FLPD._transferStandard(address,address,uint256).tMarketingAndBurn (Flap.sol#785)
Variable FLPD._getRValues(uint256,uint256,uint256,uint256).rMarketingAndBurn (Flap.sol#662) is too similar to FLPD._getTValues(uint256).tMarketingAndBurn (Flap.sol#654)
Variable FLPD._getRValues(uint256,uint256,uint256,uint256).rMarketingAndBurn (Flap.sol#662) is too similar to FLPD._getValues(uint256).tMarketingAndBurn (Flap.sol#647)
Variable FLPD._transferToExcluded(address,address,uint256).rTransferAmount (Flap.sol#794) is too similar to FLPD._getValues(uint256).tTransferAmount (Flap.sol#647)
Variable FLPD._getValues(uint256).rTransferAmount (Flap.sol#648) is too similar to FLPD._transferStandard(address,address,uint256).tTransferAmount (Flap.sol#785)
Variable FLPD._transferFromExcluded(address,address,uint256).rTransferAmount (Flap.sol#804) is too similar to FLPD._transferStandard(address,address,uint256).tTransferAmount (Flap.sol#785)
Variable FLPD._transferBothExcluded(address,address,uint256).rTransferAmount (Flap.sol#814) is too similar to FLPD._getValues(uint256).tTransferAmount (Flap.sol#647)
Variable FLPD._transferBothExcluded(address,address,uint256).rTransferAmount (Flap.sol#814) is too similar to FLPD._getTValues(uint256).tTransferAmount (Flap.sol#655)
Variable FLPD._getValues(uint256).rTransferAmount (Flap.sol#648) is too similar to FLPD._getTValues(uint256).tTransferAmount (Flap.sol#655)
Variable FLPD._transferFromExcluded(address,address,uint256).rTransferAmount (Flap.sol#804) is too similar to FLPD._getTValues(uint256).tTransferAmount (Flap.sol#655)
Variable FLPD._transferToExcluded(address,address,uint256).rTransferAmount (Flap.sol#794) is too similar to FLPD._transferStandard(address,address,uint256).tTransferAmount (Flap.sol#785)
Variable FLPD._transferStandard(address,address,uint256).rTransferAmount (Flap.sol#785) is too similar to FLPD._getTValues(uint256).tTransferAmount (Flap.sol#655)
Variable FLPD._getValues(uint256).rTransferAmount (Flap.sol#648) is too similar to FLPD._getValues(uint256).tTransferAmount (Flap.sol#647)
Variable FLPD._transferFromExcluded(address,address,uint256).rTransferAmount (Flap.sol#804) is too similar to FLPD._getValues(uint256).tTransferAmount (Flap.sol#647)
Variable FLPD._transferBothExcluded(address,address,uint256).rTransferAmount (Flap.sol#814) is too similar to FLPD._transferStandard(address,address,uint256).tTransferAmount (Flap.sol#785)
Variable FLPD._transferToExcluded(address,address,uint256).rTransferAmount (Flap.sol#794) is too similar to FLPD._getTValues(uint256).tTransferAmount (Flap.sol#655)
Prevent variables from having similar names.

Additional information: link

FLPD.slitherConstructorVariables() (Flap.sol#473-824) uses literals with too many digits:
- _tTotal = 20000000000 * 10 ** 17 (Flap.sol#489)
FLPD.slitherConstructorVariables() (Flap.sol#473-824) uses literals with too many digits:
- burnWallet = 0x000000000000000000000000000000000000dEaD (Flap.sol#506)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

FLPD.lastTimeBuy (Flap.sol#486) is never used in FLPD (Flap.sol#473-824)
Remove unused state variables.

Additional information: link

FLPD._decimals (Flap.sol#495) should be constant
FLPD._name (Flap.sol#493) should be constant
FLPD._symbol (Flap.sol#494) should be constant
FLPD._tTotal (Flap.sol#489) should be constant
FLPD.burnWallet (Flap.sol#506) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (Flap.sol#437-440)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Flap.sol#446-450)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (Flap.sol#452-454)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (Flap.sol#457-462)
unlock() should be declared external:
- Ownable.unlock() (Flap.sol#465-470)
name() should be declared external:
- FLPD.name() (Flap.sol#523-525)
symbol() should be declared external:
- FLPD.symbol() (Flap.sol#527-529)
decimals() should be declared external:
- FLPD.decimals() (Flap.sol#531-533)
totalSupply() should be declared external:
- FLPD.totalSupply() (Flap.sol#535-537)
balanceOf(address) should be declared external:
- FLPD.balanceOf(address) (Flap.sol#539-542)
transfer(address,uint256) should be declared external:
- FLPD.transfer(address,uint256) (Flap.sol#544-547)
allowance(address,address) should be declared external:
- FLPD.allowance(address,address) (Flap.sol#549-551)
approve(address,uint256) should be declared external:
- FLPD.approve(address,uint256) (Flap.sol#553-556)
transferFrom(address,address,uint256) should be declared external:
- FLPD.transferFrom(address,address,uint256) (Flap.sol#558-562)
increaseAllowance(address,uint256) should be declared external:
- FLPD.increaseAllowance(address,uint256) (Flap.sol#564-567)
decreaseAllowance(address,uint256) should be declared external:
- FLPD.decreaseAllowance(address,uint256) (Flap.sol#569-572)
isExcludedFromReward(address) should be declared external:
- FLPD.isExcludedFromReward(address) (Flap.sol#574-576)
isExcludedFromFee(address) should be declared external:
- FLPD.isExcludedFromFee(address) (Flap.sol#578-580)
totalRewards() should be declared external:
- FLPD.totalRewards() (Flap.sol#582-584)
excludeFromFee(address) should be declared external:
- FLPD.excludeFromFee(address) (Flap.sol#614-616)
includeInFee(address) should be declared external:
- FLPD.includeInFee(address) (Flap.sol#618-620)
updateMarketingWallet(address) should be declared external:
- FLPD.updateMarketingWallet(address) (Flap.sol#634-636)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


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 PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute number of swaps.


Twitter account link seems to be invalid


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 contract audit


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


Young tokens have high risks of price dump / death


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


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


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for FLPD