FlexQ Token Logo

FLQ [FlexQ] Token

About FLQ

Listings

Token 2 years

Website

white paper

FlexQ - BEP20 token is decentralized token, which will use for joining in FlexQ AI Trading Bot Platform.

The FlexQ quantification system adopts a multi-strategy, multi-technology fusion intelligent quantification mechanism. Users only need to select the corresponding investment style and click a key to start, and they can realize smart fool-style financial management. The system will intelligently match the corresponding quantification strategy according to the market situation. Customers maximize their profits & Continuous income is guaranteed by 7*24 hours real-time monitoring.

What is the use of this FlexQ Token?

FlexQ Token will be use for joining in our upcoming AI Trading bot system.

There are other AI Trading bots in market then why i choose FlexQ?

In other AI Trading bot sytems, you have to pay USDT for joining their system while you need FlexQ token for joining in our AI Trading bot system.

How much is the profit sharing of the FlexQ system?

The FlexQ system applies 80:20% profit sharing, where we as robot tenants get 80% of each profit and FlexQ 20% of it, From that we will burn 5%.

On Which Exchanges FlexQ bot will be work?

FlexQ AI Trading bot system will be work for Binance & Huobi.

Social

Laser Scorebeta Last Audit: 24 January 2022

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.

Anti-Scam

Links


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

