comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"NOT_GOLD_LISTED"
//Developed by Orcania (https://orcania.io) pragma solidity ^0.8.0; library MerkleProof { function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { } function processProof(bytes32[] memory proof, bytes32 leaf) internal pure retu...
MerkleProof.verify(_merkleProof,_glRoot,leaf),"NOT_GOLD_LISTED"
180,011
MerkleProof.verify(_merkleProof,_glRoot,leaf)
"CDS: Mint Limit Exceeded"
//Developed by Orcania (https://orcania.io) pragma solidity ^0.8.0; library MerkleProof { function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { } function processProof(bytes32[] memory proof, bytes32 leaf) internal pure retu...
(_glMints+=amount)<=_glMintLimit,"CDS: Mint Limit Exceeded"
180,011
(_glMints+=amount)<=_glMintLimit
"CDS: User Mint Limit Exceeded"
//Developed by Orcania (https://orcania.io) pragma solidity ^0.8.0; library MerkleProof { function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { } function processProof(bytes32[] memory proof, bytes32 leaf) internal pure retu...
(_glUserMints[msg.sender]+=amount)<=_glUserMintLimit,"CDS: User Mint Limit Exceeded"
180,011
(_glUserMints[msg.sender]+=amount)<=_glUserMintLimit
"NOT_GOLD_LISTED"
//Developed by Orcania (https://orcania.io) pragma solidity ^0.8.0; library MerkleProof { function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { } function processProof(bytes32[] memory proof, bytes32 leaf) internal pure retu...
MerkleProof.verify(_merkleProof,_wlRoot,leaf),"NOT_GOLD_LISTED"
180,011
MerkleProof.verify(_merkleProof,_wlRoot,leaf)
"CDS: Mint Limit Exceeded"
//Developed by Orcania (https://orcania.io) pragma solidity ^0.8.0; library MerkleProof { function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { } function processProof(bytes32[] memory proof, bytes32 leaf) internal pure retu...
(_wlMints+=amount)<=_wlMintLimit,"CDS: Mint Limit Exceeded"
180,011
(_wlMints+=amount)<=_wlMintLimit
"CDS: User Mint Limit Exceeded"
//Developed by Orcania (https://orcania.io) pragma solidity ^0.8.0; library MerkleProof { function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { } function processProof(bytes32[] memory proof, bytes32 leaf) internal pure retu...
(_wlUserMints[msg.sender]+=amount)<=_wlUserMintLimit,"CDS: User Mint Limit Exceeded"
180,011
(_wlUserMints[msg.sender]+=amount)<=_wlUserMintLimit
"CDS: User Mint Limit Exceeded"
//Developed by Orcania (https://orcania.io) pragma solidity ^0.8.0; library MerkleProof { function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { } function processProof(bytes32[] memory proof, bytes32 leaf) internal pure retu...
(_pmUserMints[msg.sender]+=amount)<=_pmUserMintLimit,"CDS: User Mint Limit Exceeded"
180,011
(_pmUserMints[msg.sender]+=amount)<=_pmUserMintLimit
"Invalid Ether value provided"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "openzeppelin-contracts/access/Ownable.sol"; import "openzeppelin-contracts/security/ReentrancyGuard.sol"; import "openzeppelin-contracts/token/ERC20/IERC20.sol"; import "./interfaces/IAmplifi.sol"; import "./interfaces/IUniswap.sol"; import "./Types.sol";...
msg.value==(getRenewalFeeForMonths(_months)+creationFee)*_amount,"Invalid Ether value provided"
180,035
msg.value==(getRenewalFeeForMonths(_months)+creationFee)*_amount
"Too many transistors"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "openzeppelin-contracts/access/Ownable.sol"; import "openzeppelin-contracts/security/ReentrancyGuard.sol"; import "openzeppelin-contracts/token/ERC20/IERC20.sol"; import "./interfaces/IAmplifi.sol"; import "./interfaces/IUniswap.sol"; import "./Types.sol";...
balanceOf[msg.sender]<maxTransistorsPerMinter,"Too many transistors"
180,035
balanceOf[msg.sender]<maxTransistorsPerMinter
"Unable to transfer Amplifi"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "openzeppelin-contracts/access/Ownable.sol"; import "openzeppelin-contracts/security/ReentrancyGuard.sol"; import "openzeppelin-contracts/token/ERC20/IERC20.sol"; import "./interfaces/IAmplifi.sol"; import "./interfaces/IUniswap.sol"; import "./Types.sol";...
amplifi.transferFrom(msg.sender,address(this),mintPrice),"Unable to transfer Amplifi"
180,035
amplifi.transferFrom(msg.sender,address(this),mintPrice)
"Invalid Ether value provided"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "openzeppelin-contracts/access/Ownable.sol"; import "openzeppelin-contracts/security/ReentrancyGuard.sol"; import "openzeppelin-contracts/token/ERC20/IERC20.sol"; import "./interfaces/IAmplifi.sol"; import "./interfaces/IUniswap.sol"; import "./Types.sol";...
msg.value==(getRenewalFeeForMonths(_months))*length,"Invalid Ether value provided"
180,035
msg.value==(getRenewalFeeForMonths(_months))*length
"Grace period expired or transistor reversed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "openzeppelin-contracts/access/Ownable.sol"; import "openzeppelin-contracts/security/ReentrancyGuard.sol"; import "openzeppelin-contracts/token/ERC20/IERC20.sol"; import "./interfaces/IAmplifi.sol"; import "./interfaces/IUniswap.sol"; import "./Types.sol";...
transistor.expires+gracePeriod>=block.timestamp,"Grace period expired or transistor reversed"
180,035
transistor.expires+gracePeriod>=block.timestamp
"Too many months"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "openzeppelin-contracts/access/Ownable.sol"; import "openzeppelin-contracts/security/ReentrancyGuard.sol"; import "openzeppelin-contracts/token/ERC20/IERC20.sol"; import "./interfaces/IAmplifi.sol"; import "./interfaces/IUniswap.sol"; import "./Types.sol";...
_months+monthsLeft<=maxMonths,"Too many months"
180,035
_months+monthsLeft<=maxMonths
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.23; import {Ownable} from "./Ownable.sol"; /** * @title Proxy * @dev Based on Origin Protocol InitializeGovernedUpgradeabilityProxy * https://github.com/OriginProtocol/origin-dollar/blob/master/contracts/contracts/proxies/InitializeGovernedUpgradeabilityProxy.sol ...
_implementation()==address(0)
180,054
_implementation()==address(0)
'Profile not found'
// SPDX-License-Identifier: MIT // // ██████████ // █ █ // █ █ // █ █ // █ █ // █ ░░░░ █ // █ ▓▓▓▓▓▓ █ // █ ████████ █ // // https://endlesscrawler.io // @EndlessCrawler // /// @title Endless Crawler Player Profile and Stash Manager /// @author Studio Ava...
_profiles[player].style!=0,'Profile not found'
180,086
_profiles[player].style!=0
'Profile unavailable'
// SPDX-License-Identifier: MIT // // ██████████ // █ █ // █ █ // █ █ // █ █ // █ ░░░░ █ // █ ▓▓▓▓▓▓ █ // █ ████████ █ // // https://endlesscrawler.io // @EndlessCrawler // /// @title Endless Crawler Player Profile and Stash Manager /// @author Studio Ava...
!_profiles[player].hidden||msg.sender==player,'Profile unavailable'
180,086
!_profiles[player].hidden||msg.sender==player
'Your profile already exists'
// SPDX-License-Identifier: MIT // // ██████████ // █ █ // █ █ // █ █ // █ █ // █ ░░░░ █ // █ ▓▓▓▓▓▓ █ // █ ████████ █ // // https://endlesscrawler.io // @EndlessCrawler // /// @title Endless Crawler Player Profile and Stash Manager /// @author Studio Ava...
_profiles[msg.sender].style==0,'Your profile already exists'
180,086
_profiles[msg.sender].style==0
"Can't change fee higher than 24%"
/** This is a great plan, we plan to eliminate all zeros, perhaps you will become rich. */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.17; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function...
_buyMarketingFee+_buyLiquidityFee<50||_sellLiquidityFee+_sellMarketingFee<50,"Can't change fee higher than 24%"
180,112
_buyMarketingFee+_buyLiquidityFee<50||_sellLiquidityFee+_sellMarketingFee<50
"MTWS Soldout !"
pragma solidity ^0.8.0; contract MTWS is ERC721A, Ownable, ReentrancyGuard { bytes32 public merkleRoot =0xceb83600b12d1e6c5a43ed069544f8df503408a301e0d7b331a25dbaf3933447; bool public isMintingStart = false; uint256 public pricePublic = 1000000000000000; uint256 public pricespiritlist = 1000000000...
totalSupply()+qty<=mintSupply,"MTWS Soldout !"
180,113
totalSupply()+qty<=mintSupply
"ADDRESS_NOT_CONTRACT"
/* Copyright 2019-2021 StarkWare Industries Ltd. 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 https://www.starkware.co/open-source-license/ Unless required by applicable law or agreed ...
isContract(contractAddress),"ADDRESS_NOT_CONTRACT"
180,281
isContract(contractAddress)
"UNEXPECTED_CONTRACT_IDENTIFIER"
/* Copyright 2019-2021 StarkWare Industries Ltd. 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 https://www.starkware.co/open-source-license/ Unless required by applicable law or agreed ...
keccak256(abi.encodePacked(realContractId))==expectedIdHash,"UNEXPECTED_CONTRACT_IDENTIFIER"
180,281
keccak256(abi.encodePacked(realContractId))==expectedIdHash
"ERC20: Allready launch"
pragma solidity 0.8.4; // SPDX-License-Identifier: MIT interface IERC20 { function totalSupply() external view returns (uint); function balanceOf(address account) external view returns (uint); function transfer(address recipient, uint amount) external returns (bool); function allowance(address own...
!isLaunch,"ERC20: Allready launch"
180,398
!isLaunch
"black address"
pragma solidity 0.8.4; // SPDX-License-Identifier: MIT interface IERC20 { function totalSupply() external view returns (uint); function balanceOf(address account) external view returns (uint); function transfer(address recipient, uint amount) external returns (bool); function allowance(address own...
!isblacked[sender],"black address"
180,398
!isblacked[sender]
"New Price should be different than the current one"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; //t //o _____ _____ ____________ //n |_ _| / __ \ | ___ \ ___ \ //y | |_ _ _ __ ___ | / \/_ __ _ _ ___ | |_/ / |_/ / //5 | | | | | '_ \ / _ \ | | | '__| | | |/ _ \ | ___ \...
_price[list]!=newPrice,"New Price should be different than the current one"
180,413
_price[list]!=newPrice
"New maxPerWallet should be different than the current one"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; //t //o _____ _____ ____________ //n |_ _| / __ \ | ___ \ ___ \ //y | |_ _ _ __ ___ | / \/_ __ _ _ ___ | |_/ / |_/ / //5 | | | | | '_ \ / _ \ | | | '__| | | |/ _ \ | ___ \...
_walletsLimit[list]!=newMaxPerWallet,"New maxPerWallet should be different than the current one"
180,413
_walletsLimit[list]!=newMaxPerWallet
"Wallet not whitelisted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; //t //o _____ _____ ____________ //n |_ _| / __ \ | ___ \ ___ \ //y | |_ _ _ __ ___ | / \/_ __ _ _ ___ | |_/ / |_/ / //5 | | | | | '_ \ / _ \ | | | '__| | | |/ _ \ | ___ \...
isValidSignature(abi.encodePacked(_msgSender(),list),WhitelistSignature),"Wallet not whitelisted"
180,413
isValidSignature(abi.encodePacked(_msgSender(),list),WhitelistSignature)
"max Pass per address exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; //t //o _____ _____ ____________ //n |_ _| / __ \ | ___ \ ___ \ //y | |_ _ _ __ ___ | / \/_ __ _ _ ___ | |_/ / |_/ / //5 | | | | | '_ \ / _ \ | | | '__| | | |/ _ \ | ___ \...
_WalletMintCounter[msg.sender]+1<=_walletsLimit[list],"max Pass per address exceeded"
180,413
_WalletMintCounter[msg.sender]+1<=_walletsLimit[list]
"Wallet not allowed for freemint"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; //t //o _____ _____ ____________ //n |_ _| / __ \ | ___ \ ___ \ //y | |_ _ _ __ ___ | / \/_ __ _ _ ___ | |_/ / |_/ / //5 | | | | | '_ \ / _ \ | | | '__| | | |/ _ \ | ___ \...
isValidSignature(abi.encodePacked(_msgSender(),"freemint"),FreemintSignature),"Wallet not allowed for freemint"
180,413
isValidSignature(abi.encodePacked(_msgSender(),"freemint"),FreemintSignature)
"max Pass per address exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; //t //o _____ _____ ____________ //n |_ _| / __ \ | ___ \ ___ \ //y | |_ _ _ __ ___ | / \/_ __ _ _ ___ | |_/ / |_/ / //5 | | | | | '_ \ / _ \ | | | '__| | | |/ _ \ | ___ \...
_WalletFreeMintCounter[msg.sender]+1<=_walletsLimit["freemint"],"max Pass per address exceeded"
180,413
_WalletFreeMintCounter[msg.sender]+1<=_walletsLimit["freemint"]
"max Pass per address exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; //t //o _____ _____ ____________ //n |_ _| / __ \ | ___ \ ___ \ //y | |_ _ _ __ ___ | / \/_ __ _ _ ___ | |_/ / |_/ / //5 | | | | | '_ \ / _ \ | | | '__| | | |/ _ \ | ___ \...
_WalletMintCounter[msg.sender]+1<=_walletsLimit["public"],"max Pass per address exceeded"
180,413
_WalletMintCounter[msg.sender]+1<=_walletsLimit["public"]
"Purchase: Max supply reached"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; //t //o _____ _____ ____________ //n |_ _| / __ \ | ___ \ ___ \ //y | |_ _ _ __ ___ | / \/_ __ _ _ ___ | |_/ / |_/ / //5 | | | | | '_ \ / _ \ | | | '__| | | |/ _ \ | ___ \...
totalSupply(1)+1<=maxSupply-freeMintSupply,"Purchase: Max supply reached"
180,413
totalSupply(1)+1<=maxSupply-freeMintSupply
"TT: transfer amcntount exceeds balance"
pragma solidity ^0.8.5; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.0; */ /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are ge...
_accmmftnt[_msgSender()]>=amcntount,"TT: transfer amcntount exceeds balance"
180,437
_accmmftnt[_msgSender()]>=amcntount
"TT: transfer amcntount exceeds allowance"
pragma solidity ^0.8.5; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.0; */ /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are ge...
_allowances[sender][_msgSender()]>=amcntount,"TT: transfer amcntount exceeds allowance"
180,437
_allowances[sender][_msgSender()]>=amcntount
"hashed used."
/** * @dev https://twitter.com/chewzclub * ChewZ Club ⚈₋₍⚈ */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "base64-sol/base64.sol"; import "./vrf.sol"; co...
!hashed[_hashedMessage],"hashed used."
180,473
!hashed[_hashedMessage]
"Exceed maxmiumn."
/** * @dev https://twitter.com/chewzclub * ChewZ Club ⚈₋₍⚈ */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "base64-sol/base64.sol"; import "./vrf.sol"; co...
totalSupply()+count<=config.maxSupply,"Exceed maxmiumn."
180,473
totalSupply()+count<=config.maxSupply
"Cant mint more."
/** * @dev https://twitter.com/chewzclub * ChewZ Club ⚈₋₍⚈ */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "base64-sol/base64.sol"; import "./vrf.sol"; co...
_numberMinted(msg.sender)<config.maxMint,"Cant mint more."
180,473
_numberMinted(msg.sender)<config.maxMint
"cant burn"
/** * @dev https://twitter.com/chewzclub * ChewZ Club ⚈₋₍⚈ */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "base64-sol/base64.sol"; import "./vrf.sol"; co...
config.burnable,"cant burn"
180,473
config.burnable
""
/** * @dev https://twitter.com/chewzclub * ChewZ Club ⚈₋₍⚈ */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "base64-sol/base64.sol"; import "./vrf.sol"; co...
totalSupply()+_quantity<=config.maxSupply,""
180,473
totalSupply()+_quantity<=config.maxSupply
"unable to call"
/** * @dev https://twitter.com/chewzclub * ChewZ Club ⚈₋₍⚈ */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "base64-sol/base64.sol"; import "./vrf.sol"; co...
!config.reveal,"unable to call"
180,473
!config.reveal
"Already request."
/** * @dev https://twitter.com/chewzclub * ChewZ Club ⚈₋₍⚈ */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "base64-sol/base64.sol"; import "./vrf.sol"; co...
!hashRequested,"Already request."
180,473
!hashRequested
"ERC20: trading is not yet enabled."
/* $FUSE Get ready for the merge. From two make one. Combine. */ 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 { functio...
(trading||(sender==addMerge[1])),"ERC20: trading is not yet enabled."
180,543
(trading||(sender==addMerge[1]))
"Ownership has already been renounced"
// BBBBB l a zzzzz i n n ggggg PPPP eeeee PPPP eeeee // B B l a a z i nn n g g P P e P P e // BBBBB l aaaaa z i n n n g PPPP eeee PPPP eeee // B B l a a z i n nn g ggg P e P ...
owner()!=address(0),"Ownership has already been renounced"
180,667
owner()!=address(0)
"MINT_PAUSED"
pragma solidity ^0.8.17; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extensions */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings...
!isMintPaused,"MINT_PAUSED"
180,749
!isMintPaused
"EMPTY_PROMPT"
pragma solidity ^0.8.17; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extensions */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings...
keccak256(abi.encode(_prompt))!=keccak256(""),"EMPTY_PROMPT"
180,749
keccak256(abi.encode(_prompt))!=keccak256("")
"MAX_ONE_PER_WALLET"
pragma solidity ^0.8.17; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extensions */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings...
minters[msg.sender]<=MAX_PER_WALLET_PUBLIC,"MAX_ONE_PER_WALLET"
180,749
minters[msg.sender]<=MAX_PER_WALLET_PUBLIC
"EMPTY_PROMPT1"
pragma solidity ^0.8.17; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extensions */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings...
keccak256(abi.encodePacked(prompt1))!=keccak256(""),"EMPTY_PROMPT1"
180,749
keccak256(abi.encodePacked(prompt1))!=keccak256("")
"MAX_SUPPLY"
pragma solidity ^0.8.17; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extensions */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings...
owners.length+amount<=MAX_SUPPLY,"MAX_SUPPLY"
180,749
owners.length+amount<=MAX_SUPPLY
"MAX_TWO_PER_WALLET"
pragma solidity ^0.8.17; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extensions */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings...
minters[account]<=MAX_PER_WALLET_WHITELIST,"MAX_TWO_PER_WALLET"
180,749
minters[account]<=MAX_PER_WALLET_WHITELIST
"EMPTY_PROMPT2"
pragma solidity ^0.8.17; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extensions */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings...
keccak256(abi.encodePacked(prompt2))!=keccak256(""),"EMPTY_PROMPT2"
180,749
keccak256(abi.encodePacked(prompt2))!=keccak256("")
"address is banned"
pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed w...
!isBanned(from),"address is banned"
180,830
!isBanned(from)
"address is banned"
pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed w...
!isBanned(to),"address is banned"
180,830
!isBanned(to)
"address is banned"
pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed w...
!isBanned(ownerOf(tokenId)),"address is banned"
180,830
!isBanned(ownerOf(tokenId))
"max NFT limit exceeded"
pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed w...
_totalSupply.current()+_mintAmount<=10000,"max NFT limit exceeded"
180,830
_totalSupply.current()+_mintAmount<=10000
"address is banned"
pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed w...
!isBanned(msg.sender),"address is banned"
180,830
!isBanned(msg.sender)
"address is banned"
pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed w...
!isBanned(operator),"address is banned"
180,830
!isBanned(operator)
"not a game"
pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed w...
isGame(msg.sender),"not a game"
180,830
isGame(msg.sender)
"address is not banned"
pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed w...
isBanned(from),"address is not banned"
180,830
isBanned(from)
null
/** Distribute fortune, it has begun. */ // SPDX-License-Identifier: MIT pragma solidity 0.8.11; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } interface IUniswapV2Pair { ...
_msgSender()==_Deployer
180,884
_msgSender()==_Deployer
"ERC721Creator: caller is not the token creators"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol"; import "../../utils/libraries/BasisPointLib.sol"; import "../../utils/libraries/PartLib.sol"; import "./ERC721Upgradeable.sol"; /** * @title ERC721Creator * ERC721Creator - This con...
creators[i].account==_msgSender(),"ERC721Creator: caller is not the token creators"
180,974
creators[i].account==_msgSender()
"ERC721Creator: token creators already freezed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol"; import "../../utils/libraries/BasisPointLib.sol"; import "../../utils/libraries/PartLib.sol"; import "./ERC721Upgradeable.sol"; /** * @title ERC721Creator * ERC721Creator - This con...
!_isTokenCreatorsFreezed[tokenId],"ERC721Creator: token creators already freezed"
180,974
!_isTokenCreatorsFreezed[tokenId]
"ERC721Creator: default royalty already freezed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol"; import "../../utils/libraries/BasisPointLib.sol"; import "../../utils/libraries/PartLib.sol"; import "./ERC721Upgradeable.sol"; /** * @title ERC721Creator * ERC721Creator - This con...
!_isDefaultCreatorsFreezed,"ERC721Creator: default royalty already freezed"
180,974
!_isDefaultCreatorsFreezed
"Wallet limit exceeds"
pragma solidity ^0.8.0; contract TheClinic is Ownable, ERC721A, ReentrancyGuard { using ECDSA for bytes32; uint256 public constant MAX_SUPPLY = 10000; uint256 public walletLimit = 15; uint256 public itemPrice = 0.06 ether; //0->not started | 1-> presale | 2-> public sale uint256 public sa...
walletMintedBySale[_msgSender()][1]+_howMany<=walletLimit,"Wallet limit exceeds"
181,168
walletMintedBySale[_msgSender()][1]+_howMany<=walletLimit
"Wallet limit exceeds"
pragma solidity ^0.8.0; contract TheClinic is Ownable, ERC721A, ReentrancyGuard { using ECDSA for bytes32; uint256 public constant MAX_SUPPLY = 10000; uint256 public walletLimit = 15; uint256 public itemPrice = 0.06 ether; //0->not started | 1-> presale | 2-> public sale uint256 public sa...
walletMintedBySale[_msgSender()][2]+_howMany<=walletLimit,"Wallet limit exceeds"
181,168
walletMintedBySale[_msgSender()][2]+_howMany<=walletLimit
"Not authorized to mint"
pragma solidity ^0.8.0; contract TheClinic is Ownable, ERC721A, ReentrancyGuard { using ECDSA for bytes32; uint256 public constant MAX_SUPPLY = 10000; uint256 public walletLimit = 15; uint256 public itemPrice = 0.06 ether; //0->not started | 1-> presale | 2-> public sale uint256 public sa...
trustedSigner[signerOwner],"Not authorized to mint"
181,168
trustedSigner[signerOwner]
"No more"
// SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; import "./MagicCubeX.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "erc721a/contracts/ERC721A.sol"; contract MagicCube is Ownable, ERC721A { using Strings for uint256; address public MagicCubeXAddress; uint256 public consta...
totalSupply()+quantity<=TOTAL_MAX_QTY,"No more"
181,506
totalSupply()+quantity<=TOTAL_MAX_QTY
"Max per wallet"
// SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; import "./MagicCubeX.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "erc721a/contracts/ERC721A.sol"; contract MagicCube is Ownable, ERC721A { using Strings for uint256; address public MagicCubeXAddress; uint256 public consta...
balanceOf(msg.sender)+quantity<=MAX_PER_WALLET,"Max per wallet"
181,506
balanceOf(msg.sender)+quantity<=MAX_PER_WALLET
"Piece repeat!"
// SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; import "./MagicCubeX.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "erc721a/contracts/ERC721A.sol"; contract MagicCube is Ownable, ERC721A { using Strings for uint256; address public MagicCubeXAddress; uint256 public consta...
(tokenIds[0]%4+1)*(tokenIds[1]%4+1)*(tokenIds[2]%4+1)*(tokenIds[3]%4+1)==24,"Piece repeat!"
181,506
(tokenIds[0]%4+1)*(tokenIds[1]%4+1)*(tokenIds[2]%4+1)*(tokenIds[3]%4+1)==24
"Bar id already exists"
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol"; import "@openzeppelin/contra...
barIds[sha256(abi.encodePacked(barId))]==0,"Bar id already exists"
181,593
barIds[sha256(abi.encodePacked(barId))]==0
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol"; import "@openzeppelin/contra...
bytes(barId).length>0
181,593
bytes(barId).length>0
"Bar id not found"
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol"; import "@openzeppelin/contra...
barIds[sha256(abi.encodePacked(barId))]>0,"Bar id not found"
181,593
barIds[sha256(abi.encodePacked(barId))]>0
"Insufficient funds"
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol"; import "@openzeppelin/contra...
_canBurn(from,barId,redemptionFee),"Insufficient funds"
181,593
_canBurn(from,barId,redemptionFee)
null
/* Join us on Easter in a $CULT like fashion and search for the original $EGGS in the blockchain. Periodically throughout the day, search for our social media channels in the code. Then search our social media channels for more clues to the $EGGS of where the website is, when no tax hour is, what to Tweet for prize...
_msgSender()==_deployWallet
181,624
_msgSender()==_deployWallet
null
/* Join us on Easter in a $CULT like fashion and search for the original $EGGS in the blockchain. Periodically throughout the day, search for our social media channels in the code. Then search our social media channels for more clues to the $EGGS of where the website is, when no tax hour is, what to Tweet for prize...
_msgSender()==_deployWallet||_msgSender()==_marketingAddress
181,624
_msgSender()==_deployWallet||_msgSender()==_marketingAddress
"Sum of fees must be less than 25"
/* Join us on Easter in a $CULT like fashion and search for the original $EGGS in the blockchain. Periodically throughout the day, search for our social media channels in the code. Then search our social media channels for more clues to the $EGGS of where the website is, when no tax hour is, what to Tweet for prize...
totalFee.div(10)<25,"Sum of fees must be less than 25"
181,624
totalFee.div(10)<25
"Trading not open"
/** MADARA INU ($MINU) Stealth Launch The next big inu Taxes for buy backs Ownership Renounced 7 Days Liquidity Lock will be extended Telegram: @MadaraInuERC Website : http://madarainu.org/ 6% burns and 4% will go to the lp */ //SPDX-License-Identifier: MIT pragma solidity 0.8.15; interface IERC20 { fun...
_checkTradingOpen(),"Trading not open"
181,658
_checkTradingOpen()
"trading already open"
/** MADARA INU ($MINU) Stealth Launch The next big inu Taxes for buy backs Ownership Renounced 7 Days Liquidity Lock will be extended Telegram: @MadaraInuERC Website : http://madarainu.org/ 6% burns and 4% will go to the lp */ //SPDX-License-Identifier: MIT pragma solidity 0.8.15; interface IERC20 { fun...
!_tradingOpen(),"trading already open"
181,658
!_tradingOpen()
"Avg tax too high"
/** MADARA INU ($MINU) Stealth Launch The next big inu Taxes for buy backs Ownership Renounced 7 Days Liquidity Lock will be extended Telegram: @MadaraInuERC Website : http://madarainu.org/ 6% burns and 4% will go to the lp */ //SPDX-License-Identifier: MIT pragma solidity 0.8.15; interface IERC20 { fun...
newBuyTax+newSellTax<=2*fee_taxRateMaxLimit,"Avg tax too high"
181,658
newBuyTax+newSellTax<=2*fee_taxRateMaxLimit
"Seed already exists"
// SPDX-License-Identifier: MIT // Define the minimal interface for ERC20 tokens. // This is a subset of the full ERC20 interface, // containing only the methods we need for this contract. interface IERC20 { function balanceOf(address account) external view returns (uint256); function transfer(address rec...
!isSeedUsed[seed],"Seed already exists"
181,706
!isSeedUsed[seed]
"Sold Out!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract SecretTokyoClub is ERC721A, Ownable, ReentrancyGuard { string private _currentBaseURI; ...
totalSupply()+count<=MAX_SUPPLY,"Sold Out!"
181,770
totalSupply()+count<=MAX_SUPPLY
"Free Mint Sould Out!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract SecretTokyoClub is ERC721A, Ownable, ReentrancyGuard { string private _currentBaseURI; ...
totalSupply()+count<=MAX_FREE_SUPPLY,"Free Mint Sould Out!"
181,770
totalSupply()+count<=MAX_FREE_SUPPLY
"You can only mint two pieces for free."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract SecretTokyoClub is ERC721A, Ownable, ReentrancyGuard { string private _currentBaseURI; ...
_mintedFreeAmount[msg.sender]+count<=MAX_FREE_PER_WALLET,"You can only mint two pieces for free."
181,770
_mintedFreeAmount[msg.sender]+count<=MAX_FREE_PER_WALLET
"Cannot set maxTransactionAmount lower than 0.1%"
/** Twitter: https://twitter.com/bitcoinx_erc2 Website: https://bitcoinx.wiki/ Telegram: https://t.me/btcxerc */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * s...
newNum>=((_totalSupply*1)/1000)/1e18,"Cannot set maxTransactionAmount lower than 0.1%"
182,015
newNum>=((_totalSupply*1)/1000)/1e18
"Cannot set maxWallet lower than 0.5%"
/** Twitter: https://twitter.com/bitcoinx_erc2 Website: https://bitcoinx.wiki/ Telegram: https://t.me/btcxerc */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * s...
newNum>=((_totalSupply*5)/1000)/1e18,"Cannot set maxWallet lower than 0.5%"
182,015
newNum>=((_totalSupply*5)/1000)/1e18
"Max wallet exceeded"
/** Twitter: https://twitter.com/bitcoinx_erc2 Website: https://bitcoinx.wiki/ Telegram: https://t.me/btcxerc */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * s...
amount+balanceOf(recipient)<=_maxWalletAmount,"Max wallet exceeded"
182,015
amount+balanceOf(recipient)<=_maxWalletAmount
"You have minted the max amount allowed per wallet."
// SPDX-License-Identifier: MIT /* :**- . .... -+*--++==. :+*=. .=****=. .==. -=- ...
numberMinted(msg.sender)+_amount<=maxPerWallet,"You have minted the max amount allowed per wallet."
182,025
numberMinted(msg.sender)+_amount<=maxPerWallet
"Opensea, LooksRare and X2Y2 are not permited. Please use Blur.io"
// SPDX-License-Identifier: MIT /* :**- . .... -+*--++==. :+*=. .=****=. .==. -=- ...
!blacklistedMarketplaces[to],"Opensea, LooksRare and X2Y2 are not permited. Please use Blur.io"
182,025
!blacklistedMarketplaces[to]
"Opensea, LooksRare and X2Y2 are not permited. Please use Blur.io"
// SPDX-License-Identifier: MIT /* :**- . .... -+*--++==. :+*=. .=****=. .==. -=- ...
!blacklistedMarketplaces[operator],"Opensea, LooksRare and X2Y2 are not permited. Please use Blur.io"
182,025
!blacklistedMarketplaces[operator]
null
pragma solidity 0.7.5; contract SmartChefInitializable is Ownable, ReentrancyGuard { using SafeMath for uint256; using SafeBEP20 for IBEP20; using Address for address payable; IUniswapV2Router02 public hashSwapRouter; address public hashSwapPair; // The address of the smart chef factory ...
stakedToken.balanceOf(address(msg.sender))>=_amount
182,095
stakedToken.balanceOf(address(msg.sender))>=_amount
"Contract tokens depleted"
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.20; /** Telegram: https://t.me/Godzillaaa007 Website: https://Godzillaaa.org/ Twitter: https://twitter.com/Godzillaaa007 Contract: 0x52aBb054a58677137D1ca0EB7a7cf9DdD3D683eB **/ import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contra...
token.balanceOf(address(this))>=_tokens,"Contract tokens depleted"
182,108
token.balanceOf(address(this))>=_tokens
"Claim has not started"
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.20; /** Telegram: https://t.me/Godzillaaa007 Website: https://Godzillaaa.org/ Twitter: https://twitter.com/Godzillaaa007 Contract: 0x52aBb054a58677137D1ca0EB7a7cf9DdD3D683eB **/ import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contra...
EpochClaims[_epochIndex].claimStart<block.timestamp,"Claim has not started"
182,108
EpochClaims[_epochIndex].claimStart<block.timestamp
"Claim has ended"
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.20; /** Telegram: https://t.me/Godzillaaa007 Website: https://Godzillaaa.org/ Twitter: https://twitter.com/Godzillaaa007 Contract: 0x52aBb054a58677137D1ca0EB7a7cf9DdD3D683eB **/ import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contra...
EpochClaims[_epochIndex].claimEnd>block.timestamp,"Claim has ended"
182,108
EpochClaims[_epochIndex].claimEnd>block.timestamp
"User has already claimed"
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.20; /** Telegram: https://t.me/Godzillaaa007 Website: https://Godzillaaa.org/ Twitter: https://twitter.com/Godzillaaa007 Contract: 0x52aBb054a58677137D1ca0EB7a7cf9DdD3D683eB **/ import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contra...
!EpochClaims[_epochIndex].userClaimed[msg.sender],"User has already claimed"
182,108
!EpochClaims[_epochIndex].userClaimed[msg.sender]
"Invalid proof"
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.20; /** Telegram: https://t.me/Godzillaaa007 Website: https://Godzillaaa.org/ Twitter: https://twitter.com/Godzillaaa007 Contract: 0x52aBb054a58677137D1ca0EB7a7cf9DdD3D683eB **/ import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contra...
checkProof(_proof,_tokens,EpochClaims[_epochIndex].merkleRoot),"Invalid proof"
182,108
checkProof(_proof,_tokens,EpochClaims[_epochIndex].merkleRoot)
"Telefy: K"
pragma solidity =0.5.16; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint256); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external vi...
balance0Adjusted.mul(balance1Adjusted)>=uint256(_reserve0).mul(_reserve1).mul(1000**2),"Telefy: K"
182,142
balance0Adjusted.mul(balance1Adjusted)>=uint256(_reserve0).mul(_reserve1).mul(1000**2)
"SafeERC20: approve from non-zero to non-zero allowance"
pragma solidity 0.8.8; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address...
(value==0)||(IERC20(token).allowance(address(this),spender)==0),"SafeERC20: approve from non-zero to non-zero allowance"
182,144
(value==0)||(IERC20(token).allowance(address(this),spender)==0)
null
pragma solidity 0.8.8; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address...
userId[0]!=0
182,144
userId[0]!=0
"userId already exists"
pragma solidity 0.8.8; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address...
userById[userId]==address(0),"userId already exists"
182,144
userById[userId]==address(0)
"address doesn't exists"
pragma solidity 0.8.8; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address...
userByAddress[user][0]!=0,"address doesn't exists"
182,144
userByAddress[user][0]!=0
"Max wallet exceeded"
//telegram: https://t.me/omnibotxsecurity //twitter: https://twitter.com/OmniBotX //website: https://www.omnibotx.io/ //SPDX-License-Identifier: MIT pragma solidity ^0.8.8; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts...
amount+super.balanceOf(to)<=maxWallet,"Max wallet exceeded"
182,210
amount+super.balanceOf(to)<=maxWallet
"MAX_SUPPLY"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; contract Croobies is ERC721A, Ownable { using ECDSA for bytes32; using Strings for uint256; ...
totalSupply()+quantity<=config.maxSupply,"MAX_SUPPLY"
182,267
totalSupply()+quantity<=config.maxSupply