ETH Price: $3,191.04 (+4.86%)
Gas: 6.91 Gwei

Token

LootGPT (LGPT)
 

Overview

Max Total Supply

100 LGPT

Holders

71

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
4 LGPT
0xbaA593844f49C01E42f3F691833905796c0d9565
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
LootGPT

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-03
*/

/**

LootGPT — A journey into the unknown awaits.
                                                                                                                                                                                                                                                                                                    
 */

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.13;

// File: erc721a/contracts/IERC721A.sol

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

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

    // =============================================================
    //                            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: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].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);

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

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

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

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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();
            }
    }

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 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)
        }
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

    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
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.15;

contract LootGPT is ERC721A, Ownable {

    string public baseURI = "";
    uint256 public maxSupply = 100;
    uint256 public maxMintPerWallet = 1;
    uint256 public maxMintPerOwner = 1;
    bool public isPublicSalesActive = false;

    mapping(address => uint) public addressToMinted;

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    constructor () ERC721A("LootGPT", "LGPT") {
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    // Mint (1 Mint Allowed Per Wallet)
    function freeMint() public callerIsUser {
        require(isPublicSalesActive, "Sale Isn't Active!");
        require(addressToMinted[msg.sender] + 1 <= maxMintPerWallet, "You Already Minted Your Free One!");
        require(totalSupply() + 1 <= maxSupply, "Sold Out!");
        
        addressToMinted[msg.sender] += 1;

        _safeMint(msg.sender, 1);
    }

    // Owner Mint (1 Mint Allowed)
    function ownerMint() public onlyOwner {
        require(addressToMinted[msg.sender] + 1 <= maxMintPerOwner, "You Already Minted Your Free One!");
        require(totalSupply() + 1 <= maxSupply, "Sold Out!");
        
        addressToMinted[msg.sender] += 1;

        _safeMint(msg.sender, 1);
    }

    /////////////////////////////
    // CONTRACT MANAGEMENT 
    /////////////////////////////

    function togglePublicSales() external onlyOwner {
        isPublicSalesActive = !isPublicSalesActive;
    }

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

    function withdraw() public onlyOwner {
		payable(msg.sender).transfer(address(this).balance);
	}
    
    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    } 
}

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":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","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":[],"name":"isPublicSalesActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"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"}]