Reentrancy in FlexQ._transfer(address,address,uint256) (#627-665):
External calls:
- swapTokens(contractTokenBalance) (#645)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#694-700)
- buyBackTokens(balance.div(100)) (#653)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#712-717)
External calls sending eth:
- swapTokens(contractTokenBalance) (#645)
- recipient.transfer(amount) (#938)
- buyBackTokens(balance.div(100)) (#653)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#712-717)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _liquidityFee = _previousLiquidityFee (#870)
- _liquidityFee = 0 (#865)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#841)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#757)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#766)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#777)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#787)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#758)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#768)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#778)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#789)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _rTotal = _rTotal.sub(rFee) (#796)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#843)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#786)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#776)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#767)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#788)
- buyBackTokens(balance.div(100)) (#653)
- inSwapAndLiquify = true (#481)
- inSwapAndLiquify = false (#483)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#197-202) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#199)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#92-101) uses assembly
- INLINE ASM (#99)
Address._functionCallWithValue(address,bytes,uint256,string) (#129-146) uses assembly
- INLINE ASM (#138-141)
Do not use evm assembly.

Additional information: link

FlexQ.swapTokens(uint256) (#667-676) performs a multiplication on the result of a division:
-transferToAddressETH(charityAddress,transferredBalance.div(_liquidityFee).mul(charityDivisor)) (#674)
Consider ordering multiplication before division.

Additional information: link

FlexQ.addLiquidity(uint256,uint256) (#722-735) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#727-734)
Ensure that all the return values of the function calls are used.

Additional information: link

FlexQ.allowance(address,address).owner (#528) shadows:
- Ownable.owner() (#162-164) (function)
FlexQ._approve(address,address,uint256).owner (#619) shadows:
- Ownable.owner() (#162-164) (function)
Rename the local variables that shadow another component.

Additional information: link

FlexQ.setTaxFeePercent(uint256) (#885-887) should emit an event for:
- _taxFee = taxFee (#886)
FlexQ.setLiquidityFeePercent(uint256) (#889-891) should emit an event for:
- _liquidityFee = liquidityFee (#890)
FlexQ.setMaxTxAmount(uint256) (#893-895) should emit an event for:
- _maxTxAmount = maxTxAmount (#894)
FlexQ.setcharityDivisor(uint256) (#897-899) should emit an event for:
- charityDivisor = divisor (#898)
FlexQ.setNumTokensSellToAddToLiquidity(uint256) (#901-903) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#902)
FlexQ.setBuybackUpperLimit(uint256) (#905-907) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 18 (#906)
Emit an event for critical parameter changes.

Additional information: link

FlexQ.setcharityAddress(address)._charityAddress (#909) lacks a zero-check on :
- charityAddress = address(_charityAddress) (#910)
Check that the address is not zero.

Additional information: link

Reentrancy in FlexQ._transfer(address,address,uint256) (#627-665):
External calls:
- swapTokens(contractTokenBalance) (#645)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#694-700)
- buyBackTokens(balance.div(100)) (#653)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#712-717)
External calls sending eth:
- swapTokens(contractTokenBalance) (#645)
- recipient.transfer(amount) (#938)
- buyBackTokens(balance.div(100)) (#653)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#712-717)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _previousLiquidityFee = _liquidityFee (#862)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _previousTaxFee = _taxFee (#861)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _tFeeTotal = _tFeeTotal.add(tFee) (#797)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _taxFee = _previousTaxFee (#869)
- _taxFee = 0 (#864)
Reentrancy in FlexQ.constructor() (#486-500):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#490-491)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#496)
- _isExcludedFromFee[address(this)] = true (#497)
- uniswapV2Router = _uniswapV2Router (#493)
Reentrancy in FlexQ.transferFrom(address,address,uint256) (#537-541):
External calls:
- _transfer(sender,recipient,amount) (#538)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#712-717)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#694-700)
External calls sending eth:
- _transfer(sender,recipient,amount) (#538)
- recipient.transfer(amount) (#938)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#712-717)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#539)
- _allowances[owner][spender] = amount (#623)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in FlexQ._transfer(address,address,uint256) (#627-665):
External calls:
- swapTokens(contractTokenBalance) (#645)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#694-700)
- buyBackTokens(balance.div(100)) (#653)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#712-717)
External calls sending eth:
- swapTokens(contractTokenBalance) (#645)
- recipient.transfer(amount) (#938)
- buyBackTokens(balance.div(100)) (#653)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#712-717)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#719)
- buyBackTokens(balance.div(100)) (#653)
- Transfer(sender,recipient,tTransferAmount) (#761)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- Transfer(sender,recipient,tTransferAmount) (#771)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- Transfer(sender,recipient,tTransferAmount) (#781)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- Transfer(sender,recipient,tTransferAmount) (#792)
- _tokenTransfer(from,to,amount,takeFee) (#664)
Reentrancy in FlexQ.constructor() (#486-500):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#490-491)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#499)
Reentrancy in FlexQ.swapETHForTokens(uint256) (#705-720):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#712-717)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#719)
Reentrancy in FlexQ.swapTokensForEth(uint256) (#685-703):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#694-700)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#702)
Reentrancy in FlexQ.transferFrom(address,address,uint256) (#537-541):
External calls:
- _transfer(sender,recipient,amount) (#538)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#712-717)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#694-700)
External calls sending eth:
- _transfer(sender,recipient,amount) (#538)
- recipient.transfer(amount) (#938)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#712-717)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#624)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#539)
Apply the check-effects-interactions pattern.

Additional information: link

FlexQ.includeInReward(address) (#606-617) has costly operations inside a loop:
- _excluded.pop() (#613)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#129-146) is never used and should be removed
Address.functionCall(address,bytes) (#112-114) is never used and should be removed
Address.functionCall(address,bytes,string) (#116-118) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#120-122) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#124-127) is never used and should be removed
Address.isContract(address) (#92-101) is never used and should be removed
Address.sendValue(address,uint256) (#103-109) is never used and should be removed
Context._msgData() (#15-18) is never used and should be removed
FlexQ.addLiquidity(uint256,uint256) (#722-735) is never used and should be removed
SafeMath.mod(uint256,uint256) (#80-82) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#84-87) is never used and should be removed
Remove unused functions.

Additional information: link

FlexQ._rTotal (#433) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
FlexQ._previousTaxFee (#442) is set pre-construction with a non-constant function or state variable:
- _taxFee
FlexQ._previousLiquidityFee (#445) 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) (#103-109):
- (success) = recipient.call{value: amount}() (#107)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#129-146):
- (success,returndata) = target.call{value: weiValue}(data) (#132)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#241) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#242) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#258) is not in mixedCase
Function IUniswapV2Router01.WETH() (#279) is not in mixedCase
Parameter FlexQ.calculateTaxFee(uint256)._amount (#846) is not in mixedCase
Parameter FlexQ.calculateLiquidityFee(uint256)._amount (#852) is not in mixedCase
Parameter FlexQ.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#901) is not in mixedCase
Parameter FlexQ.setcharityAddress(address)._charityAddress (#909) is not in mixedCase
Parameter FlexQ.setSwapAndLiquifyEnabled(bool)._enabled (#913) is not in mixedCase
Parameter FlexQ.setBuyBackEnabled(bool)._enabled (#918) is not in mixedCase
Variable FlexQ._taxFee (#441) is not in mixedCase
Variable FlexQ._liquidityFee (#444) is not in mixedCase
Variable FlexQ._maxTxAmount (#449) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Reentrancy in FlexQ._transfer(address,address,uint256) (#627-665):
External calls:
- swapTokens(contractTokenBalance) (#645)
- recipient.transfer(amount) (#938)
External calls sending eth:
- swapTokens(contractTokenBalance) (#645)
- recipient.transfer(amount) (#938)
- buyBackTokens(balance.div(100)) (#653)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#712-717)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _liquidityFee = _previousLiquidityFee (#870)
- _liquidityFee = 0 (#865)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _previousLiquidityFee = _liquidityFee (#862)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _previousTaxFee = _taxFee (#861)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#841)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#757)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#766)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#777)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#787)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#758)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#768)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#778)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#789)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _rTotal = _rTotal.sub(rFee) (#796)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _tFeeTotal = _tFeeTotal.add(tFee) (#797)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#843)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#786)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#776)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#767)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#788)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- _taxFee = _previousTaxFee (#869)
- _taxFee = 0 (#864)
- buyBackTokens(balance.div(100)) (#653)
- inSwapAndLiquify = true (#481)
- inSwapAndLiquify = false (#483)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#719)
- buyBackTokens(balance.div(100)) (#653)
- Transfer(sender,recipient,tTransferAmount) (#761)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- Transfer(sender,recipient,tTransferAmount) (#771)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- Transfer(sender,recipient,tTransferAmount) (#781)
- _tokenTransfer(from,to,amount,takeFee) (#664)
- Transfer(sender,recipient,tTransferAmount) (#792)
- _tokenTransfer(from,to,amount,takeFee) (#664)
Reentrancy in FlexQ.transferFrom(address,address,uint256) (#537-541):
External calls:
- _transfer(sender,recipient,amount) (#538)
- recipient.transfer(amount) (#938)
External calls sending eth:
- _transfer(sender,recipient,amount) (#538)
- recipient.transfer(amount) (#938)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#712-717)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#539)
- _allowances[owner][spender] = amount (#623)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#624)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#539)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#284) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#285)
Variable FlexQ._transferFromExcluded(address,address,uint256).rTransferAmount (#775) is too similar to FlexQ._transferToExcluded(address,address,uint256).tTransferAmount (#765)
Variable FlexQ._transferStandard(address,address,uint256).rTransferAmount (#756) is too similar to FlexQ._transferToExcluded(address,address,uint256).tTransferAmount (#765)
Variable FlexQ._getValues(uint256).rTransferAmount (#802) is too similar to FlexQ._getValues(uint256).tTransferAmount (#801)
Variable FlexQ._transferBothExcluded(address,address,uint256).rTransferAmount (#785) is too similar to FlexQ._getValues(uint256).tTransferAmount (#801)
Variable FlexQ._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#817) is too similar to FlexQ._getTValues(uint256).tTransferAmount (#809)
Variable FlexQ._transferFromExcluded(address,address,uint256).rTransferAmount (#775) is too similar to FlexQ._getValues(uint256).tTransferAmount (#801)
Variable FlexQ._transferStandard(address,address,uint256).rTransferAmount (#756) is too similar to FlexQ._getValues(uint256).tTransferAmount (#801)
Variable FlexQ._transferBothExcluded(address,address,uint256).rTransferAmount (#785) is too similar to FlexQ._getTValues(uint256).tTransferAmount (#809)
Variable FlexQ._getValues(uint256).rTransferAmount (#802) is too similar to FlexQ._getTValues(uint256).tTransferAmount (#809)
Variable FlexQ._transferStandard(address,address,uint256).rTransferAmount (#756) is too similar to FlexQ._transferStandard(address,address,uint256).tTransferAmount (#756)
Variable FlexQ._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#817) is too similar to FlexQ._transferBothExcluded(address,address,uint256).tTransferAmount (#785)
Variable FlexQ._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#817) is too similar to FlexQ._transferFromExcluded(address,address,uint256).tTransferAmount (#775)
Variable FlexQ._transferStandard(address,address,uint256).rTransferAmount (#756) is too similar to FlexQ._getTValues(uint256).tTransferAmount (#809)
Variable FlexQ._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#817) is too similar to FlexQ._transferToExcluded(address,address,uint256).tTransferAmount (#765)
Variable FlexQ.reflectionFromToken(uint256,bool).rTransferAmount (#585) is too similar to FlexQ._transferFromExcluded(address,address,uint256).tTransferAmount (#775)
Variable FlexQ._transferToExcluded(address,address,uint256).rTransferAmount (#765) is too similar to FlexQ._transferFromExcluded(address,address,uint256).tTransferAmount (#775)
Variable FlexQ._transferBothExcluded(address,address,uint256).rTransferAmount (#785) is too similar to FlexQ._transferBothExcluded(address,address,uint256).tTransferAmount (#785)
Variable FlexQ._transferBothExcluded(address,address,uint256).rTransferAmount (#785) is too similar to FlexQ._transferFromExcluded(address,address,uint256).tTransferAmount (#775)
Variable FlexQ._getValues(uint256).rTransferAmount (#802) is too similar to FlexQ._transferBothExcluded(address,address,uint256).tTransferAmount (#785)
Variable FlexQ._getValues(uint256).rTransferAmount (#802) is too similar to FlexQ._transferFromExcluded(address,address,uint256).tTransferAmount (#775)
Variable FlexQ.reflectionFromToken(uint256,bool).rTransferAmount (#585) is too similar to FlexQ._transferToExcluded(address,address,uint256).tTransferAmount (#765)
Variable FlexQ._transferToExcluded(address,address,uint256).rTransferAmount (#765) is too similar to FlexQ._transferToExcluded(address,address,uint256).tTransferAmount (#765)
Variable FlexQ._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#817) is too similar to FlexQ._getValues(uint256).tTransferAmount (#801)
Variable FlexQ._transferFromExcluded(address,address,uint256).rTransferAmount (#775) is too similar to FlexQ._transferFromExcluded(address,address,uint256).tTransferAmount (#775)
Variable FlexQ._transferStandard(address,address,uint256).rTransferAmount (#756) is too similar to FlexQ._transferBothExcluded(address,address,uint256).tTransferAmount (#785)
Variable FlexQ._transferBothExcluded(address,address,uint256).rTransferAmount (#785) is too similar to FlexQ._transferToExcluded(address,address,uint256).tTransferAmount (#765)
Variable FlexQ._transferStandard(address,address,uint256).rTransferAmount (#756) is too similar to FlexQ._transferFromExcluded(address,address,uint256).tTransferAmount (#775)
Variable FlexQ._getValues(uint256).rTransferAmount (#802) is too similar to FlexQ._transferToExcluded(address,address,uint256).tTransferAmount (#765)
Variable FlexQ.reflectionFromToken(uint256,bool).rTransferAmount (#585) is too similar to FlexQ._getValues(uint256).tTransferAmount (#801)
Variable FlexQ._transferToExcluded(address,address,uint256).rTransferAmount (#765) is too similar to FlexQ._getValues(uint256).tTransferAmount (#801)
Variable FlexQ._transferFromExcluded(address,address,uint256).rTransferAmount (#775) is too similar to FlexQ._transferBothExcluded(address,address,uint256).tTransferAmount (#785)
Variable FlexQ._transferFromExcluded(address,address,uint256).rTransferAmount (#775) is too similar to FlexQ._getTValues(uint256).tTransferAmount (#809)
Variable FlexQ._getValues(uint256).rTransferAmount (#802) is too similar to FlexQ._transferStandard(address,address,uint256).tTransferAmount (#756)
Variable FlexQ._transferBothExcluded(address,address,uint256).rTransferAmount (#785) is too similar to FlexQ._transferStandard(address,address,uint256).tTransferAmount (#756)
Variable FlexQ._transferToExcluded(address,address,uint256).rTransferAmount (#765) is too similar to FlexQ._transferBothExcluded(address,address,uint256).tTransferAmount (#785)
Variable FlexQ._transferFromExcluded(address,address,uint256).rTransferAmount (#775) is too similar to FlexQ._transferStandard(address,address,uint256).tTransferAmount (#756)
Variable FlexQ._transferToExcluded(address,address,uint256).rTransferAmount (#765) is too similar to FlexQ._getTValues(uint256).tTransferAmount (#809)
Variable FlexQ._transferToExcluded(address,address,uint256).rTransferAmount (#765) is too similar to FlexQ._transferStandard(address,address,uint256).tTransferAmount (#756)
Variable FlexQ._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#817) is too similar to FlexQ._transferStandard(address,address,uint256).tTransferAmount (#756)
Variable FlexQ.reflectionFromToken(uint256,bool).rTransferAmount (#585) is too similar to FlexQ._transferBothExcluded(address,address,uint256).tTransferAmount (#785)
Variable FlexQ.reflectionFromToken(uint256,bool).rTransferAmount (#585) is too similar to FlexQ._getTValues(uint256).tTransferAmount (#809)
Variable FlexQ.reflectionFromToken(uint256,bool).rTransferAmount (#585) is too similar to FlexQ._transferStandard(address,address,uint256).tTransferAmount (#756)
Prevent variables from having similar names.

Additional information: link

FlexQ.slitherConstructorVariables() (#416-944) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#421)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

FlexQ._decimals (#438) should be constant
FlexQ._name (#436) should be constant
FlexQ._symbol (#437) should be constant
FlexQ._tTotal (#432) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#171-174)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#176-180)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#182-184)
getTime() should be declared external:
- Ownable.getTime() (#186-188)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#190-195)
unlock() should be declared external:
- Ownable.unlock() (#197-202)
name() should be declared external:
- FlexQ.name() (#502-504)
symbol() should be declared external:
- FlexQ.symbol() (#506-508)
decimals() should be declared external:
- FlexQ.decimals() (#510-512)
totalSupply() should be declared external:
- FlexQ.totalSupply() (#514-516)
transfer(address,uint256) should be declared external:
- FlexQ.transfer(address,uint256) (#523-526)
allowance(address,address) should be declared external:
- FlexQ.allowance(address,address) (#528-530)
approve(address,uint256) should be declared external:
- FlexQ.approve(address,uint256) (#532-535)
transferFrom(address,address,uint256) should be declared external:
- FlexQ.transferFrom(address,address,uint256) (#537-541)
increaseAllowance(address,uint256) should be declared external:
- FlexQ.increaseAllowance(address,uint256) (#543-546)
decreaseAllowance(address,uint256) should be declared external:
- FlexQ.decreaseAllowance(address,uint256) (#548-551)
isExcludedFromReward(address) should be declared external:
- FlexQ.isExcludedFromReward(address) (#553-555)
totalFees() should be declared external:
- FlexQ.totalFees() (#557-559)
minimumTokensBeforeSwapAmount() should be declared external:
- FlexQ.minimumTokensBeforeSwapAmount() (#561-563)
buyBackUpperLimitAmount() should be declared external:
- FlexQ.buyBackUpperLimitAmount() (#565-567)
deliver(uint256) should be declared external:
- FlexQ.deliver(uint256) (#569-576)
reflectionFromToken(uint256,bool) should be declared external:
- FlexQ.reflectionFromToken(uint256,bool) (#579-588)
excludeFromReward(address) should be declared external:
- FlexQ.excludeFromReward(address) (#596-604)
isExcludedFromFee(address) should be declared external:
- FlexQ.isExcludedFromFee(address) (#873-875)
excludeFromFee(address) should be declared external:
- FlexQ.excludeFromFee(address) (#877-879)
includeInFee(address) should be declared external:
- FlexQ.includeInFee(address) (#881-883)
setBuyBackEnabled(bool) should be declared external:
- FlexQ.setBuyBackEnabled(bool) (#918-921)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain


Unable to find PancakeSwap trading pair to compute liquidity.


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


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


Unable to find Discord account


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 price dump / death


Young tokens have high risks of 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 FLQ

News for FLQ