ERC-721
Overview
Max Total Supply
10,000 MC
Holders
4,322
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MudCats
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-04 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ 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(); /** * 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(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @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() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 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`, * 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, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` 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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // 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 bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID 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` // - [232..255] `extraData` 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 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual 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 auxiliary 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 auxiliary 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 virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ 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: [ERC165](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. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ 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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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 initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev 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; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // 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 `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns 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)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, 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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @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)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // 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++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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 _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @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 virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 0x80 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: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: contracts/Mud_Cats.sol pragma solidity ^0.8.4; contract MudCats is ERC721A, Ownable { using Strings for uint256; uint256 public EXTRA_MINT_PRICE = 0.0065 ether; uint256 public MAX_SUPPLY_PLUS_ONE = 10001; uint256 public MAX_PER_TRANSACTION_PLUS_ONE = 11; bool public paused = true; string private baseUri; mapping(address => uint256) private _freeMintedCount; constructor() ERC721A("Mud Cats", "MC") {} function mint(uint256 _quantity) external payable { require(!paused, "Minting paused"); uint256 _totalSupply = totalSupply(); require( _totalSupply + _quantity < MAX_SUPPLY_PLUS_ONE, "Exceeds supply" ); require(_quantity < MAX_PER_TRANSACTION_PLUS_ONE, "Exceeds max per tx"); uint256 payForCount = _quantity; uint256 freeMintCount = _freeMintedCount[msg.sender]; if (freeMintCount < 1) { if (_quantity > 1) { payForCount = _quantity - 1; } else { payForCount = 0; } _freeMintedCount[msg.sender] = 1; } require( msg.value >= payForCount * EXTRA_MINT_PRICE, "Incorrect ETH value sent" ); _safeMint(msg.sender, _quantity); } function freeMintedCount(address owner) external view returns (uint256) { return _freeMintedCount[owner]; } function _startTokenId() internal pure override returns (uint256) { return 1; } function setBaseURI(string calldata _newBaseUri) external onlyOwner { baseUri = _newBaseUri; } function _baseURI() internal view override returns (string memory) { return baseUri; } function flipSale() external onlyOwner { paused = !paused; } function reserves(uint256 numToReserve) external onlyOwner { require( totalSupply() + numToReserve < MAX_SUPPLY_PLUS_ONE, "Not enough to reserve" ); _safeMint(msg.sender, numToReserve); } function withdraw() external onlyOwner { require( payable(owner()).send(address(this).balance), "Withdraw unsuccessful" ); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "Nonexistent token"); return string(abi.encodePacked(baseUri, "/", tokenId.toString(), ".json")); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"EXTRA_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TRANSACTION_PLUS_ONE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY_PLUS_ONE","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":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"freeMintedCount","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":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numToReserve","type":"uint256"}],"name":"reserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052661717b72f0a4000600955612711600a55600b8055600c805460ff191660011790553480156200003357600080fd5b50604051806040016040528060088152602001674d7564204361747360c01b815250604051806040016040528060028152602001614d4360f01b81525081600290805190602001906200008892919062000109565b5080516200009e90600390602084019062000109565b5050600160005550620000b133620000b7565b620001ec565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011790620001af565b90600052602060002090601f0160209004810192826200013b576000855562000186565b82601f106200015657805160ff191683800117855562000186565b8280016001018555821562000186579182015b828111156200018657825182559160200191906001019062000169565b506200019492915062000198565b5090565b5b8082111562000194576000815560010162000199565b600181811c90821680620001c457607f821691505b60208210811415620001e657634e487b7160e01b600052602260045260246000fd5b50919050565b6118b080620001fc6000396000f3fe60806040526004361061019c5760003560e01c8063715018a6116100ec578063981332351161008a578063b88d4fde11610064578063b88d4fde14610470578063c87b56dd14610490578063e985e9c5146104b0578063f2fde38b146104f957600080fd5b80639813323514610407578063a0712d681461043d578063a22cb4651461045057600080fd5b80638334278d116100c65780638334278d1461039e5780638da5cb5b146103be57806395d89b41146103dc57806396b04c75146103f157600080fd5b8063715018a61461035e5780637ba5e6211461037357806382d5b2491461038857600080fd5b80633ccfd60b116101595780635c975abb116101335780635c975abb146102ee5780636352211e146103085780636b1ec2e41461032857806370a082311461033e57600080fd5b80633ccfd60b1461029957806342842e0e146102ae57806355f804b3146102ce57600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610279575b600080fd5b3480156101ad57600080fd5b506101c16101bc3660046114ec565b610519565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb61056b565b6040516101cd9190611701565b34801561020457600080fd5b50610218610213366004611598565b6105fd565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b3660046114c2565b610641565b005b34801561025e57600080fd5b5060015460005403600019015b6040519081526020016101cd565b34801561028557600080fd5b5061025061029436600461136e565b6106e1565b3480156102a557600080fd5b50610250610872565b3480156102ba57600080fd5b506102506102c936600461136e565b6108ed565b3480156102da57600080fd5b506102506102e9366004611526565b61090d565b3480156102fa57600080fd5b50600c546101c19060ff1681565b34801561031457600080fd5b50610218610323366004611598565b610921565b34801561033457600080fd5b5061026b600b5481565b34801561034a57600080fd5b5061026b610359366004611320565b61092c565b34801561036a57600080fd5b5061025061097b565b34801561037f57600080fd5b5061025061098d565b34801561039457600080fd5b5061026b600a5481565b3480156103aa57600080fd5b506102506103b9366004611598565b6109a9565b3480156103ca57600080fd5b506008546001600160a01b0316610218565b3480156103e857600080fd5b506101eb610a1e565b3480156103fd57600080fd5b5061026b60095481565b34801561041357600080fd5b5061026b610422366004611320565b6001600160a01b03166000908152600e602052604090205490565b61025061044b366004611598565b610a2d565b34801561045c57600080fd5b5061025061046b366004611486565b610bd5565b34801561047c57600080fd5b5061025061048b3660046113aa565b610c6b565b34801561049c57600080fd5b506101eb6104ab366004611598565b610caf565b3480156104bc57600080fd5b506101c16104cb36600461133b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561050557600080fd5b50610250610514366004611320565b610d2c565b60006301ffc9a760e01b6001600160e01b03198316148061054a57506380ac58cd60e01b6001600160e01b03198316145b806105655750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461057a906117a2565b80601f01602080910402602001604051908101604052809291908181526020018280546105a6906117a2565b80156105f35780601f106105c8576101008083540402835291602001916105f3565b820191906000526020600020905b8154815290600101906020018083116105d657829003601f168201915b5050505050905090565b600061060882610da2565b610625576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061064c82610921565b9050336001600160a01b038216146106855761066881336104cb565b610685576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006106ec82610dd7565b9050836001600160a01b0316816001600160a01b03161461071f5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761076c5761074f86336104cb565b61076c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661079357604051633a954ecd60e21b815260040160405180910390fd5b801561079e57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661082957600184016000818152600460205260409020546108275760005481146108275760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b61087a610e47565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050506108eb5760405162461bcd60e51b815260206004820152601560248201527415da5d1a191c985dc81d5b9cdd58d8d95cdcd99d5b605a1b60448201526064015b60405180910390fd5b565b61090883838360405180602001604052806000815250610c6b565b505050565b610915610e47565b610908600d838361126b565b600061056582610dd7565b60006001600160a01b038216610955576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610983610e47565b6108eb6000610ea1565b610995610e47565b600c805460ff19811660ff90911615179055565b6109b1610e47565b600a5460015460005483919003600019016109cc9190611714565b10610a115760405162461bcd60e51b81526020600482015260156024820152744e6f7420656e6f75676820746f207265736572766560581b60448201526064016108e2565b610a1b3382610ef3565b50565b60606003805461057a906117a2565b600c5460ff1615610a715760405162461bcd60e51b815260206004820152600e60248201526d135a5b9d1a5b99c81c185d5cd95960921b60448201526064016108e2565b6000610a866001546000546000199190030190565b600a54909150610a968383611714565b10610ad45760405162461bcd60e51b815260206004820152600e60248201526d4578636565647320737570706c7960901b60448201526064016108e2565b600b548210610b1a5760405162461bcd60e51b815260206004820152601260248201527108af0c6cacac8e640dac2f040e0cae440e8f60731b60448201526064016108e2565b336000908152600e602052604090205482906001811015610b69576001841115610b5057610b4960018561175f565b9150610b55565b600091505b336000908152600e60205260409020600190555b600954610b769083611740565b341015610bc55760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e74000000000000000060448201526064016108e2565b610bcf3385610ef3565b50505050565b6001600160a01b038216331415610bff5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c768484846106e1565b6001600160a01b0383163b15610bcf57610c9284848484610f11565b610bcf576040516368d2bf6b60e11b815260040160405180910390fd5b6060610cba82610da2565b610cfa5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016108e2565b600d610d0583611009565b604051602001610d169291906115f9565b6040516020818303038152906040529050919050565b610d34610e47565b6001600160a01b038116610d995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e2565b610a1b81610ea1565b600081600111158015610db6575060005482105b8015610565575050600090815260046020526040902054600160e01b161590565b60008180600111610e2e57600054811015610e2e57600081815260046020526040902054600160e01b8116610e2c575b80610e25575060001901600081815260046020526040902054610e07565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146108eb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108e2565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f0d828260405180602001604052806000815250611107565b5050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610f469033908990889088906004016116c4565b602060405180830381600087803b158015610f6057600080fd5b505af1925050508015610f90575060408051601f3d908101601f19168201909252610f8d91810190611509565b60015b610feb573d808015610fbe576040519150601f19603f3d011682016040523d82523d6000602084013e610fc3565b606091505b508051610fe3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161102d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156110575780611041816117dd565b91506110509050600a8361172c565b9150611031565b60008167ffffffffffffffff8111156110725761107261184e565b6040519080825280601f01601f19166020018201604052801561109c576020820181803683370190505b5090505b8415611001576110b160018361175f565b91506110be600a866117f8565b6110c9906030611714565b60f81b8183815181106110de576110de611838565b60200101906001600160f81b031916908160001a905350611100600a8661172c565b94506110a0565b6111118383611174565b6001600160a01b0383163b15610908576000548281035b61113b6000868380600101945086610f11565b611158576040516368d2bf6b60e11b815260040160405180910390fd5b81811061112857816000541461116d57600080fd5b5050505050565b600054816111955760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461124457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161120c565b508161126257604051622e076360e81b815260040160405180910390fd5b60005550505050565b828054611277906117a2565b90600052602060002090601f01602090048101928261129957600085556112df565b82601f106112b25782800160ff198235161785556112df565b828001600101855582156112df579182015b828111156112df5782358255916020019190600101906112c4565b506112eb9291506112ef565b5090565b5b808211156112eb57600081556001016112f0565b80356001600160a01b038116811461131b57600080fd5b919050565b60006020828403121561133257600080fd5b610e2582611304565b6000806040838503121561134e57600080fd5b61135783611304565b915061136560208401611304565b90509250929050565b60008060006060848603121561138357600080fd5b61138c84611304565b925061139a60208501611304565b9150604084013590509250925092565b600080600080608085870312156113c057600080fd5b6113c985611304565b93506113d760208601611304565b925060408501359150606085013567ffffffffffffffff808211156113fb57600080fd5b818701915087601f83011261140f57600080fd5b8135818111156114215761142161184e565b604051601f8201601f19908116603f011681019083821181831017156114495761144961184e565b816040528281528a602084870101111561146257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561149957600080fd5b6114a283611304565b9150602083013580151581146114b757600080fd5b809150509250929050565b600080604083850312156114d557600080fd5b6114de83611304565b946020939093013593505050565b6000602082840312156114fe57600080fd5b8135610e2581611864565b60006020828403121561151b57600080fd5b8151610e2581611864565b6000806020838503121561153957600080fd5b823567ffffffffffffffff8082111561155157600080fd5b818501915085601f83011261156557600080fd5b81358181111561157457600080fd5b86602082850101111561158657600080fd5b60209290920196919550909350505050565b6000602082840312156115aa57600080fd5b5035919050565b600081518084526115c9816020860160208601611776565b601f01601f19169290920160200192915050565b600081516115ef818560208601611776565b9290920192915050565b600080845481600182811c91508083168061161557607f831692505b602080841082141561163557634e487b7160e01b86526022600452602486fd5b818015611649576001811461165a57611687565b60ff19861689528489019650611687565b60008b81526020902060005b8681101561167f5781548b820152908501908301611666565b505084890196505b5050505050506116bb6116aa6116a483602f60f81b815260010190565b866115dd565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116f7908301846115b1565b9695505050505050565b602081526000610e2560208301846115b1565b600082198211156117275761172761180c565b500190565b60008261173b5761173b611822565b500490565b600081600019048311821515161561175a5761175a61180c565b500290565b6000828210156117715761177161180c565b500390565b60005b83811015611791578181015183820152602001611779565b83811115610bcf5750506000910152565b600181811c908216806117b657607f821691505b602082108114156117d757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156117f1576117f161180c565b5060010190565b60008261180757611807611822565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a1b57600080fdfea26469706673582212203d7b0dac8046ec9af4e975bc1c7645c15e2100a0e95a0cbb949108ec8537bd7e64736f6c63430008070033
Deployed Bytecode
0x60806040526004361061019c5760003560e01c8063715018a6116100ec578063981332351161008a578063b88d4fde11610064578063b88d4fde14610470578063c87b56dd14610490578063e985e9c5146104b0578063f2fde38b146104f957600080fd5b80639813323514610407578063a0712d681461043d578063a22cb4651461045057600080fd5b80638334278d116100c65780638334278d1461039e5780638da5cb5b146103be57806395d89b41146103dc57806396b04c75146103f157600080fd5b8063715018a61461035e5780637ba5e6211461037357806382d5b2491461038857600080fd5b80633ccfd60b116101595780635c975abb116101335780635c975abb146102ee5780636352211e146103085780636b1ec2e41461032857806370a082311461033e57600080fd5b80633ccfd60b1461029957806342842e0e146102ae57806355f804b3146102ce57600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610279575b600080fd5b3480156101ad57600080fd5b506101c16101bc3660046114ec565b610519565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb61056b565b6040516101cd9190611701565b34801561020457600080fd5b50610218610213366004611598565b6105fd565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b3660046114c2565b610641565b005b34801561025e57600080fd5b5060015460005403600019015b6040519081526020016101cd565b34801561028557600080fd5b5061025061029436600461136e565b6106e1565b3480156102a557600080fd5b50610250610872565b3480156102ba57600080fd5b506102506102c936600461136e565b6108ed565b3480156102da57600080fd5b506102506102e9366004611526565b61090d565b3480156102fa57600080fd5b50600c546101c19060ff1681565b34801561031457600080fd5b50610218610323366004611598565b610921565b34801561033457600080fd5b5061026b600b5481565b34801561034a57600080fd5b5061026b610359366004611320565b61092c565b34801561036a57600080fd5b5061025061097b565b34801561037f57600080fd5b5061025061098d565b34801561039457600080fd5b5061026b600a5481565b3480156103aa57600080fd5b506102506103b9366004611598565b6109a9565b3480156103ca57600080fd5b506008546001600160a01b0316610218565b3480156103e857600080fd5b506101eb610a1e565b3480156103fd57600080fd5b5061026b60095481565b34801561041357600080fd5b5061026b610422366004611320565b6001600160a01b03166000908152600e602052604090205490565b61025061044b366004611598565b610a2d565b34801561045c57600080fd5b5061025061046b366004611486565b610bd5565b34801561047c57600080fd5b5061025061048b3660046113aa565b610c6b565b34801561049c57600080fd5b506101eb6104ab366004611598565b610caf565b3480156104bc57600080fd5b506101c16104cb36600461133b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561050557600080fd5b50610250610514366004611320565b610d2c565b60006301ffc9a760e01b6001600160e01b03198316148061054a57506380ac58cd60e01b6001600160e01b03198316145b806105655750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461057a906117a2565b80601f01602080910402602001604051908101604052809291908181526020018280546105a6906117a2565b80156105f35780601f106105c8576101008083540402835291602001916105f3565b820191906000526020600020905b8154815290600101906020018083116105d657829003601f168201915b5050505050905090565b600061060882610da2565b610625576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061064c82610921565b9050336001600160a01b038216146106855761066881336104cb565b610685576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006106ec82610dd7565b9050836001600160a01b0316816001600160a01b03161461071f5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761076c5761074f86336104cb565b61076c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661079357604051633a954ecd60e21b815260040160405180910390fd5b801561079e57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661082957600184016000818152600460205260409020546108275760005481146108275760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b61087a610e47565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050506108eb5760405162461bcd60e51b815260206004820152601560248201527415da5d1a191c985dc81d5b9cdd58d8d95cdcd99d5b605a1b60448201526064015b60405180910390fd5b565b61090883838360405180602001604052806000815250610c6b565b505050565b610915610e47565b610908600d838361126b565b600061056582610dd7565b60006001600160a01b038216610955576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610983610e47565b6108eb6000610ea1565b610995610e47565b600c805460ff19811660ff90911615179055565b6109b1610e47565b600a5460015460005483919003600019016109cc9190611714565b10610a115760405162461bcd60e51b81526020600482015260156024820152744e6f7420656e6f75676820746f207265736572766560581b60448201526064016108e2565b610a1b3382610ef3565b50565b60606003805461057a906117a2565b600c5460ff1615610a715760405162461bcd60e51b815260206004820152600e60248201526d135a5b9d1a5b99c81c185d5cd95960921b60448201526064016108e2565b6000610a866001546000546000199190030190565b600a54909150610a968383611714565b10610ad45760405162461bcd60e51b815260206004820152600e60248201526d4578636565647320737570706c7960901b60448201526064016108e2565b600b548210610b1a5760405162461bcd60e51b815260206004820152601260248201527108af0c6cacac8e640dac2f040e0cae440e8f60731b60448201526064016108e2565b336000908152600e602052604090205482906001811015610b69576001841115610b5057610b4960018561175f565b9150610b55565b600091505b336000908152600e60205260409020600190555b600954610b769083611740565b341015610bc55760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e74000000000000000060448201526064016108e2565b610bcf3385610ef3565b50505050565b6001600160a01b038216331415610bff5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c768484846106e1565b6001600160a01b0383163b15610bcf57610c9284848484610f11565b610bcf576040516368d2bf6b60e11b815260040160405180910390fd5b6060610cba82610da2565b610cfa5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b60448201526064016108e2565b600d610d0583611009565b604051602001610d169291906115f9565b6040516020818303038152906040529050919050565b610d34610e47565b6001600160a01b038116610d995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e2565b610a1b81610ea1565b600081600111158015610db6575060005482105b8015610565575050600090815260046020526040902054600160e01b161590565b60008180600111610e2e57600054811015610e2e57600081815260046020526040902054600160e01b8116610e2c575b80610e25575060001901600081815260046020526040902054610e07565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146108eb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108e2565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f0d828260405180602001604052806000815250611107565b5050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610f469033908990889088906004016116c4565b602060405180830381600087803b158015610f6057600080fd5b505af1925050508015610f90575060408051601f3d908101601f19168201909252610f8d91810190611509565b60015b610feb573d808015610fbe576040519150601f19603f3d011682016040523d82523d6000602084013e610fc3565b606091505b508051610fe3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161102d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156110575780611041816117dd565b91506110509050600a8361172c565b9150611031565b60008167ffffffffffffffff8111156110725761107261184e565b6040519080825280601f01601f19166020018201604052801561109c576020820181803683370190505b5090505b8415611001576110b160018361175f565b91506110be600a866117f8565b6110c9906030611714565b60f81b8183815181106110de576110de611838565b60200101906001600160f81b031916908160001a905350611100600a8661172c565b94506110a0565b6111118383611174565b6001600160a01b0383163b15610908576000548281035b61113b6000868380600101945086610f11565b611158576040516368d2bf6b60e11b815260040160405180910390fd5b81811061112857816000541461116d57600080fd5b5050505050565b600054816111955760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461124457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161120c565b508161126257604051622e076360e81b815260040160405180910390fd5b60005550505050565b828054611277906117a2565b90600052602060002090601f01602090048101928261129957600085556112df565b82601f106112b25782800160ff198235161785556112df565b828001600101855582156112df579182015b828111156112df5782358255916020019190600101906112c4565b506112eb9291506112ef565b5090565b5b808211156112eb57600081556001016112f0565b80356001600160a01b038116811461131b57600080fd5b919050565b60006020828403121561133257600080fd5b610e2582611304565b6000806040838503121561134e57600080fd5b61135783611304565b915061136560208401611304565b90509250929050565b60008060006060848603121561138357600080fd5b61138c84611304565b925061139a60208501611304565b9150604084013590509250925092565b600080600080608085870312156113c057600080fd5b6113c985611304565b93506113d760208601611304565b925060408501359150606085013567ffffffffffffffff808211156113fb57600080fd5b818701915087601f83011261140f57600080fd5b8135818111156114215761142161184e565b604051601f8201601f19908116603f011681019083821181831017156114495761144961184e565b816040528281528a602084870101111561146257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561149957600080fd5b6114a283611304565b9150602083013580151581146114b757600080fd5b809150509250929050565b600080604083850312156114d557600080fd5b6114de83611304565b946020939093013593505050565b6000602082840312156114fe57600080fd5b8135610e2581611864565b60006020828403121561151b57600080fd5b8151610e2581611864565b6000806020838503121561153957600080fd5b823567ffffffffffffffff8082111561155157600080fd5b818501915085601f83011261156557600080fd5b81358181111561157457600080fd5b86602082850101111561158657600080fd5b60209290920196919550909350505050565b6000602082840312156115aa57600080fd5b5035919050565b600081518084526115c9816020860160208601611776565b601f01601f19169290920160200192915050565b600081516115ef818560208601611776565b9290920192915050565b600080845481600182811c91508083168061161557607f831692505b602080841082141561163557634e487b7160e01b86526022600452602486fd5b818015611649576001811461165a57611687565b60ff19861689528489019650611687565b60008b81526020902060005b8681101561167f5781548b820152908501908301611666565b505084890196505b5050505050506116bb6116aa6116a483602f60f81b815260010190565b866115dd565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116f7908301846115b1565b9695505050505050565b602081526000610e2560208301846115b1565b600082198211156117275761172761180c565b500190565b60008261173b5761173b611822565b500490565b600081600019048311821515161561175a5761175a61180c565b500290565b6000828210156117715761177161180c565b500390565b60005b83811015611791578181015183820152602001611779565b83811115610bcf5750506000910152565b600181811c908216806117b657607f821691505b602082108114156117d757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156117f1576117f161180c565b5060010190565b60008261180757611807611822565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a1b57600080fdfea26469706673582212203d7b0dac8046ec9af4e975bc1c7645c15e2100a0e95a0cbb949108ec8537bd7e64736f6c63430008070033
Deployed Bytecode Sourcemap
56988:2579:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24525:639;;;;;;;;;;-1:-1:-1;24525:639:0;;;;;:::i;:::-;;:::i;:::-;;;7014:14:1;;7007:22;6989:41;;6977:2;6962:18;24525:639:0;;;;;;;;25427:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31910:218::-;;;;;;;;;;-1:-1:-1;31910:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6312:32:1;;;6294:51;;6282:2;6267:18;31910:218:0;6148:203:1;31351:400:0;;;;;;;;;;-1:-1:-1;31351:400:0;;;;;:::i;:::-;;:::i;:::-;;21178:323;;;;;;;;;;-1:-1:-1;58504:1:0;21452:12;21239:7;21436:13;:28;-1:-1:-1;;21436:46:0;21178:323;;;10611:25:1;;;10599:2;10584:18;21178:323:0;10465:177:1;35617:2817:0;;;;;;;;;;-1:-1:-1;35617:2817:0;;;;;:::i;:::-;;:::i;59080:173::-;;;;;;;;;;;;;:::i;38530:185::-;;;;;;;;;;-1:-1:-1;38530:185:0;;;;;:::i;:::-;;:::i;58521:108::-;;;;;;;;;;-1:-1:-1;58521:108:0;;;;;:::i;:::-;;:::i;57223:25::-;;;;;;;;;;-1:-1:-1;57223:25:0;;;;;;;;26820:152;;;;;;;;;;-1:-1:-1;26820:152:0;;;;;:::i;:::-;;:::i;57168:48::-;;;;;;;;;;;;;;;;22362:233;;;;;;;;;;-1:-1:-1;22362:233:0;;;;;:::i;:::-;;:::i;5273:103::-;;;;;;;;;;;;;:::i;58745:74::-;;;;;;;;;;;;;:::i;57119:42::-;;;;;;;;;;;;;;;;58827:245;;;;;;;;;;-1:-1:-1;58827:245:0;;;;;:::i;:::-;;:::i;4625:87::-;;;;;;;;;;-1:-1:-1;4698:6:0;;-1:-1:-1;;;;;4698:6:0;4625:87;;25603:104;;;;;;;;;;;;;:::i;57066:46::-;;;;;;;;;;;;;;;;58291:121;;;;;;;;;;-1:-1:-1;58291:121:0;;;;;:::i;:::-;-1:-1:-1;;;;;58381:23:0;58354:7;58381:23;;;:16;:23;;;;;;;58291:121;57397:886;;;;;;:::i;:::-;;:::i;32468:308::-;;;;;;;;;;-1:-1:-1;32468:308:0;;;;;:::i;:::-;;:::i;39313:399::-;;;;;;;;;;-1:-1:-1;39313:399:0;;;;;:::i;:::-;;:::i;59261:303::-;;;;;;;;;;-1:-1:-1;59261:303:0;;;;;:::i;:::-;;:::i;32933:164::-;;;;;;;;;;-1:-1:-1;32933:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33054:25:0;;;33030:4;33054:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32933:164;5531:201;;;;;;;;;;-1:-1:-1;5531:201:0;;;;;:::i;:::-;;:::i;24525:639::-;24610:4;-1:-1:-1;;;;;;;;;24934:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;25011:25:0;;;24934:102;:179;;;-1:-1:-1;;;;;;;;;;25088:25:0;;;24934:179;24914:199;24525:639;-1:-1:-1;;24525:639:0:o;25427:100::-;25481:13;25514:5;25507:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25427:100;:::o;31910:218::-;31986:7;32011:16;32019:7;32011;:16::i;:::-;32006:64;;32036:34;;-1:-1:-1;;;32036:34:0;;;;;;;;;;;32006:64;-1:-1:-1;32090:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;32090:30:0;;31910:218::o;31351:400::-;31432:13;31448:16;31456:7;31448;:16::i;:::-;31432:32;-1:-1:-1;55208:10:0;-1:-1:-1;;;;;31481:28:0;;;31477:175;;31529:44;31546:5;55208:10;32933:164;:::i;31529:44::-;31524:128;;31601:35;;-1:-1:-1;;;31601:35:0;;;;;;;;;;;31524:128;31664:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;31664:35:0;-1:-1:-1;;;;;31664:35:0;;;;;;;;;31715:28;;31664:24;;31715:28;;;;;;;31421:330;31351:400;;:::o;35617:2817::-;35751:27;35781;35800:7;35781:18;:27::i;:::-;35751:57;;35866:4;-1:-1:-1;;;;;35825:45:0;35841:19;-1:-1:-1;;;;;35825:45:0;;35821:86;;35879:28;;-1:-1:-1;;;35879:28:0;;;;;;;;;;;35821:86;35921:27;34731:24;;;:15;:24;;;;;34953:26;;55208:10;34356:30;;;-1:-1:-1;;;;;34049:28:0;;34334:20;;;34331:56;36107:180;;36200:43;36217:4;55208:10;32933:164;:::i;36200:43::-;36195:92;;36252:35;;-1:-1:-1;;;36252:35:0;;;;;;;;;;;36195:92;-1:-1:-1;;;;;36304:16:0;;36300:52;;36329:23;;-1:-1:-1;;;36329:23:0;;;;;;;;;;;36300:52;36501:15;36498:160;;;36641:1;36620:19;36613:30;36498:160;-1:-1:-1;;;;;37038:24:0;;;;;;;:18;:24;;;;;;37036:26;;-1:-1:-1;;37036:26:0;;;37107:22;;;;;;;;;37105:24;;-1:-1:-1;37105:24:0;;;30209:11;30184:23;30180:41;30167:63;-1:-1:-1;;;30167:63:0;37400:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;37695:47:0;;37691:627;;37800:1;37790:11;;37768:19;37923:30;;;:17;:30;;;;;;37919:384;;38061:13;;38046:11;:28;38042:242;;38208:30;;;;:17;:30;;;;;:52;;;38042:242;37749:569;37691:627;38365:7;38361:2;-1:-1:-1;;;;;38346:27:0;38355:4;-1:-1:-1;;;;;38346:27:0;;;;;;;;;;;35740:2694;;;35617:2817;;;:::o;59080:173::-;4511:13;:11;:13::i;:::-;4698:6;;59152:44:::1;::::0;-1:-1:-1;;;;;4698:6:0;;;;59174:21:::1;59152:44:::0;::::1;;;::::0;::::1;::::0;;;59174:21;4698:6;59152:44;::::1;;;;;;59130:115;;;::::0;-1:-1:-1;;;59130:115:0;;9964:2:1;59130:115:0::1;::::0;::::1;9946:21:1::0;10003:2;9983:18;;;9976:30;-1:-1:-1;;;10022:18:1;;;10015:51;10083:18;;59130:115:0::1;;;;;;;;;59080:173::o:0;38530:185::-;38668:39;38685:4;38691:2;38695:7;38668:39;;;;;;;;;;;;:16;:39::i;:::-;38530:185;;;:::o;58521:108::-;4511:13;:11;:13::i;:::-;58600:21:::1;:7;58610:11:::0;;58600:21:::1;:::i;26820:152::-:0;26892:7;26935:27;26954:7;26935:18;:27::i;22362:233::-;22434:7;-1:-1:-1;;;;;22458:19:0;;22454:60;;22486:28;;-1:-1:-1;;;22486:28:0;;;;;;;;;;;22454:60;-1:-1:-1;;;;;;22532:25:0;;;;;:18;:25;;;;;;16521:13;22532:55;;22362:233::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;58745:74::-:0;4511:13;:11;:13::i;:::-;58805:6:::1;::::0;;-1:-1:-1;;58795:16:0;::::1;58805:6;::::0;;::::1;58804:7;58795:16;::::0;;58745:74::o;58827:245::-;4511:13;:11;:13::i;:::-;58950:19:::1;::::0;58504:1;21452:12;21239:7;21436:13;58935:12;;21436:28;;-1:-1:-1;;21436:46:0;58919:28:::1;;;;:::i;:::-;:50;58897:121;;;::::0;-1:-1:-1;;;58897:121:0;;8560:2:1;58897:121:0::1;::::0;::::1;8542:21:1::0;8599:2;8579:18;;;8572:30;-1:-1:-1;;;8618:18:1;;;8611:51;8679:18;;58897:121:0::1;8358:345:1::0;58897:121:0::1;59029:35;59039:10;59051:12;59029:9;:35::i;:::-;58827:245:::0;:::o;25603:104::-;25659:13;25692:7;25685:14;;;;;:::i;57397:886::-;57467:6;;;;57466:7;57458:34;;;;-1:-1:-1;;;57458:34:0;;7810:2:1;57458:34:0;;;7792:21:1;7849:2;7829:18;;;7822:30;-1:-1:-1;;;7868:18:1;;;7861:44;7922:18;;57458:34:0;7608:338:1;57458:34:0;57505:20;57528:13;58504:1;21452:12;21239:7;21436:13;-1:-1:-1;;21436:28:0;;;:46;;21178:323;57528:13;57603:19;;57505:36;;-1:-1:-1;57576:24:0;57591:9;57505:36;57576:24;:::i;:::-;:46;57554:110;;;;-1:-1:-1;;;57554:110:0;;7467:2:1;57554:110:0;;;7449:21:1;7506:2;7486:18;;;7479:30;-1:-1:-1;;;7525:18:1;;;7518:44;7579:18;;57554:110:0;7265:338:1;57554:110:0;57695:28;;57683:9;:40;57675:71;;;;-1:-1:-1;;;57675:71:0;;8910:2:1;57675:71:0;;;8892:21:1;8949:2;8929:18;;;8922:30;-1:-1:-1;;;8968:18:1;;;8961:48;9026:18;;57675:71:0;8708:342:1;57675:71:0;57842:10;57759:19;57825:28;;;:16;:28;;;;;;57781:9;;57886:1;57870:17;;57866:235;;;57920:1;57908:9;:13;57904:137;;;57956:13;57968:1;57956:9;:13;:::i;:::-;57942:27;;57904:137;;;58024:1;58010:15;;57904:137;58074:10;58057:28;;;;:16;:28;;;;;58088:1;58057:32;;57866:235;58162:16;;58148:30;;:11;:30;:::i;:::-;58135:9;:43;;58113:117;;;;-1:-1:-1;;;58113:117:0;;10314:2:1;58113:117:0;;;10296:21:1;10353:2;10333:18;;;10326:30;10392:26;10372:18;;;10365:54;10436:18;;58113:117:0;10112:348:1;58113:117:0;58243:32;58253:10;58265:9;58243;:32::i;:::-;57447:836;;;57397:886;:::o;32468:308::-;-1:-1:-1;;;;;32567:31:0;;55208:10;32567:31;32563:61;;;32607:17;;-1:-1:-1;;;32607:17:0;;;;;;;;;;;32563:61;55208:10;32637:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;32637:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;32637:60:0;;;;;;;;;;32713:55;;6989:41:1;;;32637:49:0;;55208:10;32713:55;;6962:18:1;32713:55:0;;;;;;;32468:308;;:::o;39313:399::-;39480:31;39493:4;39499:2;39503:7;39480:12;:31::i;:::-;-1:-1:-1;;;;;39526:14:0;;;:19;39522:183;;39565:56;39596:4;39602:2;39606:7;39615:5;39565:30;:56::i;:::-;39560:145;;39649:40;;-1:-1:-1;;;39649:40:0;;;;;;;;;;;59261:303;59379:13;59418:16;59426:7;59418;:16::i;:::-;59410:46;;;;-1:-1:-1;;;59410:46:0;;9257:2:1;59410:46:0;;;9239:21:1;9296:2;9276:18;;;9269:30;-1:-1:-1;;;9315:18:1;;;9308:47;9372:18;;59410:46:0;9055:341:1;59410:46:0;59513:7;59527:18;:7;:16;:18::i;:::-;59496:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59469:87;;59261:303;;;:::o;5531:201::-;4511:13;:11;:13::i;:::-;-1:-1:-1;;;;;5620:22:0;::::1;5612:73;;;::::0;-1:-1:-1;;;5612:73:0;;8153:2:1;5612:73:0::1;::::0;::::1;8135:21:1::0;8192:2;8172:18;;;8165:30;8231:34;8211:18;;;8204:62;-1:-1:-1;;;8282:18:1;;;8275:36;8328:19;;5612:73:0::1;7951:402:1::0;5612:73:0::1;5696:28;5715:8;5696:18;:28::i;33355:282::-:0;33420:4;33476:7;58504:1;33457:26;;:66;;;;;33510:13;;33500:7;:23;33457:66;:153;;;;-1:-1:-1;;33561:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;33561:44:0;:49;;33355:282::o;27975:1275::-;28042:7;28077;;58504:1;28126:23;28122:1061;;28179:13;;28172:4;:20;28168:1015;;;28217:14;28234:23;;;:17;:23;;;;;;-1:-1:-1;;;28323:24:0;;28319:845;;28988:113;28995:11;28988:113;;-1:-1:-1;;;29066:6:0;29048:25;;;;:17;:25;;;;;;28988:113;;;29134:6;27975:1275;-1:-1:-1;;;27975:1275:0:o;28319:845::-;28194:989;28168:1015;29211:31;;-1:-1:-1;;;29211:31:0;;;;;;;;;;;4790:132;4698:6;;-1:-1:-1;;;;;4698:6:0;55208:10;4854:23;4846:68;;;;-1:-1:-1;;;4846:68:0;;9603:2:1;4846:68:0;;;9585:21:1;;;9622:18;;;9615:30;9681:34;9661:18;;;9654:62;9733:18;;4846:68:0;9401:356:1;5892:191:0;5985:6;;;-1:-1:-1;;;;;6002:17:0;;;-1:-1:-1;;;;;;6002:17:0;;;;;;;6035:40;;5985:6;;;6002:17;5985:6;;6035:40;;5966:16;;6035:40;5955:128;5892:191;:::o;48953:112::-;49030:27;49040:2;49044:8;49030:27;;;;;;;;;;;;:9;:27::i;:::-;48953:112;;:::o;41796:716::-;41980:88;;-1:-1:-1;;;41980:88:0;;41959:4;;-1:-1:-1;;;;;41980:45:0;;;;;:88;;55208:10;;42047:4;;42053:7;;42062:5;;41980:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41980:88:0;;;;;;;;-1:-1:-1;;41980:88:0;;;;;;;;;;;;:::i;:::-;;;41976:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42263:13:0;;42259:235;;42309:40;;-1:-1:-1;;;42309:40:0;;;;;;;;;;;42259:235;42452:6;42446:13;42437:6;42433:2;42429:15;42422:38;41976:529;-1:-1:-1;;;;;;42139:64:0;-1:-1:-1;;;42139:64:0;;-1:-1:-1;41976:529:0;41796:716;;;;;;:::o;430:723::-;486:13;707:10;703:53;;-1:-1:-1;;734:10:0;;;;;;;;;;;;-1:-1:-1;;;734:10:0;;;;;430:723::o;703:53::-;781:5;766:12;822:78;829:9;;822:78;;855:8;;;;:::i;:::-;;-1:-1:-1;878:10:0;;-1:-1:-1;886:2:0;878:10;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;932:17:0;;910:39;;960:154;967:10;;960:154;;994:11;1004:1;994:11;;:::i;:::-;;-1:-1:-1;1063:10:0;1071:2;1063:5;:10;:::i;:::-;1050:24;;:2;:24;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1020:56:0;;;;;;;;-1:-1:-1;1091:11:0;1100:2;1091:11;;:::i;:::-;;;960:154;;48180:689;48311:19;48317:2;48321:8;48311:5;:19::i;:::-;-1:-1:-1;;;;;48372:14:0;;;:19;48368:483;;48412:11;48426:13;48474:14;;;48507:233;48538:62;48577:1;48581:2;48585:7;;;;;;48594:5;48538:30;:62::i;:::-;48533:167;;48636:40;;-1:-1:-1;;;48636:40:0;;;;;;;;;;;48533:167;48735:3;48727:5;:11;48507:233;;48822:3;48805:13;;:20;48801:34;;48827:8;;;48801:34;48393:458;;48180:689;;;:::o;42974:2454::-;43047:20;43070:13;43098;43094:44;;43120:18;;-1:-1:-1;;;43120:18:0;;;;;;;;;;;43094:44;-1:-1:-1;;;;;43626:22:0;;;;;;:18;:22;;;;16659:2;43626:22;;;:71;;43664:32;43652:45;;43626:71;;;43940:31;;;:17;:31;;;;;-1:-1:-1;30640:15:0;;30614:24;30610:46;30209:11;30184:23;30180:41;30177:52;30167:63;;43940:173;;44175:23;;;;43940:31;;43626:22;;44674:25;43626:22;;44527:335;44942:1;44928:12;44924:20;44882:346;44983:3;44974:7;44971:16;44882:346;;45201:7;45191:8;45188:1;45161:25;45158:1;45155;45150:59;45036:1;45023:15;44882:346;;;-1:-1:-1;45261:13:0;45257:45;;45283:19;;-1:-1:-1;;;45283:19:0;;;;;;;;;;;45257:45;45319:13;:19;-1:-1:-1;38530:185:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:592::-;3310:6;3318;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3427:9;3414:23;3456:18;3497:2;3489:6;3486:14;3483:34;;;3513:1;3510;3503:12;3483:34;3551:6;3540:9;3536:22;3526:32;;3596:7;3589:4;3585:2;3581:13;3577:27;3567:55;;3618:1;3615;3608:12;3567:55;3658:2;3645:16;3684:2;3676:6;3673:14;3670:34;;;3700:1;3697;3690:12;3670:34;3745:7;3740:2;3731:6;3727:2;3723:15;3719:24;3716:37;3713:57;;;3766:1;3763;3756:12;3713:57;3797:2;3789:11;;;;;3819:6;;-1:-1:-1;3239:592:1;;-1:-1:-1;;;;3239:592:1:o;3836:180::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:52;;;3964:1;3961;3954:12;3916:52;-1:-1:-1;3987:23:1;;3836:180;-1:-1:-1;3836:180:1:o;4021:257::-;4062:3;4100:5;4094:12;4127:6;4122:3;4115:19;4143:63;4199:6;4192:4;4187:3;4183:14;4176:4;4169:5;4165:16;4143:63;:::i;:::-;4260:2;4239:15;-1:-1:-1;;4235:29:1;4226:39;;;;4267:4;4222:50;;4021:257;-1:-1:-1;;4021:257:1:o;4283:185::-;4325:3;4363:5;4357:12;4378:52;4423:6;4418:3;4411:4;4404:5;4400:16;4378:52;:::i;:::-;4446:16;;;;;4283:185;-1:-1:-1;;4283:185:1:o;4710:1433::-;5088:3;5117:1;5150:6;5144:13;5180:3;5202:1;5230:9;5226:2;5222:18;5212:28;;5290:2;5279:9;5275:18;5312;5302:61;;5356:4;5348:6;5344:17;5334:27;;5302:61;5382:2;5430;5422:6;5419:14;5399:18;5396:38;5393:165;;;-1:-1:-1;;;5457:33:1;;5513:4;5510:1;5503:15;5543:4;5464:3;5531:17;5393:165;5574:18;5601:104;;;;5719:1;5714:320;;;;5567:467;;5601:104;-1:-1:-1;;5634:24:1;;5622:37;;5679:16;;;;-1:-1:-1;5601:104:1;;5714:320;10720:1;10713:14;;;10757:4;10744:18;;5809:1;5823:165;5837:6;5834:1;5831:13;5823:165;;;5915:14;;5902:11;;;5895:35;5958:16;;;;5852:10;;5823:165;;;5827:3;;6017:6;6012:3;6008:16;6001:23;;5567:467;;;;;;;6050:87;6075:61;6101:34;6131:3;-1:-1:-1;;;4656:16:1;;4697:1;4688:11;;4591:114;6101:34;6093:6;6075:61;:::i;:::-;-1:-1:-1;;;4533:20:1;;4578:1;4569:11;;4473:113;6050:87;6043:94;4710:1433;-1:-1:-1;;;;;4710:1433:1:o;6356:488::-;-1:-1:-1;;;;;6625:15:1;;;6607:34;;6677:15;;6672:2;6657:18;;6650:43;6724:2;6709:18;;6702:34;;;6772:3;6767:2;6752:18;;6745:31;;;6550:4;;6793:45;;6818:19;;6810:6;6793:45;:::i;:::-;6785:53;6356:488;-1:-1:-1;;;;;;6356:488:1:o;7041:219::-;7190:2;7179:9;7172:21;7153:4;7210:44;7250:2;7239:9;7235:18;7227:6;7210:44;:::i;10773:128::-;10813:3;10844:1;10840:6;10837:1;10834:13;10831:39;;;10850:18;;:::i;:::-;-1:-1:-1;10886:9:1;;10773:128::o;10906:120::-;10946:1;10972;10962:35;;10977:18;;:::i;:::-;-1:-1:-1;11011:9:1;;10906:120::o;11031:168::-;11071:7;11137:1;11133;11129:6;11125:14;11122:1;11119:21;11114:1;11107:9;11100:17;11096:45;11093:71;;;11144:18;;:::i;:::-;-1:-1:-1;11184:9:1;;11031:168::o;11204:125::-;11244:4;11272:1;11269;11266:8;11263:34;;;11277:18;;:::i;:::-;-1:-1:-1;11314:9:1;;11204:125::o;11334:258::-;11406:1;11416:113;11430:6;11427:1;11424:13;11416:113;;;11506:11;;;11500:18;11487:11;;;11480:39;11452:2;11445:10;11416:113;;;11547:6;11544:1;11541:13;11538:48;;;-1:-1:-1;;11582:1:1;11564:16;;11557:27;11334:258::o;11597:380::-;11676:1;11672:12;;;;11719;;;11740:61;;11794:4;11786:6;11782:17;11772:27;;11740:61;11847:2;11839:6;11836:14;11816:18;11813:38;11810:161;;;11893:10;11888:3;11884:20;11881:1;11874:31;11928:4;11925:1;11918:15;11956:4;11953:1;11946:15;11810:161;;11597:380;;;:::o;11982:135::-;12021:3;-1:-1:-1;;12042:17:1;;12039:43;;;12062:18;;:::i;:::-;-1:-1:-1;12109:1:1;12098:13;;11982:135::o;12122:112::-;12154:1;12180;12170:35;;12185:18;;:::i;:::-;-1:-1:-1;12219:9:1;;12122:112::o;12239:127::-;12300:10;12295:3;12291:20;12288:1;12281:31;12331:4;12328:1;12321:15;12355:4;12352:1;12345:15;12371:127;12432:10;12427:3;12423:20;12420:1;12413:31;12463:4;12460:1;12453:15;12487:4;12484:1;12477:15;12503:127;12564:10;12559:3;12555:20;12552:1;12545:31;12595:4;12592:1;12585:15;12619:4;12616:1;12609:15;12635:127;12696:10;12691:3;12687:20;12684:1;12677:31;12727:4;12724:1;12717:15;12751:4;12748:1;12741:15;12767:131;-1:-1:-1;;;;;;12841:32:1;;12831:43;;12821:71;;12888:1;12885;12878:12
Swarm Source
ipfs://3d7b0dac8046ec9af4e975bc1c7645c15e2100a0e95a0cbb949108ec8537bd7e
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.