60a0604052600060809081526009906200001a9082620001af565b506064600a556001600b819055600c55600d805460ff191690553480156200004157600080fd5b5060405180604001604052806007815260200166131bdbdd11d41560ca1b815250604051806040016040528060048152602001631311d41560e21b8152508160029081620000909190620001af565b5060036200009f8282620001af565b5050600160005550620000b233620000b8565b6200027b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200013557607f821691505b6020821081036200015657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001aa57600081815260208120601f850160051c81016020861015620001855750805b601f850160051c820191505b81811015620001a65782815560010162000191565b5050505b505050565b81516001600160401b03811115620001cb57620001cb6200010a565b620001e381620001dc845462000120565b846200015c565b602080601f8311600181146200021b5760008415620002025750858301515b600019600386901b1c1916600185901b178555620001a6565b600085815260208120601f198616915b828110156200024c578886015182559484019460019091019084016200022b565b50858210156200026b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6116b2806200028b6000396000f3fe6080604052600436106101b75760003560e01c8063715018a6116100ec578063b228d9251161008a578063c87b56dd11610064578063c87b56dd14610464578063d5abeb0114610484578063e985e9c51461049a578063f2fde38b146104e357600080fd5b8063b228d92514610421578063b88d4fde14610437578063beab8b851461044a57600080fd5b806395d89b41116100c657806395d89b41146103aa5780639ec00c95146103bf578063a22cb465146103ec578063b12dc9911461040c57600080fd5b8063715018a6146103625780638d19c2aa146103775780638da5cb5b1461038c57600080fd5b806342842e0e116101595780636352211e116101335780636352211e146102f75780636c0360eb1461031757806370a082311461032c5780637106e5511461034c57600080fd5b806342842e0e146102af57806355f804b3146102c25780635b70ea9f146102e257600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026057806323b872dd146102875780633ccfd60b1461029a57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d736600461118f565b610503565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610555565b6040516101e89190611204565b34801561021f57600080fd5b5061023361022e366004611217565b6105e7565b6040516001600160a01b0390911681526020016101e8565b61025e61025936600461124c565b61062b565b005b34801561026c57600080fd5b5060015460005403600019015b6040519081526020016101e8565b61025e610295366004611276565b6106cb565b3480156102a657600080fd5b5061025e610864565b61025e6102bd366004611276565b61089b565b3480156102ce57600080fd5b5061025e6102dd36600461133e565b6108bb565b3480156102ee57600080fd5b5061025e6108d3565b34801561030357600080fd5b50610233610312366004611217565b610a6a565b34801561032357600080fd5b50610206610a75565b34801561033857600080fd5b50610279610347366004611387565b610b03565b34801561035857600080fd5b50610279600c5481565b34801561036e57600080fd5b5061025e610b52565b34801561038357600080fd5b5061025e610b64565b34801561039857600080fd5b506008546001600160a01b0316610233565b3480156103b657600080fd5b50610206610b80565b3480156103cb57600080fd5b506102796103da366004611387565b600e6020526000908152604090205481565b3480156103f857600080fd5b5061025e6104073660046113a2565b610b8f565b34801561041857600080fd5b5061025e610bfb565b34801561042d57600080fd5b50610279600b5481565b61025e6104453660046113de565b610c21565b34801561045657600080fd5b50600d546101dc9060ff1681565b34801561047057600080fd5b5061020661047f366004611217565b610c6b565b34801561049057600080fd5b50610279600a5481565b3480156104a657600080fd5b506101dc6104b536600461145a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104ef57600080fd5b5061025e6104fe366004611387565b610cef565b60006301ffc9a760e01b6001600160e01b03198316148061053457506380ac58cd60e01b6001600160e01b03198316145b8061054f5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105649061148d565b80601f01602080910402602001604051908101604052809291908181526020018280546105909061148d565b80156105dd5780601f106105b2576101008083540402835291602001916105dd565b820191906000526020600020905b8154815290600101906020018083116105c057829003601f168201915b5050505050905090565b60006105f282610d65565b61060f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061063682610a6a565b9050336001600160a01b0382161461066f5761065281336104b5565b61066f576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006106d682610d9a565b9050836001600160a01b0316816001600160a01b0316146107095760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176107565761073986336104b5565b61075657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661077d57604051633a954ecd60e21b815260040160405180910390fd5b801561078857600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b8416900361081a576001840160008181526004602052604081205490036108185760005481146108185760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b61086c610e09565b60405133904780156108fc02916000818181858888f19350505050158015610898573d6000803e3d6000fd5b50565b6108b683838360405180602001604052806000815250610c21565b505050565b6108c3610e09565b60096108cf828261150d565b5050565b3233146109275760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b600d5460ff1661096e5760405162461bcd60e51b815260206004820152601260248201527153616c652049736e2774204163746976652160701b604482015260640161091e565b600b54336000908152600e602052604090205461098c9060016115cd565b11156109e45760405162461bcd60e51b815260206004820152602160248201527f596f7520416c7265616479204d696e74656420596f75722046726565204f6e656044820152602160f81b606482015260840161091e565b600a5460015460005403600019016109fd9060016115cd565b1115610a375760405162461bcd60e51b8152602060048201526009602482015268536f6c64204f75742160b81b604482015260640161091e565b336000908152600e60205260408120805460019290610a579084906115cd565b90915550610a689050336001610e63565b565b600061054f82610d9a565b60098054610a829061148d565b80601f0160208091040260200160405190810160405280929190818152602001828054610aae9061148d565b8015610afb5780601f10610ad057610100808354040283529160200191610afb565b820191906000526020600020905b815481529060010190602001808311610ade57829003601f168201915b505050505081565b60006001600160a01b038216610b2c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b5a610e09565b610a686000610e7d565b610b6c610e09565b600d805460ff19811660ff90911615179055565b6060600380546105649061148d565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c03610e09565b600c54336000908152600e602052604090205461098c9060016115cd565b610c2c8484846106cb565b6001600160a01b0383163b15610c6557610c4884848484610ecf565b610c65576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c7682610d65565b610c9357604051630a14c4b560e41b815260040160405180910390fd5b6000610c9d610fbb565b90508051600003610cbd5760405180602001604052806000815250610ce8565b80610cc784610fca565b604051602001610cd89291906115f3565b6040516020818303038152906040525b9392505050565b610cf7610e09565b6001600160a01b038116610d5c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161091e565b61089881610e7d565b600081600111158015610d79575060005482105b801561054f575050600090815260046020526040902054600160e01b161590565b60008180600111610df057600054811015610df05760008181526004602052604081205490600160e01b82169003610dee575b80600003610ce8575060001901600081815260046020526040902054610dcd565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610a685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161091e565b6108cf82826040518060200160405280600081525061100e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610f04903390899088908890600401611622565b6020604051808303816000875af1925050508015610f3f575060408051601f3d908101601f19168201909252610f3c9181019061165f565b60015b610f9d573d808015610f6d576040519150601f19603f3d011682016040523d82523d6000602084013e610f72565b606091505b508051600003610f95576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546105649061148d565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480610fe45750819003601f19909101908152919050565b611018838361107b565b6001600160a01b0383163b156108b6576000548281035b6110426000868380600101945086610ecf565b61105f576040516368d2bf6b60e11b815260040160405180910390fd5b81811061102f57816000541461107457600080fd5b5050505050565b60008054908290036110a05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461114f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611117565b508160000361117057604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461089857600080fd5b6000602082840312156111a157600080fd5b8135610ce881611179565b60005b838110156111c75781810151838201526020016111af565b83811115610c655750506000910152565b600081518084526111f08160208601602086016111ac565b601f01601f19169290920160200192915050565b602081526000610ce860208301846111d8565b60006020828403121561122957600080fd5b5035919050565b80356001600160a01b038116811461124757600080fd5b919050565b6000806040838503121561125f57600080fd5b61126883611230565b946020939093013593505050565b60008060006060848603121561128b57600080fd5b61129484611230565b92506112a260208501611230565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156112e3576112e36112b2565b604051601f8501601f19908116603f0116810190828211818310171561130b5761130b6112b2565b8160405280935085815286868601111561132457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561135057600080fd5b813567ffffffffffffffff81111561136757600080fd5b8201601f8101841361137857600080fd5b610fb3848235602084016112c8565b60006020828403121561139957600080fd5b610ce882611230565b600080604083850312156113b557600080fd5b6113be83611230565b9150602083013580151581146113d357600080fd5b809150509250929050565b600080600080608085870312156113f457600080fd5b6113fd85611230565b935061140b60208601611230565b925060408501359150606085013567ffffffffffffffff81111561142e57600080fd5b8501601f8101871361143f57600080fd5b61144e878235602084016112c8565b91505092959194509250565b6000806040838503121561146d57600080fd5b61147683611230565b915061148460208401611230565b90509250929050565b600181811c908216806114a157607f821691505b6020821081036114c157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156108b657600081815260208120601f850160051c810160208610156114ee5750805b601f850160051c820191505b8181101561085c578281556001016114fa565b815167ffffffffffffffff811115611527576115276112b2565b61153b81611535845461148d565b846114c7565b602080601f83116001811461157057600084156115585750858301515b600019600386901b1c1916600185901b17855561085c565b600085815260208120601f198616915b8281101561159f57888601518255948401946001909101908401611580565b50858210156115bd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082198211156115ee57634e487b7160e01b600052601160045260246000fd5b500190565b600083516116058184602088016111ac565b8351908301906116198183602088016111ac565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611655908301846111d8565b9695505050505050565b60006020828403121561167157600080fd5b8151610ce88161117956fea2646970667358221220a17c37ae06a0161d84d3af243c30246736ed001051eb53848dead38b78135e5864736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c8063715018a6116100ec578063b228d9251161008a578063c87b56dd11610064578063c87b56dd14610464578063d5abeb0114610484578063e985e9c51461049a578063f2fde38b146104e357600080fd5b8063b228d92514610421578063b88d4fde14610437578063beab8b851461044a57600080fd5b806395d89b41116100c657806395d89b41146103aa5780639ec00c95146103bf578063a22cb465146103ec578063b12dc9911461040c57600080fd5b8063715018a6146103625780638d19c2aa146103775780638da5cb5b1461038c57600080fd5b806342842e0e116101595780636352211e116101335780636352211e146102f75780636c0360eb1461031757806370a082311461032c5780637106e5511461034c57600080fd5b806342842e0e146102af57806355f804b3146102c25780635b70ea9f146102e257600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026057806323b872dd146102875780633ccfd60b1461029a57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d736600461118f565b610503565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610555565b6040516101e89190611204565b34801561021f57600080fd5b5061023361022e366004611217565b6105e7565b6040516001600160a01b0390911681526020016101e8565b61025e61025936600461124c565b61062b565b005b34801561026c57600080fd5b5060015460005403600019015b6040519081526020016101e8565b61025e610295366004611276565b6106cb565b3480156102a657600080fd5b5061025e610864565b61025e6102bd366004611276565b61089b565b3480156102ce57600080fd5b5061025e6102dd36600461133e565b6108bb565b3480156102ee57600080fd5b5061025e6108d3565b34801561030357600080fd5b50610233610312366004611217565b610a6a565b34801561032357600080fd5b50610206610a75565b34801561033857600080fd5b50610279610347366004611387565b610b03565b34801561035857600080fd5b50610279600c5481565b34801561036e57600080fd5b5061025e610b52565b34801561038357600080fd5b5061025e610b64565b34801561039857600080fd5b506008546001600160a01b0316610233565b3480156103b657600080fd5b50610206610b80565b3480156103cb57600080fd5b506102796103da366004611387565b600e6020526000908152604090205481565b3480156103f857600080fd5b5061025e6104073660046113a2565b610b8f565b34801561041857600080fd5b5061025e610bfb565b34801561042d57600080fd5b50610279600b5481565b61025e6104453660046113de565b610c21565b34801561045657600080fd5b50600d546101dc9060ff1681565b34801561047057600080fd5b5061020661047f366004611217565b610c6b565b34801561049057600080fd5b50610279600a5481565b3480156104a657600080fd5b506101dc6104b536600461145a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104ef57600080fd5b5061025e6104fe366004611387565b610cef565b60006301ffc9a760e01b6001600160e01b03198316148061053457506380ac58cd60e01b6001600160e01b03198316145b8061054f5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105649061148d565b80601f01602080910402602001604051908101604052809291908181526020018280546105909061148d565b80156105dd5780601f106105b2576101008083540402835291602001916105dd565b820191906000526020600020905b8154815290600101906020018083116105c057829003601f168201915b5050505050905090565b60006105f282610d65565b61060f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061063682610a6a565b9050336001600160a01b0382161461066f5761065281336104b5565b61066f576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006106d682610d9a565b9050836001600160a01b0316816001600160a01b0316146107095760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176107565761073986336104b5565b61075657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661077d57604051633a954ecd60e21b815260040160405180910390fd5b801561078857600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b8416900361081a576001840160008181526004602052604081205490036108185760005481146108185760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b61086c610e09565b60405133904780156108fc02916000818181858888f19350505050158015610898573d6000803e3d6000fd5b50565b6108b683838360405180602001604052806000815250610c21565b505050565b6108c3610e09565b60096108cf828261150d565b5050565b3233146109275760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b600d5460ff1661096e5760405162461bcd60e51b815260206004820152601260248201527153616c652049736e2774204163746976652160701b604482015260640161091e565b600b54336000908152600e602052604090205461098c9060016115cd565b11156109e45760405162461bcd60e51b815260206004820152602160248201527f596f7520416c7265616479204d696e74656420596f75722046726565204f6e656044820152602160f81b606482015260840161091e565b600a5460015460005403600019016109fd9060016115cd565b1115610a375760405162461bcd60e51b8152602060048201526009602482015268536f6c64204f75742160b81b604482015260640161091e565b336000908152600e60205260408120805460019290610a579084906115cd565b90915550610a689050336001610e63565b565b600061054f82610d9a565b60098054610a829061148d565b80601f0160208091040260200160405190810160405280929190818152602001828054610aae9061148d565b8015610afb5780601f10610ad057610100808354040283529160200191610afb565b820191906000526020600020905b815481529060010190602001808311610ade57829003601f168201915b505050505081565b60006001600160a01b038216610b2c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b5a610e09565b610a686000610e7d565b610b6c610e09565b600d805460ff19811660ff90911615179055565b6060600380546105649061148d565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c03610e09565b600c54336000908152600e602052604090205461098c9060016115cd565b610c2c8484846106cb565b6001600160a01b0383163b15610c6557610c4884848484610ecf565b610c65576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c7682610d65565b610c9357604051630a14c4b560e41b815260040160405180910390fd5b6000610c9d610fbb565b90508051600003610cbd5760405180602001604052806000815250610ce8565b80610cc784610fca565b604051602001610cd89291906115f3565b6040516020818303038152906040525b9392505050565b610cf7610e09565b6001600160a01b038116610d5c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161091e565b61089881610e7d565b600081600111158015610d79575060005482105b801561054f575050600090815260046020526040902054600160e01b161590565b60008180600111610df057600054811015610df05760008181526004602052604081205490600160e01b82169003610dee575b80600003610ce8575060001901600081815260046020526040902054610dcd565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610a685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161091e565b6108cf82826040518060200160405280600081525061100e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610f04903390899088908890600401611622565b6020604051808303816000875af1925050508015610f3f575060408051601f3d908101601f19168201909252610f3c9181019061165f565b60015b610f9d573d808015610f6d576040519150601f19603f3d011682016040523d82523d6000602084013e610f72565b606091505b508051600003610f95576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546105649061148d565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480610fe45750819003601f19909101908152919050565b611018838361107b565b6001600160a01b0383163b156108b6576000548281035b6110426000868380600101945086610ecf565b61105f576040516368d2bf6b60e11b815260040160405180910390fd5b81811061102f57816000541461107457600080fd5b5050505050565b60008054908290036110a05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461114f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611117565b508160000361117057604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461089857600080fd5b6000602082840312156111a157600080fd5b8135610ce881611179565b60005b838110156111c75781810151838201526020016111af565b83811115610c655750506000910152565b600081518084526111f08160208601602086016111ac565b601f01601f19169290920160200192915050565b602081526000610ce860208301846111d8565b60006020828403121561122957600080fd5b5035919050565b80356001600160a01b038116811461124757600080fd5b919050565b6000806040838503121561125f57600080fd5b61126883611230565b946020939093013593505050565b60008060006060848603121561128b57600080fd5b61129484611230565b92506112a260208501611230565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156112e3576112e36112b2565b604051601f8501601f19908116603f0116810190828211818310171561130b5761130b6112b2565b8160405280935085815286868601111561132457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561135057600080fd5b813567ffffffffffffffff81111561136757600080fd5b8201601f8101841361137857600080fd5b610fb3848235602084016112c8565b60006020828403121561139957600080fd5b610ce882611230565b600080604083850312156113b557600080fd5b6113be83611230565b9150602083013580151581146113d357600080fd5b809150509250929050565b600080600080608085870312156113f457600080fd5b6113fd85611230565b935061140b60208601611230565b925060408501359150606085013567ffffffffffffffff81111561142e57600080fd5b8501601f8101871361143f57600080fd5b61144e878235602084016112c8565b91505092959194509250565b6000806040838503121561146d57600080fd5b61147683611230565b915061148460208401611230565b90509250929050565b600181811c908216806114a157607f821691505b6020821081036114c157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156108b657600081815260208120601f850160051c810160208610156114ee5750805b601f850160051c820191505b8181101561085c578281556001016114fa565b815167ffffffffffffffff811115611527576115276112b2565b61153b81611535845461148d565b846114c7565b602080601f83116001811461157057600084156115585750858301515b600019600386901b1c1916600185901b17855561085c565b600085815260208120601f198616915b8281101561159f57888601518255948401946001909101908401611580565b50858210156115bd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082198211156115ee57634e487b7160e01b600052601160045260246000fd5b500190565b600083516116058184602088016111ac565b8351908301906116198183602088016111ac565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611655908301846111d8565b9695505050505050565b60006020828403121561167157600080fd5b8151610ce88161117956fea2646970667358221220a17c37ae06a0161d84d3af243c30246736ed001051eb53848dead38b78135e5864736f6c634300080f0033

