ERC-721
NFT
Overview
Max Total Supply
10,000 CHEF
Holders
2,331
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CHEFLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ChefAvatar
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "erc721a/contracts/ERC721A.sol"; import './Sale/ChefSaleManager.sol'; import './Sale/ChefRevealProvider.sol'; contract ChefAvatar is ERC721A, Ownable { using Strings for uint256; event RevealProviderChanged(address newRevealProvider); event SaleManagerChanged(address newSaleManager); ChefRevealProvider public chefRevealProvider; ChefSaleManager public saleManager; uint256 public immutable maxSupply; string private _baseTokenURI; uint256 public revealOffset; // It will be used to shuffle IPFS files as (revealOffset + tokenId) % maxSupply constructor( uint256 _reserved, uint256 _maxSupply, address treasury, string memory name, string memory symbol, string memory baseTokenURI ) ERC721A(name, symbol) { require(_reserved <= _maxSupply, "ChefAvatar: reserved must be less than or equal to maxSupply"); maxSupply = _maxSupply; _baseTokenURI = baseTokenURI; if(_reserved > 0) { //not all projects have reserved tokens _mint(treasury, _reserved); } } function setChefRevealProvider(address _chefRevealProvider) external onlyOwner { chefRevealProvider = ChefRevealProvider(_chefRevealProvider); emit RevealProviderChanged(_chefRevealProvider); } function setChefSaleManager(address _chefSaleManager) external onlyOwner { saleManager = ChefSaleManager(_chefSaleManager); emit SaleManagerChanged(_chefSaleManager); } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseTokenURI(string calldata newTokenURI) onlyOwner public { _baseTokenURI = newTokenURI; } function exists(uint256 tokenId) external view returns (bool) { return _exists(tokenId); } function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "nonexistent token"); uint256 offsetId = revealOffset == 0 ? maxSupply // tokenId will always be less than maxSupply : tokenId; return string(abi.encodePacked(_baseTokenURI, offsetId.toString())); } function _mint(address to, uint256 quantity) private { require(totalSupply() + quantity <= maxSupply, "max supply reached"); ERC721A._mint(to, quantity, '', true); } function mint(uint256 quantity, address to) public { require(msg.sender == address(saleManager), "only saleManager can mint"); _mint(to, quantity); } /// @notice Request randomness from a user-provided seed /// @dev Only callable by the Owner. /// @param userProvidedSeed: extra entrpy for the VRF function callReveal(uint256 userProvidedSeed) external onlyOwner { require(revealOffset == 0, "Reveal already called"); chefRevealProvider.getRandomNumber(userProvidedSeed); } function reveal(uint256 randomness) external { require(msg.sender == address(chefRevealProvider), "Only the Chef Reveal Provider can reveal"); require(revealOffset == 0, "Reveal already called"); revealOffset = randomness; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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 with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// 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 * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "../../Chainlink/VRFConsumerBase.sol"; import "../ChefAvatar.sol"; /// @title A title that should describe the contract/interface /// https://docs.chain.link/docs/vrf-contracts/ /// You can get the keyhash and vrfCoordinator from here https://docs.chain.link/docs/vrf-contracts/ contract ChefRevealProvider is VRFConsumerBase, Ownable { using SafeERC20 for IERC20; uint256 public fee; uint256 public randomNumber; bytes32 public immutable keyHash; bytes32 public requestId; event FeeChanged(uint256 newFee); ChefAvatar public immutable chefAvatar; /// @dev Ctor /// @param VRFCoordinator: address of the VRF coordinator /// @param LINKToken: address of the LINK token constructor( address VRFCoordinator, address LINKToken, bytes32 _keyHash, uint256 _fee, ChefAvatar _chefAvatar ) VRFConsumerBase( VRFCoordinator, // VRF Coordinator LINKToken // LINK Token ) { keyHash = _keyHash; fee = _fee; chefAvatar = _chefAvatar; } /// @notice Change the fee /// @param _fee: new fee (in LINK) function setFee(uint256 _fee) external onlyOwner { fee = _fee; emit FeeChanged(_fee); } /// @notice It allows the admin to withdraw tokens sent to the contract /// @dev Only callable by owner. /// @param token: the address of the token to withdraw /// @param amount: the number of token amount to withdraw function withdrawTokens(address token, uint256 amount) external onlyOwner { IERC20(token).safeTransfer(_msgSender(), amount); } /// @notice Request randomness from a user-provided seed /// @dev Only callable by RevealConsumer. /// @param userProvidedSeed: extra entrpy for the VRF function getRandomNumber(uint256 userProvidedSeed) external { require(msg.sender == address(chefAvatar), "only ChefAvatar"); require(LINK.balanceOf(address(this)) >= fee, "insufficient LINK tokens"); require(requestId == bytes32(0), "request already made"); requestId = requestRandomness(keyHash, fee, userProvidedSeed); } /// @notice Callback function used by ChainLink's VRF Coordinator function fulfillRandomness(bytes32 incomingRequestId, uint256 randomness) internal override { require(incomingRequestId == requestId, "Wrong requestId"); chefAvatar.reveal(randomness); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import '@openzeppelin/contracts/access/Ownable.sol'; import '../ChefAvatar.sol'; /// @title Tickets that exchange to a Chef. Sold during the Big Town Chef sale. /// @author Valerio Leo @valeriohq contract ChefSaleManager is Ownable { uint256 public presalePrice; uint256 public publicFixedPrice; ChefAvatar public chefAvatar; address public treasury; uint256 public presaleStart = block.timestamp + 180 days; // default to half a year from now uint256 public presaleLength = 1 days; // default to 1 day after presaleStart uint256 public publicStart = block.timestamp + 180 days; // default to half a year from now uint256 public publicSaleMaxPurchaseQuantity = 3; bytes32 public merkleRoot; event MerkleRootChanged(bytes32 newMerkleRoot); event TreasuryChanged(address newTreasury); event PricesChanged(uint256 newPresalePrice, uint256 newPublicFixedPrice); event PresaleConfigChanged(uint256 newPresaleStart, uint256 newPresaleLength); event PublicSaleConfigChanged(uint256 newPublicStart); event PublicSaleMaxPurchaseQuantityChanged(uint256 newPublicSaleMaxPurchaseQuantity); event PublicSalePricingModelChanged(PublicSalePricingModel newPublicSalePricingModel); event DutchAuctionConfigurationChanged( uint256 newDutchStartPrice, uint256 newDutchEndPrice, uint256 newDutchPriceStepDrecrease, uint256 newDutchStartTime, uint256 newDutchStep ); struct DutchAuction { uint256 dutchStartPrice; uint256 dutchEndPrice; uint256 dutchPriceStepDrecrease; uint256 dutchStartTime; uint256 dutchStep; } DutchAuction public dutchAuction; mapping(address => uint256) public publicSalePurchasesPerAddress; mapping(address => uint) public presaleChefs; enum SalePhases{ NO_SALE, PRESALE, PUBLIC_SALE } enum PublicSalePricingModel{ FIXED_PRICE, DUTCH_AUCTION } PublicSalePricingModel public publicSalePricingModel; constructor( uint256 _presalePrice, uint256 _publicPrice, ChefAvatar _chefAvatar, address _treasury ) { presalePrice = _presalePrice; publicFixedPrice = _publicPrice; chefAvatar = _chefAvatar; treasury = _treasury; } /// @notice It changes the merkleRoot variable. /// @dev Only callable by owner. /// @param _merkleRoot: the new merkle root function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; emit MerkleRootChanged(_merkleRoot); } /// @notice It changes the treasury treasury that receives the payments. /// @dev Only callable by owner. /// @param _treasury: the new treasury address function setTreasury(address _treasury) external onlyOwner { treasury = _treasury; emit TreasuryChanged(_treasury); } /// @notice It updates the presale and public sale prices. /// @dev Only callable by owner. /// @param _presalePrice: the new presale price /// @param _publicPrice: the new public sale price function setPrices(uint256 _presalePrice, uint256 _publicPrice) external onlyOwner { presalePrice = _presalePrice; publicFixedPrice = _publicPrice; emit PricesChanged(_presalePrice, _publicPrice); } /// @notice It updates the start time and length of the presale /// @dev Only callable by owner. /// @param _presaleStart: the new presale start timestamp /// @param _presaleLength: the new presale length in seconds function setPresaleConfig(uint256 _presaleStart, uint256 _presaleLength) external onlyOwner { presaleStart = _presaleStart; presaleLength = _presaleLength; emit PresaleConfigChanged(_presaleStart, _presaleLength); } /// @notice It updates the start time of the public sale /// @dev Only callable by owner. /// @param _publicStart: the new public sale start timestamp function setPublicConfig(uint256 _publicStart) external onlyOwner { publicStart = _publicStart; emit PublicSaleConfigChanged(_publicStart); } /// @notice It updates the max purchase quantity of the public sale /// @dev Only callable by owner. /// @param newAmount: the new max amount users can mint during public sale function setPublicSaleMaxPurchaseQuantity(uint256 newAmount) external onlyOwner { publicSaleMaxPurchaseQuantity = newAmount; emit PublicSaleMaxPurchaseQuantityChanged(newAmount); } /// @notice It updates the pricing model of the public sale. /// @dev Only callable by owner. Parameter can be one of 0 or 1. 0 for fixed price, 1 for dutch auction. /// @param pricingModel: the new pricing model of the public sale function setPublicSalePricingModel(PublicSalePricingModel pricingModel) external onlyOwner { publicSalePricingModel = pricingModel; emit PublicSalePricingModelChanged(pricingModel); } /// @notice It updates the dutch auction settings. /// @dev Only callable by owner. /// @param _dutchStartPrice: the new start price /// @param _dutchEndPrice: the new end price /// @param _dutchPriceStepDrecrease: the new price decrease step /// @param _dutchStartTime: the new start timestamp in seconds /// @param _dutchStep: the new step in seconds for the price decrease function configureDutch( uint256 _dutchStartPrice, uint256 _dutchEndPrice, uint256 _dutchPriceStepDrecrease, uint256 _dutchStartTime, uint256 _dutchStep ) external onlyOwner { require(_dutchStartPrice > _dutchEndPrice, "ChefSaleManager: dutchStartPrice must be greater than dutchEndPrice"); require(_dutchPriceStepDrecrease > 0, "ChefSaleManager: dutchPriceStepDrecrease must be greater than 0"); require(_dutchStartTime >= block.timestamp, "ChefSaleManager: dutchStartTime must be greater than or equal to block.timestamp"); require(_dutchStep > 0, "ChefSaleManager: dutchStep must be greater than 0"); require(_dutchStartTime > _dutchStep, "ChefSaleManager: dutchStartTime must be greater than dutchStep"); dutchAuction.dutchStartPrice = _dutchStartPrice; dutchAuction.dutchEndPrice = _dutchEndPrice; dutchAuction.dutchPriceStepDrecrease = _dutchPriceStepDrecrease; dutchAuction.dutchStartTime = _dutchStartTime; dutchAuction.dutchStep = _dutchStep; emit DutchAuctionConfigurationChanged( _dutchStartPrice, _dutchEndPrice, _dutchPriceStepDrecrease, _dutchStartTime, _dutchStep ); } function _getDutchAuctionPrice() internal view returns (uint256) { uint256 elapsed = block.timestamp - dutchAuction.dutchStartTime; uint256 stepsElapsed = elapsed / dutchAuction.dutchStep; uint256 priceDecrease = stepsElapsed * dutchAuction.dutchPriceStepDrecrease; if(priceDecrease > dutchAuction.dutchStartPrice) { return dutchAuction.dutchEndPrice; } uint256 currPrice = dutchAuction.dutchStartPrice - priceDecrease; return currPrice >= dutchAuction.dutchEndPrice ? currPrice : dutchAuction.dutchEndPrice; } /// @notice It returns the current price per-nft taking into account the currect sale phase and pricing model function getCurrentPrice() public view returns (uint256) { SalePhases phase = getSalePhase(); if(phase == SalePhases.PRESALE) { return presalePrice; } if(phase == SalePhases.PUBLIC_SALE && publicSalePricingModel == PublicSalePricingModel.DUTCH_AUCTION) { return _getDutchAuctionPrice(); } if(phase == SalePhases.PUBLIC_SALE && publicSalePricingModel == PublicSalePricingModel.FIXED_PRICE) { return publicFixedPrice; } require(false, "Invalid phase"); // stop execution if reach here } function _transferFunds(uint256 totalCost) private { require(msg.value == totalCost, "wrong amount"); (bool success, ) = payable(treasury).call{value: totalCost}(""); require(success, "transfer failed"); } function admitPresaleUser(uint256 quantity, uint256 maxQuantity, bytes32[] calldata proofs) internal returns (bool) { bool isProofValid = MerkleProof.verify( proofs, merkleRoot, keccak256( abi.encodePacked( keccak256(abi.encodePacked(msg.sender, maxQuantity)) ) ) ); presaleChefs[msg.sender] += quantity; return presaleChefs[msg.sender] <= maxQuantity && isProofValid; } function admitPublicUser(uint256 quantity) internal returns (bool) { publicSalePurchasesPerAddress[msg.sender] += quantity; return publicSalePurchasesPerAddress[msg.sender] <= publicSaleMaxPurchaseQuantity; } /// @notice It returns the current sale phase function getSalePhase() view public returns (SalePhases) { if (block.timestamp < presaleStart) { return SalePhases.NO_SALE; } if (block.timestamp < presaleStart + presaleLength) { return SalePhases.PRESALE; } if(block.timestamp >= publicStart) { return SalePhases.PUBLIC_SALE; } return SalePhases.NO_SALE; } /// @notice It will purchase the given amount of tokens for the user during the presale phase /// @dev Only callable by during the presale phase. The correct amount of ETH should be sent based on the current price or the call will revert` /// @param quantity: the amount of tokens to purchase /// @param maxQuantity: the maximum amount of tokens this user can purchase during presale /// @param proofs: the merkle proofs for the current user function presaleBuy(uint256 quantity, uint256 maxQuantity, bytes32[] calldata proofs) external payable { SalePhases salePhase = getSalePhase(); require(salePhase == SalePhases.PRESALE, "presale not active"); uint256 totalCost = getCurrentPrice() * quantity; require(msg.value == totalCost, "Wrong amount sent"); bool admitUser = admitPresaleUser(quantity, maxQuantity, proofs); require(admitUser, "User not admitted"); _transferFunds(totalCost); chefAvatar.mint(quantity, msg.sender); } /// @notice It will purchase the given amount of tokens for the user during the public sale phase /// @dev Only callable by during the public sale phase. The correct amount of ETH should be sent based on the current price or the call will revert /// @param quantity: the amount of tokens to purchase function publicBuy(uint256 quantity) external payable { SalePhases salePhase = getSalePhase(); require(salePhase == SalePhases.PUBLIC_SALE, "public sale not active"); uint256 totalCost = getCurrentPrice() * quantity; require(msg.value == totalCost, "Wrong amount sent"); bool admitUser = admitPublicUser(quantity); require(admitUser, "User not admitted"); _transferFunds(totalCost); chefAvatar.mint(quantity, msg.sender); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; import "./interfaces/ILinkToken.sol"; import "./VRFRequestIDBase.sol"; /** **************************************************************************** * @notice Interface for contracts using VRF randomness * ***************************************************************************** * @dev PURPOSE * * @dev Reggie the Random Oracle (not his real job) wants to provide randomness * @dev to Vera the verifier in such a way that Vera can be sure he's not * @dev making his output up to suit himself. Reggie provides Vera a public key * @dev to which he knows the secret key. Each time Vera provides a seed to * @dev Reggie, he gives back a value which is computed completely * @dev deterministically from the seed and the secret key. * * @dev Reggie provides a proof by which Vera can verify that the output was * @dev correctly computed once Reggie tells it to her, but without that proof, * @dev the output is indistinguishable to her from a uniform random sample * @dev from the output space. * * @dev The purpose of this contract is to make it easy for unrelated contracts * @dev to talk to Vera the verifier about the work Reggie is doing, to provide * @dev simple access to a verifiable source of randomness. * ***************************************************************************** * @dev USAGE * * @dev Calling contracts must inherit from VRFConsumerBase, and can * @dev initialize VRFConsumerBase's attributes in their constructor as * @dev shown: * * @dev contract VRFConsumer { * @dev constuctor(<other arguments>, address _vrfCoordinator, address _link) * @dev VRFConsumerBase(_vrfCoordinator, _link) public { * @dev <initialization with other arguments goes here> * @dev } * @dev } * * @dev The oracle will have given you an ID for the VRF keypair they have * @dev committed to (let's call it keyHash), and have told you the minimum LINK * @dev price for VRF service. Make sure your contract has sufficient LINK, and * @dev call requestRandomness(keyHash, fee, seed), where seed is the input you * @dev want to generate randomness from. * * @dev Once the VRFCoordinator has received and validated the oracle's response * @dev to your request, it will call your contract's fulfillRandomness method. * * @dev The randomness argument to fulfillRandomness is the actual random value * @dev generated from your seed. * * @dev The requestId argument is generated from the keyHash and the seed by * @dev makeRequestId(keyHash, seed). If your contract could have concurrent * @dev requests open, you can use the requestId to track which seed is * @dev associated with which randomness. See VRFRequestIDBase.sol for more * @dev details. (See "SECURITY CONSIDERATIONS" for principles to keep in mind, * @dev if your contract could have multiple requests in flight simultaneously.) * * @dev Colliding `requestId`s are cryptographically impossible as long as seeds * @dev differ. (Which is critical to making unpredictable randomness! See the * @dev next section.) * * ***************************************************************************** * @dev SECURITY CONSIDERATIONS * * @dev A method with the ability to call your fulfillRandomness method directly * @dev could spoof a VRF response with any random value, so it's critical that * @dev it cannot be directly called by anything other than this base contract * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method). * * @dev For your users to trust that your contract's random behavior is free * @dev from malicious interference, it's best if you can write it so that all * @dev behaviors implied by a VRF response are executed *during* your * @dev fulfillRandomness method. If your contract must store the response (or * @dev anything derived from it) and use it later, you must ensure that any * @dev user-significant behavior which depends on that stored value cannot be * @dev manipulated by a subsequent VRF request. * * @dev Similarly, both miners and the VRF oracle itself have some influence * @dev over the order in which VRF responses appear on the blockchain, so if * @dev your contract could have multiple VRF requests in flight simultaneously, * @dev you must ensure that the order in which the VRF responses arrive cannot * @dev be used to manipulate your contract's user-significant behavior. * * @dev Since the ultimate input to the VRF is mixed with the block hash of the * @dev block in which the request is made, user-provided seeds have no impact * @dev on its economic security properties. They are only included for API * @dev compatability with previous versions of this contract. * * @dev Since the block hash of the block which contains the requestRandomness * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful * @dev miner could, in principle, fork the blockchain to evict the block * @dev containing the request, forcing the request to be included in a * @dev different block with a different hash, and therefore a different input * @dev to the VRF. However, such an attack would incur a substantial economic * @dev cost. This cost scales with the number of blocks the VRF oracle waits * @dev until it calls responds to a request. */ abstract contract VRFConsumerBase is VRFRequestIDBase { event RandomnessRequested(bytes32 requestId); /** * @notice fulfillRandomness handles the VRF response. Your contract must * @notice implement it. See "SECURITY CONSIDERATIONS" above for important * @notice principles to keep in mind when implementing your fulfillRandomness * @notice method. * * @dev VRFConsumerBase expects its subcontracts to have a method with this * @dev signature, and will call it once it has verified the proof * @dev associated with the randomness. (It is triggered via a call to * @dev rawFulfillRandomness, below.) * * @param requestId The Id initially returned by requestRandomness * @param randomness the VRF output */ function fulfillRandomness(bytes32 requestId, uint256 randomness) internal virtual; /** * @notice requestRandomness initiates a request for VRF output given _seed * * @dev The fulfillRandomness method receives the output, once it's provided * @dev by the Oracle, and verified by the vrfCoordinator. * * @dev The _keyHash must already be registered with the VRFCoordinator, and * @dev the _fee must exceed the fee specified during registration of the * @dev _keyHash. * * @dev The _seed parameter is vestigial, and is kept only for API * @dev compatibility with older versions. It can't *hurt* to mix in some of * @dev your own randomness, here, but it's not necessary because the VRF * @dev oracle will mix the hash of the block containing your request into the * @dev VRF seed it ultimately uses. * * @param _keyHash ID of public key against which randomness is generated * @param _fee The amount of LINK to send with the request * @param _seed seed mixed into the input of the VRF. * * @return requestId unique ID for this request * * @dev The returned requestId can be used to distinguish responses to * @dev concurrent requests. It is passed as the first argument to * @dev fulfillRandomness. */ function requestRandomness(bytes32 _keyHash, uint256 _fee, uint256 _seed) internal returns (bytes32 requestId) { LINK.transferAndCall(vrfCoordinator, _fee, abi.encode(_keyHash, _seed)); // This is the seed passed to VRFCoordinator. The oracle will mix this with // the hash of the block containing this request to obtain the seed/input // which is finally passed to the VRF cryptographic machinery. uint256 vRFSeed = makeVRFInputSeed(_keyHash, _seed, address(this), nonces[_keyHash]); // nonces[_keyHash] must stay in sync with // VRFCoordinator.nonces[_keyHash][this], which was incremented by the above // successful LINK.transferAndCall (in VRFCoordinator.randomnessRequest). // This provides protection against the user repeating their input seed, // which would result in a predictable/duplicate output, if multiple such // requests appeared in the same block. nonces[_keyHash] = nonces[_keyHash] + 1; bytes32 requestId = makeRequestId(_keyHash, vRFSeed); emit RandomnessRequested(requestId); return requestId; } ILinkToken immutable internal LINK; address immutable private vrfCoordinator; // Nonces for each VRF key from which randomness has been requested. // // Must stay in sync with VRFCoordinator[_keyHash][this] mapping(bytes32 /* keyHash */ => uint256 /* nonce */) private nonces; /** * @param _vrfCoordinator address of VRFCoordinator contract * @param _link address of LINK token contract * * @dev https://docs.chain.link/docs/link-token-contracts */ constructor(address _vrfCoordinator, address _link) { vrfCoordinator = _vrfCoordinator; LINK = ILinkToken(_link); } // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF // proof. rawFulfillRandomness then calls fulfillRandomness, after validating // the origin of the call function rawFulfillRandomness(bytes32 requestId, uint256 randomness) external { require(msg.sender == vrfCoordinator, "Only VRFCoordinator can fulfill"); fulfillRandomness(requestId, randomness); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; contract VRFRequestIDBase { /** * @notice returns the seed which is actually input to the VRF coordinator * * @dev To prevent repetition of VRF output due to repetition of the * @dev user-supplied seed, that seed is combined in a hash with the * @dev user-specific nonce, and the address of the consuming contract. The * @dev risk of repetition is mostly mitigated by inclusion of a blockhash in * @dev the final seed, but the nonce does protect against repetition in * @dev requests which are included in a single block. * * @param _userSeed VRF seed input provided by user * @param _requester Address of the requesting contract * @param _nonce User-specific nonce at the time of the request */ function makeVRFInputSeed(bytes32 _keyHash, uint256 _userSeed, address _requester, uint256 _nonce) internal pure returns (uint256) { return uint256(keccak256(abi.encode(_keyHash, _userSeed, _requester, _nonce))); } /** * @notice Returns the id for this request * @param _keyHash The serviceAgreement ID to be used for this request * @param _vRFInputSeed The seed to be passed directly to the VRF * @return The id for this request * * @dev Note that _vRFInputSeed is not the seed passed by the consuming * @dev contract, but the one generated by makeVRFInputSeed */ function makeRequestId( bytes32 _keyHash, uint256 _vRFInputSeed) internal pure returns (bytes32) { return keccak256(abi.encodePacked(_keyHash, _vRFInputSeed)); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; interface ILinkToken { function allowance(address owner, address spender) external view returns (uint256 remaining); function approve(address spender, uint256 value) external returns (bool success); function balanceOf(address owner) external view returns (uint256 balance); function decimals() external view returns (uint8 decimalPlaces); function decreaseApproval(address spender, uint256 addedValue) external returns (bool success); function increaseApproval(address spender, uint256 subtractedValue) external; function name() external view returns (string memory tokenName); function symbol() external view returns (string memory tokenSymbol); function totalSupply() external view returns (uint256 totalTokensIssued); function transfer(address to, uint256 value) external returns (bool success); function transferAndCall(address to, uint256 value, bytes memory data) external returns (bool success); function transferFrom(address from, address to, uint256 value) external returns (bool success); }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs 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'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
{ "evmVersion": "london", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": false, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_reserved","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"address","name":"treasury","type":"address"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newRevealProvider","type":"address"}],"name":"RevealProviderChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newSaleManager","type":"address"}],"name":"SaleManagerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"userProvidedSeed","type":"uint256"}],"name":"callReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"chefRevealProvider","outputs":[{"internalType":"contract ChefRevealProvider","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"randomness","type":"uint256"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealOffset","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleManager","outputs":[{"internalType":"contract ChefSaleManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_chefRevealProvider","type":"address"}],"name":"setChefRevealProvider","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_chefSaleManager","type":"address"}],"name":"setChefSaleManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b506040516200455538038062004555833981810160405281019062000037919062000b30565b828281600290805190602001906200005192919062000843565b5080600390805190602001906200006a92919062000843565b506200007b6200013360201b60201c565b6000819055505050620000a3620000976200013860201b60201c565b6200014060201b60201c565b84861115620000e9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000e09062000cb0565b60405180910390fd5b846080818152505080600b90805190602001906200010992919062000843565b50600086111562000127576200012684876200020660201b60201c565b5b50505050505062000f97565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b608051816200021a6200029760201b60201c565b62000226919062000d01565b11156200026a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002619062000dae565b60405180910390fd5b620002938282604051806020016040528060008152506001620002b660201b620014d71760201c565b5050565b6000620002a96200013360201b60201c565b6001546000540303905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141562000324576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141562000360576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620003756000868387620006b260201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156200054d57506200054c8773ffffffffffffffffffffffffffffffffffffffff16620006b860201b620018a51760201c565b5b1562000620575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620005cb6000888480600101955088620006db60201b60201c565b62000602576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415620005545782600054146200061a57600080fd5b6200068d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141562000621575b816000819055505050620006ab60008683876200083d60201b60201c565b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007096200013860201b60201c565b8786866040518563ffffffff1660e01b81526004016200072d949392919062000e4f565b6020604051808303816000875af19250505080156200076c57506040513d601f19601f8201168201806040525081019062000769919062000f00565b60015b620007ea573d80600081146200079f576040519150601f19603f3d011682016040523d82523d6000602084013e620007a4565b606091505b50600081511415620007e2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b828054620008519062000f61565b90600052602060002090601f016020900481019282620008755760008555620008c1565b82601f106200089057805160ff1916838001178555620008c1565b82800160010185558215620008c1579182015b82811115620008c0578251825591602001919060010190620008a3565b5b509050620008d09190620008d4565b5090565b5b80821115620008ef576000816000905550600101620008d5565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6200091c8162000907565b81146200092857600080fd5b50565b6000815190506200093c8162000911565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200096f8262000942565b9050919050565b620009818162000962565b81146200098d57600080fd5b50565b600081519050620009a18162000976565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620009fc82620009b1565b810181811067ffffffffffffffff8211171562000a1e5762000a1d620009c2565b5b80604052505050565b600062000a33620008f3565b905062000a418282620009f1565b919050565b600067ffffffffffffffff82111562000a645762000a63620009c2565b5b62000a6f82620009b1565b9050602081019050919050565b60005b8381101562000a9c57808201518184015260208101905062000a7f565b8381111562000aac576000848401525b50505050565b600062000ac962000ac38462000a46565b62000a27565b90508281526020810184848401111562000ae85762000ae7620009ac565b5b62000af584828562000a7c565b509392505050565b600082601f83011262000b155762000b14620009a7565b5b815162000b2784826020860162000ab2565b91505092915050565b60008060008060008060c0878903121562000b505762000b4f620008fd565b5b600062000b6089828a016200092b565b965050602062000b7389828a016200092b565b955050604062000b8689828a0162000990565b945050606087015167ffffffffffffffff81111562000baa5762000ba962000902565b5b62000bb889828a0162000afd565b935050608087015167ffffffffffffffff81111562000bdc5762000bdb62000902565b5b62000bea89828a0162000afd565b92505060a087015167ffffffffffffffff81111562000c0e5762000c0d62000902565b5b62000c1c89828a0162000afd565b9150509295509295509295565b600082825260208201905092915050565b7f436865664176617461723a207265736572766564206d757374206265206c657360008201527f73207468616e206f7220657175616c20746f206d6178537570706c7900000000602082015250565b600062000c98603c8362000c29565b915062000ca58262000c3a565b604082019050919050565b6000602082019050818103600083015262000ccb8162000c89565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d0e8262000907565b915062000d1b8362000907565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d535762000d5262000cd2565b5b828201905092915050565b7f6d617820737570706c7920726561636865640000000000000000000000000000600082015250565b600062000d9660128362000c29565b915062000da38262000d5e565b602082019050919050565b6000602082019050818103600083015262000dc98162000d87565b9050919050565b62000ddb8162000962565b82525050565b62000dec8162000907565b82525050565b600081519050919050565b600082825260208201905092915050565b600062000e1b8262000df2565b62000e27818562000dfd565b935062000e3981856020860162000a7c565b62000e4481620009b1565b840191505092915050565b600060808201905062000e66600083018762000dd0565b62000e75602083018662000dd0565b62000e84604083018562000de1565b818103606083015262000e98818462000e0e565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000eda8162000ea3565b811462000ee657600080fd5b50565b60008151905062000efa8162000ecf565b92915050565b60006020828403121562000f195762000f18620008fd565b5b600062000f298482850162000ee9565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f7a57607f821691505b6020821081141562000f915762000f9062000f32565b5b50919050565b60805161359462000fc1600039600081816112d201528181611329015261228701526135946000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f9578063a22cb46511610097578063c87b56dd11610071578063c87b56dd146104c9578063d5abeb01146104f9578063e985e9c514610517578063f2fde38b14610547576101c4565b8063a22cb46514610475578063b88d4fde14610491578063c2ca0ac5146104ad576101c4565b8063746e60b5116100d3578063746e60b5146103ff5780638da5cb5b1461041d57806394bf804d1461043b57806395d89b4114610457576101c4565b80636352211e1461039557806370a08231146103c5578063715018a6146103f5576101c4565b806321330bc41161016657806342842e0e1161014057806342842e0e1461030f5780634f558e791461032b57806350f8099e1461035b5780635ef200f114610379576101c4565b806321330bc4146102bb57806323b872dd146102d757806330176e13146102f3576101c4565b8063095ea7b3116101a2578063095ea7b3146102475780630bd007341461026357806318160ddd1461027f5780632097ac3b1461029d576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de919061272a565b610563565b6040516101f09190612772565b60405180910390f35b610201610645565b60405161020e9190612826565b60405180910390f35b610231600480360381019061022c919061287e565b6106d7565b60405161023e91906128ec565b60405180910390f35b610261600480360381019061025c9190612933565b610753565b005b61027d60048036038101906102789190612973565b61085e565b005b610287610955565b60405161029491906129af565b60405180910390f35b6102a561096c565b6040516102b291906129af565b60405180910390f35b6102d560048036038101906102d09190612973565b610972565b005b6102f160048036038101906102ec91906129ca565b610a69565b005b61030d60048036038101906103089190612a82565b610a79565b005b610329600480360381019061032491906129ca565b610b0b565b005b6103456004803603810190610340919061287e565b610b2b565b6040516103529190612772565b60405180910390f35b610363610b3d565b6040516103709190612b2e565b60405180910390f35b610393600480360381019061038e919061287e565b610b63565b005b6103af60048036038101906103aa919061287e565b610cb4565b6040516103bc91906128ec565b60405180910390f35b6103df60048036038101906103da9190612973565b610cca565b6040516103ec91906129af565b60405180910390f35b6103fd610d9a565b005b610407610e22565b6040516104149190612b6a565b60405180910390f35b610425610e48565b60405161043291906128ec565b60405180910390f35b61045560048036038101906104509190612b85565b610e72565b005b61045f610f10565b60405161046c9190612826565b60405180910390f35b61048f600480360381019061048a9190612bf1565b610fa2565b005b6104ab60048036038101906104a69190612d61565b61111a565b005b6104c760048036038101906104c2919061287e565b611196565b005b6104e360048036038101906104de919061287e565b611275565b6040516104f09190612826565b60405180910390f35b610501611327565b60405161050e91906129af565b60405180910390f35b610531600480360381019061052c9190612de4565b61134b565b60405161053e9190612772565b60405180910390f35b610561600480360381019061055c9190612973565b6113df565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061062e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061063e575061063d826118c8565b5b9050919050565b60606002805461065490612e53565b80601f016020809104026020016040519081016040528092919081815260200182805461068090612e53565b80156106cd5780601f106106a2576101008083540402835291602001916106cd565b820191906000526020600020905b8154815290600101906020018083116106b057829003601f168201915b5050505050905090565b60006106e282611932565b610718576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061075e82610cb4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107c6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107e5611980565b73ffffffffffffffffffffffffffffffffffffffff1614158015610817575061081581610810611980565b61134b565b155b1561084e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610859838383611988565b505050565b610866611980565b73ffffffffffffffffffffffffffffffffffffffff16610884610e48565b73ffffffffffffffffffffffffffffffffffffffff16146108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d190612ed1565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f6ac4cf0c58a8856b014df7518078a430cab0f5a24a0b7f091a289736aa6697908160405161094a91906128ec565b60405180910390a150565b600061095f611a3a565b6001546000540303905090565b600c5481565b61097a611980565b73ffffffffffffffffffffffffffffffffffffffff16610998610e48565b73ffffffffffffffffffffffffffffffffffffffff16146109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e590612ed1565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fa4884576a4a03f95ad8d62ebdb9129568b9637fe826ce9d0b3c57d422d9da9cc81604051610a5e91906128ec565b60405180910390a150565b610a74838383611a3f565b505050565b610a81611980565b73ffffffffffffffffffffffffffffffffffffffff16610a9f610e48565b73ffffffffffffffffffffffffffffffffffffffff1614610af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aec90612ed1565b60405180910390fd5b8181600b9190610b069291906125d8565b505050565b610b268383836040518060200160405280600081525061111a565b505050565b6000610b3682611932565b9050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b6b611980565b73ffffffffffffffffffffffffffffffffffffffff16610b89610e48565b73ffffffffffffffffffffffffffffffffffffffff1614610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690612ed1565b60405180910390fd5b6000600c5414610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b90612f3d565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b37217a4826040518263ffffffff1660e01b8152600401610c7f91906129af565b600060405180830381600087803b158015610c9957600080fd5b505af1158015610cad573d6000803e3d6000fd5b5050505050565b6000610cbf82611f30565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d32576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610da2611980565b73ffffffffffffffffffffffffffffffffffffffff16610dc0610e48565b73ffffffffffffffffffffffffffffffffffffffff1614610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90612ed1565b60405180910390fd5b610e2060006121bf565b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef990612fa9565b60405180910390fd5b610f0c8183612285565b5050565b606060038054610f1f90612e53565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4b90612e53565b8015610f985780601f10610f6d57610100808354040283529160200191610f98565b820191906000526020600020905b815481529060010190602001808311610f7b57829003601f168201915b5050505050905090565b610faa611980565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561100f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061101c611980565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110c9611980565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161110e9190612772565b60405180910390a35050565b611125848484611a3f565b6111448373ffffffffffffffffffffffffffffffffffffffff166118a5565b801561115957506111578484848461231a565b155b15611190576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d9061303b565b60405180910390fd5b6000600c541461126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290612f3d565b60405180910390fd5b80600c8190555050565b606061128082611932565b6112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b6906130a7565b60405180910390fd5b600080600c54146112d057826112f2565b7f00000000000000000000000000000000000000000000000000000000000000005b9050600b6112ff8261246b565b604051602001611310929190613197565b604051602081830303815290604052915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113e7611980565b73ffffffffffffffffffffffffffffffffffffffff16611405610e48565b73ffffffffffffffffffffffffffffffffffffffff161461145b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145290612ed1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c29061322d565b60405180910390fd5b6114d4816121bf565b50565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611544576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561157f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61158c60008683876125cc565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561175657506117558773ffffffffffffffffffffffffffffffffffffffff166118a5565b5b1561181c575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117cb600088848060010195508861231a565b611801576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561175c57826000541461181757600080fd5b611888565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561181d575b81600081905550505061189e60008683876125d2565b5050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161193d611a3a565b1115801561194c575060005482105b8015611979575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611a4a82611f30565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a71611980565b73ffffffffffffffffffffffffffffffffffffffff161480611aa45750611aa38260000151611a9e611980565b61134b565b5b80611ae95750611ab2611980565b73ffffffffffffffffffffffffffffffffffffffff16611ad1846106d7565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611b22576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b8b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611bf2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bff85858560016125cc565b611c0f6000848460000151611988565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ec057600054811015611ebf5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f2985858560016125d2565b5050505050565b611f3861265e565b600082905080611f46611a3a565b11158015611f55575060005481105b15612188576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161218657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461206a5780925050506121ba565b5b60011561218557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121805780925050506121ba565b61206b565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f0000000000000000000000000000000000000000000000000000000000000000816122af610955565b6122b9919061327c565b11156122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f19061331e565b60405180910390fd5b61231682826040518060200160405280600081525060016114d7565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612340611980565b8786866040518563ffffffff1660e01b81526004016123629493929190613393565b6020604051808303816000875af192505050801561239e57506040513d601f19601f8201168201806040525081019061239b91906133f4565b60015b612418573d80600081146123ce576040519150601f19603f3d011682016040523d82523d6000602084013e6123d3565b606091505b50600081511415612410576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156124b3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125c7565b600082905060005b600082146124e55780806124ce90613421565b915050600a826124de9190613499565b91506124bb565b60008167ffffffffffffffff81111561250157612500612c36565b5b6040519080825280601f01601f1916602001820160405280156125335781602001600182028036833780820191505090505b5090505b600085146125c05760018261254c91906134ca565b9150600a8561255b91906134fe565b6030612567919061327c565b60f81b81838151811061257d5761257c61352f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125b99190613499565b9450612537565b8093505050505b919050565b50505050565b50505050565b8280546125e490612e53565b90600052602060002090601f016020900481019282612606576000855561264d565b82601f1061261f57803560ff191683800117855561264d565b8280016001018555821561264d579182015b8281111561264c578235825591602001919060010190612631565b5b50905061265a91906126a1565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156126ba5760008160009055506001016126a2565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612707816126d2565b811461271257600080fd5b50565b600081359050612724816126fe565b92915050565b6000602082840312156127405761273f6126c8565b5b600061274e84828501612715565b91505092915050565b60008115159050919050565b61276c81612757565b82525050565b60006020820190506127876000830184612763565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127c75780820151818401526020810190506127ac565b838111156127d6576000848401525b50505050565b6000601f19601f8301169050919050565b60006127f88261278d565b6128028185612798565b93506128128185602086016127a9565b61281b816127dc565b840191505092915050565b6000602082019050818103600083015261284081846127ed565b905092915050565b6000819050919050565b61285b81612848565b811461286657600080fd5b50565b60008135905061287881612852565b92915050565b600060208284031215612894576128936126c8565b5b60006128a284828501612869565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128d6826128ab565b9050919050565b6128e6816128cb565b82525050565b600060208201905061290160008301846128dd565b92915050565b612910816128cb565b811461291b57600080fd5b50565b60008135905061292d81612907565b92915050565b6000806040838503121561294a576129496126c8565b5b60006129588582860161291e565b925050602061296985828601612869565b9150509250929050565b600060208284031215612989576129886126c8565b5b60006129978482850161291e565b91505092915050565b6129a981612848565b82525050565b60006020820190506129c460008301846129a0565b92915050565b6000806000606084860312156129e3576129e26126c8565b5b60006129f18682870161291e565b9350506020612a028682870161291e565b9250506040612a1386828701612869565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612a4257612a41612a1d565b5b8235905067ffffffffffffffff811115612a5f57612a5e612a22565b5b602083019150836001820283011115612a7b57612a7a612a27565b5b9250929050565b60008060208385031215612a9957612a986126c8565b5b600083013567ffffffffffffffff811115612ab757612ab66126cd565b5b612ac385828601612a2c565b92509250509250929050565b6000819050919050565b6000612af4612aef612aea846128ab565b612acf565b6128ab565b9050919050565b6000612b0682612ad9565b9050919050565b6000612b1882612afb565b9050919050565b612b2881612b0d565b82525050565b6000602082019050612b436000830184612b1f565b92915050565b6000612b5482612afb565b9050919050565b612b6481612b49565b82525050565b6000602082019050612b7f6000830184612b5b565b92915050565b60008060408385031215612b9c57612b9b6126c8565b5b6000612baa85828601612869565b9250506020612bbb8582860161291e565b9150509250929050565b612bce81612757565b8114612bd957600080fd5b50565b600081359050612beb81612bc5565b92915050565b60008060408385031215612c0857612c076126c8565b5b6000612c168582860161291e565b9250506020612c2785828601612bdc565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c6e826127dc565b810181811067ffffffffffffffff82111715612c8d57612c8c612c36565b5b80604052505050565b6000612ca06126be565b9050612cac8282612c65565b919050565b600067ffffffffffffffff821115612ccc57612ccb612c36565b5b612cd5826127dc565b9050602081019050919050565b82818337600083830152505050565b6000612d04612cff84612cb1565b612c96565b905082815260208101848484011115612d2057612d1f612c31565b5b612d2b848285612ce2565b509392505050565b600082601f830112612d4857612d47612a1d565b5b8135612d58848260208601612cf1565b91505092915050565b60008060008060808587031215612d7b57612d7a6126c8565b5b6000612d898782880161291e565b9450506020612d9a8782880161291e565b9350506040612dab87828801612869565b925050606085013567ffffffffffffffff811115612dcc57612dcb6126cd565b5b612dd887828801612d33565b91505092959194509250565b60008060408385031215612dfb57612dfa6126c8565b5b6000612e098582860161291e565b9250506020612e1a8582860161291e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e6b57607f821691505b60208210811415612e7f57612e7e612e24565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ebb602083612798565b9150612ec682612e85565b602082019050919050565b60006020820190508181036000830152612eea81612eae565b9050919050565b7f52657665616c20616c72656164792063616c6c65640000000000000000000000600082015250565b6000612f27601583612798565b9150612f3282612ef1565b602082019050919050565b60006020820190508181036000830152612f5681612f1a565b9050919050565b7f6f6e6c792073616c654d616e616765722063616e206d696e7400000000000000600082015250565b6000612f93601983612798565b9150612f9e82612f5d565b602082019050919050565b60006020820190508181036000830152612fc281612f86565b9050919050565b7f4f6e6c792074686520436865662052657665616c2050726f766964657220636160008201527f6e2072657665616c000000000000000000000000000000000000000000000000602082015250565b6000613025602883612798565b915061303082612fc9565b604082019050919050565b6000602082019050818103600083015261305481613018565b9050919050565b7f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b6000613091601183612798565b915061309c8261305b565b602082019050919050565b600060208201905081810360008301526130c081613084565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546130f481612e53565b6130fe81866130c7565b94506001821660008114613119576001811461312a5761315d565b60ff1983168652818601935061315d565b613133856130d2565b60005b8381101561315557815481890152600182019150602081019050613136565b838801955050505b50505092915050565b60006131718261278d565b61317b81856130c7565b935061318b8185602086016127a9565b80840191505092915050565b60006131a382856130e7565b91506131af8284613166565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613217602683612798565b9150613222826131bb565b604082019050919050565b600060208201905081810360008301526132468161320a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061328782612848565b915061329283612848565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132c7576132c661324d565b5b828201905092915050565b7f6d617820737570706c7920726561636865640000000000000000000000000000600082015250565b6000613308601283612798565b9150613313826132d2565b602082019050919050565b60006020820190508181036000830152613337816132fb565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006133658261333e565b61336f8185613349565b935061337f8185602086016127a9565b613388816127dc565b840191505092915050565b60006080820190506133a860008301876128dd565b6133b560208301866128dd565b6133c260408301856129a0565b81810360608301526133d4818461335a565b905095945050505050565b6000815190506133ee816126fe565b92915050565b60006020828403121561340a576134096126c8565b5b6000613418848285016133df565b91505092915050565b600061342c82612848565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561345f5761345e61324d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006134a482612848565b91506134af83612848565b9250826134bf576134be61346a565b5b828204905092915050565b60006134d582612848565b91506134e083612848565b9250828210156134f3576134f261324d565b5b828203905092915050565b600061350982612848565b915061351483612848565b9250826135245761352361346a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212208db689a146a9e5e8a5341fc522e70e764f4fd0cb0ede181253446ba0bcdb203264736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000012c0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000c1cb1c5b87ea0d307808473c092f192032ece30200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000b426967546f776e43686566000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000443484546000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569626d346d75737a6676716f76707866677361333237796575336b646e346234793734676e7371356f667633676e786c69696178652f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f9578063a22cb46511610097578063c87b56dd11610071578063c87b56dd146104c9578063d5abeb01146104f9578063e985e9c514610517578063f2fde38b14610547576101c4565b8063a22cb46514610475578063b88d4fde14610491578063c2ca0ac5146104ad576101c4565b8063746e60b5116100d3578063746e60b5146103ff5780638da5cb5b1461041d57806394bf804d1461043b57806395d89b4114610457576101c4565b80636352211e1461039557806370a08231146103c5578063715018a6146103f5576101c4565b806321330bc41161016657806342842e0e1161014057806342842e0e1461030f5780634f558e791461032b57806350f8099e1461035b5780635ef200f114610379576101c4565b806321330bc4146102bb57806323b872dd146102d757806330176e13146102f3576101c4565b8063095ea7b3116101a2578063095ea7b3146102475780630bd007341461026357806318160ddd1461027f5780632097ac3b1461029d576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de919061272a565b610563565b6040516101f09190612772565b60405180910390f35b610201610645565b60405161020e9190612826565b60405180910390f35b610231600480360381019061022c919061287e565b6106d7565b60405161023e91906128ec565b60405180910390f35b610261600480360381019061025c9190612933565b610753565b005b61027d60048036038101906102789190612973565b61085e565b005b610287610955565b60405161029491906129af565b60405180910390f35b6102a561096c565b6040516102b291906129af565b60405180910390f35b6102d560048036038101906102d09190612973565b610972565b005b6102f160048036038101906102ec91906129ca565b610a69565b005b61030d60048036038101906103089190612a82565b610a79565b005b610329600480360381019061032491906129ca565b610b0b565b005b6103456004803603810190610340919061287e565b610b2b565b6040516103529190612772565b60405180910390f35b610363610b3d565b6040516103709190612b2e565b60405180910390f35b610393600480360381019061038e919061287e565b610b63565b005b6103af60048036038101906103aa919061287e565b610cb4565b6040516103bc91906128ec565b60405180910390f35b6103df60048036038101906103da9190612973565b610cca565b6040516103ec91906129af565b60405180910390f35b6103fd610d9a565b005b610407610e22565b6040516104149190612b6a565b60405180910390f35b610425610e48565b60405161043291906128ec565b60405180910390f35b61045560048036038101906104509190612b85565b610e72565b005b61045f610f10565b60405161046c9190612826565b60405180910390f35b61048f600480360381019061048a9190612bf1565b610fa2565b005b6104ab60048036038101906104a69190612d61565b61111a565b005b6104c760048036038101906104c2919061287e565b611196565b005b6104e360048036038101906104de919061287e565b611275565b6040516104f09190612826565b60405180910390f35b610501611327565b60405161050e91906129af565b60405180910390f35b610531600480360381019061052c9190612de4565b61134b565b60405161053e9190612772565b60405180910390f35b610561600480360381019061055c9190612973565b6113df565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061062e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061063e575061063d826118c8565b5b9050919050565b60606002805461065490612e53565b80601f016020809104026020016040519081016040528092919081815260200182805461068090612e53565b80156106cd5780601f106106a2576101008083540402835291602001916106cd565b820191906000526020600020905b8154815290600101906020018083116106b057829003601f168201915b5050505050905090565b60006106e282611932565b610718576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061075e82610cb4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107c6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107e5611980565b73ffffffffffffffffffffffffffffffffffffffff1614158015610817575061081581610810611980565b61134b565b155b1561084e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610859838383611988565b505050565b610866611980565b73ffffffffffffffffffffffffffffffffffffffff16610884610e48565b73ffffffffffffffffffffffffffffffffffffffff16146108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d190612ed1565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f6ac4cf0c58a8856b014df7518078a430cab0f5a24a0b7f091a289736aa6697908160405161094a91906128ec565b60405180910390a150565b600061095f611a3a565b6001546000540303905090565b600c5481565b61097a611980565b73ffffffffffffffffffffffffffffffffffffffff16610998610e48565b73ffffffffffffffffffffffffffffffffffffffff16146109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e590612ed1565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fa4884576a4a03f95ad8d62ebdb9129568b9637fe826ce9d0b3c57d422d9da9cc81604051610a5e91906128ec565b60405180910390a150565b610a74838383611a3f565b505050565b610a81611980565b73ffffffffffffffffffffffffffffffffffffffff16610a9f610e48565b73ffffffffffffffffffffffffffffffffffffffff1614610af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aec90612ed1565b60405180910390fd5b8181600b9190610b069291906125d8565b505050565b610b268383836040518060200160405280600081525061111a565b505050565b6000610b3682611932565b9050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b6b611980565b73ffffffffffffffffffffffffffffffffffffffff16610b89610e48565b73ffffffffffffffffffffffffffffffffffffffff1614610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690612ed1565b60405180910390fd5b6000600c5414610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b90612f3d565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b37217a4826040518263ffffffff1660e01b8152600401610c7f91906129af565b600060405180830381600087803b158015610c9957600080fd5b505af1158015610cad573d6000803e3d6000fd5b5050505050565b6000610cbf82611f30565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d32576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610da2611980565b73ffffffffffffffffffffffffffffffffffffffff16610dc0610e48565b73ffffffffffffffffffffffffffffffffffffffff1614610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90612ed1565b60405180910390fd5b610e2060006121bf565b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef990612fa9565b60405180910390fd5b610f0c8183612285565b5050565b606060038054610f1f90612e53565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4b90612e53565b8015610f985780601f10610f6d57610100808354040283529160200191610f98565b820191906000526020600020905b815481529060010190602001808311610f7b57829003601f168201915b5050505050905090565b610faa611980565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561100f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061101c611980565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110c9611980565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161110e9190612772565b60405180910390a35050565b611125848484611a3f565b6111448373ffffffffffffffffffffffffffffffffffffffff166118a5565b801561115957506111578484848461231a565b155b15611190576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d9061303b565b60405180910390fd5b6000600c541461126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290612f3d565b60405180910390fd5b80600c8190555050565b606061128082611932565b6112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b6906130a7565b60405180910390fd5b600080600c54146112d057826112f2565b7f00000000000000000000000000000000000000000000000000000000000027105b9050600b6112ff8261246b565b604051602001611310929190613197565b604051602081830303815290604052915050919050565b7f000000000000000000000000000000000000000000000000000000000000271081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113e7611980565b73ffffffffffffffffffffffffffffffffffffffff16611405610e48565b73ffffffffffffffffffffffffffffffffffffffff161461145b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145290612ed1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c29061322d565b60405180910390fd5b6114d4816121bf565b50565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611544576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561157f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61158c60008683876125cc565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561175657506117558773ffffffffffffffffffffffffffffffffffffffff166118a5565b5b1561181c575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117cb600088848060010195508861231a565b611801576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561175c57826000541461181757600080fd5b611888565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561181d575b81600081905550505061189e60008683876125d2565b5050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161193d611a3a565b1115801561194c575060005482105b8015611979575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611a4a82611f30565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a71611980565b73ffffffffffffffffffffffffffffffffffffffff161480611aa45750611aa38260000151611a9e611980565b61134b565b5b80611ae95750611ab2611980565b73ffffffffffffffffffffffffffffffffffffffff16611ad1846106d7565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611b22576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b8b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611bf2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bff85858560016125cc565b611c0f6000848460000151611988565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ec057600054811015611ebf5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f2985858560016125d2565b5050505050565b611f3861265e565b600082905080611f46611a3a565b11158015611f55575060005481105b15612188576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161218657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461206a5780925050506121ba565b5b60011561218557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121805780925050506121ba565b61206b565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f0000000000000000000000000000000000000000000000000000000000002710816122af610955565b6122b9919061327c565b11156122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f19061331e565b60405180910390fd5b61231682826040518060200160405280600081525060016114d7565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612340611980565b8786866040518563ffffffff1660e01b81526004016123629493929190613393565b6020604051808303816000875af192505050801561239e57506040513d601f19601f8201168201806040525081019061239b91906133f4565b60015b612418573d80600081146123ce576040519150601f19603f3d011682016040523d82523d6000602084013e6123d3565b606091505b50600081511415612410576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156124b3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125c7565b600082905060005b600082146124e55780806124ce90613421565b915050600a826124de9190613499565b91506124bb565b60008167ffffffffffffffff81111561250157612500612c36565b5b6040519080825280601f01601f1916602001820160405280156125335781602001600182028036833780820191505090505b5090505b600085146125c05760018261254c91906134ca565b9150600a8561255b91906134fe565b6030612567919061327c565b60f81b81838151811061257d5761257c61352f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125b99190613499565b9450612537565b8093505050505b919050565b50505050565b50505050565b8280546125e490612e53565b90600052602060002090601f016020900481019282612606576000855561264d565b82601f1061261f57803560ff191683800117855561264d565b8280016001018555821561264d579182015b8281111561264c578235825591602001919060010190612631565b5b50905061265a91906126a1565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156126ba5760008160009055506001016126a2565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612707816126d2565b811461271257600080fd5b50565b600081359050612724816126fe565b92915050565b6000602082840312156127405761273f6126c8565b5b600061274e84828501612715565b91505092915050565b60008115159050919050565b61276c81612757565b82525050565b60006020820190506127876000830184612763565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127c75780820151818401526020810190506127ac565b838111156127d6576000848401525b50505050565b6000601f19601f8301169050919050565b60006127f88261278d565b6128028185612798565b93506128128185602086016127a9565b61281b816127dc565b840191505092915050565b6000602082019050818103600083015261284081846127ed565b905092915050565b6000819050919050565b61285b81612848565b811461286657600080fd5b50565b60008135905061287881612852565b92915050565b600060208284031215612894576128936126c8565b5b60006128a284828501612869565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128d6826128ab565b9050919050565b6128e6816128cb565b82525050565b600060208201905061290160008301846128dd565b92915050565b612910816128cb565b811461291b57600080fd5b50565b60008135905061292d81612907565b92915050565b6000806040838503121561294a576129496126c8565b5b60006129588582860161291e565b925050602061296985828601612869565b9150509250929050565b600060208284031215612989576129886126c8565b5b60006129978482850161291e565b91505092915050565b6129a981612848565b82525050565b60006020820190506129c460008301846129a0565b92915050565b6000806000606084860312156129e3576129e26126c8565b5b60006129f18682870161291e565b9350506020612a028682870161291e565b9250506040612a1386828701612869565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612a4257612a41612a1d565b5b8235905067ffffffffffffffff811115612a5f57612a5e612a22565b5b602083019150836001820283011115612a7b57612a7a612a27565b5b9250929050565b60008060208385031215612a9957612a986126c8565b5b600083013567ffffffffffffffff811115612ab757612ab66126cd565b5b612ac385828601612a2c565b92509250509250929050565b6000819050919050565b6000612af4612aef612aea846128ab565b612acf565b6128ab565b9050919050565b6000612b0682612ad9565b9050919050565b6000612b1882612afb565b9050919050565b612b2881612b0d565b82525050565b6000602082019050612b436000830184612b1f565b92915050565b6000612b5482612afb565b9050919050565b612b6481612b49565b82525050565b6000602082019050612b7f6000830184612b5b565b92915050565b60008060408385031215612b9c57612b9b6126c8565b5b6000612baa85828601612869565b9250506020612bbb8582860161291e565b9150509250929050565b612bce81612757565b8114612bd957600080fd5b50565b600081359050612beb81612bc5565b92915050565b60008060408385031215612c0857612c076126c8565b5b6000612c168582860161291e565b9250506020612c2785828601612bdc565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c6e826127dc565b810181811067ffffffffffffffff82111715612c8d57612c8c612c36565b5b80604052505050565b6000612ca06126be565b9050612cac8282612c65565b919050565b600067ffffffffffffffff821115612ccc57612ccb612c36565b5b612cd5826127dc565b9050602081019050919050565b82818337600083830152505050565b6000612d04612cff84612cb1565b612c96565b905082815260208101848484011115612d2057612d1f612c31565b5b612d2b848285612ce2565b509392505050565b600082601f830112612d4857612d47612a1d565b5b8135612d58848260208601612cf1565b91505092915050565b60008060008060808587031215612d7b57612d7a6126c8565b5b6000612d898782880161291e565b9450506020612d9a8782880161291e565b9350506040612dab87828801612869565b925050606085013567ffffffffffffffff811115612dcc57612dcb6126cd565b5b612dd887828801612d33565b91505092959194509250565b60008060408385031215612dfb57612dfa6126c8565b5b6000612e098582860161291e565b9250506020612e1a8582860161291e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e6b57607f821691505b60208210811415612e7f57612e7e612e24565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ebb602083612798565b9150612ec682612e85565b602082019050919050565b60006020820190508181036000830152612eea81612eae565b9050919050565b7f52657665616c20616c72656164792063616c6c65640000000000000000000000600082015250565b6000612f27601583612798565b9150612f3282612ef1565b602082019050919050565b60006020820190508181036000830152612f5681612f1a565b9050919050565b7f6f6e6c792073616c654d616e616765722063616e206d696e7400000000000000600082015250565b6000612f93601983612798565b9150612f9e82612f5d565b602082019050919050565b60006020820190508181036000830152612fc281612f86565b9050919050565b7f4f6e6c792074686520436865662052657665616c2050726f766964657220636160008201527f6e2072657665616c000000000000000000000000000000000000000000000000602082015250565b6000613025602883612798565b915061303082612fc9565b604082019050919050565b6000602082019050818103600083015261305481613018565b9050919050565b7f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b6000613091601183612798565b915061309c8261305b565b602082019050919050565b600060208201905081810360008301526130c081613084565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546130f481612e53565b6130fe81866130c7565b94506001821660008114613119576001811461312a5761315d565b60ff1983168652818601935061315d565b613133856130d2565b60005b8381101561315557815481890152600182019150602081019050613136565b838801955050505b50505092915050565b60006131718261278d565b61317b81856130c7565b935061318b8185602086016127a9565b80840191505092915050565b60006131a382856130e7565b91506131af8284613166565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613217602683612798565b9150613222826131bb565b604082019050919050565b600060208201905081810360008301526132468161320a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061328782612848565b915061329283612848565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132c7576132c661324d565b5b828201905092915050565b7f6d617820737570706c7920726561636865640000000000000000000000000000600082015250565b6000613308601283612798565b9150613313826132d2565b602082019050919050565b60006020820190508181036000830152613337816132fb565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006133658261333e565b61336f8185613349565b935061337f8185602086016127a9565b613388816127dc565b840191505092915050565b60006080820190506133a860008301876128dd565b6133b560208301866128dd565b6133c260408301856129a0565b81810360608301526133d4818461335a565b905095945050505050565b6000815190506133ee816126fe565b92915050565b60006020828403121561340a576134096126c8565b5b6000613418848285016133df565b91505092915050565b600061342c82612848565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561345f5761345e61324d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006134a482612848565b91506134af83612848565b9250826134bf576134be61346a565b5b828204905092915050565b60006134d582612848565b91506134e083612848565b9250828210156134f3576134f261324d565b5b828203905092915050565b600061350982612848565b915061351483612848565b9250826135245761352361346a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212208db689a146a9e5e8a5341fc522e70e764f4fd0cb0ede181253446ba0bcdb203264736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000012c0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000c1cb1c5b87ea0d307808473c092f192032ece30200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000b426967546f776e43686566000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000443484546000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569626d346d75737a6676716f76707866677361333237796575336b646e346234793734676e7371356f667633676e786c69696178652f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _reserved (uint256): 300
Arg [1] : _maxSupply (uint256): 10000
Arg [2] : treasury (address): 0xC1cb1C5b87Ea0d307808473C092F192032eCe302
Arg [3] : name (string): BigTownChef
Arg [4] : symbol (string): CHEF
Arg [5] : baseTokenURI (string): ipfs://bafybeibm4muszfvqovpxfgsa327yeu3kdn4b4y74gnsq5ofv3gnxliiaxe/
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000012c
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [2] : 000000000000000000000000c1cb1c5b87ea0d307808473c092f192032ece302
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [7] : 426967546f776e43686566000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 4348454600000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [11] : 697066733a2f2f62616679626569626d346d75737a6676716f76707866677361
Arg [12] : 333237796575336b646e346234793734676e7371356f667633676e786c696961
Arg [13] : 78652f0000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.