ERC-721
Overview
Max Total Supply
9,790 GIGGITY
Holders
963
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 GIGGITYLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BoredQuagmireGiggityClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-25 */ // SPDX-License-Identifier: Unlicense // 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (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/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/boredQuagmireGiggityClub.sol pragma solidity ^0.8.4; contract BoredQuagmireGiggityClub is ERC721A, Ownable { using Strings for uint256; string public baseURI = "https://boredquagmiregiggityclub.s3.amazonaws.com/metadata/"; uint256 public price = 0.002 ether; uint256 public maxPerTx = 10; uint256 public maxSupply = 10000; uint256 public maxFreePerWallet = 1; uint256 public totalFreeMinted = 0; uint256 public maxFreeSupply = 5000; mapping(address => uint256) public _mintedFreeAmount; constructor() ERC721A("Bored Quagmire Giggity Club", "GIGGITY") {} function mint(uint256 _amount) external payable { require(msg.value >= _amount * price, "Incorrect amount of ETH."); require(totalSupply() + _amount <= maxSupply, "Sold out."); require(tx.origin == msg.sender, "Only humans please."); require(_amount <= maxPerTx, "You may only mint a max of 10 per transaction"); _mint(msg.sender, _amount); } function mintFree(uint256 _amount) external payable { require(_mintedFreeAmount[msg.sender] + _amount <= maxFreePerWallet, "You have minted the max free amount allowed per wallet."); require(totalFreeMinted + _amount <= maxFreeSupply, "Cannot exceed Free BQGC supply." ); require(totalSupply() + _amount <= maxSupply, "Sold out."); _mintedFreeAmount[msg.sender]++; totalFreeMinted++; _safeMint(msg.sender, _amount); } function teamMint(uint256 _amount, address _wallet) external onlyOwner { require(totalSupply() + _amount <= maxSupply); _mint(_wallet, _amount); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseURI, tokenId.toString(), ".json")); } function setBaseURI(string calldata baseURI_) external onlyOwner { baseURI = baseURI_; } function setPrice(uint256 _price) external onlyOwner { price = _price; } function setMaxPerTx(uint256 _amount) external onlyOwner { maxPerTx = _amount; } function setMaxSupply(uint256 _newSupply) external onlyOwner { require(_newSupply < maxSupply); maxSupply = _newSupply; } function setmaxFreeSupply(uint256 _newMaxFreeSupply) public onlyOwner { maxFreeSupply = _newMaxFreeSupply; } function _startTokenId() internal pure override returns (uint256) { return 1; } function withdraw() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
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":[{"internalType":"address","name":"","type":"address"}],"name":"_mintedFreeAmount","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintFree","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","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":"_amount","type":"uint256"},{"internalType":"address","name":"_wallet","type":"address"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e0604052603b60808181529062001e2160a0398051620000299160099160209091019062000143565b5066071afd498d0000600a55600a600b55612710600c556001600d556000600e55611388600f553480156200005d57600080fd5b50604080518082018252601b81527f426f72656420517561676d697265204769676769747920436c756200000000006020808301918252835180850190945260078452664749474749545960c81b908401528151919291620000c29160029162000143565b508051620000d890600390602084019062000143565b5050600160005550620000eb33620000f1565b62000226565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015190620001e9565b90600052602060002090601f016020900481019282620001755760008555620001c0565b82601f106200019057805160ff1916838001178555620001c0565b82800160010185558215620001c0579182015b82811115620001c0578251825591602001919060010190620001a3565b50620001ce929150620001d2565b5090565b5b80821115620001ce5760008155600101620001d3565b600181811c90821680620001fe57607f821691505b602082108114156200022057634e487b7160e01b600052602260045260246000fd5b50919050565b611beb80620002366000396000f3fe6080604052600436106101f95760003560e01c806395d89b411161010d578063bfa457bc116100a0578063dad7b5c91161006f578063dad7b5c91461056b578063e985e9c514610581578063f2fde38b146105ca578063f4db2acb146105ea578063f968adbe1461061757600080fd5b8063bfa457bc146104f5578063c6f6f21614610515578063c87b56dd14610535578063d5abeb011461055557600080fd5b8063a4146733116100dc578063a41467331461048c578063a70273571461049f578063b88d4fde146104b5578063bde12d73146104d557600080fd5b806395d89b411461042e578063a035b1fe14610443578063a0712d6814610459578063a22cb4651461046c57600080fd5b806347513334116101905780636f8b44b01161015f5780636f8b44b01461039b57806370a08231146103bb578063715018a6146103db5780638da5cb5b146103f057806391b7f5ed1461040e57600080fd5b8063475133341461033057806355f804b3146103465780636352211e146103665780636c0360eb1461038657600080fd5b806318160ddd116101cc57806318160ddd146102af57806323b872dd146102db5780633ccfd60b146102fb57806342842e0e1461031057600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611814565b61062d565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061024861067f565b60405161022a9190611a3c565b34801561026157600080fd5b506102756102703660046118c0565b610711565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a83660046117ea565b610755565b005b3480156102bb57600080fd5b506102cd600154600054036000190190565b60405190815260200161022a565b3480156102e757600080fd5b506102ad6102f6366004611696565b6107f5565b34801561030757600080fd5b506102ad610986565b34801561031c57600080fd5b506102ad61032b366004611696565b610a21565b34801561033c57600080fd5b506102cd600f5481565b34801561035257600080fd5b506102ad61036136600461184e565b610a41565b34801561037257600080fd5b506102756103813660046118c0565b610a55565b34801561039257600080fd5b50610248610a60565b3480156103a757600080fd5b506102ad6103b63660046118c0565b610aee565b3480156103c757600080fd5b506102cd6103d6366004611648565b610b09565b3480156103e757600080fd5b506102ad610b58565b3480156103fc57600080fd5b506008546001600160a01b0316610275565b34801561041a57600080fd5b506102ad6104293660046118c0565b610b6c565b34801561043a57600080fd5b50610248610b79565b34801561044f57600080fd5b506102cd600a5481565b6102ad6104673660046118c0565b610b88565b34801561047857600080fd5b506102ad6104873660046117ae565b610cf4565b6102ad61049a3660046118c0565b610d8a565b3480156104ab57600080fd5b506102cd600d5481565b3480156104c157600080fd5b506102ad6104d03660046116d2565b610f13565b3480156104e157600080fd5b506102ad6104f03660046118c0565b610f5d565b34801561050157600080fd5b506102ad6105103660046118d9565b610f6a565b34801561052157600080fd5b506102ad6105303660046118c0565b610faa565b34801561054157600080fd5b506102486105503660046118c0565b610fb7565b34801561056157600080fd5b506102cd600c5481565b34801561057757600080fd5b506102cd600e5481565b34801561058d57600080fd5b5061021e61059c366004611663565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105d657600080fd5b506102ad6105e5366004611648565b611058565b3480156105f657600080fd5b506102cd610605366004611648565b60106020526000908152604090205481565b34801561062357600080fd5b506102cd600b5481565b60006301ffc9a760e01b6001600160e01b03198316148061065e57506380ac58cd60e01b6001600160e01b03198316145b806106795750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461068e90611add565b80601f01602080910402602001604051908101604052809291908181526020018280546106ba90611add565b80156107075780601f106106dc57610100808354040283529160200191610707565b820191906000526020600020905b8154815290600101906020018083116106ea57829003601f168201915b5050505050905090565b600061071c826110ce565b610739576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061076082610a55565b9050336001600160a01b038216146107995761077c813361059c565b610799576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061080082611103565b9050836001600160a01b0316816001600160a01b0316146108335760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761088057610863863361059c565b61088057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166108a757604051633a954ecd60e21b815260040160405180910390fd5b80156108b257600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661093d576001840160008181526004602052604090205461093b57600054811461093b5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b61098e611173565b604051600090339047908381818185875af1925050503d80600081146109d0576040519150601f19603f3d011682016040523d82523d6000602084013e6109d5565b606091505b5050905080610a1e5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064015b60405180910390fd5b50565b610a3c83838360405180602001604052806000815250610f13565b505050565b610a49611173565b610a3c60098383611593565b600061067982611103565b60098054610a6d90611add565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9990611add565b8015610ae65780601f10610abb57610100808354040283529160200191610ae6565b820191906000526020600020905b815481529060010190602001808311610ac957829003601f168201915b505050505081565b610af6611173565b600c548110610b0457600080fd5b600c55565b60006001600160a01b038216610b32576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b60611173565b610b6a60006111cd565b565b610b74611173565b600a55565b60606003805461068e90611add565b600a54610b959082611a7b565b341015610be45760405162461bcd60e51b815260206004820152601860248201527f496e636f727265637420616d6f756e74206f66204554482e00000000000000006044820152606401610a15565b600c5481610bf9600154600054036000190190565b610c039190611a4f565b1115610c3d5760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b6044820152606401610a15565b323314610c825760405162461bcd60e51b815260206004820152601360248201527227b7363c90343ab6b0b73990383632b0b9b29760691b6044820152606401610a15565b600b54811115610cea5760405162461bcd60e51b815260206004820152602d60248201527f596f75206d6179206f6e6c79206d696e742061206d6178206f6620313020706560448201526c39103a3930b739b0b1ba34b7b760991b6064820152608401610a15565b610a1e338261121f565b6001600160a01b038216331415610d1e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d5433600090815260106020526040902054610da8908390611a4f565b1115610e1c5760405162461bcd60e51b815260206004820152603760248201527f596f752068617665206d696e74656420746865206d6178206672656520616d6f60448201527f756e7420616c6c6f776564207065722077616c6c65742e0000000000000000006064820152608401610a15565b600f5481600e54610e2d9190611a4f565b1115610e7b5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74206578636565642046726565204251474320737570706c792e006044820152606401610a15565b600c5481610e90600154600054036000190190565b610e9a9190611a4f565b1115610ed45760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b6044820152606401610a15565b336000908152601060205260408120805491610eef83611b18565b9091555050600e8054906000610f0483611b18565b9190505550610a1e3382611316565b610f1e8484846107f5565b6001600160a01b0383163b15610f5757610f3a84848484611330565b610f57576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610f65611173565b600f55565b610f72611173565b600c5482610f87600154600054036000190190565b610f919190611a4f565b1115610f9c57600080fd5b610fa6818361121f565b5050565b610fb2611173565b600b55565b6060610fc2826110ce565b6110265760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a15565b600961103183611428565b604051602001611042929190611944565b6040516020818303038152906040529050919050565b611060611173565b6001600160a01b0381166110c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a15565b610a1e816111cd565b6000816001111580156110e2575060005482105b8015610679575050600090815260046020526040902054600160e01b161590565b6000818060011161115a5760005481101561115a57600081815260046020526040902054600160e01b8116611158575b80611151575060001901600081815260046020526040902054611133565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610b6a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a15565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054816112405760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146112ef57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016112b7565b508161130d57604051622e076360e81b815260040160405180910390fd5b60005550505050565b610fa6828260405180602001604052806000815250611526565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113659033908990889088906004016119ff565b602060405180830381600087803b15801561137f57600080fd5b505af19250505080156113af575060408051601f3d908101601f191682019092526113ac91810190611831565b60015b61140a573d8080156113dd576040519150601f19603f3d011682016040523d82523d6000602084013e6113e2565b606091505b508051611402576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161144c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611476578061146081611b18565b915061146f9050600a83611a67565b9150611450565b60008167ffffffffffffffff81111561149157611491611b89565b6040519080825280601f01601f1916602001820160405280156114bb576020820181803683370190505b5090505b8415611420576114d0600183611a9a565b91506114dd600a86611b33565b6114e8906030611a4f565b60f81b8183815181106114fd576114fd611b73565b60200101906001600160f81b031916908160001a90535061151f600a86611a67565b94506114bf565b611530838361121f565b6001600160a01b0383163b15610a3c576000548281035b61155a6000868380600101945086611330565b611577576040516368d2bf6b60e11b815260040160405180910390fd5b81811061154757816000541461158c57600080fd5b5050505050565b82805461159f90611add565b90600052602060002090601f0160209004810192826115c15760008555611607565b82601f106115da5782800160ff19823516178555611607565b82800160010185558215611607579182015b828111156116075782358255916020019190600101906115ec565b50611613929150611617565b5090565b5b808211156116135760008155600101611618565b80356001600160a01b038116811461164357600080fd5b919050565b60006020828403121561165a57600080fd5b6111518261162c565b6000806040838503121561167657600080fd5b61167f8361162c565b915061168d6020840161162c565b90509250929050565b6000806000606084860312156116ab57600080fd5b6116b48461162c565b92506116c26020850161162c565b9150604084013590509250925092565b600080600080608085870312156116e857600080fd5b6116f18561162c565b93506116ff6020860161162c565b925060408501359150606085013567ffffffffffffffff8082111561172357600080fd5b818701915087601f83011261173757600080fd5b81358181111561174957611749611b89565b604051601f8201601f19908116603f0116810190838211818310171561177157611771611b89565b816040528281528a602084870101111561178a57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156117c157600080fd5b6117ca8361162c565b9150602083013580151581146117df57600080fd5b809150509250929050565b600080604083850312156117fd57600080fd5b6118068361162c565b946020939093013593505050565b60006020828403121561182657600080fd5b813561115181611b9f565b60006020828403121561184357600080fd5b815161115181611b9f565b6000806020838503121561186157600080fd5b823567ffffffffffffffff8082111561187957600080fd5b818501915085601f83011261188d57600080fd5b81358181111561189c57600080fd5b8660208285010111156118ae57600080fd5b60209290920196919550909350505050565b6000602082840312156118d257600080fd5b5035919050565b600080604083850312156118ec57600080fd5b8235915061168d6020840161162c565b60008151808452611914816020860160208601611ab1565b601f01601f19169290920160200192915050565b6000815161193a818560208601611ab1565b9290920192915050565b600080845481600182811c91508083168061196057607f831692505b602080841082141561198057634e487b7160e01b86526022600452602486fd5b81801561199457600181146119a5576119d2565b60ff198616895284890196506119d2565b60008b81526020902060005b868110156119ca5781548b8201529085019083016119b1565b505084890196505b5050505050506119f66119e58286611928565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a32908301846118fc565b9695505050505050565b60208152600061115160208301846118fc565b60008219821115611a6257611a62611b47565b500190565b600082611a7657611a76611b5d565b500490565b6000816000190483118215151615611a9557611a95611b47565b500290565b600082821015611aac57611aac611b47565b500390565b60005b83811015611acc578181015183820152602001611ab4565b83811115610f575750506000910152565b600181811c90821680611af157607f821691505b60208210811415611b1257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b2c57611b2c611b47565b5060010190565b600082611b4257611b42611b5d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a1e57600080fdfea2646970667358221220f8a4056ed0d051eb98e1ea6b6da1d7cd28acd82cd7ad6219372671edca9019b364736f6c6343000807003368747470733a2f2f626f726564717561676d69726567696767697479636c75622e73332e616d617a6f6e6177732e636f6d2f6d657461646174612f
Deployed Bytecode
0x6080604052600436106101f95760003560e01c806395d89b411161010d578063bfa457bc116100a0578063dad7b5c91161006f578063dad7b5c91461056b578063e985e9c514610581578063f2fde38b146105ca578063f4db2acb146105ea578063f968adbe1461061757600080fd5b8063bfa457bc146104f5578063c6f6f21614610515578063c87b56dd14610535578063d5abeb011461055557600080fd5b8063a4146733116100dc578063a41467331461048c578063a70273571461049f578063b88d4fde146104b5578063bde12d73146104d557600080fd5b806395d89b411461042e578063a035b1fe14610443578063a0712d6814610459578063a22cb4651461046c57600080fd5b806347513334116101905780636f8b44b01161015f5780636f8b44b01461039b57806370a08231146103bb578063715018a6146103db5780638da5cb5b146103f057806391b7f5ed1461040e57600080fd5b8063475133341461033057806355f804b3146103465780636352211e146103665780636c0360eb1461038657600080fd5b806318160ddd116101cc57806318160ddd146102af57806323b872dd146102db5780633ccfd60b146102fb57806342842e0e1461031057600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611814565b61062d565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061024861067f565b60405161022a9190611a3c565b34801561026157600080fd5b506102756102703660046118c0565b610711565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a83660046117ea565b610755565b005b3480156102bb57600080fd5b506102cd600154600054036000190190565b60405190815260200161022a565b3480156102e757600080fd5b506102ad6102f6366004611696565b6107f5565b34801561030757600080fd5b506102ad610986565b34801561031c57600080fd5b506102ad61032b366004611696565b610a21565b34801561033c57600080fd5b506102cd600f5481565b34801561035257600080fd5b506102ad61036136600461184e565b610a41565b34801561037257600080fd5b506102756103813660046118c0565b610a55565b34801561039257600080fd5b50610248610a60565b3480156103a757600080fd5b506102ad6103b63660046118c0565b610aee565b3480156103c757600080fd5b506102cd6103d6366004611648565b610b09565b3480156103e757600080fd5b506102ad610b58565b3480156103fc57600080fd5b506008546001600160a01b0316610275565b34801561041a57600080fd5b506102ad6104293660046118c0565b610b6c565b34801561043a57600080fd5b50610248610b79565b34801561044f57600080fd5b506102cd600a5481565b6102ad6104673660046118c0565b610b88565b34801561047857600080fd5b506102ad6104873660046117ae565b610cf4565b6102ad61049a3660046118c0565b610d8a565b3480156104ab57600080fd5b506102cd600d5481565b3480156104c157600080fd5b506102ad6104d03660046116d2565b610f13565b3480156104e157600080fd5b506102ad6104f03660046118c0565b610f5d565b34801561050157600080fd5b506102ad6105103660046118d9565b610f6a565b34801561052157600080fd5b506102ad6105303660046118c0565b610faa565b34801561054157600080fd5b506102486105503660046118c0565b610fb7565b34801561056157600080fd5b506102cd600c5481565b34801561057757600080fd5b506102cd600e5481565b34801561058d57600080fd5b5061021e61059c366004611663565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105d657600080fd5b506102ad6105e5366004611648565b611058565b3480156105f657600080fd5b506102cd610605366004611648565b60106020526000908152604090205481565b34801561062357600080fd5b506102cd600b5481565b60006301ffc9a760e01b6001600160e01b03198316148061065e57506380ac58cd60e01b6001600160e01b03198316145b806106795750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461068e90611add565b80601f01602080910402602001604051908101604052809291908181526020018280546106ba90611add565b80156107075780601f106106dc57610100808354040283529160200191610707565b820191906000526020600020905b8154815290600101906020018083116106ea57829003601f168201915b5050505050905090565b600061071c826110ce565b610739576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061076082610a55565b9050336001600160a01b038216146107995761077c813361059c565b610799576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061080082611103565b9050836001600160a01b0316816001600160a01b0316146108335760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761088057610863863361059c565b61088057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166108a757604051633a954ecd60e21b815260040160405180910390fd5b80156108b257600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661093d576001840160008181526004602052604090205461093b57600054811461093b5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b61098e611173565b604051600090339047908381818185875af1925050503d80600081146109d0576040519150601f19603f3d011682016040523d82523d6000602084013e6109d5565b606091505b5050905080610a1e5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064015b60405180910390fd5b50565b610a3c83838360405180602001604052806000815250610f13565b505050565b610a49611173565b610a3c60098383611593565b600061067982611103565b60098054610a6d90611add565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9990611add565b8015610ae65780601f10610abb57610100808354040283529160200191610ae6565b820191906000526020600020905b815481529060010190602001808311610ac957829003601f168201915b505050505081565b610af6611173565b600c548110610b0457600080fd5b600c55565b60006001600160a01b038216610b32576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b60611173565b610b6a60006111cd565b565b610b74611173565b600a55565b60606003805461068e90611add565b600a54610b959082611a7b565b341015610be45760405162461bcd60e51b815260206004820152601860248201527f496e636f727265637420616d6f756e74206f66204554482e00000000000000006044820152606401610a15565b600c5481610bf9600154600054036000190190565b610c039190611a4f565b1115610c3d5760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b6044820152606401610a15565b323314610c825760405162461bcd60e51b815260206004820152601360248201527227b7363c90343ab6b0b73990383632b0b9b29760691b6044820152606401610a15565b600b54811115610cea5760405162461bcd60e51b815260206004820152602d60248201527f596f75206d6179206f6e6c79206d696e742061206d6178206f6620313020706560448201526c39103a3930b739b0b1ba34b7b760991b6064820152608401610a15565b610a1e338261121f565b6001600160a01b038216331415610d1e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d5433600090815260106020526040902054610da8908390611a4f565b1115610e1c5760405162461bcd60e51b815260206004820152603760248201527f596f752068617665206d696e74656420746865206d6178206672656520616d6f60448201527f756e7420616c6c6f776564207065722077616c6c65742e0000000000000000006064820152608401610a15565b600f5481600e54610e2d9190611a4f565b1115610e7b5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74206578636565642046726565204251474320737570706c792e006044820152606401610a15565b600c5481610e90600154600054036000190190565b610e9a9190611a4f565b1115610ed45760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b6044820152606401610a15565b336000908152601060205260408120805491610eef83611b18565b9091555050600e8054906000610f0483611b18565b9190505550610a1e3382611316565b610f1e8484846107f5565b6001600160a01b0383163b15610f5757610f3a84848484611330565b610f57576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610f65611173565b600f55565b610f72611173565b600c5482610f87600154600054036000190190565b610f919190611a4f565b1115610f9c57600080fd5b610fa6818361121f565b5050565b610fb2611173565b600b55565b6060610fc2826110ce565b6110265760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a15565b600961103183611428565b604051602001611042929190611944565b6040516020818303038152906040529050919050565b611060611173565b6001600160a01b0381166110c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a15565b610a1e816111cd565b6000816001111580156110e2575060005482105b8015610679575050600090815260046020526040902054600160e01b161590565b6000818060011161115a5760005481101561115a57600081815260046020526040902054600160e01b8116611158575b80611151575060001901600081815260046020526040902054611133565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610b6a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a15565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054816112405760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146112ef57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016112b7565b508161130d57604051622e076360e81b815260040160405180910390fd5b60005550505050565b610fa6828260405180602001604052806000815250611526565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113659033908990889088906004016119ff565b602060405180830381600087803b15801561137f57600080fd5b505af19250505080156113af575060408051601f3d908101601f191682019092526113ac91810190611831565b60015b61140a573d8080156113dd576040519150601f19603f3d011682016040523d82523d6000602084013e6113e2565b606091505b508051611402576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161144c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611476578061146081611b18565b915061146f9050600a83611a67565b9150611450565b60008167ffffffffffffffff81111561149157611491611b89565b6040519080825280601f01601f1916602001820160405280156114bb576020820181803683370190505b5090505b8415611420576114d0600183611a9a565b91506114dd600a86611b33565b6114e8906030611a4f565b60f81b8183815181106114fd576114fd611b73565b60200101906001600160f81b031916908160001a90535061151f600a86611a67565b94506114bf565b611530838361121f565b6001600160a01b0383163b15610a3c576000548281035b61155a6000868380600101945086611330565b611577576040516368d2bf6b60e11b815260040160405180910390fd5b81811061154757816000541461158c57600080fd5b5050505050565b82805461159f90611add565b90600052602060002090601f0160209004810192826115c15760008555611607565b82601f106115da5782800160ff19823516178555611607565b82800160010185558215611607579182015b828111156116075782358255916020019190600101906115ec565b50611613929150611617565b5090565b5b808211156116135760008155600101611618565b80356001600160a01b038116811461164357600080fd5b919050565b60006020828403121561165a57600080fd5b6111518261162c565b6000806040838503121561167657600080fd5b61167f8361162c565b915061168d6020840161162c565b90509250929050565b6000806000606084860312156116ab57600080fd5b6116b48461162c565b92506116c26020850161162c565b9150604084013590509250925092565b600080600080608085870312156116e857600080fd5b6116f18561162c565b93506116ff6020860161162c565b925060408501359150606085013567ffffffffffffffff8082111561172357600080fd5b818701915087601f83011261173757600080fd5b81358181111561174957611749611b89565b604051601f8201601f19908116603f0116810190838211818310171561177157611771611b89565b816040528281528a602084870101111561178a57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156117c157600080fd5b6117ca8361162c565b9150602083013580151581146117df57600080fd5b809150509250929050565b600080604083850312156117fd57600080fd5b6118068361162c565b946020939093013593505050565b60006020828403121561182657600080fd5b813561115181611b9f565b60006020828403121561184357600080fd5b815161115181611b9f565b6000806020838503121561186157600080fd5b823567ffffffffffffffff8082111561187957600080fd5b818501915085601f83011261188d57600080fd5b81358181111561189c57600080fd5b8660208285010111156118ae57600080fd5b60209290920196919550909350505050565b6000602082840312156118d257600080fd5b5035919050565b600080604083850312156118ec57600080fd5b8235915061168d6020840161162c565b60008151808452611914816020860160208601611ab1565b601f01601f19169290920160200192915050565b6000815161193a818560208601611ab1565b9290920192915050565b600080845481600182811c91508083168061196057607f831692505b602080841082141561198057634e487b7160e01b86526022600452602486fd5b81801561199457600181146119a5576119d2565b60ff198616895284890196506119d2565b60008b81526020902060005b868110156119ca5781548b8201529085019083016119b1565b505084890196505b5050505050506119f66119e58286611928565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a32908301846118fc565b9695505050505050565b60208152600061115160208301846118fc565b60008219821115611a6257611a62611b47565b500190565b600082611a7657611a76611b5d565b500490565b6000816000190483118215151615611a9557611a95611b47565b500290565b600082821015611aac57611aac611b47565b500390565b60005b83811015611acc578181015183820152602001611ab4565b83811115610f575750506000910152565b600181811c90821680611af157607f821691505b60208210811415611b1257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b2c57611b2c611b47565b5060010190565b600082611b4257611b42611b5d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a1e57600080fdfea2646970667358221220f8a4056ed0d051eb98e1ea6b6da1d7cd28acd82cd7ad6219372671edca9019b364736f6c63430008070033
Deployed Bytecode Sourcemap
57073:2812:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24604:639;;;;;;;;;;-1:-1:-1;24604:639:0;;;;;:::i;:::-;;:::i;:::-;;;7232:14:1;;7225:22;7207:41;;7195:2;7180:18;24604:639:0;;;;;;;;25506:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31989:218::-;;;;;;;;;;-1:-1:-1;31989:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6530:32:1;;;6512:51;;6500:2;6485:18;31989:218:0;6366:203:1;31430:400:0;;;;;;;;;;-1:-1:-1;31430:400:0;;;;;:::i;:::-;;:::i;:::-;;21257:323;;;;;;;;;;;;59690:1;21531:12;21318:7;21515:13;:28;-1:-1:-1;;21515:46:0;;21257:323;;;;11394:25:1;;;11382:2;11367:18;21257:323:0;11248:177:1;35696:2817:0;;;;;;;;;;-1:-1:-1;35696:2817:0;;;;;:::i;:::-;;:::i;59707:173::-;;;;;;;;;;;;;:::i;38609:185::-;;;;;;;;;;-1:-1:-1;38609:185:0;;;;;:::i;:::-;;:::i;57464:35::-;;;;;;;;;;;;;;;;59018:102;;;;;;;;;;-1:-1:-1;59018:102:0;;;;;:::i;:::-;;:::i;26899:152::-;;;;;;;;;;-1:-1:-1;26899:152:0;;;;;:::i;:::-;;:::i;57170:85::-;;;;;;;;;;;;;:::i;59324:144::-;;;;;;;;;;-1:-1:-1;59324:144:0;;;;;:::i;:::-;;:::i;22441:233::-;;;;;;;;;;-1:-1:-1;22441:233:0;;;;;:::i;:::-;;:::i;5354:103::-;;;;;;;;;;;;;:::i;4706:87::-;;;;;;;;;;-1:-1:-1;4779:6:0;;-1:-1:-1;;;;;4779:6:0;4706:87;;59128:86;;;;;;;;;;-1:-1:-1;59128:86:0;;;;;:::i;:::-;;:::i;25682:104::-;;;;;;;;;;;;;:::i;57264:34::-;;;;;;;;;;;;;;;;57643:396;;;;;;:::i;:::-;;:::i;32547:308::-;;;;;;;;;;-1:-1:-1;32547:308:0;;;;;:::i;:::-;;:::i;58047:469::-;;;;;;:::i;:::-;;:::i;57381:35::-;;;;;;;;;;;;;;;;39392:399;;;;;;;;;;-1:-1:-1;39392:399:0;;;;;:::i;:::-;;:::i;59476:122::-;;;;;;;;;;-1:-1:-1;59476:122:0;;;;;:::i;:::-;;:::i;58524:169::-;;;;;;;;;;-1:-1:-1;58524:169:0;;;;;:::i;:::-;;:::i;59222:94::-;;;;;;;;;;-1:-1:-1;59222:94:0;;;;;:::i;:::-;;:::i;58701:309::-;;;;;;;;;;-1:-1:-1;58701:309:0;;;;;:::i;:::-;;:::i;57340:32::-;;;;;;;;;;;;;;;;57423:34;;;;;;;;;;;;;;;;33012:164;;;;;;;;;;-1:-1:-1;33012:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33133:25:0;;;33109:4;33133:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33012:164;5612:201;;;;;;;;;;-1:-1:-1;5612:201:0;;;;;:::i;:::-;;:::i;57508:52::-;;;;;;;;;;-1:-1:-1;57508:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;57305:28;;;;;;;;;;;;;;;;24604:639;24689:4;-1:-1:-1;;;;;;;;;25013:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;25090:25:0;;;25013:102;:179;;;-1:-1:-1;;;;;;;;;;25167:25:0;;;25013:179;24993:199;24604:639;-1:-1:-1;;24604:639:0:o;25506:100::-;25560:13;25593:5;25586:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25506:100;:::o;31989:218::-;32065:7;32090:16;32098:7;32090;:16::i;:::-;32085:64;;32115:34;;-1:-1:-1;;;32115:34:0;;;;;;;;;;;32085:64;-1:-1:-1;32169:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;32169:30:0;;31989:218::o;31430:400::-;31511:13;31527:16;31535:7;31527;:16::i;:::-;31511:32;-1:-1:-1;55287:10:0;-1:-1:-1;;;;;31560:28:0;;;31556:175;;31608:44;31625:5;55287:10;33012:164;:::i;31608:44::-;31603:128;;31680:35;;-1:-1:-1;;;31680:35:0;;;;;;;;;;;31603:128;31743:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;31743:35:0;-1:-1:-1;;;;;31743:35:0;;;;;;;;;31794:28;;31743:24;;31794:28;;;;;;;31500:330;31430:400;;:::o;35696:2817::-;35830:27;35860;35879:7;35860:18;:27::i;:::-;35830:57;;35945:4;-1:-1:-1;;;;;35904:45:0;35920:19;-1:-1:-1;;;;;35904:45:0;;35900:86;;35958:28;;-1:-1:-1;;;35958:28:0;;;;;;;;;;;35900:86;36000:27;34810:24;;;:15;:24;;;;;35032:26;;55287:10;34435:30;;;-1:-1:-1;;;;;34128:28:0;;34413:20;;;34410:56;36186:180;;36279:43;36296:4;55287:10;33012:164;:::i;36279:43::-;36274:92;;36331:35;;-1:-1:-1;;;36331:35:0;;;;;;;;;;;36274:92;-1:-1:-1;;;;;36383:16:0;;36379:52;;36408:23;;-1:-1:-1;;;36408:23:0;;;;;;;;;;;36379:52;36580:15;36577:160;;;36720:1;36699:19;36692:30;36577:160;-1:-1:-1;;;;;37117:24:0;;;;;;;:18;:24;;;;;;37115:26;;-1:-1:-1;;37115:26:0;;;37186:22;;;;;;;;;37184:24;;-1:-1:-1;37184:24:0;;;30288:11;30263:23;30259:41;30246:63;-1:-1:-1;;;30246:63:0;37479:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;37774:47:0;;37770:627;;37879:1;37869:11;;37847:19;38002:30;;;:17;:30;;;;;;37998:384;;38140:13;;38125:11;:28;38121:242;;38287:30;;;;:17;:30;;;;;:52;;;38121:242;37828:569;37770:627;38444:7;38440:2;-1:-1:-1;;;;;38425:27:0;38434:4;-1:-1:-1;;;;;38425:27:0;;;;;;;;;;;35819:2694;;;35696:2817;;;:::o;59707:173::-;4592:13;:11;:13::i;:::-;59776:49:::1;::::0;59758:12:::1;::::0;59776:10:::1;::::0;59799:21:::1;::::0;59758:12;59776:49;59758:12;59776:49;59799:21;59776:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59757:68;;;59844:7;59836:36;;;::::0;-1:-1:-1;;;59836:36:0;;10768:2:1;59836:36:0::1;::::0;::::1;10750:21:1::0;10807:2;10787:18;;;10780:30;-1:-1:-1;;;10826:18:1;;;10819:46;10882:18;;59836:36:0::1;;;;;;;;;59746:134;59707:173::o:0;38609:185::-;38747:39;38764:4;38770:2;38774:7;38747:39;;;;;;;;;;;;:16;:39::i;:::-;38609:185;;;:::o;59018:102::-;4592:13;:11;:13::i;:::-;59094:18:::1;:7;59104:8:::0;;59094:18:::1;:::i;26899:152::-:0;26971:7;27014:27;27033:7;27014:18;:27::i;57170:85::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59324:144::-;4592:13;:11;:13::i;:::-;59417:9:::1;;59404:10;:22;59396:31;;;::::0;::::1;;59438:9;:22:::0;59324:144::o;22441:233::-;22513:7;-1:-1:-1;;;;;22537:19:0;;22533:60;;22565:28;;-1:-1:-1;;;22565:28:0;;;;;;;;;;;22533:60;-1:-1:-1;;;;;;22611:25:0;;;;;:18;:25;;;;;;16600:13;22611:55;;22441:233::o;5354:103::-;4592:13;:11;:13::i;:::-;5419:30:::1;5446:1;5419:18;:30::i;:::-;5354:103::o:0;59128:86::-;4592:13;:11;:13::i;:::-;59192:5:::1;:14:::0;59128:86::o;25682:104::-;25738:13;25771:7;25764:14;;;;;:::i;57643:396::-;57735:5;;57725:15;;:7;:15;:::i;:::-;57712:9;:28;;57704:65;;;;-1:-1:-1;;;57704:65:0;;7685:2:1;57704:65:0;;;7667:21:1;7724:2;7704:18;;;7697:30;7763:26;7743:18;;;7736:54;7807:18;;57704:65:0;7483:348:1;57704:65:0;57815:9;;57804:7;57788:13;59690:1;21531:12;21318:7;21515:13;:28;-1:-1:-1;;21515:46:0;;21257:323;57788:13;:23;;;;:::i;:::-;:36;;57780:58;;;;-1:-1:-1;;;57780:58:0;;11113:2:1;57780:58:0;;;11095:21:1;11152:1;11132:18;;;11125:29;-1:-1:-1;;;11170:18:1;;;11163:39;11219:18;;57780:58:0;10911:332:1;57780:58:0;57857:9;57870:10;57857:23;57849:55;;;;-1:-1:-1;;;57849:55:0;;8869:2:1;57849:55:0;;;8851:21:1;8908:2;8888:18;;;8881:30;-1:-1:-1;;;8927:18:1;;;8920:49;8986:18;;57849:55:0;8667:343:1;57849:55:0;57934:8;;57923:7;:19;;57915:77;;;;-1:-1:-1;;;57915:77:0;;10354:2:1;57915:77:0;;;10336:21:1;10393:2;10373:18;;;10366:30;10432:34;10412:18;;;10405:62;-1:-1:-1;;;10483:18:1;;;10476:43;10536:19;;57915:77:0;10152:409:1;57915:77:0;58005:26;58011:10;58023:7;58005:5;:26::i;32547:308::-;-1:-1:-1;;;;;32646:31:0;;55287:10;32646:31;32642:61;;;32686:17;;-1:-1:-1;;;32686:17:0;;;;;;;;;;;32642:61;55287:10;32716:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;32716:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;32716:60:0;;;;;;;;;;32792:55;;7207:41:1;;;32716:49:0;;55287:10;32792:55;;7180:18:1;32792:55:0;;;;;;;32547:308;;:::o;58047:469::-;58161:16;;58136:10;58118:29;;;;:17;:29;;;;;;:39;;58150:7;;58118:39;:::i;:::-;:59;;58110:127;;;;-1:-1:-1;;;58110:127:0;;8445:2:1;58110:127:0;;;8427:21:1;8484:2;8464:18;;;8457:30;8523:34;8503:18;;;8496:62;8594:25;8574:18;;;8567:53;8637:19;;58110:127:0;8243:419:1;58110:127:0;58279:13;;58268:7;58250:15;;:25;;;;:::i;:::-;:42;;58242:87;;;;-1:-1:-1;;;58242:87:0;;9994:2:1;58242:87:0;;;9976:21:1;10033:2;10013:18;;;10006:30;10072:33;10052:18;;;10045:61;10123:18;;58242:87:0;9792:355:1;58242:87:0;58375:9;;58364:7;58348:13;59690:1;21531:12;21318:7;21515:13;:28;-1:-1:-1;;21515:46:0;;21257:323;58348:13;:23;;;;:::i;:::-;:36;;58340:58;;;;-1:-1:-1;;;58340:58:0;;11113:2:1;58340:58:0;;;11095:21:1;11152:1;11132:18;;;11125:29;-1:-1:-1;;;11170:18:1;;;11163:39;11219:18;;58340:58:0;10911:332:1;58340:58:0;58429:10;58411:29;;;;:17;:29;;;;;:31;;;;;;:::i;:::-;;;;-1:-1:-1;;58453:15:0;:17;;;:15;:17;;;:::i;:::-;;;;;;58481:30;58491:10;58503:7;58481:9;:30::i;39392:399::-;39559:31;39572:4;39578:2;39582:7;39559:12;:31::i;:::-;-1:-1:-1;;;;;39605:14:0;;;:19;39601:183;;39644:56;39675:4;39681:2;39685:7;39694:5;39644:30;:56::i;:::-;39639:145;;39728:40;;-1:-1:-1;;;39728:40:0;;;;;;;;;;;39639:145;39392:399;;;;:::o;59476:122::-;4592:13;:11;:13::i;:::-;59557::::1;:33:::0;59476:122::o;58524:169::-;4592:13;:11;:13::i;:::-;58641:9:::1;;58630:7;58614:13;59690:1:::0;21531:12;21318:7;21515:13;:28;-1:-1:-1;;21515:46:0;;21257:323;58614:13:::1;:23;;;;:::i;:::-;:36;;58606:45;;;::::0;::::1;;58662:23;58668:7;58677;58662:5;:23::i;:::-;58524:169:::0;;:::o;59222:94::-;4592:13;:11;:13::i;:::-;59290:8:::1;:18:::0;59222:94::o;58701:309::-;58783:13;58831:16;58839:7;58831;:16::i;:::-;58809:113;;;;-1:-1:-1;;;58809:113:0;;9578:2:1;58809:113:0;;;9560:21:1;9617:2;9597:18;;;9590:30;9656:34;9636:18;;;9629:62;-1:-1:-1;;;9707:18:1;;;9700:45;9762:19;;58809:113:0;9376:411:1;58809:113:0;58964:7;58973:18;:7;:16;:18::i;:::-;58947:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58933:69;;58701:309;;;:::o;5612:201::-;4592:13;:11;:13::i;:::-;-1:-1:-1;;;;;5701:22:0;::::1;5693:73;;;::::0;-1:-1:-1;;;5693:73:0;;8038:2:1;5693:73:0::1;::::0;::::1;8020:21:1::0;8077:2;8057:18;;;8050:30;8116:34;8096:18;;;8089:62;-1:-1:-1;;;8167:18:1;;;8160:36;8213:19;;5693:73:0::1;7836:402:1::0;5693:73:0::1;5777:28;5796:8;5777:18;:28::i;33434:282::-:0;33499:4;33555:7;59690:1;33536:26;;:66;;;;;33589:13;;33579:7;:23;33536:66;:153;;;;-1:-1:-1;;33640:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;33640:44:0;:49;;33434:282::o;28054:1275::-;28121:7;28156;;59690:1;28205:23;28201:1061;;28258:13;;28251:4;:20;28247:1015;;;28296:14;28313:23;;;:17;:23;;;;;;-1:-1:-1;;;28402:24:0;;28398:845;;29067:113;29074:11;29067:113;;-1:-1:-1;;;29145:6:0;29127:25;;;;:17;:25;;;;;;29067:113;;;29213:6;28054:1275;-1:-1:-1;;;28054:1275:0:o;28398:845::-;28273:989;28247:1015;29290:31;;-1:-1:-1;;;29290:31:0;;;;;;;;;;;4871:132;4779:6;;-1:-1:-1;;;;;4779:6:0;55287:10;4935:23;4927:68;;;;-1:-1:-1;;;4927:68:0;;9217:2:1;4927:68:0;;;9199:21:1;;;9236:18;;;9229:30;9295:34;9275:18;;;9268:62;9347:18;;4927:68:0;9015:356:1;5973:191:0;6066:6;;;-1:-1:-1;;;;;6083:17:0;;;-1:-1:-1;;;;;;6083:17:0;;;;;;;6116:40;;6066:6;;;6083:17;6066:6;;6116:40;;6047:16;;6116:40;6036:128;5973:191;:::o;43053:2454::-;43126:20;43149:13;43177;43173:44;;43199:18;;-1:-1:-1;;;43199:18:0;;;;;;;;;;;43173:44;-1:-1:-1;;;;;43705:22:0;;;;;;:18;:22;;;;16738:2;43705:22;;;:71;;43743:32;43731:45;;43705:71;;;44019:31;;;:17;:31;;;;;-1:-1:-1;30719:15:0;;30693:24;30689:46;30288:11;30263:23;30259:41;30256:52;30246:63;;44019:173;;44254:23;;;;44019:31;;43705:22;;44753:25;43705:22;;44606:335;45021:1;45007:12;45003:20;44961:346;45062:3;45053:7;45050:16;44961:346;;45280:7;45270:8;45267:1;45240:25;45237:1;45234;45229:59;45115:1;45102:15;44961:346;;;-1:-1:-1;45340:13:0;45336:45;;45362:19;;-1:-1:-1;;;45362:19:0;;;;;;;;;;;45336:45;45398:13;:19;-1:-1:-1;38609:185:0;;;:::o;49032:112::-;49109:27;49119:2;49123:8;49109:27;;;;;;;;;;;;:9;:27::i;41875:716::-;42059:88;;-1:-1:-1;;;42059:88:0;;42038:4;;-1:-1:-1;;;;;42059:45:0;;;;;:88;;55287:10;;42126:4;;42132:7;;42141:5;;42059:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42059:88:0;;;;;;;;-1:-1:-1;;42059:88:0;;;;;;;;;;;;:::i;:::-;;;42055:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42342:13:0;;42338:235;;42388:40;;-1:-1:-1;;;42388:40:0;;;;;;;;;;;42338:235;42531:6;42525:13;42516:6;42512:2;42508:15;42501:38;42055:529;-1:-1:-1;;;;;;42218:64:0;-1:-1:-1;;;42218:64:0;;-1:-1:-1;42055:529:0;41875:716;;;;;;:::o;1404:723::-;1460:13;1681:10;1677:53;;-1:-1:-1;;1708:10:0;;;;;;;;;;;;-1:-1:-1;;;1708:10:0;;;;;1404:723::o;1677:53::-;1755:5;1740:12;1796:78;1803:9;;1796:78;;1829:8;;;;:::i;:::-;;-1:-1:-1;1852:10:0;;-1:-1:-1;1860:2:0;1852:10;;:::i;:::-;;;1796:78;;;1884:19;1916:6;1906:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1906:17:0;;1884:39;;1934:154;1941:10;;1934:154;;1968:11;1978:1;1968:11;;:::i;:::-;;-1:-1:-1;2037:10:0;2045:2;2037:5;:10;:::i;:::-;2024:24;;:2;:24;:::i;:::-;2011:39;;1994:6;2001;1994:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1994:56:0;;;;;;;;-1:-1:-1;2065:11:0;2074:2;2065:11;;:::i;:::-;;;1934:154;;48259:689;48390:19;48396:2;48400:8;48390:5;:19::i;:::-;-1:-1:-1;;;;;48451:14:0;;;:19;48447:483;;48491:11;48505:13;48553:14;;;48586:233;48617:62;48656:1;48660:2;48664:7;;;;;;48673:5;48617:30;:62::i;:::-;48612:167;;48715:40;;-1:-1:-1;;;48715:40:0;;;;;;;;;;;48612:167;48814:3;48806:5;:11;48586:233;;48901:3;48884:13;;:20;48880:34;;48906:8;;;48880:34;48472:458;;48259:689;;;:::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:254::-;4089:6;4097;4150:2;4138:9;4129:7;4125:23;4121:32;4118:52;;;4166:1;4163;4156:12;4118:52;4202:9;4189:23;4179:33;;4231:38;4265:2;4254:9;4250:18;4231:38;:::i;4280:257::-;4321:3;4359:5;4353:12;4386:6;4381:3;4374:19;4402:63;4458:6;4451:4;4446:3;4442:14;4435:4;4428:5;4424:16;4402:63;:::i;:::-;4519:2;4498:15;-1:-1:-1;;4494:29:1;4485:39;;;;4526:4;4481:50;;4280:257;-1:-1:-1;;4280:257:1:o;4542:185::-;4584:3;4622:5;4616:12;4637:52;4682:6;4677:3;4670:4;4663:5;4659:16;4637:52;:::i;:::-;4705:16;;;;;4542:185;-1:-1:-1;;4542:185:1:o;4850:1301::-;5127:3;5156:1;5189:6;5183:13;5219:3;5241:1;5269:9;5265:2;5261:18;5251:28;;5329:2;5318:9;5314:18;5351;5341:61;;5395:4;5387:6;5383:17;5373:27;;5341:61;5421:2;5469;5461:6;5458:14;5438:18;5435:38;5432:165;;;-1:-1:-1;;;5496:33:1;;5552:4;5549:1;5542:15;5582:4;5503:3;5570:17;5432:165;5613:18;5640:104;;;;5758:1;5753:320;;;;5606:467;;5640:104;-1:-1:-1;;5673:24:1;;5661:37;;5718:16;;;;-1:-1:-1;5640:104:1;;5753:320;11503:1;11496:14;;;11540:4;11527:18;;5848:1;5862:165;5876:6;5873:1;5870:13;5862:165;;;5954:14;;5941:11;;;5934:35;5997:16;;;;5891:10;;5862:165;;;5866:3;;6056:6;6051:3;6047:16;6040:23;;5606:467;;;;;;;6089:56;6114:30;6140:3;6132:6;6114:30;:::i;:::-;-1:-1:-1;;;4792:20:1;;4837:1;4828:11;;4732:113;6089:56;6082:63;4850:1301;-1:-1:-1;;;;;4850:1301:1:o;6574:488::-;-1:-1:-1;;;;;6843:15:1;;;6825:34;;6895:15;;6890:2;6875:18;;6868:43;6942:2;6927:18;;6920:34;;;6990:3;6985:2;6970:18;;6963:31;;;6768:4;;7011:45;;7036:19;;7028:6;7011:45;:::i;:::-;7003:53;6574:488;-1:-1:-1;;;;;;6574:488:1:o;7259:219::-;7408:2;7397:9;7390:21;7371:4;7428:44;7468:2;7457:9;7453:18;7445:6;7428:44;:::i;11556:128::-;11596:3;11627:1;11623:6;11620:1;11617:13;11614:39;;;11633:18;;:::i;:::-;-1:-1:-1;11669:9:1;;11556:128::o;11689:120::-;11729:1;11755;11745:35;;11760:18;;:::i;:::-;-1:-1:-1;11794:9:1;;11689:120::o;11814:168::-;11854:7;11920:1;11916;11912:6;11908:14;11905:1;11902:21;11897:1;11890:9;11883:17;11879:45;11876:71;;;11927:18;;:::i;:::-;-1:-1:-1;11967:9:1;;11814:168::o;11987:125::-;12027:4;12055:1;12052;12049:8;12046:34;;;12060:18;;:::i;:::-;-1:-1:-1;12097:9:1;;11987:125::o;12117:258::-;12189:1;12199:113;12213:6;12210:1;12207:13;12199:113;;;12289:11;;;12283:18;12270:11;;;12263:39;12235:2;12228:10;12199:113;;;12330:6;12327:1;12324:13;12321:48;;;-1:-1:-1;;12365:1:1;12347:16;;12340:27;12117:258::o;12380:380::-;12459:1;12455:12;;;;12502;;;12523:61;;12577:4;12569:6;12565:17;12555:27;;12523:61;12630:2;12622:6;12619:14;12599:18;12596:38;12593:161;;;12676:10;12671:3;12667:20;12664:1;12657:31;12711:4;12708:1;12701:15;12739:4;12736:1;12729:15;12593:161;;12380:380;;;:::o;12765:135::-;12804:3;-1:-1:-1;;12825:17:1;;12822:43;;;12845:18;;:::i;:::-;-1:-1:-1;12892:1:1;12881:13;;12765:135::o;12905:112::-;12937:1;12963;12953:35;;12968:18;;:::i;:::-;-1:-1:-1;13002:9:1;;12905:112::o;13022:127::-;13083:10;13078:3;13074:20;13071:1;13064:31;13114:4;13111:1;13104:15;13138:4;13135:1;13128:15;13154:127;13215:10;13210:3;13206:20;13203:1;13196:31;13246:4;13243:1;13236:15;13270:4;13267:1;13260:15;13286:127;13347:10;13342:3;13338:20;13335:1;13328:31;13378:4;13375:1;13368:15;13402:4;13399:1;13392:15;13418:127;13479:10;13474:3;13470:20;13467:1;13460:31;13510:4;13507:1;13500:15;13534:4;13531:1;13524:15;13550:131;-1:-1:-1;;;;;;13624:32:1;;13614:43;;13604:71;;13671:1;13668;13661:12
Swarm Source
ipfs://f8a4056ed0d051eb98e1ea6b6da1d7cd28acd82cd7ad6219372671edca9019b3
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.