ETH Price: $2,684.62 (-0.59%)

Token

Degen Punks (DP)

Overview

Max Total Supply

19 DP

Holders

4

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Balance
3 DP
0xe4e4422dcdb9f8827111e3db7c9a647d2efcbbfb
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
DegenPunks

Compiler Version
v0.8.28+commit.7893614a

ZkSolc Version
v1.5.7

Optimization Enabled:
Yes with Mode 3

Other Settings:
paris EvmVersion
File 1 of 6 : DegenPunks.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;

import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "erc721a/contracts/ERC721A.sol";

contract DegenPunks is Ownable, ERC721A, ReentrancyGuard {
    uint256 public MAX_AMOUNT = 3333;
    uint256 public _maxMintable = 3;
    bool public _saleIsActive = false;
    string private _nftBaseURI =
        "ar://AQfEfKUz6H-rfGaOJXm8_AqmdKr53rjIokvZagCe6fE/";
    uint256 public _listingPrice = 0.002 ether;
    mapping(address => uint256) private balances;

    constructor() ERC721A("Degen Punks", "DP") Ownable(msg.sender) {}

    function setMaxMintable(uint256 maxMintable_) public onlyOwner {
        _maxMintable = maxMintable_;
    }

    function setListingPrice(uint256 listingPrice_) public onlyOwner {
        _listingPrice = listingPrice_;
    }

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

    function setBaseURI(string calldata newURI) public onlyOwner {
        _nftBaseURI = newURI;
    }

    function flipSaleState() public onlyOwner {
        _saleIsActive = !_saleIsActive;
    }

    function withdraw() external onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        (bool success, ) = payable(owner()).call{value: balance}("");
        require(success, "Withdrawal failed");
    }

    function mint(uint256 _amount) public payable {
        require(_saleIsActive, "Sale not active");
        require(totalSupply() + _amount <= (MAX_AMOUNT), "supply limited");
        require(
            msg.value >= (_listingPrice * _amount),
            "not enough funds submitted"
        );
        require(
            balances[msg.sender] + _amount <= _maxMintable,
            "token limit per wallet reached"
        );

        balances[msg.sender] += _amount;
        _safeMint(msg.sender, _amount);
    }
}

