ERC-721
Overview
Max Total Supply
1,038 FFW
Holders
206
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 FFWLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FastFoodTraders
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-05 */ // File: contracts/library/IMintableNft.sol interface IMintableNft { function mint(address to) external; } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed 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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @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`. * * 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; /** * @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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @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) { _requireMinted(tokenId); 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 overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _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 { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @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. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @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 { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a 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 _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: contracts/library/NftBase.sol contract NftBase is ERC721, Ownable, IMintableNft { mapping(address => bool) public factories; uint256 public maxTotalSupply; uint256 public totalMintedCount; string public baseUri; uint256 public totalSupply; constructor( uint256 maxTotalSupply_, string memory name_, string memory symbol_ ) ERC721(name_, symbol_) { maxTotalSupply = maxTotalSupply_; } modifier onlyFactory() { require(factories[msg.sender], "only for factories"); _; } function setFactory(address acc, bool isFactory) external onlyOwner { factories[acc] = isFactory; } function mint(address to) external override onlyFactory { require(totalSupply <= maxTotalSupply, "max tokens minted"); _mint(to, ++totalMintedCount); } function _baseURI() internal view override returns (string memory) { return baseUri; } function setBaseUri(string memory newBaseUri) external onlyOwner { baseUri = newBaseUri; } function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { if (from == address(0) && to != address(0)) ++totalSupply; if (from != address(0) && to == address(0)) --totalSupply; } } // File: contracts/FastFoodTrader/FastFoodTraders.sol contract FastFoodTraders is NftBase { mapping(address => bool) public killers; constructor(uint256 maxTotalSupply) NftBase(maxTotalSupply, "Fast Food Traders", "FFW") {} modifier onlyKiller() { require(killers[msg.sender], 'only for killers'); _; } function setKiller(address acc, bool isKiller) external onlyOwner { killers[acc] = isKiller; } function kill(uint256 tokenId) external onlyKiller { _burn(tokenId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxTotalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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":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":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"factories","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"kill","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"killers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"acc","type":"address"},{"internalType":"bool","name":"isFactory","type":"bool"}],"name":"setFactory","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"acc","type":"address"},{"internalType":"bool","name":"isKiller","type":"bool"}],"name":"setKiller","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":"totalMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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
60806040523480156200001157600080fd5b5060405162001c0038038062001c008339810160408190526200003491620001c8565b60408051808201825260118152704661737420466f6f64205472616465727360781b60208083019182528351808501909452600384526246465760e81b908401528151849391839183916200008d916000919062000122565b508051620000a390600190602084019062000122565b505050620000c0620000ba620000cc60201b60201c565b620000d0565b5050600855506200021f565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013090620001e2565b90600052602060002090601f0160209004810192826200015457600085556200019f565b82601f106200016f57805160ff19168380011785556200019f565b828001600101855582156200019f579182015b828111156200019f57825182559160200191906001019062000182565b50620001ad929150620001b1565b5090565b5b80821115620001ad5760008155600101620001b2565b600060208284031215620001db57600080fd5b5051919050565b600181811c90821680620001f757607f821691505b602082108114156200021957634e487b7160e01b600052602260045260246000fd5b50919050565b6119d1806200022f6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063a22cb46511610097578063d29a002511610071578063d29a002514610371578063e985e9c514610384578063f2fde38b146103c0578063fab52689146103d357600080fd5b8063a22cb46514610338578063b88d4fde1461034b578063c87b56dd1461035e57600080fd5b806395d89b41116100d357806395d89b41146102f257806396a687f7146102fa5780639abc83201461031d578063a0bcfc7f1461032557600080fd5b8063715018a6146102c65780638da5cb5b146102ce57806390b9df9c146102df57600080fd5b806326ba27e3116101665780636352211e116101405780636352211e1461027a5780636a6278421461028d57806370a08231146102a057806371013c10146102b357600080fd5b806326ba27e3146102555780632ab4d0521461025e57806342842e0e1461026757600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063081812fc146101eb578063095ea7b31461021657806318160ddd1461022b57806323b872dd14610242575b600080fd5b6101c16101bc36600461146e565b6103f6565b60405190151581526020015b60405180910390f35b6101de610448565b6040516101cd91906114e3565b6101fe6101f93660046114f6565b6104da565b6040516001600160a01b0390911681526020016101cd565b61022961022436600461152b565b610501565b005b610234600b5481565b6040519081526020016101cd565b610229610250366004611555565b61061c565b61023460095481565b61023460085481565b610229610275366004611555565b61064d565b6101fe6102883660046114f6565b610668565b61022961029b366004611591565b6106c8565b6102346102ae366004611591565b610784565b6102296102c13660046115ac565b61080a565b61022961083d565b6006546001600160a01b03166101fe565b6102296102ed3660046115ac565b610851565b6101de610884565b6101c1610308366004611591565b600c6020526000908152604090205460ff1681565b6101de610893565b610229610333366004611674565b610921565b6102296103463660046115ac565b610940565b6102296103593660046116bd565b61094b565b6101de61036c3660046114f6565b610983565b61022961037f3660046114f6565b6109ea565b6101c1610392366004611739565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102296103ce366004611591565b610a45565b6101c16103e1366004611591565b60076020526000908152604090205460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061042757506001600160e01b03198216635b5e139f60e01b145b8061044257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546104579061176c565b80601f01602080910402602001604051908101604052809291908181526020018280546104839061176c565b80156104d05780601f106104a5576101008083540402835291602001916104d0565b820191906000526020600020905b8154815290600101906020018083116104b357829003601f168201915b5050505050905090565b60006104e582610abb565b506000908152600460205260409020546001600160a01b031690565b600061050c82610668565b9050806001600160a01b0316836001600160a01b0316141561057f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061059b575061059b8133610392565b61060d5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610576565b6106178383610b1a565b505050565b6106263382610b88565b6106425760405162461bcd60e51b8152600401610576906117a7565b610617838383610c07565b6106178383836040518060200160405280600081525061094b565b6000818152600260205260408120546001600160a01b0316806104425760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610576565b3360009081526007602052604090205460ff1661071c5760405162461bcd60e51b81526020600482015260126024820152716f6e6c7920666f7220666163746f7269657360701b6044820152606401610576565b600854600b5411156107645760405162461bcd60e51b81526020600482015260116024820152701b585e081d1bdad95b9cc81b5a5b9d1959607a1b6044820152606401610576565b610781816009600081546107779061180b565b9182905550610da9565b50565b60006001600160a01b0382166107ee5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610576565b506001600160a01b031660009081526003602052604090205490565b610812610ef3565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b610845610ef3565b61084f6000610f4d565b565b610859610ef3565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6060600180546104579061176c565b600a80546108a09061176c565b80601f01602080910402602001604051908101604052809291908181526020018280546108cc9061176c565b80156109195780601f106108ee57610100808354040283529160200191610919565b820191906000526020600020905b8154815290600101906020018083116108fc57829003601f168201915b505050505081565b610929610ef3565b805161093c90600a9060208401906113bf565b5050565b61093c338383610f9f565b6109553383610b88565b6109715760405162461bcd60e51b8152600401610576906117a7565b61097d8484848461106e565b50505050565b606061098e82610abb565b60006109986110a1565b905060008151116109b857604051806020016040528060008152506109e3565b806109c2846110b0565b6040516020016109d3929190611826565b6040516020818303038152906040525b9392505050565b336000908152600c602052604090205460ff16610a3c5760405162461bcd60e51b815260206004820152601060248201526f6f6e6c7920666f72206b696c6c65727360801b6044820152606401610576565b610781816111ae565b610a4d610ef3565b6001600160a01b038116610ab25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610576565b61078181610f4d565b6000818152600260205260409020546001600160a01b03166107815760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610576565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610b4f82610668565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610b9483610668565b9050806001600160a01b0316846001600160a01b03161480610bdb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610bff5750836001600160a01b0316610bf4846104da565b6001600160a01b0316145b949350505050565b826001600160a01b0316610c1a82610668565b6001600160a01b031614610c7e5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610576565b6001600160a01b038216610ce05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610576565b610ceb600082610b1a565b6001600160a01b0383166000908152600360205260408120805460019290610d14908490611855565b90915550506001600160a01b0382166000908152600360205260408120805460019290610d4290849061186c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a461061783838361124d565b6001600160a01b038216610dff5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610576565b6000818152600260205260409020546001600160a01b031615610e645760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610576565b6001600160a01b0382166000908152600360205260408120805460019290610e8d90849061186c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461093c6000838361124d565b6006546001600160a01b0316331461084f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156110015760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610576565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611079848484610c07565b611085848484846112c1565b61097d5760405162461bcd60e51b815260040161057690611884565b6060600a80546104579061176c565b6060816110d45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156110fe57806110e88161180b565b91506110f79050600a836118ec565b91506110d8565b60008167ffffffffffffffff811115611119576111196115e8565b6040519080825280601f01601f191660200182016040528015611143576020820181803683370190505b5090505b8415610bff57611158600183611855565b9150611165600a86611900565b61117090603061186c565b60f81b81838151811061118557611185611914565b60200101906001600160f81b031916908160001a9053506111a7600a866118ec565b9450611147565b60006111b982610668565b90506111c6600083610b1a565b6001600160a01b03811660009081526003602052604081208054600192906111ef908490611855565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a461093c816000845b6001600160a01b03831615801561126c57506001600160a01b03821615155b1561128557600b600081546112809061180b565b909155505b6001600160a01b038316158015906112a457506001600160a01b038216155b1561061757600b600081546112b89061192a565b90915550505050565b60006001600160a01b0384163b156113b457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611305903390899088908890600401611941565b6020604051808303816000875af1925050508015611340575060408051601f3d908101601f1916820190925261133d9181019061197e565b60015b61139a573d80801561136e576040519150601f19603f3d011682016040523d82523d6000602084013e611373565b606091505b5080516113925760405162461bcd60e51b815260040161057690611884565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610bff565b506001949350505050565b8280546113cb9061176c565b90600052602060002090601f0160209004810192826113ed5760008555611433565b82601f1061140657805160ff1916838001178555611433565b82800160010185558215611433579182015b82811115611433578251825591602001919060010190611418565b5061143f929150611443565b5090565b5b8082111561143f5760008155600101611444565b6001600160e01b03198116811461078157600080fd5b60006020828403121561148057600080fd5b81356109e381611458565b60005b838110156114a657818101518382015260200161148e565b8381111561097d5750506000910152565b600081518084526114cf81602086016020860161148b565b601f01601f19169290920160200192915050565b6020815260006109e360208301846114b7565b60006020828403121561150857600080fd5b5035919050565b80356001600160a01b038116811461152657600080fd5b919050565b6000806040838503121561153e57600080fd5b6115478361150f565b946020939093013593505050565b60008060006060848603121561156a57600080fd5b6115738461150f565b92506115816020850161150f565b9150604084013590509250925092565b6000602082840312156115a357600080fd5b6109e38261150f565b600080604083850312156115bf57600080fd5b6115c88361150f565b9150602083013580151581146115dd57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611619576116196115e8565b604051601f8501601f19908116603f01168101908282118183101715611641576116416115e8565b8160405280935085815286868601111561165a57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561168657600080fd5b813567ffffffffffffffff81111561169d57600080fd5b8201601f810184136116ae57600080fd5b610bff848235602084016115fe565b600080600080608085870312156116d357600080fd5b6116dc8561150f565b93506116ea6020860161150f565b925060408501359150606085013567ffffffffffffffff81111561170d57600080fd5b8501601f8101871361171e57600080fd5b61172d878235602084016115fe565b91505092959194509250565b6000806040838503121561174c57600080fd5b6117558361150f565b91506117636020840161150f565b90509250929050565b600181811c9082168061178057607f821691505b602082108114156117a157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600060001982141561181f5761181f6117f5565b5060010190565b6000835161183881846020880161148b565b83519083019061184c81836020880161148b565b01949350505050565b600082821015611867576118676117f5565b500390565b6000821982111561187f5761187f6117f5565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826118fb576118fb6118d6565b500490565b60008261190f5761190f6118d6565b500690565b634e487b7160e01b600052603260045260246000fd5b600081611939576119396117f5565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611974908301846114b7565b9695505050505050565b60006020828403121561199057600080fd5b81516109e38161145856fea26469706673582212208a82201513c3fb3377f512b466e9448744041b75e477601da5ea91dbf85716d764736f6c634300080a00330000000000000000000000000000000000000000000000000000000000000d05
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063a22cb46511610097578063d29a002511610071578063d29a002514610371578063e985e9c514610384578063f2fde38b146103c0578063fab52689146103d357600080fd5b8063a22cb46514610338578063b88d4fde1461034b578063c87b56dd1461035e57600080fd5b806395d89b41116100d357806395d89b41146102f257806396a687f7146102fa5780639abc83201461031d578063a0bcfc7f1461032557600080fd5b8063715018a6146102c65780638da5cb5b146102ce57806390b9df9c146102df57600080fd5b806326ba27e3116101665780636352211e116101405780636352211e1461027a5780636a6278421461028d57806370a08231146102a057806371013c10146102b357600080fd5b806326ba27e3146102555780632ab4d0521461025e57806342842e0e1461026757600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063081812fc146101eb578063095ea7b31461021657806318160ddd1461022b57806323b872dd14610242575b600080fd5b6101c16101bc36600461146e565b6103f6565b60405190151581526020015b60405180910390f35b6101de610448565b6040516101cd91906114e3565b6101fe6101f93660046114f6565b6104da565b6040516001600160a01b0390911681526020016101cd565b61022961022436600461152b565b610501565b005b610234600b5481565b6040519081526020016101cd565b610229610250366004611555565b61061c565b61023460095481565b61023460085481565b610229610275366004611555565b61064d565b6101fe6102883660046114f6565b610668565b61022961029b366004611591565b6106c8565b6102346102ae366004611591565b610784565b6102296102c13660046115ac565b61080a565b61022961083d565b6006546001600160a01b03166101fe565b6102296102ed3660046115ac565b610851565b6101de610884565b6101c1610308366004611591565b600c6020526000908152604090205460ff1681565b6101de610893565b610229610333366004611674565b610921565b6102296103463660046115ac565b610940565b6102296103593660046116bd565b61094b565b6101de61036c3660046114f6565b610983565b61022961037f3660046114f6565b6109ea565b6101c1610392366004611739565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102296103ce366004611591565b610a45565b6101c16103e1366004611591565b60076020526000908152604090205460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061042757506001600160e01b03198216635b5e139f60e01b145b8061044257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546104579061176c565b80601f01602080910402602001604051908101604052809291908181526020018280546104839061176c565b80156104d05780601f106104a5576101008083540402835291602001916104d0565b820191906000526020600020905b8154815290600101906020018083116104b357829003601f168201915b5050505050905090565b60006104e582610abb565b506000908152600460205260409020546001600160a01b031690565b600061050c82610668565b9050806001600160a01b0316836001600160a01b0316141561057f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061059b575061059b8133610392565b61060d5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610576565b6106178383610b1a565b505050565b6106263382610b88565b6106425760405162461bcd60e51b8152600401610576906117a7565b610617838383610c07565b6106178383836040518060200160405280600081525061094b565b6000818152600260205260408120546001600160a01b0316806104425760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610576565b3360009081526007602052604090205460ff1661071c5760405162461bcd60e51b81526020600482015260126024820152716f6e6c7920666f7220666163746f7269657360701b6044820152606401610576565b600854600b5411156107645760405162461bcd60e51b81526020600482015260116024820152701b585e081d1bdad95b9cc81b5a5b9d1959607a1b6044820152606401610576565b610781816009600081546107779061180b565b9182905550610da9565b50565b60006001600160a01b0382166107ee5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610576565b506001600160a01b031660009081526003602052604090205490565b610812610ef3565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b610845610ef3565b61084f6000610f4d565b565b610859610ef3565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6060600180546104579061176c565b600a80546108a09061176c565b80601f01602080910402602001604051908101604052809291908181526020018280546108cc9061176c565b80156109195780601f106108ee57610100808354040283529160200191610919565b820191906000526020600020905b8154815290600101906020018083116108fc57829003601f168201915b505050505081565b610929610ef3565b805161093c90600a9060208401906113bf565b5050565b61093c338383610f9f565b6109553383610b88565b6109715760405162461bcd60e51b8152600401610576906117a7565b61097d8484848461106e565b50505050565b606061098e82610abb565b60006109986110a1565b905060008151116109b857604051806020016040528060008152506109e3565b806109c2846110b0565b6040516020016109d3929190611826565b6040516020818303038152906040525b9392505050565b336000908152600c602052604090205460ff16610a3c5760405162461bcd60e51b815260206004820152601060248201526f6f6e6c7920666f72206b696c6c65727360801b6044820152606401610576565b610781816111ae565b610a4d610ef3565b6001600160a01b038116610ab25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610576565b61078181610f4d565b6000818152600260205260409020546001600160a01b03166107815760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610576565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610b4f82610668565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610b9483610668565b9050806001600160a01b0316846001600160a01b03161480610bdb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610bff5750836001600160a01b0316610bf4846104da565b6001600160a01b0316145b949350505050565b826001600160a01b0316610c1a82610668565b6001600160a01b031614610c7e5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610576565b6001600160a01b038216610ce05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610576565b610ceb600082610b1a565b6001600160a01b0383166000908152600360205260408120805460019290610d14908490611855565b90915550506001600160a01b0382166000908152600360205260408120805460019290610d4290849061186c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a461061783838361124d565b6001600160a01b038216610dff5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610576565b6000818152600260205260409020546001600160a01b031615610e645760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610576565b6001600160a01b0382166000908152600360205260408120805460019290610e8d90849061186c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461093c6000838361124d565b6006546001600160a01b0316331461084f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156110015760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610576565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611079848484610c07565b611085848484846112c1565b61097d5760405162461bcd60e51b815260040161057690611884565b6060600a80546104579061176c565b6060816110d45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156110fe57806110e88161180b565b91506110f79050600a836118ec565b91506110d8565b60008167ffffffffffffffff811115611119576111196115e8565b6040519080825280601f01601f191660200182016040528015611143576020820181803683370190505b5090505b8415610bff57611158600183611855565b9150611165600a86611900565b61117090603061186c565b60f81b81838151811061118557611185611914565b60200101906001600160f81b031916908160001a9053506111a7600a866118ec565b9450611147565b60006111b982610668565b90506111c6600083610b1a565b6001600160a01b03811660009081526003602052604081208054600192906111ef908490611855565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a461093c816000845b6001600160a01b03831615801561126c57506001600160a01b03821615155b1561128557600b600081546112809061180b565b909155505b6001600160a01b038316158015906112a457506001600160a01b038216155b1561061757600b600081546112b89061192a565b90915550505050565b60006001600160a01b0384163b156113b457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611305903390899088908890600401611941565b6020604051808303816000875af1925050508015611340575060408051601f3d908101601f1916820190925261133d9181019061197e565b60015b61139a573d80801561136e576040519150601f19603f3d011682016040523d82523d6000602084013e611373565b606091505b5080516113925760405162461bcd60e51b815260040161057690611884565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610bff565b506001949350505050565b8280546113cb9061176c565b90600052602060002090601f0160209004810192826113ed5760008555611433565b82601f1061140657805160ff1916838001178555611433565b82800160010185558215611433579182015b82811115611433578251825591602001919060010190611418565b5061143f929150611443565b5090565b5b8082111561143f5760008155600101611444565b6001600160e01b03198116811461078157600080fd5b60006020828403121561148057600080fd5b81356109e381611458565b60005b838110156114a657818101518382015260200161148e565b8381111561097d5750506000910152565b600081518084526114cf81602086016020860161148b565b601f01601f19169290920160200192915050565b6020815260006109e360208301846114b7565b60006020828403121561150857600080fd5b5035919050565b80356001600160a01b038116811461152657600080fd5b919050565b6000806040838503121561153e57600080fd5b6115478361150f565b946020939093013593505050565b60008060006060848603121561156a57600080fd5b6115738461150f565b92506115816020850161150f565b9150604084013590509250925092565b6000602082840312156115a357600080fd5b6109e38261150f565b600080604083850312156115bf57600080fd5b6115c88361150f565b9150602083013580151581146115dd57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611619576116196115e8565b604051601f8501601f19908116603f01168101908282118183101715611641576116416115e8565b8160405280935085815286868601111561165a57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561168657600080fd5b813567ffffffffffffffff81111561169d57600080fd5b8201601f810184136116ae57600080fd5b610bff848235602084016115fe565b600080600080608085870312156116d357600080fd5b6116dc8561150f565b93506116ea6020860161150f565b925060408501359150606085013567ffffffffffffffff81111561170d57600080fd5b8501601f8101871361171e57600080fd5b61172d878235602084016115fe565b91505092959194509250565b6000806040838503121561174c57600080fd5b6117558361150f565b91506117636020840161150f565b90509250929050565b600181811c9082168061178057607f821691505b602082108114156117a157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600060001982141561181f5761181f6117f5565b5060010190565b6000835161183881846020880161148b565b83519083019061184c81836020880161148b565b01949350505050565b600082821015611867576118676117f5565b500390565b6000821982111561187f5761187f6117f5565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826118fb576118fb6118d6565b500490565b60008261190f5761190f6118d6565b500690565b634e487b7160e01b600052603260045260246000fd5b600081611939576119396117f5565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611974908301846114b7565b9695505050505050565b60006020828403121561199057600080fd5b81516109e38161145856fea26469706673582212208a82201513c3fb3377f512b466e9448744041b75e477601da5ea91dbf85716d764736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000d05
-----Decoded View---------------
Arg [0] : maxTotalSupply (uint256): 3333
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000d05
Deployed Bytecode Sourcemap
39508:515:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24856:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24856:305:0;;;;;;;;25783:100;;;:::i;:::-;;;;;;;:::i;27296:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;27296:171:0;1528:203:1;26813:417:0;;;;;;:::i;:::-;;:::i;:::-;;38295:26;;;;;;;;;2319:25:1;;;2307:2;2292:18;38295:26:0;2173:177:1;27996:336:0;;;;;;:::i;:::-;;:::i;38229:31::-;;;;;;38193:29;;;;;;28403:185;;;;;;:::i;:::-;;:::i;25494:222::-;;;;;;:::i;:::-;;:::i;38762:174::-;;;;;;:::i;:::-;;:::i;25225:207::-;;;;;;:::i;:::-;;:::i;38641:113::-;;;;;;:::i;:::-;;:::i;5392:103::-;;;:::i;4744:87::-;4817:6;;-1:-1:-1;;;;;4817:6:0;4744:87;;39820:108;;;;;;:::i;:::-;;:::i;25952:104::-;;;:::i;39551:39::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;38267:21;;;:::i;39052:104::-;;;;;;:::i;:::-;;:::i;27539:155::-;;;;;;:::i;:::-;;:::i;28659:323::-;;;;;;:::i;:::-;;:::i;26127:281::-;;;;;;:::i;:::-;;:::i;39936:84::-;;;;;;:::i;:::-;;:::i;27765:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27886:25:0;;;27862:4;27886:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27765:164;5650:201;;;;;;:::i;:::-;;:::i;38145:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;24856:305;24958:4;-1:-1:-1;;;;;;24995:40:0;;-1:-1:-1;;;24995:40:0;;:105;;-1:-1:-1;;;;;;;25052:48:0;;-1:-1:-1;;;25052:48:0;24995:105;:158;;;-1:-1:-1;;;;;;;;;;17707:40:0;;;25117:36;24975:178;24856:305;-1:-1:-1;;24856:305:0:o;25783:100::-;25837:13;25870:5;25863:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25783:100;:::o;27296:171::-;27372:7;27392:23;27407:7;27392:14;:23::i;:::-;-1:-1:-1;27435:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27435:24:0;;27296:171::o;26813:417::-;26894:13;26910:23;26925:7;26910:14;:23::i;:::-;26894:39;;26958:5;-1:-1:-1;;;;;26952:11:0;:2;-1:-1:-1;;;;;26952:11:0;;;26944:57;;;;-1:-1:-1;;;26944:57:0;;5980:2:1;26944:57:0;;;5962:21:1;6019:2;5999:18;;;5992:30;6058:34;6038:18;;;6031:62;-1:-1:-1;;;6109:18:1;;;6102:31;6150:19;;26944:57:0;;;;;;;;;3375:10;-1:-1:-1;;;;;27036:21:0;;;;:62;;-1:-1:-1;27061:37:0;27078:5;3375:10;27765:164;:::i;27061:37::-;27014:174;;;;-1:-1:-1;;;27014:174:0;;6382:2:1;27014:174:0;;;6364:21:1;6421:2;6401:18;;;6394:30;6460:34;6440:18;;;6433:62;6531:32;6511:18;;;6504:60;6581:19;;27014:174:0;6180:426:1;27014:174:0;27201:21;27210:2;27214:7;27201:8;:21::i;:::-;26883:347;26813:417;;:::o;27996:336::-;28191:41;3375:10;28224:7;28191:18;:41::i;:::-;28183:100;;;;-1:-1:-1;;;28183:100:0;;;;;;;:::i;:::-;28296:28;28306:4;28312:2;28316:7;28296:9;:28::i;28403:185::-;28541:39;28558:4;28564:2;28568:7;28541:39;;;;;;;;;;;;:16;:39::i;25494:222::-;25566:7;25602:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25602:16:0;25637:19;25629:56;;;;-1:-1:-1;;;25629:56:0;;7228:2:1;25629:56:0;;;7210:21:1;7267:2;7247:18;;;7240:30;-1:-1:-1;;;7286:18:1;;;7279:54;7350:18;;25629:56:0;7026:348:1;38762:174:0;38579:10;38569:21;;;;:9;:21;;;;;;;;38561:52;;;;-1:-1:-1;;;38561:52:0;;7581:2:1;38561:52:0;;;7563:21:1;7620:2;7600:18;;;7593:30;-1:-1:-1;;;7639:18:1;;;7632:48;7697:18;;38561:52:0;7379:342:1;38561:52:0;38852:14:::1;;38837:11;;:29;;38829:59;;;::::0;-1:-1:-1;;;38829:59:0;;7928:2:1;38829:59:0::1;::::0;::::1;7910:21:1::0;7967:2;7947:18;;;7940:30;-1:-1:-1;;;7986:18:1;;;7979:47;8043:18;;38829:59:0::1;7726:341:1::0;38829:59:0::1;38899:29;38905:2;38911:16;;38909:18;;;;;:::i;:::-;::::0;;;;-1:-1:-1;38899:5:0::1;:29::i;:::-;38762:174:::0;:::o;25225:207::-;25297:7;-1:-1:-1;;;;;25325:19:0;;25317:73;;;;-1:-1:-1;;;25317:73:0;;8546:2:1;25317:73:0;;;8528:21:1;8585:2;8565:18;;;8558:30;8624:34;8604:18;;;8597:62;-1:-1:-1;;;8675:18:1;;;8668:39;8724:19;;25317:73:0;8344:405:1;25317:73:0;-1:-1:-1;;;;;;25408:16:0;;;;;:9;:16;;;;;;;25225:207::o;38641:113::-;4630:13;:11;:13::i;:::-;-1:-1:-1;;;;;38720:14:0;;;::::1;;::::0;;;:9:::1;:14;::::0;;;;:26;;-1:-1:-1;;38720:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38641:113::o;5392:103::-;4630:13;:11;:13::i;:::-;5457:30:::1;5484:1;5457:18;:30::i;:::-;5392:103::o:0;39820:108::-;4630:13;:11;:13::i;:::-;-1:-1:-1;;;;;39897:12:0;;;::::1;;::::0;;;:7:::1;:12;::::0;;;;:23;;-1:-1:-1;;39897:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39820:108::o;25952:104::-;26008:13;26041:7;26034:14;;;;;:::i;38267:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39052:104::-;4630:13;:11;:13::i;:::-;39128:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;39052:104:::0;:::o;27539:155::-;27634:52;3375:10;27667:8;27677;27634:18;:52::i;28659:323::-;28833:41;3375:10;28866:7;28833:18;:41::i;:::-;28825:100;;;;-1:-1:-1;;;28825:100:0;;;;;;;:::i;:::-;28936:38;28950:4;28956:2;28960:7;28969:4;28936:13;:38::i;:::-;28659:323;;;;:::o;26127:281::-;26200:13;26226:23;26241:7;26226:14;:23::i;:::-;26262:21;26286:10;:8;:10::i;:::-;26262:34;;26338:1;26320:7;26314:21;:25;:86;;;;;;;;;;;;;;;;;26366:7;26375:18;:7;:16;:18::i;:::-;26349:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26314:86;26307:93;26127:281;-1:-1:-1;;;26127:281:0:o;39936:84::-;39760:10;39752:19;;;;:7;:19;;;;;;;;39744:48;;;;-1:-1:-1;;;39744:48:0;;9431:2:1;39744:48:0;;;9413:21:1;9470:2;9450:18;;;9443:30;-1:-1:-1;;;9489:18:1;;;9482:46;9545:18;;39744:48:0;9229:340:1;39744:48:0;39998:14:::1;40004:7;39998:5;:14::i;5650:201::-:0;4630:13;:11;:13::i;:::-;-1:-1:-1;;;;;5739:22:0;::::1;5731:73;;;::::0;-1:-1:-1;;;5731:73:0;;9776:2:1;5731:73:0::1;::::0;::::1;9758:21:1::0;9815:2;9795:18;;;9788:30;9854:34;9834:18;;;9827:62;-1:-1:-1;;;9905:18:1;;;9898:36;9951:19;;5731:73:0::1;9574:402:1::0;5731:73:0::1;5815:28;5834:8;5815:18;:28::i;35271:135::-:0;30554:4;30578:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30578:16:0;35345:53;;;;-1:-1:-1;;;35345:53:0;;7228:2:1;35345:53:0;;;7210:21:1;7267:2;7247:18;;;7240:30;-1:-1:-1;;;7286:18:1;;;7279:54;7350:18;;35345:53:0;7026:348:1;34550:174:0;34625:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34625:29:0;-1:-1:-1;;;;;34625:29:0;;;;;;;;:24;;34679:23;34625:24;34679:14;:23::i;:::-;-1:-1:-1;;;;;34670:46:0;;;;;;;;;;;34550:174;;:::o;30783:264::-;30876:4;30893:13;30909:23;30924:7;30909:14;:23::i;:::-;30893:39;;30962:5;-1:-1:-1;;;;;30951:16:0;:7;-1:-1:-1;;;;;30951:16:0;;:52;;;-1:-1:-1;;;;;;27886:25:0;;;27862:4;27886:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30971:32;30951:87;;;;31031:7;-1:-1:-1;;;;;31007:31:0;:20;31019:7;31007:11;:20::i;:::-;-1:-1:-1;;;;;31007:31:0;;30951:87;30943:96;30783:264;-1:-1:-1;;;;30783:264:0:o;33806:625::-;33965:4;-1:-1:-1;;;;;33938:31:0;:23;33953:7;33938:14;:23::i;:::-;-1:-1:-1;;;;;33938:31:0;;33930:81;;;;-1:-1:-1;;;33930:81:0;;10183:2:1;33930:81:0;;;10165:21:1;10222:2;10202:18;;;10195:30;10261:34;10241:18;;;10234:62;-1:-1:-1;;;10312:18:1;;;10305:35;10357:19;;33930:81:0;9981:401:1;33930:81:0;-1:-1:-1;;;;;34030:16:0;;34022:65;;;;-1:-1:-1;;;34022:65:0;;10589:2:1;34022:65:0;;;10571:21:1;10628:2;10608:18;;;10601:30;10667:34;10647:18;;;10640:62;-1:-1:-1;;;10718:18:1;;;10711:34;10762:19;;34022:65:0;10387:400:1;34022:65:0;34204:29;34221:1;34225:7;34204:8;:29::i;:::-;-1:-1:-1;;;;;34246:15:0;;;;;;:9;:15;;;;;:20;;34265:1;;34246:15;:20;;34265:1;;34246:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34277:13:0;;;;;;:9;:13;;;;;:18;;34294:1;;34277:13;:18;;34294:1;;34277:18;:::i;:::-;;;;-1:-1:-1;;34306:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34306:21:0;-1:-1:-1;;;;;34306:21:0;;;;;;;;;34345:27;;34306:16;;34345:27;;;;;;;34385:38;34405:4;34411:2;34415:7;34385:19;:38::i;32381:439::-;-1:-1:-1;;;;;32461:16:0;;32453:61;;;;-1:-1:-1;;;32453:61:0;;11257:2:1;32453:61:0;;;11239:21:1;;;11276:18;;;11269:30;11335:34;11315:18;;;11308:62;11387:18;;32453:61:0;11055:356:1;32453:61:0;30554:4;30578:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30578:16:0;:30;32525:58;;;;-1:-1:-1;;;32525:58:0;;11618:2:1;32525:58:0;;;11600:21:1;11657:2;11637:18;;;11630:30;11696;11676:18;;;11669:58;11744:18;;32525:58:0;11416:352:1;32525:58:0;-1:-1:-1;;;;;32654:13:0;;;;;;:9;:13;;;;;:18;;32671:1;;32654:13;:18;;32671:1;;32654:18;:::i;:::-;;;;-1:-1:-1;;32683:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32683:21:0;-1:-1:-1;;;;;32683:21:0;;;;;;;;32722:33;;32683:16;;;32722:33;;32683:16;;32722:33;32768:44;32796:1;32800:2;32804:7;32768:19;:44::i;4909:132::-;4817:6;;-1:-1:-1;;;;;4817:6:0;3375:10;4973:23;4965:68;;;;-1:-1:-1;;;4965:68:0;;11975:2:1;4965:68:0;;;11957:21:1;;;11994:18;;;11987:30;12053:34;12033:18;;;12026:62;12105:18;;4965:68:0;11773:356:1;6011:191:0;6104:6;;;-1:-1:-1;;;;;6121:17:0;;;-1:-1:-1;;;;;;6121:17:0;;;;;;;6154:40;;6104:6;;;6121:17;6104:6;;6154:40;;6085:16;;6154:40;6074:128;6011:191;:::o;34867:315::-;35022:8;-1:-1:-1;;;;;35013:17:0;:5;-1:-1:-1;;;;;35013:17:0;;;35005:55;;;;-1:-1:-1;;;35005:55:0;;12336:2:1;35005:55:0;;;12318:21:1;12375:2;12355:18;;;12348:30;12414:27;12394:18;;;12387:55;12459:18;;35005:55:0;12134:349:1;35005:55:0;-1:-1:-1;;;;;35071:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35071:46:0;;;;;;;;;;35133:41;;540::1;;;35133::0;;513:18:1;35133:41:0;;;;;;;34867:315;;;:::o;29863:313::-;30019:28;30029:4;30035:2;30039:7;30019:9;:28::i;:::-;30066:47;30089:4;30095:2;30099:7;30108:4;30066:22;:47::i;:::-;30058:110;;;;-1:-1:-1;;;30058:110:0;;;;;;;:::i;38944:100::-;38996:13;39029:7;39022:14;;;;;:::i;549:723::-;605:13;826:10;822:53;;-1:-1:-1;;853:10:0;;;;;;;;;;;;-1:-1:-1;;;853:10:0;;;;;549:723::o;822:53::-;900:5;885:12;941:78;948:9;;941:78;;974:8;;;;:::i;:::-;;-1:-1:-1;997:10:0;;-1:-1:-1;1005:2:0;997:10;;:::i;:::-;;;941:78;;;1029:19;1061:6;1051:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1051:17:0;;1029:39;;1079:154;1086:10;;1079:154;;1113:11;1123:1;1113:11;;:::i;:::-;;-1:-1:-1;1182:10:0;1190:2;1182:5;:10;:::i;:::-;1169:24;;:2;:24;:::i;:::-;1156:39;;1139:6;1146;1139:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1139:56:0;;;;;;;;-1:-1:-1;1210:11:0;1219:2;1210:11;;:::i;:::-;;;1079:154;;33049:420;33109:13;33125:23;33140:7;33125:14;:23::i;:::-;33109:39;;33250:29;33267:1;33271:7;33250:8;:29::i;:::-;-1:-1:-1;;;;;33292:16:0;;;;;;:9;:16;;;;;:21;;33312:1;;33292:16;:21;;33312:1;;33292:21;:::i;:::-;;;;-1:-1:-1;;33331:16:0;;;;:7;:16;;;;;;33324:23;;-1:-1:-1;;;;;;33324:23:0;;;33365:36;33339:7;;33331:16;-1:-1:-1;;;;;33365:36:0;;;;;33331:16;;33365:36;33414:47;33434:5;33449:1;33453:7;39164:276;-1:-1:-1;;;;;39311:18:0;;;:38;;;;-1:-1:-1;;;;;;39333:16:0;;;;39311:38;39307:57;;;39353:11;;39351:13;;;;;:::i;:::-;;;;-1:-1:-1;39307:57:0;-1:-1:-1;;;;;39379:18:0;;;;;;:38;;-1:-1:-1;;;;;;39401:16:0;;;39379:38;39375:57;;;39421:11;;39419:13;;;;;:::i;:::-;;;;-1:-1:-1;39164:276:0;;;:::o;35970:853::-;36124:4;-1:-1:-1;;;;;36145:13:0;;7737:19;:23;36141:675;;36181:71;;-1:-1:-1;;;36181:71:0;;-1:-1:-1;;;;;36181:36:0;;;;;:71;;3375:10;;36232:4;;36238:7;;36247:4;;36181:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36181:71:0;;;;;;;;-1:-1:-1;;36181:71:0;;;;;;;;;;;;:::i;:::-;;;36177:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36422:13:0;;36418:328;;36465:60;;-1:-1:-1;;;36465:60:0;;;;;;;:::i;36418:328::-;36696:6;36690:13;36681:6;36677:2;36673:15;36666:38;36177:584;-1:-1:-1;;;;;;36303:51:0;-1:-1:-1;;;36303:51:0;;-1:-1:-1;36296:58:0;;36141:675;-1:-1:-1;36800:4:0;35970:853;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:347::-;2944:6;2952;3005:2;2993:9;2984:7;2980:23;2976:32;2973:52;;;3021:1;3018;3011:12;2973:52;3044:29;3063:9;3044:29;:::i;:::-;3034:39;;3123:2;3112:9;3108:18;3095:32;3170:5;3163:13;3156:21;3149:5;3146:32;3136:60;;3192:1;3189;3182:12;3136:60;3215:5;3205:15;;;2879:347;;;;;:::o;3231:127::-;3292:10;3287:3;3283:20;3280:1;3273:31;3323:4;3320:1;3313:15;3347:4;3344:1;3337:15;3363:632;3428:5;3458:18;3499:2;3491:6;3488:14;3485:40;;;3505:18;;:::i;:::-;3580:2;3574:9;3548:2;3634:15;;-1:-1:-1;;3630:24:1;;;3656:2;3626:33;3622:42;3610:55;;;3680:18;;;3700:22;;;3677:46;3674:72;;;3726:18;;:::i;:::-;3766:10;3762:2;3755:22;3795:6;3786:15;;3825:6;3817;3810:22;3865:3;3856:6;3851:3;3847:16;3844:25;3841:45;;;3882:1;3879;3872:12;3841:45;3932:6;3927:3;3920:4;3912:6;3908:17;3895:44;3987:1;3980:4;3971:6;3963;3959:19;3955:30;3948:41;;;;3363:632;;;;;:::o;4000:451::-;4069:6;4122:2;4110:9;4101:7;4097:23;4093:32;4090:52;;;4138:1;4135;4128:12;4090:52;4178:9;4165:23;4211:18;4203:6;4200:30;4197:50;;;4243:1;4240;4233:12;4197:50;4266:22;;4319:4;4311:13;;4307:27;-1:-1:-1;4297:55:1;;4348:1;4345;4338:12;4297:55;4371:74;4437:7;4432:2;4419:16;4414:2;4410;4406:11;4371:74;:::i;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;6611:410::-;6813:2;6795:21;;;6852:2;6832:18;;;6825:30;6891:34;6886:2;6871:18;;6864:62;-1:-1:-1;;;6957:2:1;6942:18;;6935:44;7011:3;6996:19;;6611:410::o;8072:127::-;8133:10;8128:3;8124:20;8121:1;8114:31;8164:4;8161:1;8154:15;8188:4;8185:1;8178:15;8204:135;8243:3;-1:-1:-1;;8264:17:1;;8261:43;;;8284:18;;:::i;:::-;-1:-1:-1;8331:1:1;8320:13;;8204:135::o;8754:470::-;8933:3;8971:6;8965:13;8987:53;9033:6;9028:3;9021:4;9013:6;9009:17;8987:53;:::i;:::-;9103:13;;9062:16;;;;9125:57;9103:13;9062:16;9159:4;9147:17;;9125:57;:::i;:::-;9198:20;;8754:470;-1:-1:-1;;;;8754:470:1:o;10792:125::-;10832:4;10860:1;10857;10854:8;10851:34;;;10865:18;;:::i;:::-;-1:-1:-1;10902:9:1;;10792:125::o;10922:128::-;10962:3;10993:1;10989:6;10986:1;10983:13;10980:39;;;10999:18;;:::i;:::-;-1:-1:-1;11035:9:1;;10922:128::o;12488:414::-;12690:2;12672:21;;;12729:2;12709:18;;;12702:30;12768:34;12763:2;12748:18;;12741:62;-1:-1:-1;;;12834:2:1;12819:18;;12812:48;12892:3;12877:19;;12488:414::o;12907:127::-;12968:10;12963:3;12959:20;12956:1;12949:31;12999:4;12996:1;12989:15;13023:4;13020:1;13013:15;13039:120;13079:1;13105;13095:35;;13110:18;;:::i;:::-;-1:-1:-1;13144:9:1;;13039:120::o;13164:112::-;13196:1;13222;13212:35;;13227:18;;:::i;:::-;-1:-1:-1;13261:9:1;;13164:112::o;13281:127::-;13342:10;13337:3;13333:20;13330:1;13323:31;13373:4;13370:1;13363:15;13397:4;13394:1;13387:15;13413:136;13452:3;13480:5;13470:39;;13489:18;;:::i;:::-;-1:-1:-1;;;13525:18:1;;13413:136::o;13554:489::-;-1:-1:-1;;;;;13823:15:1;;;13805:34;;13875:15;;13870:2;13855:18;;13848:43;13922:2;13907:18;;13900:34;;;13970:3;13965:2;13950:18;;13943:31;;;13748:4;;13991:46;;14017:19;;14009:6;13991:46;:::i;:::-;13983:54;13554:489;-1:-1:-1;;;;;;13554:489:1:o;14048:249::-;14117:6;14170:2;14158:9;14149:7;14145:23;14141:32;14138:52;;;14186:1;14183;14176:12;14138:52;14218:9;14212:16;14237:30;14261:5;14237:30;:::i
Swarm Source
ipfs://8a82201513c3fb3377f512b466e9448744041b75e477601da5ea91dbf85716d7
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.