Deployed Bytecode Sourcemap

58392:1916:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18794:639;;;;;;;;;;-1:-1:-1;18794:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;18794:639:0;;;;;;;;19696:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26187:218::-;;;;;;;;;;-1:-1:-1;26187:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;26187:218:0;1528:203:1;25620:408:0;;;;;;:::i;:::-;;:::i;:::-;;15447:323;;;;;;;;;;-1:-1:-1;58974:1:0;15721:12;15508:7;15705:13;:28;-1:-1:-1;;15705:46:0;15447:323;;;2319:25:1;;;2307:2;2292:18;15447:323:0;2173:177:1;29826:2825:0;;;;;;:::i;:::-;;:::i;60094:98::-;;;;;;;;;;;;;:::i;32747:193::-;;;;;;:::i;:::-;;:::i;60204:100::-;;;;;;;;;;-1:-1:-1;60204:100:0;;;;;:::i;:::-;;:::i;59032:370::-;;;;;;;;;;;;;:::i;21089:152::-;;;;;;;;;;-1:-1:-1;21089:152:0;;;;;:::i;:::-;;:::i;58438:26::-;;;;;;;;;;;;;:::i;16631:233::-;;;;;;;;;;-1:-1:-1;16631:233:0;;;;;:::i;:::-;;:::i;58550:34::-;;;;;;;;;;;;;;;;57547:103;;;;;;;;;;;;;:::i;59861:109::-;;;;;;;;;;;;;:::i;56899:87::-;;;;;;;;;;-1:-1:-1;56972:6:0;;-1:-1:-1;;;;;56972:6:0;56899:87;;19872:104;;;;;;;;;;;;;:::i;58639:47::-;;;;;;;;;;-1:-1:-1;58639:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;26745:234;;;;;;;;;;-1:-1:-1;26745:234:0;;;;;:::i;:::-;;:::i;59446:306::-;;;;;;;;;;;;;:::i;58508:35::-;;;;;;;;;;;;;;;;33538:407;;;;;;:::i;:::-;;:::i;58591:39::-;;;;;;;;;;-1:-1:-1;58591:39:0;;;;;;;;20082:318;;;;;;;;;;-1:-1:-1;20082:318:0;;;;;:::i;:::-;;:::i;58471:30::-;;;;;;;;;;;;;;;;27136:164;;;;;;;;;;-1:-1:-1;27136:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27257:25:0;;;27233:4;27257:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27136:164;57805:201;;;;;;;;;;-1:-1:-1;57805:201:0;;;;;:::i;:::-;;:::i;18794:639::-;18879:4;-1:-1:-1;;;;;;;;;19203:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;19280:25:0;;;19203:102;:179;;;-1:-1:-1;;;;;;;;;;19357:25:0;;;19203:179;19183:199;18794:639;-1:-1:-1;;18794:639:0:o;19696:100::-;19750:13;19783:5;19776:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19696:100;:::o;26187:218::-;26263:7;26288:16;26296:7;26288;:16::i;:::-;26283:64;;26313:34;;-1:-1:-1;;;26313:34:0;;;;;;;;;;;26283:64;-1:-1:-1;26367:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;26367:30:0;;26187:218::o;25620:408::-;25709:13;25725:16;25733:7;25725;:16::i;:::-;25709:32;-1:-1:-1;49953:10:0;-1:-1:-1;;;;;25758:28:0;;;25754:175;;25806:44;25823:5;49953:10;27136:164;:::i;25806:44::-;25801:128;;25878:35;;-1:-1:-1;;;25878:35:0;;;;;;;;;;;25801:128;25941:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;25941:35:0;-1:-1:-1;;;;;25941:35:0;;;;;;;;;25992:28;;25941:24;;25992:28;;;;;;;25698:330;25620:408;;:::o;29826:2825::-;29968:27;29998;30017:7;29998:18;:27::i;:::-;29968:57;;30083:4;-1:-1:-1;;;;;30042:45:0;30058:19;-1:-1:-1;;;;;30042:45:0;;30038:86;;30096:28;;-1:-1:-1;;;30096:28:0;;;;;;;;;;;30038:86;30138:27;28934:24;;;:15;:24;;;;;29162:26;;49953:10;28559:30;;;-1:-1:-1;;;;;28252:28:0;;28537:20;;;28534:56;30324:180;;30417:43;30434:4;49953:10;27136:164;:::i;30417:43::-;30412:92;;30469:35;;-1:-1:-1;;;30469:35:0;;;;;;;;;;;30412:92;-1:-1:-1;;;;;30521:16:0;;30517:52;;30546:23;;-1:-1:-1;;;30546:23:0;;;;;;;;;;;30517:52;30718:15;30715:160;;;30858:1;30837:19;30830:30;30715:160;-1:-1:-1;;;;;31255:24:0;;;;;;;:18;:24;;;;;;31253:26;;-1:-1:-1;;31253:26:0;;;31324:22;;;;;;;;;31322:24;;-1:-1:-1;31322:24:0;;;24478:11;24453:23;24449:41;24436:63;-1:-1:-1;;;24436:63:0;31617:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;31912:47:0;;:52;;31908:627;;32017:1;32007:11;;31985:19;32140:30;;;:17;:30;;;;;;:35;;32136:384;;32278:13;;32263:11;:28;32259:242;;32425:30;;;;:17;:30;;;;;:52;;;32259:242;31966:569;31908:627;32582:7;32578:2;-1:-1:-1;;;;;32563:27:0;32572:4;-1:-1:-1;;;;;32563:27:0;;;;;;;;;;;32601:42;29957:2694;;;29826:2825;;;:::o;60094:98::-;56785:13;:11;:13::i;:::-;60136:51:::1;::::0;60144:10:::1;::::0;60165:21:::1;60136:51:::0;::::1;;;::::0;::::1;::::0;;;60165:21;60144:10;60136:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;60094:98::o:0;32747:193::-;32893:39;32910:4;32916:2;32920:7;32893:39;;;;;;;;;;;;:16;:39::i;:::-;32747:193;;;:::o;60204:100::-;56785:13;:11;:13::i;:::-;60278:7:::1;:18;60288:8:::0;60278:7;:18:::1;:::i;:::-;;60204:100:::0;:::o;59032:370::-;58738:9;58751:10;58738:23;58730:66;;;;-1:-1:-1;;;58730:66:0;;8184:2:1;58730:66:0;;;8166:21:1;8223:2;8203:18;;;8196:30;8262:32;8242:18;;;8235:60;8312:18;;58730:66:0;;;;;;;;;59091:19:::1;::::0;::::1;;59083:50;;;::::0;-1:-1:-1;;;59083:50:0;;8543:2:1;59083:50:0::1;::::0;::::1;8525:21:1::0;8582:2;8562:18;;;8555:30;-1:-1:-1;;;8601:18:1;;;8594:48;8659:18;;59083:50:0::1;8341:342:1::0;59083:50:0::1;59187:16;::::0;59168:10:::1;59152:27;::::0;;;:15:::1;:27;::::0;;;;;:31:::1;::::0;59182:1:::1;59152:31;:::i;:::-;:51;;59144:97;;;::::0;-1:-1:-1;;;59144:97:0;;9120:2:1;59144:97:0::1;::::0;::::1;9102:21:1::0;9159:2;9139:18;;;9132:30;9198:34;9178:18;;;9171:62;-1:-1:-1;;;9249:18:1;;;9242:31;9290:19;;59144:97:0::1;8918:397:1::0;59144:97:0::1;59281:9;::::0;58974:1;15721:12;15508:7;15705:13;:28;-1:-1:-1;;15705:46:0;59260:17:::1;::::0;59276:1:::1;59260:17;:::i;:::-;:30;;59252:52;;;::::0;-1:-1:-1;;;59252:52:0;;9522:2:1;59252:52:0::1;::::0;::::1;9504:21:1::0;9561:1;9541:18;;;9534:29;-1:-1:-1;;;9579:18:1;;;9572:39;9628:18;;59252:52:0::1;9320:332:1::0;59252:52:0::1;59341:10;59325:27;::::0;;;:15:::1;:27;::::0;;;;:32;;59356:1:::1;::::0;59325:27;:32:::1;::::0;59356:1;;59325:32:::1;:::i;:::-;::::0;;;-1:-1:-1;59370:24:0::1;::::0;-1:-1:-1;59380:10:0::1;59392:1;59370:9;:24::i;:::-;59032:370::o:0;21089:152::-;21161:7;21204:27;21223:7;21204:18;:27::i;58438:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16631:233::-;16703:7;-1:-1:-1;;;;;16727:19:0;;16723:60;;16755:28;;-1:-1:-1;;;16755:28:0;;;;;;;;;;;16723:60;-1:-1:-1;;;;;;16801:25:0;;;;;:18;:25;;;;;;10790:13;16801:55;;16631:233::o;57547:103::-;56785:13;:11;:13::i;:::-;57612:30:::1;57639:1;57612:18;:30::i;59861:109::-:0;56785:13;:11;:13::i;:::-;59943:19:::1;::::0;;-1:-1:-1;;59920:42:0;::::1;59943:19;::::0;;::::1;59942:20;59920:42;::::0;;59861:109::o;19872:104::-;19928:13;19961:7;19954:14;;;;;:::i;26745:234::-;49953:10;26840:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26840:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26840:60:0;;;;;;;;;;26916:55;;540:41:1;;;26840:49:0;;49953:10;26916:55;;513:18:1;26916:55:0;;;;;;;26745:234;;:::o;59446:306::-;56785:13;:11;:13::i;:::-;59538:15:::1;::::0;59519:10:::1;59503:27;::::0;;;:15:::1;:27;::::0;;;;;:31:::1;::::0;59533:1:::1;59503:31;:::i;33538:407::-:0;33713:31;33726:4;33732:2;33736:7;33713:12;:31::i;:::-;-1:-1:-1;;;;;33759:14:0;;;:19;33755:183;;33798:56;33829:4;33835:2;33839:7;33848:5;33798:30;:56::i;:::-;33793:145;;33882:40;;-1:-1:-1;;;33882:40:0;;;;;;;;;;;33793:145;33538:407;;;;:::o;20082:318::-;20155:13;20186:16;20194:7;20186;:16::i;:::-;20181:59;;20211:29;;-1:-1:-1;;;20211:29:0;;;;;;;;;;;20181:59;20253:21;20277:10;:8;:10::i;:::-;20253:34;;20311:7;20305:21;20330:1;20305:26;:87;;;;;;;;;;;;;;;;;20358:7;20367:18;20377:7;20367:9;:18::i;:::-;20341:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20305:87;20298:94;20082:318;-1:-1:-1;;;20082:318:0:o;57805:201::-;56785:13;:11;:13::i;:::-;-1:-1:-1;;;;;57894:22:0;::::1;57886:73;;;::::0;-1:-1:-1;;;57886:73:0;;10334:2:1;57886:73:0::1;::::0;::::1;10316:21:1::0;10373:2;10353:18;;;10346:30;10412:34;10392:18;;;10385:62;-1:-1:-1;;;10463:18:1;;;10456:36;10509:19;;57886:73:0::1;10132:402:1::0;57886:73:0::1;57970:28;57989:8;57970:18;:28::i;27558:282::-:0;27623:4;27679:7;58974:1;27660:26;;:66;;;;;27713:13;;27703:7;:23;27660:66;:153;;;;-1:-1:-1;;27764:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27764:44:0;:49;;27558:282::o;22244:1275::-;22311:7;22346;;58974:1;22395:23;22391:1061;;22448:13;;22441:4;:20;22437:1015;;;22486:14;22503:23;;;:17;:23;;;;;;;-1:-1:-1;;;22592:24:0;;:29;;22588:845;;23257:113;23264:6;23274:1;23264:11;23257:113;;-1:-1:-1;;;23335:6:0;23317:25;;;;:17;:25;;;;;;23257:113;;22588:845;22463:989;22437:1015;23480:31;;-1:-1:-1;;;23480:31:0;;;;;;;;;;;57064:132;56972:6;;-1:-1:-1;;;;;56972:6:0;49953:10;57128:23;57120:68;;;;-1:-1:-1;;;57120:68:0;;10741:2:1;57120:68:0;;;10723:21:1;;;10760:18;;;10753:30;10819:34;10799:18;;;10792:62;10871:18;;57120:68:0;10539:356:1;43698:112:0;43775:27;43785:2;43789:8;43775:27;;;;;;;;;;;;:9;:27::i;58166:191::-;58259:6;;;-1:-1:-1;;;;;58276:17:0;;;-1:-1:-1;;;;;;58276:17:0;;;;;;;58309:40;;58259:6;;;58276:17;58259:6;;58309:40;;58240:16;;58309:40;58229:128;58166:191;:::o;36029:716::-;36213:88;;-1:-1:-1;;;36213:88:0;;36192:4;;-1:-1:-1;;;;;36213:45:0;;;;;:88;;49953:10;;36280:4;;36286:7;;36295:5;;36213:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36213:88:0;;;;;;;;-1:-1:-1;;36213:88:0;;;;;;;;;;;;:::i;:::-;;;36209:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36496:6;:13;36513:1;36496:18;36492:235;;36542:40;;-1:-1:-1;;;36542:40:0;;;;;;;;;;;36492:235;36685:6;36679:13;36670:6;36666:2;36662:15;36655:38;36209:529;-1:-1:-1;;;;;;36372:64:0;-1:-1:-1;;;36372:64:0;;-1:-1:-1;36209:529:0;36029:716;;;;;;:::o;59978:108::-;60038:13;60071:7;60064:14;;;;;:::i;50073:1745::-;50138:17;50572:4;50565;50559:11;50555:22;50664:1;50658:4;50651:15;50739:4;50736:1;50732:12;50725:19;;;50821:1;50816:3;50809:14;50925:3;51164:5;51146:428;51212:1;51207:3;51203:11;51196:18;;51383:2;51377:4;51373:13;51369:2;51365:22;51360:3;51352:36;51477:2;51467:13;;51534:25;51146:428;51534:25;-1:-1:-1;51604:13:0;;;-1:-1:-1;;51719:14:0;;;51781:19;;;51719:14;50073:1745;-1:-1:-1;50073:1745:0:o;42925:689::-;43056:19;43062:2;43066:8;43056:5;:19::i;:::-;-1:-1:-1;;;;;43117:14:0;;;:19;43113:483;;43157:11;43171:13;43219:14;;;43252:233;43283:62;43322:1;43326:2;43330:7;;;;;;43339:5;43283:30;:62::i;:::-;43278:167;;43381:40;;-1:-1:-1;;;43381:40:0;;;;;;;;;;;43278:167;43480:3;43472:5;:11;43252:233;;43567:3;43550:13;;:20;43546:34;;43572:8;;;43546:34;43138:458;;42925:689;;;:::o;37207:2966::-;37280:20;37303:13;;;37331;;;37327:44;;37353:18;;-1:-1:-1;;;37353:18:0;;;;;;;;;;;37327:44;-1:-1:-1;;;;;37859:22:0;;;;;;:18;:22;;;;10928:2;37859:22;;;:71;;37897:32;37885:45;;37859:71;;;38173:31;;;:17;:31;;;;;-1:-1:-1;24909:15:0;;24883:24;24879:46;24478:11;24453:23;24449:41;24446:52;24436:63;;38173:173;;38408:23;;;;38173:31;;37859:22;;39173:25;37859:22;;39026:335;39687:1;39673:12;39669:20;39627:346;39728:3;39719:7;39716:16;39627:346;;39946:7;39936:8;39933:1;39906:25;39903:1;39900;39895:59;39781:1;39768:15;39627:346;;;39631:77;40006:8;40018:1;40006:13;40002:45;;40028:19;;-1:-1:-1;;;40028:19:0;;;;;;;;;;;40002:45;40064:13;:19;-1:-1:-1;32747:193:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;5904:545::-;6006:2;6001:3;5998:11;5995:448;;;6042:1;6067:5;6063:2;6056:17;6112:4;6108:2;6098:19;6182:2;6170:10;6166:19;6163:1;6159:27;6153:4;6149:38;6218:4;6206:10;6203:20;6200:47;;;-1:-1:-1;6241:4:1;6200:47;6296:2;6291:3;6287:12;6284:1;6280:20;6274:4;6270:31;6260:41;;6351:82;6369:2;6362:5;6359:13;6351:82;;;6414:17;;;6395:1;6384:13;6351:82;;6625:1352;6751:3;6745:10;6778:18;6770:6;6767:30;6764:56;;;6800:18;;:::i;:::-;6829:97;6919:6;6879:38;6911:4;6905:11;6879:38;:::i;:::-;6873:4;6829:97;:::i;:::-;6981:4;;7045:2;7034:14;;7062:1;7057:663;;;;7764:1;7781:6;7778:89;;;-1:-1:-1;7833:19:1;;;7827:26;7778:89;-1:-1:-1;;6582:1:1;6578:11;;;6574:24;6570:29;6560:40;6606:1;6602:11;;;6557:57;7880:81;;7027:944;;7057:663;5851:1;5844:14;;;5888:4;5875:18;;-1:-1:-1;;7093:20:1;;;7211:236;7225:7;7222:1;7219:14;7211:236;;;7314:19;;;7308:26;7293:42;;7406:27;;;;7374:1;7362:14;;;;7241:19;;7211:236;;;7215:3;7475:6;7466:7;7463:19;7460:201;;;7536:19;;;7530:26;-1:-1:-1;;7619:1:1;7615:14;;;7631:3;7611:24;7607:37;7603:42;7588:58;7573:74;;7460:201;-1:-1:-1;;;;;7707:1:1;7691:14;;;7687:22;7674:36;;-1:-1:-1;6625:1352:1:o;8688:225::-;8728:3;8759:1;8755:6;8752:1;8749:13;8746:136;;;8804:10;8799:3;8795:20;8792:1;8785:31;8839:4;8836:1;8829:15;8867:4;8864:1;8857:15;8746:136;-1:-1:-1;8898:9:1;;8688:225::o;9657:470::-;9836:3;9874:6;9868:13;9890:53;9936:6;9931:3;9924:4;9916:6;9912:17;9890:53;:::i;:::-;10006:13;;9965:16;;;;10028:57;10006:13;9965:16;10062:4;10050:17;;10028:57;:::i;:::-;10101:20;;9657:470;-1:-1:-1;;;;9657:470:1:o;10900:489::-;-1:-1:-1;;;;;11169:15:1;;;11151:34;;11221:15;;11216:2;11201:18;;11194:43;11268:2;11253:18;;11246:34;;;11316:3;11311:2;11296:18;;11289:31;;;11094:4;;11337:46;;11363:19;;11355:6;11337:46;:::i;:::-;11329:54;10900:489;-1:-1:-1;;;;;;10900:489:1:o;11394:249::-;11463:6;11516:2;11504:9;11495:7;11491:23;11487:32;11484:52;;;11532:1;11529;11522:12;11484:52;11564:9;11558:16;11583:30;11607:5;11583:30;:::i

Swarm Source

ipfs://a17c37ae06a0161d84d3af243c30246736ed001051eb53848dead38b78135e58
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.