ERC-721
Overview
Max Total Supply
3,333 GOBLIN
Holders
495
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 GOBLINLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
goblinkingdom
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT // __ __ __ __ __ __ __ ______ // | \ | \ \ | \ | \ | \ | \ / \ // ______ ______ | ▓▓____ | ▓▓\▓▓_______ | ▓▓ __ \▓▓_______ ______ ____| ▓▓ ______ ______ ____ __ __ __ _| ▓▓_ | ▓▓▓▓▓▓\ // / \ / \| ▓▓ \| ▓▓ \ \| ▓▓ / \ \ \ / \ / ▓▓/ \| \ \ | \ | \ | \ ▓▓ \ | ▓▓_ \▓▓ // | ▓▓▓▓▓▓\ ▓▓▓▓▓▓\ ▓▓▓▓▓▓▓\ ▓▓ ▓▓ ▓▓▓▓▓▓▓\ ▓▓_/ ▓▓ ▓▓ ▓▓▓▓▓▓▓\ ▓▓▓▓▓▓\ ▓▓▓▓▓▓▓ ▓▓▓▓▓▓\ ▓▓▓▓▓▓\▓▓▓▓\ | ▓▓ | ▓▓ | ▓▓\▓▓▓▓▓▓ | ▓▓ \ // | ▓▓ | ▓▓ ▓▓ | ▓▓ ▓▓ | ▓▓ ▓▓ ▓▓ ▓▓ | ▓▓ ▓▓ ▓▓| ▓▓ ▓▓ | ▓▓ ▓▓ | ▓▓ ▓▓ | ▓▓ ▓▓ | ▓▓ ▓▓ | ▓▓ | ▓▓ | ▓▓ | ▓▓ | ▓▓ | ▓▓ __| ▓▓▓▓ // | ▓▓__| ▓▓ ▓▓__/ ▓▓ ▓▓__/ ▓▓ ▓▓ ▓▓ ▓▓ | ▓▓ ▓▓▓▓▓▓\| ▓▓ ▓▓ | ▓▓ ▓▓__| ▓▓ ▓▓__| ▓▓ ▓▓__/ ▓▓ ▓▓ | ▓▓ | ▓▓__| ▓▓_/ ▓▓_/ ▓▓ | ▓▓| \ ▓▓ // \▓▓ ▓▓\▓▓ ▓▓ ▓▓ ▓▓ ▓▓ ▓▓ ▓▓ | ▓▓ ▓▓ \▓▓\ ▓▓ ▓▓ | ▓▓\▓▓ ▓▓\▓▓ ▓▓\▓▓ ▓▓ ▓▓ | ▓▓ | ▓▓ \\▓▓ ▓▓ ▓▓ \▓▓ ▓▓ ▓▓ // _\▓▓▓▓▓▓▓ \▓▓▓▓▓▓ \▓▓▓▓▓▓▓ \▓▓\▓▓\▓▓ \▓▓\▓▓ \▓▓\▓▓\▓▓ \▓▓_\▓▓▓▓▓▓▓ \▓▓▓▓▓▓▓ \▓▓▓▓▓▓ \▓▓ \▓▓ \▓▓\▓▓ \▓▓▓▓▓\▓▓▓▓ \▓▓▓▓ \▓▓ // | \__| ▓▓ | \__| ▓▓ // \▓▓ ▓▓ \▓▓ ▓▓ // \▓▓▓▓▓▓ \▓▓▓▓▓▓ // pragma solidity >=0.7.0 <0.9.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "erc721a/contracts/ERC721A.sol"; pragma solidity >=0.7.0 <0.9.0; contract goblinkingdom is ERC721A, Ownable { /** ERRORS */ error ExceedsMaxSupply(); error InvalidAmount(); error FreeMintOver(); error ExceedsWalletLimit(); error InsufficientValue(); error TokenNotFound(); error ContractMint(); error SaleInactive(); using Strings for uint256; uint256 public cost = 0.001 ether; uint256 public maxSupply = 3333; uint256 public maxMintAmountPerTx = 20; uint256 public freeMaxMintPerWallet = 5; uint256 public FREE_MINT_MAX = 1000; bool public saleActive = false; bool public revealed = true; mapping(address => uint256) public freeWallets; string _baseTokenURI; constructor(string memory baseURI) ERC721A("goblinkingdom", "GOBLIN") payable { _baseTokenURI = baseURI; } modifier mintCompliance(uint256 _mintAmount) { if (!saleActive) revert SaleInactive(); if (msg.sender != tx.origin) revert ContractMint(); if (totalSupply() + _mintAmount > maxSupply) revert ExceedsMaxSupply(); if (_mintAmount < 1 || _mintAmount > maxMintAmountPerTx) revert InvalidAmount(); _; } function freeMint(uint256 _mintAmount) public mintCompliance(_mintAmount) { if (!isFreeMint()) revert FreeMintOver(); if (freeWallets[msg.sender] + _mintAmount > freeMaxMintPerWallet) revert ExceedsWalletLimit(); unchecked { freeWallets[msg.sender] += _mintAmount; } _safeMint(msg.sender, _mintAmount); } function paidMint(uint256 _mintAmount) external payable mintCompliance(_mintAmount) { if (msg.value < (cost * _mintAmount)) revert InsufficientValue(); _safeMint(msg.sender, _mintAmount); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function isFreeMint() public view returns (bool) { return totalSupply() < FREE_MINT_MAX; } function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner { _safeMint(_receiver, _mintAmount); } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxSupply(uint256 _maxSupply) external onlyOwner { maxSupply = _maxSupply; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function toggleSaleState() public onlyOwner { saleActive = !saleActive; } function setMaxFreeMint(uint256 _max) public onlyOwner { FREE_MINT_MAX = _max; } function setMaxFreeMintPerWallet(uint256 _max) public onlyOwner { freeMaxMintPerWallet = _max; } function withdraw() public onlyOwner { payable(owner()).transfer(address(this).balance); } /** METADATA */ function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function setRevealed(bool state) public onlyOwner { revealed = state; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { if (!_exists(_tokenId)) revert TokenNotFound(); if (!revealed) return _baseURI(); return string(abi.encodePacked(_baseURI(), _tokenId.toString(), ".json")); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './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 // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.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); }
{ "optimizer": { "enabled": true, "runs": 1000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"payable","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":"ContractMint","type":"error"},{"inputs":[],"name":"ExceedsMaxSupply","type":"error"},{"inputs":[],"name":"ExceedsWalletLimit","type":"error"},{"inputs":[],"name":"FreeMintOver","type":"error"},{"inputs":[],"name":"InsufficientValue","type":"error"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"SaleInactive","type":"error"},{"inputs":[],"name":"TokenNotFound","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":[],"name":"FREE_MINT_MAX","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":[{"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":[],"name":"freeMaxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeWallets","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":"isFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"paidMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFreeMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setRevealed","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":[],"name":"toggleSaleState","outputs":[],"stateMutability":"nonpayable","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604081905266038d7ea4c68000600955610d05600a556014600b556005600c556103e8600d55600e805461ffff19166101001790556200237e388190039081908339810160408190526200005591620001e6565b604080518082018252600d81526c676f626c696e6b696e67646f6d60981b60208083019182528351808501909452600684526523a7a12624a760d11b908401528151919291620000a89160029162000140565b508051620000be90600390602084019062000140565b5050600160005550620000d133620000ee565b8051620000e690601090602084019062000140565b505062000315565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014e90620002c2565b90600052602060002090601f016020900481019282620001725760008555620001bd565b82601f106200018d57805160ff1916838001178555620001bd565b82800160010185558215620001bd579182015b82811115620001bd578251825591602001919060010190620001a0565b50620001cb929150620001cf565b5090565b5b80821115620001cb5760008155600101620001d0565b60006020808385031215620001fa57600080fd5b82516001600160401b03808211156200021257600080fd5b818501915085601f8301126200022757600080fd5b8151818111156200023c576200023c620002ff565b604051601f8201601f19908116603f01168101908382118183101715620002675762000267620002ff565b8160405282815288868487010111156200028057600080fd5b600093505b82841015620002a4578484018601518185018701529285019262000285565b82841115620002b65760008684830101525b98975050505050505050565b600181811c90821680620002d757607f821691505b60208210811415620002f957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61205980620003256000396000f3fe6080604052600436106102855760003560e01c806370a0823111610153578063b88d4fde116100cb578063e0a808531161007f578063efbd73f411610064578063efbd73f4146106dd578063f2fde38b146106fd578063f77b1edd1461071d57600080fd5b8063e0a8085314610674578063e985e9c51461069457600080fd5b8063c87b56dd116100b0578063c87b56dd14610629578063d5abeb0114610649578063daaeec861461065f57600080fd5b8063b88d4fde146105f4578063c2d05a6e1461061457600080fd5b80638da5cb5b1161012257806395d89b411161010757806395d89b411461059f578063a22cb465146105b4578063b071401b146105d457600080fd5b80638da5cb5b1461056b57806394354fd01461058957600080fd5b806370a08231146104f6578063715018a614610516578063742a4c9b1461052b5780637c928fe91461054b57600080fd5b80633ccfd60b116102015780636352211e116101b557806366112b6b1161019a57806366112b6b146104a657806368428a1b146104bc5780636f8b44b0146104d657600080fd5b80636352211e1461047357806365cde7331461049357600080fd5b806344a0d68a116101e657806344a0d68a14610414578063518302271461043457806355f804b31461045357600080fd5b80633ccfd60b146103df57806342842e0e146103f457600080fd5b8063095ea7b31161025857806318160ddd1161023d57806318160ddd1461038c57806323b872dd146103a95780633bc4b025146103c957600080fd5b8063095ea7b31461035457806313faede61461037657600080fd5b806301ffc9a71461028a57806306bb99e2146102bf57806306fdde03146102fa578063081812fc1461031c575b600080fd5b34801561029657600080fd5b506102aa6102a5366004611ce3565b61073d565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102ec6102da366004611b0e565b600f6020526000908152604090205481565b6040519081526020016102b6565b34801561030657600080fd5b5061030f6107da565b6040516102b69190611e8a565b34801561032857600080fd5b5061033c610337366004611d8f565b61086c565b6040516001600160a01b0390911681526020016102b6565b34801561036057600080fd5b5061037461036f366004611c9e565b6108c9565b005b34801561038257600080fd5b506102ec60095481565b34801561039857600080fd5b5060015460005403600019016102ec565b3480156103b557600080fd5b506103746103c4366004611b5c565b6109db565b3480156103d557600080fd5b506102ec600d5481565b3480156103eb57600080fd5b506103746109eb565b34801561040057600080fd5b5061037461040f366004611b5c565b610a74565b34801561042057600080fd5b5061037461042f366004611d8f565b610a8f565b34801561044057600080fd5b50600e546102aa90610100900460ff1681565b34801561045f57600080fd5b5061037461046e366004611d1d565b610adc565b34801561047f57600080fd5b5061033c61048e366004611d8f565b610b30565b6103746104a1366004611d8f565b610b3b565b3480156104b257600080fd5b506102ec600c5481565b3480156104c857600080fd5b50600e546102aa9060ff1681565b3480156104e257600080fd5b506103746104f1366004611d8f565b610c3d565b34801561050257600080fd5b506102ec610511366004611b0e565b610c8a565b34801561052257600080fd5b50610374610cf2565b34801561053757600080fd5b50610374610546366004611d8f565b610d46565b34801561055757600080fd5b50610374610566366004611d8f565b610d93565b34801561057757600080fd5b506008546001600160a01b031661033c565b34801561059557600080fd5b506102ec600b5481565b3480156105ab57600080fd5b5061030f610ef3565b3480156105c057600080fd5b506103746105cf366004611c74565b610f02565b3480156105e057600080fd5b506103746105ef366004611d8f565b610fb1565b34801561060057600080fd5b5061037461060f366004611b98565b610ffe565b34801561062057600080fd5b506102aa611048565b34801561063557600080fd5b5061030f610644366004611d8f565b611066565b34801561065557600080fd5b506102ec600a5481565b34801561066b57600080fd5b506103746110f6565b34801561068057600080fd5b5061037461068f366004611cc8565b611152565b3480156106a057600080fd5b506102aa6106af366004611b29565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106e957600080fd5b506103746106f8366004611da8565b6111b4565b34801561070957600080fd5b50610374610718366004611b0e565b611206565b34801561072957600080fd5b50610374610738366004611d8f565b6112d3565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614806107a057507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b806107d457507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600280546107e990611f2b565b80601f016020809104026020016040519081016040528092919081815260200182805461081590611f2b565b80156108625780601f1061083757610100808354040283529160200191610862565b820191906000526020600020905b81548152906001019060200180831161084557829003601f168201915b5050505050905090565b600061087782611320565b6108ad576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108d482611355565b9050806001600160a01b0316836001600160a01b03161415610922576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216146109725761093c81336106af565b610972576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109e68383836113de565b505050565b6008546001600160a01b03163314610a385760405162461bcd60e51b8152602060048201819052602482015260008051602061200483398151915260448201526064015b60405180910390fd5b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610a71573d6000803e3d6000fd5b50565b6109e683838360405180602001604052806000815250610ffe565b6008546001600160a01b03163314610ad75760405162461bcd60e51b815260206004820181905260248201526000805160206120048339815191526044820152606401610a2f565b600955565b6008546001600160a01b03163314610b245760405162461bcd60e51b815260206004820181905260248201526000805160206120048339815191526044820152606401610a2f565b6109e660108383611a49565b60006107d482611355565b600e54819060ff16610b6057604051630fe219dd60e21b815260040160405180910390fd5b333214610b80576040516372f67c2360e01b815260040160405180910390fd5b600a546001546000548391900360001901610b9b9190611e9d565b1115610bba5760405163c30436e960e01b815260040160405180910390fd5b6001811080610bca5750600b5481115b15610be85760405163162908e360e11b815260040160405180910390fd5b81600954610bf69190611ec9565b341015610c2f576040517f1101129400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3933836115f3565b5050565b6008546001600160a01b03163314610c855760405162461bcd60e51b815260206004820181905260248201526000805160206120048339815191526044820152606401610a2f565b600a55565b60006001600160a01b038216610ccc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d3a5760405162461bcd60e51b815260206004820181905260248201526000805160206120048339815191526044820152606401610a2f565b610d44600061160d565b565b6008546001600160a01b03163314610d8e5760405162461bcd60e51b815260206004820181905260248201526000805160206120048339815191526044820152606401610a2f565b600d55565b600e54819060ff16610db857604051630fe219dd60e21b815260040160405180910390fd5b333214610dd8576040516372f67c2360e01b815260040160405180910390fd5b600a546001546000548391900360001901610df39190611e9d565b1115610e125760405163c30436e960e01b815260040160405180910390fd5b6001811080610e225750600b5481115b15610e405760405163162908e360e11b815260040160405180910390fd5b610e48611048565b610e7e576040517ff1e7b06c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54336000908152600f6020526040902054610e9c908490611e9d565b1115610ed4576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000818152600f60205260409020805484019055610c3990836115f3565b6060600380546107e990611f2b565b6001600160a01b038216331415610f45576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610ff95760405162461bcd60e51b815260206004820181905260248201526000805160206120048339815191526044820152606401610a2f565b600b55565b6110098484846113de565b6001600160a01b0383163b15611042576110258484848461166c565b611042576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000600d546110606001546000546000199190030190565b10905090565b606061107182611320565b6110a7576040517fcbdb7b3000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e54610100900460ff166110be576107d4611764565b6110c6611764565b6110cf83611773565b6040516020016110e0929190611df7565b6040516020818303038152906040529050919050565b6008546001600160a01b0316331461113e5760405162461bcd60e51b815260206004820181905260248201526000805160206120048339815191526044820152606401610a2f565b600e805460ff19811660ff90911615179055565b6008546001600160a01b0316331461119a5760405162461bcd60e51b815260206004820181905260248201526000805160206120048339815191526044820152606401610a2f565b600e80549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146111fc5760405162461bcd60e51b815260206004820181905260248201526000805160206120048339815191526044820152606401610a2f565b610c3981836115f3565b6008546001600160a01b0316331461124e5760405162461bcd60e51b815260206004820181905260248201526000805160206120048339815191526044820152606401610a2f565b6001600160a01b0381166112ca5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a2f565b610a718161160d565b6008546001600160a01b0316331461131b5760405162461bcd60e51b815260206004820181905260248201526000805160206120048339815191526044820152606401610a2f565b600c55565b600081600111158015611334575060005482105b80156107d4575050600090815260046020526040902054600160e01b161590565b600081806001116113ac576000548110156113ac57600081815260046020526040902054600160e01b81166113aa575b806113a3575060001901600081815260046020526040902054611385565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113e982611355565b9050836001600160a01b0316816001600160a01b031614611436576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b0386161480611454575061145485336106af565b8061146f5750336114648461086c565b6001600160a01b0316145b9050806114a8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166114e8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000838152600660209081526040808320805473ffffffffffffffffffffffffffffffffffffffff191690556001600160a01b0388811684526005835281842080546000190190558716835280832080546001019055858352600490915290207c02000000000000000000000000000000000000000000000000000000004260a01b8617811790915582166115ab57600183016000818152600460205260409020546115a95760005481146115a95760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610c398282604051806020016040528060008152506118a5565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116a1903390899088908890600401611e4e565b602060405180830381600087803b1580156116bb57600080fd5b505af19250505080156116eb575060408051601f3d908101601f191682019092526116e891810190611d00565b60015b611746573d808015611719576040519150601f19603f3d011682016040523d82523d6000602084013e61171e565b606091505b50805161173e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601080546107e990611f2b565b6060816117b357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156117dd57806117c781611f66565b91506117d69050600a83611eb5565b91506117b7565b60008167ffffffffffffffff8111156117f8576117f8611fd7565b6040519080825280601f01601f191660200182016040528015611822576020820181803683370190505b5090505b841561175c57611837600183611ee8565b9150611844600a86611f81565b61184f906030611e9d565b60f81b81838151811061186457611864611fc1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061189e600a86611eb5565b9450611826565b6000546001600160a01b0384166118e8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8261191f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156119f4575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119bd600087848060010195508761166c565b6119da576040516368d2bf6b60e11b815260040160405180910390fd5b8082106119725782600054146119ef57600080fd5b611a39565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106119f5575b5060009081556110429085838684565b828054611a5590611f2b565b90600052602060002090601f016020900481019282611a775760008555611abd565b82601f10611a905782800160ff19823516178555611abd565b82800160010185558215611abd579182015b82811115611abd578235825591602001919060010190611aa2565b50611ac9929150611acd565b5090565b5b80821115611ac95760008155600101611ace565b80356001600160a01b0381168114611af957600080fd5b919050565b80358015158114611af957600080fd5b600060208284031215611b2057600080fd5b6113a382611ae2565b60008060408385031215611b3c57600080fd5b611b4583611ae2565b9150611b5360208401611ae2565b90509250929050565b600080600060608486031215611b7157600080fd5b611b7a84611ae2565b9250611b8860208501611ae2565b9150604084013590509250925092565b60008060008060808587031215611bae57600080fd5b611bb785611ae2565b9350611bc560208601611ae2565b925060408501359150606085013567ffffffffffffffff80821115611be957600080fd5b818701915087601f830112611bfd57600080fd5b813581811115611c0f57611c0f611fd7565b604051601f8201601f19908116603f01168101908382118183101715611c3757611c37611fd7565b816040528281528a6020848701011115611c5057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611c8757600080fd5b611c9083611ae2565b9150611b5360208401611afe565b60008060408385031215611cb157600080fd5b611cba83611ae2565b946020939093013593505050565b600060208284031215611cda57600080fd5b6113a382611afe565b600060208284031215611cf557600080fd5b81356113a381611fed565b600060208284031215611d1257600080fd5b81516113a381611fed565b60008060208385031215611d3057600080fd5b823567ffffffffffffffff80821115611d4857600080fd5b818501915085601f830112611d5c57600080fd5b813581811115611d6b57600080fd5b866020828501011115611d7d57600080fd5b60209290920196919550909350505050565b600060208284031215611da157600080fd5b5035919050565b60008060408385031215611dbb57600080fd5b82359150611b5360208401611ae2565b60008151808452611de3816020860160208601611eff565b601f01601f19169290920160200192915050565b60008351611e09818460208801611eff565b835190830190611e1d818360208801611eff565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611e806080830184611dcb565b9695505050505050565b6020815260006113a36020830184611dcb565b60008219821115611eb057611eb0611f95565b500190565b600082611ec457611ec4611fab565b500490565b6000816000190483118215151615611ee357611ee3611f95565b500290565b600082821015611efa57611efa611f95565b500390565b60005b83811015611f1a578181015183820152602001611f02565b838111156110425750506000910152565b600181811c90821680611f3f57607f821691505b60208210811415611f6057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f7a57611f7a611f95565b5060010190565b600082611f9057611f90611fab565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a7157600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122032c02fecbce57884a6b65a8efd00945a89a14ac831e293e63161a1cd798cd23964736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102855760003560e01c806370a0823111610153578063b88d4fde116100cb578063e0a808531161007f578063efbd73f411610064578063efbd73f4146106dd578063f2fde38b146106fd578063f77b1edd1461071d57600080fd5b8063e0a8085314610674578063e985e9c51461069457600080fd5b8063c87b56dd116100b0578063c87b56dd14610629578063d5abeb0114610649578063daaeec861461065f57600080fd5b8063b88d4fde146105f4578063c2d05a6e1461061457600080fd5b80638da5cb5b1161012257806395d89b411161010757806395d89b411461059f578063a22cb465146105b4578063b071401b146105d457600080fd5b80638da5cb5b1461056b57806394354fd01461058957600080fd5b806370a08231146104f6578063715018a614610516578063742a4c9b1461052b5780637c928fe91461054b57600080fd5b80633ccfd60b116102015780636352211e116101b557806366112b6b1161019a57806366112b6b146104a657806368428a1b146104bc5780636f8b44b0146104d657600080fd5b80636352211e1461047357806365cde7331461049357600080fd5b806344a0d68a116101e657806344a0d68a14610414578063518302271461043457806355f804b31461045357600080fd5b80633ccfd60b146103df57806342842e0e146103f457600080fd5b8063095ea7b31161025857806318160ddd1161023d57806318160ddd1461038c57806323b872dd146103a95780633bc4b025146103c957600080fd5b8063095ea7b31461035457806313faede61461037657600080fd5b806301ffc9a71461028a57806306bb99e2146102bf57806306fdde03146102fa578063081812fc1461031c575b600080fd5b34801561029657600080fd5b506102aa6102a5366004611ce3565b61073d565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102ec6102da366004611b0e565b600f6020526000908152604090205481565b6040519081526020016102b6565b34801561030657600080fd5b5061030f6107da565b6040516102b69190611e8a565b34801561032857600080fd5b5061033c610337366004611d8f565b61086c565b6040516001600160a01b0390911681526020016102b6565b34801561036057600080fd5b5061037461036f366004611c9e565b6108c9565b005b34801561038257600080fd5b506102ec60095481565b34801561039857600080fd5b5060015460005403600019016102ec565b3480156103b557600080fd5b506103746103c4366004611b5c565b6109db565b3480156103d557600080fd5b506102ec600d5481565b3480156103eb57600080fd5b506103746109eb565b34801561040057600080fd5b5061037461040f366004611b5c565b610a74565b34801561042057600080fd5b5061037461042f366004611d8f565b610a8f565b34801561044057600080fd5b50600e546102aa90610100900460ff1681565b34801561045f57600080fd5b5061037461046e366004611d1d565b610adc565b34801561047f57600080fd5b5061033c61048e366004611d8f565b610b30565b6103746104a1366004611d8f565b610b3b565b3480156104b257600080fd5b506102ec600c5481565b3480156104c857600080fd5b50600e546102aa9060ff1681565b3480156104e257600080fd5b506103746104f1366004611d8f565b610c3d565b34801561050257600080fd5b506102ec610511366004611b0e565b610c8a565b34801561052257600080fd5b50610374610cf2565b34801561053757600080fd5b50610374610546366004611d8f565b610d46565b34801561055757600080fd5b50610374610566366004611d8f565b610d93565b34801561057757600080fd5b506008546001600160a01b031661033c565b34801561059557600080fd5b506102ec600b5481565b3480156105ab57600080fd5b5061030f610ef3565b3480156105c057600080fd5b506103746105cf366004611c74565b610f02565b3480156105e057600080fd5b506103746105ef366004611d8f565b610fb1565b34801561060057600080fd5b5061037461060f366004611b98565b610ffe565b34801561062057600080fd5b506102aa611048565b34801561063557600080fd5b5061030f610644366004611d8f565b611066565b34801561065557600080fd5b506102ec600a5481565b34801561066b57600080fd5b506103746110f6565b34801561068057600080fd5b5061037461068f366004611cc8565b611152565b3480156106a057600080fd5b506102aa6106af366004611b29565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106e957600080fd5b506103746106f8366004611da8565b6111b4565b34801561070957600080fd5b50610374610718366004611b0e565b611206565b34801561072957600080fd5b50610374610738366004611d8f565b6112d3565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614806107a057507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b806107d457507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600280546107e990611f2b565b80601f016020809104026020016040519081016040528092919081815260200182805461081590611f2b565b80156108625780601f1061083757610100808354040283529160200191610862565b820191906000526020600020905b81548152906001019060200180831161084557829003601f168201915b5050505050905090565b600061087782611320565b6108ad576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108d482611355565b9050806001600160a01b0316836001600160a01b03161415610922576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216146109725761093c81336106af565b610972576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109e68383836113de565b505050565b6008546001600160a01b03163314610a385760405162461bcd60e51b8152602060048201819052602482015260008051602061200483398151915260448201526064015b60405180910390fd5b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610a71573d6000803e3d6000fd5b50565b6109e683838360405180602001604052806000815250610ffe565b6008546001600160a01b03163314610ad75760405162461bcd60e51b815260206004820181905260248201526000805160206120048339815191526044820152606401610a2f565b600955565b6008546001600160a01b03163314610b245760405162461bcd60e51b815260206004820181905260248201526000805160206120048339815191526044820152606401610a2f565b6109e660108383611a49565b60006107d482611355565b600e54819060ff16610b6057604051630fe219dd60e21b815260040160405180910390fd5b333214610b80576040516372f67c2360e01b815260040160405180910390fd5b600a546001546000548391900360001901610b9b9190611e9d565b1115610bba5760405163c30436e960e01b815260040160405180910390fd5b6001811080610bca5750600b5481115b15610be85760405163162908e360e11b815260040160405180910390fd5b81600954610bf69190611ec9565b341015610c2f576040517f1101129400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3933836115f3565b5050565b6008546001600160a01b03163314610c855760405162461bcd60e51b815260206004820181905260248201526000805160206120048339815191526044820152606401610a2f565b600a55565b60006001600160a01b038216610ccc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d3a5760405162461bcd60e51b815260206004820181905260248201526000805160206120048339815191526044820152606401610a2f565b610d44600061160d565b565b6008546001600160a01b03163314610d8e5760405162461bcd60e51b815260206004820181905260248201526000805160206120048339815191526044820152606401610a2f565b600d55565b600e54819060ff16610db857604051630fe219dd60e21b815260040160405180910390fd5b333214610dd8576040516372f67c2360e01b815260040160405180910390fd5b600a546001546000548391900360001901610df39190611e9d565b1115610e125760405163c30436e960e01b815260040160405180910390fd5b6001811080610e225750600b5481115b15610e405760405163162908e360e11b815260040160405180910390fd5b610e48611048565b610e7e576040517ff1e7b06c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54336000908152600f6020526040902054610e9c908490611e9d565b1115610ed4576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000818152600f60205260409020805484019055610c3990836115f3565b6060600380546107e990611f2b565b6001600160a01b038216331415610f45576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610ff95760405162461bcd60e51b815260206004820181905260248201526000805160206120048339815191526044820152606401610a2f565b600b55565b6110098484846113de565b6001600160a01b0383163b15611042576110258484848461166c565b611042576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000600d546110606001546000546000199190030190565b10905090565b606061107182611320565b6110a7576040517fcbdb7b3000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e54610100900460ff166110be576107d4611764565b6110c6611764565b6110cf83611773565b6040516020016110e0929190611df7565b6040516020818303038152906040529050919050565b6008546001600160a01b0316331461113e5760405162461bcd60e51b815260206004820181905260248201526000805160206120048339815191526044820152606401610a2f565b600e805460ff19811660ff90911615179055565b6008546001600160a01b0316331461119a5760405162461bcd60e51b815260206004820181905260248201526000805160206120048339815191526044820152606401610a2f565b600e80549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146111fc5760405162461bcd60e51b815260206004820181905260248201526000805160206120048339815191526044820152606401610a2f565b610c3981836115f3565b6008546001600160a01b0316331461124e5760405162461bcd60e51b815260206004820181905260248201526000805160206120048339815191526044820152606401610a2f565b6001600160a01b0381166112ca5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a2f565b610a718161160d565b6008546001600160a01b0316331461131b5760405162461bcd60e51b815260206004820181905260248201526000805160206120048339815191526044820152606401610a2f565b600c55565b600081600111158015611334575060005482105b80156107d4575050600090815260046020526040902054600160e01b161590565b600081806001116113ac576000548110156113ac57600081815260046020526040902054600160e01b81166113aa575b806113a3575060001901600081815260046020526040902054611385565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113e982611355565b9050836001600160a01b0316816001600160a01b031614611436576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b0386161480611454575061145485336106af565b8061146f5750336114648461086c565b6001600160a01b0316145b9050806114a8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166114e8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000838152600660209081526040808320805473ffffffffffffffffffffffffffffffffffffffff191690556001600160a01b0388811684526005835281842080546000190190558716835280832080546001019055858352600490915290207c02000000000000000000000000000000000000000000000000000000004260a01b8617811790915582166115ab57600183016000818152600460205260409020546115a95760005481146115a95760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610c398282604051806020016040528060008152506118a5565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116a1903390899088908890600401611e4e565b602060405180830381600087803b1580156116bb57600080fd5b505af19250505080156116eb575060408051601f3d908101601f191682019092526116e891810190611d00565b60015b611746573d808015611719576040519150601f19603f3d011682016040523d82523d6000602084013e61171e565b606091505b50805161173e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601080546107e990611f2b565b6060816117b357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156117dd57806117c781611f66565b91506117d69050600a83611eb5565b91506117b7565b60008167ffffffffffffffff8111156117f8576117f8611fd7565b6040519080825280601f01601f191660200182016040528015611822576020820181803683370190505b5090505b841561175c57611837600183611ee8565b9150611844600a86611f81565b61184f906030611e9d565b60f81b81838151811061186457611864611fc1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061189e600a86611eb5565b9450611826565b6000546001600160a01b0384166118e8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8261191f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156119f4575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119bd600087848060010195508761166c565b6119da576040516368d2bf6b60e11b815260040160405180910390fd5b8082106119725782600054146119ef57600080fd5b611a39565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106119f5575b5060009081556110429085838684565b828054611a5590611f2b565b90600052602060002090601f016020900481019282611a775760008555611abd565b82601f10611a905782800160ff19823516178555611abd565b82800160010185558215611abd579182015b82811115611abd578235825591602001919060010190611aa2565b50611ac9929150611acd565b5090565b5b80821115611ac95760008155600101611ace565b80356001600160a01b0381168114611af957600080fd5b919050565b80358015158114611af957600080fd5b600060208284031215611b2057600080fd5b6113a382611ae2565b60008060408385031215611b3c57600080fd5b611b4583611ae2565b9150611b5360208401611ae2565b90509250929050565b600080600060608486031215611b7157600080fd5b611b7a84611ae2565b9250611b8860208501611ae2565b9150604084013590509250925092565b60008060008060808587031215611bae57600080fd5b611bb785611ae2565b9350611bc560208601611ae2565b925060408501359150606085013567ffffffffffffffff80821115611be957600080fd5b818701915087601f830112611bfd57600080fd5b813581811115611c0f57611c0f611fd7565b604051601f8201601f19908116603f01168101908382118183101715611c3757611c37611fd7565b816040528281528a6020848701011115611c5057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611c8757600080fd5b611c9083611ae2565b9150611b5360208401611afe565b60008060408385031215611cb157600080fd5b611cba83611ae2565b946020939093013593505050565b600060208284031215611cda57600080fd5b6113a382611afe565b600060208284031215611cf557600080fd5b81356113a381611fed565b600060208284031215611d1257600080fd5b81516113a381611fed565b60008060208385031215611d3057600080fd5b823567ffffffffffffffff80821115611d4857600080fd5b818501915085601f830112611d5c57600080fd5b813581811115611d6b57600080fd5b866020828501011115611d7d57600080fd5b60209290920196919550909350505050565b600060208284031215611da157600080fd5b5035919050565b60008060408385031215611dbb57600080fd5b82359150611b5360208401611ae2565b60008151808452611de3816020860160208601611eff565b601f01601f19169290920160200192915050565b60008351611e09818460208801611eff565b835190830190611e1d818360208801611eff565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611e806080830184611dcb565b9695505050505050565b6020815260006113a36020830184611dcb565b60008219821115611eb057611eb0611f95565b500190565b600082611ec457611ec4611fab565b500490565b6000816000190483118215151615611ee357611ee3611f95565b500290565b600082821015611efa57611efa611f95565b500390565b60005b83811015611f1a578181015183820152602001611f02565b838111156110425750506000910152565b600181811c90821680611f3f57607f821691505b60208210811415611f6057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f7a57611f7a611f95565b5060010190565b600082611f9057611f90611fab565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a7157600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122032c02fecbce57884a6b65a8efd00945a89a14ac831e293e63161a1cd798cd23964736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
2784:3405:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4880:607:4;;;;;;;;;;-1:-1:-1;4880:607:4;;;;;:::i;:::-;;:::i;:::-;;;6376:14:6;;6369:22;6351:41;;6339:2;6324:18;4880:607:4;;;;;;;;3380:46:3;;;;;;;;;;-1:-1:-1;3380:46:3;;;;;:::i;:::-;;;;;;;;;;;;;;;;;7541:25:6;;;7529:2;7514:18;3380:46:3;7395:177:6;9768:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11769:200::-;;;;;;;;;;-1:-1:-1;11769:200:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5628:55:6;;;5610:74;;5598:2;5583:18;11769:200:4;5464:226:6;11245:463:4;;;;;;;;;;-1:-1:-1;11245:463:4;;;;;:::i;:::-;;:::i;:::-;;3102:33:3;;;;;;;;;;;;;;;;3963:309:4;;;;;;;;;;-1:-1:-1;4595:1:3;4225:12:4;4016:7;4209:13;:28;-1:-1:-1;;4209:46:4;3963:309;;12629:164;;;;;;;;;;-1:-1:-1;12629:164:4;;;;;:::i;:::-;;:::i;3265:35:3:-;;;;;;;;;;;;;;;;5457:98;;;;;;;;;;;;;:::i;12859:179:4:-;;;;;;;;;;-1:-1:-1;12859:179:4;;;;;:::i;:::-;;:::i;4845:74:3:-;;;;;;;;;;-1:-1:-1;4845:74:3;;;;;:::i;:::-;;:::i;3344:27::-;;;;;;;;;;-1:-1:-1;3344:27:3;;;;;;;;;;;5694:100;;;;;;;;;;-1:-1:-1;5694:100:3;;;;;:::i;:::-;;:::i;9564:142:4:-;;;;;;;;;;-1:-1:-1;9564:142:4;;;;;:::i;:::-;;:::i;4247:220:3:-;;;;;;:::i;:::-;;:::i;3219:39::-;;;;;;;;;;;;;;;;3309:30;;;;;;;;;;-1:-1:-1;3309:30:3;;;;;;;;4926:96;;;;;;;;;;-1:-1:-1;4926:96:3;;;;;:::i;:::-;;:::i;5546:221:4:-;;;;;;;;;;-1:-1:-1;5546:221:4;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;5253:88:3:-;;;;;;;;;;-1:-1:-1;5253:88:3;;;;;:::i;:::-;;:::i;3912:329::-;;;;;;;;;;-1:-1:-1;3912:329:3;;;;;:::i;:::-;;:::i;1036:85:0:-;;;;;;;;;;-1:-1:-1;1108:6:0;;-1:-1:-1;;;;;1108:6:0;1036:85;;3176:38:3;;;;;;;;;;;;;;;;9930:102:4;;;;;;;;;;;;;:::i;12036:303::-;;;;;;;;;;-1:-1:-1;12036:303:4;;;;;:::i;:::-;;:::i;5028:130:3:-;;;;;;;;;;-1:-1:-1;5028:130:3;;;;;:::i;:::-;;:::i;13104:385:4:-;;;;;;;;;;-1:-1:-1;13104:385:4;;;;;:::i;:::-;;:::i;4608:98:3:-;;;;;;;;;;;;;:::i;5887:297::-;;;;;;;;;;-1:-1:-1;5887:297:3;;;;;:::i;:::-;;:::i;3140:31::-;;;;;;;;;;;;;;;;5166:81;;;;;;;;;;;;;:::i;5800:::-;;;;;;;;;;-1:-1:-1;5800:81:3;;;;;:::i;:::-;;:::i;12405:162:4:-;;;;;;;;;;-1:-1:-1;12405:162:4;;;;;:::i;:::-;-1:-1:-1;;;;;12525:25:4;;;12502:4;12525:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12405:162;4712:127:3;;;;;;;;;;-1:-1:-1;4712:127:3;;;;;:::i;:::-;;:::i;1918:198:0:-;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;5347:104:3:-;;;;;;;;;;-1:-1:-1;5347:104:3;;;;;:::i;:::-;;:::i;4880:607:4:-;4965:4;5260:25;-1:-1:-1;;;;;;5260:25:4;;;;:101;;-1:-1:-1;5336:25:4;-1:-1:-1;;;;;;5336:25:4;;;5260:101;:177;;;-1:-1:-1;5412:25:4;-1:-1:-1;;;;;;5412:25:4;;;5260:177;5241:196;4880:607;-1:-1:-1;;4880:607:4:o;9768:98::-;9822:13;9854:5;9847:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9768:98;:::o;11769:200::-;11837:7;11861:16;11869:7;11861;:16::i;:::-;11856:64;;11886:34;;;;;;;;;;;;;;11856:64;-1:-1:-1;11938:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;11938:24:4;;11769:200::o;11245:463::-;11317:13;11349:27;11368:7;11349:18;:27::i;:::-;11317:61;;11398:5;-1:-1:-1;;;;;11392:11:4;:2;-1:-1:-1;;;;;11392:11:4;;11388:48;;;11412:24;;;;;;;;;;;;;;11388:48;27446:10;-1:-1:-1;;;;;11451:28:4;;;11447:172;;11498:44;11515:5;27446:10;12405:162;:::i;11498:44::-;11493:126;;11569:35;;;;;;;;;;;;;;11493:126;11629:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;11629:29:4;-1:-1:-1;;;;;11629:29:4;;;;;;;;;11673:28;;11629:24;;11673:28;;;;;;;11307:401;11245:463;;:::o;12629:164::-;12758:28;12768:4;12774:2;12778:7;12758:9;:28::i;:::-;12629:164;;;:::o;5457:98:3:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;7236:2:6;1240:68:0;;;7218:21:6;;;7255:18;;;7248:30;-1:-1:-1;;;;;;;;;;;7294:18:6;;;7287:62;7366:18;;1240:68:0;;;;;;;;;1108:6;;5501:48:3::1;::::0;-1:-1:-1;;;;;1108:6:0;;;;5527:21:3::1;5501:48:::0;::::1;;;::::0;::::1;::::0;;;5527:21;1108:6:0;5501:48:3;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;5457:98::o:0;12859:179:4:-;12992:39;13009:4;13015:2;13019:7;12992:39;;;;;;;;;;;;:16;:39::i;4845:74:3:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;7236:2:6;1240:68:0;;;7218:21:6;;;7255:18;;;7248:30;-1:-1:-1;;;;;;;;;;;7294:18:6;;;7287:62;7366:18;;1240:68:0;7034:356:6;1240:68:0;4901:4:3::1;:12:::0;4845:74::o;5694:100::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;7236:2:6;1240:68:0;;;7218:21:6;;;7255:18;;;7248:30;-1:-1:-1;;;;;;;;;;;7294:18:6;;;7287:62;7366:18;;1240:68:0;7034:356:6;1240:68:0;5765:23:3::1;:13;5781:7:::0;;5765:23:::1;:::i;9564:142:4:-:0;9628:7;9670:27;9689:7;9670:18;:27::i;4247:220:3:-;3639:10;;4333:11;;3639:10;;3634:38;;3658:14;;-1:-1:-1;;;3658:14:3;;;;;;;;;;;3634:38;3683:10;3697:9;3683:23;3679:50;;3715:14;;-1:-1:-1;;;3715:14:3;;;;;;;;;;;3679:50;3770:9;;4595:1;4225:12:4;4016:7;4209:13;3756:11:3;;4209:28:4;;-1:-1:-1;;4209:46:4;3740:27:3;;;;:::i;:::-;:39;3736:70;;;3788:18;;-1:-1:-1;;;3788:18:3;;;;;;;;;;;3736:70;3831:1;3817:11;:15;:51;;;;3850:18;;3836:11;:32;3817:51;3813:79;;;3877:15;;-1:-1:-1;;;3877:15:3;;;;;;;;;;;3813:79;4380:11:::1;4373:4;;:18;;;;:::i;:::-;4360:9;:32;4356:64;;;4401:19;;;;;;;;;;;;;;4356:64;4427:34;4437:10;4449:11;4427:9;:34::i;:::-;4247:220:::0;;:::o;4926:96::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;7236:2:6;1240:68:0;;;7218:21:6;;;7255:18;;;7248:30;-1:-1:-1;;;;;;;;;;;7294:18:6;;;7287:62;7366:18;;1240:68:0;7034:356:6;1240:68:0;4994:9:3::1;:22:::0;4926:96::o;5546:221:4:-;5610:7;-1:-1:-1;;;;;5633:19:4;;5629:60;;5661:28;;;;;;;;;;;;;;5629:60;-1:-1:-1;;;;;;5706:25:4;;;;;:18;:25;;;;;;1017:13;5706:54;;5546:221::o;1668:101:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;7236:2:6;1240:68:0;;;7218:21:6;;;7255:18;;;7248:30;-1:-1:-1;;;;;;;;;;;7294:18:6;;;7287:62;7366:18;;1240:68:0;7034:356:6;1240:68:0;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;5253:88:3:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;7236:2:6;1240:68:0;;;7218:21:6;;;7255:18;;;7248:30;-1:-1:-1;;;;;;;;;;;7294:18:6;;;7287:62;7366:18;;1240:68:0;7034:356:6;1240:68:0;5315:13:3::1;:20:::0;5253:88::o;3912:329::-;3639:10;;3973:11;;3639:10;;3634:38;;3658:14;;-1:-1:-1;;;3658:14:3;;;;;;;;;;;3634:38;3683:10;3697:9;3683:23;3679:50;;3715:14;;-1:-1:-1;;;3715:14:3;;;;;;;;;;;3679:50;3770:9;;4595:1;4225:12:4;4016:7;4209:13;3756:11:3;;4209:28:4;;-1:-1:-1;;4209:46:4;3740:27:3;;;;:::i;:::-;:39;3736:70;;;3788:18;;-1:-1:-1;;;3788:18:3;;;;;;;;;;;3736:70;3831:1;3817:11;:15;:51;;;;3850:18;;3836:11;:32;3817:51;3813:79;;;3877:15;;-1:-1:-1;;;3877:15:3;;;;;;;;;;;3813:79;3998:12:::1;:10;:12::i;:::-;3993:40;;4019:14;;;;;;;;;;;;;;3993:40;4084:20;::::0;4056:10:::1;4044:23;::::0;;;:11:::1;:23;::::0;;;;;:37:::1;::::0;4070:11;;4044:37:::1;:::i;:::-;:60;4040:93;;;4113:20;;;;;;;;;;;;;;4040:93;4164:10;4152:23;::::0;;;:11:::1;:23;::::0;;;;:38;;;::::1;::::0;;4201:34:::1;::::0;4179:11;4201:9:::1;:34::i;9930:102:4:-:0;9986:13;10018:7;10011:14;;;;;:::i;12036:303::-;-1:-1:-1;;;;;12134:31:4;;27446:10;12134:31;12130:61;;;12174:17;;;;;;;;;;;;;;12130:61;27446:10;12202:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;12202:49:4;;;;;;;;;;;;:60;;-1:-1:-1;;12202:60:4;;;;;;;;;;12277:55;;6351:41:6;;;12202:49:4;;27446:10;12277:55;;6324:18:6;12277:55:4;;;;;;;12036:303;;:::o;5028:130:3:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;7236:2:6;1240:68:0;;;7218:21:6;;;7255:18;;;7248:30;-1:-1:-1;;;;;;;;;;;7294:18:6;;;7287:62;7366:18;;1240:68:0;7034:356:6;1240:68:0;5112:18:3::1;:40:::0;5028:130::o;13104:385:4:-;13265:28;13275:4;13281:2;13285:7;13265:9;:28::i;:::-;-1:-1:-1;;;;;13307:14:4;;;:19;13303:180;;13345:56;13376:4;13382:2;13386:7;13395:5;13345:30;:56::i;:::-;13340:143;;13428:40;;-1:-1:-1;;;13428:40:4;;;;;;;;;;;13340:143;13104:385;;;;:::o;4608:98:3:-;4651:4;4687:13;;4671;4595:1;4225:12:4;4016:7;4209:13;-1:-1:-1;;4209:28:4;;;:46;;3963:309;4671:13:3;:29;4664:36;;4608:98;:::o;5887:297::-;5986:13;6016:17;6024:8;6016:7;:17::i;:::-;6011:46;;6042:15;;;;;;;;;;;;;;6011:46;6071:8;;;;;;;6066:32;;6088:10;:8;:10::i;6066:32::-;6136:10;:8;:10::i;:::-;6148:19;:8;:17;:19::i;:::-;6119:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6105:73;;5887:297;;;:::o;5166:81::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;7236:2:6;1240:68:0;;;7218:21:6;;;7255:18;;;7248:30;-1:-1:-1;;;;;;;;;;;7294:18:6;;;7287:62;7366:18;;1240:68:0;7034:356:6;1240:68:0;5231:10:3::1;::::0;;-1:-1:-1;;5217:24:3;::::1;5231:10;::::0;;::::1;5230:11;5217:24;::::0;;5166:81::o;5800:::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;7236:2:6;1240:68:0;;;7218:21:6;;;7255:18;;;7248:30;-1:-1:-1;;;;;;;;;;;7294:18:6;;;7287:62;7366:18;;1240:68:0;7034:356:6;1240:68:0;5859:8:3::1;:16:::0;;;::::1;;;;-1:-1:-1::0;;5859:16:3;;::::1;::::0;;;::::1;::::0;;5800:81::o;4712:127::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;7236:2:6;1240:68:0;;;7218:21:6;;;7255:18;;;7248:30;-1:-1:-1;;;;;;;;;;;7294:18:6;;;7287:62;7366:18;;1240:68:0;7034:356:6;1240:68:0;4800:33:3::1;4810:9;4821:11;4800:9;:33::i;1918:198:0:-:0;1108:6;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;7236:2:6;1240:68:0;;;7218:21:6;;;7255:18;;;7248:30;-1:-1:-1;;;;;;;;;;;7294:18:6;;;7287:62;7366:18;;1240:68:0;7034:356:6;1240:68:0;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;6829:2:6;1998:73:0::1;::::0;::::1;6811:21:6::0;6868:2;6848:18;;;6841:30;6907:34;6887:18;;;6880:62;6978:8;6958:18;;;6951:36;7004:19;;1998:73:0::1;6627:402:6::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;5347:104:3:-:0;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;7236:2:6;1240:68:0;;;7218:21:6;;;7255:18;;;7248:30;-1:-1:-1;;;;;;;;;;;7294:18:6;;;7287:62;7366:18;;1240:68:0;7034:356:6;1240:68:0;5418:20:3::1;:27:::0;5347:104::o;13735:268:4:-;13792:4;13846:7;4595:1:3;13827:26:4;;:65;;;;;13879:13;;13869:7;:23;13827:65;:150;;;;-1:-1:-1;;13929:26:4;;;;:17;:26;;;;;;-1:-1:-1;;;13929:43:4;:48;;13735:268::o;7141:1105::-;7208:7;7242;;4595:1:3;7288:23:4;7284:898;;7340:13;;7333:4;:20;7329:853;;;7377:14;7394:23;;;:17;:23;;;;;;-1:-1:-1;;;7481:23:4;;7477:687;;7992:111;7999:11;7992:111;;-1:-1:-1;;;8069:6:4;8051:25;;;;:17;:25;;;;;;7992:111;;;8135:6;7141:1105;-1:-1:-1;;;7141:1105:4:o;7477:687::-;7355:827;7329:853;8208:31;;;;;;;;;;;;;;18835:2460;18945:27;18975;18994:7;18975:18;:27::i;:::-;18945:57;;19058:4;-1:-1:-1;;;;;19017:45:4;19033:19;-1:-1:-1;;;;;19017:45:4;;19013:86;;19071:28;;;;;;;;;;;;;;19013:86;19110:22;27446:10;-1:-1:-1;;;;;19136:27:4;;;;:86;;-1:-1:-1;19179:43:4;19196:4;27446:10;12405:162;:::i;19179:43::-;19136:145;;;-1:-1:-1;27446:10:4;19238:20;19250:7;19238:11;:20::i;:::-;-1:-1:-1;;;;;19238:43:4;;19136:145;19110:172;;19298:17;19293:66;;19324:35;;;;;;;;;;;;;;19293:66;-1:-1:-1;;;;;19373:16:4;;19369:52;;19398:23;;;;;;;;;;;;;;19369:52;19545:24;;;;:15;:24;;;;;;;;19538:31;;-1:-1:-1;;19538:31:4;;;-1:-1:-1;;;;;19930:24:4;;;;;:18;:24;;;;;19928:26;;-1:-1:-1;;19928:26:4;;;19998:22;;;;;;;19996:24;;-1:-1:-1;19996:24:4;;;20284:26;;;:17;:26;;;;;2045:8;20370:15;1656:3;20370:41;20329:83;;:126;;20284:171;;;20572:46;;20568:616;;20675:1;20665:11;;20643:19;20796:30;;;:17;:30;;;;;;20792:378;;20932:13;;20917:11;:28;20913:239;;21077:30;;;;:17;:30;;;;;:52;;;20913:239;20625:559;20568:616;21228:7;21224:2;-1:-1:-1;;;;;21209:27:4;21218:4;-1:-1:-1;;;;;21209:27:4;;;;;;;;;;;18935:2360;;18835:2460;;;:::o;14082:102::-;14150:27;14160:2;14164:8;14150:27;;;;;;;;;;;;:9;:27::i;2270:187:0:-;2362:6;;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;2378:17:0;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;24900:697:4:-;25078:88;;-1:-1:-1;;;25078:88:4;;25058:4;;-1:-1:-1;;;;;25078:45:4;;;;;:88;;27446:10;;25145:4;;25151:7;;25160:5;;25078:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25078:88:4;;;;;;;;-1:-1:-1;;25078:88:4;;;;;;;;;;;;:::i;:::-;;;25074:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25356:13:4;;25352:229;;25401:40;;-1:-1:-1;;;25401:40:4;;;;;;;;;;;25352:229;25541:6;25535:13;25526:6;25522:2;25518:15;25511:38;25074:517;-1:-1:-1;;;;;;25234:64:4;-1:-1:-1;;;25234:64:4;;-1:-1:-1;25074:517:4;24900:697;;;;;;:::o;5580:108:3:-;5640:13;5669;5662:20;;;;;:::i;328:703:2:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:2;;;;;;;;;;;;;;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:2;;-1:-1:-1;773:2:2;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:2;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:2;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;972:11:2;981:2;972:11;;:::i;:::-;;;844:150;;14544:2184:4;14662:20;14685:13;-1:-1:-1;;;;;14712:16:4;;14708:48;;14737:19;;;;;;;;;;;;;;14708:48;14770:13;14766:44;;14792:18;;;;;;;;;;;;;;14766:44;-1:-1:-1;;;;;15346:22:4;;;;;;:18;:22;;;;1151:2;15346:22;;;:70;;15384:31;15372:44;;15346:70;;;15652:31;;;:17;:31;;;;;15743:15;1656:3;15743:41;15702:83;;-1:-1:-1;15820:13:4;;1913:3;15805:56;15702:160;15652:210;;:31;;15940:23;;;;15982:14;:19;15978:622;;16021:308;16051:38;;16076:12;;-1:-1:-1;;;;;16051:38:4;;;16068:1;;16051:38;;16068:1;;16051:38;16116:69;16155:1;16159:2;16163:14;;;;;;16179:5;16116:30;:69::i;:::-;16111:172;;16220:40;;-1:-1:-1;;;16220:40:4;;;;;;;;;;;16111:172;16324:3;16309:12;:18;16021:308;;16408:12;16391:13;;:29;16387:43;;16422:8;;;16387:43;15978:622;;;16469:117;16499:40;;16524:14;;;;;-1:-1:-1;;;;;16499:40:4;;;16516:1;;16499:40;;16516:1;;16499:40;16581:3;16566:12;:18;16469:117;;15978:622;-1:-1:-1;16613:13:4;:28;;;16661:60;;16694:2;16698:12;16712:8;16661:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:196:6;82:20;;-1:-1:-1;;;;;131:54:6;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:160::-;280:20;;336:13;;329:21;319:32;;309:60;;365:1;362;355:12;380:186;439:6;492:2;480:9;471:7;467:23;463:32;460:52;;;508:1;505;498:12;460:52;531:29;550:9;531:29;:::i;571:260::-;639:6;647;700:2;688:9;679:7;675:23;671:32;668:52;;;716:1;713;706:12;668:52;739:29;758:9;739:29;:::i;:::-;729:39;;787:38;821:2;810:9;806:18;787:38;:::i;:::-;777:48;;571:260;;;;;:::o;836:328::-;913:6;921;929;982:2;970:9;961:7;957:23;953:32;950:52;;;998:1;995;988:12;950:52;1021:29;1040:9;1021:29;:::i;:::-;1011:39;;1069:38;1103:2;1092:9;1088:18;1069:38;:::i;:::-;1059:48;;1154:2;1143:9;1139:18;1126:32;1116:42;;836:328;;;;;:::o;1169:1138::-;1264:6;1272;1280;1288;1341:3;1329:9;1320:7;1316:23;1312:33;1309:53;;;1358:1;1355;1348:12;1309:53;1381:29;1400:9;1381:29;:::i;:::-;1371:39;;1429:38;1463:2;1452:9;1448:18;1429:38;:::i;:::-;1419:48;;1514:2;1503:9;1499:18;1486:32;1476:42;;1569:2;1558:9;1554:18;1541:32;1592:18;1633:2;1625:6;1622:14;1619:34;;;1649:1;1646;1639:12;1619:34;1687:6;1676:9;1672:22;1662:32;;1732:7;1725:4;1721:2;1717:13;1713:27;1703:55;;1754:1;1751;1744:12;1703:55;1790:2;1777:16;1812:2;1808;1805:10;1802:36;;;1818:18;;:::i;:::-;1893:2;1887:9;1861:2;1947:13;;-1:-1:-1;;1943:22:6;;;1967:2;1939:31;1935:40;1923:53;;;1991:18;;;2011:22;;;1988:46;1985:72;;;2037:18;;:::i;:::-;2077:10;2073:2;2066:22;2112:2;2104:6;2097:18;2152:7;2147:2;2142;2138;2134:11;2130:20;2127:33;2124:53;;;2173:1;2170;2163:12;2124:53;2229:2;2224;2220;2216:11;2211:2;2203:6;2199:15;2186:46;2274:1;2269:2;2264;2256:6;2252:15;2248:24;2241:35;2295:6;2285:16;;;;;;;1169:1138;;;;;;;:::o;2312:254::-;2377:6;2385;2438:2;2426:9;2417:7;2413:23;2409:32;2406:52;;;2454:1;2451;2444:12;2406:52;2477:29;2496:9;2477:29;:::i;:::-;2467:39;;2525:35;2556:2;2545:9;2541:18;2525:35;:::i;2571:254::-;2639:6;2647;2700:2;2688:9;2679:7;2675:23;2671:32;2668:52;;;2716:1;2713;2706:12;2668:52;2739:29;2758:9;2739:29;:::i;:::-;2729:39;2815:2;2800:18;;;;2787:32;;-1:-1:-1;;;2571:254:6:o;2830:180::-;2886:6;2939:2;2927:9;2918:7;2914:23;2910:32;2907:52;;;2955:1;2952;2945:12;2907:52;2978:26;2994:9;2978:26;:::i;3015:245::-;3073:6;3126:2;3114:9;3105:7;3101:23;3097:32;3094:52;;;3142:1;3139;3132:12;3094:52;3181:9;3168:23;3200:30;3224:5;3200:30;:::i;3265:249::-;3334:6;3387:2;3375:9;3366:7;3362:23;3358:32;3355:52;;;3403:1;3400;3393:12;3355:52;3435:9;3429:16;3454:30;3478:5;3454:30;:::i;3519:592::-;3590:6;3598;3651:2;3639:9;3630:7;3626:23;3622:32;3619:52;;;3667:1;3664;3657:12;3619:52;3707:9;3694:23;3736:18;3777:2;3769:6;3766:14;3763:34;;;3793:1;3790;3783:12;3763:34;3831:6;3820:9;3816:22;3806:32;;3876:7;3869:4;3865:2;3861:13;3857:27;3847:55;;3898:1;3895;3888:12;3847:55;3938:2;3925:16;3964:2;3956:6;3953:14;3950:34;;;3980:1;3977;3970:12;3950:34;4025:7;4020:2;4011:6;4007:2;4003:15;3999:24;3996:37;3993:57;;;4046:1;4043;4036:12;3993:57;4077:2;4069:11;;;;;4099:6;;-1:-1:-1;3519:592:6;;-1:-1:-1;;;;3519:592:6:o;4116:180::-;4175:6;4228:2;4216:9;4207:7;4203:23;4199:32;4196:52;;;4244:1;4241;4234:12;4196:52;-1:-1:-1;4267:23:6;;4116:180;-1:-1:-1;4116:180:6:o;4301:254::-;4369:6;4377;4430:2;4418:9;4409:7;4405:23;4401:32;4398:52;;;4446:1;4443;4436:12;4398:52;4482:9;4469:23;4459:33;;4511:38;4545:2;4534:9;4530:18;4511:38;:::i;4560:257::-;4601:3;4639:5;4633:12;4666:6;4661:3;4654:19;4682:63;4738:6;4731:4;4726:3;4722:14;4715:4;4708:5;4704:16;4682:63;:::i;:::-;4799:2;4778:15;-1:-1:-1;;4774:29:6;4765:39;;;;4806:4;4761:50;;4560:257;-1:-1:-1;;4560:257:6:o;4822:637::-;5102:3;5140:6;5134:13;5156:53;5202:6;5197:3;5190:4;5182:6;5178:17;5156:53;:::i;:::-;5272:13;;5231:16;;;;5294:57;5272:13;5231:16;5328:4;5316:17;;5294:57;:::i;:::-;5416:7;5373:20;;5402:22;;;5451:1;5440:13;;4822:637;-1:-1:-1;;;;4822:637:6:o;5695:511::-;5889:4;-1:-1:-1;;;;;5999:2:6;5991:6;5987:15;5976:9;5969:34;6051:2;6043:6;6039:15;6034:2;6023:9;6019:18;6012:43;;6091:6;6086:2;6075:9;6071:18;6064:34;6134:3;6129:2;6118:9;6114:18;6107:31;6155:45;6195:3;6184:9;6180:19;6172:6;6155:45;:::i;:::-;6147:53;5695:511;-1:-1:-1;;;;;;5695:511:6:o;6403:219::-;6552:2;6541:9;6534:21;6515:4;6572:44;6612:2;6601:9;6597:18;6589:6;6572:44;:::i;7577:128::-;7617:3;7648:1;7644:6;7641:1;7638:13;7635:39;;;7654:18;;:::i;:::-;-1:-1:-1;7690:9:6;;7577:128::o;7710:120::-;7750:1;7776;7766:35;;7781:18;;:::i;:::-;-1:-1:-1;7815:9:6;;7710:120::o;7835:168::-;7875:7;7941:1;7937;7933:6;7929:14;7926:1;7923:21;7918:1;7911:9;7904:17;7900:45;7897:71;;;7948:18;;:::i;:::-;-1:-1:-1;7988:9:6;;7835:168::o;8008:125::-;8048:4;8076:1;8073;8070:8;8067:34;;;8081:18;;:::i;:::-;-1:-1:-1;8118:9:6;;8008:125::o;8138:258::-;8210:1;8220:113;8234:6;8231:1;8228:13;8220:113;;;8310:11;;;8304:18;8291:11;;;8284:39;8256:2;8249:10;8220:113;;;8351:6;8348:1;8345:13;8342:48;;;-1:-1:-1;;8386:1:6;8368:16;;8361:27;8138:258::o;8401:437::-;8480:1;8476:12;;;;8523;;;8544:61;;8598:4;8590:6;8586:17;8576:27;;8544:61;8651:2;8643:6;8640:14;8620:18;8617:38;8614:218;;;-1:-1:-1;;;8685:1:6;8678:88;8789:4;8786:1;8779:15;8817:4;8814:1;8807:15;8614:218;;8401:437;;;:::o;8843:135::-;8882:3;-1:-1:-1;;8903:17:6;;8900:43;;;8923:18;;:::i;:::-;-1:-1:-1;8970:1:6;8959:13;;8843:135::o;8983:112::-;9015:1;9041;9031:35;;9046:18;;:::i;:::-;-1:-1:-1;9080:9:6;;8983:112::o;9100:184::-;-1:-1:-1;;;9149:1:6;9142:88;9249:4;9246:1;9239:15;9273:4;9270:1;9263:15;9289:184;-1:-1:-1;;;9338:1:6;9331:88;9438:4;9435:1;9428:15;9462:4;9459:1;9452:15;9478:184;-1:-1:-1;;;9527:1:6;9520:88;9627:4;9624:1;9617:15;9651:4;9648:1;9641:15;9667:184;-1:-1:-1;;;9716:1:6;9709:88;9816:4;9813:1;9806:15;9840:4;9837:1;9830:15;9856:177;-1:-1:-1;;;;;;9934:5:6;9930:78;9923:5;9920:89;9910:117;;10023:1;10020;10013:12
Swarm Source
ipfs://32c02fecbce57884a6b65a8efd00945a89a14ac831e293e63161a1cd798cd239
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.