ETH Price: $2,421.13 (+0.03%)

Token

COUNTERFEIT HOODIES (HOODIES)
 

Overview

Max Total Supply

20 HOODIES

Holders

20

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
69b9.eth
Balance
1 HOODIES
0x69b96a9425596c14c54cd03a8fd09f416b9a6c76
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
COUNTERFEITHOODIES

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-28
*/

// SPDX-License-Identifier: CONSTANTLY WANTS TO MAKE THE WORLD BEAUTIFUL

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/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/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: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            IERC165
    // ==============================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly {
            // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _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 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 {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 offset;
            do {
                emit Transfer(address(0), to, startTokenId + offset++);
            } while (offset < quantity);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (_addressToUint256(to) == 0) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/extensions/IERC721AQueryable.sol


// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/extensions/ERC721AQueryable.sol


// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

// File: hoodies.sol



//  ██████  ██████  ██    ██ ███    ██ ████████ ███████ ██████  ███████ ███████ ██ ████████     ██   ██  ██████   ██████  ██████  ██ ███████ ███████ 
// ██      ██    ██ ██    ██ ████   ██    ██    ██      ██   ██ ██      ██      ██    ██        ██   ██ ██    ██ ██    ██ ██   ██ ██ ██      ██      
// ██      ██    ██ ██    ██ ██ ██  ██    ██    █████   ██████  █████   █████   ██    ██        ███████ ██    ██ ██    ██ ██   ██ ██ █████   ███████ 
// ██      ██    ██ ██    ██ ██  ██ ██    ██    ██      ██   ██ ██      ██      ██    ██        ██   ██ ██    ██ ██    ██ ██   ██ ██ ██           ██ 
//  ██████  ██████   ██████  ██   ████    ██    ███████ ██   ██ ██      ███████ ██    ██        ██   ██  ██████   ██████  ██████  ██ ███████ ███████ 
                                                                                                                                                                                                                                                                                                
// HONORABLE COLLECTION FOR SOME BASTARDS IN BGANPUNKS COLLECTION
// HOODIES FOR BGANS WHO ARE FEELING COLD
// https://bastardganpunks.club/
// artist: @segwitnitwit
// dev: @berkozdemir

pragma solidity ^0.8.0;