File 2 of 6 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * The `_sequentialUpTo()` function can be overriden to enable spot mints
 * (i.e. non-consecutive mints) for `tokenId`s greater than `_sequentialUpTo()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    // The amount of tokens minted above `_sequentialUpTo()`.
    // We call these spot mints (i.e. non-sequential mints).
    uint256 private _spotMinted;

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

        if (_sequentialUpTo() < _startTokenId()) _revert(SequentialUpToTooSmall.selector);
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID for sequential mints.
     *
     * Override this function to change the starting token ID for sequential mints.
     *
     * Note: The value returned must never change after any tokens have been minted.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the maximum token ID (inclusive) for sequential mints.
     *
     * Override this function to return a value less than 2**256 - 1,
     * but greater than `_startTokenId()`, to enable spot (non-sequential) mints.
     *
     * Note: The value returned must never change after any tokens have been minted.
     */
    function _sequentialUpTo() internal view virtual returns (uint256) {
        return type(uint256).max;
    }

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256 result) {
        // Counter underflow is impossible as `_burnCounter` cannot be incremented
        // more than `_currentIndex + _spotMinted - _startTokenId()` times.
        unchecked {
            // With spot minting, the intermediate `result` can be temporarily negative,
            // and the computation must be unchecked.
            result = _currentIndex - _burnCounter - _startTokenId();
            if (_sequentialUpTo() != type(uint256).max) result += _spotMinted;
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256 result) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            result = _currentIndex - _startTokenId();
            if (_sequentialUpTo() != type(uint256).max) result += _spotMinted;
        }
    }

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

    /**
     * @dev Returns the total number of tokens that are spot-minted.
     */
    function _totalSpotMinted() internal view virtual returns (uint256) {
        return _spotMinted;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) _revert(BalanceQueryForZeroAddress.selector);
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) _revert(URIQueryForNonexistentToken.selector);

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

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

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

    /**
     * @dev Returns whether the ownership slot at `index` is initialized.
     * An uninitialized slot does not necessarily mean that the slot has no owner.
     */
    function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) {
        return _packedOwnerships[index] != 0;
    }

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

    /**
     * @dev Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) {
        if (_startTokenId() <= tokenId) {
            packed = _packedOwnerships[tokenId];

            if (tokenId > _sequentialUpTo()) {
                if (_packedOwnershipExists(packed)) return packed;
                _revert(OwnerQueryForNonexistentToken.selector);
            }

            // If the data at the starting slot does not exist, start the scan.
            if (packed == 0) {
                if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector);
                // Invariant:
                // There will always be an initialized ownership slot
                // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                // before an unintialized ownership slot
                // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                // Hence, `tokenId` will not underflow.
                //
                // We can directly compare the packed value.
                // If the address is zero, packed will be zero.
                for (;;) {
                    unchecked {
                        packed = _packedOwnerships[--tokenId];
                    }
                    if (packed == 0) continue;
                    if (packed & _BITMASK_BURNED == 0) return packed;
                    // Otherwise, the token is burned, and we must revert.
                    // This handles the case of batch burned tokens, where only the burned bit
                    // of the starting slot is set, and remaining slots are left uninitialized.
                    _revert(OwnerQueryForNonexistentToken.selector);
                }
            }
            // Otherwise, the data exists and we can skip the scan.
            // This is possible because we have already achieved the target condition.
            // This saves 2143 gas on transfers of initialized tokens.
            // If the token is not burned, return `packed`. Otherwise, revert.
            if (packed & _BITMASK_BURNED == 0) return packed;
        }
        _revert(OwnerQueryForNonexistentToken.selector);
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) _revert(ApprovalQueryForNonexistentToken.selector);

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool result) {
        if (_startTokenId() <= tokenId) {
            if (tokenId > _sequentialUpTo()) return _packedOwnershipExists(_packedOwnerships[tokenId]);

            if (tokenId < _currentIndex) {
                uint256 packed;
                while ((packed = _packedOwnerships[tokenId]) == 0) --tokenId;
                result = packed & _BITMASK_BURNED == 0;
            }
        }
    }

    /**
     * @dev Returns whether `packed` represents a token that exists.
     */
    function _packedOwnershipExists(uint256 packed) private pure returns (bool result) {
        assembly {
            // The following is equivalent to `owner != address(0) && burned == false`.
            // Symbolically tested.
            result := gt(and(packed, _BITMASK_ADDRESS), and(packed, _BITMASK_BURNED))
        }
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
        from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS));

        if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector);

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) _revert(TransferCallerNotOwnerNorApproved.selector);

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

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

        // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
        uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;
        assembly {
            // Emit the `Transfer` event.
            log4(
                0, // Start of data (0, since no data).
                0, // End of data (0, since no data).
                _TRANSFER_EVENT_SIGNATURE, // Signature.
                from, // `from`.
                toMasked, // `to`.
                tokenId // `tokenId`.
            )
        }
        if (toMasked == 0) _revert(TransferToZeroAddress.selector);

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                _revert(TransferToNonERC721ReceiverImplementer.selector);
            }
    }

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

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

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

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) _revert(MintZeroQuantity.selector);

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
            uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;

            if (toMasked == 0) _revert(MintToZeroAddress.selector);

            uint256 end = startTokenId + quantity;
            uint256 tokenId = startTokenId;

            if (end - 1 > _sequentialUpTo()) _revert(SequentialMintExceedsLimit.selector);

            do {
                assembly {
                    // Emit the `Transfer` event.
                    log4(
                        0, // Start of data (0, since no data).
                        0, // End of data (0, since no data).
                        _TRANSFER_EVENT_SIGNATURE, // Signature.
                        0, // `address(0)`.
                        toMasked, // `to`.
                        tokenId // `tokenId`.
                    )
                }
                // The `!=` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
            } while (++tokenId != end);

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) _revert(MintToZeroAddress.selector);
        if (quantity == 0) _revert(MintZeroQuantity.selector);
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector);

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            if (startTokenId + quantity - 1 > _sequentialUpTo()) _revert(SequentialMintExceedsLimit.selector);

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        _revert(TransferToNonERC721ReceiverImplementer.selector);
                    }
                } while (index < end);
                // This prevents reentrancy to `_safeMint`.
                // It does not prevent reentrancy to `_safeMintSpot`.
                if (_currentIndex != end) revert();
            }
        }
    }

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

    /**
     * @dev Mints a single token at `tokenId`.
     *
     * Note: A spot-minted `tokenId` that has been burned can be re-minted again.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` must be greater than `_sequentialUpTo()`.
     * - `tokenId` must not exist.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mintSpot(address to, uint256 tokenId) internal virtual {
        if (tokenId <= _sequentialUpTo()) _revert(SpotMintTokenIdTooSmall.selector);
        uint256 prevOwnershipPacked = _packedOwnerships[tokenId];
        if (_packedOwnershipExists(prevOwnershipPacked)) _revert(TokenAlreadyExists.selector);

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

        // Overflows are incredibly unrealistic.
        // The `numberMinted` for `to` is incremented by 1, and has a max limit of 2**64 - 1.
        // `_spotMinted` is incremented by 1, and has a max limit of 2**256 - 1.
        unchecked {
            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `true` (as `quantity == 1`).
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(1) | _nextExtraData(address(0), to, prevOwnershipPacked)
            );

            // Updates:
            // - `balance += 1`.
            // - `numberMinted += 1`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += (1 << _BITPOS_NUMBER_MINTED) | 1;

            // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
            uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;

            if (toMasked == 0) _revert(MintToZeroAddress.selector);

            assembly {
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    tokenId // `tokenId`.
                )
            }

            ++_spotMinted;
        }

        _afterTokenTransfers(address(0), to, tokenId, 1);
    }

    /**
     * @dev Safely mints a single token at `tokenId`.
     *
     * Note: A spot-minted `tokenId` that has been burned can be re-minted again.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}.
     * - `tokenId` must be greater than `_sequentialUpTo()`.
     * - `tokenId` must not exist.
     *
     * See {_mintSpot}.
     *
     * Emits a {Transfer} event.
     */
    function _safeMintSpot(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mintSpot(to, tokenId);

        unchecked {
            if (to.code.length != 0) {
                uint256 currentSpotMinted = _spotMinted;
                if (!_checkContractOnERC721Received(address(0), to, tokenId, _data)) {
                    _revert(TransferToNonERC721ReceiverImplementer.selector);
                }
                // This prevents reentrancy to `_safeMintSpot`.
                // It does not prevent reentrancy to `_safeMint`.
                if (_spotMinted != currentSpotMinted) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMintSpot(to, tokenId, '')`.
     */
    function _safeMintSpot(address to, uint256 tokenId) internal virtual {
        _safeMintSpot(to, tokenId, '');
    }

    // =============================================================
    //                       APPROVAL OPERATIONS
    // =============================================================

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

    /**
     * @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:
     *
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        bool approvalCheck
    ) internal virtual {
        address owner = ownerOf(tokenId);

        if (approvalCheck && _msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                _revert(ApprovalCallerNotOwnerNorApproved.selector);
            }

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) _revert(TransferCallerNotOwnerNorApproved.selector);
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) _revert(OwnershipNotInitializedForExtraData.selector);
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

    /**
     * @dev For more efficient reverts.
     */
    function _revert(bytes4 errorSelector) internal pure {
        assembly {
            mstore(0x00, errorSelector)
            revert(0x00, 0x04)
        }
    }
}

File 3 of 6 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol)

pragma solidity ^0.8.20;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at,
 * consider using {ReentrancyGuardTransient} instead.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant NOT_ENTERED = 1;
    uint256 private constant ENTERED = 2;

    uint256 private _status;

    /**
     * @dev Unauthorized reentrant call.
     */
    error ReentrancyGuardReentrantCall();

    constructor() {
        _status = NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be NOT_ENTERED
        if (_status == ENTERED) {
            revert ReentrancyGuardReentrantCall();
        }

        // Any calls to nonReentrant after this point will fail
        _status = ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == ENTERED;
    }
}

File 4 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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 5 of 6 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    /**
     * `_sequentialUpTo()` must be greater than `_startTokenId()`.
     */
    error SequentialUpToTooSmall();

    /**
     * The `tokenId` of a sequential mint exceeds `_sequentialUpTo()`.
     */
    error SequentialMintExceedsLimit();

    /**
     * Spot minting requires a `tokenId` greater than `_sequentialUpTo()`.
     */
    error SpotMintTokenIdTooSmall();

    /**
     * Cannot mint over a token that already exists.
     */
    error TokenAlreadyExists();

    /**
     * The feature is not compatible with spot mints.
     */
    error NotCompatibleWithSpotMints();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

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

    /**
     * @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 payable;

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

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

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

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

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

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

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 6 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "mode": "3"
  },
  "outputSelection": {
    "*": {
      "*": [
        "abi",
        "metadata"
      ],
      "": [
        "ast"
      ]
    }
  },
  "evmVersion": "paris",
  "detectMissingLibraries": false,
  "forceEVMLA": false,
  "enableEraVMExtensions": false,
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotCompatibleWithSpotMints","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[],"name":"SequentialMintExceedsLimit","type":"error"},{"inputs":[],"name":"SequentialUpToTooSmall","type":"error"},{"inputs":[],"name":"SpotMintTokenIdTooSmall","type":"error"},{"inputs":[],"name":"TokenAlreadyExists","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_listingPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxMintable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"payable","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":"payable","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":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"listingPrice_","type":"uint256"}],"name":"setListingPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintable_","type":"uint256"}],"name":"setMaxMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"result","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

9c4d535b00000000000000000000000000000000000000000000000000000000000000000100032d90996006ebdd3e97a8d4146a0672039a8ce47be20353b8f520ce987000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x0003000000000002000c0000000000020000006003100270000002ba04300197000200000041035500010000000103550000008003000039000000400030043f0000000100200190000000230000c13d000800000003001d000000040040008c000007310000413d000000000201043b000000e002200270000002cc0020009c000000510000a13d000002cd0020009c000000990000213d000002d70020009c000000e00000a13d000002d80020009c000001470000213d000002db0020009c000001c50000613d000002dc0020009c000007310000c13d0000000001000416000000000001004b000007310000c13d000000000100041a000002be01100197000000800010043f000002f50100004100000ae30001042e0000000001000416000000000001004b000007310000c13d0000000b01000039000000800010043f000002bb01000041000000a00010043f0000010001000039000000400010043f0000000201000039000000c00010043f000002bc01000041000000e00010043f0000000006000411000000000006004b000000380000c13d000002f301000041000000000010043f000000040000043f000002f20100004100000ae400010430000000000100041a000002bd02100197000000000262019f000000000020041b0000000002000414000002be05100197000002ba0020009c000002ba02008041000000c001200210000002bf011001c70000800d020000390000000303000039000002c0040000410ae20ad80000040f0000000100200190000007310000613d000000800400043d000002c10040009c000000d00000413d0000031901000041000000000010043f0000004101000039000000040010043f000002f20100004100000ae400010430000002e00020009c000000a60000a13d000002e10020009c000000fe0000a13d000002e20020009c0000015d0000213d000002e50020009c000001d00000613d000002e60020009c000007310000c13d000000240040008c000007310000413d0000000002000416000000000002004b000007310000c13d0000000402100370000000000302043b000002c30030009c000007310000213d0000002302300039000000000042004b000007310000813d0000000406300039000000000261034f000000000202043b000002c30020009c000007310000213d00000024053000390000000003520019000000000043004b000007310000213d000000000300041a000002be043001970000000003000411000000000034004b000004b70000c13d0000000e03000039000000000703041a000000010070019000000001047002700000007f0440618f0000001f0040008c00000000080000390000000108002039000000000787013f0000000100700190000000da0000c13d000000200040008c000000910000413d000000000030043f0000001f072000390000000507700270000002c40770009a000000200020008c000002c7070040410000001f044000390000000504400270000002c40440009a000000000047004b000000910000813d000000000007041b0000000107700039000000000047004b0000008d0000413d0000001f0020008c000005c60000a13d000000000030043f0000032406200198000006130000c13d000002c70400004100000000070000190000061d0000013d000002ce0020009c000001140000a13d000002cf0020009c000001710000213d000002d20020009c000001e10000613d000002d30020009c000007310000c13d0000000001000416000000000001004b000007310000c13d0000000c01000039000001e50000013d000002ea0020009c0000013c0000213d000002ee0020009c000001e90000613d000002ef0020009c000001fd0000613d000002f00020009c000007310000c13d000000240040008c000007310000413d0000000002000416000000000002004b000007310000c13d0000000401100370000000000201043b0000000101000039000000000101041a000000000021004b0000046a0000a13d000900000002001d000a00000002001d000000000020043f0000000501000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000007310000613d000000000101043b000000000101041a000000000001004b000004600000c13d0000000a02000029000000000002004b000000010220008a000000ba0000c13d000005a60000013d0000000301000039000000000101041a000000010210019000000001031002700000007f0330618f0000001f0030008c00000000010000390000000101002039000000000012004b000001910000613d0000031901000041000000000010043f0000002201000039000000040010043f000002f20100004100000ae400010430000002dd0020009c000003340000613d000002de0020009c0000021c0000613d000002df0020009c000007310000c13d0000000001000416000000000001004b000007310000c13d000000000100041a000002be021001970000000005000411000000000052004b0000038a0000c13d000002bd01100197000000000010041b0000000001000414000002ba0010009c000002ba01008041000000c001100210000002bf011001c70000800d020000390000000303000039000002c00400004100000000060000190ae20ad80000040f0000000100200190000007310000613d000000000100001900000ae30001042e000002e70020009c0000022b0000613d000002e80020009c000002390000613d000002e90020009c000007310000c13d0000000001000416000000000001004b000007310000c13d000000000100041a000002be021001970000000001000411000000000012004b0000038f0000c13d0000000a02000039000000000102041a000000020010008c0000041d0000c13d0000031b01000041000000000010043f000002f90100004100000ae400010430000002d40020009c0000033c0000613d000002d50020009c000002450000613d000002d60020009c000007310000c13d000000240040008c000007310000413d0000000002000416000000000002004b000007310000c13d0000000401100370000000000201043b0000000101000039000000000101041a000000000021004b0000048e0000a13d000900000002001d000a00000002001d000000000020043f0000000501000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000007310000613d000000000101043b000000000101041a000000000001004b0000046e0000c13d0000000a02000029000000000002004b000000010220008a000001260000c13d000005a60000013d000002eb0020009c0000028a0000613d000002ec0020009c000002e50000613d000002ed0020009c000007310000c13d00000000010400190ae2077f0000040f0ae207b30000040f000000000100001900000ae30001042e000002d90020009c000002f00000613d000002da0020009c000007310000c13d000000240040008c000007310000413d0000000401100370000000000301043b0000000d01000039000000000101041a000000ff00100190000003940000c13d0000031001000041000000800010043f0000002001000039000000840010043f0000000f01000039000000a40010043f0000031501000041000000c40010043f000003130100004100000ae400010430000002e30020009c0000030f0000613d000002e40020009c000007310000c13d000000240040008c000007310000413d0000000002000416000000000002004b000007310000c13d0000000401100370000000000101043b0ae20a880000040f000002be01100197000000400200043d0000000000120435000002ba0020009c000002ba020080410000004001200210000002f4011001c700000ae30001042e000002d00020009c0000031a0000613d000002d10020009c000007310000c13d000000240040008c000007310000413d0000000002000416000000000002004b000007310000c13d0000000401100370000000000601043b000002be0060009c000007310000213d000000000100041a000002be021001970000000005000411000000000052004b0000038a0000c13d000000000006004b000000330000613d000002bd01100197000000000161019f000000000010041b0000000001000414000002ba0010009c000002ba01008041000000c001100210000002bf011001c70000800d020000390000000303000039000002c004000041000000f90000013d000000200030008c000001b10000413d000900000003001d000a00000004001d0000000301000039000000000010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002c2011001c700008010020000390ae20add0000040f0000000100200190000007310000613d0000000a040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000009010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000001b10000813d000000000002041b0000000102200039000000000012004b000001ad0000413d000000200040008c0000037f0000413d000a00000004001d0000000301000039000000000010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002c2011001c700008010020000390ae20add0000040f0000000100200190000007310000613d0000000a060000290000032402600198000000000101043b000003c00000c13d0000002003000039000003cc0000013d000000240040008c000007310000413d0000000002000416000000000002004b000007310000c13d0000000401100370000000000101043b000a00000001001d0ae20abb0000040f0000000f01000039000002350000013d00000000010400190ae2077f0000040f000a00000001001d000900000002001d000800000003001d000000400100043d000700000001001d00000020020000390ae207910000040f000000070400002900000000000404350000000a01000029000000090200002900000008030000290ae208b50000040f000000000100001900000ae30001042e0000000001000416000000000001004b000007310000c13d0000000b01000039000000000101041a000000800010043f000002f50100004100000ae30001042e000000240040008c000007310000413d0000000002000416000000000002004b000007310000c13d0000000401100370000000000201043b0000030a00200198000007310000c13d00000001010000390000030b02200197000003210020009c000003390000613d000003220020009c000003390000613d000003230020009c000000000100c019000000800010043f000002f50100004100000ae30001042e0000000001000416000000000001004b000007310000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000da0000c13d000000800010043f000000000004004b000003aa0000613d000000000030043f000000000001004b0000000002000019000003af0000613d00000320030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000002140000413d000003af0000013d000000240040008c000007310000413d0000000002000416000000000002004b000007310000c13d0000000401100370000000000101043b000002be0010009c000007310000213d000000000001004b000004350000c13d0000031701000041000000000010043f000002f90100004100000ae400010430000000240040008c000007310000413d0000000002000416000000000002004b000007310000c13d0000000401100370000000000101043b000a00000001001d0ae20abb0000040f0000000c010000390000000a02000029000000000021041b000000000100001900000ae30001042e0000000001000416000000000001004b000007310000c13d0ae20abb0000040f0000000d01000039000000000201041a0000032503200197000000ff0020019000000001033061bf000000000031041b000000000100001900000ae30001042e000000840040008c000007310000413d0000000402100370000000000502043b000002be0050009c000007310000213d0000002402100370000000000202043b000002be0020009c000007310000213d0000004403100370000000000303043b0000006406100370000000000706043b000002c30070009c000007310000213d0000002306700039000000000046004b000007310000813d0000000408700039000000000681034f000000000606043b000002c30060009c0000004b0000213d0000001f0a600039000003240aa001970000003f0aa00039000003240aa00197000002fd00a0009c0000004b0000213d000000800aa000390000004000a0043f000000800060043f00000000076700190000002407700039000000000047004b000007310000213d0000002004800039000000000441034f00000324076001980000001f0860018f000000a001700039000002760000613d000000a009000039000000000a04034f00000000ab0a043c0000000009b90436000000000019004b000002720000c13d000000000008004b000002830000613d000000000474034f0000000307800210000000000801043300000000087801cf000000000878022f000000000404043b0000010007700089000000000474022f00000000047401cf000000000484019f0000000000410435000000a0016000390000000000010435000000800400003900000000010500190ae208b50000040f000000000100001900000ae30001042e000000440040008c000007310000413d0000000402100370000000000202043b000900000002001d000002be0020009c000007310000213d0000002401100370000000000101043b000800000001001d000000000010043f0000000501000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000007310000613d000000000101043b000000000101041a000000000001004b000002bc0000c13d0000000101000039000000000101041a000000080010006c000004920000a13d0000000802000029000000010220008a000a00000002001d000000000020043f0000000501000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000007310000613d000000000101043b000000000101041a000000000001004b0000000a02000029000002a90000613d000002f700100198000004920000c13d000002be011001970000000002000411000000000012004b000a00000001001d000005140000c13d0000000801000029000000000010043f0000000701000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000007310000613d0000000902000029000002be06200197000000000101043b000000000201041a000002bd02200197000000000262019f000000000021041b0000000001000414000002ba0010009c000002ba01008041000000c001100210000002bf011001c70000800d0200003900000004030000390000031e040000410000000a0500002900000008070000290ae20ad80000040f0000000100200190000000fc0000c13d000007310000013d0000000001000416000000000001004b000007310000c13d0000000201000039000000000101041a0000000102000039000000000202041a0000000001120049000000800010043f000002f50100004100000ae30001042e0000000001000416000000000001004b000007310000c13d0000000403000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000da0000c13d000000800010043f000000000004004b000003aa0000613d000000000030043f000000000001004b0000000002000019000003af0000613d00000316030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000003070000413d000003af0000013d0000000001000416000000000001004b000007310000c13d0000000d01000039000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000002f50100004100000ae30001042e000000440040008c000007310000413d0000000002000416000000000002004b000007310000c13d0000000402100370000000000202043b000002be0020009c000007310000213d0000002401100370000000000101043b000a00000001001d000002be0010009c000007310000213d000000000020043f0000000801000039000000200010043f00000040010000390ae20ac70000040f0000000a020000290ae207a30000040f000000000101041a000000ff001001900000000001000039000000010100c0390000016a0000013d0000000001000416000000000001004b000007310000c13d0000000f01000039000000000101041a000000800010043f000002f50100004100000ae30001042e000000440040008c000007310000413d0000000002000416000000000002004b000007310000c13d0000000402100370000000000202043b000a00000002001d000002be0020009c000007310000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000900000002001d000000000012004b000007310000c13d0000000001000411000000000010043f0000000801000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000007310000613d000000000101043b0000000a02000029000000000020043f000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000007310000613d000000000101043b000000000201041a00000325022001970000000903000029000000000232019f000000000021041b000000400100043d0000000000310435000002ba0010009c000002ba0100804100000040011002100000000002000414000002ba0020009c000002ba02008041000000c002200210000000000112019f000002c2011001c70000800d020000390000000303000039000002fe0400004100000000050004110000000a06000029000000f90000013d000000000004004b0000000001000019000003d80000613d0000000301400210000003260110027f0000032601100167000000a00200043d000000000112016f0000000102400210000000000121019f000003d80000013d000002f101000041000000000010043f000000040050043f000002f20100004100000ae400010430000002f102000041000000000020043f000000040010043f000002f20100004100000ae4000104300000000201000039000000000101041a0000000102000039000000000202041a0000000001120049000000000031001a000005a60000413d00000000013100190000000b02000039000000000202041a000000000021004b0000043f0000a13d0000031001000041000000800010043f0000002001000039000000840010043f0000000e01000039000000a40010043f0000031401000041000000c40010043f000003130100004100000ae4000104300000032502200197000000a00020043f000000000001004b00000020020000390000000002006039000000200220003900000080010000390ae207910000040f000000400100043d000a00000001001d00000080020000390ae2076a0000040f0000000a020000290000000001210049000002ba0010009c000002ba010080410000006001100210000002ba0020009c000002ba020080410000004002200210000000000121019f00000ae30001042e000000010320008a000000050330027000000000043100190000002003000039000000010440003900000080053000390000000005050433000000000051041b00000020033000390000000101100039000000000041004b000003c50000c13d000000000062004b000003d60000813d0000000302600210000000f80220018f000003260220027f000003260220016700000080033000390000000003030433000000000223016f000000000021041b000000010160021000000001011001bf0000000302000039000000000012041b000000c00400043d000002c30040009c0000004b0000213d0000000407000039000000000107041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000000da0000c13d000000200030008c000004080000413d000900000003001d000a00000004001d000000000070043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002c2011001c700008010020000390ae20add0000040f0000000100200190000007310000613d0000000a040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000009010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000407000039000004080000813d000000000002041b0000000102200039000000000012004b000004040000413d000000200040008c000004540000413d000a00000004001d000000000070043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002c2011001c700008010020000390ae20add0000040f0000000100200190000007310000613d0000000a080000290000032402800198000000000101043b000004c30000c13d000000e0030000390000000b060000390000000407000039000004d30000013d0000000201000039000000000012041b00000318010000410000000000100443000000000100041000000004001004430000000001000414000002ba0010009c000002ba01008041000000c00110021000000305011001c70000800a020000390ae20add0000040f0000000100200190000006a10000613d000000000301043b000000000200041a0000000001000414000002be04200197000000040040008c000004bc0000c13d000000010200003900000000010000310000053e0000013d000000000010043f0000000601000039000000200010043f00000040010000390ae20ac70000040f000000000101041a000002c301100197000000800010043f000002f50100004100000ae30001042e0000000f01000039000000000201041a00000000013200a9000000000002004b000004470000613d00000000022100d9000000000032004b000005a60000c13d0000000002000416000000000012004b000004960000813d0000031001000041000000800010043f0000002001000039000000840010043f0000001a01000039000000a40010043f0000031201000041000000c40010043f000003130100004100000ae400010430000000000004004b00000000010000190000000b06000039000004de0000613d0000000301400210000003260110027f0000032601100167000000e00200043d000000000112016f0000000102400210000000000121019f000004de0000013d000002f70010019800000009010000290000046a0000c13d000000000010043f0000000701000039000000200010043f00000040010000390ae20ac70000040f000000000101041a000001690000013d0000031f01000041000000000010043f000002f90100004100000ae400010430000002f70010019800000009090000290000048e0000c13d0000000e05000039000000000305041a000000010630019000000001023002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000113013f0000000100100190000000da0000c13d000000400400043d0000000001240436000000000006004b000005ac0000613d000000000050043f000000000002004b0000000003000019000005b10000613d000002c70500004100000000030000190000000006310019000000000705041a000000000076043500000001055000390000002003300039000000000023004b000004860000413d000005b10000013d000002f801000041000000000010043f000002f90100004100000ae4000104300000031c01000041000000000010043f000002f90100004100000ae400010430000600000003001d0000000001000411000002be01100197000900000001001d000000000010043f0000001001000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000007310000613d000000000101043b000000000101041a0000000602000029000000000021001a000005a60000413d00000000012100190000000c02000039000000000202041a000000000021004b000005810000a13d000000400100043d00000044021000390000030f03000041000000000032043500000024021000390000001e03000039000005760000013d000002f101000041000000000010043f000000040030043f000002f20100004100000ae400010430000002ba0010009c000002ba01008041000000c001100210000000000003004b000005360000c13d0000000002040019000005390000013d000000010320008a00000005033002700000000003310019000000200400003900000001033000390000000b0600003900000004070000390000000005040019000000c0044000390000000004040433000000000041041b00000020045000390000000101100039000000000031004b000004ca0000c13d000000e003500039000000000082004b000004dc0000813d0000000302800210000000f80220018f000003260220027f00000326022001670000000003030433000000000223016f000000000021041b000000010180021000000001011001bf000000000017041b0000000101000039000000000001041b0000000a02000039000000000012041b00000d0501000039000000000016041b0000000c010000390000000302000039000000000021041b0000000d01000039000000000201041a0000032502200197000000000021041b0000000e01000039000000000301041a000000010030019000000001023002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000343013f0000000100300190000000da0000c13d000000200020008c000005030000413d000000410020008c000005030000413d0000001f022000390000000502200270000002c40220009a000002c503000041000000000003041b0000000103300039000000000023004b000004ff0000413d0000006302000039000000000021041b000000000010043f000002c601000041000002c702000041000000000012041b000002c801000041000002c902000041000000000012041b000002ca010000410000000f02000039000000000012041b000000200100003900000100001004430000012000000443000002cb0100004100000ae30001042e000000000010043f0000000801000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000007310000613d000000000101043b0000000002000411000002be02200197000000000020043f000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000007310000613d000000000101043b000000000101041a000000ff00100190000002c30000c13d0000031d01000041000000000010043f000002f90100004100000ae400010430000002bf011001c7000080090200003900000000050000190ae20ad80000040f00020000000103550000006001100270000002ba0010019d000002ba01100197000000000001004b000005470000c13d0000000100200190000005700000613d00000001010000390000000a02000039000000000012041b000000000100001900000ae30001042e000002c30010009c0000004b0000213d0000001f0410003900000324044001970000003f044000390000032405400197000000400400043d0000000005540019000000000045004b00000000060000390000000106004039000002c30050009c0000004b0000213d00000001006001900000004b0000c13d000000400050043f000000000614043600000324031001980000001f0410018f00000000013600190000000205000367000005620000613d000000000705034f000000007807043c0000000006860436000000000016004b0000055e0000c13d000000000004004b000005400000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000005400000013d000000400100043d00000044021000390000031a03000041000000000032043500000024021000390000001103000039000000000032043500000310020000410000000000210435000000040210003900000020030000390000000000320435000002ba0010009c000002ba01008041000000400110021000000311011001c700000ae4000104300000000901000029000000000010043f0000001001000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000007310000613d000000000101043b000000000201041a0000000603000029000000000032001a000005a60000413d0000000002320019000000000021041b0000000001000415000100000001001d000000400100043d000500000001001d000002fc0010009c0000004b0000213d00000005010000290000002002100039000400000002001d000000400020043f0000000000010435000000060000006b0000062e0000c13d0000030e01000041000000000010043f000002f90100004100000ae4000104300000031901000041000000000010043f0000001101000039000000040010043f000002f20100004100000ae40001043000000325033001970000000000310435000000000002004b000000200300003900000000030060390000003f0230003900000324052001970000000002450019000000000052004b00000000050000390000000105004039000002c30020009c0000004b0000213d00000001005001900000004b0000c13d000000400020043f0000000005040433000000000005004b000005d20000c13d000002fc0020009c0000004b0000213d0000002001200039000000400010043f0000000000020435000000400300043d000006100000013d000000000002004b0000000004000019000005cc0000613d0000002004600039000000000141034f000000000401043b0000000301200210000003260110027f0000032601100167000000000414016f00000001012002100000062a0000013d000000a005200039000000400050043f000000800520003900000000000504350000000006050019000000090090008c0000000a5990011a000000f807500210000000010560008a0000000008050433000002fa08800197000000000787019f000002fb077001c70000000000750435000005d60000213d00000000026200490000008102200039000000210660008a0000000000260435000000400200043d00000020072000390000000004040433000000000004004b000005f20000613d00000000080000190000000009780019000000000a810019000000000a0a04330000000000a904350000002008800039000000000048004b000005eb0000413d000000000174001900000000000104350000000004060433000000000004004b000005ff0000613d000000000600001900000000071600190000000008560019000000000808043300000000008704350000002006600039000000000046004b000005f80000413d000000000114001900000000000104350000000001210049000000200410008a00000000004204350000001f0110003900000324011001970000000004210019000000000014004b00000000010000390000000101004039000002c30040009c0000004b0000213d00000001001001900000004b0000c13d0000000003040019000000400040043f0000000001030019000a00000003001d000003b50000013d000002c70400004100000000070000190000000008570019000000000881034f000000000808043b000000000084041b00000001044000390000002007700039000000000067004b000006150000413d000000000026004b000006280000813d0000000306200210000000f80660018f000003260660027f00000326066001670000000005570019000000000151034f000000000101043b000000000161016f000000000014041b00000001010000390000000104200210000000000114019f000000000013041b000000000100001900000ae30001042e0000000101000039000000000101041a000a00000001001d000002ff0100004100000000001004430000000001000414000002ba0010009c000002ba01008041000000c00110021000000300011001c70000800b020000390ae20add0000040f0000000100200190000006a10000613d000000000101043b000700000001001d0000000a01000029000000000010043f0000000501000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000007310000613d0000000702000029000000a0022002100000000603000029000000010030008c00000000030000190000030103006041000000000223019f0000000903000029000000000232019f000000000101043b000000000021041b000000000030043f0000000601000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000007310000613d000000060200002900000302022000d1000000000101043b000000000301041a0000000002230019000000000021041b000000090000006b0000066e0000c13d0000030d01000041000000000010043f000002f90100004100000ae4000104300000000a02000029000700060020002d0000000001000019000006820000013d00000009060000290000000a070000290000000001000414000002ba0010009c000002ba01008041000000c001100210000002bf011001c70000800d02000039000000040300003900000303040000410000000005000019000a00000007001d0ae20ad80000040f00000001002001900000000101000039000007310000613d0000000100100190000006720000613d0000000a070000290000000107700039000000070070006c0000000906000029000006740000c13d00000001020000390000000701000029000000000012041b00000304010000410000000000100443000000000100041100000004001004430000000001000414000002ba0010009c000002ba01008041000000c00110021000000305011001c700008002020000390ae20add0000040f0000000100200190000006a10000613d000000000101043b000000000001004b000006a20000c13d000000000100041500000001011000690000000001000002000000000100001900000ae30001042e000000000001042f0000000103000039000000000203041a000300000002001d000000060420006a0000000407000029000000030040006c00000000010000390000000101004039000a00000001001d0000000100300190000000800300003900000009020000290000072d0000613d0000000001000415000600000001001d000000400a00043d0000006401a000390000000000310435000003060100004100000000001a04350000000401a0003900000000002104350000004401a00039000700000004001d00000000004104350000002401a000390000000000010435000000050100002900000000010104330000008403a000390000000000130435000000a406a00039000000000001004b000006cc0000613d000000000300001900000000046300190000000005730019000000000505043300000000005404350000002003300039000000000013004b000006c50000413d000000000361001900000000000304350000000004000414000000040020008c000006d90000c13d00000000050004150000000c0550008a00000005055002100000000003000031000000200030008c000000200400003900000000040340190000070d0000013d0000001f011000390000032401100197000000a401100039000002ba0010009c000002ba010080410000006001100210000002ba00a0009c000002ba0300004100000000030a40190000004003300210000000000131019f000002ba0040009c000002ba04008041000000c003400210000000000113019f00020000000a001d0ae20ad80000040f000000020a0000290000006003100270000002ba03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000006f90000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000006f50000c13d0000001f07400190000007060000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000000003001f000200000001035500000000050004150000000b0550008a00000005055002100000000100200190000007330000613d0000001f01400039000000600210018f0000000001a20019000000000021004b00000000020000390000000102004039000002c30010009c0000004b0000213d00000001002001900000004b0000c13d000000400010043f000000200030008c000007310000413d00000000010a04330000030a00100198000007310000c13d000000070400002900000001044000390000000502500270000000000201001f0000000002000415000000060220006900000000020000020000030b01100197000003060010009c0000000a030000290000000407000029000006a70000613d0000030c01000041000000000010043f000002f90100004100000ae4000104300000000101000039000000000101041a000000030010006c0000069c0000613d000000000100001900000ae400010430000000000003004b000007370000c13d00000060020000390000075e0000013d0000001f0230003900000307022001970000003f022000390000030804200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000002c30040009c0000004b0000213d00000001005001900000004b0000c13d000000400040043f0000001f0430018f00000000063204360000030905300198000800000006001d0000000003560019000007510000613d000000000601034f0000000807000029000000006806043c0000000007870436000000000037004b0000074d0000c13d000000000004004b0000075e0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000007290000613d0000000802000029000002ba0020009c000002ba020080410000004002200210000002ba0010009c000002ba010080410000006001100210000000000121019f00000ae40001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000007790000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b000007720000413d000000000312001900000000000304350000001f0220003900000324022001970000000001120019000000000001042d000003270010009c0000078f0000213d000000630010008c0000078f0000a13d00000001030003670000000401300370000000000101043b000002be0010009c0000078f0000213d0000002402300370000000000202043b000002be0020009c0000078f0000213d0000004403300370000000000303043b000000000001042d000000000100001900000ae4000104300000001f0220003900000324022001970000000001120019000000000021004b00000000020000390000000102004039000002c30010009c0000079d0000213d00000001002001900000079d0000c13d000000400010043f000000000001042d0000031901000041000000000010043f0000004101000039000000040010043f000002f20100004100000ae400010430000002be02200197000000000020043f000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000007b10000613d000000000101043b000000000001042d000000000100001900000ae4000104300007000000000002000300000002001d000500000001001d000600000003001d000000000030043f0000000501000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000008a20000613d000000000101043b000000000101041a000000000001004b000007df0000c13d0000000101000039000000000101041a000000060010006c000008a40000a13d0000000602000029000000010220008a000700000002001d000000000020043f0000000501000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000008a20000613d000000000101043b000000000101041a000000000001004b0000000702000029000007cc0000613d000002f700100198000008a40000c13d0000000502000029000002be02200197000400000001001d000002be01100197000700000002001d000000000021004b000008a80000c13d0000000601000029000000000010043f0000000701000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000008a20000613d000000000201043b000000000302041a0000000001000411000002be04100197000000070040006c000008200000613d000000000034004b000008200000613d000500000004001d000100000003001d000200000002001d0000000701000029000000000010043f0000000801000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000008a20000613d000000000101043b0000000502000029000000000020043f000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000008a20000613d000000000101043b000000000101041a000000ff0010019000000002020000290000000103000029000008b10000613d000000000003004b000008230000613d000000000002041b0000000701000029000000000010043f0000000601000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000008a20000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000301000029000002be01100197000500000001001d000000000010043f0000000601000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000008a20000613d000000000101043b000000000201041a0000000102200039000000000021041b000002ff0100004100000000001004430000000001000414000002ba0010009c000002ba01008041000000c00110021000000300011001c70000800b020000390ae20add0000040f0000000100200190000008ac0000613d000000000101043b000300000001001d0000000601000029000000000010043f0000000501000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000008a20000613d0000000302000029000000a00220021000000005022001af00000301022001c7000000000101043b000000000021041b00000004010000290000030100100198000008910000c13d00000006010000290000000101100039000300000001001d000000000010043f0000000501000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000008a20000613d000000000101043b000000000101041a000000000001004b000008910000c13d0000000101000039000000000101041a000000030010006b000008910000613d0000000301000029000000000010043f0000000501000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f0000000100200190000008a20000613d000000000101043b0000000402000029000000000021041b0000000001000414000002ba0010009c000002ba01008041000000c001100210000002bf011001c70000800d02000039000000040300003900000303040000410000000705000029000000050600002900000006070000290ae20ad80000040f0000000100200190000008a20000613d000000050000006b000008ad0000613d000000000001042d000000000100001900000ae4000104300000031c01000041000000000010043f000002f90100004100000ae4000104300000032801000041000000000010043f000002f90100004100000ae400010430000000000001042f0000032a01000041000000000010043f000002f90100004100000ae4000104300000032901000041000000000010043f000002f90100004100000ae400010430000a000000000002000100000004001d000500000002001d000600000001001d000700000003001d000000000030043f0000000501000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f000000010020019000000a340000613d000000000101043b000000000101041a000000000001004b000008e20000c13d0000000101000039000000000101041a000000070010006c00000a370000a13d0000000702000029000000010220008a000800000002001d000000000020043f0000000501000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f000000010020019000000a340000613d000000000101043b000000000101041a000000000001004b0000000802000029000008cf0000613d000002f70010019800000a370000c13d0000000602000029000002be02200197000300000001001d000002be01100197000800000002001d000000000021004b00000a3b0000c13d0000000701000029000000000010043f0000000701000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f000000010020019000000a340000613d000000000301043b000000000403041a0000000001000411000002be02100197000400000002001d000000080020006c000009230000613d000000040040006b000009230000613d000200000004001d000600000003001d0000000801000029000000000010043f0000000801000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f000000010020019000000a340000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f000000010020019000000a340000613d000000000101043b000000000101041a000000ff001001900000000603000029000000020400002900000a430000613d000000000004004b000009260000613d000000000003041b0000000801000029000000000010043f0000000601000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f000000010020019000000a340000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000501000029000002be01100197000600000001001d000000000010043f0000000601000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f000000010020019000000a340000613d000000000101043b000000000201041a0000000102200039000000000021041b000002ff0100004100000000001004430000000001000414000002ba0010009c000002ba01008041000000c00110021000000300011001c70000800b020000390ae20add0000040f000000010020019000000a360000613d000000000101043b000200000001001d0000000701000029000000000010043f0000000501000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f000000010020019000000a340000613d0000000202000029000000a0022002100000000606000029000000000262019f00000301022001c7000000000101043b000000000021041b00000003010000290000030100100198000009970000c13d00000007010000290000000101100039000200000001001d000000000010043f0000000501000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f000000010020019000000a340000613d000000000101043b000000000101041a000000000001004b0000000606000029000009970000c13d0000000101000039000000000101041a000000020010006b000009970000613d0000000201000029000000000010043f0000000501000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f000000010020019000000a340000613d000000000101043b0000000302000029000000000021041b00000006060000290000000001000414000002ba0010009c000002ba01008041000000c001100210000002bf011001c70000800d0200003900000004030000390000030304000041000000080500002900000007070000290ae20ad80000040f000000010020019000000a340000613d000000060000006b00000a3f0000613d00000304010000410000000000100443000000050100002900000004001004430000000001000414000002ba0010009c000002ba01008041000000c00110021000000305011001c700008002020000390ae20add0000040f000000010020019000000a360000613d000000000101043b000000000001004b00000a330000613d0000000008000415000000400b00043d0000006401b00039000000800700003900000000007104350000004401b00039000000070200002900000000002104350000002401b0003900000008020000290000000000210435000003060100004100000000001b04350000000401b00039000000040200002900000000002104350000008403b00039000000010100002900000000210104340000000000130435000000a403b00039000000000001004b000009d50000613d000000000400001900000000053400190000000006420019000000000606043300000000006504350000002004400039000000000014004b000009ce0000413d0000000002310019000000000002043500000000040004140000000602000029000000040020008c000009e30000c13d00000000050004150000000a0550008a00000005055002100000000003000031000000200030008c0000002004000039000000000403401900000a1b0000013d000700000008001d000500000007001d0000001f011000390000032401100197000000a401100039000002ba0010009c000002ba010080410000006001100210000002ba00b0009c000002ba0300004100000000030b40190000004003300210000000000131019f000002ba0040009c000002ba04008041000000c003400210000000000113019f00080000000b001d0ae20ad80000040f000000080b0000290000006003100270000002ba03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000a060000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000a020000c13d000000000006004b00000a130000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000005000415000000090550008a0000000505500210000000010020019000000a470000613d00000007080000290000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000002c30010009c00000a790000213d000000010020019000000a790000c13d000000400010043f000000200030008c00000a340000413d00000000010b04330000030a0010019800000a340000c13d0000000502500270000000000201001f0000000002000415000000000228004900000000020000020000030b01100197000003060010009c00000a750000c13d000000000001042d000000000100001900000ae400010430000000000001042f0000031c01000041000000000010043f000002f90100004100000ae4000104300000032801000041000000000010043f000002f90100004100000ae4000104300000032a01000041000000000010043f000002f90100004100000ae4000104300000032901000041000000000010043f000002f90100004100000ae400010430000000000003004b00000a4b0000c13d000000600200003900000a720000013d0000001f0230003900000307022001970000003f022000390000030804200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000002c30040009c00000a790000213d000000010050019000000a790000c13d000000400040043f0000001f0430018f00000000063204360000030905300198000500000006001d000000000356001900000a650000613d000000000601034f0000000507000029000000006806043c0000000007870436000000000037004b00000a610000c13d000000000004004b00000a720000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b00000a7f0000c13d0000030c01000041000000000010043f000002f90100004100000ae4000104300000031901000041000000000010043f0000004101000039000000040010043f000002f20100004100000ae4000104300000000502000029000002ba0020009c000002ba020080410000004002200210000002ba0010009c000002ba010080410000006001100210000000000121019f00000ae4000104300001000000000002000100000001001d000000000010043f0000000501000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f000000010020019000000ab50000613d000000000101043b000000000101041a000000000001004b00000ab20000c13d0000000101000039000000000101041a0000000102000029000000000021004b00000ab70000a13d000000010220008a000100000002001d000000000020043f0000000501000039000000200010043f0000000001000414000002ba0010009c000002ba01008041000000c001100210000002f6011001c700008010020000390ae20add0000040f000000010020019000000ab50000613d000000000101043b000000000101041a000000000001004b000000010200002900000a9f0000613d000002f70010019800000ab70000c13d000000000001042d000000000100001900000ae4000104300000031c01000041000000000010043f000002f90100004100000ae400010430000000000100041a000002be021001970000000001000411000000000012004b00000ac10000c13d000000000001042d000002f102000041000000000020043f000000040010043f000002f20100004100000ae400010430000000000001042f000002ba0010009c000002ba0100804100000060011002100000000002000414000002ba0020009c000002ba02008041000000c002200210000000000112019f000002bf011001c700008010020000390ae20add0000040f000000010020019000000ad60000613d000000000101043b000000000001042d000000000100001900000ae40001043000000adb002104210000000102000039000000000001042d0000000002000019000000000001042d00000ae0002104230000000102000039000000000001042d0000000002000019000000000001042d00000ae20000043200000ae30001042e00000ae40001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff446567656e2050756e6b730000000000000000000000000000000000000000004450000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000000000000000000000000000000000000000000000100000000000000000200000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff4484b5bab23cb6c6dcb7d0f87ddcd612e617dbb100a7d33dfb07aab3c9df3c03bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3ff61723a2f2f41516645664b557a36482d726647614f4a586d385f41716d644b72bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd3533726a496f6b765a616743653666452f000000000000000000000000000000bb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fe00000000000000000000000000000000000000000000000000071afd498d00000000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000006462a44900000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000d40dc86f00000000000000000000000000000000000000000000000000000000e985e9c400000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000d40dc87000000000000000000000000000000000000000000000000000000000e80a355800000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000c87b56dd000000000000000000000000000000000000000000000000000000007c726b680000000000000000000000000000000000000000000000000000000095d89b400000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a0712d68000000000000000000000000000000000000000000000000000000007c726b69000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000006462a44a0000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000025d387b40000000000000000000000000000000000000000000000000000000042842e0d000000000000000000000000000000000000000000000000000000005d893b9f000000000000000000000000000000000000000000000000000000005d893ba0000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000042842e0e0000000000000000000000000000000000000000000000000000000055f804b30000000000000000000000000000000000000000000000000000000025d387b50000000000000000000000000000000000000000000000000000000034918dfd000000000000000000000000000000000000000000000000000000003ccfd60b00000000000000000000000000000000000000000000000000000000095ea7b200000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000081812fc118cdaa70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000001e4fbdf7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000080000000000000000002000000000000000000000000000000000000400000000000000000000000000000000100000000000000000000000000000000000000000000000000000000a14c4b5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf000000000000000000000000000000000000000000000000ffffffffffffff7f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d95539132020000020000000000000000000000000000000400000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000001ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe000000000000000000000000000000000000000000000000000000000ffffffe000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000d1a57ed6000000000000000000000000000000000000000000000000000000002e07630000000000000000000000000000000000000000000000000000000000b562e8dd00000000000000000000000000000000000000000000000000000000746f6b656e206c696d6974207065722077616c6c65742072656163686564000008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000006e6f7420656e6f7567682066756e6473207375626d69747465640000000000000000000000000000000000000000000000000064000000800000000000000000737570706c79206c696d6974656400000000000000000000000000000000000053616c65206e6f742061637469766500000000000000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b8f4eb604000000000000000000000000000000000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f394e487b71000000000000000000000000000000000000000000000000000000005769746864726177616c206661696c65640000000000000000000000000000003ee5aeb500000000000000000000000000000000000000000000000000000000df2d9b4200000000000000000000000000000000000000000000000000000000cfb3b942000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925cf4700e400000000000000000000000000000000000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b01ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa11481000000000000000000000000000000000000000000000000000000000059c896be00000000000000000000000000000000000000000000000000000000ea553b3400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000081515a33e1b1443bc353dc895ab85969e15e88e6b927704138e844c6a0f3d5ff

[ 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.