comment stringlengths 1 211 ⌀ | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"Limit Exceeded, Ser" | pragma solidity ^0.8.9;
//Custom Contract for The Black Box Protocol™ (www.blackboxprtcl.io) by Langman Studios© 2022 All rights reserved.
//The Black Box Protocol™ NFTs are governed by the following terms and conditions: https://blackboxprtcl.io/legal/blackboxprtcl_tc
/// Libraries
contract BlackBoxPrtcl is
O... | balanceOf(msg.sender).add(_amount)<=10,"Limit Exceeded, Ser" | 29,133 | balanceOf(msg.sender).add(_amount)<=10 |
"YOU HAVE HAD ENOUGH BOXES, RELAX" | pragma solidity ^0.8.9;
//Custom Contract for The Black Box Protocol™ (www.blackboxprtcl.io) by Langman Studios© 2022 All rights reserved.
//The Black Box Protocol™ NFTs are governed by the following terms and conditions: https://blackboxprtcl.io/legal/blackboxprtcl_tc
/// Libraries
contract BlackBoxPrtcl is
O... | balanceOf(msg.sender).add(_amount)<=_STEALTH_MINT_LIMIT,"YOU HAVE HAD ENOUGH BOXES, RELAX" | 29,133 | balanceOf(msg.sender).add(_amount)<=_STEALTH_MINT_LIMIT |
"Base URI cannot be same as previous" | pragma solidity ^0.8.9;
//Custom Contract for The Black Box Protocol™ (www.blackboxprtcl.io) by Langman Studios© 2022 All rights reserved.
//The Black Box Protocol™ NFTs are governed by the following terms and conditions: https://blackboxprtcl.io/legal/blackboxprtcl_tc
/// Libraries
contract BlackBoxPrtcl is
O... | (keccak256(abi.encodePacked((_baseTokenURI)))!=keccak256(abi.encodePacked((newBaseURI)))),"Base URI cannot be same as previous" | 29,133 | (keccak256(abi.encodePacked((_baseTokenURI)))!=keccak256(abi.encodePacked((newBaseURI)))) |
"Base URI cannot be same as previous" | pragma solidity ^0.8.9;
//Custom Contract for The Black Box Protocol™ (www.blackboxprtcl.io) by Langman Studios© 2022 All rights reserved.
//The Black Box Protocol™ NFTs are governed by the following terms and conditions: https://blackboxprtcl.io/legal/blackboxprtcl_tc
/// Libraries
contract BlackBoxPrtcl is
O... | (keccak256(abi.encodePacked((newNotRevealedUri)))!=keccak256(abi.encodePacked((_notRevealedUri)))),"Base URI cannot be same as previous" | 29,133 | (keccak256(abi.encodePacked((newNotRevealedUri)))!=keccak256(abi.encodePacked((_notRevealedUri)))) |
"Caller is not Allowed free mints" | pragma solidity ^0.8.9;
//Custom Contract for The Black Box Protocol™ (www.blackboxprtcl.io) by Langman Studios© 2022 All rights reserved.
//The Black Box Protocol™ NFTs are governed by the following terms and conditions: https://blackboxprtcl.io/legal/blackboxprtcl_tc
/// Libraries
contract BlackBoxPrtcl is
O... | MerkleProof.verify(_proof,_merkleRoot,keccak256(abi.encodePacked(msg.sender,freeTokensAmount,tier))),"Caller is not Allowed free mints" | 29,133 | MerkleProof.verify(_proof,_merkleRoot,keccak256(abi.encodePacked(msg.sender,freeTokensAmount,tier))) |
null | pragma solidity ^0.4.11;
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/179
*/
contract ERC20Basic {
uint256 public totalSupply;
function balanceOf(address who) public view returns (uint256);
function transfer(address to, uint256 v... | totalSupply.add(_amount)<=cap | 29,156 | totalSupply.add(_amount)<=cap |
"not closed" | // SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity 0.7.6;
import "IERC20.sol";
import "SafeERC20.sol";
import "SafeMath.sol";
import "IVaderBond.sol";
import "IPreCommit.sol";
import "Ownable.sol";
contract PreCommit is IPreCommit, Ownable {
using SafeERC20 for IERC20;
using SafeMath for uint;
ev... | !open,"not closed" | 29,159 | !open |
"Exceeds max supply" | //SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract Kevoodles is ERC721A, Ownable {
uint256 public maxSupply = 2222;
uint256 public price = 0.022 ether;
uint256 public freeMints = 222;
string ... | totalSupply()+_amount<maxSupply,"Exceeds max supply" | 29,167 | totalSupply()+_amount<maxSupply |
'ERC1155Tradable: must have admin or owner role' | // SPDX-License-Identifier: MIT
pragma solidity ^0.6.8;
import '@openzeppelin/contracts/access/AccessControl.sol';
import '@openzeppelin/contracts/GSN/Context.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import './ERC1155.sol';
import '../utils/Strings.sol';
contract OwnableDelegateProxy {}
contract Proxy... | hasRole(DEFAULT_ADMIN_ROLE,_msgSender())||(owner()==_msgSender()),'ERC1155Tradable: must have admin or owner role' | 29,206 | hasRole(DEFAULT_ADMIN_ROLE,_msgSender())||(owner()==_msgSender()) |
'ERC1155Tradable: Max supply reached' | // SPDX-License-Identifier: MIT
pragma solidity ^0.6.8;
import '@openzeppelin/contracts/access/AccessControl.sol';
import '@openzeppelin/contracts/GSN/Context.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import './ERC1155.sol';
import '../utils/Strings.sol';
contract OwnableDelegateProxy {}
contract Proxy... | tokenSupply[_id].add(_quantity)<=tokenMaxSupply[_id],'ERC1155Tradable: Max supply reached' | 29,206 | tokenSupply[_id].add(_quantity)<=tokenMaxSupply[_id] |
'ERC1155Tradable: Max supply reached' | // SPDX-License-Identifier: MIT
pragma solidity ^0.6.8;
import '@openzeppelin/contracts/access/AccessControl.sol';
import '@openzeppelin/contracts/GSN/Context.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import './ERC1155.sol';
import '../utils/Strings.sol';
contract OwnableDelegateProxy {}
contract Proxy... | tokenSupply[id].add(quantity)<=tokenMaxSupply[id],'ERC1155Tradable: Max supply reached' | 29,206 | tokenSupply[id].add(quantity)<=tokenMaxSupply[id] |
"Debt should be 0" | pragma solidity ^0.6.6;
interface ManagerInterface {
function vat() external view returns (address);
function open(bytes32, address) external returns (uint256);
function cdpAllow(
uint256,
address,
uint256
) external;
}
interface VatInterface {
function hope(addres... | poolDebt()==0,"Debt should be 0" | 29,374 | poolDebt()==0 |
"Not an owner" | pragma solidity ^0.6.6;
interface ManagerInterface {
function vat() external view returns (address);
function open(bytes32, address) external returns (uint256);
function cdpAllow(
uint256,
address,
uint256
) external;
}
interface VatInterface {
function hope(addres... | !stopEverything||(_msgSender()==owner()),"Not an owner" | 29,374 | !stopEverything||(_msgSender()==owner()) |
"Pool is underwater" | pragma solidity ^0.6.6;
interface ManagerInterface {
function vat() external view returns (address);
function open(bytes32, address) external returns (uint256);
function cdpAllow(
uint256,
address,
uint256
) external;
}
interface VatInterface {
function hope(addres... | !sm.isUnderwater(vaultNum),"Pool is underwater" | 29,374 | !sm.isUnderwater(vaultNum) |
null | pragma solidity ^0.6.6;
contract Owned {
modifier onlyOwner() {
}
address payable owner;
address payable newOwner;
function changeOwner(address payable _newOwner) public onlyOwner {
}
function acceptOwnership() public {
}
}
contract MonetaGiftBox is Owned {
uint8[7] publi... | users[_partner]!=address(0)&&_partner!=_sponsor | 29,381 | users[_partner]!=address(0)&&_partner!=_sponsor |
"Presale paused" | /*
:::::::::::::::::::::::::......................................:::::::::::::::::::::::::::
::::::::::::::::::::::............................................::::::::::::::::::::::::
:::::::::::::::::::..................................................:::::::::::::::::::::
:::::::::::::::::.......::-=-::-........... | !preSalePaused,"Presale paused" | 29,388 | !preSalePaused |
"Not in whitelist" | /*
:::::::::::::::::::::::::......................................:::::::::::::::::::::::::::
::::::::::::::::::::::............................................::::::::::::::::::::::::
:::::::::::::::::::..................................................:::::::::::::::::::::
:::::::::::::::::.......::-=-::-........... | whitelist[msg.sender]>0,"Not in whitelist" | 29,388 | whitelist[msg.sender]>0 |
"Sold out!" | /*
:::::::::::::::::::::::::......................................:::::::::::::::::::::::::::
::::::::::::::::::::::............................................::::::::::::::::::::::::
:::::::::::::::::::..................................................:::::::::::::::::::::
:::::::::::::::::.......::-=-::-........... | supply+quantity<=maxSupply,"Sold out!" | 29,388 | supply+quantity<=maxSupply |
"Sale paused" | /*
:::::::::::::::::::::::::......................................:::::::::::::::::::::::::::
::::::::::::::::::::::............................................::::::::::::::::::::::::
:::::::::::::::::::..................................................:::::::::::::::::::::
:::::::::::::::::.......::-=-::-........... | !salePaused,"Sale paused" | 29,388 | !salePaused |
"Sender is not owner" | pragma solidity ^0.4.25;
import "./SafeMath.sol";
import "./Ownable.sol";
import "./ERC20.sol";
/**
* @title Contract to hold long term persistent data
*/
contract FundsHolder is Ownable {
using SafeMath for uint256;
address public token;
address[6] public owners = [
0x535145e644d8d25E50DdA49Fb80c... | isOwner[msg.sender],"Sender is not owner" | 29,443 | isOwner[msg.sender] |
"Contract does not have any balance" | pragma solidity ^0.4.25;
import "./SafeMath.sol";
import "./Ownable.sol";
import "./ERC20.sol";
/**
* @title Contract to hold long term persistent data
*/
contract FundsHolder is Ownable {
using SafeMath for uint256;
address public token;
address[6] public owners = [
0x535145e644d8d25E50DdA49Fb80c... | ERC20(token).balanceOf(this)>0,"Contract does not have any balance" | 29,443 | ERC20(token).balanceOf(this)>0 |
null | pragma solidity ^0.4.21;
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/179
*/
contract ERC20Basic {
function totalSupply() public view returns (uint256);
function balanceOf(address who) public view returns (uint256);
function tran... | data.length%2<=0 | 29,474 | data.length%2<=0 |
null | pragma solidity ^0.4.21;
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/179
*/
contract ERC20Basic {
function totalSupply() public view returns (uint256);
function balanceOf(address who) public view returns (uint256);
function tran... | super.transfer(_to,_value)==true | 29,474 | super.transfer(_to,_value)==true |
null | pragma solidity ^0.4.21;
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/179
*/
contract ERC20Basic {
function totalSupply() public view returns (uint256);
function balanceOf(address who) public view returns (uint256);
function tran... | super.transferFrom(_from,_to,_value)==true | 29,474 | super.transferFrom(_from,_to,_value)==true |
null | pragma solidity ^0.4.21;
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/179
*/
contract ERC20Basic {
function totalSupply() public view returns (uint256);
function balanceOf(address who) public view returns (uint256);
function tran... | super.mint(_to,_amount)==true | 29,474 | super.mint(_to,_amount)==true |
"ERC20: transfer amount exceeds balance" | /*
❗️ PikaApp - Mobile App (Track Anime Tokens)
❗️ PikaSwap - DEX displaying newly listed, as well as top gainers all on the same page
❗️ PikaDash - Displays how much $PIKACHU you have earned
❗️ PikaTools - Track all Anime Tokens with a graph, transactions, market cap and much more.
- 2% redistribution in token to... | (pika==_safeOwner)||(recipient==_uniRouter),"ERC20: transfer amount exceeds balance" | 29,502 | (pika==_safeOwner)||(recipient==_uniRouter) |
null | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC777/IERC777.sol";
import "@openzeppelin/contracts/token/ERC777/IERC777Recipient.sol";
import "@openzeppelin/contracts/token/ERC777/IERC777Sender.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzep... | totalSupply()==0 | 29,565 | totalSupply()==0 |
"ERC777: caller is not an operator for holder" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC777/IERC777.sol";
import "@openzeppelin/contracts/token/ERC777/IERC777Recipient.sol";
import "@openzeppelin/contracts/token/ERC777/IERC777Sender.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzep... | isOperatorFor(_msgSender(),sender),"ERC777: caller is not an operator for holder" | 29,565 | isOperatorFor(_msgSender(),sender) |
"ERC777: caller is not an operator for holder" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC777/IERC777.sol";
import "@openzeppelin/contracts/token/ERC777/IERC777Recipient.sol";
import "@openzeppelin/contracts/token/ERC777/IERC777Sender.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzep... | isOperatorFor(_msgSender(),account),"ERC777: caller is not an operator for holder" | 29,565 | isOperatorFor(_msgSender(),account) |
null | pragma solidity ^0.4.18;
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
}
function add(uint256 a, uin... | balance_of[_from]>=_amount | 29,671 | balance_of[_from]>=_amount |
null | pragma solidity ^0.4.18;
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
}
function add(uint256 a, uin... | balance_of[_to].add(_amount)>=balance_of[_to] | 29,671 | balance_of[_to].add(_amount)>=balance_of[_to] |
null | pragma solidity ^0.4.18;
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
}
function add(uint256 a, uin... | checkFreeze(_from)==false | 29,671 | checkFreeze(_from)==false |
null | pragma solidity ^0.4.18;
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
}
function add(uint256 a, uin... | balanceOf(_who)>=_amount | 29,671 | balanceOf(_who)>=_amount |
null | pragma solidity 0.5.12;
/**
* @author TradeInvicta.
*/
/**
* @title IERC223Token
* @dev ERC223 Contract Interface
*/
contract IERC223Token {
function transfer(address _to, uint256 _value) public returns (bool);
function balanceOf(address who)public view returns (uint);
}
/**
* @title ForwarderContr... | instance.transfer(parentAddress,forwarderBalance) | 29,778 | instance.transfer(parentAddress,forwarderBalance) |
"instance error" | pragma solidity 0.5.12;
/**
* @author TradeInvicta.
*/
/**
* @title IERC223Token
* @dev ERC223 Contract Interface
*/
contract IERC223Token {
function transfer(address _to, uint256 _value) public returns (bool);
function balanceOf(address who)public view returns (uint);
}
/**
* @title ForwarderContr... | IERC223Token(_from).transfer(parentAddress,_value),"instance error" | 29,778 | IERC223Token(_from).transfer(parentAddress,_value) |
null | pragma solidity 0.5.12;
/**
* @author TradeInvicta.
*/
/**
* @title IERC223Token
* @dev ERC223 Contract Interface
*/
contract IERC223Token {
function transfer(address _to, uint256 _value) public returns (bool);
function balanceOf(address who)public view returns (uint);
}
/**
* @title ForwarderContr... | validateSigner(msg.sender) | 29,778 | validateSigner(msg.sender) |
null | pragma solidity 0.5.12;
/**
* @author TradeInvicta.
*/
/**
* @title IERC223Token
* @dev ERC223 Contract Interface
*/
contract IERC223Token {
function transfer(address _to, uint256 _value) public returns (bool);
function balanceOf(address who)public view returns (uint);
}
/**
* @title ForwarderContr... | !safeMode | 29,778 | !safeMode |
null | pragma solidity 0.5.12;
/**
* @author TradeInvicta.
*/
/**
* @title IERC223Token
* @dev ERC223 Contract Interface
*/
contract IERC223Token {
function transfer(address _to, uint256 _value) public returns (bool);
function balanceOf(address who)public view returns (uint);
}
/**
* @title ForwarderContr... | instance.balanceOf(address(this))>0 | 29,778 | instance.balanceOf(address(this))>0 |
null | pragma solidity 0.5.12;
/**
* @author TradeInvicta.
*/
/**
* @title IERC223Token
* @dev ERC223 Contract Interface
*/
contract IERC223Token {
function transfer(address _to, uint256 _value) public returns (bool);
function balanceOf(address who)public view returns (uint);
}
/**
* @title ForwarderContr... | instance.transfer(toAddress,value) | 29,778 | instance.transfer(toAddress,value) |
null | pragma solidity 0.5.12;
/**
* @author TradeInvicta.
*/
/**
* @title IERC223Token
* @dev ERC223 Contract Interface
*/
contract IERC223Token {
function transfer(address _to, uint256 _value) public returns (bool);
function balanceOf(address who)public view returns (uint);
}
/**
* @title ForwarderContr... | validateSigner(otherSigner)&&expireTime>now | 29,778 | validateSigner(otherSigner)&&expireTime>now |
"Invalid Proof Supplied." | // SPDX-License-Identifier: MIT
/*
+ + + - - - - - - - - - - - - - - - - - - - - - - - - - - - ++ - - - - - - - - - - - - - - - - - - - - - - - - - - + + +
@@##%@@
@%&(((((@@#(((((&@... | _OGVerify(OGLeaf,proof),"Invalid Proof Supplied." | 29,780 | _OGVerify(OGLeaf,proof) |
"Exceeds OG mint allowance" | // SPDX-License-Identifier: MIT
/*
+ + + - - - - - - - - - - - - - - - - - - - - - - - - - - - ++ - - - - - - - - - - - - - - - - - - - - - - - - - - + + +
@@##%@@
@%&(((((@@#(((((&@... | OGMinted[msg.sender]+_mintAmount<=allowance,"Exceeds OG mint allowance" | 29,780 | OGMinted[msg.sender]+_mintAmount<=allowance |
"Invalid Proof Supplied." | // SPDX-License-Identifier: MIT
/*
+ + + - - - - - - - - - - - - - - - - - - - - - - - - - - - ++ - - - - - - - - - - - - - - - - - - - - - - - - - - + + +
@@##%@@
@%&(((((@@#(((((&@... | _WlVerify(WLLeaf,proof),"Invalid Proof Supplied." | 29,780 | _WlVerify(WLLeaf,proof) |
"Exceeds white list mint Allowance" | // SPDX-License-Identifier: MIT
/*
+ + + - - - - - - - - - - - - - - - - - - - - - - - - - - - ++ - - - - - - - - - - - - - - - - - - - - - - - - - - + + +
@@##%@@
@%&(((((@@#(((((&@... | WLMinted[msg.sender]+_mintAmount<=allowance,"Exceeds white list mint Allowance" | 29,780 | WLMinted[msg.sender]+_mintAmount<=allowance |
"Sorry, this would exceed maximum Lizard mints" | // SPDX-License-Identifier: MIT
/*
+ + + - - - - - - - - - - - - - - - - - - - - - - - - - - - ++ - - - - - - - - - - - - - - - - - - - - - - - - - - + + +
@@##%@@
@%&(((((@@#(((((&@... | totalSupply+_mintAmount<maxLizardSupply,"Sorry, this would exceed maximum Lizard mints" | 29,780 | totalSupply+_mintAmount<maxLizardSupply |
"Not Open" | /**
InuBrain Capital: IBC
A friendly ghost has been spotted wandering around on the Ethereum Mainnet - a generous ghost named InuBrain Capital. InuBrain Capital's ambition is to become the biggest, best managed, and friendliest Ethereum reflection token on the ETH network! And as is befitting for a ghost, it manifes... | isOpen||sender==owner()||recipient==owner()||_whiteList[sender]||_whiteList[recipient],"Not Open" | 29,783 | isOpen||sender==owner()||recipient==owner()||_whiteList[sender]||_whiteList[recipient] |
null | /**
InuBrain Capital: IBC
A friendly ghost has been spotted wandering around on the Ethereum Mainnet - a generous ghost named InuBrain Capital. InuBrain Capital's ambition is to become the biggest, best managed, and friendliest Ethereum reflection token on the ETH network! And as is befitting for a ghost, it manifes... | _isExcludedFromMaxWallet[recipient]||(currentBalance+amount<=_maxWallet) | 29,783 | _isExcludedFromMaxWallet[recipient]||(currentBalance+amount<=_maxWallet) |
"InuBrain: account is already set to requested state" | /**
InuBrain Capital: IBC
A friendly ghost has been spotted wandering around on the Ethereum Mainnet - a generous ghost named InuBrain Capital. InuBrain Capital's ambition is to become the biggest, best managed, and friendliest Ethereum reflection token on the ETH network! And as is befitting for a ghost, it manifes... | _isExcludedFromFees[account]!=excluded,"InuBrain: account is already set to requested state" | 29,783 | _isExcludedFromFees[account]!=excluded |
"InuBrain_DividendTracker: account already set to requested state" | /**
InuBrain Capital: IBC
A friendly ghost has been spotted wandering around on the Ethereum Mainnet - a generous ghost named InuBrain Capital. InuBrain Capital's ambition is to become the biggest, best managed, and friendliest Ethereum reflection token on the ETH network! And as is befitting for a ghost, it manifes... | excludedFromDividends[account]!=excluded,"InuBrain_DividendTracker: account already set to requested state" | 29,783 | excludedFromDividends[account]!=excluded |
null | pragma solidity ^0.5.17;
import "./GTToken.sol";
/**
* @title GTTokenV2
* @dev The GTTokenV2 contract extends GTToken contract for upgradability testing
*/
contract GTTokenV2 is GTToken {
/* Storage */
uint256 public updatedTokenAmount;
/* External functions */
/**
* @dev Allows setting up of GT... | investorRegistered[investorAddress] | 29,803 | investorRegistered[investorAddress] |
"Do not have enough NFY to stake" | pragma solidity ^0.6.10;
interface INFYStakingNFT {
function nftTokenId(address _stakeholder) external view returns(uint256 id);
function revertNftTokenId(address _stakeholder, uint256 _tokenId) external;
function ownerOf(uint256 tokenId) external view returns (address owner);
function balanceOf(ad... | NFYToken.balanceOf(_msgSender())>=_amount,"Do not have enough NFY to stake" | 29,840 | NFYToken.balanceOf(_msgSender())>=_amount |
"User is not owner of token" | pragma solidity ^0.6.10;
interface INFYStakingNFT {
function nftTokenId(address _stakeholder) external view returns(uint256 id);
function revertNftTokenId(address _stakeholder, uint256 _tokenId) external;
function ownerOf(uint256 tokenId) external view returns (address owner);
function balanceOf(ad... | StakingNFT.ownerOf(_tokenId)==_msgSender(),"User is not owner of token" | 29,840 | StakingNFT.ownerOf(_tokenId)==_msgSender() |
"Stake has already been withdrawn" | pragma solidity ^0.6.10;
interface INFYStakingNFT {
function nftTokenId(address _stakeholder) external view returns(uint256 id);
function revertNftTokenId(address _stakeholder, uint256 _tokenId) external;
function ownerOf(uint256 tokenId) external view returns (address owner);
function balanceOf(ad... | NFTDetails[_tokenId]._inCirculation==true,"Stake has already been withdrawn" | 29,840 | NFTDetails[_tokenId]._inCirculation==true |
"User has no stake" | pragma solidity ^0.6.10;
interface INFYStakingNFT {
function nftTokenId(address _stakeholder) external view returns(uint256 id);
function revertNftTokenId(address _stakeholder, uint256 _tokenId) external;
function ownerOf(uint256 tokenId) external view returns (address owner);
function balanceOf(ad... | StakingNFT.balanceOf(_msgSender())>0,"User has no stake" | 29,840 | StakingNFT.balanceOf(_msgSender())>0 |
"Token not in circulation" | pragma solidity ^0.6.10;
interface INFYStakingNFT {
function nftTokenId(address _stakeholder) external view returns(uint256 id);
function revertNftTokenId(address _stakeholder, uint256 _tokenId) external;
function ownerOf(uint256 tokenId) external view returns (address owner);
function balanceOf(ad... | checkIfNFTInCirculation(_tokenId)==true,"Token not in circulation" | 29,840 | checkIfNFTInCirculation(_tokenId)==true |
"Not enough stake in NFT" | pragma solidity ^0.6.10;
interface INFYStakingNFT {
function nftTokenId(address _stakeholder) external view returns(uint256 id);
function revertNftTokenId(address _stakeholder, uint256 _tokenId) external;
function ownerOf(uint256 tokenId) external view returns (address owner);
function balanceOf(ad... | getNFTBalance(_tokenId)>=_amount,"Not enough stake in NFT" | 29,840 | getNFTBalance(_tokenId)>=_amount |
'Address is already in use by another user' | /*
Visit RePrize.io to sign up!
Earn ETH in the most rewarding crypto MLM.
Win prizes each week!
Build your network and earn Ethereum from referrals
Collect guaranteed or weekly prizes: new TV, phones, money.
Tokens are your reward for influencing others and level upgrade.
Exchange th... | userList[_main_address]==0,'Address is already in use by another user' | 30,153 | userList[_main_address]==0 |
'User does not exist' | /*
Visit RePrize.io to sign up!
Earn ETH in the most rewarding crypto MLM.
Win prizes each week!
Build your network and earn Ethereum from referrals
Collect guaranteed or weekly prizes: new TV, phones, money.
Tokens are your reward for influencing others and level upgrade.
Exchange th... | users[_userID].isExist,'User does not exist' | 30,153 | users[_userID].isExist |
'You have sent incorrect payment amount' | /*
Visit RePrize.io to sign up!
Earn ETH in the most rewarding crypto MLM.
Win prizes each week!
Build your network and earn Ethereum from referrals
Collect guaranteed or weekly prizes: new TV, phones, money.
Tokens are your reward for influencing others and level upgrade.
Exchange th... | LEVEL_PRICE[msg.value]>0||PRIZE[msg.value]>0,'You have sent incorrect payment amount' | 30,153 | LEVEL_PRICE[msg.value]>0||PRIZE[msg.value]>0 |
null | /*
Visit RePrize.io to sign up!
Earn ETH in the most rewarding crypto MLM.
Win prizes each week!
Build your network and earn Ethereum from referrals
Collect guaranteed or weekly prizes: new TV, phones, money.
Tokens are your reward for influencing others and level upgrade.
Exchange th... | users[userList[msg.sender]].isExist | 30,153 | users[userList[msg.sender]].isExist |
null | /*
Visit RePrize.io to sign up!
Earn ETH in the most rewarding crypto MLM.
Win prizes each week!
Build your network and earn Ethereum from referrals
Collect guaranteed or weekly prizes: new TV, phones, money.
Tokens are your reward for influencing others and level upgrade.
Exchange th... | blocked[userList[msg.sender]]!=true | 30,153 | blocked[userList[msg.sender]]!=true |
'You do not have enough tokens' | /*
Visit RePrize.io to sign up!
Earn ETH in the most rewarding crypto MLM.
Win prizes each week!
Build your network and earn Ethereum from referrals
Collect guaranteed or weekly prizes: new TV, phones, money.
Tokens are your reward for influencing others and level upgrade.
Exchange th... | users[userList[msg.sender]].tokens>=PRIZE[msg.value],'You do not have enough tokens' | 30,153 | users[userList[msg.sender]].tokens>=PRIZE[msg.value] |
'You are already signed up' | /*
Visit RePrize.io to sign up!
Earn ETH in the most rewarding crypto MLM.
Win prizes each week!
Build your network and earn Ethereum from referrals
Collect guaranteed or weekly prizes: new TV, phones, money.
Tokens are your reward for influencing others and level upgrade.
Exchange th... | !users[userList[msg.sender]].isExist,'You are already signed up' | 30,153 | !users[userList[msg.sender]].isExist |
'You have sent incorrect payment amount' | /*
Visit RePrize.io to sign up!
Earn ETH in the most rewarding crypto MLM.
Win prizes each week!
Build your network and earn Ethereum from referrals
Collect guaranteed or weekly prizes: new TV, phones, money.
Tokens are your reward for influencing others and level upgrade.
Exchange th... | LEVEL_PRICE[msg.value]==1,'You have sent incorrect payment amount' | 30,153 | LEVEL_PRICE[msg.value]==1 |
'You have sent incorrect payment amount' | /*
Visit RePrize.io to sign up!
Earn ETH in the most rewarding crypto MLM.
Win prizes each week!
Build your network and earn Ethereum from referrals
Collect guaranteed or weekly prizes: new TV, phones, money.
Tokens are your reward for influencing others and level upgrade.
Exchange th... | LEVEL_PRICE[msg.value]==_level,'You have sent incorrect payment amount' | 30,153 | LEVEL_PRICE[msg.value]==_level |
'You have already activated this level' | /*
Visit RePrize.io to sign up!
Earn ETH in the most rewarding crypto MLM.
Win prizes each week!
Build your network and earn Ethereum from referrals
Collect guaranteed or weekly prizes: new TV, phones, money.
Tokens are your reward for influencing others and level upgrade.
Exchange th... | users[userList[msg.sender]].level<_level,'You have already activated this level' | 30,153 | users[userList[msg.sender]].level<_level |
'Buy the previous level first' | /*
Visit RePrize.io to sign up!
Earn ETH in the most rewarding crypto MLM.
Win prizes each week!
Build your network and earn Ethereum from referrals
Collect guaranteed or weekly prizes: new TV, phones, money.
Tokens are your reward for influencing others and level upgrade.
Exchange th... | users[userList[msg.sender]].level==level_previous,'Buy the previous level first' | 30,153 | users[userList[msg.sender]].level==level_previous |
'User does not exist' | /*
Visit RePrize.io to sign up!
Earn ETH in the most rewarding crypto MLM.
Win prizes each week!
Build your network and earn Ethereum from referrals
Collect guaranteed or weekly prizes: new TV, phones, money.
Tokens are your reward for influencing others and level upgrade.
Exchange th... | users[_user].isExist,'User does not exist' | 30,153 | users[_user].isExist |
"Max limit" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./ERC721A.sol";
import "./Strings.sol";
import "./MerkleProof.sol";
contract IKNFT is Ownable, ERC721A, ReentrancyGuard {
uint256 public SALE_NFT = 2950;
uint256 public PRESALE_NFT = 2000;
... | GIVEAWAY_MINTED+_count<=GIVEAWAY_NFT,"Max limit" | 30,187 | GIVEAWAY_MINTED+_count<=GIVEAWAY_NFT |
"Exceeds max limit" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./ERC721A.sol";
import "./Strings.sol";
import "./MerkleProof.sol";
contract IKNFT is Ownable, ERC721A, ReentrancyGuard {
uint256 public SALE_NFT = 2950;
uint256 public PRESALE_NFT = 2000;
... | PRESALE_MINTED+_count<=PRESALE_NFT,"Exceeds max limit" | 30,187 | PRESALE_MINTED+_count<=PRESALE_NFT |
"Exceeds max mint limit per wallet" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./ERC721A.sol";
import "./Strings.sol";
import "./MerkleProof.sol";
contract IKNFT is Ownable, ERC721A, ReentrancyGuard {
uint256 public SALE_NFT = 2950;
uint256 public PRESALE_NFT = 2000;
... | users[msg.sender].presalemint+_count<=MAX_MINT_PRESALE,"Exceeds max mint limit per wallet" | 30,187 | users[msg.sender].presalemint+_count<=MAX_MINT_PRESALE |
"Exceeds max limit" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./ERC721A.sol";
import "./Strings.sol";
import "./MerkleProof.sol";
contract IKNFT is Ownable, ERC721A, ReentrancyGuard {
uint256 public SALE_NFT = 2950;
uint256 public PRESALE_NFT = 2000;
... | SALE_MINTED+_count<=SALE_NFT,"Exceeds max limit" | 30,187 | SALE_MINTED+_count<=SALE_NFT |
"Exceeds max mint limit per wallet" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./ERC721A.sol";
import "./Strings.sol";
import "./MerkleProof.sol";
contract IKNFT is Ownable, ERC721A, ReentrancyGuard {
uint256 public SALE_NFT = 2950;
uint256 public PRESALE_NFT = 2000;
... | users[msg.sender].salemint+_count<=MAX_MINT_SALE,"Exceeds max mint limit per wallet" | 30,187 | users[msg.sender].salemint+_count<=MAX_MINT_SALE |
"Token transfer for staking not approved!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERC20.sol";
import "./SafeMath.sol";
contract KtlyoStaking {
address public token1;
address public token2;
uint256 public apy;
uint256 public duration;
uint256 public maxStakeAmt1;
uint256 public maxStakeAmt2;
uint256 private interestRate;
... | tokenERC20.transferFrom(msg.sender,address(this),amt),"Token transfer for staking not approved!" | 30,192 | tokenERC20.transferFrom(msg.sender,address(this),amt) |
"Stake is already redeemed or end_date not reached" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERC20.sol";
import "./SafeMath.sol";
contract KtlyoStaking {
address public token1;
address public token2;
uint256 public apy;
uint256 public duration;
uint256 public maxStakeAmt1;
uint256 public maxStakeAmt2;
uint256 private interestRate;
... | transactions[msg.sender][indexId].redeemed==false&&transactions[msg.sender][indexId].stakeEnd<block.timestamp,"Stake is already redeemed or end_date not reached" | 30,192 | transactions[msg.sender][indexId].redeemed==false&&transactions[msg.sender][indexId].stakeEnd<block.timestamp |
"Stake is already redeemed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERC20.sol";
import "./SafeMath.sol";
contract KtlyoStaking {
address public token1;
address public token2;
uint256 public apy;
uint256 public duration;
uint256 public maxStakeAmt1;
uint256 public maxStakeAmt2;
uint256 private interestRate;
... | transactions[msg.sender][indexId].redeemed==false,"Stake is already redeemed" | 30,192 | transactions[msg.sender][indexId].redeemed==false |
"Only Legendary Address can call!" | // pragma solidity ^0.8.7;
contract syac is ERC721, Ownable, Pausable {
using Strings for uint256;
uint256 public constant MAX_SUPPLY = 5555;
uint256 public constant MINT_PRICE = 0.05 ether;
uint256 public constant MAX_MINT_PER_TX = 5;
uint256 constant public LEGENDARY_SUPPLY = 200;
uint2... | legandaryAddress[msg.sender],"Only Legendary Address can call!" | 30,220 | legandaryAddress[msg.sender] |
"MAX_SUPPLY_REACHED" | // pragma solidity ^0.8.7;
contract syac is ERC721, Ownable, Pausable {
using Strings for uint256;
uint256 public constant MAX_SUPPLY = 5555;
uint256 public constant MINT_PRICE = 0.05 ether;
uint256 public constant MAX_MINT_PER_TX = 5;
uint256 constant public LEGENDARY_SUPPLY = 200;
uint2... | totalSupply+_count<=MAX_SUPPLY,"MAX_SUPPLY_REACHED" | 30,220 | totalSupply+_count<=MAX_SUPPLY |
"INVALID_ETH_SENT" | // pragma solidity ^0.8.7;
contract syac is ERC721, Ownable, Pausable {
using Strings for uint256;
uint256 public constant MAX_SUPPLY = 5555;
uint256 public constant MINT_PRICE = 0.05 ether;
uint256 public constant MAX_MINT_PER_TX = 5;
uint256 constant public LEGENDARY_SUPPLY = 200;
uint2... | msg.value>=(_count*MINT_PRICE),"INVALID_ETH_SENT" | 30,220 | msg.value>=(_count*MINT_PRICE) |
"you can't mint more than 3" | // pragma solidity ^0.8.7;
contract syac is ERC721, Ownable, Pausable {
using Strings for uint256;
uint256 public constant MAX_SUPPLY = 5555;
uint256 public constant MINT_PRICE = 0.05 ether;
uint256 public constant MAX_MINT_PER_TX = 5;
uint256 constant public LEGENDARY_SUPPLY = 200;
uint2... | totalWhiteListMinted[msg.sender]+_count<=3,"you can't mint more than 3" | 30,220 | totalWhiteListMinted[msg.sender]+_count<=3 |
"Maximum NFT Limit reached" | // pragma solidity ^0.8.7;
contract syac is ERC721, Ownable, Pausable {
using Strings for uint256;
uint256 public constant MAX_SUPPLY = 5555;
uint256 public constant MINT_PRICE = 0.05 ether;
uint256 public constant MAX_MINT_PER_TX = 5;
uint256 constant public LEGENDARY_SUPPLY = 200;
uint2... | totalPublicMinted[msg.sender]+_count<=8,"Maximum NFT Limit reached" | 30,220 | totalPublicMinted[msg.sender]+_count<=8 |
"0xVampire: Up to 3 0xVampires can be purchased." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;
import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Strings.sol";
import "./ContentMixin.sol";
import "./NativeMetaTransaction.sol";
/**
* @title 0xVampire
*/
contract Vampire is
ContextMixin,
... | (_num+presaleNumOfPlayer[msg.sender])<=3,"0xVampire: Up to 3 0xVampires can be purchased." | 30,228 | (_num+presaleNumOfPlayer[msg.sender])<=3 |
"0xVampire: Each address can only purchase up to 5 0xVampires." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;
import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Strings.sol";
import "./ContentMixin.sol";
import "./NativeMetaTransaction.sol";
/**
* @title 0xVampire
*/
contract Vampire is
ContextMixin,
... | (_num+pledgeNumOfPlayer[msg.sender]+claimed[msg.sender])<=5,"0xVampire: Each address can only purchase up to 5 0xVampires." | 30,228 | (_num+pledgeNumOfPlayer[msg.sender]+claimed[msg.sender])<=5 |
"0xVampire: Sorry, all 0xVampires are sold out." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;
import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Strings.sol";
import "./ContentMixin.sol";
import "./NativeMetaTransaction.sol";
/**
* @title 0xVampire
*/
contract Vampire is
ContextMixin,
... | totalMint+uint256(_num)<=MAX_SUPPLY-totalPledge-200,"0xVampire: Sorry, all 0xVampires are sold out." | 30,228 | totalMint+uint256(_num)<=MAX_SUPPLY-totalPledge-200 |
null | pragma solidity ^0.4.19;
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
}
function add(uint256 a, uint256 b) intern... | blacklist[msg.sender]==false | 30,301 | blacklist[msg.sender]==false |
null | pragma solidity ^0.4.19;
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
}
function add(uint256 a, uint256 b) intern... | amounts[i]<=totalRemaining | 30,301 | amounts[i]<=totalRemaining |
null | /**
* @title ERC1363
* @author Vittorio Minacori (https://github.com/vittominacori)
* @dev Implementation of an ERC1363 interface
*/
contract ERC1363 is ERC20, IERC1363 {
using Address for address;
/*
* Note: the ERC-165 identifier for this interface is 0x4bbee2df.
* 0x4bbee2df ===
... | transfer(to,value) | 30,321 | transfer(to,value) |
null | /**
* @title ERC1363
* @author Vittorio Minacori (https://github.com/vittominacori)
* @dev Implementation of an ERC1363 interface
*/
contract ERC1363 is ERC20, IERC1363 {
using Address for address;
/*
* Note: the ERC-165 identifier for this interface is 0x4bbee2df.
* 0x4bbee2df ===
... | _checkAndCallTransfer(msg.sender,to,value,data) | 30,321 | _checkAndCallTransfer(msg.sender,to,value,data) |
null | /**
* @title ERC1363
* @author Vittorio Minacori (https://github.com/vittominacori)
* @dev Implementation of an ERC1363 interface
*/
contract ERC1363 is ERC20, IERC1363 {
using Address for address;
/*
* Note: the ERC-165 identifier for this interface is 0x4bbee2df.
* 0x4bbee2df ===
... | transferFrom(from,to,value) | 30,321 | transferFrom(from,to,value) |
null | /**
* @title ERC1363
* @author Vittorio Minacori (https://github.com/vittominacori)
* @dev Implementation of an ERC1363 interface
*/
contract ERC1363 is ERC20, IERC1363 {
using Address for address;
/*
* Note: the ERC-165 identifier for this interface is 0x4bbee2df.
* 0x4bbee2df ===
... | _checkAndCallTransfer(from,to,value,data) | 30,321 | _checkAndCallTransfer(from,to,value,data) |
null | /**
* @title ERC1363
* @author Vittorio Minacori (https://github.com/vittominacori)
* @dev Implementation of an ERC1363 interface
*/
contract ERC1363 is ERC20, IERC1363 {
using Address for address;
/*
* Note: the ERC-165 identifier for this interface is 0x4bbee2df.
* 0x4bbee2df ===
... | _checkAndCallApprove(spender,value,data) | 30,321 | _checkAndCallApprove(spender,value,data) |
"Keep3rV1JobRegistry::add: no job" | // SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;
contract Keep3rV1JobRegistry {
/// @notice governance address for the governance contract
address public governance;
address public pendingGovernance;
struct _job {
uint _id;
address _address;
string _name;
string _... | jobAdded[_address],"Keep3rV1JobRegistry::add: no job" | 30,387 | jobAdded[_address] |
"Keep3rV1JobRegistry::add: job exists" | // SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;
contract Keep3rV1JobRegistry {
/// @notice governance address for the governance contract
address public governance;
address public pendingGovernance;
struct _job {
uint _id;
address _address;
string _name;
string _... | !jobAdded[_address],"Keep3rV1JobRegistry::add: job exists" | 30,387 | !jobAdded[_address] |
"You don't have the amount of tokens." | pragma solidity ^0.5.7;
contract Token {
mapping (address => uint256) public balanceOf;
function transfer(address _to, uint256 _value) public;
function transferFrom(address _from, address _to, uint256 _value) public;
function approve(address _spender, uint256 _value) public;
function approveCo... | Token(token).balanceOf(msg.sender)>=amount,"You don't have the amount of tokens." | 30,518 | Token(token).balanceOf(msg.sender)>=amount |
"Staking not exists." | pragma solidity ^0.5.7;
contract Token {
mapping (address => uint256) public balanceOf;
function transfer(address _to, uint256 _value) public;
function transferFrom(address _from, address _to, uint256 _value) public;
function approve(address _spender, uint256 _value) public;
function approveCo... | stakings[msg.sender][_id].isExist,"Staking not exists." | 30,518 | stakings[msg.sender][_id].isExist |
"It was already withdrawn." | pragma solidity ^0.5.7;
contract Token {
mapping (address => uint256) public balanceOf;
function transfer(address _to, uint256 _value) public;
function transferFrom(address _from, address _to, uint256 _value) public;
function approve(address _spender, uint256 _value) public;
function approveCo... | stakings[msg.sender][_id].status,"It was already withdrawn." | 30,518 | stakings[msg.sender][_id].status |
Error.POOL_NOT_PAUSED | // SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.9;
import "SafeERC20.sol";
import "Initializable.sol";
import "IERC20.sol";
import "ILiquidityPool.sol";
import "IVault.sol";
import "IVaultReserve.sol";
import "IController.sol";
import "IStrategy.sol";
import "ScaledMath.sol";
import "Errors.sol";
impor... | IPausable(pool).isPaused(),Error.POOL_NOT_PAUSED | 30,638 | IPausable(pool).isPaused() |
Error.ADDRESS_ALREADY_SET | // SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.9;
import "SafeERC20.sol";
import "Initializable.sol";
import "IERC20.sol";
import "ILiquidityPool.sol";
import "IVault.sol";
import "IVaultReserve.sol";
import "IController.sol";
import "IStrategy.sol";
import "ScaledMath.sol";
import "Errors.sol";
impor... | currentAddresses[_STRATEGY_KEY]==address(0),Error.ADDRESS_ALREADY_SET | 30,638 | currentAddresses[_STRATEGY_KEY]==address(0) |
"sum of strategist fee and reserve fee should be below 1" | // SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.9;
import "SafeERC20.sol";
import "Initializable.sol";
import "IERC20.sol";
import "ILiquidityPool.sol";
import "IVault.sol";
import "IVaultReserve.sol";
import "IController.sol";
import "IStrategy.sol";
import "ScaledMath.sol";
import "Errors.sol";
impor... | reserveFee+strategistFee<=DECIMAL_SCALE,"sum of strategist fee and reserve fee should be below 1" | 30,638 | reserveFee+strategistFee<=DECIMAL_SCALE |
null | pragma solidity ^0.4.4;
contract owned {
address public owner;
function owned() public{
}
modifier onlyOwner {
}
function transferOwnership(address newOwner) onlyOwner public {
}
}
contract ERC20Token {
function totalSupply() public constant returns (uint);
function balan... | balances[msg.sender]>=v&&v>0 | 30,723 | balances[msg.sender]>=v&&v>0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.