ETH Price: $2,420.04 (+3.25%)

Token

MASKBAYC (MB-NFT)
 

Overview

Max Total Supply

266 MB-NFT

Holders

140

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MB-NFT
0x48e4cf667a70652fa974078f95d00b0b3cf016d5
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:
MASKBAYC

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-26
*/

// SPDX-License-Identifier: MIT
// Devcode: 21.91.92.30.38

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                            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: tests/MASKBAYC.sol


// ERC721A Contracts v4.2.3
// Devcode: 21.91.92.30.38

pragma solidity ^0.8.4;




contract MASKBAYC is ERC721A, Ownable{

    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 6665;
    uint256 public constant freeMint = 2; 
    bool public _isSaleActive = false; 
    bool public _revealed = false;     
    uint256 public mintPrice = 0.001 ether; 
    uint256 public maxBalance = 1000; 
    uint256 public maxMint = 10; 
    string baseURI;
    string public notRevealedUri;
    string public baseExtension = ".json";

    mapping(uint256 => string) private _tokenURIs;

    constructor(string memory initBaseURI, string memory initNotRevealedUri) 
        ERC721A("MASKBAYC", "MB-NFT") 
    {
        setBaseURI(initBaseURI);
        setNotRevealedURI(initNotRevealedUri);
    }

    function getNum() public view returns (uint) {
       return totalSupply();
    }

    function mintPublic(uint256 tokenQuantity) public payable {
        require(
            totalSupply() + tokenQuantity <= MAX_SUPPLY,
            "Sale would exceed max supply"
        );
        require(_isSaleActive, "Sale must be active to mint NFT");

        require(tokenQuantity <= maxMint, "Mint too many tokens at a time");

        uint256 m = balanceOf(msg.sender)  + tokenQuantity;

        require(m <= maxBalance, "Sale would exceed max balance");

        uint256 t = 0;
        if (m > freeMint) {
            if (balanceOf(msg.sender) >= freeMint) {
                t = tokenQuantity;
            } else {
                t = m - freeMint;
            }
        }

        require(t * mintPrice <= msg.value, "Not enough ether");
        _safeMint(msg.sender, tokenQuantity);
        // _mint(msg.sender, tokenQuantity);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "URI query for nonexistent token"
        );

        if (_revealed == false) {
            return notRevealedUri;
        }

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        if (bytes(base).length == 0) {
            return _tokenURI;
        }

        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return
            string(abi.encodePacked(base, tokenId.toString(), baseExtension));
    }

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

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function flipSaleActive() public onlyOwner {
        _isSaleActive = !_isSaleActive;
    }

    function flipReveal() public onlyOwner {
        _revealed = !_revealed;
    }

    function setMintPrice(uint256 _mintPrice) public onlyOwner {
        mintPrice = _mintPrice;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function setMaxBalance(uint256 _maxBalance) public onlyOwner {
        maxBalance = _maxBalance;
    }

    function setMaxMint(uint256 _maxMint) public onlyOwner {
        maxMint = _maxMint;
    }

    function withdraw(address to) public onlyOwner {
        uint256 balance = address(this).balance;
        payable(to).transfer(balance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"},{"internalType":"string","name":"initNotRevealedUri","type":"string"}],"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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBalance","type":"uint256"}],"name":"setMaxBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6008805461ffff60a01b1916905566038d7ea4c680006009556103e8600a908155600b5560c06040526005608081905264173539b7b760d91b60a09081526200004c91600e919062000206565b503480156200005a57600080fd5b50604051620020af380380620020af8339810160408190526200007d9162000363565b60408051808201825260088152674d41534b4241594360c01b60208083019182528351808501909452600684526513508b53919560d21b908401528151919291620000cb9160029162000206565b508051620000e190600390602084019062000206565b50506000805550620000f33362000111565b620000fe8262000163565b620001098162000186565b505062000420565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200016d620001a5565b80516200018290600c90602084019062000206565b5050565b62000190620001a5565b80516200018290600d90602084019062000206565b6008546001600160a01b03163314620002045760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b8280546200021490620003cd565b90600052602060002090601f01602090048101928262000238576000855562000283565b82601f106200025357805160ff191683800117855562000283565b8280016001018555821562000283579182015b828111156200028357825182559160200191906001019062000266565b506200029192915062000295565b5090565b5b8082111562000291576000815560010162000296565b600082601f830112620002be57600080fd5b81516001600160401b0380821115620002db57620002db6200040a565b604051601f8301601f19908116603f011681019082821181831017156200030657620003066200040a565b816040528381526020925086838588010111156200032357600080fd5b600091505b8382101562000347578582018301518183018401529082019062000328565b83821115620003595760008385830101525b9695505050505050565b600080604083850312156200037757600080fd5b82516001600160401b03808211156200038f57600080fd5b6200039d86838701620002ac565b93506020850151915080821115620003b457600080fd5b50620003c385828601620002ac565b9150509250929050565b600181811c90821680620003e257607f821691505b602082108114156200040457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611c7f80620004306000396000f3fe60806040526004361061021a5760003560e01c80637080d6fc11610123578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c51461059f578063efd0cbf9146105e8578063f2c4ce1e146105fb578063f2fde38b1461061b578063f4a0a5281461063b57600080fd5b8063b88d4fde14610522578063c668286214610535578063c87b56dd1461054a578063da3ef23f1461056a578063de8b51e11461058a57600080fd5b80637501f741116100f25780637501f741146104995780638da5cb5b146104af57806395d89b41146104cd5780639d51d9b7146104e2578063a22cb4651461050257600080fd5b80637080d6fc1461042d57806370a082311461044e578063715018a61461046e57806373ad468a1461048357600080fd5b806342842e0e116101a65780635b70ea9f116101755780635b70ea9f146103ac5780636352211e146103c157806367e0badb146103e15780636817c76c146103f65780636ebeac851461040c57600080fd5b806342842e0e1461033957806351cff8d91461034c578063547520fe1461036c57806355f804b31461038c57600080fd5b8063095ea7b3116101ed578063095ea7b3146102c357806318160ddd146102d857806323b872dd146102fb57806332cb6b0c1461030e5780633b84d9c61461032457600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063081c8c44146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a3660046118d9565b61065b565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106ad565b60405161024b9190611ad0565b34801561028257600080fd5b5061029661029136600461195c565b61073f565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b50610269610783565b6102d66102d13660046118af565b610811565b005b3480156102e457600080fd5b50600154600054035b60405190815260200161024b565b6102d66103093660046117bb565b6108be565b34801561031a57600080fd5b506102ed611a0981565b34801561033057600080fd5b506102d6610a4f565b6102d66103473660046117bb565b610a78565b34801561035857600080fd5b506102d661036736600461176d565b610a98565b34801561037857600080fd5b506102d661038736600461195c565b610ad8565b34801561039857600080fd5b506102d66103a7366004611913565b610ae5565b3480156103b857600080fd5b506102ed600281565b3480156103cd57600080fd5b506102966103dc36600461195c565b610b04565b3480156103ed57600080fd5b506102ed610b0f565b34801561040257600080fd5b506102ed60095481565b34801561041857600080fd5b5060085461023f90600160a81b900460ff1681565b34801561043957600080fd5b5060085461023f90600160a01b900460ff1681565b34801561045a57600080fd5b506102ed61046936600461176d565b610b23565b34801561047a57600080fd5b506102d6610b72565b34801561048f57600080fd5b506102ed600a5481565b3480156104a557600080fd5b506102ed600b5481565b3480156104bb57600080fd5b506008546001600160a01b0316610296565b3480156104d957600080fd5b50610269610b86565b3480156104ee57600080fd5b506102d66104fd36600461195c565b610b95565b34801561050e57600080fd5b506102d661051d366004611873565b610ba2565b6102d66105303660046117f7565b610c0e565b34801561054157600080fd5b50610269610c58565b34801561055657600080fd5b5061026961056536600461195c565b610c65565b34801561057657600080fd5b506102d6610585366004611913565b610e6a565b34801561059657600080fd5b506102d6610e85565b3480156105ab57600080fd5b5061023f6105ba366004611788565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102d66105f636600461195c565b610eae565b34801561060757600080fd5b506102d6610616366004611913565b6110c3565b34801561062757600080fd5b506102d661063636600461176d565b6110de565b34801561064757600080fd5b506102d661065636600461195c565b611157565b60006301ffc9a760e01b6001600160e01b03198316148061068c57506380ac58cd60e01b6001600160e01b03198316145b806106a75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106bc90611b71565b80601f01602080910402602001604051908101604052809291908181526020018280546106e890611b71565b80156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b600061074a82611164565b610767576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600d805461079090611b71565b80601f01602080910402602001604051908101604052809291908181526020018280546107bc90611b71565b80156108095780601f106107de57610100808354040283529160200191610809565b820191906000526020600020905b8154815290600101906020018083116107ec57829003601f168201915b505050505081565b600061081c82610b04565b9050336001600160a01b038216146108555761083881336105ba565b610855576040516367d9dca160e11b815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006108c98261118b565b9050836001600160a01b0316816001600160a01b0316146108fc5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176109495761092c86336105ba565b61094957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661097057604051633a954ecd60e21b815260040160405180910390fd5b801561097b57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610a065760018401600081815260046020526040902054610a04576000548114610a045760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610a576111f3565b6008805460ff60a81b198116600160a81b9182900460ff1615909102179055565b610a9383838360405180602001604052806000815250610c0e565b505050565b610aa06111f3565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610a93573d6000803e3d6000fd5b610ae06111f3565b600b55565b610aed6111f3565b8051610b0090600c906020840190611642565b5050565b60006106a78261118b565b6000610b1e6001546000540390565b905090565b60006001600160a01b038216610b4c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b7a6111f3565b610b84600061124d565b565b6060600380546106bc90611b71565b610b9d6111f3565b600a55565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c198484846108be565b6001600160a01b0383163b15610c5257610c35848484846112ac565b610c52576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600e805461079090611b71565b6060610c7082611164565b610cc15760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064015b60405180910390fd5b600854600160a81b900460ff16610d6457600d8054610cdf90611b71565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0b90611b71565b8015610d585780601f10610d2d57610100808354040283529160200191610d58565b820191906000526020600020905b815481529060010190602001808311610d3b57829003601f168201915b50505050509050919050565b6000828152600f602052604081208054610d7d90611b71565b80601f0160208091040260200160405190810160405280929190818152602001828054610da990611b71565b8015610df65780601f10610dcb57610100808354040283529160200191610df6565b820191906000526020600020905b815481529060010190602001808311610dd957829003601f168201915b505050505090506000610e076113a4565b9050805160001415610e1a575092915050565b815115610e4c578082604051602001610e349291906119a1565b60405160208183030381529060405292505050919050565b80610e56856113b3565b600e604051602001610e34939291906119d0565b610e726111f3565b8051610b0090600e906020840190611642565b610e8d6111f3565b6008805460ff60a01b198116600160a01b9182900460ff1615909102179055565b611a0981610ebf6001546000540390565b610ec99190611ae3565b1115610f175760405162461bcd60e51b815260206004820152601c60248201527f53616c6520776f756c6420657863656564206d617820737570706c79000000006044820152606401610cb8565b600854600160a01b900460ff16610f705760405162461bcd60e51b815260206004820152601f60248201527f53616c65206d7573742062652061637469766520746f206d696e74204e4654006044820152606401610cb8565b600b54811115610fc25760405162461bcd60e51b815260206004820152601e60248201527f4d696e7420746f6f206d616e7920746f6b656e7320617420612074696d6500006044820152606401610cb8565b600081610fce33610b23565b610fd89190611ae3565b9050600a5481111561102c5760405162461bcd60e51b815260206004820152601d60248201527f53616c6520776f756c6420657863656564206d61782062616c616e63650000006044820152606401610cb8565b6000600282111561105c57600261104233610b23565b1061104e57508161105c565b611059600283611b2e565b90505b346009548261106b9190611b0f565b11156110b95760405162461bcd60e51b815260206004820152601060248201527f4e6f7420656e6f756768206574686572000000000000000000000000000000006044820152606401610cb8565b610a9333846114c9565b6110cb6111f3565b8051610b0090600d906020840190611642565b6110e66111f3565b6001600160a01b03811661114b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cb8565b6111548161124d565b50565b61115f6111f3565b600955565b60008054821080156106a7575050600090815260046020526040902054600160e01b161590565b6000816000548110156111da57600081815260046020526040902054600160e01b81166111d8575b806111d15750600019016000818152600460205260409020546111b3565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610b845760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb8565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112e1903390899088908890600401611a94565b602060405180830381600087803b1580156112fb57600080fd5b505af192505050801561132b575060408051601f3d908101601f19168201909252611328918101906118f6565b60015b611386573d808015611359576040519150601f19603f3d011682016040523d82523d6000602084013e61135e565b606091505b50805161137e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c80546106bc90611b71565b6060816113d75750506040805180820190915260018152600360fc1b602082015290565b8160005b811561140157806113eb81611bac565b91506113fa9050600a83611afb565b91506113db565b60008167ffffffffffffffff81111561141c5761141c611c1d565b6040519080825280601f01601f191660200182016040528015611446576020820181803683370190505b5090505b841561139c5761145b600183611b2e565b9150611468600a86611bc7565b611473906030611ae3565b60f81b81838151811061148857611488611c07565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506114c2600a86611afb565b945061144a565b610b008282604051806020016040528060008152506114e8838361154b565b6001600160a01b0383163b15610a93576000548281035b61151260008683806001019450866112ac565b61152f576040516368d2bf6b60e11b815260040160405180910390fd5b8181106114ff57816000541461154457600080fd5b5050505050565b6000548161156c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461161b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016115e3565b508161163957604051622e076360e81b815260040160405180910390fd5b60005550505050565b82805461164e90611b71565b90600052602060002090601f01602090048101928261167057600085556116b6565b82601f1061168957805160ff19168380011785556116b6565b828001600101855582156116b6579182015b828111156116b657825182559160200191906001019061169b565b506116c29291506116c6565b5090565b5b808211156116c257600081556001016116c7565b600067ffffffffffffffff808411156116f6576116f6611c1d565b604051601f8501601f19908116603f0116810190828211818310171561171e5761171e611c1d565b8160405280935085815286868601111561173757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461176857600080fd5b919050565b60006020828403121561177f57600080fd5b6111d182611751565b6000806040838503121561179b57600080fd5b6117a483611751565b91506117b260208401611751565b90509250929050565b6000806000606084860312156117d057600080fd5b6117d984611751565b92506117e760208501611751565b9150604084013590509250925092565b6000806000806080858703121561180d57600080fd5b61181685611751565b935061182460208601611751565b925060408501359150606085013567ffffffffffffffff81111561184757600080fd5b8501601f8101871361185857600080fd5b611867878235602084016116db565b91505092959194509250565b6000806040838503121561188657600080fd5b61188f83611751565b9150602083013580151581146118a457600080fd5b809150509250929050565b600080604083850312156118c257600080fd5b6118cb83611751565b946020939093013593505050565b6000602082840312156118eb57600080fd5b81356111d181611c33565b60006020828403121561190857600080fd5b81516111d181611c33565b60006020828403121561192557600080fd5b813567ffffffffffffffff81111561193c57600080fd5b8201601f8101841361194d57600080fd5b61139c848235602084016116db565b60006020828403121561196e57600080fd5b5035919050565b6000815180845261198d816020860160208601611b45565b601f01601f19169290920160200192915050565b600083516119b3818460208801611b45565b8351908301906119c7818360208801611b45565b01949350505050565b6000845160206119e38285838a01611b45565b8551918401916119f68184848a01611b45565b8554920191600090600181811c9080831680611a1357607f831692505b858310811415611a3157634e487b7160e01b85526022600452602485fd5b808015611a455760018114611a5657611a83565b60ff19851688528388019550611a83565b60008b81526020902060005b85811015611a7b5781548a820152908401908801611a62565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611ac66080830184611975565b9695505050505050565b6020815260006111d16020830184611975565b60008219821115611af657611af6611bdb565b500190565b600082611b0a57611b0a611bf1565b500490565b6000816000190483118215151615611b2957611b29611bdb565b500290565b600082821015611b4057611b40611bdb565b500390565b60005b83811015611b60578181015183820152602001611b48565b83811115610c525750506000910152565b600181811c90821680611b8557607f821691505b60208210811415611ba657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611bc057611bc0611bdb565b5060010190565b600082611bd657611bd6611bf1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461115457600080fdfea26469706673582212207bbfe5dfa0b292a2b9c61edebfe4378e63ca00363a0db4ac26617a2399391ebe64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80637080d6fc11610123578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c51461059f578063efd0cbf9146105e8578063f2c4ce1e146105fb578063f2fde38b1461061b578063f4a0a5281461063b57600080fd5b8063b88d4fde14610522578063c668286214610535578063c87b56dd1461054a578063da3ef23f1461056a578063de8b51e11461058a57600080fd5b80637501f741116100f25780637501f741146104995780638da5cb5b146104af57806395d89b41146104cd5780639d51d9b7146104e2578063a22cb4651461050257600080fd5b80637080d6fc1461042d57806370a082311461044e578063715018a61461046e57806373ad468a1461048357600080fd5b806342842e0e116101a65780635b70ea9f116101755780635b70ea9f146103ac5780636352211e146103c157806367e0badb146103e15780636817c76c146103f65780636ebeac851461040c57600080fd5b806342842e0e1461033957806351cff8d91461034c578063547520fe1461036c57806355f804b31461038c57600080fd5b8063095ea7b3116101ed578063095ea7b3146102c357806318160ddd146102d857806323b872dd146102fb57806332cb6b0c1461030e5780633b84d9c61461032457600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063081c8c44146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a3660046118d9565b61065b565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106ad565b60405161024b9190611ad0565b34801561028257600080fd5b5061029661029136600461195c565b61073f565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b50610269610783565b6102d66102d13660046118af565b610811565b005b3480156102e457600080fd5b50600154600054035b60405190815260200161024b565b6102d66103093660046117bb565b6108be565b34801561031a57600080fd5b506102ed611a0981565b34801561033057600080fd5b506102d6610a4f565b6102d66103473660046117bb565b610a78565b34801561035857600080fd5b506102d661036736600461176d565b610a98565b34801561037857600080fd5b506102d661038736600461195c565b610ad8565b34801561039857600080fd5b506102d66103a7366004611913565b610ae5565b3480156103b857600080fd5b506102ed600281565b3480156103cd57600080fd5b506102966103dc36600461195c565b610b04565b3480156103ed57600080fd5b506102ed610b0f565b34801561040257600080fd5b506102ed60095481565b34801561041857600080fd5b5060085461023f90600160a81b900460ff1681565b34801561043957600080fd5b5060085461023f90600160a01b900460ff1681565b34801561045a57600080fd5b506102ed61046936600461176d565b610b23565b34801561047a57600080fd5b506102d6610b72565b34801561048f57600080fd5b506102ed600a5481565b3480156104a557600080fd5b506102ed600b5481565b3480156104bb57600080fd5b506008546001600160a01b0316610296565b3480156104d957600080fd5b50610269610b86565b3480156104ee57600080fd5b506102d66104fd36600461195c565b610b95565b34801561050e57600080fd5b506102d661051d366004611873565b610ba2565b6102d66105303660046117f7565b610c0e565b34801561054157600080fd5b50610269610c58565b34801561055657600080fd5b5061026961056536600461195c565b610c65565b34801561057657600080fd5b506102d6610585366004611913565b610e6a565b34801561059657600080fd5b506102d6610e85565b3480156105ab57600080fd5b5061023f6105ba366004611788565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102d66105f636600461195c565b610eae565b34801561060757600080fd5b506102d6610616366004611913565b6110c3565b34801561062757600080fd5b506102d661063636600461176d565b6110de565b34801561064757600080fd5b506102d661065636600461195c565b611157565b60006301ffc9a760e01b6001600160e01b03198316148061068c57506380ac58cd60e01b6001600160e01b03198316145b806106a75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106bc90611b71565b80601f01602080910402602001604051908101604052809291908181526020018280546106e890611b71565b80156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b600061074a82611164565b610767576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600d805461079090611b71565b80601f01602080910402602001604051908101604052809291908181526020018280546107bc90611b71565b80156108095780601f106107de57610100808354040283529160200191610809565b820191906000526020600020905b8154815290600101906020018083116107ec57829003601f168201915b505050505081565b600061081c82610b04565b9050336001600160a01b038216146108555761083881336105ba565b610855576040516367d9dca160e11b815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006108c98261118b565b9050836001600160a01b0316816001600160a01b0316146108fc5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176109495761092c86336105ba565b61094957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661097057604051633a954ecd60e21b815260040160405180910390fd5b801561097b57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610a065760018401600081815260046020526040902054610a04576000548114610a045760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610a576111f3565b6008805460ff60a81b198116600160a81b9182900460ff1615909102179055565b610a9383838360405180602001604052806000815250610c0e565b505050565b610aa06111f3565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610a93573d6000803e3d6000fd5b610ae06111f3565b600b55565b610aed6111f3565b8051610b0090600c906020840190611642565b5050565b60006106a78261118b565b6000610b1e6001546000540390565b905090565b60006001600160a01b038216610b4c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b7a6111f3565b610b84600061124d565b565b6060600380546106bc90611b71565b610b9d6111f3565b600a55565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c198484846108be565b6001600160a01b0383163b15610c5257610c35848484846112ac565b610c52576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600e805461079090611b71565b6060610c7082611164565b610cc15760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064015b60405180910390fd5b600854600160a81b900460ff16610d6457600d8054610cdf90611b71565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0b90611b71565b8015610d585780601f10610d2d57610100808354040283529160200191610d58565b820191906000526020600020905b815481529060010190602001808311610d3b57829003601f168201915b50505050509050919050565b6000828152600f602052604081208054610d7d90611b71565b80601f0160208091040260200160405190810160405280929190818152602001828054610da990611b71565b8015610df65780601f10610dcb57610100808354040283529160200191610df6565b820191906000526020600020905b815481529060010190602001808311610dd957829003601f168201915b505050505090506000610e076113a4565b9050805160001415610e1a575092915050565b815115610e4c578082604051602001610e349291906119a1565b60405160208183030381529060405292505050919050565b80610e56856113b3565b600e604051602001610e34939291906119d0565b610e726111f3565b8051610b0090600e906020840190611642565b610e8d6111f3565b6008805460ff60a01b198116600160a01b9182900460ff1615909102179055565b611a0981610ebf6001546000540390565b610ec99190611ae3565b1115610f175760405162461bcd60e51b815260206004820152601c60248201527f53616c6520776f756c6420657863656564206d617820737570706c79000000006044820152606401610cb8565b600854600160a01b900460ff16610f705760405162461bcd60e51b815260206004820152601f60248201527f53616c65206d7573742062652061637469766520746f206d696e74204e4654006044820152606401610cb8565b600b54811115610fc25760405162461bcd60e51b815260206004820152601e60248201527f4d696e7420746f6f206d616e7920746f6b656e7320617420612074696d6500006044820152606401610cb8565b600081610fce33610b23565b610fd89190611ae3565b9050600a5481111561102c5760405162461bcd60e51b815260206004820152601d60248201527f53616c6520776f756c6420657863656564206d61782062616c616e63650000006044820152606401610cb8565b6000600282111561105c57600261104233610b23565b1061104e57508161105c565b611059600283611b2e565b90505b346009548261106b9190611b0f565b11156110b95760405162461bcd60e51b815260206004820152601060248201527f4e6f7420656e6f756768206574686572000000000000000000000000000000006044820152606401610cb8565b610a9333846114c9565b6110cb6111f3565b8051610b0090600d906020840190611642565b6110e66111f3565b6001600160a01b03811661114b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cb8565b6111548161124d565b50565b61115f6111f3565b600955565b60008054821080156106a7575050600090815260046020526040902054600160e01b161590565b6000816000548110156111da57600081815260046020526040902054600160e01b81166111d8575b806111d15750600019016000818152600460205260409020546111b3565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610b845760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb8565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112e1903390899088908890600401611a94565b602060405180830381600087803b1580156112fb57600080fd5b505af192505050801561132b575060408051601f3d908101601f19168201909252611328918101906118f6565b60015b611386573d808015611359576040519150601f19603f3d011682016040523d82523d6000602084013e61135e565b606091505b50805161137e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c80546106bc90611b71565b6060816113d75750506040805180820190915260018152600360fc1b602082015290565b8160005b811561140157806113eb81611bac565b91506113fa9050600a83611afb565b91506113db565b60008167ffffffffffffffff81111561141c5761141c611c1d565b6040519080825280601f01601f191660200182016040528015611446576020820181803683370190505b5090505b841561139c5761145b600183611b2e565b9150611468600a86611bc7565b611473906030611ae3565b60f81b81838151811061148857611488611c07565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506114c2600a86611afb565b945061144a565b610b008282604051806020016040528060008152506114e8838361154b565b6001600160a01b0383163b15610a93576000548281035b61151260008683806001019450866112ac565b61152f576040516368d2bf6b60e11b815260040160405180910390fd5b8181106114ff57816000541461154457600080fd5b5050505050565b6000548161156c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461161b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016115e3565b508161163957604051622e076360e81b815260040160405180910390fd5b60005550505050565b82805461164e90611b71565b90600052602060002090601f01602090048101928261167057600085556116b6565b82601f1061168957805160ff19168380011785556116b6565b828001600101855582156116b6579182015b828111156116b657825182559160200191906001019061169b565b506116c29291506116c6565b5090565b5b808211156116c257600081556001016116c7565b600067ffffffffffffffff808411156116f6576116f6611c1d565b604051601f8501601f19908116603f0116810190828211818310171561171e5761171e611c1d565b8160405280935085815286868601111561173757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461176857600080fd5b919050565b60006020828403121561177f57600080fd5b6111d182611751565b6000806040838503121561179b57600080fd5b6117a483611751565b91506117b260208401611751565b90509250929050565b6000806000606084860312156117d057600080fd5b6117d984611751565b92506117e760208501611751565b9150604084013590509250925092565b6000806000806080858703121561180d57600080fd5b61181685611751565b935061182460208601611751565b925060408501359150606085013567ffffffffffffffff81111561184757600080fd5b8501601f8101871361185857600080fd5b611867878235602084016116db565b91505092959194509250565b6000806040838503121561188657600080fd5b61188f83611751565b9150602083013580151581146118a457600080fd5b809150509250929050565b600080604083850312156118c257600080fd5b6118cb83611751565b946020939093013593505050565b6000602082840312156118eb57600080fd5b81356111d181611c33565b60006020828403121561190857600080fd5b81516111d181611c33565b60006020828403121561192557600080fd5b813567ffffffffffffffff81111561193c57600080fd5b8201601f8101841361194d57600080fd5b61139c848235602084016116db565b60006020828403121561196e57600080fd5b5035919050565b6000815180845261198d816020860160208601611b45565b601f01601f19169290920160200192915050565b600083516119b3818460208801611b45565b8351908301906119c7818360208801611b45565b01949350505050565b6000845160206119e38285838a01611b45565b8551918401916119f68184848a01611b45565b8554920191600090600181811c9080831680611a1357607f831692505b858310811415611a3157634e487b7160e01b85526022600452602485fd5b808015611a455760018114611a5657611a83565b60ff19851688528388019550611a83565b60008b81526020902060005b85811015611a7b5781548a820152908401908801611a62565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611ac66080830184611975565b9695505050505050565b6020815260006111d16020830184611975565b60008219821115611af657611af6611bdb565b500190565b600082611b0a57611b0a611bf1565b500490565b6000816000190483118215151615611b2957611b29611bdb565b500290565b600082821015611b4057611b40611bdb565b500390565b60005b83811015611b60578181015183820152602001611b48565b83811115610c525750506000910152565b600181811c90821680611b8557607f821691505b60208210811415611ba657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611bc057611bc0611bdb565b5060010190565b600082611bd657611bd6611bf1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461115457600080fdfea26469706673582212207bbfe5dfa0b292a2b9c61edebfe4378e63ca00363a0db4ac26617a2399391ebe64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string):
Arg [1] : initNotRevealedUri (string):

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

57713:3642:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24557:639;;;;;;;;;;-1:-1:-1;24557:639:0;;;;;:::i;:::-;;:::i;:::-;;;7247:14:1;;7240:22;7222:41;;7210:2;7195:18;24557:639:0;;;;;;;;25459:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31950:218::-;;;;;;;;;;-1:-1:-1;31950:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6499:55:1;;;6481:74;;6469:2;6454:18;31950:218:0;6335:226:1;58109:28:0;;;;;;;;;;;;;:::i;31383:408::-;;;;;;:::i;:::-;;:::i;:::-;;21210:323;;;;;;;;;;-1:-1:-1;21484:12:0;;21271:7;21468:13;:28;21210:323;;;10551:25:1;;;10539:2;10524:18;21210:323:0;10405:177:1;35589:2825:0;;;;;;:::i;:::-;;:::i;57793:41::-;;;;;;;;;;;;57830:4;57793:41;;60504:80;;;;;;;;;;;;;:::i;38510:193::-;;;;;;:::i;:::-;;:::i;61205:145::-;;;;;;;;;;-1:-1:-1;61205:145:0;;;;;:::i;:::-;;:::i;61105:92::-;;;;;;;;;;-1:-1:-1;61105:92:0;;;;;:::i;:::-;;:::i;60292:104::-;;;;;;;;;;-1:-1:-1;60292:104:0;;;;;:::i;:::-;;:::i;57841:36::-;;;;;;;;;;;;57876:1;57841:36;;26852:152;;;;;;;;;;-1:-1:-1;26852:152:0;;;;;:::i;:::-;;:::i;58461:83::-;;;;;;;;;;;;;:::i;57967:38::-;;;;;;;;;;;;;;;;57926:29;;;;;;;;;;-1:-1:-1;57926:29:0;;;;-1:-1:-1;;;57926:29:0;;;;;;57885:33;;;;;;;;;;-1:-1:-1;57885:33:0;;;;-1:-1:-1;;;57885:33:0;;;;;;22394:233;;;;;;;;;;-1:-1:-1;22394:233:0;;;;;:::i;:::-;;:::i;5336:103::-;;;;;;;;;;;;;:::i;58013:32::-;;;;;;;;;;;;;;;;58053:27;;;;;;;;;;;;;;;;4688:87;;;;;;;;;;-1:-1:-1;4761:6:0;;-1:-1:-1;;;;;4761:6:0;4688:87;;25635:104;;;;;;;;;;;;;:::i;60993:::-;;;;;;;;;;-1:-1:-1;60993:104:0;;;;;:::i;:::-;;:::i;32508:234::-;;;;;;;;;;-1:-1:-1;32508:234:0;;;;;:::i;:::-;;:::i;39301:407::-;;;;;;:::i;:::-;;:::i;58144:37::-;;;;;;;;;;;;;:::i;59428:740::-;;;;;;;;;;-1:-1:-1;59428:740:0;;;;;:::i;:::-;;:::i;60834:151::-;;;;;;;;;;-1:-1:-1;60834:151:0;;;;;:::i;:::-;;:::i;60404:92::-;;;;;;;;;;;;;:::i;32899:164::-;;;;;;;;;;-1:-1:-1;32899:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33020:25:0;;;32996:4;33020:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32899:164;58552:868;;;;;;:::i;:::-;;:::i;60700:126::-;;;;;;;;;;-1:-1:-1;60700:126:0;;;;;:::i;:::-;;:::i;5594:201::-;;;;;;;;;;-1:-1:-1;5594:201:0;;;;;:::i;:::-;;:::i;60592:100::-;;;;;;;;;;-1:-1:-1;60592:100:0;;;;;:::i;:::-;;:::i;24557:639::-;24642:4;-1:-1:-1;;;;;;;;;24966:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;25043:25:0;;;24966:102;:179;;;-1:-1:-1;;;;;;;;;;25120:25:0;;;24966:179;24946:199;24557:639;-1:-1:-1;;24557:639:0:o;25459:100::-;25513:13;25546:5;25539:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25459:100;:::o;31950:218::-;32026:7;32051:16;32059:7;32051;:16::i;:::-;32046:64;;32076:34;;-1:-1:-1;;;32076:34:0;;;;;;;;;;;32046:64;-1:-1:-1;32130:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;32130:30:0;;31950:218::o;58109:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31383:408::-;31472:13;31488:16;31496:7;31488;:16::i;:::-;31472:32;-1:-1:-1;55716:10:0;-1:-1:-1;;;;;31521:28:0;;;31517:175;;31569:44;31586:5;55716:10;32899:164;:::i;31569:44::-;31564:128;;31641:35;;-1:-1:-1;;;31641:35:0;;;;;;;;;;;31564:128;31704:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;31704:35:0;-1:-1:-1;;;;;31704:35:0;;;;;;;;;31755:28;;31704:24;;31755:28;;;;;;;31461:330;31383:408;;:::o;35589:2825::-;35731:27;35761;35780:7;35761:18;:27::i;:::-;35731:57;;35846:4;-1:-1:-1;;;;;35805:45:0;35821:19;-1:-1:-1;;;;;35805:45:0;;35801:86;;35859:28;;-1:-1:-1;;;35859:28:0;;;;;;;;;;;35801:86;35901:27;34697:24;;;:15;:24;;;;;34925:26;;55716:10;34322:30;;;-1:-1:-1;;;;;34015:28:0;;34300:20;;;34297:56;36087:180;;36180:43;36197:4;55716:10;32899:164;:::i;36180:43::-;36175:92;;36232:35;;-1:-1:-1;;;36232:35:0;;;;;;;;;;;36175:92;-1:-1:-1;;;;;36284:16:0;;36280:52;;36309:23;;-1:-1:-1;;;36309:23:0;;;;;;;;;;;36280:52;36481:15;36478:160;;;36621:1;36600:19;36593:30;36478:160;-1:-1:-1;;;;;37018:24:0;;;;;;;:18;:24;;;;;;37016:26;;-1:-1:-1;;37016:26:0;;;37087:22;;;;;;;;;37085:24;;-1:-1:-1;37085:24:0;;;30241:11;30216:23;30212:41;30199:63;-1:-1:-1;;;30199:63:0;37380:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;37675:47:0;;37671:627;;37780:1;37770:11;;37748:19;37903:30;;;:17;:30;;;;;;37899:384;;38041:13;;38026:11;:28;38022:242;;38188:30;;;;:17;:30;;;;;:52;;;38022:242;37729:569;37671:627;38345:7;38341:2;-1:-1:-1;;;;;38326:27:0;38335:4;-1:-1:-1;;;;;38326:27:0;;;;;;;;;;;35720:2694;;;35589:2825;;;:::o;60504:80::-;4574:13;:11;:13::i;:::-;60567:9:::1;::::0;;-1:-1:-1;;;;60554:22:0;::::1;-1:-1:-1::0;;;60567:9:0;;;::::1;;;60566:10;60554:22:::0;;::::1;;::::0;;60504:80::o;38510:193::-;38656:39;38673:4;38679:2;38683:7;38656:39;;;;;;;;;;;;:16;:39::i;:::-;38510:193;;;:::o;61205:145::-;4574:13;:11;:13::i;:::-;61313:29:::1;::::0;61281:21:::1;::::0;-1:-1:-1;;;;;61313:20:0;::::1;::::0;:29;::::1;;;::::0;61281:21;;61263:15:::1;61313:29:::0;61263:15;61313:29;61281:21;61313:20;:29;::::1;;;;;;;;;;;;;::::0;::::1;;;;61105:92:::0;4574:13;:11;:13::i;:::-;61171:7:::1;:18:::0;61105:92::o;60292:104::-;4574:13;:11;:13::i;:::-;60367:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;60292:104:::0;:::o;26852:152::-;26924:7;26967:27;26986:7;26967:18;:27::i;58461:83::-;58500:4;58523:13;21484:12;;21271:7;21468:13;:28;;21210:323;58523:13;58516:20;;58461:83;:::o;22394:233::-;22466:7;-1:-1:-1;;;;;22490:19:0;;22486:60;;22518:28;;-1:-1:-1;;;22518:28:0;;;;;;;;;;;22486:60;-1:-1:-1;;;;;;22564:25:0;;;;;:18;:25;;;;;;16553:13;22564:55;;22394:233::o;5336:103::-;4574:13;:11;:13::i;:::-;5401:30:::1;5428:1;5401:18;:30::i;:::-;5336:103::o:0;25635:104::-;25691:13;25724:7;25717:14;;;;;:::i;60993:104::-;4574:13;:11;:13::i;:::-;61065:10:::1;:24:::0;60993:104::o;32508:234::-;55716:10;32603:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;32603:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;32603:60:0;;;;;;;;;;32679:55;;7222:41:1;;;32603:49:0;;55716:10;32679:55;;7195:18:1;32679:55:0;;;;;;;32508:234;;:::o;39301:407::-;39476:31;39489:4;39495:2;39499:7;39476:12;:31::i;:::-;-1:-1:-1;;;;;39522:14:0;;;:19;39518:183;;39561:56;39592:4;39598:2;39602:7;39611:5;39561:30;:56::i;:::-;39556:145;;39645:40;;-1:-1:-1;;;39645:40:0;;;;;;;;;;;39556:145;39301:407;;;;:::o;58144:37::-;;;;;;;:::i;59428:740::-;59546:13;59599:16;59607:7;59599;:16::i;:::-;59577:97;;;;-1:-1:-1;;;59577:97:0;;8405:2:1;59577:97:0;;;8387:21:1;8444:2;8424:18;;;8417:30;8483:33;8463:18;;;8456:61;8534:18;;59577:97:0;;;;;;;;;59691:9;;-1:-1:-1;;;59691:9:0;;;;59687:72;;59733:14;59726:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59428:740;;;:::o;59687:72::-;59771:23;59797:19;;;:10;:19;;;;;59771:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59827:18;59848:10;:8;:10::i;:::-;59827:31;;59881:4;59875:18;59897:1;59875:23;59871:72;;;-1:-1:-1;59922:9:0;59428:740;-1:-1:-1;;59428:740:0:o;59871:72::-;59959:23;;:27;59955:108;;60034:4;60040:9;60017:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60003:48;;;;59428:740;;;:::o;59955:108::-;60119:4;60125:18;:7;:16;:18::i;:::-;60145:13;60102:57;;;;;;;;;;:::i;60834:151::-;4574:13;:11;:13::i;:::-;60944:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;60404:92::-:0;4574:13;:11;:13::i;:::-;60475::::1;::::0;;-1:-1:-1;;;;60458:30:0;::::1;-1:-1:-1::0;;;60475:13:0;;;::::1;;;60474:14;60458:30:::0;;::::1;;::::0;;60404:92::o;58552:868::-;57830:4;58659:13;58643;21484:12;;21271:7;21468:13;:28;;21210:323;58643:13;:29;;;;:::i;:::-;:43;;58621:121;;;;-1:-1:-1;;;58621:121:0;;9172:2:1;58621:121:0;;;9154:21:1;9211:2;9191:18;;;9184:30;9250;9230:18;;;9223:58;9298:18;;58621:121:0;8970:352:1;58621:121:0;58761:13;;-1:-1:-1;;;58761:13:0;;;;58753:57;;;;-1:-1:-1;;;58753:57:0;;8045:2:1;58753:57:0;;;8027:21:1;8084:2;8064:18;;;8057:30;8123:33;8103:18;;;8096:61;8174:18;;58753:57:0;7843:355:1;58753:57:0;58848:7;;58831:13;:24;;58823:67;;;;-1:-1:-1;;;58823:67:0;;9529:2:1;58823:67:0;;;9511:21:1;9568:2;9548:18;;;9541:30;9607:32;9587:18;;;9580:60;9657:18;;58823:67:0;9327:354:1;58823:67:0;58903:9;58940:13;58915:21;58925:10;58915:9;:21::i;:::-;:38;;;;:::i;:::-;58903:50;;58979:10;;58974:1;:15;;58966:57;;;;-1:-1:-1;;;58966:57:0;;9888:2:1;58966:57:0;;;9870:21:1;9927:2;9907:18;;;9900:30;9966:31;9946:18;;;9939:59;10015:18;;58966:57:0;9686:353:1;58966:57:0;59036:9;57876:1;59064;:12;59060:192;;;57876:1;59097:21;59107:10;59097:9;:21::i;:::-;:33;59093:148;;-1:-1:-1;59155:13:0;59093:148;;;59213:12;57876:1;59213;:12;:::i;:::-;59209:16;;59093:148;59289:9;59276;;59272:1;:13;;;;:::i;:::-;:26;;59264:55;;;;-1:-1:-1;;;59264:55:0;;7700:2:1;59264:55:0;;;7682:21:1;7739:2;7719:18;;;7712:30;7778:18;7758;;;7751:46;7814:18;;59264:55:0;7498:340:1;59264:55:0;59330:36;59340:10;59352:13;59330:9;:36::i;60700:126::-;4574:13;:11;:13::i;:::-;60786:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;5594:201::-:0;4574:13;:11;:13::i;:::-;-1:-1:-1;;;;;5683:22:0;::::1;5675:73;;;::::0;-1:-1:-1;;;5675:73:0;;8765:2:1;5675:73:0::1;::::0;::::1;8747:21:1::0;8804:2;8784:18;;;8777:30;8843:34;8823:18;;;8816:62;-1:-1:-1;;;8894:18:1;;;8887:36;8940:19;;5675:73:0::1;8563:402:1::0;5675:73:0::1;5759:28;5778:8;5759:18;:28::i;:::-;5594:201:::0;:::o;60592:100::-;4574:13;:11;:13::i;:::-;60662:9:::1;:22:::0;60592:100::o;33321:282::-;33386:4;33476:13;;33466:7;:23;33423:153;;;;-1:-1:-1;;33527:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;33527:44:0;:49;;33321:282::o;28007:1275::-;28074:7;28109;28211:13;;28204:4;:20;28200:1015;;;28249:14;28266:23;;;:17;:23;;;;;;-1:-1:-1;;;28355:24:0;;28351:845;;29020:113;29027:11;29020:113;;-1:-1:-1;;;29098:6:0;29080:25;;;;:17;:25;;;;;;29020:113;;;29166:6;28007:1275;-1:-1:-1;;;28007:1275:0:o;28351:845::-;28226:989;28200:1015;29243:31;;-1:-1:-1;;;29243:31:0;;;;;;;;;;;4853:132;4761:6;;-1:-1:-1;;;;;4761:6:0;55716:10;4917:23;4909:68;;;;-1:-1:-1;;;4909:68:0;;10246:2:1;4909:68:0;;;10228:21:1;;;10265:18;;;10258:30;10324:34;10304:18;;;10297:62;10376:18;;4909:68:0;10044:356:1;5955:191:0;6048:6;;;-1:-1:-1;;;;;6065:17:0;;;-1:-1:-1;;6065:17:0;;;;;;;6098:40;;6048:6;;;6065:17;6048:6;;6098:40;;6029:16;;6098:40;6018:128;5955:191;:::o;41792:716::-;41976:88;;-1:-1:-1;;;41976:88:0;;41955:4;;-1:-1:-1;;;;;41976:45:0;;;;;:88;;55716:10;;42043:4;;42049:7;;42058:5;;41976:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41976:88:0;;;;;;;;-1:-1:-1;;41976:88:0;;;;;;;;;;;;:::i;:::-;;;41972:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42259:13:0;;42255:235;;42305:40;;-1:-1:-1;;;42305:40:0;;;;;;;;;;;42255:235;42448:6;42442:13;42433:6;42429:2;42425:15;42418:38;41972:529;-1:-1:-1;;;;;;42135:64:0;-1:-1:-1;;;42135:64:0;;-1:-1:-1;41972:529:0;41792:716;;;;;;:::o;60176:108::-;60236:13;60269:7;60262:14;;;;;:::i;493:723::-;549:13;770:10;766:53;;-1:-1:-1;;797:10:0;;;;;;;;;;;;-1:-1:-1;;;797:10:0;;;;;493:723::o;766:53::-;844:5;829:12;885:78;892:9;;885:78;;918:8;;;;:::i;:::-;;-1:-1:-1;941:10:0;;-1:-1:-1;949:2:0;941:10;;:::i;:::-;;;885:78;;;973:19;1005:6;995:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;995:17:0;;973:39;;1023:154;1030:10;;1023:154;;1057:11;1067:1;1057:11;;:::i;:::-;;-1:-1:-1;1126:10:0;1134:2;1126:5;:10;:::i;:::-;1113:24;;:2;:24;:::i;:::-;1100:39;;1083:6;1090;1083:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1154:11:0;1163:2;1154:11;;:::i;:::-;;;1023:154;;49461:112;49538:27;49548:2;49552:8;49538:27;;;;;;;;;;;;48819:19;48825:2;48829:8;48819:5;:19::i;:::-;-1:-1:-1;;;;;48880:14:0;;;:19;48876:483;;48920:11;48934:13;48982:14;;;49015:233;49046:62;49085:1;49089:2;49093:7;;;;;;49102:5;49046:30;:62::i;:::-;49041:167;;49144:40;;-1:-1:-1;;;49144:40:0;;;;;;;;;;;49041:167;49243:3;49235:5;:11;49015:233;;49330:3;49313:13;;:20;49309:34;;49335:8;;;49309:34;48901:458;;48688:689;;;:::o;42970:2966::-;43043:20;43066:13;43094;43090:44;;43116:18;;-1:-1:-1;;;43116:18:0;;;;;;;;;;;43090:44;-1:-1:-1;;;;;43622:22:0;;;;;;:18;:22;;;;16691:2;43622:22;;;:71;;43660:32;43648:45;;43622:71;;;43936:31;;;:17;:31;;;;;-1:-1:-1;30672:15:0;;30646:24;30642:46;30241:11;30216:23;30212:41;30209:52;30199:63;;43936:173;;44171:23;;;;43936:31;;43622:22;;44936:25;43622:22;;44789:335;45450:1;45436:12;45432:20;45390:346;45491:3;45482:7;45479:16;45390:346;;45709:7;45699:8;45696:1;45669:25;45666:1;45663;45658:59;45544:1;45531:15;45390:346;;;-1:-1:-1;45769:13:0;45765:45;;45791:19;;-1:-1:-1;;;45791:19:0;;;;;;;;;;;45765:45;45827:13;:19;-1:-1:-1;38510:193:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:1;;757:65;;747:93;;836:1;833;826:12;747:93;650:196;;;:::o;851:186::-;910:6;963:2;951:9;942:7;938:23;934:32;931:52;;;979:1;976;969:12;931:52;1002:29;1021:9;1002:29;:::i;1042:260::-;1110:6;1118;1171:2;1159:9;1150:7;1146:23;1142:32;1139:52;;;1187:1;1184;1177:12;1139:52;1210:29;1229:9;1210:29;:::i;:::-;1200:39;;1258:38;1292:2;1281:9;1277:18;1258:38;:::i;:::-;1248:48;;1042:260;;;;;:::o;1307:328::-;1384:6;1392;1400;1453:2;1441:9;1432:7;1428:23;1424:32;1421:52;;;1469:1;1466;1459:12;1421:52;1492:29;1511:9;1492:29;:::i;:::-;1482:39;;1540:38;1574:2;1563:9;1559:18;1540:38;:::i;:::-;1530:48;;1625:2;1614:9;1610:18;1597:32;1587:42;;1307:328;;;;;:::o;1640:666::-;1735:6;1743;1751;1759;1812:3;1800:9;1791:7;1787:23;1783:33;1780:53;;;1829:1;1826;1819:12;1780:53;1852:29;1871:9;1852:29;:::i;:::-;1842:39;;1900:38;1934:2;1923:9;1919:18;1900:38;:::i;:::-;1890:48;;1985:2;1974:9;1970:18;1957:32;1947:42;;2040:2;2029:9;2025:18;2012:32;2067:18;2059:6;2056:30;2053:50;;;2099:1;2096;2089:12;2053:50;2122:22;;2175:4;2167:13;;2163:27;-1:-1:-1;2153:55:1;;2204:1;2201;2194:12;2153:55;2227:73;2292:7;2287:2;2274:16;2269:2;2265;2261:11;2227:73;:::i;:::-;2217:83;;;1640:666;;;;;;;:::o;2311:347::-;2376:6;2384;2437:2;2425:9;2416:7;2412:23;2408:32;2405:52;;;2453:1;2450;2443:12;2405:52;2476:29;2495:9;2476:29;:::i;:::-;2466:39;;2555:2;2544:9;2540:18;2527:32;2602:5;2595:13;2588:21;2581:5;2578:32;2568:60;;2624:1;2621;2614:12;2568:60;2647:5;2637:15;;;2311:347;;;;;:::o;2663:254::-;2731:6;2739;2792:2;2780:9;2771:7;2767:23;2763:32;2760:52;;;2808:1;2805;2798:12;2760:52;2831:29;2850:9;2831:29;:::i;:::-;2821:39;2907:2;2892:18;;;;2879:32;;-1:-1:-1;;;2663:254:1:o;2922:245::-;2980:6;3033:2;3021:9;3012:7;3008:23;3004:32;3001:52;;;3049:1;3046;3039:12;3001:52;3088:9;3075:23;3107:30;3131:5;3107:30;:::i;3172:249::-;3241:6;3294:2;3282:9;3273:7;3269:23;3265:32;3262:52;;;3310:1;3307;3300:12;3262:52;3342:9;3336:16;3361:30;3385:5;3361:30;:::i;3426:450::-;3495:6;3548:2;3536:9;3527:7;3523:23;3519:32;3516:52;;;3564:1;3561;3554:12;3516:52;3604:9;3591:23;3637:18;3629:6;3626:30;3623:50;;;3669:1;3666;3659:12;3623:50;3692:22;;3745:4;3737:13;;3733:27;-1:-1:-1;3723:55:1;;3774:1;3771;3764:12;3723:55;3797:73;3862:7;3857:2;3844:16;3839:2;3835;3831:11;3797:73;:::i;3881:180::-;3940:6;3993:2;3981:9;3972:7;3968:23;3964:32;3961:52;;;4009:1;4006;3999:12;3961:52;-1:-1:-1;4032:23:1;;3881:180;-1:-1:-1;3881:180:1:o;4066:257::-;4107:3;4145:5;4139:12;4172:6;4167:3;4160:19;4188:63;4244:6;4237:4;4232:3;4228:14;4221:4;4214:5;4210:16;4188:63;:::i;:::-;4305:2;4284:15;-1:-1:-1;;4280:29:1;4271:39;;;;4312:4;4267:50;;4066:257;-1:-1:-1;;4066:257:1:o;4328:470::-;4507:3;4545:6;4539:13;4561:53;4607:6;4602:3;4595:4;4587:6;4583:17;4561:53;:::i;:::-;4677:13;;4636:16;;;;4699:57;4677:13;4636:16;4733:4;4721:17;;4699:57;:::i;:::-;4772:20;;4328:470;-1:-1:-1;;;;4328:470:1:o;4803:1527::-;5027:3;5065:6;5059:13;5091:4;5104:51;5148:6;5143:3;5138:2;5130:6;5126:15;5104:51;:::i;:::-;5218:13;;5177:16;;;;5240:55;5218:13;5177:16;5262:15;;;5240:55;:::i;:::-;5384:13;;5317:20;;;5357:1;;5444;5466:18;;;;5519;;;;5546:93;;5624:4;5614:8;5610:19;5598:31;;5546:93;5687:2;5677:8;5674:16;5654:18;5651:40;5648:167;;;-1:-1:-1;;;5714:33:1;;5770:4;5767:1;5760:15;5800:4;5721:3;5788:17;5648:167;5831:18;5858:110;;;;5982:1;5977:328;;;;5824:481;;5858:110;-1:-1:-1;;5893:24:1;;5879:39;;5938:20;;;;-1:-1:-1;5858:110:1;;5977:328;10660:1;10653:14;;;10697:4;10684:18;;6072:1;6086:169;6100:8;6097:1;6094:15;6086:169;;;6182:14;;6167:13;;;6160:37;6225:16;;;;6117:10;;6086:169;;;6090:3;;6286:8;6279:5;6275:20;6268:27;;5824:481;-1:-1:-1;6321:3:1;;4803:1527;-1:-1:-1;;;;;;;;;;;4803:1527:1:o;6566:511::-;6760:4;-1:-1:-1;;;;;6870:2:1;6862:6;6858:15;6847:9;6840:34;6922:2;6914:6;6910:15;6905:2;6894:9;6890:18;6883:43;;6962:6;6957:2;6946:9;6942:18;6935:34;7005:3;7000:2;6989:9;6985:18;6978:31;7026:45;7066:3;7055:9;7051:19;7043:6;7026:45;:::i;:::-;7018:53;6566:511;-1:-1:-1;;;;;;6566:511:1:o;7274:219::-;7423:2;7412:9;7405:21;7386:4;7443:44;7483:2;7472:9;7468:18;7460:6;7443:44;:::i;10713:128::-;10753:3;10784:1;10780:6;10777:1;10774:13;10771:39;;;10790:18;;:::i;:::-;-1:-1:-1;10826:9:1;;10713:128::o;10846:120::-;10886:1;10912;10902:35;;10917:18;;:::i;:::-;-1:-1:-1;10951:9:1;;10846:120::o;10971:168::-;11011:7;11077:1;11073;11069:6;11065:14;11062:1;11059:21;11054:1;11047:9;11040:17;11036:45;11033:71;;;11084:18;;:::i;:::-;-1:-1:-1;11124:9:1;;10971:168::o;11144:125::-;11184:4;11212:1;11209;11206:8;11203:34;;;11217:18;;:::i;:::-;-1:-1:-1;11254:9:1;;11144:125::o;11274:258::-;11346:1;11356:113;11370:6;11367:1;11364:13;11356:113;;;11446:11;;;11440:18;11427:11;;;11420:39;11392:2;11385:10;11356:113;;;11487:6;11484:1;11481:13;11478:48;;;-1:-1:-1;;11522:1:1;11504:16;;11497:27;11274:258::o;11537:380::-;11616:1;11612:12;;;;11659;;;11680:61;;11734:4;11726:6;11722:17;11712:27;;11680:61;11787:2;11779:6;11776:14;11756:18;11753:38;11750:161;;;11833:10;11828:3;11824:20;11821:1;11814:31;11868:4;11865:1;11858:15;11896:4;11893:1;11886:15;11750:161;;11537:380;;;:::o;11922:135::-;11961:3;-1:-1:-1;;11982:17:1;;11979:43;;;12002:18;;:::i;:::-;-1:-1:-1;12049:1:1;12038:13;;11922:135::o;12062:112::-;12094:1;12120;12110:35;;12125:18;;:::i;:::-;-1:-1:-1;12159:9:1;;12062:112::o;12179:127::-;12240:10;12235:3;12231:20;12228:1;12221:31;12271:4;12268:1;12261:15;12295:4;12292:1;12285:15;12311:127;12372:10;12367:3;12363:20;12360:1;12353:31;12403:4;12400:1;12393:15;12427:4;12424:1;12417:15;12443:127;12504:10;12499:3;12495:20;12492:1;12485:31;12535:4;12532:1;12525:15;12559:4;12556:1;12549:15;12575:127;12636:10;12631:3;12627:20;12624:1;12617:31;12667:4;12664:1;12657:15;12691:4;12688:1;12681:15;12707:131;-1:-1:-1;;;;;;12781:32:1;;12771:43;;12761:71;;12828:1;12825;12818:12

Swarm Source

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