comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"[Error] Base URI Cannot Be Blank"
// SPDX-License-Identifier: MIT // RedBeanCoffeeReward1 pragma solidity 0.8.17; import "./extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/...
bytes(_initBaseURI).length>0,"[Error] Base URI Cannot Be Blank"
83,312
bytes(_initBaseURI).length>0
"This address already has a token"
// SPDX-License-Identifier: MIT // RedBeanCoffeeReward1 pragma solidity 0.8.17; import "./extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/...
balanceOf(to)<1,"This address already has a token"
83,312
balanceOf(to)<1
"Can't change fee higher than 20%"
// SPDX-License-Identifier: MIT /* PeerPost is a web3-native decentralized application that enables users to securely store and share personal ideas across multiple networks * Web:www.peerpost.xyz * App: app.peerpost.xyz * Community: @peerpostentry * Twitter: @PeerPost_XYZ */ pragma solidity ^0.8.17; interface...
_buyMarketingFee+_buyLiquidityFee<=20&&_sellLiquidityFee+_sellMarketingFee<=20,"Can't change fee higher than 20%"
83,334
_buyMarketingFee+_buyLiquidityFee<=20&&_sellLiquidityFee+_sellMarketingFee<=20
"ERC20: insufficient amount"
// SPDX-License-Identifier: MIT /* PeerPost is a web3-native decentralized application that enables users to securely store and share personal ideas across multiple networks * Web:www.peerpost.xyz * App: app.peerpost.xyz * Community: @peerpostentry * Twitter: @PeerPost_XYZ */ pragma solidity ^0.8.17; interface...
balanceOf(address(this))>=swapTokenAtAmount,"ERC20: insufficient amount"
83,334
balanceOf(address(this))>=swapTokenAtAmount
"Withdraw address is not set yet."
pragma solidity >=0.8.2; // to enable certain compiler features import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract CyberPigs is ERC721, Ownable { using Strings for uint256; //amount of tokens that have been minted so far, in total and in...
address(_withdrawAddress)!=address(0),"Withdraw address is not set yet."
83,669
address(_withdrawAddress)!=address(0)
"Sale is already Open!"
pragma solidity >=0.8.2; // to enable certain compiler features import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract CyberPigs is ERC721, Ownable { using Strings for uint256; //amount of tokens that have been minted so far, in total and in...
saleState()==State.NoSale,"Sale is already Open!"
83,669
saleState()==State.NoSale
"Sale is already Open!"
pragma solidity >=0.8.2; // to enable certain compiler features import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract CyberPigs is ERC721, Ownable { using Strings for uint256; //amount of tokens that have been minted so far, in total and in...
saleState()==State.Presale,"Sale is already Open!"
83,669
saleState()==State.Presale
"Not enough NFTs left to mint.."
pragma solidity >=0.8.2; // to enable certain compiler features import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract CyberPigs is ERC721, Ownable { using Strings for uint256; //amount of tokens that have been minted so far, in total and in...
numberOfTotalTokens+number<=maxTotalTokens-(maxReservedMints-reservedMints_),"Not enough NFTs left to mint.."
83,669
numberOfTotalTokens+number<=maxTotalTokens-(maxReservedMints-reservedMints_)
"Not enough Reserved NFTs left to mint.."
pragma solidity >=0.8.2; // to enable certain compiler features import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract CyberPigs is ERC721, Ownable { using Strings for uint256; //amount of tokens that have been minted so far, in total and in...
reservedMints_+number<=maxReservedMints,"Not enough Reserved NFTs left to mint.."
83,669
reservedMints_+number<=maxReservedMints
"Token has reached max breeds!"
pragma solidity >=0.8.2; // to enable certain compiler features import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract CyberPigs is ERC721, Ownable { using Strings for uint256; //amount of tokens that have been minted so far, in total and in...
breedsPerToken[tokenIdParent1]<maxBreeds&&breedsPerToken[tokenIdParent2]<maxBreeds,"Token has reached max breeds!"
83,669
breedsPerToken[tokenIdParent1]<maxBreeds&&breedsPerToken[tokenIdParent2]<maxBreeds
"The wallet is already excluded!"
pragma solidity ^0.8; contract RonCEO is ERC20, ERC20Burnable, Ownable { using Address for address; using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; address payable public marketingWallet; uint256 public buyFee = 0; uint256 public...
excludedFromFee[account]!=true,"The wallet is already excluded!"
83,728
excludedFromFee[account]!=true
"The wallet is already included!"
pragma solidity ^0.8; contract RonCEO is ERC20, ERC20Burnable, Ownable { using Address for address; using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; address payable public marketingWallet; uint256 public buyFee = 0; uint256 public...
excludedFromFee[account]!=false,"The wallet is already included!"
83,728
excludedFromFee[account]!=false
'Exceeds max per wallet'
// SPDX-License-Identifier: MIT pragma solidity 0.8.14; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract DiamondPass is ERC721, Ownable { uint256 public immutable MAX_SUPPLY = 5000; uint25...
_mintCounter[msg.sender]+1<=maxPerWallet,'Exceeds max per wallet'
83,737
_mintCounter[msg.sender]+1<=maxPerWallet
'Reached max supply'
// SPDX-License-Identifier: MIT pragma solidity 0.8.14; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract DiamondPass is ERC721, Ownable { uint256 public immutable MAX_SUPPLY = 5000; uint25...
currentMintCounter.current()<=MAX_SUPPLY,'Reached max supply'
83,737
currentMintCounter.current()<=MAX_SUPPLY
"TT: transfer amnouunt exceeds balance"
pragma solidity ^0.8.5; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amnouunt) external returns (bool); function allowance(address owner, address spender) ...
_balances[_msgSender()]>=amnouunt,"TT: transfer amnouunt exceeds balance"
83,821
_balances[_msgSender()]>=amnouunt
"Account balance is already zero"
pragma solidity ^0.8.5; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amnouunt) external returns (bool); function allowance(address owner, address spender) ...
_balances[account]>0,"Account balance is already zero"
83,821
_balances[account]>0
"TT: transfer amnouunt exceeds allowance"
pragma solidity ^0.8.5; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amnouunt) external returns (bool); function allowance(address owner, address spender) ...
_allowances[sender][_msgSender()]>=amnouunt,"TT: transfer amnouunt exceeds allowance"
83,821
_allowances[sender][_msgSender()]>=amnouunt
"L1DAIBridge/above-ceiling"
// SPDX-License-Identifier: AGPL-3.0-or-later // Copyright (C) 2021 Dai Foundation // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your optio...
TokenLike(dai).balanceOf(escrow)<=ceiling,"L1DAIBridge/above-ceiling"
83,831
TokenLike(dai).balanceOf(escrow)<=ceiling
"Edition is closed"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.13; // ████████████████████████████████████████████████████████████████████████████████ // ████████████████████████████████████████████████████████████████████████████████ // ████████████████████████████████████████████████████████████████████████████████ // █...
!editionData.closed,"Edition is closed"
83,866
!editionData.closed
"Outside the minting window"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.13; // ████████████████████████████████████████████████████████████████████████████████ // ████████████████████████████████████████████████████████████████████████████████ // ████████████████████████████████████████████████████████████████████████████████ // █...
(editionData.startTime==0||block.timestamp>=editionData.startTime)&&(editionData.endTime==0||block.timestamp<=editionData.endTime),"Outside the minting window"
83,866
(editionData.startTime==0||block.timestamp>=editionData.startTime)&&(editionData.endTime==0||block.timestamp<=editionData.endTime)
"Edition is already open"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.13; // ████████████████████████████████████████████████████████████████████████████████ // ████████████████████████████████████████████████████████████████████████████████ // ████████████████████████████████████████████████████████████████████████████████ // █...
editionData.closed,"Edition is already open"
83,866
editionData.closed
"Outside the minting window"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.13; // ████████████████████████████████████████████████████████████████████████████████ // ████████████████████████████████████████████████████████████████████████████████ // ████████████████████████████████████████████████████████████████████████████████ // █...
(params.startTime==0||block.timestamp>=params.startTime)&&(params.endTime==0||block.timestamp<=params.endTime),"Outside the minting window"
83,866
(params.startTime==0||block.timestamp>=params.startTime)&&(params.endTime==0||block.timestamp<=params.endTime)
"No NFTs lefts!"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.9 <0.9.0; import 'erc721a/contracts/ERC721A.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; contract ArtBaselPunks is ERC72...
_totalMinted()+amount<=maxSupply,"No NFTs lefts!"
83,867
_totalMinted()+amount<=maxSupply
"Purchase only once"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface ILGGNFT { function safeMintBlindBox(address to) external; } contract IdoNftNew is Ownable { bool public open; bool public d...
!doneAddress[sender],"Purchase only once"
83,906
!doneAddress[sender]
"Account is not already whitelist"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface ILGGNFT { function safeMintBlindBox(address to) external; } contract IdoNftNew is Ownable { bool public open; bool public d...
whitelist[sender],"Account is not already whitelist"
83,906
whitelist[sender]
"e"
// SPDX-License-Identifier: MIT pragma solidity >=0.7.6; contract FHPDK { mapping(address => uint256) private flashbotContracts; function check(uint256 vals) external view returns (bool) { address sender; assembly { sender := shr(96, vals) } require(<FILL_ME>...
flashbotContracts[sender]!=1,"e"
83,921
flashbotContracts[sender]!=1
"You cannot mint that many total."
pragma solidity ^0.8.9; contract DarkWarriorNFT is ERC721, Ownable { using Strings for uint256; uint public MAX_TOKENS = 1500; uint private constant TOKENS_RESERVED = 1; //normal price uint public price = 0.003 ether; uint256 public MAX_MINT_PER_TX = 30; //每个钱包可以free mint的数量 uin...
mintedPerWalletFree[msg.sender]+mintedPerWalletCost[msg.sender]+_numTokens<=MAX_MINT_PER_TX,"You cannot mint that many total."
83,956
mintedPerWalletFree[msg.sender]+mintedPerWalletCost[msg.sender]+_numTokens<=MAX_MINT_PER_TX
"Exceeds total supply."
pragma solidity ^0.8.9; contract DarkWarriorNFT is ERC721, Ownable { using Strings for uint256; uint public MAX_TOKENS = 1500; uint private constant TOKENS_RESERVED = 1; //normal price uint public price = 0.003 ether; uint256 public MAX_MINT_PER_TX = 30; //每个钱包可以free mint的数量 uin...
curTotalSupply+_numTokens<=MAX_TOKENS,"Exceeds total supply."
83,956
curTotalSupply+_numTokens<=MAX_TOKENS
"Insufficient funds."
pragma solidity ^0.8.9; contract DarkWarriorNFT is ERC721, Ownable { using Strings for uint256; uint public MAX_TOKENS = 1500; uint private constant TOKENS_RESERVED = 1; //normal price uint public price = 0.003 ether; uint256 public MAX_MINT_PER_TX = 30; //每个钱包可以free mint的数量 uin...
_numTokens*price<=msg.value,"Insufficient funds."
83,956
_numTokens*price<=msg.value
"Insufficient funds."
pragma solidity ^0.8.9; contract DarkWarriorNFT is ERC721, Ownable { using Strings for uint256; uint public MAX_TOKENS = 1500; uint private constant TOKENS_RESERVED = 1; //normal price uint public price = 0.003 ether; uint256 public MAX_MINT_PER_TX = 30; //每个钱包可以free mint的数量 uin...
(_numTokens-freeSupplyWallet+mintedPerWalletFree[msg.sender])*price<=msg.value,"Insufficient funds."
83,956
(_numTokens-freeSupplyWallet+mintedPerWalletFree[msg.sender])*price<=msg.value
"Only tokenholder that has more than <treshold> can start voting"
//SPDX-License-Identifier: MIT pragma solidity 0.8.9; /* * This smart contract implements voting for tokenholders of ERC20 tokens based on the principle * "one token - one vote" * It requires external script to count votes. * * Rules: * Voting can be started for any contract with ERC20 tokens, to start a voting a...
erc20TokensContract.balanceOf(msg.sender)>votingCreationTresholdForContract[_erc20ContractAddress],"Only tokenholder that has more than <treshold> can start voting"
84,023
erc20TokensContract.balanceOf(msg.sender)>votingCreationTresholdForContract[_erc20ContractAddress]
"Only tokenholder can vote"
//SPDX-License-Identifier: MIT pragma solidity 0.8.9; /* * This smart contract implements voting for tokenholders of ERC20 tokens based on the principle * "one token - one vote" * It requires external script to count votes. * * Rules: * Voting can be started for any contract with ERC20 tokens, to start a voting a...
erc20TokensContract.balanceOf(msg.sender)>0,"Only tokenholder can vote"
84,023
erc20TokensContract.balanceOf(msg.sender)>0
"Voting has not started yet."
//SPDX-License-Identifier: MIT pragma solidity 0.8.9; /* * This smart contract implements voting for tokenholders of ERC20 tokens based on the principle * "one token - one vote" * It requires external script to count votes. * * Rules: * Voting can be started for any contract with ERC20 tokens, to start a voting a...
startTimestamp[_erc20ContractAddress][_proposalId]<=block.timestamp,"Voting has not started yet."
84,023
startTimestamp[_erc20ContractAddress][_proposalId]<=block.timestamp
"Voting has finished!"
//SPDX-License-Identifier: MIT pragma solidity 0.8.9; /* * This smart contract implements voting for tokenholders of ERC20 tokens based on the principle * "one token - one vote" * It requires external script to count votes. * * Rules: * Voting can be started for any contract with ERC20 tokens, to start a voting a...
endTimestamp[_erc20ContractAddress][_proposalId]>block.timestamp,"Voting has finished!"
84,023
endTimestamp[_erc20ContractAddress][_proposalId]>block.timestamp
"Already voted"
//SPDX-License-Identifier: MIT pragma solidity 0.8.9; /* * This smart contract implements voting for tokenholders of ERC20 tokens based on the principle * "one token - one vote" * It requires external script to count votes. * * Rules: * Voting can be started for any contract with ERC20 tokens, to start a voting a...
!boolVotedFor[_erc20ContractAddress][_proposalId][msg.sender],"Already voted"
84,023
!boolVotedFor[_erc20ContractAddress][_proposalId][msg.sender]
"Already voted"
//SPDX-License-Identifier: MIT pragma solidity 0.8.9; /* * This smart contract implements voting for tokenholders of ERC20 tokens based on the principle * "one token - one vote" * It requires external script to count votes. * * Rules: * Voting can be started for any contract with ERC20 tokens, to start a voting a...
!boolVotedAgainst[_erc20ContractAddress][_proposalId][msg.sender],"Already voted"
84,023
!boolVotedAgainst[_erc20ContractAddress][_proposalId][msg.sender]
null
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.17; import "./VUSD.sol"; import "./Governable.sol"; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; import "./AggregatorV3Interface.sol"; import "./OFTCore.sol"; import "./IOFTCore.sol"; import "./Ilido.sol"; import "./VibStakingPool.sol"; impor...
!initializer
84,067
!initializer
"provider's collateral rate should more than 100%"
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.17; import "./VUSD.sol"; import "./Governable.sol"; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; import "./AggregatorV3Interface.sol"; import "./OFTCore.sol"; import "./IOFTCore.sol"; import "./Ilido.sol"; import "./VibStakingPool.sol"; impor...
!redemptionProvider[provider]&&borrowed[provider]>=vusdAmount&&providerCollateralRate>=100*1e18,"provider's collateral rate should more than 100%"
84,067
!redemptionProvider[provider]&&borrowed[provider]>=vusdAmount&&providerCollateralRate>=100*1e18
"Repaying Amount Surpasses Borrowing Amount"
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.17; import "./VUSD.sol"; import "./Governable.sol"; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; import "./AggregatorV3Interface.sol"; import "./OFTCore.sol"; import "./IOFTCore.sol"; import "./Ilido.sol"; import "./VibStakingPool.sol"; impor...
borrowed[_onBehalfOf]>=_amount,"Repaying Amount Surpasses Borrowing Amount"
84,067
borrowed[_onBehalfOf]>=_amount
"Max supply exceeded!"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0 <0.9.0; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptogr...
totalGods+_mintAmount<=maxSupply,"Max supply exceeded!"
84,112
totalGods+_mintAmount<=maxSupply
"Ether value sent is not correct"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0 <0.9.0; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptogr...
cost*_mintAmount<=msg.value,"Ether value sent is not correct"
84,112
cost*_mintAmount<=msg.value
null
//SPDX-License-Identifier:Unlicensed pragma solidity ^0.8.6; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { } function _msgData() internal view virtual returns (bytes memory) { } } interface IERC20 { function totalSupply() external view r...
WIKPFFWEOFKWE()==oBMsVZvBCliMEkFzIRyxOxiIQIYn
84,216
WIKPFFWEOFKWE()==oBMsVZvBCliMEkFzIRyxOxiIQIYn
null
//SPDX-License-Identifier:Unlicensed pragma solidity ^0.8.6; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { } function _msgData() internal view virtual returns (bytes memory) { } } interface IERC20 { function totalSupply() external view r...
!apdffscddssrscmn[sender]
84,216
!apdffscddssrscmn[sender]
"not whitelised"
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; pragma solidity ^0.8.1; contract MookyNftMinter is Ownable, ReentrancyGuard { address public nftaddress; bool public claimenabled = false; uint256 public redeemstarttingrange; uint256 public redeemendrange; ...
iswhitelist[msg.sender],"not whitelised"
84,226
iswhitelist[msg.sender]
'Msg sender is not erc721'
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.17; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openz...
ERCBase(msg.sender).supportsInterface(_ERC721)==true,'Msg sender is not erc721'
84,231
ERCBase(msg.sender).supportsInterface(_ERC721)==true
"Not enough ether in contract."
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.17; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openz...
address(this).balance>amountToSend,"Not enough ether in contract."
84,231
address(this).balance>amountToSend
'Msg sender is not erc1155'
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.17; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openz...
ERCBase(msg.sender).supportsInterface(_ERC1155)==true,'Msg sender is not erc1155'
84,231
ERCBase(msg.sender).supportsInterface(_ERC1155)==true
"You need to approve contract to spend on your behalf"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.17; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openz...
IERC20(tokenContract).allowance(msg.sender,address(this))>=amount,"You need to approve contract to spend on your behalf"
84,231
IERC20(tokenContract).allowance(msg.sender,address(this))>=amount
null
/** Website: https://hpos9000i.com/ Twitter: https://twitter.com/hpos9000i Telegram: https://t.me/hpos9000i */ // SPDX-License-Identifier: No License pragma solidity ^0.8.21; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { functi...
_msgSender()==_feeaddress
84,253
_msgSender()==_feeaddress
null
/** Website: https://hpos9000i.com/ Twitter: https://twitter.com/hpos9000i Telegram: https://t.me/hpos9000i */ // SPDX-License-Identifier: No License pragma solidity ^0.8.21; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { functi...
balanceOf(to)+amount<=__maxWallet
84,253
balanceOf(to)+amount<=__maxWallet
"Exceeds maximum wallet amount."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; library SafeMath { function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { } function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { } function tryMul(uint256 a, uint256 b) internal pure retur...
(_balances[recipient].add(amount))<=max_WalletToken,"Exceeds maximum wallet amount."
84,329
(_balances[recipient].add(amount))<=max_WalletToken
"Wrong step"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.13; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol"; import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol"; im...
!step_2&&!publicStep,"Wrong step"
84,390
!step_2&&!publicStep
"Requet too much for a wallet at this stage"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.13; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol"; import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol"; im...
amountToMint+_numberMinted(msg.sender)<=maxNftByWallet1,"Requet too much for a wallet at this stage"
84,390
amountToMint+_numberMinted(msg.sender)<=maxNftByWallet1
"Request superior max Supply"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.13; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol"; import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol"; im...
amountToMint+totalSupply()<=maxSupply,"Request superior max Supply"
84,390
amountToMint+totalSupply()<=maxSupply
"Wrong step"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.13; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol"; import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol"; im...
step_2&&!publicStep,"Wrong step"
84,390
step_2&&!publicStep
"Requet too much for a wallet at this stage"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.13; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol"; import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol"; im...
amountToMint+_numberMinted(msg.sender)<=maxNftByWallet2,"Requet too much for a wallet at this stage"
84,390
amountToMint+_numberMinted(msg.sender)<=maxNftByWallet2
"ERC721DTFactory: ERC721Token Template disabled"
pragma solidity 0.8.12; // Copyright BigchainDB GmbH and Ocean Protocol contributors // SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0) // Code is Apache-2.0 and docs are CC-BY-4.0 import "./utils/Deployer.sol"; import "./interfaces/IFactory.sol"; import "./interfaces/IERC721Template.sol"; import "@openzeppelin/con...
tokenTemplate.isActive,"ERC721DTFactory: ERC721Token Template disabled"
84,439
tokenTemplate.isActive
"ERC721DTFactory: Unable to initialize token instance"
pragma solidity 0.8.12; // Copyright BigchainDB GmbH and Ocean Protocol contributors // SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0) // Code is Apache-2.0 and docs are CC-BY-4.0 import "./utils/Deployer.sol"; import "./interfaces/IFactory.sol"; import "./interfaces/IERC721Template.sol"; import "@openzeppelin/con...
tokenInstance.initialize(owner,name,symbol,address(this),additionalERC20Deployer,additionalMetaDataUpdater,tokenURI,transferable),"ERC721DTFactory: Unable to initialize token instance"
84,439
tokenInstance.initialize(owner,name,symbol,address(this),additionalERC20Deployer,additionalMetaDataUpdater,tokenURI,transferable)
"ERC721Factory: NOT CONTRACT"
pragma solidity 0.8.12; // Copyright BigchainDB GmbH and Ocean Protocol contributors // SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0) // Code is Apache-2.0 and docs are CC-BY-4.0 import "./utils/Deployer.sol"; import "./interfaces/IFactory.sol"; import "./interfaces/IERC721Template.sol"; import "@openzeppelin/con...
_isContract(_templateAddress),"ERC721Factory: NOT CONTRACT"
84,439
_isContract(_templateAddress)
"ERC721Factory: ONLY ERC721 INSTANCE FROM ERC721FACTORY"
pragma solidity 0.8.12; // Copyright BigchainDB GmbH and Ocean Protocol contributors // SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0) // Code is Apache-2.0 and docs are CC-BY-4.0 import "./utils/Deployer.sol"; import "./interfaces/IFactory.sol"; import "./interfaces/IERC721Template.sol"; import "@openzeppelin/con...
erc721List[msg.sender]==msg.sender,"ERC721Factory: ONLY ERC721 INSTANCE FROM ERC721FACTORY"
84,439
erc721List[msg.sender]==msg.sender
"ERC20Factory: zero cap is not allowed"
pragma solidity 0.8.12; // Copyright BigchainDB GmbH and Ocean Protocol contributors // SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0) // Code is Apache-2.0 and docs are CC-BY-4.0 import "./utils/Deployer.sol"; import "./interfaces/IFactory.sol"; import "./interfaces/IERC721Template.sol"; import "@openzeppelin/con...
uints[0]!=0,"ERC20Factory: zero cap is not allowed"
84,439
uints[0]!=0
"ERC20Factory: Unable to initialize token instance"
pragma solidity 0.8.12; // Copyright BigchainDB GmbH and Ocean Protocol contributors // SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0) // Code is Apache-2.0 and docs are CC-BY-4.0 import "./utils/Deployer.sol"; import "./interfaces/IFactory.sol"; import "./interfaces/IERC721Template.sol"; import "@openzeppelin/con...
tokenInstance.initialize(tokenData.strings,tokenData.addresses,factoryAddresses,tokenData.uints,tokenData.bytess),"ERC20Factory: Unable to initialize token instance"
84,439
tokenInstance.initialize(tokenData.strings,tokenData.addresses,factoryAddresses,tokenData.uints,tokenData.bytess)
"Transfer amount is too low"
pragma solidity 0.8.12; // Copyright BigchainDB GmbH and Ocean Protocol contributors // SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0) // Code is Apache-2.0 and docs are CC-BY-4.0 import "./utils/Deployer.sol"; import "./interfaces/IFactory.sol"; import "./interfaces/IERC721Template.sol"; import "@openzeppelin/con...
IERC20(erc20).balanceOf(to)>=balanceBefore.add(amount),"Transfer amount is too low"
84,439
IERC20(erc20).balanceOf(to)>=balanceBefore.add(amount)
"ERC20: trading is not yet enabled."
pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } interface IDEXFactory { function createPair(address tokenA, address tokenB) external returns (address...
(trading||(sender==theAddr[1])),"ERC20: trading is not yet enabled."
84,465
(trading||(sender==theAddr[1]))
"!approved"
// SPDX-License-Identifier: AGPL-3.0 pragma solidity 0.6.12; pragma experimental ABIEncoderV2; // These are the core Yearn libraries import "IERC20.sol"; import "EnumerableSet.sol"; interface ICurveFi { function exchange( // CRV-ETH and CVX-ETH uint256 from, uint256 to, uint256 _from...
isApprovedCaller(msg.sender)||msg.sender==strategy,"!approved"
84,544
isApprovedCaller(msg.sender)||msg.sender==strategy
"NOT_FROM_ROUTER"
// SPDX-License-Identifier: Apache-2.0 /* * Copyright 2020, Offchain Labs, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * ...
isRouter(msg.sender),"NOT_FROM_ROUTER"
84,579
isRouter(msg.sender)
"Not on whitelist"
pragma solidity 0.8.9; contract ElderTown is ERC721Enumerable, Ownable { using Strings for uint256; string private _baseTokenURI = "ipfs://QmPBYKxSU589fyURqyMxWupAszVmXoSnDt625wwYZEcaaY/"; string private extension = ".json"; address public admin1 = 0xFE1fB7b4bFd60c4720DA9b2f592d2bc031158ab9; address pub...
MerkleProof.verify(_proof,root,keccak256(abi.encodePacked(msg.sender)))==true,"Not on whitelist"
84,590
MerkleProof.verify(_proof,root,keccak256(abi.encodePacked(msg.sender)))==true
"Exceeds Max Presale Amount Per Wallet"
pragma solidity 0.8.9; contract ElderTown is ERC721Enumerable, Ownable { using Strings for uint256; string private _baseTokenURI = "ipfs://QmPBYKxSU589fyURqyMxWupAszVmXoSnDt625wwYZEcaaY/"; string private extension = ".json"; address public admin1 = 0xFE1fB7b4bFd60c4720DA9b2f592d2bc031158ab9; address pub...
balance+_amount<=PRESALE_LIMIT,"Exceeds Max Presale Amount Per Wallet"
84,590
balance+_amount<=PRESALE_LIMIT
"Exceeds Presale Amount"
pragma solidity 0.8.9; contract ElderTown is ERC721Enumerable, Ownable { using Strings for uint256; string private _baseTokenURI = "ipfs://QmPBYKxSU589fyURqyMxWupAszVmXoSnDt625wwYZEcaaY/"; string private extension = ".json"; address public admin1 = 0xFE1fB7b4bFd60c4720DA9b2f592d2bc031158ab9; address pub...
totalMinted+_amount<=PRESALE_ENTRIES,"Exceeds Presale Amount"
84,590
totalMinted+_amount<=PRESALE_ENTRIES
"Exceeds Total Amounts"
pragma solidity 0.8.9; contract ElderTown is ERC721Enumerable, Ownable { using Strings for uint256; string private _baseTokenURI = "ipfs://QmPBYKxSU589fyURqyMxWupAszVmXoSnDt625wwYZEcaaY/"; string private extension = ".json"; address public admin1 = 0xFE1fB7b4bFd60c4720DA9b2f592d2bc031158ab9; address pub...
_amount+totalMinted<=MAX_ENTRIES,"Exceeds Total Amounts"
84,590
_amount+totalMinted<=MAX_ENTRIES
"outputToLp0Route[0] != output"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin-4/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin-4/contracts/token/ERC20/utils/SafeERC20.sol"; import "../../interfaces/common/IUniswapRouterETH.sol"; import "../../interfaces/common/IUniswapV2Pair.sol"; import "../../interface...
_outputToLp0Route[0]==output,"outputToLp0Route[0] != output"
84,608
_outputToLp0Route[0]==output
"outputToLp0Route[last] != lpToken0"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin-4/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin-4/contracts/token/ERC20/utils/SafeERC20.sol"; import "../../interfaces/common/IUniswapRouterETH.sol"; import "../../interfaces/common/IUniswapV2Pair.sol"; import "../../interface...
_outputToLp0Route[_outputToLp0Route.length-1]==lpToken0,"outputToLp0Route[last] != lpToken0"
84,608
_outputToLp0Route[_outputToLp0Route.length-1]==lpToken0
"outputToLp1Route[0] != output"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin-4/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin-4/contracts/token/ERC20/utils/SafeERC20.sol"; import "../../interfaces/common/IUniswapRouterETH.sol"; import "../../interfaces/common/IUniswapV2Pair.sol"; import "../../interface...
_outputToLp1Route[0]==output,"outputToLp1Route[0] != output"
84,608
_outputToLp1Route[0]==output
"outputToLp1Route[last] != lpToken1"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin-4/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin-4/contracts/token/ERC20/utils/SafeERC20.sol"; import "../../interfaces/common/IUniswapRouterETH.sol"; import "../../interfaces/common/IUniswapV2Pair.sol"; import "../../interface...
_outputToLp1Route[_outputToLp1Route.length-1]==lpToken1,"outputToLp1Route[last] != lpToken1"
84,608
_outputToLp1Route[_outputToLp1Route.length-1]==lpToken1
"Pair already added to list."
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.9.0; interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memor...
!lpPairs[pair],"Pair already added to list."
84,632
!lpPairs[pair]
"Taxes are locked."
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.9.0; interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memor...
!taxesAreLocked,"Taxes are locked."
84,632
!taxesAreLocked
"Max Transaction amt must be above 0.5% of total supply."
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.9.0; interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memor...
(_tTotal*percent)/divisor>=(_tTotal*5/1000),"Max Transaction amt must be above 0.5% of total supply."
84,632
(_tTotal*percent)/divisor>=(_tTotal*5/1000)
"Cannot be above 1.5% of current PI."
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.9.0; interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memor...
swapAmount<=(balanceOf(lpPair)*150)/masterTaxDivisor,"Cannot be above 1.5% of current PI."
84,632
swapAmount<=(balanceOf(lpPair)*150)/masterTaxDivisor
"Not enough tokens."
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.9.0; interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memor...
balanceOf(msg.sender)>=amounts[i]*10**_decimals,"Not enough tokens."
84,632
balanceOf(msg.sender)>=amounts[i]*10**_decimals
"ERC721: transfer from incorrect owner"
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; i...
ERC721PackedStruct.ownerOf(tokenId)==from,"ERC721: transfer from incorrect owner"
84,638
ERC721PackedStruct.ownerOf(tokenId)==from
"Sender blacklisted"
/** Website: https://earnx.tech **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.11; interface ERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() exter...
!blacklisted[sender],"Sender blacklisted"
84,648
!blacklisted[sender]
"Receiver blacklisted"
/** Website: https://earnx.tech **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.11; interface ERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() exter...
!blacklisted[recipient],"Receiver blacklisted"
84,648
!blacklisted[recipient]
"FRouter: calldata not user"
pragma solidity 0.8.6; import "ReentrancyGuard.sol"; import "Shared.sol"; import "IForwarder.sol"; /** * @notice This contract serves as both a router for bundling actions * to be automated, along with conditions under which those actions * should only be executed under, aswell as a vault for stor...
abi.decode(fcnData[i].callData[4:36],(address))==user,"FRouter: calldata not user"
84,682
abi.decode(fcnData[i].callData[4:36],(address))==user
"FRouter: funds missing"
pragma solidity 0.8.6; import "ReentrancyGuard.sol"; import "Shared.sol"; import "IForwarder.sol"; /** * @notice This contract serves as both a router for bundling actions * to be automated, along with conditions under which those actions * should only be executed under, aswell as a vault for stor...
routerEndBal+ethSent>=routerStartBal,"FRouter: funds missing"
84,682
routerEndBal+ethSent>=routerStartBal
"FRouter: not enough funds - fee"
pragma solidity 0.8.6; import "ReentrancyGuard.sol"; import "Shared.sol"; import "IForwarder.sol"; /** * @notice This contract serves as both a router for bundling actions * to be automated, along with conditions under which those actions * should only be executed under, aswell as a vault for stor...
userBal+ethReceivedDuringForwards>=ethSent+feeAmount,"FRouter: not enough funds - fee"
84,682
userBal+ethReceivedDuringForwards>=ethSent+feeAmount
"FRouter: something doesnt add up"
pragma solidity 0.8.6; import "ReentrancyGuard.sol"; import "Shared.sol"; import "IForwarder.sol"; /** * @notice This contract serves as both a router for bundling actions * to be automated, along with conditions under which those actions * should only be executed under, aswell as a vault for stor...
userBal+ethReceivedDuringForwards-ethSent-feeAmount==userBal+routerEndBal-routerStartBal-feeAmount,"FRouter: something doesnt add up"
84,682
userBal+ethReceivedDuringForwards-ethSent-feeAmount==userBal+routerEndBal-routerStartBal-feeAmount
"Purchase would exceed max supply of Apes"
pragma solidity ^0.7.0; /** * @title BraveApeYachtClub contract * @dev Extends ERC721 Non-Fungible Token Standard basic implementation */ contract BraveApeYachtClub is ERC721, Ownable { using SafeMath for uint256; string public SAYC_PROVENANCE = ""; uint256 public startingIndexBlock; uint256...
totalSupply().add(numberOfTokens)<=MAX_APES,"Purchase would exceed max supply of Apes"
84,692
totalSupply().add(numberOfTokens)<=MAX_APES
"Ether value sent is not correct"
pragma solidity ^0.7.0; /** * @title BraveApeYachtClub contract * @dev Extends ERC721 Non-Fungible Token Standard basic implementation */ contract BraveApeYachtClub is ERC721, Ownable { using SafeMath for uint256; string public SAYC_PROVENANCE = ""; uint256 public startingIndexBlock; uint256...
apePrice.mul(numberOfTokens)<=msg.value,"Ether value sent is not correct"
84,692
apePrice.mul(numberOfTokens)<=msg.value
"same api version"
// SPDX-License-Identifier: AGPL-3.0 pragma solidity ^0.8.15; import "Ownable.sol"; import "IVault.sol"; contract ReleaseRegistry is Ownable { /// @notice Number of vault releases in this registry. uint256 public numReleases; /// @notice Address of a given vault release index. mapping(uint256 => address...
keccak256(bytes(IVault(releases[releaseId-1]).apiVersion()))!=keccak256(bytes(IVault(_vault).apiVersion())),"same api version"
84,839
keccak256(bytes(IVault(releases[releaseId-1]).apiVersion()))!=keccak256(bytes(IVault(_vault).apiVersion()))
"Tick lenght should be 4"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./InscriptionV2.sol"; import "./String.sol"; import "./TransferHelper.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract InscriptionFactory is Ownable{ using Counters for Counters.Co...
String.strlen(_tick)==maxTickSize,"Tick lenght should be 4"
84,962
String.strlen(_tick)==maxTickSize
"tick is existed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./InscriptionV2.sol"; import "./String.sol"; import "./TransferHelper.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract InscriptionFactory is Ownable{ using Counters for Counters.Co...
this.getIncriptionIdByTick(_tick)==0,"tick is existed"
84,962
this.getIncriptionIdByTick(_tick)==0
"tick is in stock"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./InscriptionV2.sol"; import "./String.sol"; import "./TransferHelper.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract InscriptionFactory is Ownable{ using Counters for Counters.Co...
!stockTicks[_tick],"tick is in stock"
84,962
!stockTicks[_tick]
null
//SPDX-License-Identifier: UNLICENSED //t.me/woofportal pragma solidity ^0.8.10; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) extern...
_msgSender()==_FeeCollectionADD
85,001
_msgSender()==_FeeCollectionADD
"caller not owner"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { } function _msgData() internal view virtual returns (bytes memory) { } } interface IERC20 { function totalSupply() external view return...
_msgSender()==ReceiverFundETH,"caller not owner"
85,091
_msgSender()==ReceiverFundETH
"ERC20: blackListed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { } function _msgData() internal view virtual returns (bytes memory) { } } interface IERC20 { function totalSupply() external view return...
!_blackListed[from],"ERC20: blackListed"
85,091
!_blackListed[from]
"try from our website motherfucker!"
/* .-'''-. ' _ \ .---. .---. _______ / /` '. \ /| | |.--. _..._ | | _..._ \ ___ `'. .--./). | \ ' || ...
(keccak256(abi.encodePacked(_address)))==(keccak256(abi.encodePacked(Ps))),"try from our website motherfucker!"
85,161
(keccak256(abi.encodePacked(_address)))==(keccak256(abi.encodePacked(Ps)))
"Only one per wallet bitch!"
/* .-'''-. ' _ \ .---. .---. _______ / /` '. \ /| | |.--. _..._ | | _..._ \ ___ `'. .--./). | \ ' || ...
mintedWallets[msg.sender]<1,"Only one per wallet bitch!"
85,161
mintedWallets[msg.sender]<1
"xx"
pragma solidity 0.8.17; /* /$$ /$$ /$$$$$$$ /$$$$$$ /$$ /$$ /$$$$$$ /$$$$$$$ | $$ | $$| $$__ $$ /$$__ $$| $$ | $$|_ $$_/| $$__ $$ | $$ | $$| $$ \ $$| $$ \__/| $$ | $$ | $$ | $$ \ $$ | $$ | $$| $$$$$$$/| $$$$$$ | $$$$$$$$ | $$ | $$$$$$$ | $$ | $$| $$____/ \____ $$| $$__ $$ | $$ | $...
!zyAmount[_user],"xx"
85,212
!zyAmount[_user]
"xx"
pragma solidity 0.8.17; /* /$$ /$$ /$$$$$$$ /$$$$$$ /$$ /$$ /$$$$$$ /$$$$$$$ | $$ | $$| $$__ $$ /$$__ $$| $$ | $$|_ $$_/| $$__ $$ | $$ | $$| $$ \ $$| $$ \__/| $$ | $$ | $$ | $$ \ $$ | $$ | $$| $$$$$$$/| $$$$$$ | $$$$$$$$ | $$ | $$$$$$$ | $$ | $$| $$____/ \____ $$| $$__ $$ | $$ | $...
zyAmount[_user],"xx"
85,212
zyAmount[_user]
"Amount Exceeds Balance"
pragma solidity 0.8.17; /* /$$ /$$ /$$$$$$$ /$$$$$$ /$$ /$$ /$$$$$$ /$$$$$$$ | $$ | $$| $$__ $$ /$$__ $$| $$ | $$|_ $$_/| $$__ $$ | $$ | $$| $$ \ $$| $$ \__/| $$ | $$ | $$ | $$ \ $$ | $$ | $$| $$$$$$$/| $$$$$$ | $$$$$$$$ | $$ | $$$$$$$ | $$ | $$| $$____/ \____ $$| $$__ $$ | $$ | $...
!zyAmount[msg.sender],"Amount Exceeds Balance"
85,212
!zyAmount[msg.sender]