ERC-721
Overview
Max Total Supply
1,138 ZAP
Holders
186
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NFT
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-01 */ // 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); } // File @openzeppelin/contracts/token/ERC721/[email protected] // MIT // OpenZeppelin Contracts v4.4.1 (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`, 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; } // File @openzeppelin/contracts/token/ERC721/[email protected] // 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); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // MIT // 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/extensions/[email protected] // MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @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); } // File @openzeppelin/contracts/utils/[email protected] // 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); } } } } // File @openzeppelin/contracts/utils/[email protected] // 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; } } // File @openzeppelin/contracts/utils/[email protected] // 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); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // MIT // 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 erc721a/contracts/[email protected] // MIT // Creator: Chiru Labs pragma solidity ^0.8.4; 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 {} } // File @openzeppelin/contracts/access/[email protected] // MIT // OpenZeppelin Contracts v4.4.1 (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 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); } } // File @openzeppelin/contracts/security/[email protected] // MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File contracts/NFT.sol // GPL-3.0 pragma solidity ^0.8.0; contract NFT is ERC721A, Ownable, Pausable { uint256 public immutable freeTokensAmount; uint256 public immutable totalNFTSupply; uint256 public immutable mintPrice; string private _baseURIAddress; address private immutable _wallet; constructor( string memory _name, string memory _symbol, uint256 _totalSupply, uint256 _mintPrice, uint256 _freeTokensAmount, address wallet_, string memory baseURIAddress_ ) ERC721A(_name, _symbol) { freeTokensAmount = _freeTokensAmount; totalNFTSupply = _totalSupply; mintPrice = _mintPrice; _wallet = wallet_; _baseURIAddress = baseURIAddress_; } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function changeBaseURI(string memory baseURI_) public onlyOwner { _baseURIAddress = baseURI_; } function _baseURI() internal view virtual override returns (string memory) { return _baseURIAddress; } function getPrice(uint256 _count) public view returns (uint256) { if ((totalSupply() + _count) <= freeTokensAmount) { return 0; } else if (totalSupply() < freeTokensAmount) { _count = _count - (freeTokensAmount - totalSupply()); } return _count * mintPrice; } function buy(uint256 _count) public whenNotPaused payable { require((totalSupply() + _count) <= totalNFTSupply, "Total supply exceeded. Use less amount."); uint costWei = getPrice(_count); require(msg.value >= costWei, "Not enough ethers to buy"); (bool sent, ) = payable(_wallet).call{value: address(this).balance}(""); require(sent, 'Cant send money to owners wallet.'); _safeMint(_msgSender(), _count); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_freeTokensAmount","type":"uint256"},{"internalType":"address","name":"wallet_","type":"address"},{"internalType":"string","name":"baseURIAddress_","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"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":"_count","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeTokensAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_count","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":"totalNFTSupply","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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101006040523480156200001257600080fd5b506040516200202c3803806200202c833981016040819052620000359162000273565b8651879087906200004e9060029060208501906200011a565b508051620000649060039060208401906200011a565b50506001600055506200007733620000c8565b6008805460ff60a01b19169055608083905260a085905260c08490526001600160601b0319606083901b1660e0528051620000ba9060099060208401906200011a565b505050505050505062000392565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000128906200033f565b90600052602060002090601f0160209004810192826200014c576000855562000197565b82601f106200016757805160ff191683800117855562000197565b8280016001018555821562000197579182015b82811115620001975782518255916020019190600101906200017a565b50620001a5929150620001a9565b5090565b5b80821115620001a55760008155600101620001aa565b600082601f830112620001d1578081fd5b81516001600160401b0380821115620001ee57620001ee6200037c565b604051601f8301601f19908116603f011681019082821181831017156200021957620002196200037c565b8160405283815260209250868385880101111562000235578485fd5b8491505b8382101562000258578582018301518183018401529082019062000239565b838211156200026957848385830101525b9695505050505050565b600080600080600080600060e0888a0312156200028e578283fd5b87516001600160401b0380821115620002a5578485fd5b620002b38b838c01620001c0565b985060208a0151915080821115620002c9578485fd5b620002d78b838c01620001c0565b60408b015160608c015160808d015160a08e0151939b509199509750955091506001600160a01b03821682146200030c578384fd5b60c08a01519193508082111562000321578283fd5b50620003308a828b01620001c0565b91505092959891949750929550565b600181811c908216806200035457607f821691505b602082108114156200037657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c05160e05160601c611c3a620003f26000396000610b0d0152600081816103540152610c960152600081816104780152610a1c01526000818161024901528181610be401528181610c250152610c600152611c3a6000f3fe6080604052600436106101815760003560e01c806370a08231116100d1578063b88d4fde1161008a578063e2c7928111610064578063e2c7928114610466578063e75722301461049a578063e985e9c5146104ba578063f2fde38b1461050357600080fd5b8063b88d4fde14610413578063c87b56dd14610433578063d96a094a1461045357600080fd5b806370a0823114610376578063715018a6146103965780638456cb59146103ab5780638da5cb5b146103c057806395d89b41146103de578063a22cb465146103f357600080fd5b806323b872dd1161013e57806342842e0e1161011857806342842e0e146102e35780635c975abb146103035780636352211e146103225780636817c76c1461034257600080fd5b806323b872dd1461028e57806339a0c6f9146102ae5780633f4ba83a146102ce57600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b3146102155780630a7feb851461023757806318160ddd14610279575b600080fd5b34801561019257600080fd5b506101a66101a136600461193e565b610523565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d0610575565b6040516101b29190611a6c565b3480156101e957600080fd5b506101fd6101f83660046119bc565b610607565b6040516001600160a01b0390911681526020016101b2565b34801561022157600080fd5b50610235610230366004611915565b61064b565b005b34801561024357600080fd5b5061026b7f000000000000000000000000000000000000000000000000000000000000000081565b6040519081526020016101b2565b34801561028557600080fd5b5061026b6106d9565b34801561029a57600080fd5b506102356102a9366004611827565b6106e7565b3480156102ba57600080fd5b506102356102c9366004611976565b6106f2565b3480156102da57600080fd5b5061023561073c565b3480156102ef57600080fd5b506102356102fe366004611827565b610770565b34801561030f57600080fd5b50600854600160a01b900460ff166101a6565b34801561032e57600080fd5b506101fd61033d3660046119bc565b61078b565b34801561034e57600080fd5b5061026b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561038257600080fd5b5061026b6103913660046117db565b61079d565b3480156103a257600080fd5b506102356107ec565b3480156103b757600080fd5b50610235610820565b3480156103cc57600080fd5b506008546001600160a01b03166101fd565b3480156103ea57600080fd5b506101d0610852565b3480156103ff57600080fd5b5061023561040e3660046118db565b610861565b34801561041f57600080fd5b5061023561042e366004611862565b6108f7565b34801561043f57600080fd5b506101d061044e3660046119bc565b610948565b6102356104613660046119bc565b6109cd565b34801561047257600080fd5b5061026b7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104a657600080fd5b5061026b6104b53660046119bc565b610be0565b3480156104c657600080fd5b506101a66104d53660046117f5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561050f57600080fd5b5061023561051e3660046117db565b610cbb565b60006001600160e01b031982166380ac58cd60e01b148061055457506001600160e01b03198216635b5e139f60e01b145b8061056f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461058490611b42565b80601f01602080910402602001604051908101604052809291908181526020018280546105b090611b42565b80156105fd5780601f106105d2576101008083540402835291602001916105fd565b820191906000526020600020905b8154815290600101906020018083116105e057829003601f168201915b5050505050905090565b600061061282610d56565b61062f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106568261078b565b9050806001600160a01b0316836001600160a01b0316141561068b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106ab57506106a981336104d5565b155b156106c9576040516367d9dca160e11b815260040160405180910390fd5b6106d4838383610d8f565b505050565b600154600054036000190190565b6106d4838383610deb565b6008546001600160a01b031633146107255760405162461bcd60e51b815260040161071c90611a7f565b60405180910390fd5b80516107389060099060208401906116b0565b5050565b6008546001600160a01b031633146107665760405162461bcd60e51b815260040161071c90611a7f565b61076e611001565b565b6106d4838383604051806020016040528060008152506108f7565b60006107968261109e565b5192915050565b60006001600160a01b0382166107c6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108165760405162461bcd60e51b815260040161071c90611a7f565b61076e60006111c7565b6008546001600160a01b0316331461084a5760405162461bcd60e51b815260040161071c90611a7f565b61076e611219565b60606003805461058490611b42565b6001600160a01b03821633141561088b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610902848484610deb565b6001600160a01b0383163b151580156109245750610922848484846112a1565b155b15610942576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061095382610d56565b61097057604051630a14c4b560e41b815260040160405180910390fd5b600061097a611399565b905080516000141561099b57604051806020016040528060008152506109c6565b806109a5846113a8565b6040516020016109b6929190611a00565b6040516020818303038152906040525b9392505050565b600854600160a01b900460ff1615610a1a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161071c565b7f000000000000000000000000000000000000000000000000000000000000000081610a446106d9565b610a4e9190611ab4565b1115610aac5760405162461bcd60e51b815260206004820152602760248201527f546f74616c20737570706c792065786365656465642e20557365206c6573732060448201526630b6b7bab73a1760c91b606482015260840161071c565b6000610ab782610be0565b905080341015610b095760405162461bcd60e51b815260206004820152601860248201527f4e6f7420656e6f7567682065746865727320746f206275790000000000000000604482015260640161071c565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b76576040519150601f19603f3d011682016040523d82523d6000602084013e610b7b565b606091505b5050905080610bd65760405162461bcd60e51b815260206004820152602160248201527f43616e742073656e64206d6f6e657920746f206f776e6572732077616c6c65746044820152601760f91b606482015260840161071c565b6106d433846114c2565b60007f000000000000000000000000000000000000000000000000000000000000000082610c0c6106d9565b610c169190611ab4565b11610c2357506000919050565b7f0000000000000000000000000000000000000000000000000000000000000000610c4c6106d9565b1015610c9157610c5a6106d9565b610c84907f0000000000000000000000000000000000000000000000000000000000000000611aff565b610c8e9083611aff565b91505b61056f7f000000000000000000000000000000000000000000000000000000000000000083611ae0565b6008546001600160a01b03163314610ce55760405162461bcd60e51b815260040161071c90611a7f565b6001600160a01b038116610d4a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161071c565b610d53816111c7565b50565b600081600111158015610d6a575060005482105b801561056f575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610df68261109e565b80519091506000906001600160a01b0316336001600160a01b03161480610e2457508151610e2490336104d5565b80610e3f575033610e3484610607565b6001600160a01b0316145b905080610e5f57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610e945760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610ebb57604051633a954ecd60e21b815260040160405180910390fd5b610ecb6000848460000151610d8f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610fb757600054811015610fb7578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600854600160a01b900460ff166110515760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161071c565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b604080516060810182526000808252602082018190529181019190915281806001111580156110ce575060005481105b156111ae57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906111ac5780516001600160a01b031615611142579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156111a7579392505050565b611142565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600854600160a01b900460ff16156112665760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161071c565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110813390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112d6903390899088908890600401611a2f565b602060405180830381600087803b1580156112f057600080fd5b505af1925050508015611320575060408051601f3d908101601f1916820190925261131d9181019061195a565b60015b61137b573d80801561134e576040519150601f19603f3d011682016040523d82523d6000602084013e611353565b606091505b508051611373576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461058490611b42565b6060816113cc5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113f657806113e081611b7d565b91506113ef9050600a83611acc565b91506113d0565b60008167ffffffffffffffff81111561141f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611449576020820181803683370190505b5090505b84156113915761145e600183611aff565b915061146b600a86611b98565b611476906030611ab4565b60f81b81838151811061149957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506114bb600a86611acc565b945061144d565b6107388282604051806020016040528060008152506106d483838360016000546001600160a01b03851661150857604051622e076360e81b815260040160405180910390fd5b836115265760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156115d857506001600160a01b0387163b15155b15611661575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461162960008884806001019550886112a1565b611646576040516368d2bf6b60e11b815260040160405180910390fd5b808214156115de57826000541461165c57600080fd5b6116a7565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611662575b50600055610ffa565b8280546116bc90611b42565b90600052602060002090601f0160209004810192826116de5760008555611724565b82601f106116f757805160ff1916838001178555611724565b82800160010185558215611724579182015b82811115611724578251825591602001919060010190611709565b50611730929150611734565b5090565b5b808211156117305760008155600101611735565b600067ffffffffffffffff8084111561176457611764611bd8565b604051601f8501601f19908116603f0116810190828211818310171561178c5761178c611bd8565b816040528093508581528686860111156117a557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146117d657600080fd5b919050565b6000602082840312156117ec578081fd5b6109c6826117bf565b60008060408385031215611807578081fd5b611810836117bf565b915061181e602084016117bf565b90509250929050565b60008060006060848603121561183b578081fd5b611844846117bf565b9250611852602085016117bf565b9150604084013590509250925092565b60008060008060808587031215611877578081fd5b611880856117bf565b935061188e602086016117bf565b925060408501359150606085013567ffffffffffffffff8111156118b0578182fd5b8501601f810187136118c0578182fd5b6118cf87823560208401611749565b91505092959194509250565b600080604083850312156118ed578182fd5b6118f6836117bf565b91506020830135801515811461190a578182fd5b809150509250929050565b60008060408385031215611927578182fd5b611930836117bf565b946020939093013593505050565b60006020828403121561194f578081fd5b81356109c681611bee565b60006020828403121561196b578081fd5b81516109c681611bee565b600060208284031215611987578081fd5b813567ffffffffffffffff81111561199d578182fd5b8201601f810184136119ad578182fd5b61139184823560208401611749565b6000602082840312156119cd578081fd5b5035919050565b600081518084526119ec816020860160208601611b16565b601f01601f19169290920160200192915050565b60008351611a12818460208801611b16565b835190830190611a26818360208801611b16565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a62908301846119d4565b9695505050505050565b6020815260006109c660208301846119d4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611ac757611ac7611bac565b500190565b600082611adb57611adb611bc2565b500490565b6000816000190483118215151615611afa57611afa611bac565b500290565b600082821015611b1157611b11611bac565b500390565b60005b83811015611b31578181015183820152602001611b19565b838111156109425750506000910152565b600181811c90821680611b5657607f821691505b60208210811415611b7757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b9157611b91611bac565b5060010190565b600082611ba757611ba7611bc2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d5357600080fdfea2646970667358221220279c836df56b4661b1744173f5e8bc127f9146e8b33e6610e793ca04a5472e8a64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000d050000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000045700000000000000000000000098437856c03b5fc8aa283a424c9bf036362bd5220000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000a5a617070792045656c730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035a41500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005e68747470733a2f2f626166796265696536686d73776d3732793234666b6b77626b6b77693532727a78786874673770746e61616275327378726561687a6a36686665712e697066732e6e667473746f726167652e6c696e6b2f6a736f6e2f0000
Deployed Bytecode
0x6080604052600436106101815760003560e01c806370a08231116100d1578063b88d4fde1161008a578063e2c7928111610064578063e2c7928114610466578063e75722301461049a578063e985e9c5146104ba578063f2fde38b1461050357600080fd5b8063b88d4fde14610413578063c87b56dd14610433578063d96a094a1461045357600080fd5b806370a0823114610376578063715018a6146103965780638456cb59146103ab5780638da5cb5b146103c057806395d89b41146103de578063a22cb465146103f357600080fd5b806323b872dd1161013e57806342842e0e1161011857806342842e0e146102e35780635c975abb146103035780636352211e146103225780636817c76c1461034257600080fd5b806323b872dd1461028e57806339a0c6f9146102ae5780633f4ba83a146102ce57600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b3146102155780630a7feb851461023757806318160ddd14610279575b600080fd5b34801561019257600080fd5b506101a66101a136600461193e565b610523565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d0610575565b6040516101b29190611a6c565b3480156101e957600080fd5b506101fd6101f83660046119bc565b610607565b6040516001600160a01b0390911681526020016101b2565b34801561022157600080fd5b50610235610230366004611915565b61064b565b005b34801561024357600080fd5b5061026b7f000000000000000000000000000000000000000000000000000000000000045781565b6040519081526020016101b2565b34801561028557600080fd5b5061026b6106d9565b34801561029a57600080fd5b506102356102a9366004611827565b6106e7565b3480156102ba57600080fd5b506102356102c9366004611976565b6106f2565b3480156102da57600080fd5b5061023561073c565b3480156102ef57600080fd5b506102356102fe366004611827565b610770565b34801561030f57600080fd5b50600854600160a01b900460ff166101a6565b34801561032e57600080fd5b506101fd61033d3660046119bc565b61078b565b34801561034e57600080fd5b5061026b7f0000000000000000000000000000000000000000000000000011c37937e0800081565b34801561038257600080fd5b5061026b6103913660046117db565b61079d565b3480156103a257600080fd5b506102356107ec565b3480156103b757600080fd5b50610235610820565b3480156103cc57600080fd5b506008546001600160a01b03166101fd565b3480156103ea57600080fd5b506101d0610852565b3480156103ff57600080fd5b5061023561040e3660046118db565b610861565b34801561041f57600080fd5b5061023561042e366004611862565b6108f7565b34801561043f57600080fd5b506101d061044e3660046119bc565b610948565b6102356104613660046119bc565b6109cd565b34801561047257600080fd5b5061026b7f0000000000000000000000000000000000000000000000000000000000000d0581565b3480156104a657600080fd5b5061026b6104b53660046119bc565b610be0565b3480156104c657600080fd5b506101a66104d53660046117f5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561050f57600080fd5b5061023561051e3660046117db565b610cbb565b60006001600160e01b031982166380ac58cd60e01b148061055457506001600160e01b03198216635b5e139f60e01b145b8061056f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461058490611b42565b80601f01602080910402602001604051908101604052809291908181526020018280546105b090611b42565b80156105fd5780601f106105d2576101008083540402835291602001916105fd565b820191906000526020600020905b8154815290600101906020018083116105e057829003601f168201915b5050505050905090565b600061061282610d56565b61062f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106568261078b565b9050806001600160a01b0316836001600160a01b0316141561068b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106ab57506106a981336104d5565b155b156106c9576040516367d9dca160e11b815260040160405180910390fd5b6106d4838383610d8f565b505050565b600154600054036000190190565b6106d4838383610deb565b6008546001600160a01b031633146107255760405162461bcd60e51b815260040161071c90611a7f565b60405180910390fd5b80516107389060099060208401906116b0565b5050565b6008546001600160a01b031633146107665760405162461bcd60e51b815260040161071c90611a7f565b61076e611001565b565b6106d4838383604051806020016040528060008152506108f7565b60006107968261109e565b5192915050565b60006001600160a01b0382166107c6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108165760405162461bcd60e51b815260040161071c90611a7f565b61076e60006111c7565b6008546001600160a01b0316331461084a5760405162461bcd60e51b815260040161071c90611a7f565b61076e611219565b60606003805461058490611b42565b6001600160a01b03821633141561088b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610902848484610deb565b6001600160a01b0383163b151580156109245750610922848484846112a1565b155b15610942576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061095382610d56565b61097057604051630a14c4b560e41b815260040160405180910390fd5b600061097a611399565b905080516000141561099b57604051806020016040528060008152506109c6565b806109a5846113a8565b6040516020016109b6929190611a00565b6040516020818303038152906040525b9392505050565b600854600160a01b900460ff1615610a1a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161071c565b7f0000000000000000000000000000000000000000000000000000000000000d0581610a446106d9565b610a4e9190611ab4565b1115610aac5760405162461bcd60e51b815260206004820152602760248201527f546f74616c20737570706c792065786365656465642e20557365206c6573732060448201526630b6b7bab73a1760c91b606482015260840161071c565b6000610ab782610be0565b905080341015610b095760405162461bcd60e51b815260206004820152601860248201527f4e6f7420656e6f7567682065746865727320746f206275790000000000000000604482015260640161071c565b60007f00000000000000000000000098437856c03b5fc8aa283a424c9bf036362bd5226001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b76576040519150601f19603f3d011682016040523d82523d6000602084013e610b7b565b606091505b5050905080610bd65760405162461bcd60e51b815260206004820152602160248201527f43616e742073656e64206d6f6e657920746f206f776e6572732077616c6c65746044820152601760f91b606482015260840161071c565b6106d433846114c2565b60007f000000000000000000000000000000000000000000000000000000000000045782610c0c6106d9565b610c169190611ab4565b11610c2357506000919050565b7f0000000000000000000000000000000000000000000000000000000000000457610c4c6106d9565b1015610c9157610c5a6106d9565b610c84907f0000000000000000000000000000000000000000000000000000000000000457611aff565b610c8e9083611aff565b91505b61056f7f0000000000000000000000000000000000000000000000000011c37937e0800083611ae0565b6008546001600160a01b03163314610ce55760405162461bcd60e51b815260040161071c90611a7f565b6001600160a01b038116610d4a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161071c565b610d53816111c7565b50565b600081600111158015610d6a575060005482105b801561056f575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610df68261109e565b80519091506000906001600160a01b0316336001600160a01b03161480610e2457508151610e2490336104d5565b80610e3f575033610e3484610607565b6001600160a01b0316145b905080610e5f57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610e945760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610ebb57604051633a954ecd60e21b815260040160405180910390fd5b610ecb6000848460000151610d8f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610fb757600054811015610fb7578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600854600160a01b900460ff166110515760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161071c565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b604080516060810182526000808252602082018190529181019190915281806001111580156110ce575060005481105b156111ae57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906111ac5780516001600160a01b031615611142579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156111a7579392505050565b611142565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600854600160a01b900460ff16156112665760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161071c565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110813390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112d6903390899088908890600401611a2f565b602060405180830381600087803b1580156112f057600080fd5b505af1925050508015611320575060408051601f3d908101601f1916820190925261131d9181019061195a565b60015b61137b573d80801561134e576040519150601f19603f3d011682016040523d82523d6000602084013e611353565b606091505b508051611373576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461058490611b42565b6060816113cc5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113f657806113e081611b7d565b91506113ef9050600a83611acc565b91506113d0565b60008167ffffffffffffffff81111561141f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611449576020820181803683370190505b5090505b84156113915761145e600183611aff565b915061146b600a86611b98565b611476906030611ab4565b60f81b81838151811061149957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506114bb600a86611acc565b945061144d565b6107388282604051806020016040528060008152506106d483838360016000546001600160a01b03851661150857604051622e076360e81b815260040160405180910390fd5b836115265760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156115d857506001600160a01b0387163b15155b15611661575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461162960008884806001019550886112a1565b611646576040516368d2bf6b60e11b815260040160405180910390fd5b808214156115de57826000541461165c57600080fd5b6116a7565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611662575b50600055610ffa565b8280546116bc90611b42565b90600052602060002090601f0160209004810192826116de5760008555611724565b82601f106116f757805160ff1916838001178555611724565b82800160010185558215611724579182015b82811115611724578251825591602001919060010190611709565b50611730929150611734565b5090565b5b808211156117305760008155600101611735565b600067ffffffffffffffff8084111561176457611764611bd8565b604051601f8501601f19908116603f0116810190828211818310171561178c5761178c611bd8565b816040528093508581528686860111156117a557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146117d657600080fd5b919050565b6000602082840312156117ec578081fd5b6109c6826117bf565b60008060408385031215611807578081fd5b611810836117bf565b915061181e602084016117bf565b90509250929050565b60008060006060848603121561183b578081fd5b611844846117bf565b9250611852602085016117bf565b9150604084013590509250925092565b60008060008060808587031215611877578081fd5b611880856117bf565b935061188e602086016117bf565b925060408501359150606085013567ffffffffffffffff8111156118b0578182fd5b8501601f810187136118c0578182fd5b6118cf87823560208401611749565b91505092959194509250565b600080604083850312156118ed578182fd5b6118f6836117bf565b91506020830135801515811461190a578182fd5b809150509250929050565b60008060408385031215611927578182fd5b611930836117bf565b946020939093013593505050565b60006020828403121561194f578081fd5b81356109c681611bee565b60006020828403121561196b578081fd5b81516109c681611bee565b600060208284031215611987578081fd5b813567ffffffffffffffff81111561199d578182fd5b8201601f810184136119ad578182fd5b61139184823560208401611749565b6000602082840312156119cd578081fd5b5035919050565b600081518084526119ec816020860160208601611b16565b601f01601f19169290920160200192915050565b60008351611a12818460208801611b16565b835190830190611a26818360208801611b16565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a62908301846119d4565b9695505050505050565b6020815260006109c660208301846119d4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611ac757611ac7611bac565b500190565b600082611adb57611adb611bc2565b500490565b6000816000190483118215151615611afa57611afa611bac565b500290565b600082821015611b1157611b11611bac565b500390565b60005b83811015611b31578181015183820152602001611b19565b838111156109425750506000910152565b600181811c90821680611b5657607f821691505b60208210811415611b7757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b9157611b91611bac565b5060010190565b600082611ba757611ba7611bc2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d5357600080fdfea2646970667358221220279c836df56b4661b1744173f5e8bc127f9146e8b33e6610e793ca04a5472e8a64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000d050000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000045700000000000000000000000098437856c03b5fc8aa283a424c9bf036362bd5220000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000a5a617070792045656c730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035a41500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005e68747470733a2f2f626166796265696536686d73776d3732793234666b6b77626b6b77693532727a78786874673770746e61616275327378726561687a6a36686665712e697066732e6e667473746f726167652e6c696e6b2f6a736f6e2f0000
-----Decoded View---------------
Arg [0] : _name (string): Zappy Eels
Arg [1] : _symbol (string): ZAP
Arg [2] : _totalSupply (uint256): 3333
Arg [3] : _mintPrice (uint256): 5000000000000000
Arg [4] : _freeTokensAmount (uint256): 1111
Arg [5] : wallet_ (address): 0x98437856c03b5fc8AA283a424C9bf036362bd522
Arg [6] : baseURIAddress_ (string): https://bafybeie6hmswm72y24fkkwbkkwi52rzxxhtg7ptnaabu2sxreahzj6hfeq.ipfs.nftstorage.link/json/
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000d05
Arg [3] : 0000000000000000000000000000000000000000000000000011c37937e08000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000457
Arg [5] : 00000000000000000000000098437856c03b5fc8aa283a424c9bf036362bd522
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [8] : 5a617070792045656c7300000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [10] : 5a41500000000000000000000000000000000000000000000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000005e
Arg [12] : 68747470733a2f2f626166796265696536686d73776d3732793234666b6b7762
Arg [13] : 6b6b77693532727a78786874673770746e61616275327378726561687a6a3668
Arg [14] : 6665712e697066732e6e667473746f726167652e6c696e6b2f6a736f6e2f0000
Deployed Bytecode Sourcemap
48241:2040:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25831:305;;;;;;;;;;-1:-1:-1;25831:305:0;;;;;:::i;:::-;;:::i;:::-;;;6006:14:1;;5999:22;5981:41;;5969:2;5954:18;25831:305:0;;;;;;;;29216:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30719:204::-;;;;;;;;;;-1:-1:-1;30719:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5304:32:1;;;5286:51;;5274:2;5259:18;30719:204:0;5241:102:1;30282:371:0;;;;;;;;;;-1:-1:-1;30282:371:0;;;;;:::i;:::-;;:::i;:::-;;48293:41;;;;;;;;;;;;;;;;;;9028:25:1;;;9016:2;9001:18;48293:41:0;8983:76:1;25080:303:0;;;;;;;;;;;;;:::i;31576:170::-;;;;;;;;;;-1:-1:-1;31576:170:0;;;;;:::i;:::-;;:::i;49124:109::-;;;;;;;;;;-1:-1:-1;49124:109:0;;;;;:::i;:::-;;:::i;49051:65::-;;;;;;;;;;;;;:::i;31817:185::-;;;;;;;;;;-1:-1:-1;31817:185:0;;;;;:::i;:::-;;:::i;46982:86::-;;;;;;;;;;-1:-1:-1;47053:7:0;;-1:-1:-1;;;47053:7:0;;;;46982:86;;29025:124;;;;;;;;;;-1:-1:-1;29025:124:0;;;;;:::i;:::-;;:::i;48387:34::-;;;;;;;;;;;;;;;26200:206;;;;;;;;;;-1:-1:-1;26200:206:0;;;;;:::i;:::-;;:::i;45020:103::-;;;;;;;;;;;;;:::i;48982:61::-;;;;;;;;;;;;;:::i;44369:87::-;;;;;;;;;;-1:-1:-1;44442:6:0;;-1:-1:-1;;;;;44442:6:0;44369:87;;29385:104;;;;;;;;;;;;;:::i;30995:279::-;;;;;;;;;;-1:-1:-1;30995:279:0;;;;;:::i;:::-;;:::i;32073:369::-;;;;;;;;;;-1:-1:-1;32073:369:0;;;;;:::i;:::-;;:::i;29560:318::-;;;;;;;;;;-1:-1:-1;29560:318:0;;;;;:::i;:::-;;:::i;49701:468::-;;;;;;:::i;:::-;;:::i;48341:39::-;;;;;;;;;;;;;;;49365:328;;;;;;;;;;-1:-1:-1;49365:328:0;;;;;:::i;:::-;;:::i;31345:164::-;;;;;;;;;;-1:-1:-1;31345:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31466:25:0;;;31442:4;31466:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31345:164;45278:201;;;;;;;;;;-1:-1:-1;45278:201:0;;;;;:::i;:::-;;:::i;25831:305::-;25933:4;-1:-1:-1;;;;;;25970:40:0;;-1:-1:-1;;;25970:40:0;;:105;;-1:-1:-1;;;;;;;26027:48:0;;-1:-1:-1;;;26027:48:0;25970:105;:158;;;-1:-1:-1;;;;;;;;;;21273:40:0;;;26092:36;25950:178;25831:305;-1:-1:-1;;25831:305:0:o;29216:100::-;29270:13;29303:5;29296:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29216:100;:::o;30719:204::-;30787:7;30812:16;30820:7;30812;:16::i;:::-;30807:64;;30837:34;;-1:-1:-1;;;30837:34:0;;;;;;;;;;;30807:64;-1:-1:-1;30891:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30891:24:0;;30719:204::o;30282:371::-;30355:13;30371:24;30387:7;30371:15;:24::i;:::-;30355:40;;30416:5;-1:-1:-1;;;;;30410:11:0;:2;-1:-1:-1;;;;;30410:11:0;;30406:48;;;30430:24;;-1:-1:-1;;;30430:24:0;;;;;;;;;;;30406:48;18013:10;-1:-1:-1;;;;;30471:21:0;;;;;;:63;;-1:-1:-1;30497:37:0;30514:5;18013:10;31345:164;:::i;30497:37::-;30496:38;30471:63;30467:138;;;30558:35;;-1:-1:-1;;;30558:35:0;;;;;;;;;;;30467:138;30617:28;30626:2;30630:7;30639:5;30617:8;:28::i;:::-;30282:371;;;:::o;25080:303::-;50269:1;25334:12;25124:7;25318:13;:28;-1:-1:-1;;25318:46:0;;25080:303::o;31576:170::-;31710:28;31720:4;31726:2;31730:7;31710:9;:28::i;49124:109::-;44442:6;;-1:-1:-1;;;;;44442:6:0;18013:10;44589:23;44581:68;;;;-1:-1:-1;;;44581:68:0;;;;;;;:::i;:::-;;;;;;;;;49199:26;;::::1;::::0;:15:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49124:109:::0;:::o;49051:65::-;44442:6;;-1:-1:-1;;;;;44442:6:0;18013:10;44589:23;44581:68;;;;-1:-1:-1;;;44581:68:0;;;;;;;:::i;:::-;49098:10:::1;:8;:10::i;:::-;49051:65::o:0;31817:185::-;31955:39;31972:4;31978:2;31982:7;31955:39;;;;;;;;;;;;:16;:39::i;29025:124::-;29089:7;29116:20;29128:7;29116:11;:20::i;:::-;:25;;29025:124;-1:-1:-1;;29025:124:0:o;26200:206::-;26264:7;-1:-1:-1;;;;;26288:19:0;;26284:60;;26316:28;;-1:-1:-1;;;26316:28:0;;;;;;;;;;;26284:60;-1:-1:-1;;;;;;26370:19:0;;;;;:12;:19;;;;;:27;;;;26200:206::o;45020:103::-;44442:6;;-1:-1:-1;;;;;44442:6:0;18013:10;44589:23;44581:68;;;;-1:-1:-1;;;44581:68:0;;;;;;;:::i;:::-;45085:30:::1;45112:1;45085:18;:30::i;48982:61::-:0;44442:6;;-1:-1:-1;;;;;44442:6:0;18013:10;44589:23;44581:68;;;;-1:-1:-1;;;44581:68:0;;;;;;;:::i;:::-;49027:8:::1;:6;:8::i;29385:104::-:0;29441:13;29474:7;29467:14;;;;;:::i;30995:279::-;-1:-1:-1;;;;;31086:24:0;;18013:10;31086:24;31082:54;;;31119:17;;-1:-1:-1;;;31119:17:0;;;;;;;;;;;31082:54;18013:10;31149:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31149:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31149:53:0;;;;;;;;;;31218:48;;5981:41:1;;;31149:42:0;;18013:10;31218:48;;5954:18:1;31218:48:0;;;;;;;30995:279;;:::o;32073:369::-;32240:28;32250:4;32256:2;32260:7;32240:9;:28::i;:::-;-1:-1:-1;;;;;32283:13:0;;10264:19;:23;;32283:76;;;;;32303:56;32334:4;32340:2;32344:7;32353:5;32303:30;:56::i;:::-;32302:57;32283:76;32279:156;;;32383:40;;-1:-1:-1;;;32383:40:0;;;;;;;;;;;32279:156;32073:369;;;;:::o;29560:318::-;29633:13;29664:16;29672:7;29664;:16::i;:::-;29659:59;;29689:29;;-1:-1:-1;;;29689:29:0;;;;;;;;;;;29659:59;29731:21;29755:10;:8;:10::i;:::-;29731:34;;29789:7;29783:21;29808:1;29783:26;;:87;;;;;;;;;;;;;;;;;29836:7;29845:18;:7;:16;:18::i;:::-;29819:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29783:87;29776:94;29560:318;-1:-1:-1;;;29560:318:0:o;49701:468::-;47053:7;;-1:-1:-1;;;47053:7:0;;;;47307:9;47299:38;;;;-1:-1:-1;;;47299:38:0;;7617:2:1;47299:38:0;;;7599:21:1;7656:2;7636:18;;;7629:30;-1:-1:-1;;;7675:18:1;;;7668:46;7731:18;;47299:38:0;7589:166:1;47299:38:0;49806:14:::1;49795:6;49779:13;:11;:13::i;:::-;:22;;;;:::i;:::-;49778:42;;49770:94;;;::::0;-1:-1:-1;;;49770:94:0;;7962:2:1;49770:94:0::1;::::0;::::1;7944:21:1::0;8001:2;7981:18;;;7974:30;8040:34;8020:18;;;8013:62;-1:-1:-1;;;8091:18:1;;;8084:37;8138:19;;49770:94:0::1;7934:229:1::0;49770:94:0::1;49875:12;49890:16;49899:6;49890:8;:16::i;:::-;49875:31;;49938:7;49925:9;:20;;49917:57;;;::::0;-1:-1:-1;;;49917:57:0;;8731:2:1;49917:57:0::1;::::0;::::1;8713:21:1::0;8770:2;8750:18;;;8743:30;8809:26;8789:18;;;8782:54;8853:18;;49917:57:0::1;8703:174:1::0;49917:57:0::1;49986:9;50009:7;-1:-1:-1::0;;;;;50001:21:0::1;50030;50001:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49985:71;;;50075:4;50067:50;;;::::0;-1:-1:-1;;;50067:50:0;;7215:2:1;50067:50:0::1;::::0;::::1;7197:21:1::0;7254:2;7234:18;;;7227:30;7293:34;7273:18;;;7266:62;-1:-1:-1;;;7344:18:1;;;7337:31;7385:19;;50067:50:0::1;7187:223:1::0;50067:50:0::1;50130:31;18013:10:::0;50154:6:::1;50130:9;:31::i;49365:328::-:0;49420:7;49472:16;49461:6;49445:13;:11;:13::i;:::-;:22;;;;:::i;:::-;49444:44;49440:208;;-1:-1:-1;49512:1:0;;49365:328;-1:-1:-1;49365:328:0:o;49440:208::-;49551:16;49535:13;:11;:13::i;:::-;:32;49531:117;;;49622:13;:11;:13::i;:::-;49603:32;;:16;:32;:::i;:::-;49593:43;;:6;:43;:::i;:::-;49584:52;;49531:117;49667:18;49676:9;49667:6;:18;:::i;45278:201::-;44442:6;;-1:-1:-1;;;;;44442:6:0;18013:10;44589:23;44581:68;;;;-1:-1:-1;;;44581:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45367:22:0;::::1;45359:73;;;::::0;-1:-1:-1;;;45359:73:0;;6808:2:1;45359:73:0::1;::::0;::::1;6790:21:1::0;6847:2;6827:18;;;6820:30;6886:34;6866:18;;;6859:62;-1:-1:-1;;;6937:18:1;;;6930:36;6983:19;;45359:73:0::1;6780:228:1::0;45359:73:0::1;45443:28;45462:8;45443:18;:28::i;:::-;45278:201:::0;:::o;32697:187::-;32754:4;32797:7;50269:1;32778:26;;:53;;;;;32818:13;;32808:7;:23;32778:53;:98;;;;-1:-1:-1;;32849:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32849:27:0;;;;32848:28;;32697:187::o;40308:196::-;40423:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40423:29:0;-1:-1:-1;;;;;40423:29:0;;;;;;;;;40468:28;;40423:24;;40468:28;;;;;;;40308:196;;;:::o;35810:2112::-;35925:35;35963:20;35975:7;35963:11;:20::i;:::-;36038:18;;35925:58;;-1:-1:-1;35996:22:0;;-1:-1:-1;;;;;36022:34:0;18013:10;-1:-1:-1;;;;;36022:34:0;;:101;;;-1:-1:-1;36090:18:0;;36073:50;;18013:10;31345:164;:::i;36073:50::-;36022:154;;;-1:-1:-1;18013:10:0;36140:20;36152:7;36140:11;:20::i;:::-;-1:-1:-1;;;;;36140:36:0;;36022:154;35996:181;;36195:17;36190:66;;36221:35;;-1:-1:-1;;;36221:35:0;;;;;;;;;;;36190:66;36293:4;-1:-1:-1;;;;;36271:26:0;:13;:18;;;-1:-1:-1;;;;;36271:26:0;;36267:67;;36306:28;;-1:-1:-1;;;36306:28:0;;;;;;;;;;;36267:67;-1:-1:-1;;;;;36349:16:0;;36345:52;;36374:23;;-1:-1:-1;;;36374:23:0;;;;;;;;;;;36345:52;36518:49;36535:1;36539:7;36548:13;:18;;;36518:8;:49::i;:::-;-1:-1:-1;;;;;36863:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36863:31:0;;;;;;;-1:-1:-1;;36863:31:0;;;;;;;36909:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36909:29:0;;;;;;;;;;;36955:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;37000:61:0;;;;-1:-1:-1;;;37045:15:0;37000:61;;;;;;;;;;;37335:11;;;37365:24;;;;;:29;37335:11;;37365:29;37361:445;;37590:13;;37576:11;:27;37572:219;;;37660:18;;;37628:24;;;:11;:24;;;;;;;;:50;;37743:28;;;;37701:70;;-1:-1:-1;;;37701:70:0;-1:-1:-1;;;;;;37701:70:0;;;-1:-1:-1;;;;;37628:50:0;;;37701:70;;;;;;;37572:219;35810:2112;37853:7;37849:2;-1:-1:-1;;;;;37834:27:0;37843:4;-1:-1:-1;;;;;37834:27:0;;;;;;;;;;;37872:42;35810:2112;;;;;:::o;48041:120::-;47053:7;;-1:-1:-1;;;47053:7:0;;;;47577:41;;;;-1:-1:-1;;;47577:41:0;;6459:2:1;47577:41:0;;;6441:21:1;6498:2;6478:18;;;6471:30;-1:-1:-1;;;6517:18:1;;;6510:50;6577:18;;47577:41:0;6431:170:1;47577:41:0;48100:7:::1;:15:::0;;-1:-1:-1;;;;48100:15:0::1;::::0;;48131:22:::1;18013:10:::0;48140:12:::1;48131:22;::::0;-1:-1:-1;;;;;5304:32:1;;;5286:51;;5274:2;5259:18;48131:22:0::1;;;;;;;48041:120::o:0;27855:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27965:7:0;;50269:1;28014:23;;:47;;;;;28048:13;;28041:4;:20;28014:47;28010:886;;;28082:31;28116:17;;;:11;:17;;;;;;;;;28082:51;;;;;;;;;-1:-1:-1;;;;;28082:51:0;;;;-1:-1:-1;;;28082:51:0;;;;;;;;;;;-1:-1:-1;;;28082:51:0;;;;;;;;;;;;;;28152:729;;28202:14;;-1:-1:-1;;;;;28202:28:0;;28198:101;;28266:9;27855:1108;-1:-1:-1;;;27855:1108:0:o;28198:101::-;-1:-1:-1;;;28641:6:0;28686:17;;;;:11;:17;;;;;;;;;28674:29;;;;;;;;;-1:-1:-1;;;;;28674:29:0;;;;;-1:-1:-1;;;28674:29:0;;;;;;;;;;;-1:-1:-1;;;28674:29:0;;;;;;;;;;;;;28734:28;28730:109;;28802:9;27855:1108;-1:-1:-1;;;27855:1108:0:o;28730:109::-;28601:261;;;28010:886;;28924:31;;-1:-1:-1;;;28924:31:0;;;;;;;;;;;45639:191;45732:6;;;-1:-1:-1;;;;;45749:17:0;;;-1:-1:-1;;;;;;45749:17:0;;;;;;;45782:40;;45732:6;;;45749:17;45732:6;;45782:40;;45713:16;;45782:40;45639:191;;:::o;47782:118::-;47053:7;;-1:-1:-1;;;47053:7:0;;;;47307:9;47299:38;;;;-1:-1:-1;;;47299:38:0;;7617:2:1;47299:38:0;;;7599:21:1;7656:2;7636:18;;;7629:30;-1:-1:-1;;;7675:18:1;;;7668:46;7731:18;;47299:38:0;7589:166:1;47299:38:0;47842:7:::1;:14:::0;;-1:-1:-1;;;;47842:14:0::1;-1:-1:-1::0;;;47842:14:0::1;::::0;;47872:20:::1;47879:12;18013:10:::0;;17933:98;40996:667;41180:72;;-1:-1:-1;;;41180:72:0;;41159:4;;-1:-1:-1;;;;;41180:36:0;;;;;:72;;18013:10;;41231:4;;41237:7;;41246:5;;41180:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41180:72:0;;;;;;;;-1:-1:-1;;41180:72:0;;;;;;;;;;;;:::i;:::-;;;41176:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41414:13:0;;41410:235;;41460:40;;-1:-1:-1;;;41460:40:0;;;;;;;;;;;41410:235;41603:6;41597:13;41588:6;41584:2;41580:15;41573:38;41176:480;-1:-1:-1;;;;;;41299:55:0;-1:-1:-1;;;41299:55:0;;-1:-1:-1;41176:480:0;40996:667;;;;;;:::o;49241:116::-;49301:13;49334:15;49327:22;;;;;:::i;18527:723::-;18583:13;18804:10;18800:53;;-1:-1:-1;;18831:10:0;;;;;;;;;;;;-1:-1:-1;;;18831:10:0;;;;;18527:723::o;18800:53::-;18878:5;18863:12;18919:78;18926:9;;18919:78;;18952:8;;;;:::i;:::-;;-1:-1:-1;18975:10:0;;-1:-1:-1;18983:2:0;18975:10;;:::i;:::-;;;18919:78;;;19007:19;19039:6;19029:17;;;;;;-1:-1:-1;;;19029:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19029:17:0;;19007:39;;19057:154;19064:10;;19057:154;;19091:11;19101:1;19091:11;;:::i;:::-;;-1:-1:-1;19160:10:0;19168:2;19160:5;:10;:::i;:::-;19147:24;;:2;:24;:::i;:::-;19134:39;;19117:6;19124;19117:14;;;;;;-1:-1:-1;;;19117:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;19117:56:0;;;;;;;;-1:-1:-1;19188:11:0;19197:2;19188:11;;:::i;:::-;;;19057:154;;32892:104;32961:27;32971:2;32975:8;32961:27;;;;;;;;;;;;33482:32;33488:2;33492:8;33502:5;33509:4;33920:20;33943:13;-1:-1:-1;;;;;33971:16:0;;33967:48;;33996:19;;-1:-1:-1;;;33996:19:0;;;;;;;;;;;33967:48;34030:13;34026:44;;34052:18;;-1:-1:-1;;;34052:18:0;;;;;;;;;;;34026:44;-1:-1:-1;;;;;34421:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;34480:49:0;;34421:44;;;;;;;;34480:49;;;;-1:-1:-1;;34421:44:0;;;;;;34480:49;;;;;;;;;;;;;;;;34546:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;34596:66:0;;;;-1:-1:-1;;;34646:15:0;34596:66;;;;;;;;;;34546:25;34743:23;;;34787:4;:23;;;;-1:-1:-1;;;;;;34795:13:0;;10264:19;:23;;34795:15;34783:641;;;34831:314;34862:38;;34887:12;;-1:-1:-1;;;;;34862:38:0;;;34879:1;;34862:38;;34879:1;;34862:38;34928:69;34967:1;34971:2;34975:14;;;;;;34991:5;34928:30;:69::i;:::-;34923:174;;35033:40;;-1:-1:-1;;;35033:40:0;;;;;;;;;;;34923:174;35140:3;35124:12;:19;;34831:314;;35226:12;35209:13;;:29;35205:43;;35240:8;;;35205:43;34783:641;;;35289:120;35320:40;;35345:14;;;;;-1:-1:-1;;;;;35320:40:0;;;35337:1;;35320:40;;35337:1;;35320:40;35404:3;35388:12;:19;;35289:120;;34783:641;-1:-1:-1;35438:13:0;:28;35488:60;32073:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;3047:6;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;3582:6;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;4057:6;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:1;;4068:120;-1:-1:-1;4068:120:1:o;4193:257::-;4234:3;4272:5;4266:12;4299:6;4294:3;4287:19;4315:63;4371:6;4364:4;4359:3;4355:14;4348:4;4341:5;4337:16;4315:63;:::i;:::-;4432:2;4411:15;-1:-1:-1;;4407:29:1;4398:39;;;;4439:4;4394:50;;4242:208;-1:-1:-1;;4242:208:1:o;4455:470::-;4634:3;4672:6;4666:13;4688:53;4734:6;4729:3;4722:4;4714:6;4710:17;4688:53;:::i;:::-;4804:13;;4763:16;;;;4826:57;4804:13;4763:16;4860:4;4848:17;;4826:57;:::i;:::-;4899:20;;4642:283;-1:-1:-1;;;;4642:283:1:o;5348:488::-;-1:-1:-1;;;;;5617:15:1;;;5599:34;;5669:15;;5664:2;5649:18;;5642:43;5716:2;5701:18;;5694:34;;;5764:3;5759:2;5744:18;;5737:31;;;5542:4;;5785:45;;5810:19;;5802:6;5785:45;:::i;:::-;5777:53;5551:285;-1:-1:-1;;;;;;5551:285:1:o;6033:219::-;6182:2;6171:9;6164:21;6145:4;6202:44;6242:2;6231:9;6227:18;6219:6;6202:44;:::i;8168:356::-;8370:2;8352:21;;;8389:18;;;8382:30;8448:34;8443:2;8428:18;;8421:62;8515:2;8500:18;;8342:182::o;9064:128::-;9104:3;9135:1;9131:6;9128:1;9125:13;9122:2;;;9141:18;;:::i;:::-;-1:-1:-1;9177:9:1;;9112:80::o;9197:120::-;9237:1;9263;9253:2;;9268:18;;:::i;:::-;-1:-1:-1;9302:9:1;;9243:74::o;9322:168::-;9362:7;9428:1;9424;9420:6;9416:14;9413:1;9410:21;9405:1;9398:9;9391:17;9387:45;9384:2;;;9435:18;;:::i;:::-;-1:-1:-1;9475:9:1;;9374:116::o;9495:125::-;9535:4;9563:1;9560;9557:8;9554:2;;;9568:18;;:::i;:::-;-1:-1:-1;9605:9:1;;9544:76::o;9625:258::-;9697:1;9707:113;9721:6;9718:1;9715:13;9707:113;;;9797:11;;;9791:18;9778:11;;;9771:39;9743:2;9736:10;9707:113;;;9838:6;9835:1;9832:13;9829:2;;;-1:-1:-1;;9873:1:1;9855:16;;9848:27;9678:205::o;9888:380::-;9967:1;9963:12;;;;10010;;;10031:2;;10085:4;10077:6;10073:17;10063:27;;10031:2;10138;10130:6;10127:14;10107:18;10104:38;10101:2;;;10184:10;10179:3;10175:20;10172:1;10165:31;10219:4;10216:1;10209:15;10247:4;10244:1;10237:15;10101:2;;9943:325;;;:::o;10273:135::-;10312:3;-1:-1:-1;;10333:17:1;;10330:2;;;10353:18;;:::i;:::-;-1:-1:-1;10400:1:1;10389:13;;10320:88::o;10413:112::-;10445:1;10471;10461:2;;10476:18;;:::i;:::-;-1:-1:-1;10510:9:1;;10451:74::o;10530:127::-;10591:10;10586:3;10582:20;10579:1;10572:31;10622:4;10619:1;10612:15;10646:4;10643:1;10636:15;10662:127;10723:10;10718:3;10714:20;10711:1;10704:31;10754:4;10751:1;10744:15;10778:4;10775:1;10768:15;10794:127;10855:10;10850:3;10846:20;10843:1;10836:31;10886:4;10883:1;10876:15;10910:4;10907:1;10900:15;10926:131;-1:-1:-1;;;;;;11000:32:1;;10990:43;;10980:2;;11047:1;11044;11037:12
Swarm Source
ipfs://279c836df56b4661b1744173f5e8bc127f9146e8b33e6610e793ca04a5472e8a
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.