contract COUNTERFEITHOODIES is ERC721AQueryable, Ownable {

    string private _baseTokenURI;

    constructor() ERC721A("COUNTERFEIT HOODIES", "HOODIES") {
        _baseTokenURI = "/ipfs/QmWjucSyQzS34x8QePE445DiWUEPnEiyeUE4WNKHaPygwG/";
        _mint(0x6B02Bb2d29a8D60A0dFdA3500ED6d43B485D4F24,1);
        _mint(0x16dac8fcb28CBda1DB793A612847A0bE1A04E554,1);
        _mint(0x8dD3599A246ddDbF350De496e76D5EC9Fd2697fA,1);
        _mint(0xfc12a435920b2b4D25E6Ad61f8F69D5253db9051,1);
        _mint(0xc5E08104c19DAfd00Fe40737490Da9552Db5bfE5,1);
        _mint(0x9c499Fc1B1066a18E7F6EBba2794795c2495817E,1);
        _mint(0xB3b1A1193a0B7B48B46eFC3c86B614B152c257D5,1);
        _mint(0x6Ebe2007506df1Ee5BfFA33e5D43226Fdd1DE9e4,1);
        _mint(0x8B1397d956750f7dD6A04E06B9d001f9a58dd7b6,1);
        _mint(0xB52f409bF2723c4f5C0c0ca42d85891A44C51eB9,1);
        _mint(0x11fafF50B9713177A5f95328Cf43ed0144A15CFa,1);
        _mint(0xFF43878817cBDC09f474Dcf88D5495B9B41222ac,1);
        _mint(0xbFB75e1d59fD27f0aAa5a1a9A301fbfdf9D415Af,1);
        _mint(0xD3ff454f44Fd17224902BbA8BdBf410Dd29178d7,1);
        _mint(0x69b96a9425596c14c54cD03a8FD09F416B9A6c76,1);
        _mint(0xb68468e48bF7263797aD9e1D50884dEf7a4F8E74,1);
        _mint(0x88b9898b776E3d3f5E54D7B1ED82e74817b128B7,1);
        _mint(0x0559D4f52c63732853aC1F4C50b6F293cee0b646,1);
        _mint(0x5b264C40Cc71F7de16F0650Eef3780Bdf39a6bf0,1);
        _mint(0x6fE5B79de59511cA15Ae1a56B1Ad0f74Cd5024cB,1);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    // function mintAdmin(address[] calldata _to, uint _amount) public onlyOwner {
    //     for (uint i; i < _to.length; i++) {
    //         _safeMint(_to[i], _amount);
    //     }
    // }
    /**
     * @dev Set the base token URI
     */
    function setBaseTokenURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

}

Contract Security Audit

Contract ABI

[{"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":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"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":"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":"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":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","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"}]

60806040523480156200001157600080fd5b50604080518082018252601381527f434f554e5445524645495420484f4f4449455300000000000000000000000000602080830191825283518085019094526007845266484f4f4449455360c81b908401528151919291620000769160029162000490565b5080516200008c90600390602084019062000490565b505060008055506200009e3362000369565b60405180606001604052806035815260200162001c0b603591398051620000ce9160099160209091019062000490565b50620000f0736b02bb2d29a8d60a0dfda3500ed6d43b485d4f246001620003bb565b620001117316dac8fcb28cbda1db793a612847a0be1a04e5546001620003bb565b62000132738dd3599a246dddbf350de496e76d5ec9fd2697fa6001620003bb565b6200015373fc12a435920b2b4d25e6ad61f8f69d5253db90516001620003bb565b6200017473c5e08104c19dafd00fe40737490da9552db5bfe56001620003bb565b62000195739c499fc1b1066a18e7f6ebba2794795c2495817e6001620003bb565b620001b673b3b1a1193a0b7b48b46efc3c86b614b152c257d56001620003bb565b620001d7736ebe2007506df1ee5bffa33e5d43226fdd1de9e46001620003bb565b620001f8738b1397d956750f7dd6a04e06b9d001f9a58dd7b66001620003bb565b6200021973b52f409bf2723c4f5c0c0ca42d85891a44c51eb96001620003bb565b6200023a7311faff50b9713177a5f95328cf43ed0144a15cfa6001620003bb565b6200025b73ff43878817cbdc09f474dcf88d5495b9b41222ac6001620003bb565b6200027c73bfb75e1d59fd27f0aaa5a1a9a301fbfdf9d415af6001620003bb565b6200029d73d3ff454f44fd17224902bba8bdbf410dd29178d76001620003bb565b620002be7369b96a9425596c14c54cd03a8fd09f416b9a6c766001620003bb565b620002df73b68468e48bf7263797ad9e1d50884def7a4f8e746001620003bb565b620003007388b9898b776e3d3f5e54d7b1ed82e74817b128b76001620003bb565b62000321730559d4f52c63732853ac1f4c50b6f293cee0b6466001620003bb565b62000342735b264c40cc71f7de16f0650eef3780bdf39a6bf06001620003bb565b62000363736fe5b79de59511ca15ae1a56b1ad0f74cd5024cb6001620003bb565b62000573565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005482620003dc57604051622e076360e81b815260040160405180910390fd5b81620003fb5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915281204260a01b85176001851460e11b1790555b60405160018201918301906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48281106200044257500160005550565b8280546200049e9062000536565b90600052602060002090601f016020900481019282620004c257600085556200050d565b82601f10620004dd57805160ff19168380011785556200050d565b828001600101855582156200050d579182015b828111156200050d578251825591602001919060010190620004f0565b506200051b9291506200051f565b5090565b5b808211156200051b576000815560010162000520565b600181811c908216806200054b57607f821691505b602082108114156200056d57634e487b7160e01b600052602260045260246000fd5b50919050565b61168880620005836000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063a22cb4651161007c578063a22cb465146102ad578063b88d4fde146102c0578063c23dc68f146102d3578063c87b56dd146102f3578063e985e9c514610306578063f2fde38b1461034257600080fd5b8063715018a6146102595780638462151c146102615780638da5cb5b1461028157806395d89b411461029257806399a2557a1461029a57600080fd5b806323b872dd1161010a57806323b872dd146101da57806330176e13146101ed57806342842e0e146102005780635bbb2177146102135780636352211e1461023357806370a082311461024657600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af57806318160ddd146101c4575b600080fd5b61015a610155366004611389565b610355565b60405190151581526020015b60405180910390f35b6101776103a7565b6040516101669190611560565b61019761019236600461140c565b610439565b6040516001600160a01b039091168152602001610166565b6101c26101bd3660046112b7565b61047d565b005b600154600054035b604051908152602001610166565b6101c26101e83660046111c3565b61051d565b6101c26101fb3660046113c3565b61052d565b6101c261020e3660046111c3565b61054c565b610226610221366004611314565b610567565b60405161016691906114bd565b61019761024136600461140c565b61062c565b6101cc610254366004611175565b610637565b6101c261067d565b61027461026f366004611175565b610691565b6040516101669190611528565b6008546001600160a01b0316610197565b61017761079a565b6102746102a83660046112e1565b6107a9565b6101c26102bb36600461127b565b610927565b6101c26102ce3660046111ff565b6109bd565b6102e66102e136600461140c565b610a07565b6040516101669190611573565b61017761030136600461140c565b610a70565b61015a610314366004611190565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101c2610350366004611175565b610af4565b60006301ffc9a760e01b6001600160e01b03198316148061038657506380ac58cd60e01b6001600160e01b03198316145b806103a15750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546103b6906115d5565b80601f01602080910402602001604051908101604052809291908181526020018280546103e2906115d5565b801561042f5780601f106104045761010080835404028352916020019161042f565b820191906000526020600020905b81548152906001019060200180831161041257829003601f168201915b5050505050905090565b600061044482610b72565b610461576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061048882610b99565b9050336001600160a01b038216146104c1576104a48133610314565b6104c1576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610528838383610bfa565b505050565b610535610daa565b805161054890600990602084019061104a565b5050565b610528838383604051806020016040528060008152506109bd565b60608160008167ffffffffffffffff81111561058557610585611626565b6040519080825280602002602001820160405280156105d057816020015b60408051606081018252600080825260208083018290529282015282526000199092019101816105a35790505b50905060005b828114610623576105fe8686838181106105f2576105f2611610565b90506020020135610a07565b82828151811061061057610610611610565b60209081029190910101526001016105d6565b50949350505050565b60006103a182610b99565b600081610657576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610685610daa565b61068f6000610e04565b565b606060008060006106a185610637565b905060008167ffffffffffffffff8111156106be576106be611626565b6040519080825280602002602001820160405280156106e7578160200160208202803683370190505b50905061070d604080516060810182526000808252602082018190529181019190915290565b60005b83861461078e5761072081610e56565b915081604001511561073157610786565b81516001600160a01b03161561074657815194505b876001600160a01b0316856001600160a01b03161415610786578083878060010198508151811061077957610779611610565b6020026020010181815250505b600101610710565b50909695505050505050565b6060600380546103b6906115d5565b60608183106107cb57604051631960ccad60e11b815260040160405180910390fd5b6000806107d760005490565b9050808411156107e5578093505b60006107f087610637565b90508486101561080f5785850381811015610809578091505b50610813565b5060005b60008167ffffffffffffffff81111561082e5761082e611626565b604051908082528060200260200182016040528015610857578160200160208202803683370190505b5090508161086a57935061092092505050565b600061087588610a07565b905060008160400151610886575080515b885b8881141580156108985750848714155b15610914576108a681610e56565b92508260400151156108b75761090c565b82516001600160a01b0316156108cc57825191505b8a6001600160a01b0316826001600160a01b0316141561090c57808488806001019950815181106108ff576108ff611610565b6020026020010181815250505b600101610888565b50505092835250909150505b9392505050565b6001600160a01b0382163314156109515760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109c8848484610bfa565b6001600160a01b0383163b15610a01576109e484848484610e8b565b610a01576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281018390529091506000548310610a4c5792915050565b610a5583610e56565b9050806040015115610a675792915050565b61092083610f83565b6060610a7b82610b72565b610a9857604051630a14c4b560e41b815260040160405180910390fd5b6000610aa2610fb1565b9050805160001415610ac35760405180602001604052806000815250610920565b80610acd84610fc0565b604051602001610ade929190611451565b6040516020818303038152906040529392505050565b610afc610daa565b6001600160a01b038116610b665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b610b6f81610e04565b50565b60008054821080156103a1575050600090815260046020526040902054600160e01b161590565b600081600054811015610be157600081815260046020526040902054600160e01b8116610bdf575b80610920575060001901600081815260046020526040902054610bc1565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610c0582610b99565b9050836001600160a01b0316816001600160a01b031614610c385760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610c685750610c688633610314565b80610c7b57506001600160a01b03821633145b905080610c9b57604051632ce44b5f60e11b815260040160405180910390fd5b84610cb957604051633a954ecd60e21b815260040160405180910390fd5b8115610cdc57600084815260066020526040902080546001600160a01b03191690555b6001600160a01b03868116600090815260056020908152604080832080546000190190559288168252828220805460010190558682526004905220600160e11b4260a01b871781179091558316610d615760018401600081815260046020526040902054610d5f576000548114610d5f5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b0316331461068f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b5d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051606081018252600080825260208201819052918101919091526000828152600460205260409020546103a19061100f565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610ec0903390899088908890600401611480565b602060405180830381600087803b158015610eda57600080fd5b505af1925050508015610f0a575060408051601f3d908101601f19168201909252610f07918101906113a6565b60015b610f65573d808015610f38576040519150601f19603f3d011682016040523d82523d6000602084013e610f3d565b606091505b508051610f5d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60408051606081018252600080825260208201819052918101919091526103a1610fac83610b99565b61100f565b6060600980546103b6906115d5565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610ffd57600183039250600a81066030018353600a9004610fdf565b50819003601f19909101908152919050565b604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b90921615159082015290565b828054611056906115d5565b90600052602060002090601f01602090048101928261107857600085556110be565b82601f1061109157805160ff19168380011785556110be565b828001600101855582156110be579182015b828111156110be5782518255916020019190600101906110a3565b506110ca9291506110ce565b5090565b5b808211156110ca57600081556001016110cf565b600067ffffffffffffffff808411156110fe576110fe611626565b604051601f8501601f19908116603f0116810190828211818310171561112657611126611626565b8160405280935085815286868601111561113f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461117057600080fd5b919050565b60006020828403121561118757600080fd5b61092082611159565b600080604083850312156111a357600080fd5b6111ac83611159565b91506111ba60208401611159565b90509250929050565b6000806000606084860312156111d857600080fd5b6111e184611159565b92506111ef60208501611159565b9150604084013590509250925092565b6000806000806080858703121561121557600080fd5b61121e85611159565b935061122c60208601611159565b925060408501359150606085013567ffffffffffffffff81111561124f57600080fd5b8501601f8101871361126057600080fd5b61126f878235602084016110e3565b91505092959194509250565b6000806040838503121561128e57600080fd5b61129783611159565b9150602083013580151581146112ac57600080fd5b809150509250929050565b600080604083850312156112ca57600080fd5b6112d383611159565b946020939093013593505050565b6000806000606084860312156112f657600080fd5b6112ff84611159565b95602085013595506040909401359392505050565b6000806020838503121561132757600080fd5b823567ffffffffffffffff8082111561133f57600080fd5b818501915085601f83011261135357600080fd5b81358181111561136257600080fd5b8660208260051b850101111561137757600080fd5b60209290920196919550909350505050565b60006020828403121561139b57600080fd5b81356109208161163c565b6000602082840312156113b857600080fd5b81516109208161163c565b6000602082840312156113d557600080fd5b813567ffffffffffffffff8111156113ec57600080fd5b8201601f810184136113fd57600080fd5b610f7b848235602084016110e3565b60006020828403121561141e57600080fd5b5035919050565b6000815180845261143d8160208601602086016115a9565b601f01601f19169290920160200192915050565b600083516114638184602088016115a9565b8351908301906114778183602088016115a9565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906114b390830184611425565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561078e5761151583855180516001600160a01b0316825260208082015167ffffffffffffffff16908301526040908101511515910152565b92840192606092909201916001016114d9565b6020808252825182820181905260009190848201906040850190845b8181101561078e57835183529284019291840191600101611544565b6020815260006109206020830184611425565b81516001600160a01b0316815260208083015167ffffffffffffffff1690820152604080830151151590820152606081016103a1565b60005b838110156115c45781810151838201526020016115ac565b83811115610a015750506000910152565b600181811c908216806115e957607f821691505b6020821081141561160a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b6f57600080fdfea26469706673582212204d4c5ca48691cd13b5376bc7d6f86ae27ab80298f1852914fac48bca7642adfc64736f6c634300080700332f697066732f516d576a75635379517a5333347838516550453434354469575545506e45697965554534574e4b486150796777472f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063a22cb4651161007c578063a22cb465146102ad578063b88d4fde146102c0578063c23dc68f146102d3578063c87b56dd146102f3578063e985e9c514610306578063f2fde38b1461034257600080fd5b8063715018a6146102595780638462151c146102615780638da5cb5b1461028157806395d89b411461029257806399a2557a1461029a57600080fd5b806323b872dd1161010a57806323b872dd146101da57806330176e13146101ed57806342842e0e146102005780635bbb2177146102135780636352211e1461023357806370a082311461024657600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af57806318160ddd146101c4575b600080fd5b61015a610155366004611389565b610355565b60405190151581526020015b60405180910390f35b6101776103a7565b6040516101669190611560565b61019761019236600461140c565b610439565b6040516001600160a01b039091168152602001610166565b6101c26101bd3660046112b7565b61047d565b005b600154600054035b604051908152602001610166565b6101c26101e83660046111c3565b61051d565b6101c26101fb3660046113c3565b61052d565b6101c261020e3660046111c3565b61054c565b610226610221366004611314565b610567565b60405161016691906114bd565b61019761024136600461140c565b61062c565b6101cc610254366004611175565b610637565b6101c261067d565b61027461026f366004611175565b610691565b6040516101669190611528565b6008546001600160a01b0316610197565b61017761079a565b6102746102a83660046112e1565b6107a9565b6101c26102bb36600461127b565b610927565b6101c26102ce3660046111ff565b6109bd565b6102e66102e136600461140c565b610a07565b6040516101669190611573565b61017761030136600461140c565b610a70565b61015a610314366004611190565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101c2610350366004611175565b610af4565b60006301ffc9a760e01b6001600160e01b03198316148061038657506380ac58cd60e01b6001600160e01b03198316145b806103a15750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546103b6906115d5565b80601f01602080910402602001604051908101604052809291908181526020018280546103e2906115d5565b801561042f5780601f106104045761010080835404028352916020019161042f565b820191906000526020600020905b81548152906001019060200180831161041257829003601f168201915b5050505050905090565b600061044482610b72565b610461576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061048882610b99565b9050336001600160a01b038216146104c1576104a48133610314565b6104c1576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610528838383610bfa565b505050565b610535610daa565b805161054890600990602084019061104a565b5050565b610528838383604051806020016040528060008152506109bd565b60608160008167ffffffffffffffff81111561058557610585611626565b6040519080825280602002602001820160405280156105d057816020015b60408051606081018252600080825260208083018290529282015282526000199092019101816105a35790505b50905060005b828114610623576105fe8686838181106105f2576105f2611610565b90506020020135610a07565b82828151811061061057610610611610565b60209081029190910101526001016105d6565b50949350505050565b60006103a182610b99565b600081610657576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610685610daa565b61068f6000610e04565b565b606060008060006106a185610637565b905060008167ffffffffffffffff8111156106be576106be611626565b6040519080825280602002602001820160405280156106e7578160200160208202803683370190505b50905061070d604080516060810182526000808252602082018190529181019190915290565b60005b83861461078e5761072081610e56565b915081604001511561073157610786565b81516001600160a01b03161561074657815194505b876001600160a01b0316856001600160a01b03161415610786578083878060010198508151811061077957610779611610565b6020026020010181815250505b600101610710565b50909695505050505050565b6060600380546103b6906115d5565b60608183106107cb57604051631960ccad60e11b815260040160405180910390fd5b6000806107d760005490565b9050808411156107e5578093505b60006107f087610637565b90508486101561080f5785850381811015610809578091505b50610813565b5060005b60008167ffffffffffffffff81111561082e5761082e611626565b604051908082528060200260200182016040528015610857578160200160208202803683370190505b5090508161086a57935061092092505050565b600061087588610a07565b905060008160400151610886575080515b885b8881141580156108985750848714155b15610914576108a681610e56565b92508260400151156108b75761090c565b82516001600160a01b0316156108cc57825191505b8a6001600160a01b0316826001600160a01b0316141561090c57808488806001019950815181106108ff576108ff611610565b6020026020010181815250505b600101610888565b50505092835250909150505b9392505050565b6001600160a01b0382163314156109515760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109c8848484610bfa565b6001600160a01b0383163b15610a01576109e484848484610e8b565b610a01576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281018390529091506000548310610a4c5792915050565b610a5583610e56565b9050806040015115610a675792915050565b61092083610f83565b6060610a7b82610b72565b610a9857604051630a14c4b560e41b815260040160405180910390fd5b6000610aa2610fb1565b9050805160001415610ac35760405180602001604052806000815250610920565b80610acd84610fc0565b604051602001610ade929190611451565b6040516020818303038152906040529392505050565b610afc610daa565b6001600160a01b038116610b665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b610b6f81610e04565b50565b60008054821080156103a1575050600090815260046020526040902054600160e01b161590565b600081600054811015610be157600081815260046020526040902054600160e01b8116610bdf575b80610920575060001901600081815260046020526040902054610bc1565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610c0582610b99565b9050836001600160a01b0316816001600160a01b031614610c385760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610c685750610c688633610314565b80610c7b57506001600160a01b03821633145b905080610c9b57604051632ce44b5f60e11b815260040160405180910390fd5b84610cb957604051633a954ecd60e21b815260040160405180910390fd5b8115610cdc57600084815260066020526040902080546001600160a01b03191690555b6001600160a01b03868116600090815260056020908152604080832080546000190190559288168252828220805460010190558682526004905220600160e11b4260a01b871781179091558316610d615760018401600081815260046020526040902054610d5f576000548114610d5f5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b0316331461068f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b5d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051606081018252600080825260208201819052918101919091526000828152600460205260409020546103a19061100f565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610ec0903390899088908890600401611480565b602060405180830381600087803b158015610eda57600080fd5b505af1925050508015610f0a575060408051601f3d908101601f19168201909252610f07918101906113a6565b60015b610f65573d808015610f38576040519150601f19603f3d011682016040523d82523d6000602084013e610f3d565b606091505b508051610f5d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60408051606081018252600080825260208201819052918101919091526103a1610fac83610b99565b61100f565b6060600980546103b6906115d5565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610ffd57600183039250600a81066030018353600a9004610fdf565b50819003601f19909101908152919050565b604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b90921615159082015290565b828054611056906115d5565b90600052602060002090601f01602090048101928261107857600085556110be565b82601f1061109157805160ff19168380011785556110be565b828001600101855582156110be579182015b828111156110be5782518255916020019190600101906110a3565b506110ca9291506110ce565b5090565b5b808211156110ca57600081556001016110cf565b600067ffffffffffffffff808411156110fe576110fe611626565b604051601f8501601f19908116603f0116810190828211818310171561112657611126611626565b8160405280935085815286868601111561113f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461117057600080fd5b919050565b60006020828403121561118757600080fd5b61092082611159565b600080604083850312156111a357600080fd5b6111ac83611159565b91506111ba60208401611159565b90509250929050565b6000806000606084860312156111d857600080fd5b6111e184611159565b92506111ef60208501611159565b9150604084013590509250925092565b6000806000806080858703121561121557600080fd5b61121e85611159565b935061122c60208601611159565b925060408501359150606085013567ffffffffffffffff81111561124f57600080fd5b8501601f8101871361126057600080fd5b61126f878235602084016110e3565b91505092959194509250565b6000806040838503121561128e57600080fd5b61129783611159565b9150602083013580151581146112ac57600080fd5b809150509250929050565b600080604083850312156112ca57600080fd5b6112d383611159565b946020939093013593505050565b6000806000606084860312156112f657600080fd5b6112ff84611159565b95602085013595506040909401359392505050565b6000806020838503121561132757600080fd5b823567ffffffffffffffff8082111561133f57600080fd5b818501915085601f83011261135357600080fd5b81358181111561136257600080fd5b8660208260051b850101111561137757600080fd5b60209290920196919550909350505050565b60006020828403121561139b57600080fd5b81356109208161163c565b6000602082840312156113b857600080fd5b81516109208161163c565b6000602082840312156113d557600080fd5b813567ffffffffffffffff8111156113ec57600080fd5b8201601f810184136113fd57600080fd5b610f7b848235602084016110e3565b60006020828403121561141e57600080fd5b5035919050565b6000815180845261143d8160208601602086016115a9565b601f01601f19169290920160200192915050565b600083516114638184602088016115a9565b8351908301906114778183602088016115a9565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906114b390830184611425565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561078e5761151583855180516001600160a01b0316825260208082015167ffffffffffffffff16908301526040908101511515910152565b92840192606092909201916001016114d9565b6020808252825182820181905260009190848201906040850190845b8181101561078e57835183529284019291840191600101611544565b6020815260006109206020830184611425565b81516001600160a01b0316815260208083015167ffffffffffffffff1690820152604080830151151590820152606081016103a1565b60005b838110156115c45781810151838201526020016115ac565b83811115610a015750506000910152565b600181811c908216806115e957607f821691505b6020821081141561160a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b6f57600080fdfea26469706673582212204d4c5ca48691cd13b5376bc7d6f86ae27ab80298f1852914fac48bca7642adfc64736f6c63430008070033

Deployed Bytecode Sourcemap

51817:1985:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16785:615;;;;;;:::i;:::-;;:::i;:::-;;;8240:14:1;;8233:22;8215:41;;8203:2;8188:18;16785:615:0;;;;;;;;21821:100;;;:::i;:::-;;;;;;;:::i;23830:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6174:32:1;;;6156:51;;6144:2;6129:18;23830:204:0;6010:203:1;23349:415:0;;;;;;:::i;:::-;;:::i;:::-;;15839:315;16105:12;;15892:7;16089:13;:28;15839:315;;;9675:25:1;;;9663:2;9648:18;15839:315:0;9529:177:1;24716:170:0;;;;;;:::i;:::-;;:::i;53690:107::-;;;;;;:::i;:::-;;:::i;24957:185::-;;;;;;:::i;:::-;;:::i;44988:528::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;21610:144::-;;;;;;:::i;:::-;;:::i;17464:234::-;;;;;;:::i;:::-;;:::i;2934:103::-;;;:::i;48864:900::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2286:87::-;2359:6;;-1:-1:-1;;;;;2359:6:0;2286:87;;21990:104;;;:::i;45904:2513::-;;;;;;:::i;:::-;;:::i;24106:308::-;;;;;;:::i;:::-;;:::i;25213:396::-;;;;;;:::i;:::-;;:::i;44401:428::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22165:318::-;;;;;;:::i;:::-;;:::i;24485:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;24606:25:0;;;24582:4;24606:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24485:164;3192:201;;;;;;:::i;:::-;;:::i;16785:615::-;16870:4;-1:-1:-1;;;;;;;;;17170:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;17247:25:0;;;17170:102;:179;;;-1:-1:-1;;;;;;;;;;17324:25:0;;;17170:179;17150:199;16785:615;-1:-1:-1;;16785:615:0:o;21821:100::-;21875:13;21908:5;21901:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21821:100;:::o;23830:204::-;23898:7;23923:16;23931:7;23923;:16::i;:::-;23918:64;;23948:34;;-1:-1:-1;;;23948:34:0;;;;;;;;;;;23918:64;-1:-1:-1;24002:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24002:24:0;;23830:204::o;23349:415::-;23422:13;23454:27;23473:7;23454:18;:27::i;:::-;23422:61;-1:-1:-1;38625:10:0;-1:-1:-1;;;;;23500:28:0;;;23496:175;;23548:44;23565:5;38625:10;24485:164;:::i;23548:44::-;23543:128;;23620:35;;-1:-1:-1;;;23620:35:0;;;;;;;;;;;23543:128;23683:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23683:29:0;-1:-1:-1;;;;;23683:29:0;;;;;;;;;23728:28;;23683:24;;23728:28;;;;;;;23411:353;23349:415;;:::o;24716:170::-;24850:28;24860:4;24866:2;24870:7;24850:9;:28::i;:::-;24716:170;;;:::o;53690:107::-;2172:13;:11;:13::i;:::-;53766:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53690:107:::0;:::o;24957:185::-;25095:39;25112:4;25118:2;25122:7;25095:39;;;;;;;;;;;;:16;:39::i;44988:528::-;45132:23;45223:8;45198:22;45223:8;45290:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;45290:36:0;;-1:-1:-1;;45290:36:0;;;;;;;;;;;;45253:73;;45346:9;45341:125;45362:14;45357:1;:19;45341:125;;45418:32;45438:8;;45447:1;45438:11;;;;;;;:::i;:::-;;;;;;;45418:19;:32::i;:::-;45402:10;45413:1;45402:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;45378:3;;45341:125;;;-1:-1:-1;45487:10:0;44988:528;-1:-1:-1;;;;44988:528:0:o;21610:144::-;21674:7;21717:27;21736:7;21717:18;:27::i;17464:234::-;17528:7;17570:5;17548:70;;17590:28;;-1:-1:-1;;;17590:28:0;;;;;;;;;;;17548:70;-1:-1:-1;;;;;;17636:25:0;;;;;:18;:25;;;;;;12809:13;17636:54;;17464:234::o;2934:103::-;2172:13;:11;:13::i;:::-;2999:30:::1;3026:1;2999:18;:30::i;:::-;2934:103::o:0;48864:900::-;48942:16;48996:19;49030:25;49070:22;49095:16;49105:5;49095:9;:16::i;:::-;49070:41;;49126:25;49168:14;49154:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49154:29:0;;49126:57;;49198:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;49198:31:0;49249:9;49244:472;49293:14;49278:11;:29;49244:472;;49345:15;49358:1;49345:12;:15::i;:::-;49333:27;;49383:9;:16;;;49379:73;;;49424:8;;49379:73;49474:14;;-1:-1:-1;;;;;49474:28:0;;49470:111;;49547:14;;;-1:-1:-1;49470:111:0;49624:5;-1:-1:-1;;;;;49603:26:0;:17;-1:-1:-1;;;;;49603:26:0;;49599:102;;;49680:1;49654:8;49663:13;;;;;;49654:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;49599:102;49309:3;;49244:472;;;-1:-1:-1;49737:8:0;;48864:900;-1:-1:-1;;;;;;48864:900:0:o;21990:104::-;22046:13;22079:7;22072:14;;;;;:::i;45904:2513::-;46047:16;46114:4;46105:5;:13;46101:45;;46127:19;;-1:-1:-1;;;46127:19:0;;;;;;;;;;;46101:45;46161:19;46195:17;46215:14;15581:7;15608:13;;15534:95;46215:14;46195:34;-1:-1:-1;46466:9:0;46459:4;:16;46455:73;;;46503:9;46496:16;;46455:73;46542:25;46570:16;46580:5;46570:9;:16::i;:::-;46542:44;;46764:4;46756:5;:12;46752:278;;;46811:12;;;46846:31;;;46842:111;;;46922:11;46902:31;;46842:111;46770:198;46752:278;;;-1:-1:-1;47013:1:0;46752:278;47044:25;47086:17;47072:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47072:32:0;-1:-1:-1;47044:60:0;-1:-1:-1;47123:22:0;47119:78;;47173:8;-1:-1:-1;47166:15:0;;-1:-1:-1;;;47166:15:0;47119:78;47341:31;47375:26;47395:5;47375:19;:26::i;:::-;47341:60;;47416:25;47661:9;:16;;;47656:92;;-1:-1:-1;47718:14:0;;47656:92;47779:5;47762:478;47791:4;47786:1;:9;;:45;;;;;47814:17;47799:11;:32;;47786:45;47762:478;;;47869:15;47882:1;47869:12;:15::i;:::-;47857:27;;47907:9;:16;;;47903:73;;;47948:8;;47903:73;47998:14;;-1:-1:-1;;;;;47998:28:0;;47994:111;;48071:14;;;-1:-1:-1;47994:111:0;48148:5;-1:-1:-1;;;;;48127:26:0;:17;-1:-1:-1;;;;;48127:26:0;;48123:102;;;48204:1;48178:8;48187:13;;;;;;48178:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;48123:102;47833:3;;47762:478;;;-1:-1:-1;;;48325:29:0;;;-1:-1:-1;48332:8:0;;-1:-1:-1;;45904:2513:0;;;;;;:::o;24106:308::-;-1:-1:-1;;;;;24205:31:0;;38625:10;24205:31;24201:61;;;24245:17;;-1:-1:-1;;;24245:17:0;;;;;;;;;;;24201:61;38625:10;24275:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24275:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24275:60:0;;;;;;;;;;24351:55;;8215:41:1;;;24275:49:0;;38625:10;24351:55;;8188:18:1;24351:55:0;;;;;;;24106:308;;:::o;25213:396::-;25380:28;25390:4;25396:2;25400:7;25380:9;:28::i;:::-;-1:-1:-1;;;;;25423:14:0;;;:19;25419:183;;25462:56;25493:4;25499:2;25503:7;25512:5;25462:30;:56::i;:::-;25457:145;;25546:40;;-1:-1:-1;;;25546:40:0;;;;;;;;;;;25457:145;25213:396;;;;:::o;44401:428::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15581:7:0;15608:13;44594:7;:25;44561:103;;44643:9;44401:428;-1:-1:-1;;44401:428:0:o;44561:103::-;44686:21;44699:7;44686:12;:21::i;:::-;44674:33;;44722:9;:16;;;44718:65;;;44762:9;44401:428;-1:-1:-1;;44401:428:0:o;44718:65::-;44800:21;44813:7;44800:12;:21::i;22165:318::-;22238:13;22269:16;22277:7;22269;:16::i;:::-;22264:59;;22294:29;;-1:-1:-1;;;22294:29:0;;;;;;;;;;;22264:59;22336:21;22360:10;:8;:10::i;:::-;22336:34;;22394:7;22388:21;22413:1;22388:26;;:87;;;;;;;;;;;;;;;;;22441:7;22450:18;22460:7;22450:9;:18::i;:::-;22424:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22381:94;22165:318;-1:-1:-1;;;22165:318:0:o;3192:201::-;2172:13;:11;:13::i;:::-;-1:-1:-1;;;;;3281:22:0;::::1;3273:73;;;::::0;-1:-1:-1;;;3273:73:0;;8693:2:1;3273:73:0::1;::::0;::::1;8675:21:1::0;8732:2;8712:18;;;8705:30;8771:34;8751:18;;;8744:62;-1:-1:-1;;;8822:18:1;;;8815:36;8868:19;;3273:73:0::1;;;;;;;;;3357:28;3376:8;3357:18;:28::i;:::-;3192:201:::0;:::o;25864:273::-;25921:4;26011:13;;26001:7;:23;25958:152;;;;-1:-1:-1;;26062:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;26062:43:0;:48;;25864:273::o;19125:1129::-;19192:7;19227;19329:13;;19322:4;:20;19318:869;;;19367:14;19384:23;;;:17;:23;;;;;;-1:-1:-1;;;19473:23:0;;19469:699;;19992:113;19999:11;19992:113;;-1:-1:-1;;;20070:6:0;20052:25;;;;:17;:25;;;;;;19992:113;;19469:699;19344:843;19318:869;20215:31;;-1:-1:-1;;;20215:31:0;;;;;;;;;;;29530:2654;29645:27;29675;29694:7;29675:18;:27::i;:::-;29645:57;;29760:4;-1:-1:-1;;;;;29719:45:0;29735:19;-1:-1:-1;;;;;29719:45:0;;29715:86;;29773:28;;-1:-1:-1;;;29773:28:0;;;;;;;;;;;29715:86;29814:23;29840:24;;;:15;:24;;;;;;-1:-1:-1;;;;;29840:24:0;;;;29814:23;29903:27;;38625:10;29903:27;;:87;;-1:-1:-1;29947:43:0;29964:4;38625:10;24485:164;:::i;29947:43::-;29903:142;;;-1:-1:-1;;;;;;30007:38:0;;38625:10;30007:38;29903:142;29877:169;;30064:17;30059:66;;30090:35;;-1:-1:-1;;;30090:35:0;;;;;;;;;;;30059:66;30158:2;30136:62;;30175:23;;-1:-1:-1;;;30175:23:0;;;;;;;;;;;30136:62;30342:15;30324:39;30320:103;;30387:24;;;;:15;:24;;;;;30380:31;;-1:-1:-1;;;;;;30380:31:0;;;30320:103;-1:-1:-1;;;;;30790:24:0;;;;;;;:18;:24;;;;;;;;30788:26;;-1:-1:-1;;30788:26:0;;;30859:22;;;;;;;;30857:24;;-1:-1:-1;30857:24:0;;;31152:26;;;:17;:26;;;-1:-1:-1;;;31240:15:0;13463:3;31240:41;31198:84;;:128;;31152:174;;;31446:46;;31442:626;;31550:1;31540:11;;31518:19;31673:30;;;:17;:30;;;;;;31669:384;;31811:13;;31796:11;:28;31792:242;;31958:30;;;;:17;:30;;;;;:52;;;31792:242;31499:569;31442:626;32115:7;32111:2;-1:-1:-1;;;;;32096:27:0;32105:4;-1:-1:-1;;;;;32096:27:0;;;;;;;;;;;29634:2550;;;29530:2654;;;:::o;2451:132::-;2359:6;;-1:-1:-1;;;;;2359:6:0;38625:10;2515:23;2507:68;;;;-1:-1:-1;;;2507:68:0;;9100:2:1;2507:68:0;;;9082:21:1;;;9119:18;;;9112:30;9178:34;9158:18;;;9151:62;9230:18;;2507:68:0;8898:356:1;3553:191:0;3646:6;;;-1:-1:-1;;;;;3663:17:0;;;-1:-1:-1;;;;;;3663:17:0;;;;;;;3696:40;;3646:6;;;3663:17;3646:6;;3696:40;;3627:16;;3696:40;3616:128;3553:191;:::o;20734:153::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;20854:24:0;;;;:17;:24;;;;;;20835:44;;:18;:44::i;36007:716::-;36191:88;;-1:-1:-1;;;36191:88:0;;36170:4;;-1:-1:-1;;;;;36191:45:0;;;;;:88;;38625:10;;36258:4;;36264:7;;36273:5;;36191:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36191:88:0;;;;;;;;-1:-1:-1;;36191:88:0;;;;;;;;;;;;:::i;:::-;;;36187:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36474:13:0;;36470:235;;36520:40;;-1:-1:-1;;;36520:40:0;;;;;;;;;;;36470:235;36663:6;36657:13;36648:6;36644:2;36640:15;36633:38;36187:529;-1:-1:-1;;;;;;36350:64:0;-1:-1:-1;;;36350:64:0;;-1:-1:-1;36187:529:0;36007:716;;;;;;:::o;21390:158::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;21493:47:0;21512:27;21531:7;21512:18;:27::i;:::-;21493:18;:47::i;53314:114::-;53374:13;53407;53400:20;;;;;:::i;38749:1960::-;39218:4;39212:11;;39225:3;39208:21;;39303:17;;;;39999:11;;;39878:5;40131:2;40145;40135:13;;40127:22;39999:11;40114:36;40186:2;40176:13;;39770:697;40205:4;39770:697;;;40396:1;40391:3;40387:11;40380:18;;40447:2;40441:4;40437:13;40433:2;40429:22;40424:3;40416:36;40300:2;40290:13;;39770:697;;;-1:-1:-1;40497:13:0;;;-1:-1:-1;;40612:12:0;;;40672:19;;;40612:12;38749:1960;-1:-1:-1;38749:1960:0:o;20348:295::-;-1:-1:-1;;;;;;;;;;;;;20458:41:0;;;;13463:3;20544:32;;;20510:67;;-1:-1:-1;;;20510:67:0;-1:-1:-1;;;20607:23:0;;;:28;;-1:-1:-1;;;20588:47:0;-1:-1:-1;20348:295:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:322::-;2976:6;2984;2992;3045:2;3033:9;3024:7;3020:23;3016:32;3013:52;;;3061:1;3058;3051:12;3013:52;3084:29;3103:9;3084:29;:::i;:::-;3074:39;3160:2;3145:18;;3132:32;;-1:-1:-1;3211:2:1;3196:18;;;3183:32;;2899:322;-1:-1:-1;;;2899:322:1:o;3226:615::-;3312:6;3320;3373:2;3361:9;3352:7;3348:23;3344:32;3341:52;;;3389:1;3386;3379:12;3341:52;3429:9;3416:23;3458:18;3499:2;3491:6;3488:14;3485:34;;;3515:1;3512;3505:12;3485:34;3553:6;3542:9;3538:22;3528:32;;3598:7;3591:4;3587:2;3583:13;3579:27;3569:55;;3620:1;3617;3610:12;3569:55;3660:2;3647:16;3686:2;3678:6;3675:14;3672:34;;;3702:1;3699;3692:12;3672:34;3755:7;3750:2;3740:6;3737:1;3733:14;3729:2;3725:23;3721:32;3718:45;3715:65;;;3776:1;3773;3766:12;3715:65;3807:2;3799:11;;;;;3829:6;;-1:-1:-1;3226:615:1;;-1:-1:-1;;;;3226:615:1:o;3846:245::-;3904:6;3957:2;3945:9;3936:7;3932:23;3928:32;3925:52;;;3973:1;3970;3963:12;3925:52;4012:9;3999:23;4031:30;4055:5;4031:30;:::i;4096:249::-;4165:6;4218:2;4206:9;4197:7;4193:23;4189:32;4186:52;;;4234:1;4231;4224:12;4186:52;4266:9;4260:16;4285:30;4309:5;4285:30;:::i;4350:450::-;4419:6;4472:2;4460:9;4451:7;4447:23;4443:32;4440:52;;;4488:1;4485;4478:12;4440:52;4528:9;4515:23;4561:18;4553:6;4550:30;4547:50;;;4593:1;4590;4583:12;4547:50;4616:22;;4669:4;4661:13;;4657:27;-1:-1:-1;4647:55:1;;4698:1;4695;4688:12;4647:55;4721:73;4786:7;4781:2;4768:16;4763:2;4759;4755:11;4721:73;:::i;4805:180::-;4864:6;4917:2;4905:9;4896:7;4892:23;4888:32;4885:52;;;4933:1;4930;4923:12;4885:52;-1:-1:-1;4956:23:1;;4805:180;-1:-1:-1;4805:180:1:o;4990:257::-;5031:3;5069:5;5063:12;5096:6;5091:3;5084:19;5112:63;5168:6;5161:4;5156:3;5152:14;5145:4;5138:5;5134:16;5112:63;:::i;:::-;5229:2;5208:15;-1:-1:-1;;5204:29:1;5195:39;;;;5236:4;5191:50;;4990:257;-1:-1:-1;;4990:257:1:o;5535:470::-;5714:3;5752:6;5746:13;5768:53;5814:6;5809:3;5802:4;5794:6;5790:17;5768:53;:::i;:::-;5884:13;;5843:16;;;;5906:57;5884:13;5843:16;5940:4;5928:17;;5906:57;:::i;:::-;5979:20;;5535:470;-1:-1:-1;;;;5535:470:1:o;6218:488::-;-1:-1:-1;;;;;6487:15:1;;;6469:34;;6539:15;;6534:2;6519:18;;6512:43;6586:2;6571:18;;6564:34;;;6634:3;6629:2;6614:18;;6607:31;;;6412:4;;6655:45;;6680:19;;6672:6;6655:45;:::i;:::-;6647:53;6218:488;-1:-1:-1;;;;;;6218:488:1:o;6711:722::-;6944:2;6996:21;;;7066:13;;6969:18;;;7088:22;;;6915:4;;6944:2;7167:15;;;;7141:2;7126:18;;;6915:4;7210:197;7224:6;7221:1;7218:13;7210:197;;;7273:52;7321:3;7312:6;7306:13;5336:12;;-1:-1:-1;;;;;5332:38:1;5320:51;;5424:4;5413:16;;;5407:23;5432:18;5403:48;5387:14;;;5380:72;5515:4;5504:16;;;5498:23;5491:31;5484:39;5468:14;;5461:63;5252:278;7273:52;7382:15;;;;7354:4;7345:14;;;;;7246:1;7239:9;7210:197;;7438:632;7609:2;7661:21;;;7731:13;;7634:18;;;7753:22;;;7580:4;;7609:2;7832:15;;;;7806:2;7791:18;;;7580:4;7875:169;7889:6;7886:1;7883:13;7875:169;;;7950:13;;7938:26;;8019:15;;;;7984:12;;;;7911:1;7904:9;7875:169;;8267:219;8416:2;8405:9;8398:21;8379:4;8436:44;8476:2;8465:9;8461:18;8453:6;8436:44;:::i;9259:265::-;5336:12;;-1:-1:-1;;;;;5332:38:1;5320:51;;5424:4;5413:16;;;5407:23;5432:18;5403:48;5387:14;;;5380:72;5515:4;5504:16;;;5498:23;5491:31;5484:39;5468:14;;;5461:63;9455:2;9440:18;;9467:51;5252:278;9711:258;9783:1;9793:113;9807:6;9804:1;9801:13;9793:113;;;9883:11;;;9877:18;9864:11;;;9857:39;9829:2;9822:10;9793:113;;;9924:6;9921:1;9918:13;9915:48;;;-1:-1:-1;;9959:1:1;9941:16;;9934:27;9711:258::o;9974:380::-;10053:1;10049:12;;;;10096;;;10117:61;;10171:4;10163:6;10159:17;10149:27;;10117:61;10224:2;10216:6;10213:14;10193:18;10190:38;10187:161;;;10270:10;10265:3;10261:20;10258:1;10251:31;10305:4;10302:1;10295:15;10333:4;10330:1;10323:15;10187:161;;9974:380;;;:::o;10359:127::-;10420:10;10415:3;10411:20;10408:1;10401:31;10451:4;10448:1;10441:15;10475:4;10472:1;10465:15;10491:127;10552:10;10547:3;10543:20;10540:1;10533:31;10583:4;10580:1;10573:15;10607:4;10604:1;10597:15;10623:131;-1:-1:-1;;;;;;10697:32:1;;10687:43;;10677:71;;10744:1;10741;10734:12

Swarm Source

ipfs://4d4c5ca48691cd13b5376bc7d6f86ae27ab80298f1852914fac48bca7642adfc
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.