ERC-721
Overview
Max Total Supply
3,300 ALAB
Holders
251
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 ALABLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Artlab
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // _ ____________ ______ // / | / / ____/ __ \/ ____/ // / |/ / __/ / / / / / // / /| / /___/ /_/ / /___ // /_/ |_/_____/\____/\____/ pragma solidity ^0.8.4; import "contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; contract Artlab is ERC721A, Ownable { using ECDSA for bytes32; uint256 public cost; uint256 public maxMintAmount = 3; uint256 public maxTxMintAmount = 3; uint256 public maxSupply = 50000; bool public isSaleActive = false; string public uriPrefix; address payable public wallet; address private ehSignerAddress; // new artlab experiment has new artlabId uint256 public artlabId = 100; mapping(address => uint256) public expMintedCounter; constructor( string memory _uriPrefix, address _ehSignerAddress, address payable _wallet ) ERC721A("Artlab", "ALAB") { setUriPrefix(_uriPrefix); setSignerAddresses(_ehSignerAddress); setWallet(_wallet); setCost(0.05 ether); } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setArtlabId(uint256 _artlabId) public onlyOwner { artlabId = _artlabId; } function setSignerAddresses(address _ehSignerAddress) public onlyOwner { ehSignerAddress = _ehSignerAddress; } function setMaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setMaxTXMintAmount(uint256 _newmaxTxMintAmount) public onlyOwner { maxTxMintAmount = _newmaxTxMintAmount; } function setWallet(address payable _wallet) public onlyOwner { wallet = _wallet; } function setSaleActive(bool _state) public onlyOwner { isSaleActive = _state; } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } function alreadyExpMinted(address addr) public view returns(uint256) { uint256 amount = 0; if(expMintedCounter[addr] > artlabId) { amount = expMintedCounter[addr] - artlabId; } return amount; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function whitelistMint(uint256 _mintAmount, uint _maxfree, uint256 _id, bytes memory _sig) public payable { uint256 expMinted = alreadyExpMinted(msg.sender); require(isSaleActive, "Sale is not active"); require(_mintAmount <= maxTxMintAmount, "Exceeds maximum tokens you can purchase in a single transaction!"); require(_mintAmount > 0 && totalSupply() + _mintAmount <= maxSupply, "Invalid mint amount!"); require(expMinted + _mintAmount <= maxMintAmount, "Max mint amount exceeded!"); require(keccak256(abi.encodePacked(msg.sender, _maxfree, _id)) .toEthSignedMessageHash() .recover(_sig) == ehSignerAddress, "Signature is not valid!"); int _priceMultiplier = int(_mintAmount); if(expMinted < _maxfree) { _priceMultiplier = int(expMinted) + int(_mintAmount) - int(_maxfree); } if(_priceMultiplier > 0) { uint priceMultiplier = uint(_priceMultiplier); require(msg.value >= cost * priceMultiplier, "Ether value sent is not correct!"); } _safeMint(msg.sender, _mintAmount); if(expMinted == 0) { expMintedCounter[msg.sender] = artlabId + _mintAmount; } else { expMintedCounter[msg.sender] += _mintAmount; } wallet.transfer(address(this).balance); } function ownerMint(address _to, uint256 _mintAmount) public onlyOwner { require(_mintAmount > 0 && totalSupply() + _mintAmount <= maxSupply, "Invalid mint amount!"); _safeMint(_to, _mintAmount); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import 'contracts/IERC721A.sol'; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @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 IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _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 `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // 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(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev 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 Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_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 { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // 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. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @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, _toString(tokenId))) : ''; } /** * @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 Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @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 virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0) if (!_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 && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ 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 { 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 { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { 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 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) 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 { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; 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 { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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 { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__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 {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); 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; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT 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; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"},{"internalType":"address","name":"_ehSignerAddress","type":"address"},{"internalType":"address payable","name":"_wallet","type":"address"}],"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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"alreadyExpMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"artlabId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"expMintedCounter","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":"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":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxMintAmount","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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_artlabId","type":"uint256"}],"name":"setArtlabId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxTxMintAmount","type":"uint256"}],"name":"setMaxTXMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_ehSignerAddress","type":"address"}],"name":"setSignerAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_wallet","type":"address"}],"name":"setWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_maxfree","type":"uint256"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"bytes","name":"_sig","type":"bytes"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526003600a819055600b5561c350600c55600d805460ff1916905560646011553480156200003057600080fd5b5060405162002727380380620027278339810160408190526200005391620003a9565b604080518082018252600681526520b93a3630b160d11b60208083019182528351808501909452600484526320a620a160e11b9084015281519192916200009d91600291620002e6565b508051620000b3906003906020840190620002e6565b5050600160005550620000c63362000102565b620000d18362000154565b620000dc82620001bc565b620000e78162000229565b620000f966b1a2bc2ec5000062000296565b505050620004f9565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001a35760405162461bcd60e51b815260206004820181905260248201526000805160206200270783398151915260448201526064015b60405180910390fd5b8051620001b890600e906020840190620002e6565b5050565b6008546001600160a01b03163314620002075760405162461bcd60e51b815260206004820181905260248201526000805160206200270783398151915260448201526064016200019a565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314620002745760405162461bcd60e51b815260206004820181905260248201526000805160206200270783398151915260448201526064016200019a565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314620002e15760405162461bcd60e51b815260206004820181905260248201526000805160206200270783398151915260448201526064016200019a565b600955565b828054620002f490620004a6565b90600052602060002090601f01602090048101928262000318576000855562000363565b82601f106200033357805160ff191683800117855562000363565b8280016001018555821562000363579182015b828111156200036357825182559160200191906001019062000346565b506200037192915062000375565b5090565b5b8082111562000371576000815560010162000376565b80516001600160a01b0381168114620003a457600080fd5b919050565b600080600060608486031215620003be578283fd5b83516001600160401b0380821115620003d5578485fd5b818601915086601f830112620003e9578485fd5b815181811115620003fe57620003fe620004e3565b604051601f8201601f19908116603f01168101908382118183101715620004295762000429620004e3565b8160405282815260209350898484870101111562000445578788fd5b8791505b8282101562000468578482018401518183018501529083019062000449565b828211156200047957878484830101525b96506200048b9150508682016200038c565b935050506200049d604085016200038c565b90509250925092565b600181811c90821680620004bb57607f821691505b60208210811415620004dd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6121fe80620005096000396000f3fe60806040526004361061021a5760003560e01c80636352211e11610123578063a22cb465116100ab578063e985e9c51161006f578063e985e9c514610600578063ed1903d014610649578063f2fde38b14610669578063faa156cf14610689578063fb40e82a146106a957600080fd5b8063a22cb4651461056a578063b88d4fde1461058a578063c87b56dd146105aa578063d5abeb01146105ca578063deaa59df146105e057600080fd5b80637906a4c4116100f25780637906a4c4146104d75780637ec4a659146104f7578063841718a6146105175780638da5cb5b1461053757806395d89b411461055557600080fd5b80636352211e1461046f57806365c649a21461048f57806370a08231146104a2578063715018a6146104c257600080fd5b806318160ddd116101a657806344a0d68a1161017557806344a0d68a146103e0578063484b973c14610400578063521eb27314610420578063564566a81461044057806362b99ad41461045a57600080fd5b806318160ddd1461036d578063239c70ae1461038a57806323b872dd146103a057806342842e0e146103c057600080fd5b8063095ea7b3116101ed578063095ea7b3146102d05780630b42684b146102f05780631275c52e1461031457806313faede61461032a5780631693933c1461034057600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063088a4ed0146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611e86565b6106c9565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061026961071b565b60405161024b9190611ff4565b34801561028257600080fd5b50610296610291366004611f04565b6107ad565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611f04565b6107f1565b005b3480156102dc57600080fd5b506102ce6102eb366004611e41565b610829565b3480156102fc57600080fd5b5061030660115481565b60405190815260200161024b565b34801561032057600080fd5b50610306600b5481565b34801561033657600080fd5b5061030660095481565b34801561034c57600080fd5b5061030661035b366004611d0f565b60126020526000908152604090205481565b34801561037957600080fd5b506001546000540360001901610306565b34801561039657600080fd5b50610306600a5481565b3480156103ac57600080fd5b506102ce6103bb366004611d63565b6108fc565b3480156103cc57600080fd5b506102ce6103db366004611d63565b61090c565b3480156103ec57600080fd5b506102ce6103fb366004611f04565b610927565b34801561040c57600080fd5b506102ce61041b366004611e41565b610956565b34801561042c57600080fd5b50600f54610296906001600160a01b031681565b34801561044c57600080fd5b50600d5461023f9060ff1681565b34801561046657600080fd5b506102696109fa565b34801561047b57600080fd5b5061029661048a366004611f04565b610a88565b6102ce61049d366004611f1c565b610a93565b3480156104ae57600080fd5b506103066104bd366004611d0f565b610e57565b3480156104ce57600080fd5b506102ce610ea6565b3480156104e357600080fd5b506102ce6104f2366004611f04565b610edc565b34801561050357600080fd5b506102ce610512366004611ebe565b610f0b565b34801561052357600080fd5b506102ce610532366004611e6c565b610f48565b34801561054357600080fd5b506008546001600160a01b0316610296565b34801561056157600080fd5b50610269610f85565b34801561057657600080fd5b506102ce610585366004611e0d565b610f94565b34801561059657600080fd5b506102ce6105a5366004611da3565b61102a565b3480156105b657600080fd5b506102696105c5366004611f04565b611074565b3480156105d657600080fd5b50610306600c5481565b3480156105ec57600080fd5b506102ce6105fb366004611d0f565b6110f9565b34801561060c57600080fd5b5061023f61061b366004611d2b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561065557600080fd5b506102ce610664366004611f04565b611145565b34801561067557600080fd5b506102ce610684366004611d0f565b611174565b34801561069557600080fd5b506102ce6106a4366004611d0f565b61120f565b3480156106b557600080fd5b506103066106c4366004611d0f565b61125b565b60006301ffc9a760e01b6001600160e01b0319831614806106fa57506380ac58cd60e01b6001600160e01b03198316145b806107155750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461072a90612136565b80601f016020809104026020016040519081016040528092919081815260200182805461075690612136565b80156107a35780601f10610778576101008083540402835291602001916107a3565b820191906000526020600020905b81548152906001019060200180831161078657829003601f168201915b5050505050905090565b60006107b8826112a7565b6107d5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146108245760405162461bcd60e51b815260040161081b90612007565b60405180910390fd5b600a55565b6000610834826112dc565b9050806001600160a01b0316836001600160a01b031614156108695760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108a057610883813361061b565b6108a0576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610907838383611345565b505050565b6109078383836040518060200160405280600081525061102a565b6008546001600160a01b031633146109515760405162461bcd60e51b815260040161081b90612007565b600955565b6008546001600160a01b031633146109805760405162461bcd60e51b815260040161081b90612007565b6000811180156109a95750600c5460015460005483919003600019016109a6919061207d565b11155b6109ec5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161081b565b6109f682826114e8565b5050565b600e8054610a0790612136565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3390612136565b8015610a805780601f10610a5557610100808354040283529160200191610a80565b820191906000526020600020905b815481529060010190602001808311610a6357829003601f168201915b505050505081565b6000610715826112dc565b6000610a9e3361125b565b600d5490915060ff16610ae85760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b604482015260640161081b565b600b54851115610b62576040805162461bcd60e51b81526020600482015260248101919091527f45786365656473206d6178696d756d20746f6b656e7320796f752063616e207060448201527f7572636861736520696e20612073696e676c65207472616e73616374696f6e21606482015260840161081b565b600085118015610b8b5750600c546001546000548791900360001901610b88919061207d565b11155b610bce5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161081b565b600a54610bdb868361207d565b1115610c295760405162461bcd60e51b815260206004820152601960248201527f4d6178206d696e7420616d6f756e742065786365656465642100000000000000604482015260640161081b565b6010546040516bffffffffffffffffffffffff193360601b16602082015260348101869052605481018590526001600160a01b0390911690610cdd908490610cd790607401604051602081830303815290604052805190602001206040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b90611502565b6001600160a01b031614610d335760405162461bcd60e51b815260206004820152601760248201527f5369676e6174757265206973206e6f742076616c696421000000000000000000604482015260640161081b565b8484821015610d545784610d47878461203c565b610d5191906120b4565b90505b6000811315610dbe576009548190610d6d908290612095565b341015610dbc5760405162461bcd60e51b815260206004820181905260248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637421604482015260640161081b565b505b610dc833876114e8565b81610df05785601154610ddb919061207d565b33600090815260126020526040902055610e15565b3360009081526012602052604081208054889290610e0f90849061207d565b90915550505b600f546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e4e573d6000803e3d6000fd5b50505050505050565b60006001600160a01b038216610e80576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ed05760405162461bcd60e51b815260040161081b90612007565b610eda6000611526565b565b6008546001600160a01b03163314610f065760405162461bcd60e51b815260040161081b90612007565b601155565b6008546001600160a01b03163314610f355760405162461bcd60e51b815260040161081b90612007565b80516109f690600e906020840190611bcc565b6008546001600160a01b03163314610f725760405162461bcd60e51b815260040161081b90612007565b600d805460ff1916911515919091179055565b60606003805461072a90612136565b6001600160a01b038216331415610fbe5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611035848484611345565b6001600160a01b0383163b1561106e5761105184848484611578565b61106e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061107f826112a7565b61109c57604051630a14c4b560e41b815260040160405180910390fd5b60006110a6611670565b90508051600014156110c757604051806020016040528060008152506110f2565b806110d18461167f565b6040516020016110e2929190611f88565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111235760405162461bcd60e51b815260040161081b90612007565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b0316331461116f5760405162461bcd60e51b815260040161081b90612007565b600b55565b6008546001600160a01b0316331461119e5760405162461bcd60e51b815260040161081b90612007565b6001600160a01b0381166112035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081b565b61120c81611526565b50565b6008546001600160a01b031633146112395760405162461bcd60e51b815260040161081b90612007565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6011546001600160a01b038216600090815260126020526040812054909182911115610715576011546001600160a01b0384166000908152601260205260409020546110f291906120f3565b6000816001111580156112bb575060005482105b8015610715575050600090815260046020526040902054600160e01b161590565b6000818060011161132c5760005481101561132c57600081815260046020526040902054600160e01b811661132a575b806110f257506000190160008181526004602052604090205461130c565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611350826112dc565b9050836001600160a01b0316816001600160a01b0316146113835760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113a157506113a1853361061b565b806113bc5750336113b1846107ad565b6001600160a01b0316145b9050806113dc57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661140357604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b8617811790915582166114a0576001830160008181526004602052604090205461149e57600054811461149e5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6109f68282604051806020016040528060008152506116ce565b6000806000611511858561183f565b9150915061151e816118af565b509392505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906115ad903390899088908890600401611fb7565b602060405180830381600087803b1580156115c757600080fd5b505af19250505080156115f7575060408051601f3d908101601f191682019092526115f491810190611ea2565b60015b611652573d808015611625576040519150601f19603f3d011682016040523d82523d6000602084013e61162a565b606091505b50805161164a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600e805461072a90612136565b604080516080810191829052607f0190826030600a8206018353600a90045b80156116bc57600183039250600a81066030018353600a900461169e565b50819003601f19909101908152919050565b6000546001600160a01b0384166116f757604051622e076360e81b815260040160405180910390fd5b826117155760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156117ea575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46117b36000878480600101955087611578565b6117d0576040516368d2bf6b60e11b815260040160405180910390fd5b8082106117685782600054146117e557600080fd5b61182f565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106117eb575b50600090815561106e9085838684565b6000808251604114156118765760208301516040840151606085015160001a61186a87828585611ab0565b945094505050506118a8565b8251604014156118a05760208301516040840151611895868383611b9d565b9350935050506118a8565b506000905060025b9250929050565b60008160048111156118d157634e487b7160e01b600052602160045260246000fd5b14156118da5750565b60018160048111156118fc57634e487b7160e01b600052602160045260246000fd5b141561194a5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161081b565b600281600481111561196c57634e487b7160e01b600052602160045260246000fd5b14156119ba5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161081b565b60038160048111156119dc57634e487b7160e01b600052602160045260246000fd5b1415611a355760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161081b565b6004816004811115611a5757634e487b7160e01b600052602160045260246000fd5b141561120c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161081b565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611ae75750600090506003611b94565b8460ff16601b14158015611aff57508460ff16601c14155b15611b105750600090506004611b94565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611b64573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611b8d57600060019250925050611b94565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b01611bbe87828885611ab0565b935093505050935093915050565b828054611bd890612136565b90600052602060002090601f016020900481019282611bfa5760008555611c40565b82601f10611c1357805160ff1916838001178555611c40565b82800160010185558215611c40579182015b82811115611c40578251825591602001919060010190611c25565b50611c4c929150611c50565b5090565b5b80821115611c4c5760008155600101611c51565b600067ffffffffffffffff80841115611c8057611c80612187565b604051601f8501601f19908116603f01168101908282118183101715611ca857611ca8612187565b81604052809350858152868686011115611cc157600080fd5b858560208301376000602087830101525050509392505050565b80358015158114611ceb57600080fd5b919050565b600082601f830112611d00578081fd5b6110f283833560208501611c65565b600060208284031215611d20578081fd5b81356110f28161219d565b60008060408385031215611d3d578081fd5b8235611d488161219d565b91506020830135611d588161219d565b809150509250929050565b600080600060608486031215611d77578081fd5b8335611d828161219d565b92506020840135611d928161219d565b929592945050506040919091013590565b60008060008060808587031215611db8578081fd5b8435611dc38161219d565b93506020850135611dd38161219d565b925060408501359150606085013567ffffffffffffffff811115611df5578182fd5b611e0187828801611cf0565b91505092959194509250565b60008060408385031215611e1f578182fd5b8235611e2a8161219d565b9150611e3860208401611cdb565b90509250929050565b60008060408385031215611e53578182fd5b8235611e5e8161219d565b946020939093013593505050565b600060208284031215611e7d578081fd5b6110f282611cdb565b600060208284031215611e97578081fd5b81356110f2816121b2565b600060208284031215611eb3578081fd5b81516110f2816121b2565b600060208284031215611ecf578081fd5b813567ffffffffffffffff811115611ee5578182fd5b8201601f81018413611ef5578182fd5b61166884823560208401611c65565b600060208284031215611f15578081fd5b5035919050565b60008060008060808587031215611f31578384fd5b843593506020850135925060408501359150606085013567ffffffffffffffff811115611df5578182fd5b60008151808452611f7481602086016020860161210a565b601f01601f19169290920160200192915050565b60008351611f9a81846020880161210a565b835190830190611fae81836020880161210a565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fea90830184611f5c565b9695505050505050565b6020815260006110f26020830184611f5c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600080821280156001600160ff1b038490038513161561205e5761205e612171565b600160ff1b839003841281161561207757612077612171565b50500190565b6000821982111561209057612090612171565b500190565b60008160001904831182151516156120af576120af612171565b500290565b60008083128015600160ff1b8501841216156120d2576120d2612171565b6001600160ff1b03840183138116156120ed576120ed612171565b50500390565b60008282101561210557612105612171565b500390565b60005b8381101561212557818101518382015260200161210d565b8381111561106e5750506000910152565b600181811c9082168061214a57607f821691505b6020821081141561216b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461120c57600080fd5b6001600160e01b03198116811461120c57600080fdfea26469706673582212200da65ba15535d25dede8432c242c8798002b082b85ef2108a562d1b7f5cc10b664736f6c634300080400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000000000000000000000000000000000000000000060000000000000000000000000163bf7390d90dc9e6ac93cb92af83900d71cddb80000000000000000000000000d34fcb1615419e4ce896bfdc1838a0596ced30a000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6170692e6e656f632e696f2f6d657461646174612f6172746c61622f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061021a5760003560e01c80636352211e11610123578063a22cb465116100ab578063e985e9c51161006f578063e985e9c514610600578063ed1903d014610649578063f2fde38b14610669578063faa156cf14610689578063fb40e82a146106a957600080fd5b8063a22cb4651461056a578063b88d4fde1461058a578063c87b56dd146105aa578063d5abeb01146105ca578063deaa59df146105e057600080fd5b80637906a4c4116100f25780637906a4c4146104d75780637ec4a659146104f7578063841718a6146105175780638da5cb5b1461053757806395d89b411461055557600080fd5b80636352211e1461046f57806365c649a21461048f57806370a08231146104a2578063715018a6146104c257600080fd5b806318160ddd116101a657806344a0d68a1161017557806344a0d68a146103e0578063484b973c14610400578063521eb27314610420578063564566a81461044057806362b99ad41461045a57600080fd5b806318160ddd1461036d578063239c70ae1461038a57806323b872dd146103a057806342842e0e146103c057600080fd5b8063095ea7b3116101ed578063095ea7b3146102d05780630b42684b146102f05780631275c52e1461031457806313faede61461032a5780631693933c1461034057600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063088a4ed0146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611e86565b6106c9565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061026961071b565b60405161024b9190611ff4565b34801561028257600080fd5b50610296610291366004611f04565b6107ad565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611f04565b6107f1565b005b3480156102dc57600080fd5b506102ce6102eb366004611e41565b610829565b3480156102fc57600080fd5b5061030660115481565b60405190815260200161024b565b34801561032057600080fd5b50610306600b5481565b34801561033657600080fd5b5061030660095481565b34801561034c57600080fd5b5061030661035b366004611d0f565b60126020526000908152604090205481565b34801561037957600080fd5b506001546000540360001901610306565b34801561039657600080fd5b50610306600a5481565b3480156103ac57600080fd5b506102ce6103bb366004611d63565b6108fc565b3480156103cc57600080fd5b506102ce6103db366004611d63565b61090c565b3480156103ec57600080fd5b506102ce6103fb366004611f04565b610927565b34801561040c57600080fd5b506102ce61041b366004611e41565b610956565b34801561042c57600080fd5b50600f54610296906001600160a01b031681565b34801561044c57600080fd5b50600d5461023f9060ff1681565b34801561046657600080fd5b506102696109fa565b34801561047b57600080fd5b5061029661048a366004611f04565b610a88565b6102ce61049d366004611f1c565b610a93565b3480156104ae57600080fd5b506103066104bd366004611d0f565b610e57565b3480156104ce57600080fd5b506102ce610ea6565b3480156104e357600080fd5b506102ce6104f2366004611f04565b610edc565b34801561050357600080fd5b506102ce610512366004611ebe565b610f0b565b34801561052357600080fd5b506102ce610532366004611e6c565b610f48565b34801561054357600080fd5b506008546001600160a01b0316610296565b34801561056157600080fd5b50610269610f85565b34801561057657600080fd5b506102ce610585366004611e0d565b610f94565b34801561059657600080fd5b506102ce6105a5366004611da3565b61102a565b3480156105b657600080fd5b506102696105c5366004611f04565b611074565b3480156105d657600080fd5b50610306600c5481565b3480156105ec57600080fd5b506102ce6105fb366004611d0f565b6110f9565b34801561060c57600080fd5b5061023f61061b366004611d2b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561065557600080fd5b506102ce610664366004611f04565b611145565b34801561067557600080fd5b506102ce610684366004611d0f565b611174565b34801561069557600080fd5b506102ce6106a4366004611d0f565b61120f565b3480156106b557600080fd5b506103066106c4366004611d0f565b61125b565b60006301ffc9a760e01b6001600160e01b0319831614806106fa57506380ac58cd60e01b6001600160e01b03198316145b806107155750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461072a90612136565b80601f016020809104026020016040519081016040528092919081815260200182805461075690612136565b80156107a35780601f10610778576101008083540402835291602001916107a3565b820191906000526020600020905b81548152906001019060200180831161078657829003601f168201915b5050505050905090565b60006107b8826112a7565b6107d5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146108245760405162461bcd60e51b815260040161081b90612007565b60405180910390fd5b600a55565b6000610834826112dc565b9050806001600160a01b0316836001600160a01b031614156108695760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108a057610883813361061b565b6108a0576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610907838383611345565b505050565b6109078383836040518060200160405280600081525061102a565b6008546001600160a01b031633146109515760405162461bcd60e51b815260040161081b90612007565b600955565b6008546001600160a01b031633146109805760405162461bcd60e51b815260040161081b90612007565b6000811180156109a95750600c5460015460005483919003600019016109a6919061207d565b11155b6109ec5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161081b565b6109f682826114e8565b5050565b600e8054610a0790612136565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3390612136565b8015610a805780601f10610a5557610100808354040283529160200191610a80565b820191906000526020600020905b815481529060010190602001808311610a6357829003601f168201915b505050505081565b6000610715826112dc565b6000610a9e3361125b565b600d5490915060ff16610ae85760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b604482015260640161081b565b600b54851115610b62576040805162461bcd60e51b81526020600482015260248101919091527f45786365656473206d6178696d756d20746f6b656e7320796f752063616e207060448201527f7572636861736520696e20612073696e676c65207472616e73616374696f6e21606482015260840161081b565b600085118015610b8b5750600c546001546000548791900360001901610b88919061207d565b11155b610bce5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161081b565b600a54610bdb868361207d565b1115610c295760405162461bcd60e51b815260206004820152601960248201527f4d6178206d696e7420616d6f756e742065786365656465642100000000000000604482015260640161081b565b6010546040516bffffffffffffffffffffffff193360601b16602082015260348101869052605481018590526001600160a01b0390911690610cdd908490610cd790607401604051602081830303815290604052805190602001206040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b90611502565b6001600160a01b031614610d335760405162461bcd60e51b815260206004820152601760248201527f5369676e6174757265206973206e6f742076616c696421000000000000000000604482015260640161081b565b8484821015610d545784610d47878461203c565b610d5191906120b4565b90505b6000811315610dbe576009548190610d6d908290612095565b341015610dbc5760405162461bcd60e51b815260206004820181905260248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637421604482015260640161081b565b505b610dc833876114e8565b81610df05785601154610ddb919061207d565b33600090815260126020526040902055610e15565b3360009081526012602052604081208054889290610e0f90849061207d565b90915550505b600f546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e4e573d6000803e3d6000fd5b50505050505050565b60006001600160a01b038216610e80576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ed05760405162461bcd60e51b815260040161081b90612007565b610eda6000611526565b565b6008546001600160a01b03163314610f065760405162461bcd60e51b815260040161081b90612007565b601155565b6008546001600160a01b03163314610f355760405162461bcd60e51b815260040161081b90612007565b80516109f690600e906020840190611bcc565b6008546001600160a01b03163314610f725760405162461bcd60e51b815260040161081b90612007565b600d805460ff1916911515919091179055565b60606003805461072a90612136565b6001600160a01b038216331415610fbe5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611035848484611345565b6001600160a01b0383163b1561106e5761105184848484611578565b61106e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061107f826112a7565b61109c57604051630a14c4b560e41b815260040160405180910390fd5b60006110a6611670565b90508051600014156110c757604051806020016040528060008152506110f2565b806110d18461167f565b6040516020016110e2929190611f88565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111235760405162461bcd60e51b815260040161081b90612007565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b0316331461116f5760405162461bcd60e51b815260040161081b90612007565b600b55565b6008546001600160a01b0316331461119e5760405162461bcd60e51b815260040161081b90612007565b6001600160a01b0381166112035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081b565b61120c81611526565b50565b6008546001600160a01b031633146112395760405162461bcd60e51b815260040161081b90612007565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6011546001600160a01b038216600090815260126020526040812054909182911115610715576011546001600160a01b0384166000908152601260205260409020546110f291906120f3565b6000816001111580156112bb575060005482105b8015610715575050600090815260046020526040902054600160e01b161590565b6000818060011161132c5760005481101561132c57600081815260046020526040902054600160e01b811661132a575b806110f257506000190160008181526004602052604090205461130c565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611350826112dc565b9050836001600160a01b0316816001600160a01b0316146113835760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113a157506113a1853361061b565b806113bc5750336113b1846107ad565b6001600160a01b0316145b9050806113dc57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661140357604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b8617811790915582166114a0576001830160008181526004602052604090205461149e57600054811461149e5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6109f68282604051806020016040528060008152506116ce565b6000806000611511858561183f565b9150915061151e816118af565b509392505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906115ad903390899088908890600401611fb7565b602060405180830381600087803b1580156115c757600080fd5b505af19250505080156115f7575060408051601f3d908101601f191682019092526115f491810190611ea2565b60015b611652573d808015611625576040519150601f19603f3d011682016040523d82523d6000602084013e61162a565b606091505b50805161164a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600e805461072a90612136565b604080516080810191829052607f0190826030600a8206018353600a90045b80156116bc57600183039250600a81066030018353600a900461169e565b50819003601f19909101908152919050565b6000546001600160a01b0384166116f757604051622e076360e81b815260040160405180910390fd5b826117155760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156117ea575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46117b36000878480600101955087611578565b6117d0576040516368d2bf6b60e11b815260040160405180910390fd5b8082106117685782600054146117e557600080fd5b61182f565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106117eb575b50600090815561106e9085838684565b6000808251604114156118765760208301516040840151606085015160001a61186a87828585611ab0565b945094505050506118a8565b8251604014156118a05760208301516040840151611895868383611b9d565b9350935050506118a8565b506000905060025b9250929050565b60008160048111156118d157634e487b7160e01b600052602160045260246000fd5b14156118da5750565b60018160048111156118fc57634e487b7160e01b600052602160045260246000fd5b141561194a5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161081b565b600281600481111561196c57634e487b7160e01b600052602160045260246000fd5b14156119ba5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161081b565b60038160048111156119dc57634e487b7160e01b600052602160045260246000fd5b1415611a355760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161081b565b6004816004811115611a5757634e487b7160e01b600052602160045260246000fd5b141561120c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161081b565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611ae75750600090506003611b94565b8460ff16601b14158015611aff57508460ff16601c14155b15611b105750600090506004611b94565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611b64573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611b8d57600060019250925050611b94565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b01611bbe87828885611ab0565b935093505050935093915050565b828054611bd890612136565b90600052602060002090601f016020900481019282611bfa5760008555611c40565b82601f10611c1357805160ff1916838001178555611c40565b82800160010185558215611c40579182015b82811115611c40578251825591602001919060010190611c25565b50611c4c929150611c50565b5090565b5b80821115611c4c5760008155600101611c51565b600067ffffffffffffffff80841115611c8057611c80612187565b604051601f8501601f19908116603f01168101908282118183101715611ca857611ca8612187565b81604052809350858152868686011115611cc157600080fd5b858560208301376000602087830101525050509392505050565b80358015158114611ceb57600080fd5b919050565b600082601f830112611d00578081fd5b6110f283833560208501611c65565b600060208284031215611d20578081fd5b81356110f28161219d565b60008060408385031215611d3d578081fd5b8235611d488161219d565b91506020830135611d588161219d565b809150509250929050565b600080600060608486031215611d77578081fd5b8335611d828161219d565b92506020840135611d928161219d565b929592945050506040919091013590565b60008060008060808587031215611db8578081fd5b8435611dc38161219d565b93506020850135611dd38161219d565b925060408501359150606085013567ffffffffffffffff811115611df5578182fd5b611e0187828801611cf0565b91505092959194509250565b60008060408385031215611e1f578182fd5b8235611e2a8161219d565b9150611e3860208401611cdb565b90509250929050565b60008060408385031215611e53578182fd5b8235611e5e8161219d565b946020939093013593505050565b600060208284031215611e7d578081fd5b6110f282611cdb565b600060208284031215611e97578081fd5b81356110f2816121b2565b600060208284031215611eb3578081fd5b81516110f2816121b2565b600060208284031215611ecf578081fd5b813567ffffffffffffffff811115611ee5578182fd5b8201601f81018413611ef5578182fd5b61166884823560208401611c65565b600060208284031215611f15578081fd5b5035919050565b60008060008060808587031215611f31578384fd5b843593506020850135925060408501359150606085013567ffffffffffffffff811115611df5578182fd5b60008151808452611f7481602086016020860161210a565b601f01601f19169290920160200192915050565b60008351611f9a81846020880161210a565b835190830190611fae81836020880161210a565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fea90830184611f5c565b9695505050505050565b6020815260006110f26020830184611f5c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600080821280156001600160ff1b038490038513161561205e5761205e612171565b600160ff1b839003841281161561207757612077612171565b50500190565b6000821982111561209057612090612171565b500190565b60008160001904831182151516156120af576120af612171565b500290565b60008083128015600160ff1b8501841216156120d2576120d2612171565b6001600160ff1b03840183138116156120ed576120ed612171565b50500390565b60008282101561210557612105612171565b500390565b60005b8381101561212557818101518382015260200161210d565b8381111561106e5750506000910152565b600181811c9082168061214a57607f821691505b6020821081141561216b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461120c57600080fd5b6001600160e01b03198116811461120c57600080fdfea26469706673582212200da65ba15535d25dede8432c242c8798002b082b85ef2108a562d1b7f5cc10b664736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000163bf7390d90dc9e6ac93cb92af83900d71cddb80000000000000000000000000d34fcb1615419e4ce896bfdc1838a0596ced30a000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6170692e6e656f632e696f2f6d657461646174612f6172746c61622f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _uriPrefix (string): https://api.neoc.io/metadata/artlab/
Arg [1] : _ehSignerAddress (address): 0x163bF7390D90dc9e6Ac93cB92aF83900d71CDdb8
Arg [2] : _wallet (address): 0x0D34FCb1615419E4cE896BFdC1838A0596ced30A
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 000000000000000000000000163bf7390d90dc9e6ac93cb92af83900d71cddb8
Arg [2] : 0000000000000000000000000d34fcb1615419e4ce896bfdc1838a0596ced30a
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [4] : 68747470733a2f2f6170692e6e656f632e696f2f6d657461646174612f617274
Arg [5] : 6c61622f00000000000000000000000000000000000000000000000000000000
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.