ETH Price: $2,711.42 (+0.97%)

Token

Space BLOBz Tier C (SPACEBLOBZC)

Overview

Max Total Supply

21,564 SPACEBLOBZC

Holders

2,408

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
8 SPACEBLOBZC
0xed641737351a56b75c6c7da7f5acb2eabf11bd36
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
SpaceBLOBzC

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at optimistic.etherscan.io on 2024-09-02
*/

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.3.0
// 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()`.
 *
 * The `_sequentialUpTo()` function can be overriden to enable spot mints
 * (i.e. non-consecutive mints) for `tokenId`s greater than `_sequentialUpTo()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            ++_spotMinted;
        }

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


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

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

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

// File: @openzeppelin/contracts/utils/math/SignedMath.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;



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

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        uint256 localValue = value;
        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_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        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);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

// File: contracts/SpaceBLOBzC.sol


pragma solidity ^0.8.20;





contract SpaceBLOBzC is ERC721A, Ownable {

    // config
    constructor(address initialOwner)
        ERC721A("Space BLOBz Tier C", "SPACEBLOBZC")
        Ownable(initialOwner) {
    }
    uint256 public MAX_SUPPLY = 48_440_000;
    uint256 public MAX_MINT_PER_WALLET = 48_440_000;
    uint256 public START_ID = 1;

    bool public mintEnabled = true;
    string public baseURI = "https://bored-town.github.io/cdn/assets/space-blobz-c.gif";
    IERC20 public token;
    uint256 public mintPrice = 10_000_000 * 10**18; // 10M token

    // start token id
    function _startTokenId() internal view virtual override returns (uint256) {
        return START_ID;
    }

    // metadata
    function setBaseURI(string calldata _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        string memory jsonPreImage = string.concat(
            string.concat(
                string.concat('{"name": "Space BLOBz Tier C #', Strings.toString(tokenId)),
                '","description":"$BLOBZ is blasting off into space! Exchange your $BLOBZ tokens for a coveted Space BLOBz NFT and secure your spot for the upcoming $BLZ claim on the Base chain. The NFT exchange will be open from September 5th to 18th, and the $BLZ claim will commence on September 22nd. Don\'t let this opportunity slip through your fingers!","image":"'
            ),
            baseURI
        );
        string memory jsonPostImage = '"}';
        return
            string.concat(
                "data:application/json;utf8,",
                string.concat(jsonPreImage, jsonPostImage)
            );
    }

    // token
    function setToken(address newToken) external onlyOwner {
        token = IERC20(newToken);
    }
    function setMintPrice(uint256 _newMintPrice) external onlyOwner {
        mintPrice = _newMintPrice;
    }
    function withdraw(uint256 amount) external onlyOwner {
        require(token.transfer(msg.sender, amount), "Transfer token failed");
    }

    // toggle sale
    function toggleSale() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

    // mint
    function mint(uint quantity, bytes32[] calldata _merkleProof) external {
        require(mintEnabled, "Sale is not enabled");
        require(_numberMinted(msg.sender) + quantity <= MAX_MINT_PER_WALLET, "Over wallet limit");

        uint256 totalPrice = mintPrice * quantity;
        require(token.balanceOf(msg.sender) >= totalPrice, "Insufficient funds");
        require(token.transferFrom(msg.sender, address(this), totalPrice), "Payment failed");
        
        _checkSupplyAndMint(msg.sender, quantity);
    }
    function adminMint(uint quantity) external onlyOwner {
        _checkSupplyAndMint(msg.sender, quantity);
    }
    function _checkSupplyAndMint(address to, uint256 quantity) private {
        require(_totalMinted() + quantity <= MAX_SUPPLY, "Over supply");

        _mint(to, quantity);
    }

    // aliases
    function numberMinted(address owner) external view returns (uint256) {
        return _numberMinted(owner);
    }
    function remainingSupply() external view returns (uint256) {
        return MAX_SUPPLY - _totalMinted();
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotCompatibleWithSpotMints","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SequentialMintExceedsLimit","type":"error"},{"inputs":[],"name":"SequentialUpToTooSmall","type":"error"},{"inputs":[],"name":"SpotMintTokenIdTooSmall","type":"error"},{"inputs":[],"name":"TokenAlreadyExists","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"START_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"remainingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newToken","type":"address"}],"name":"setToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"result","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526302e322c0600a556302e322c0600b556001600c556001600d5f6101000a81548160ff02191690831515021790555060405180606001604052806039815260200162003b8060399139600e90816200005d919062000572565b506a084595161401484a00000060105534801562000079575f80fd5b5060405162003bb938038062003bb983398181016040528101906200009f9190620006bb565b806040518060400160405280601281526020017f537061636520424c4f427a2054696572204300000000000000000000000000008152506040518060400160405280600b81526020017f5350414345424c4f425a4300000000000000000000000000000000000000000081525081600290816200011d919062000572565b5080600390816200012f919062000572565b50620001406200021360201b60201c565b5f81905550620001556200021360201b60201c565b620001656200021c60201b60201c565b101562000185576200018463fed8210f60e01b6200024360201b60201c565b5b50505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001fa575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001f19190620006fc565b60405180910390fd5b6200020b816200024b60201b60201c565b505062000717565b5f600c54905090565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b805f5260045ffd5b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200038a57607f821691505b602082108103620003a0576200039f62000345565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003c7565b620004108683620003c7565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200045a620004546200044e8462000428565b62000431565b62000428565b9050919050565b5f819050919050565b62000475836200043a565b6200048d620004848262000461565b848454620003d3565b825550505050565b5f90565b620004a362000495565b620004b08184846200046a565b505050565b5b81811015620004d757620004cb5f8262000499565b600181019050620004b6565b5050565b601f8211156200052657620004f081620003a6565b620004fb84620003b8565b810160208510156200050b578190505b620005236200051a85620003b8565b830182620004b5565b50505b505050565b5f82821c905092915050565b5f620005485f19846008026200052b565b1980831691505092915050565b5f62000562838362000537565b9150826002028217905092915050565b6200057d826200030e565b67ffffffffffffffff81111562000599576200059862000318565b5b620005a5825462000372565b620005b2828285620004db565b5f60209050601f831160018114620005e8575f8415620005d3578287015190505b620005df858262000555565b8655506200064e565b601f198416620005f886620003a6565b5f5b828110156200062157848901518255600182019150602085019450602081019050620005fa565b868310156200064157848901516200063d601f89168262000537565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000685826200065a565b9050919050565b620006978162000679565b8114620006a2575f80fd5b50565b5f81519050620006b5816200068c565b92915050565b5f60208284031215620006d357620006d262000656565b5b5f620006e284828501620006a5565b91505092915050565b620006f68162000679565b82525050565b5f602082019050620007115f830184620006eb565b92915050565b61345b80620007255f395ff3fe6080604052600436106101ed575f3560e01c80637d8966e41161010c578063c1f261231161009f578063dc33e6811161006e578063dc33e68114610677578063e985e9c5146106b3578063f2fde38b146106ef578063f4a0a52814610717578063fc0c546a1461073f576101ed565b8063c1f26123146105bf578063c87b56dd146105e7578063d123973014610623578063da0239a61461064d576101ed565b8063aa39fbbe116100db578063aa39fbbe14610527578063b19960e614610551578063b88d4fde1461057b578063ba41b0c614610597576101ed565b80637d8966e4146104955780638da5cb5b146104ab57806395d89b41146104d5578063a22cb465146104ff576101ed565b806332cb6b0c116101845780636817c76c116101535780636817c76c146103ef5780636c0360eb1461041957806370a0823114610443578063715018a61461047f576101ed565b806332cb6b0c1461034557806342842e0e1461036f57806355f804b31461038b5780636352211e146103b3576101ed565b8063144fa6d7116101c0578063144fa6d7146102af57806318160ddd146102d757806323b872dd146103015780632e1a7d4d1461031d576101ed565b806301ffc9a7146101f157806306fdde031461022d578063081812fc14610257578063095ea7b314610293575b5f80fd5b3480156101fc575f80fd5b50610217600480360381019061021291906121a5565b610769565b60405161022491906121ea565b60405180910390f35b348015610238575f80fd5b506102416107fa565b60405161024e919061228d565b60405180910390f35b348015610262575f80fd5b5061027d600480360381019061027891906122e0565b61088a565b60405161028a919061234a565b60405180910390f35b6102ad60048036038101906102a8919061238d565b6108e3565b005b3480156102ba575f80fd5b506102d560048036038101906102d091906123cb565b6108f3565b005b3480156102e2575f80fd5b506102eb61093e565b6040516102f89190612405565b60405180910390f35b61031b6004803603810190610316919061241e565b610989565b005b348015610328575f80fd5b50610343600480360381019061033e91906122e0565b610c34565b005b348015610350575f80fd5b50610359610d1a565b6040516103669190612405565b60405180910390f35b6103896004803603810190610384919061241e565b610d20565b005b348015610396575f80fd5b506103b160048036038101906103ac91906124cf565b610d3f565b005b3480156103be575f80fd5b506103d960048036038101906103d491906122e0565b610d5d565b6040516103e6919061234a565b60405180910390f35b3480156103fa575f80fd5b50610403610d6e565b6040516104109190612405565b60405180910390f35b348015610424575f80fd5b5061042d610d74565b60405161043a919061228d565b60405180910390f35b34801561044e575f80fd5b50610469600480360381019061046491906123cb565b610e00565b6040516104769190612405565b60405180910390f35b34801561048a575f80fd5b50610493610e94565b005b3480156104a0575f80fd5b506104a9610ea7565b005b3480156104b6575f80fd5b506104bf610ed9565b6040516104cc919061234a565b60405180910390f35b3480156104e0575f80fd5b506104e9610f01565b6040516104f6919061228d565b60405180910390f35b34801561050a575f80fd5b5061052560048036038101906105209190612544565b610f91565b005b348015610532575f80fd5b5061053b611097565b6040516105489190612405565b60405180910390f35b34801561055c575f80fd5b5061056561109d565b6040516105729190612405565b60405180910390f35b610595600480360381019061059091906126aa565b6110a3565b005b3480156105a2575f80fd5b506105bd60048036038101906105b8919061277f565b6110f4565b005b3480156105ca575f80fd5b506105e560048036038101906105e091906122e0565b611373565b005b3480156105f2575f80fd5b5061060d600480360381019061060891906122e0565b611388565b60405161061a919061228d565b60405180910390f35b34801561062e575f80fd5b50610637611479565b60405161064491906121ea565b60405180910390f35b348015610658575f80fd5b5061066161148b565b60405161066e9190612405565b60405180910390f35b348015610682575f80fd5b5061069d600480360381019061069891906123cb565b6114a6565b6040516106aa9190612405565b60405180910390f35b3480156106be575f80fd5b506106d960048036038101906106d491906127dc565b6114b7565b6040516106e691906121ea565b60405180910390f35b3480156106fa575f80fd5b50610715600480360381019061071091906123cb565b611545565b005b348015610722575f80fd5b5061073d600480360381019061073891906122e0565b6115c9565b005b34801561074a575f80fd5b506107536115db565b6040516107609190612875565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610809906128bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610835906128bb565b80156108805780601f1061085757610100808354040283529160200191610880565b820191905f5260205f20905b81548152906001019060200180831161086357829003601f168201915b5050505050905090565b5f61089482611600565b6108a9576108a863cf4700e460e01b6116a3565b5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108ef828260016116ab565b5050565b6108fb6117d5565b80600f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f61094761185c565b6001545f54030390507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610979611865565b1461098657600854810190505b90565b5f6109938261188c565b905073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161693508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a0857610a0763a114810060e01b6116a3565b5b5f80610a138461199b565b91509150610a298187610a246119be565b6119c5565b610a5457610a3e86610a396119be565b6114b7565b610a5357610a526359c896be60e01b6116a3565b5b5b610a618686866001611a08565b8015610a6b575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610b3385610b0f888887611a0e565b7c020000000000000000000000000000000000000000000000000000000017611a35565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610baf575f6001850190505f60045f8381526020019081526020015f205403610bad575f548114610bac578360045f8381526020019081526020015f20819055505b5b505b5f73ffffffffffffffffffffffffffffffffffffffff8673ffffffffffffffffffffffffffffffffffffffff161690508481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a45f8103610c1e57610c1d63ea553b3460e01b6116a3565b5b610c2b8787876001611a5f565b50505050505050565b610c3c6117d5565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610c989291906128eb565b6020604051808303815f875af1158015610cb4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cd89190612926565b610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e9061299b565b60405180910390fd5b50565b600a5481565b610d3a83838360405180602001604052805f8152506110a3565b505050565b610d476117d5565b8181600e9182610d58929190612b57565b505050565b5f610d678261188c565b9050919050565b60105481565b600e8054610d81906128bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610dad906128bb565b8015610df85780601f10610dcf57610100808354040283529160200191610df8565b820191905f5260205f20905b815481529060010190602001808311610ddb57829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e4557610e44638f4eb60460e01b6116a3565b5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610e9c6117d5565b610ea55f611a65565b565b610eaf6117d5565b600d5f9054906101000a900460ff1615600d5f6101000a81548160ff021916908315150217905550565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f10906128bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3c906128bb565b8015610f875780601f10610f5e57610100808354040283529160200191610f87565b820191905f5260205f20905b815481529060010190602001808311610f6a57829003601f168201915b5050505050905090565b8060075f610f9d6119be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110466119be565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161108b91906121ea565b60405180910390a35050565b600c5481565b600b5481565b6110ae848484610989565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146110ee576110d884848484611b28565b6110ed576110ec63d1a57ed660e01b6116a3565b5b5b50505050565b600d5f9054906101000a900460ff16611142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113990612c6e565b60405180910390fd5b600b548361114f33611c52565b6111599190612cb9565b111561119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190612d36565b60405180910390fd5b5f836010546111a99190612d54565b905080600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611206919061234a565b602060405180830381865afa158015611221573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112459190612da9565b1015611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d90612e1e565b60405180910390fd5b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b81526004016112e493929190612e3c565b6020604051808303815f875af1158015611300573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113249190612926565b611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a90612ebb565b60405180910390fd5b61136d3385611ca6565b50505050565b61137b6117d5565b6113853382611ca6565b50565b60605f61139483611d0b565b6040516020016113a49190612f39565b6040516020818303038152906040526040516020016113c39190613129565b604051602081830303815290604052600e6040516020016113e59291906131ca565b60405160208183030381529060405290505f6040518060400160405280600281526020017f227d000000000000000000000000000000000000000000000000000000000000815250905081816040516020016114429291906131ed565b6040516020818303038152906040526040516020016114619190613236565b60405160208183030381529060405292505050919050565b600d5f9054906101000a900460ff1681565b5f611494611dd5565b600a546114a1919061325b565b905090565b5f6114b082611c52565b9050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61154d6117d5565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115bd575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016115b4919061234a565b60405180910390fd5b6115c681611a65565b50565b6115d16117d5565b8060108190555050565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f8161160a61185c565b1161169d57611617611865565b82111561163f5761163860045f8481526020019081526020015f2054611e1c565b905061169e565b5f5482101561169c575f5b5f60045f8581526020019081526020015f205491508103611676578261166f9061328e565b925061164a565b5f7c01000000000000000000000000000000000000000000000000000000008216149150505b5b5b919050565b805f5260045ffd5b5f6116b583610d5d565b90508180156116f757508073ffffffffffffffffffffffffffffffffffffffff166116de6119be565b73ffffffffffffffffffffffffffffffffffffffff1614155b156117235761170d816117086119be565b6114b7565b6117225761172163cfb3b94260e01b6116a3565b5b5b8360065f8581526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b6117dd611e5c565b73ffffffffffffffffffffffffffffffffffffffff166117fb610ed9565b73ffffffffffffffffffffffffffffffffffffffff161461185a5761181e611e5c565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611851919061234a565b60405180910390fd5b565b5f600c54905090565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b5f8161189661185c565b116119855760045f8381526020019081526020015f205490506118b7611865565b8211156118dc576118c781611e1c565b611996576118db63df2d9b4260e01b6116a3565b5b5f810361195d575f5482106118fc576118fb63df2d9b4260e01b6116a3565b5b5b60045f836001900393508381526020019081526020015f205490505f810315611958575f7c0100000000000000000000000000000000000000000000000000000000821603156119965761195763df2d9b4260e01b6116a3565b5b6118fd565b5f7c010000000000000000000000000000000000000000000000000000000082160315611996575b61199563df2d9b4260e01b6116a3565b5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8611a24868684611e63565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b4d6119be565b8786866040518563ffffffff1660e01b8152600401611b6f9493929190613307565b6020604051808303815f875af1925050508015611baa57506040513d601f19601f82011682018060405250810190611ba79190613365565b60015b611bff573d805f8114611bd8576040519150601f19603f3d011682016040523d82523d5f602084013e611bdd565b606091505b505f815103611bf757611bf663d1a57ed660e01b6116a3565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b600a5481611cb2611dd5565b611cbc9190612cb9565b1115611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf4906133da565b60405180910390fd5b611d078282611e6b565b5050565b60605f6001611d1984611fdf565b0190505f8167ffffffffffffffff811115611d3757611d36612586565b5b6040519080825280601f01601f191660200182016040528015611d695781602001600182028036833780820191505090505b5090505f82602001820190505b600115611dca578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611dbf57611dbe6133f8565b5b0494505f8503611d76575b819350505050919050565b5f611dde61185c565b5f540390507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611e0c611865565b14611e1957600854810190505b90565b5f7c0100000000000000000000000000000000000000000000000000000000821673ffffffffffffffffffffffffffffffffffffffff8316119050919050565b5f33905090565b5f9392505050565b5f805490505f8203611e8857611e8763b562e8dd60e01b6116a3565b5b611e945f848385611a08565b611eb283611ea35f865f611a0e565b611eac85612130565b17611a35565b60045f8381526020019081526020015f2081905550600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505f73ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161690505f8103611f6357611f62632e07630060e01b6116a3565b5b5f83830190505f839050611f75611865565b600183031115611f9057611f8f6381647e3a60e01b6116a3565b5b5b80835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4818160010191508103611f9157815f81905550505050611fda5f848385611a5f565b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061203b577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612031576120306133f8565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612078576d04ee2d6d415b85acef8100000000838161206e5761206d6133f8565b5b0492506020810190505b662386f26fc1000083106120a757662386f26fc10000838161209d5761209c6133f8565b5b0492506010810190505b6305f5e10083106120d0576305f5e10083816120c6576120c56133f8565b5b0492506008810190505b61271083106120f55761271083816120eb576120ea6133f8565b5b0492506004810190505b60648310612118576064838161210e5761210d6133f8565b5b0492506002810190505b600a8310612127576001810190505b80915050919050565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61218481612150565b811461218e575f80fd5b50565b5f8135905061219f8161217b565b92915050565b5f602082840312156121ba576121b9612148565b5b5f6121c784828501612191565b91505092915050565b5f8115159050919050565b6121e4816121d0565b82525050565b5f6020820190506121fd5f8301846121db565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561223a57808201518184015260208101905061221f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61225f82612203565b612269818561220d565b935061227981856020860161221d565b61228281612245565b840191505092915050565b5f6020820190508181035f8301526122a58184612255565b905092915050565b5f819050919050565b6122bf816122ad565b81146122c9575f80fd5b50565b5f813590506122da816122b6565b92915050565b5f602082840312156122f5576122f4612148565b5b5f612302848285016122cc565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6123348261230b565b9050919050565b6123448161232a565b82525050565b5f60208201905061235d5f83018461233b565b92915050565b61236c8161232a565b8114612376575f80fd5b50565b5f8135905061238781612363565b92915050565b5f80604083850312156123a3576123a2612148565b5b5f6123b085828601612379565b92505060206123c1858286016122cc565b9150509250929050565b5f602082840312156123e0576123df612148565b5b5f6123ed84828501612379565b91505092915050565b6123ff816122ad565b82525050565b5f6020820190506124185f8301846123f6565b92915050565b5f805f6060848603121561243557612434612148565b5b5f61244286828701612379565b935050602061245386828701612379565b9250506040612464868287016122cc565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261248f5761248e61246e565b5b8235905067ffffffffffffffff8111156124ac576124ab612472565b5b6020830191508360018202830111156124c8576124c7612476565b5b9250929050565b5f80602083850312156124e5576124e4612148565b5b5f83013567ffffffffffffffff8111156125025761250161214c565b5b61250e8582860161247a565b92509250509250929050565b612523816121d0565b811461252d575f80fd5b50565b5f8135905061253e8161251a565b92915050565b5f806040838503121561255a57612559612148565b5b5f61256785828601612379565b925050602061257885828601612530565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6125bc82612245565b810181811067ffffffffffffffff821117156125db576125da612586565b5b80604052505050565b5f6125ed61213f565b90506125f982826125b3565b919050565b5f67ffffffffffffffff82111561261857612617612586565b5b61262182612245565b9050602081019050919050565b828183375f83830152505050565b5f61264e612649846125fe565b6125e4565b90508281526020810184848401111561266a57612669612582565b5b61267584828561262e565b509392505050565b5f82601f8301126126915761269061246e565b5b81356126a184826020860161263c565b91505092915050565b5f805f80608085870312156126c2576126c1612148565b5b5f6126cf87828801612379565b94505060206126e087828801612379565b93505060406126f1878288016122cc565b925050606085013567ffffffffffffffff8111156127125761271161214c565b5b61271e8782880161267d565b91505092959194509250565b5f8083601f84011261273f5761273e61246e565b5b8235905067ffffffffffffffff81111561275c5761275b612472565b5b60208301915083602082028301111561277857612777612476565b5b9250929050565b5f805f6040848603121561279657612795612148565b5b5f6127a3868287016122cc565b935050602084013567ffffffffffffffff8111156127c4576127c361214c565b5b6127d08682870161272a565b92509250509250925092565b5f80604083850312156127f2576127f1612148565b5b5f6127ff85828601612379565b925050602061281085828601612379565b9150509250929050565b5f819050919050565b5f61283d6128386128338461230b565b61281a565b61230b565b9050919050565b5f61284e82612823565b9050919050565b5f61285f82612844565b9050919050565b61286f81612855565b82525050565b5f6020820190506128885f830184612866565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806128d257607f821691505b6020821081036128e5576128e461288e565b5b50919050565b5f6040820190506128fe5f83018561233b565b61290b60208301846123f6565b9392505050565b5f815190506129208161251a565b92915050565b5f6020828403121561293b5761293a612148565b5b5f61294884828501612912565b91505092915050565b7f5472616e7366657220746f6b656e206661696c656400000000000000000000005f82015250565b5f61298560158361220d565b915061299082612951565b602082019050919050565b5f6020820190508181035f8301526129b281612979565b9050919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612a1f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826129e4565b612a2986836129e4565b95508019841693508086168417925050509392505050565b5f612a5b612a56612a51846122ad565b61281a565b6122ad565b9050919050565b5f819050919050565b612a7483612a41565b612a88612a8082612a62565b8484546129f0565b825550505050565b5f90565b612a9c612a90565b612aa7818484612a6b565b505050565b5b81811015612aca57612abf5f82612a94565b600181019050612aad565b5050565b601f821115612b0f57612ae0816129c3565b612ae9846129d5565b81016020851015612af8578190505b612b0c612b04856129d5565b830182612aac565b50505b505050565b5f82821c905092915050565b5f612b2f5f1984600802612b14565b1980831691505092915050565b5f612b478383612b20565b9150826002028217905092915050565b612b6183836129b9565b67ffffffffffffffff811115612b7a57612b79612586565b5b612b8482546128bb565b612b8f828285612ace565b5f601f831160018114612bbc575f8415612baa578287013590505b612bb48582612b3c565b865550612c1b565b601f198416612bca866129c3565b5f5b82811015612bf157848901358255600182019150602085019450602081019050612bcc565b86831015612c0e5784890135612c0a601f891682612b20565b8355505b6001600288020188555050505b50505050505050565b7f53616c65206973206e6f7420656e61626c6564000000000000000000000000005f82015250565b5f612c5860138361220d565b9150612c6382612c24565b602082019050919050565b5f6020820190508181035f830152612c8581612c4c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612cc3826122ad565b9150612cce836122ad565b9250828201905080821115612ce657612ce5612c8c565b5b92915050565b7f4f7665722077616c6c6574206c696d69740000000000000000000000000000005f82015250565b5f612d2060118361220d565b9150612d2b82612cec565b602082019050919050565b5f6020820190508181035f830152612d4d81612d14565b9050919050565b5f612d5e826122ad565b9150612d69836122ad565b9250828202612d77816122ad565b91508282048414831517612d8e57612d8d612c8c565b5b5092915050565b5f81519050612da3816122b6565b92915050565b5f60208284031215612dbe57612dbd612148565b5b5f612dcb84828501612d95565b91505092915050565b7f496e73756666696369656e742066756e647300000000000000000000000000005f82015250565b5f612e0860128361220d565b9150612e1382612dd4565b602082019050919050565b5f6020820190508181035f830152612e3581612dfc565b9050919050565b5f606082019050612e4f5f83018661233b565b612e5c602083018561233b565b612e6960408301846123f6565b949350505050565b7f5061796d656e74206661696c65640000000000000000000000000000000000005f82015250565b5f612ea5600e8361220d565b9150612eb082612e71565b602082019050919050565b5f6020820190508181035f830152612ed281612e99565b9050919050565b7f7b226e616d65223a2022537061636520424c4f427a2054696572204320230000815250565b5f81905092915050565b5f612f1382612203565b612f1d8185612eff565b9350612f2d81856020860161221d565b80840191505092915050565b5f612f4382612ed9565b601e82019150612f538284612f09565b915081905092915050565b7f222c226465736372697074696f6e223a2224424c4f425a20697320626c6173745f8201527f696e67206f666620696e746f207370616365212045786368616e676520796f7560208201527f722024424c4f425a20746f6b656e7320666f72206120636f766574656420537060408201527f61636520424c4f427a204e465420616e642073656375726520796f757220737060608201527f6f7420666f7220746865207570636f6d696e672024424c5a20636c61696d206f60808201527f6e20746865204261736520636861696e2e20546865204e46542065786368616e60a08201527f67652077696c6c206265206f70656e2066726f6d2053657074656d626572203560c08201527f746820746f20313874682c20616e64207468652024424c5a20636c61696d207760e08201527f696c6c20636f6d6d656e6365206f6e2053657074656d6265722032326e642e206101008201527f446f6e2774206c65742074686973206f70706f7274756e69747920736c6970206101208201527f7468726f75676820796f75722066696e6765727321222c22696d616765223a2261014082015250565b5f61311261016083612eff565b915061311d82612f5e565b61016082019050919050565b5f6131348284612f09565b915061313f82613105565b915081905092915050565b5f8154613156816128bb565b6131608186612eff565b9450600182165f811461317a576001811461318f576131c1565b60ff19831686528115158202860193506131c1565b613198856129c3565b5f5b838110156131b95781548189015260018201915060208101905061319a565b838801955050505b50505092915050565b5f6131d58285612f09565b91506131e1828461314a565b91508190509392505050565b5f6131f88285612f09565b91506132048284612f09565b91508190509392505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000815250565b5f61324082613210565b601b820191506132508284612f09565b915081905092915050565b5f613265826122ad565b9150613270836122ad565b925082820390508181111561328857613287612c8c565b5b92915050565b5f613298826122ad565b91505f82036132aa576132a9612c8c565b5b600182039050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6132d9826132b5565b6132e381856132bf565b93506132f381856020860161221d565b6132fc81612245565b840191505092915050565b5f60808201905061331a5f83018761233b565b613327602083018661233b565b61333460408301856123f6565b818103606083015261334681846132cf565b905095945050505050565b5f8151905061335f8161217b565b92915050565b5f6020828403121561337a57613379612148565b5b5f61338784828501613351565b91505092915050565b7f4f76657220737570706c790000000000000000000000000000000000000000005f82015250565b5f6133c4600b8361220d565b91506133cf82613390565b602082019050919050565b5f6020820190508181035f8301526133f1816133b8565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea2646970667358221220dfcfcc4dff5b5e855af70318fe4a698b6acbce3c7f2a7691cb947322b11c325f64736f6c6343000814003368747470733a2f2f626f7265642d746f776e2e6769746875622e696f2f63646e2f6173736574732f73706163652d626c6f627a2d632e676966000000000000000000000000364ca165532881f1519bbabad6af1d7b3178c144

Deployed Bytecode

0x6080604052600436106101ed575f3560e01c80637d8966e41161010c578063c1f261231161009f578063dc33e6811161006e578063dc33e68114610677578063e985e9c5146106b3578063f2fde38b146106ef578063f4a0a52814610717578063fc0c546a1461073f576101ed565b8063c1f26123146105bf578063c87b56dd146105e7578063d123973014610623578063da0239a61461064d576101ed565b8063aa39fbbe116100db578063aa39fbbe14610527578063b19960e614610551578063b88d4fde1461057b578063ba41b0c614610597576101ed565b80637d8966e4146104955780638da5cb5b146104ab57806395d89b41146104d5578063a22cb465146104ff576101ed565b806332cb6b0c116101845780636817c76c116101535780636817c76c146103ef5780636c0360eb1461041957806370a0823114610443578063715018a61461047f576101ed565b806332cb6b0c1461034557806342842e0e1461036f57806355f804b31461038b5780636352211e146103b3576101ed565b8063144fa6d7116101c0578063144fa6d7146102af57806318160ddd146102d757806323b872dd146103015780632e1a7d4d1461031d576101ed565b806301ffc9a7146101f157806306fdde031461022d578063081812fc14610257578063095ea7b314610293575b5f80fd5b3480156101fc575f80fd5b50610217600480360381019061021291906121a5565b610769565b60405161022491906121ea565b60405180910390f35b348015610238575f80fd5b506102416107fa565b60405161024e919061228d565b60405180910390f35b348015610262575f80fd5b5061027d600480360381019061027891906122e0565b61088a565b60405161028a919061234a565b60405180910390f35b6102ad60048036038101906102a8919061238d565b6108e3565b005b3480156102ba575f80fd5b506102d560048036038101906102d091906123cb565b6108f3565b005b3480156102e2575f80fd5b506102eb61093e565b6040516102f89190612405565b60405180910390f35b61031b6004803603810190610316919061241e565b610989565b005b348015610328575f80fd5b50610343600480360381019061033e91906122e0565b610c34565b005b348015610350575f80fd5b50610359610d1a565b6040516103669190612405565b60405180910390f35b6103896004803603810190610384919061241e565b610d20565b005b348015610396575f80fd5b506103b160048036038101906103ac91906124cf565b610d3f565b005b3480156103be575f80fd5b506103d960048036038101906103d491906122e0565b610d5d565b6040516103e6919061234a565b60405180910390f35b3480156103fa575f80fd5b50610403610d6e565b6040516104109190612405565b60405180910390f35b348015610424575f80fd5b5061042d610d74565b60405161043a919061228d565b60405180910390f35b34801561044e575f80fd5b50610469600480360381019061046491906123cb565b610e00565b6040516104769190612405565b60405180910390f35b34801561048a575f80fd5b50610493610e94565b005b3480156104a0575f80fd5b506104a9610ea7565b005b3480156104b6575f80fd5b506104bf610ed9565b6040516104cc919061234a565b60405180910390f35b3480156104e0575f80fd5b506104e9610f01565b6040516104f6919061228d565b60405180910390f35b34801561050a575f80fd5b5061052560048036038101906105209190612544565b610f91565b005b348015610532575f80fd5b5061053b611097565b6040516105489190612405565b60405180910390f35b34801561055c575f80fd5b5061056561109d565b6040516105729190612405565b60405180910390f35b610595600480360381019061059091906126aa565b6110a3565b005b3480156105a2575f80fd5b506105bd60048036038101906105b8919061277f565b6110f4565b005b3480156105ca575f80fd5b506105e560048036038101906105e091906122e0565b611373565b005b3480156105f2575f80fd5b5061060d600480360381019061060891906122e0565b611388565b60405161061a919061228d565b60405180910390f35b34801561062e575f80fd5b50610637611479565b60405161064491906121ea565b60405180910390f35b348015610658575f80fd5b5061066161148b565b60405161066e9190612405565b60405180910390f35b348015610682575f80fd5b5061069d600480360381019061069891906123cb565b6114a6565b6040516106aa9190612405565b60405180910390f35b3480156106be575f80fd5b506106d960048036038101906106d491906127dc565b6114b7565b6040516106e691906121ea565b60405180910390f35b3480156106fa575f80fd5b50610715600480360381019061071091906123cb565b611545565b005b348015610722575f80fd5b5061073d600480360381019061073891906122e0565b6115c9565b005b34801561074a575f80fd5b506107536115db565b6040516107609190612875565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610809906128bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610835906128bb565b80156108805780601f1061085757610100808354040283529160200191610880565b820191905f5260205f20905b81548152906001019060200180831161086357829003601f168201915b5050505050905090565b5f61089482611600565b6108a9576108a863cf4700e460e01b6116a3565b5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108ef828260016116ab565b5050565b6108fb6117d5565b80600f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f61094761185c565b6001545f54030390507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610979611865565b1461098657600854810190505b90565b5f6109938261188c565b905073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161693508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a0857610a0763a114810060e01b6116a3565b5b5f80610a138461199b565b91509150610a298187610a246119be565b6119c5565b610a5457610a3e86610a396119be565b6114b7565b610a5357610a526359c896be60e01b6116a3565b5b5b610a618686866001611a08565b8015610a6b575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610b3385610b0f888887611a0e565b7c020000000000000000000000000000000000000000000000000000000017611a35565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610baf575f6001850190505f60045f8381526020019081526020015f205403610bad575f548114610bac578360045f8381526020019081526020015f20819055505b5b505b5f73ffffffffffffffffffffffffffffffffffffffff8673ffffffffffffffffffffffffffffffffffffffff161690508481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a45f8103610c1e57610c1d63ea553b3460e01b6116a3565b5b610c2b8787876001611a5f565b50505050505050565b610c3c6117d5565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610c989291906128eb565b6020604051808303815f875af1158015610cb4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cd89190612926565b610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e9061299b565b60405180910390fd5b50565b600a5481565b610d3a83838360405180602001604052805f8152506110a3565b505050565b610d476117d5565b8181600e9182610d58929190612b57565b505050565b5f610d678261188c565b9050919050565b60105481565b600e8054610d81906128bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610dad906128bb565b8015610df85780601f10610dcf57610100808354040283529160200191610df8565b820191905f5260205f20905b815481529060010190602001808311610ddb57829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e4557610e44638f4eb60460e01b6116a3565b5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610e9c6117d5565b610ea55f611a65565b565b610eaf6117d5565b600d5f9054906101000a900460ff1615600d5f6101000a81548160ff021916908315150217905550565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f10906128bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3c906128bb565b8015610f875780601f10610f5e57610100808354040283529160200191610f87565b820191905f5260205f20905b815481529060010190602001808311610f6a57829003601f168201915b5050505050905090565b8060075f610f9d6119be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110466119be565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161108b91906121ea565b60405180910390a35050565b600c5481565b600b5481565b6110ae848484610989565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146110ee576110d884848484611b28565b6110ed576110ec63d1a57ed660e01b6116a3565b5b5b50505050565b600d5f9054906101000a900460ff16611142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113990612c6e565b60405180910390fd5b600b548361114f33611c52565b6111599190612cb9565b111561119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190612d36565b60405180910390fd5b5f836010546111a99190612d54565b905080600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611206919061234a565b602060405180830381865afa158015611221573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112459190612da9565b1015611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d90612e1e565b60405180910390fd5b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b81526004016112e493929190612e3c565b6020604051808303815f875af1158015611300573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113249190612926565b611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a90612ebb565b60405180910390fd5b61136d3385611ca6565b50505050565b61137b6117d5565b6113853382611ca6565b50565b60605f61139483611d0b565b6040516020016113a49190612f39565b6040516020818303038152906040526040516020016113c39190613129565b604051602081830303815290604052600e6040516020016113e59291906131ca565b60405160208183030381529060405290505f6040518060400160405280600281526020017f227d000000000000000000000000000000000000000000000000000000000000815250905081816040516020016114429291906131ed565b6040516020818303038152906040526040516020016114619190613236565b60405160208183030381529060405292505050919050565b600d5f9054906101000a900460ff1681565b5f611494611dd5565b600a546114a1919061325b565b905090565b5f6114b082611c52565b9050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61154d6117d5565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115bd575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016115b4919061234a565b60405180910390fd5b6115c681611a65565b50565b6115d16117d5565b8060108190555050565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f8161160a61185c565b1161169d57611617611865565b82111561163f5761163860045f8481526020019081526020015f2054611e1c565b905061169e565b5f5482101561169c575f5b5f60045f8581526020019081526020015f205491508103611676578261166f9061328e565b925061164a565b5f7c01000000000000000000000000000000000000000000000000000000008216149150505b5b5b919050565b805f5260045ffd5b5f6116b583610d5d565b90508180156116f757508073ffffffffffffffffffffffffffffffffffffffff166116de6119be565b73ffffffffffffffffffffffffffffffffffffffff1614155b156117235761170d816117086119be565b6114b7565b6117225761172163cfb3b94260e01b6116a3565b5b5b8360065f8581526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b6117dd611e5c565b73ffffffffffffffffffffffffffffffffffffffff166117fb610ed9565b73ffffffffffffffffffffffffffffffffffffffff161461185a5761181e611e5c565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611851919061234a565b60405180910390fd5b565b5f600c54905090565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b5f8161189661185c565b116119855760045f8381526020019081526020015f205490506118b7611865565b8211156118dc576118c781611e1c565b611996576118db63df2d9b4260e01b6116a3565b5b5f810361195d575f5482106118fc576118fb63df2d9b4260e01b6116a3565b5b5b60045f836001900393508381526020019081526020015f205490505f810315611958575f7c0100000000000000000000000000000000000000000000000000000000821603156119965761195763df2d9b4260e01b6116a3565b5b6118fd565b5f7c010000000000000000000000000000000000000000000000000000000082160315611996575b61199563df2d9b4260e01b6116a3565b5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8611a24868684611e63565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b4d6119be565b8786866040518563ffffffff1660e01b8152600401611b6f9493929190613307565b6020604051808303815f875af1925050508015611baa57506040513d601f19601f82011682018060405250810190611ba79190613365565b60015b611bff573d805f8114611bd8576040519150601f19603f3d011682016040523d82523d5f602084013e611bdd565b606091505b505f815103611bf757611bf663d1a57ed660e01b6116a3565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b600a5481611cb2611dd5565b611cbc9190612cb9565b1115611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf4906133da565b60405180910390fd5b611d078282611e6b565b5050565b60605f6001611d1984611fdf565b0190505f8167ffffffffffffffff811115611d3757611d36612586565b5b6040519080825280601f01601f191660200182016040528015611d695781602001600182028036833780820191505090505b5090505f82602001820190505b600115611dca578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611dbf57611dbe6133f8565b5b0494505f8503611d76575b819350505050919050565b5f611dde61185c565b5f540390507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611e0c611865565b14611e1957600854810190505b90565b5f7c0100000000000000000000000000000000000000000000000000000000821673ffffffffffffffffffffffffffffffffffffffff8316119050919050565b5f33905090565b5f9392505050565b5f805490505f8203611e8857611e8763b562e8dd60e01b6116a3565b5b611e945f848385611a08565b611eb283611ea35f865f611a0e565b611eac85612130565b17611a35565b60045f8381526020019081526020015f2081905550600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505f73ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161690505f8103611f6357611f62632e07630060e01b6116a3565b5b5f83830190505f839050611f75611865565b600183031115611f9057611f8f6381647e3a60e01b6116a3565b5b5b80835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4818160010191508103611f9157815f81905550505050611fda5f848385611a5f565b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061203b577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612031576120306133f8565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612078576d04ee2d6d415b85acef8100000000838161206e5761206d6133f8565b5b0492506020810190505b662386f26fc1000083106120a757662386f26fc10000838161209d5761209c6133f8565b5b0492506010810190505b6305f5e10083106120d0576305f5e10083816120c6576120c56133f8565b5b0492506008810190505b61271083106120f55761271083816120eb576120ea6133f8565b5b0492506004810190505b60648310612118576064838161210e5761210d6133f8565b5b0492506002810190505b600a8310612127576001810190505b80915050919050565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61218481612150565b811461218e575f80fd5b50565b5f8135905061219f8161217b565b92915050565b5f602082840312156121ba576121b9612148565b5b5f6121c784828501612191565b91505092915050565b5f8115159050919050565b6121e4816121d0565b82525050565b5f6020820190506121fd5f8301846121db565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561223a57808201518184015260208101905061221f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61225f82612203565b612269818561220d565b935061227981856020860161221d565b61228281612245565b840191505092915050565b5f6020820190508181035f8301526122a58184612255565b905092915050565b5f819050919050565b6122bf816122ad565b81146122c9575f80fd5b50565b5f813590506122da816122b6565b92915050565b5f602082840312156122f5576122f4612148565b5b5f612302848285016122cc565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6123348261230b565b9050919050565b6123448161232a565b82525050565b5f60208201905061235d5f83018461233b565b92915050565b61236c8161232a565b8114612376575f80fd5b50565b5f8135905061238781612363565b92915050565b5f80604083850312156123a3576123a2612148565b5b5f6123b085828601612379565b92505060206123c1858286016122cc565b9150509250929050565b5f602082840312156123e0576123df612148565b5b5f6123ed84828501612379565b91505092915050565b6123ff816122ad565b82525050565b5f6020820190506124185f8301846123f6565b92915050565b5f805f6060848603121561243557612434612148565b5b5f61244286828701612379565b935050602061245386828701612379565b9250506040612464868287016122cc565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261248f5761248e61246e565b5b8235905067ffffffffffffffff8111156124ac576124ab612472565b5b6020830191508360018202830111156124c8576124c7612476565b5b9250929050565b5f80602083850312156124e5576124e4612148565b5b5f83013567ffffffffffffffff8111156125025761250161214c565b5b61250e8582860161247a565b92509250509250929050565b612523816121d0565b811461252d575f80fd5b50565b5f8135905061253e8161251a565b92915050565b5f806040838503121561255a57612559612148565b5b5f61256785828601612379565b925050602061257885828601612530565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6125bc82612245565b810181811067ffffffffffffffff821117156125db576125da612586565b5b80604052505050565b5f6125ed61213f565b90506125f982826125b3565b919050565b5f67ffffffffffffffff82111561261857612617612586565b5b61262182612245565b9050602081019050919050565b828183375f83830152505050565b5f61264e612649846125fe565b6125e4565b90508281526020810184848401111561266a57612669612582565b5b61267584828561262e565b509392505050565b5f82601f8301126126915761269061246e565b5b81356126a184826020860161263c565b91505092915050565b5f805f80608085870312156126c2576126c1612148565b5b5f6126cf87828801612379565b94505060206126e087828801612379565b93505060406126f1878288016122cc565b925050606085013567ffffffffffffffff8111156127125761271161214c565b5b61271e8782880161267d565b91505092959194509250565b5f8083601f84011261273f5761273e61246e565b5b8235905067ffffffffffffffff81111561275c5761275b612472565b5b60208301915083602082028301111561277857612777612476565b5b9250929050565b5f805f6040848603121561279657612795612148565b5b5f6127a3868287016122cc565b935050602084013567ffffffffffffffff8111156127c4576127c361214c565b5b6127d08682870161272a565b92509250509250925092565b5f80604083850312156127f2576127f1612148565b5b5f6127ff85828601612379565b925050602061281085828601612379565b9150509250929050565b5f819050919050565b5f61283d6128386128338461230b565b61281a565b61230b565b9050919050565b5f61284e82612823565b9050919050565b5f61285f82612844565b9050919050565b61286f81612855565b82525050565b5f6020820190506128885f830184612866565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806128d257607f821691505b6020821081036128e5576128e461288e565b5b50919050565b5f6040820190506128fe5f83018561233b565b61290b60208301846123f6565b9392505050565b5f815190506129208161251a565b92915050565b5f6020828403121561293b5761293a612148565b5b5f61294884828501612912565b91505092915050565b7f5472616e7366657220746f6b656e206661696c656400000000000000000000005f82015250565b5f61298560158361220d565b915061299082612951565b602082019050919050565b5f6020820190508181035f8301526129b281612979565b9050919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612a1f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826129e4565b612a2986836129e4565b95508019841693508086168417925050509392505050565b5f612a5b612a56612a51846122ad565b61281a565b6122ad565b9050919050565b5f819050919050565b612a7483612a41565b612a88612a8082612a62565b8484546129f0565b825550505050565b5f90565b612a9c612a90565b612aa7818484612a6b565b505050565b5b81811015612aca57612abf5f82612a94565b600181019050612aad565b5050565b601f821115612b0f57612ae0816129c3565b612ae9846129d5565b81016020851015612af8578190505b612b0c612b04856129d5565b830182612aac565b50505b505050565b5f82821c905092915050565b5f612b2f5f1984600802612b14565b1980831691505092915050565b5f612b478383612b20565b9150826002028217905092915050565b612b6183836129b9565b67ffffffffffffffff811115612b7a57612b79612586565b5b612b8482546128bb565b612b8f828285612ace565b5f601f831160018114612bbc575f8415612baa578287013590505b612bb48582612b3c565b865550612c1b565b601f198416612bca866129c3565b5f5b82811015612bf157848901358255600182019150602085019450602081019050612bcc565b86831015612c0e5784890135612c0a601f891682612b20565b8355505b6001600288020188555050505b50505050505050565b7f53616c65206973206e6f7420656e61626c6564000000000000000000000000005f82015250565b5f612c5860138361220d565b9150612c6382612c24565b602082019050919050565b5f6020820190508181035f830152612c8581612c4c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612cc3826122ad565b9150612cce836122ad565b9250828201905080821115612ce657612ce5612c8c565b5b92915050565b7f4f7665722077616c6c6574206c696d69740000000000000000000000000000005f82015250565b5f612d2060118361220d565b9150612d2b82612cec565b602082019050919050565b5f6020820190508181035f830152612d4d81612d14565b9050919050565b5f612d5e826122ad565b9150612d69836122ad565b9250828202612d77816122ad565b91508282048414831517612d8e57612d8d612c8c565b5b5092915050565b5f81519050612da3816122b6565b92915050565b5f60208284031215612dbe57612dbd612148565b5b5f612dcb84828501612d95565b91505092915050565b7f496e73756666696369656e742066756e647300000000000000000000000000005f82015250565b5f612e0860128361220d565b9150612e1382612dd4565b602082019050919050565b5f6020820190508181035f830152612e3581612dfc565b9050919050565b5f606082019050612e4f5f83018661233b565b612e5c602083018561233b565b612e6960408301846123f6565b949350505050565b7f5061796d656e74206661696c65640000000000000000000000000000000000005f82015250565b5f612ea5600e8361220d565b9150612eb082612e71565b602082019050919050565b5f6020820190508181035f830152612ed281612e99565b9050919050565b7f7b226e616d65223a2022537061636520424c4f427a2054696572204320230000815250565b5f81905092915050565b5f612f1382612203565b612f1d8185612eff565b9350612f2d81856020860161221d565b80840191505092915050565b5f612f4382612ed9565b601e82019150612f538284612f09565b915081905092915050565b7f222c226465736372697074696f6e223a2224424c4f425a20697320626c6173745f8201527f696e67206f666620696e746f207370616365212045786368616e676520796f7560208201527f722024424c4f425a20746f6b656e7320666f72206120636f766574656420537060408201527f61636520424c4f427a204e465420616e642073656375726520796f757220737060608201527f6f7420666f7220746865207570636f6d696e672024424c5a20636c61696d206f60808201527f6e20746865204261736520636861696e2e20546865204e46542065786368616e60a08201527f67652077696c6c206265206f70656e2066726f6d2053657074656d626572203560c08201527f746820746f20313874682c20616e64207468652024424c5a20636c61696d207760e08201527f696c6c20636f6d6d656e6365206f6e2053657074656d6265722032326e642e206101008201527f446f6e2774206c65742074686973206f70706f7274756e69747920736c6970206101208201527f7468726f75676820796f75722066696e6765727321222c22696d616765223a2261014082015250565b5f61311261016083612eff565b915061311d82612f5e565b61016082019050919050565b5f6131348284612f09565b915061313f82613105565b915081905092915050565b5f8154613156816128bb565b6131608186612eff565b9450600182165f811461317a576001811461318f576131c1565b60ff19831686528115158202860193506131c1565b613198856129c3565b5f5b838110156131b95781548189015260018201915060208101905061319a565b838801955050505b50505092915050565b5f6131d58285612f09565b91506131e1828461314a565b91508190509392505050565b5f6131f88285612f09565b91506132048284612f09565b91508190509392505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000815250565b5f61324082613210565b601b820191506132508284612f09565b915081905092915050565b5f613265826122ad565b9150613270836122ad565b925082820390508181111561328857613287612c8c565b5b92915050565b5f613298826122ad565b91505f82036132aa576132a9612c8c565b5b600182039050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6132d9826132b5565b6132e381856132bf565b93506132f381856020860161221d565b6132fc81612245565b840191505092915050565b5f60808201905061331a5f83018761233b565b613327602083018661233b565b61333460408301856123f6565b818103606083015261334681846132cf565b905095945050505050565b5f8151905061335f8161217b565b92915050565b5f6020828403121561337a57613379612148565b5b5f61338784828501613351565b91505092915050565b7f4f76657220737570706c790000000000000000000000000000000000000000005f82015250565b5f6133c4600b8361220d565b91506133cf82613390565b602082019050919050565b5f6020820190508181035f8301526133f1816133b8565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea2646970667358221220dfcfcc4dff5b5e855af70318fe4a698b6acbce3c7f2a7691cb947322b11c325f64736f6c63430008140033

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

000000000000000000000000364ca165532881f1519bbabad6af1d7b3178c144

-----Decoded View---------------
Arg [0] : initialOwner (address): 0x364CA165532881f1519bBabAD6Af1D7b3178c144

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000364ca165532881f1519bbabad6af1d7b3178c144


Deployed Bytecode Sourcemap

87982:3339:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20588:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21490:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28730:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28447:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89733:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16692:573;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33002:3523;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89951:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88180:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36621:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88692:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22892:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88468:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88352:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18416:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64152:103;;;;;;;;;;;;;:::i;:::-;;90119:86;;;;;;;;;;;;;:::i;:::-;;63477:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21666:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29297:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88279:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88225:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37412:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90226:527;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90759:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88806:905;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88315:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91204:112;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91083:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29688:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64410:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89837:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88442:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20588:639;20673:4;21012:10;20997:25;;:11;:25;;;;:102;;;;21089:10;21074:25;;:11;:25;;;;20997:102;:179;;;;21166:10;21151:25;;:11;:25;;;;20997:179;20977:199;;20588:639;;;:::o;21490:100::-;21544:13;21577:5;21570:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21490:100;:::o;28730:227::-;28806:7;28831:16;28839:7;28831;:16::i;:::-;28826:73;;28849:50;28857:41;;;28849:7;:50::i;:::-;28826:73;28919:15;:24;28935:7;28919:24;;;;;;;;;;;:30;;;;;;;;;;;;28912:37;;28730:227;;;:::o;28447:124::-;28536:27;28545:2;28549:7;28558:4;28536:8;:27::i;:::-;28447:124;;:::o;89733:98::-;63363:13;:11;:13::i;:::-;89814:8:::1;89799:5;;:24;;;;;;;;;;;;;;;;;;89733:98:::0;:::o;16692:573::-;16753:14;17151:15;:13;:15::i;:::-;17136:12;;17120:13;;:28;:46;17111:55;;17206:17;17185;:15;:17::i;:::-;:38;17181:65;;17235:11;;17225:21;;;;17181:65;16692:573;:::o;33002:3523::-;33144:27;33174;33193:7;33174:18;:27::i;:::-;33144:57;;12634:14;33345:4;33329:22;;:41;33306:66;;33430:4;33389:45;;33405:19;33389:45;;;33385:95;;33436:44;33444:35;;;33436:7;:44::i;:::-;33385:95;33494:27;33523:23;33550:35;33577:7;33550:26;:35::i;:::-;33493:92;;;;33685:68;33710:15;33727:4;33733:19;:17;:19::i;:::-;33685:24;:68::i;:::-;33680:189;;33773:43;33790:4;33796:19;:17;:19::i;:::-;33773:16;:43::i;:::-;33768:101;;33818:51;33826:42;;;33818:7;:51::i;:::-;33768:101;33680:189;33882:43;33904:4;33910:2;33914:7;33923:1;33882:21;:43::i;:::-;34018:15;34015:160;;;34158:1;34137:19;34130:30;34015:160;34555:18;:24;34574:4;34555:24;;;;;;;;;;;;;;;;34553:26;;;;;;;;;;;;34624:18;:22;34643:2;34624:22;;;;;;;;;;;;;;;;34622:24;;;;;;;;;;;34946:146;34983:2;35032:45;35047:4;35053:2;35057:19;35032:14;:45::i;:::-;12232:8;35004:73;34946:18;:146::i;:::-;34917:17;:26;34935:7;34917:26;;;;;;;;;;;:175;;;;35263:1;12232:8;35212:19;:47;:52;35208:627;;35285:19;35317:1;35307:7;:11;35285:33;;35474:1;35440:17;:30;35458:11;35440:30;;;;;;;;;;;;:35;35436:384;;35578:13;;35563:11;:28;35559:242;;35758:19;35725:17;:30;35743:11;35725:30;;;;;;;;;;;:52;;;;35559:242;35436:384;35266:569;35208:627;35948:16;12634:14;35983:2;35967:20;;:39;35948:58;;36347:7;36311:8;36277:4;36219:25;36164:1;36107;36084:299;36420:1;36408:8;:13;36404:58;;36423:39;36431:30;;;36423:7;:39::i;:::-;36404:58;36475:42;36496:4;36502:2;36506:7;36515:1;36475:20;:42::i;:::-;33133:3392;;;;33002:3523;;;:::o;89951:140::-;63363:13;:11;:13::i;:::-;90023:5:::1;;;;;;;;;;;:14;;;90038:10;90050:6;90023:34;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;90015:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;89951:140:::0;:::o;88180:38::-;;;;:::o;36621:193::-;36767:39;36784:4;36790:2;36794:7;36767:39;;;;;;;;;;;;:16;:39::i;:::-;36621:193;;;:::o;88692:108::-;63363:13;:11;:13::i;:::-;88781:11:::1;;88771:7;:21;;;;;;;:::i;:::-;;88692:108:::0;;:::o;22892:152::-;22964:7;23007:27;23026:7;23007:18;:27::i;:::-;22984:52;;22892:152;;;:::o;88468:46::-;;;;:::o;88352:83::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18416:242::-;18488:7;18529:1;18512:19;;:5;:19;;;18508:69;;18533:44;18541:35;;;18533:7;:44::i;:::-;18508:69;11176:13;18595:18;:25;18614:5;18595:25;;;;;;;;;;;;;;;;:55;18588:62;;18416:242;;;:::o;64152:103::-;63363:13;:11;:13::i;:::-;64217:30:::1;64244:1;64217:18;:30::i;:::-;64152:103::o:0;90119:86::-;63363:13;:11;:13::i;:::-;90186:11:::1;;;;;;;;;;;90185:12;90171:11;;:26;;;;;;;;;;;;;;;;;;90119:86::o:0;63477:87::-;63523:7;63550:6;;;;;;;;;;;63543:13;;63477:87;:::o;21666:104::-;21722:13;21755:7;21748:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21666:104;:::o;29297:234::-;29444:8;29392:18;:39;29411:19;:17;:19::i;:::-;29392:39;;;;;;;;;;;;;;;:49;29432:8;29392:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29504:8;29468:55;;29483:19;:17;:19::i;:::-;29468:55;;;29514:8;29468:55;;;;;;:::i;:::-;;;;;;;;29297:234;;:::o;88279:27::-;;;;:::o;88225:47::-;;;;:::o;37412:416::-;37587:31;37600:4;37606:2;37610:7;37587:12;:31::i;:::-;37651:1;37633:2;:14;;;:19;37629:192;;37672:56;37703:4;37709:2;37713:7;37722:5;37672:30;:56::i;:::-;37667:154;;37749:56;37757:47;;;37749:7;:56::i;:::-;37667:154;37629:192;37412:416;;;;:::o;90226:527::-;90316:11;;;;;;;;;;;90308:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;90410:19;;90398:8;90370:25;90384:10;90370:13;:25::i;:::-;:36;;;;:::i;:::-;:59;;90362:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;90464:18;90497:8;90485:9;;:20;;;;:::i;:::-;90464:41;;90555:10;90524:5;;;;;;;;;;;:15;;;90540:10;90524:27;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:41;;90516:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;90607:5;;;;;;;;;;;:18;;;90626:10;90646:4;90653:10;90607:57;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;90599:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;90704:41;90724:10;90736:8;90704:19;:41::i;:::-;90297:456;90226:527;;;:::o;90759:113::-;63363:13;:11;:13::i;:::-;90823:41:::1;90843:10;90855:8;90823:19;:41::i;:::-;90759:113:::0;:::o;88806:905::-;88879:13;88905:26;89042:25;89059:7;89042:16;:25::i;:::-;88994:74;;;;;;;;:::i;:::-;;;;;;;;;;;;;88962:495;;;;;;;;:::i;:::-;;;;;;;;;;;;;89472:7;88934:556;;;;;;;;;:::i;:::-;;;;;;;;;;;;;88905:585;;89501:27;:34;;;;;;;;;;;;;;;;;;;89660:12;89674:13;89646:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;89566:137;;;;;;;;:::i;:::-;;;;;;;;;;;;;89546:157;;;;88806:905;;;:::o;88315:30::-;;;;;;;;;;;;;:::o;91204:112::-;91254:7;91294:14;:12;:14::i;:::-;91281:10;;:27;;;;:::i;:::-;91274:34;;91204:112;:::o;91083:115::-;91143:7;91170:20;91184:5;91170:13;:20::i;:::-;91163:27;;91083:115;;;:::o;29688:164::-;29785:4;29809:18;:25;29828:5;29809:25;;;;;;;;;;;;;;;:35;29835:8;29809:35;;;;;;;;;;;;;;;;;;;;;;;;;29802:42;;29688:164;;;;:::o;64410:220::-;63363:13;:11;:13::i;:::-;64515:1:::1;64495:22;;:8;:22;;::::0;64491:93:::1;;64569:1;64541:31;;;;;;;;;;;:::i;:::-;;;;;;;;64491:93;64594:28;64613:8;64594:18;:28::i;:::-;64410:220:::0;:::o;89837:108::-;63363:13;:11;:13::i;:::-;89924::::1;89912:9;:25;;;;89837:108:::0;:::o;88442:19::-;;;;;;;;;;;;;:::o;30110:475::-;30175:11;30222:7;30203:15;:13;:15::i;:::-;:26;30199:379;;30260:17;:15;:17::i;:::-;30250:7;:27;30246:90;;;30286:50;30309:17;:26;30327:7;30309:26;;;;;;;;;;;;30286:22;:50::i;:::-;30279:57;;;;30246:90;30367:13;;30357:7;:23;30353:214;;;30401:14;30434:60;30482:1;30451:17;:26;30469:7;30451:26;;;;;;;;;;;;30442:35;;;30441:42;30434:60;;30485:9;;;;:::i;:::-;;;30434:60;;;30550:1;11952:8;30522:6;:24;:29;30513:38;;30382:185;30353:214;30199:379;30110:475;;;;:::o;60619:165::-;60720:13;60714:4;60707:27;60761:4;60755;60748:18;52034:474;52163:13;52179:16;52187:7;52179;:16::i;:::-;52163:32;;52212:13;:45;;;;;52252:5;52229:28;;:19;:17;:19::i;:::-;:28;;;;52212:45;52208:201;;;52277:44;52294:5;52301:19;:17;:19::i;:::-;52277:16;:44::i;:::-;52272:137;;52342:51;52350:42;;;52342:7;:51::i;:::-;52272:137;52208:201;52454:2;52421:15;:24;52437:7;52421:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;52492:7;52488:2;52472:28;;52481:5;52472:28;;;;;;;;;;;;52152:356;52034:474;;;:::o;63642:166::-;63713:12;:10;:12::i;:::-;63702:23;;:7;:5;:7::i;:::-;:23;;;63698:103;;63776:12;:10;:12::i;:::-;63749:40;;;;;;;;;;;:::i;:::-;;;;;;;;63698:103;63642:166::o;88559:108::-;88624:7;88651:8;;88644:15;;88559:108;:::o;16190:110::-;16248:7;16275:17;16268:24;;16190:110;:::o;24377:2213::-;24444:14;24494:7;24475:15;:13;:15::i;:::-;:26;24471:2054;;24527:17;:26;24545:7;24527:26;;;;;;;;;;;;24518:35;;24584:17;:15;:17::i;:::-;24574:7;:27;24570:183;;;24626:30;24649:6;24626:22;:30::i;:::-;24658:13;24622:49;24690:47;24698:38;;;24690:7;:47::i;:::-;24570:183;24864:1;24854:6;:11;24850:1292;;24901:13;;24890:7;:24;24886:77;;24916:47;24924:38;;;24916:7;:47::i;:::-;24886:77;25520:607;25598:17;:28;25616:9;;;;;;;25598:28;;;;;;;;;;;;25589:37;;25686:1;25676:6;:11;25672:25;25689:8;25672:25;25752:1;11952:8;25724:6;:24;:29;25720:48;25755:13;25720:48;26060:47;26068:38;;;26060:7;:47::i;:::-;25520:607;;;24850:1292;26497:1;11952:8;26469:6;:24;:29;26465:48;26500:13;26465:48;24471:2054;26535:47;26543:38;;;26535:7;:47::i;:::-;24377:2213;;;;:::o;31897:485::-;31999:27;32028:23;32069:38;32110:15;:24;32126:7;32110:24;;;;;;;;;;;32069:65;;32287:18;32264:41;;32344:19;32338:26;32319:45;;32249:126;31897:485;;;:::o;58600:105::-;58660:7;58687:10;58680:17;;58600:105;:::o;31125:659::-;31274:11;31439:16;31432:5;31428:28;31419:37;;31599:16;31588:9;31584:32;31571:45;;31749:15;31738:9;31735:30;31727:5;31716:9;31713:20;31710:56;31700:66;;31125:659;;;;;:::o;38490:159::-;;;;;:::o;57909:311::-;58044:7;58064:16;12356:3;58090:19;:41;;58064:68;;12356:3;58158:31;58169:4;58175:2;58179:9;58158:10;:31::i;:::-;58150:40;;:62;;58143:69;;;57909:311;;;;;:::o;27138:450::-;27218:14;27386:16;27379:5;27375:28;27366:37;;27563:5;27549:11;27524:23;27520:41;27517:52;27510:5;27507:63;27497:73;;27138:450;;;;:::o;39314:158::-;;;;;:::o;64790:191::-;64864:16;64883:6;;;;;;;;;;;64864:25;;64909:8;64900:6;;:17;;;;;;;;;;;;;;;;;;64964:8;64933:40;;64954:8;64933:40;;;;;;;;;;;;64853:128;64790:191;:::o;39912:691::-;40075:4;40121:2;40096:45;;;40142:19;:17;:19::i;:::-;40163:4;40169:7;40178:5;40096:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40092:504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40396:1;40379:6;:13;:18;40375:115;;40418:56;40426:47;;;40418:7;:56::i;:::-;40375:115;40562:6;40556:13;40547:6;40543:2;40539:15;40532:38;40092:504;40265:54;;;40255:64;;;:6;:64;;;;40248:71;;;39912:691;;;;;;:::o;18740:178::-;18801:7;11176:13;11314:2;18829:18;:25;18848:5;18829:25;;;;;;;;;;;;;;;;:50;;18828:82;18821:89;;18740:178;;;:::o;90878:181::-;90993:10;;90981:8;90964:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:39;;90956:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;91032:19;91038:2;91042:8;91032:5;:19::i;:::-;90878:181;;:::o;82483:718::-;82539:13;82590:14;82627:1;82607:17;82618:5;82607:10;:17::i;:::-;:21;82590:38;;82643:20;82677:6;82666:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82643:41;;82699:11;82828:6;82824:2;82820:15;82812:6;82808:28;82801:35;;82865:290;82872:4;82865:290;;;82897:5;;;;;;;;83039:10;83034:2;83027:5;83023:14;83018:32;83013:3;83005:46;83097:2;83088:11;;;;;;:::i;:::-;;;;;83131:1;83122:5;:10;82865:290;83118:21;82865:290;83176:6;83169:13;;;;;82483:718;;;:::o;17363:385::-;17418:14;17634:15;:13;:15::i;:::-;17618:13;;:31;17609:40;;17689:17;17668;:15;:17::i;:::-;:38;17664:65;;17718:11;;17708:21;;;;17664:65;17363:385;:::o;30681:335::-;30751:11;30981:15;30973:6;30969:28;30950:16;30942:6;30938:29;30935:63;30925:73;;30681:335;;;:::o;61486:98::-;61539:7;61566:10;61559:17;;61486:98;:::o;57610:147::-;57747:6;57610:147;;;;;:::o;41065:2399::-;41138:20;41161:13;;41138:36;;41201:1;41189:8;:13;41185:53;;41204:34;41212:25;;;41204:7;:34::i;:::-;41185:53;41251:61;41281:1;41285:2;41289:12;41303:8;41251:21;:61::i;:::-;41785:139;41822:2;41876:33;41899:1;41903:2;41907:1;41876:14;:33::i;:::-;41843:30;41864:8;41843:20;:30::i;:::-;:66;41785:18;:139::i;:::-;41751:17;:31;41769:12;41751:31;;;;;;;;;;;:173;;;;42211:1;11314:2;42181:1;:26;;42180:32;42168:8;:45;42142:18;:22;42161:2;42142:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;42324:16;12634:14;42359:2;42343:20;;:39;42324:58;;42415:1;42403:8;:13;42399:54;;42418:35;42426:26;;;42418:7;:35::i;:::-;42399:54;42470:11;42499:8;42484:12;:23;42470:37;;42522:15;42540:12;42522:30;;42583:17;:15;:17::i;:::-;42579:1;42573:3;:7;:27;42569:77;;;42602:44;42610:35;;;42602:7;:44::i;:::-;42569:77;42663:676;43082:7;43038:8;42993:1;42927:25;42864:1;42799;42768:358;43334:3;43321:9;;;;;;:16;42663:676;;43371:3;43355:13;:19;;;;41500:1886;;;43396:60;43425:1;43429:2;43433:12;43447:8;43396:20;:60::i;:::-;41127:2337;41065:2399;;:::o;77547:948::-;77600:7;77620:14;77637:1;77620:18;;77687:8;77678:5;:17;77674:106;;77725:8;77716:17;;;;;;:::i;:::-;;;;;77762:2;77752:12;;;;77674:106;77807:8;77798:5;:17;77794:106;;77845:8;77836:17;;;;;;:::i;:::-;;;;;77882:2;77872:12;;;;77794:106;77927:8;77918:5;:17;77914:106;;77965:8;77956:17;;;;;;:::i;:::-;;;;;78002:2;77992:12;;;;77914:106;78047:7;78038:5;:16;78034:103;;78084:7;78075:16;;;;;;:::i;:::-;;;;;78120:1;78110:11;;;;78034:103;78164:7;78155:5;:16;78151:103;;78201:7;78192:16;;;;;;:::i;:::-;;;;;78237:1;78227:11;;;;78151:103;78281:7;78272:5;:16;78268:103;;78318:7;78309:16;;;;;;:::i;:::-;;;;;78354:1;78344:11;;;;78268:103;78398:7;78389:5;:16;78385:68;;78436:1;78426:11;;;;78385:68;78481:6;78474:13;;;77547:948;;;:::o;27690:324::-;27760:14;27993:1;27983:8;27980:15;27954:24;27950:46;27940:56;;27690:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:329::-;4949:6;4998:2;4986:9;4977:7;4973:23;4969:32;4966:119;;;5004:79;;:::i;:::-;4966:119;5124:1;5149:53;5194:7;5185:6;5174:9;5170:22;5149:53;:::i;:::-;5139:63;;5095:117;4890:329;;;;:::o;5225:118::-;5312:24;5330:5;5312:24;:::i;:::-;5307:3;5300:37;5225:118;;:::o;5349:222::-;5442:4;5480:2;5469:9;5465:18;5457:26;;5493:71;5561:1;5550:9;5546:17;5537:6;5493:71;:::i;:::-;5349:222;;;;:::o;5577:619::-;5654:6;5662;5670;5719:2;5707:9;5698:7;5694:23;5690:32;5687:119;;;5725:79;;:::i;:::-;5687:119;5845:1;5870:53;5915:7;5906:6;5895:9;5891:22;5870:53;:::i;:::-;5860:63;;5816:117;5972:2;5998:53;6043:7;6034:6;6023:9;6019:22;5998:53;:::i;:::-;5988:63;;5943:118;6100:2;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6071:118;5577:619;;;;;:::o;6202:117::-;6311:1;6308;6301:12;6325:117;6434:1;6431;6424:12;6448:117;6557:1;6554;6547:12;6585:553;6643:8;6653:6;6703:3;6696:4;6688:6;6684:17;6680:27;6670:122;;6711:79;;:::i;:::-;6670:122;6824:6;6811:20;6801:30;;6854:18;6846:6;6843:30;6840:117;;;6876:79;;:::i;:::-;6840:117;6990:4;6982:6;6978:17;6966:29;;7044:3;7036:4;7028:6;7024:17;7014:8;7010:32;7007:41;7004:128;;;7051:79;;:::i;:::-;7004:128;6585:553;;;;;:::o;7144:529::-;7215:6;7223;7272:2;7260:9;7251:7;7247:23;7243:32;7240:119;;;7278:79;;:::i;:::-;7240:119;7426:1;7415:9;7411:17;7398:31;7456:18;7448:6;7445:30;7442:117;;;7478:79;;:::i;:::-;7442:117;7591:65;7648:7;7639:6;7628:9;7624:22;7591:65;:::i;:::-;7573:83;;;;7369:297;7144:529;;;;;:::o;7679:116::-;7749:21;7764:5;7749:21;:::i;:::-;7742:5;7739:32;7729:60;;7785:1;7782;7775:12;7729:60;7679:116;:::o;7801:133::-;7844:5;7882:6;7869:20;7860:29;;7898:30;7922:5;7898:30;:::i;:::-;7801:133;;;;:::o;7940:468::-;8005:6;8013;8062:2;8050:9;8041:7;8037:23;8033:32;8030:119;;;8068:79;;:::i;:::-;8030:119;8188:1;8213:53;8258:7;8249:6;8238:9;8234:22;8213:53;:::i;:::-;8203:63;;8159:117;8315:2;8341:50;8383:7;8374:6;8363:9;8359:22;8341:50;:::i;:::-;8331:60;;8286:115;7940:468;;;;;:::o;8414:117::-;8523:1;8520;8513:12;8537:180;8585:77;8582:1;8575:88;8682:4;8679:1;8672:15;8706:4;8703:1;8696:15;8723:281;8806:27;8828:4;8806:27;:::i;:::-;8798:6;8794:40;8936:6;8924:10;8921:22;8900:18;8888:10;8885:34;8882:62;8879:88;;;8947:18;;:::i;:::-;8879:88;8987:10;8983:2;8976:22;8766:238;8723:281;;:::o;9010:129::-;9044:6;9071:20;;:::i;:::-;9061:30;;9100:33;9128:4;9120:6;9100:33;:::i;:::-;9010:129;;;:::o;9145:307::-;9206:4;9296:18;9288:6;9285:30;9282:56;;;9318:18;;:::i;:::-;9282:56;9356:29;9378:6;9356:29;:::i;:::-;9348:37;;9440:4;9434;9430:15;9422:23;;9145:307;;;:::o;9458:146::-;9555:6;9550:3;9545;9532:30;9596:1;9587:6;9582:3;9578:16;9571:27;9458:146;;;:::o;9610:423::-;9687:5;9712:65;9728:48;9769:6;9728:48;:::i;:::-;9712:65;:::i;:::-;9703:74;;9800:6;9793:5;9786:21;9838:4;9831:5;9827:16;9876:3;9867:6;9862:3;9858:16;9855:25;9852:112;;;9883:79;;:::i;:::-;9852:112;9973:54;10020:6;10015:3;10010;9973:54;:::i;:::-;9693:340;9610:423;;;;;:::o;10052:338::-;10107:5;10156:3;10149:4;10141:6;10137:17;10133:27;10123:122;;10164:79;;:::i;:::-;10123:122;10281:6;10268:20;10306:78;10380:3;10372:6;10365:4;10357:6;10353:17;10306:78;:::i;:::-;10297:87;;10113:277;10052:338;;;;:::o;10396:943::-;10491:6;10499;10507;10515;10564:3;10552:9;10543:7;10539:23;10535:33;10532:120;;;10571:79;;:::i;:::-;10532:120;10691:1;10716:53;10761:7;10752:6;10741:9;10737:22;10716:53;:::i;:::-;10706:63;;10662:117;10818:2;10844:53;10889:7;10880:6;10869:9;10865:22;10844:53;:::i;:::-;10834:63;;10789:118;10946:2;10972:53;11017:7;11008:6;10997:9;10993:22;10972:53;:::i;:::-;10962:63;;10917:118;11102:2;11091:9;11087:18;11074:32;11133:18;11125:6;11122:30;11119:117;;;11155:79;;:::i;:::-;11119:117;11260:62;11314:7;11305:6;11294:9;11290:22;11260:62;:::i;:::-;11250:72;;11045:287;10396:943;;;;;;;:::o;11362:568::-;11435:8;11445:6;11495:3;11488:4;11480:6;11476:17;11472:27;11462:122;;11503:79;;:::i;:::-;11462:122;11616:6;11603:20;11593:30;;11646:18;11638:6;11635:30;11632:117;;;11668:79;;:::i;:::-;11632:117;11782:4;11774:6;11770:17;11758:29;;11836:3;11828:4;11820:6;11816:17;11806:8;11802:32;11799:41;11796:128;;;11843:79;;:::i;:::-;11796:128;11362:568;;;;;:::o;11936:704::-;12031:6;12039;12047;12096:2;12084:9;12075:7;12071:23;12067:32;12064:119;;;12102:79;;:::i;:::-;12064:119;12222:1;12247:53;12292:7;12283:6;12272:9;12268:22;12247:53;:::i;:::-;12237:63;;12193:117;12377:2;12366:9;12362:18;12349:32;12408:18;12400:6;12397:30;12394:117;;;12430:79;;:::i;:::-;12394:117;12543:80;12615:7;12606:6;12595:9;12591:22;12543:80;:::i;:::-;12525:98;;;;12320:313;11936:704;;;;;:::o;12646:474::-;12714:6;12722;12771:2;12759:9;12750:7;12746:23;12742:32;12739:119;;;12777:79;;:::i;:::-;12739:119;12897:1;12922:53;12967:7;12958:6;12947:9;12943:22;12922:53;:::i;:::-;12912:63;;12868:117;13024:2;13050:53;13095:7;13086:6;13075:9;13071:22;13050:53;:::i;:::-;13040:63;;12995:118;12646:474;;;;;:::o;13126:60::-;13154:3;13175:5;13168:12;;13126:60;;;:::o;13192:142::-;13242:9;13275:53;13293:34;13302:24;13320:5;13302:24;:::i;:::-;13293:34;:::i;:::-;13275:53;:::i;:::-;13262:66;;13192:142;;;:::o;13340:126::-;13390:9;13423:37;13454:5;13423:37;:::i;:::-;13410:50;;13340:126;;;:::o;13472:141::-;13537:9;13570:37;13601:5;13570:37;:::i;:::-;13557:50;;13472:141;;;:::o;13619:161::-;13721:52;13767:5;13721:52;:::i;:::-;13716:3;13709:65;13619:161;;:::o;13786:252::-;13894:4;13932:2;13921:9;13917:18;13909:26;;13945:86;14028:1;14017:9;14013:17;14004:6;13945:86;:::i;:::-;13786:252;;;;:::o;14044:180::-;14092:77;14089:1;14082:88;14189:4;14186:1;14179:15;14213:4;14210:1;14203:15;14230:320;14274:6;14311:1;14305:4;14301:12;14291:22;;14358:1;14352:4;14348:12;14379:18;14369:81;;14435:4;14427:6;14423:17;14413:27;;14369:81;14497:2;14489:6;14486:14;14466:18;14463:38;14460:84;;14516:18;;:::i;:::-;14460:84;14281:269;14230:320;;;:::o;14556:332::-;14677:4;14715:2;14704:9;14700:18;14692:26;;14728:71;14796:1;14785:9;14781:17;14772:6;14728:71;:::i;:::-;14809:72;14877:2;14866:9;14862:18;14853:6;14809:72;:::i;:::-;14556:332;;;;;:::o;14894:137::-;14948:5;14979:6;14973:13;14964:22;;14995:30;15019:5;14995:30;:::i;:::-;14894:137;;;;:::o;15037:345::-;15104:6;15153:2;15141:9;15132:7;15128:23;15124:32;15121:119;;;15159:79;;:::i;:::-;15121:119;15279:1;15304:61;15357:7;15348:6;15337:9;15333:22;15304:61;:::i;:::-;15294:71;;15250:125;15037:345;;;;:::o;15388:171::-;15528:23;15524:1;15516:6;15512:14;15505:47;15388:171;:::o;15565:366::-;15707:3;15728:67;15792:2;15787:3;15728:67;:::i;:::-;15721:74;;15804:93;15893:3;15804:93;:::i;:::-;15922:2;15917:3;15913:12;15906:19;;15565:366;;;:::o;15937:419::-;16103:4;16141:2;16130:9;16126:18;16118:26;;16190:9;16184:4;16180:20;16176:1;16165:9;16161:17;16154:47;16218:131;16344:4;16218:131;:::i;:::-;16210:139;;15937:419;;;:::o;16362:97::-;16421:6;16449:3;16439:13;;16362:97;;;;:::o;16465:141::-;16514:4;16537:3;16529:11;;16560:3;16557:1;16550:14;16594:4;16591:1;16581:18;16573:26;;16465:141;;;:::o;16612:93::-;16649:6;16696:2;16691;16684:5;16680:14;16676:23;16666:33;;16612:93;;;:::o;16711:107::-;16755:8;16805:5;16799:4;16795:16;16774:37;;16711:107;;;;:::o;16824:393::-;16893:6;16943:1;16931:10;16927:18;16966:97;16996:66;16985:9;16966:97;:::i;:::-;17084:39;17114:8;17103:9;17084:39;:::i;:::-;17072:51;;17156:4;17152:9;17145:5;17141:21;17132:30;;17205:4;17195:8;17191:19;17184:5;17181:30;17171:40;;16900:317;;16824:393;;;;;:::o;17223:142::-;17273:9;17306:53;17324:34;17333:24;17351:5;17333:24;:::i;:::-;17324:34;:::i;:::-;17306:53;:::i;:::-;17293:66;;17223:142;;;:::o;17371:75::-;17414:3;17435:5;17428:12;;17371:75;;;:::o;17452:269::-;17562:39;17593:7;17562:39;:::i;:::-;17623:91;17672:41;17696:16;17672:41;:::i;:::-;17664:6;17657:4;17651:11;17623:91;:::i;:::-;17617:4;17610:105;17528:193;17452:269;;;:::o;17727:73::-;17772:3;17727:73;:::o;17806:189::-;17883:32;;:::i;:::-;17924:65;17982:6;17974;17968:4;17924:65;:::i;:::-;17859:136;17806:189;;:::o;18001:186::-;18061:120;18078:3;18071:5;18068:14;18061:120;;;18132:39;18169:1;18162:5;18132:39;:::i;:::-;18105:1;18098:5;18094:13;18085:22;;18061:120;;;18001:186;;:::o;18193:543::-;18294:2;18289:3;18286:11;18283:446;;;18328:38;18360:5;18328:38;:::i;:::-;18412:29;18430:10;18412:29;:::i;:::-;18402:8;18398:44;18595:2;18583:10;18580:18;18577:49;;;18616:8;18601:23;;18577:49;18639:80;18695:22;18713:3;18695:22;:::i;:::-;18685:8;18681:37;18668:11;18639:80;:::i;:::-;18298:431;;18283:446;18193:543;;;:::o;18742:117::-;18796:8;18846:5;18840:4;18836:16;18815:37;;18742:117;;;;:::o;18865:169::-;18909:6;18942:51;18990:1;18986:6;18978:5;18975:1;18971:13;18942:51;:::i;:::-;18938:56;19023:4;19017;19013:15;19003:25;;18916:118;18865:169;;;;:::o;19039:295::-;19115:4;19261:29;19286:3;19280:4;19261:29;:::i;:::-;19253:37;;19323:3;19320:1;19316:11;19310:4;19307:21;19299:29;;19039:295;;;;:::o;19339:1403::-;19463:44;19503:3;19498;19463:44;:::i;:::-;19572:18;19564:6;19561:30;19558:56;;;19594:18;;:::i;:::-;19558:56;19638:38;19670:4;19664:11;19638:38;:::i;:::-;19723:67;19783:6;19775;19769:4;19723:67;:::i;:::-;19817:1;19846:2;19838:6;19835:14;19863:1;19858:632;;;;20534:1;20551:6;20548:84;;;20607:9;20602:3;20598:19;20585:33;20576:42;;20548:84;20658:67;20718:6;20711:5;20658:67;:::i;:::-;20652:4;20645:81;20507:229;19828:908;;19858:632;19910:4;19906:9;19898:6;19894:22;19944:37;19976:4;19944:37;:::i;:::-;20003:1;20017:215;20031:7;20028:1;20025:14;20017:215;;;20117:9;20112:3;20108:19;20095:33;20087:6;20080:49;20168:1;20160:6;20156:14;20146:24;;20215:2;20204:9;20200:18;20187:31;;20054:4;20051:1;20047:12;20042:17;;20017:215;;;20260:6;20251:7;20248:19;20245:186;;;20325:9;20320:3;20316:19;20303:33;20368:48;20410:4;20402:6;20398:17;20387:9;20368:48;:::i;:::-;20360:6;20353:64;20268:163;20245:186;20477:1;20473;20465:6;20461:14;20457:22;20451:4;20444:36;19865:625;;;19828:908;;19438:1304;;;19339:1403;;;:::o;20748:169::-;20888:21;20884:1;20876:6;20872:14;20865:45;20748:169;:::o;20923:366::-;21065:3;21086:67;21150:2;21145:3;21086:67;:::i;:::-;21079:74;;21162:93;21251:3;21162:93;:::i;:::-;21280:2;21275:3;21271:12;21264:19;;20923:366;;;:::o;21295:419::-;21461:4;21499:2;21488:9;21484:18;21476:26;;21548:9;21542:4;21538:20;21534:1;21523:9;21519:17;21512:47;21576:131;21702:4;21576:131;:::i;:::-;21568:139;;21295:419;;;:::o;21720:180::-;21768:77;21765:1;21758:88;21865:4;21862:1;21855:15;21889:4;21886:1;21879:15;21906:191;21946:3;21965:20;21983:1;21965:20;:::i;:::-;21960:25;;21999:20;22017:1;21999:20;:::i;:::-;21994:25;;22042:1;22039;22035:9;22028:16;;22063:3;22060:1;22057:10;22054:36;;;22070:18;;:::i;:::-;22054:36;21906:191;;;;:::o;22103:167::-;22243:19;22239:1;22231:6;22227:14;22220:43;22103:167;:::o;22276:366::-;22418:3;22439:67;22503:2;22498:3;22439:67;:::i;:::-;22432:74;;22515:93;22604:3;22515:93;:::i;:::-;22633:2;22628:3;22624:12;22617:19;;22276:366;;;:::o;22648:419::-;22814:4;22852:2;22841:9;22837:18;22829:26;;22901:9;22895:4;22891:20;22887:1;22876:9;22872:17;22865:47;22929:131;23055:4;22929:131;:::i;:::-;22921:139;;22648:419;;;:::o;23073:410::-;23113:7;23136:20;23154:1;23136:20;:::i;:::-;23131:25;;23170:20;23188:1;23170:20;:::i;:::-;23165:25;;23225:1;23222;23218:9;23247:30;23265:11;23247:30;:::i;:::-;23236:41;;23426:1;23417:7;23413:15;23410:1;23407:22;23387:1;23380:9;23360:83;23337:139;;23456:18;;:::i;:::-;23337:139;23121:362;23073:410;;;;:::o;23489:143::-;23546:5;23577:6;23571:13;23562:22;;23593:33;23620:5;23593:33;:::i;:::-;23489:143;;;;:::o;23638:351::-;23708:6;23757:2;23745:9;23736:7;23732:23;23728:32;23725:119;;;23763:79;;:::i;:::-;23725:119;23883:1;23908:64;23964:7;23955:6;23944:9;23940:22;23908:64;:::i;:::-;23898:74;;23854:128;23638:351;;;;:::o;23995:168::-;24135:20;24131:1;24123:6;24119:14;24112:44;23995:168;:::o;24169:366::-;24311:3;24332:67;24396:2;24391:3;24332:67;:::i;:::-;24325:74;;24408:93;24497:3;24408:93;:::i;:::-;24526:2;24521:3;24517:12;24510:19;;24169:366;;;:::o;24541:419::-;24707:4;24745:2;24734:9;24730:18;24722:26;;24794:9;24788:4;24784:20;24780:1;24769:9;24765:17;24758:47;24822:131;24948:4;24822:131;:::i;:::-;24814:139;;24541:419;;;:::o;24966:442::-;25115:4;25153:2;25142:9;25138:18;25130:26;;25166:71;25234:1;25223:9;25219:17;25210:6;25166:71;:::i;:::-;25247:72;25315:2;25304:9;25300:18;25291:6;25247:72;:::i;:::-;25329;25397:2;25386:9;25382:18;25373:6;25329:72;:::i;:::-;24966:442;;;;;;:::o;25414:164::-;25554:16;25550:1;25542:6;25538:14;25531:40;25414:164;:::o;25584:366::-;25726:3;25747:67;25811:2;25806:3;25747:67;:::i;:::-;25740:74;;25823:93;25912:3;25823:93;:::i;:::-;25941:2;25936:3;25932:12;25925:19;;25584:366;;;:::o;25956:419::-;26122:4;26160:2;26149:9;26145:18;26137:26;;26209:9;26203:4;26199:20;26195:1;26184:9;26180:17;26173:47;26237:131;26363:4;26237:131;:::i;:::-;26229:139;;25956:419;;;:::o;26381:242::-;26550:66;26545:3;26538:79;26381:242;:::o;26629:148::-;26731:11;26768:3;26753:18;;26629:148;;;;:::o;26783:390::-;26889:3;26917:39;26950:5;26917:39;:::i;:::-;26972:89;27054:6;27049:3;26972:89;:::i;:::-;26965:96;;27070:65;27128:6;27123:3;27116:4;27109:5;27105:16;27070:65;:::i;:::-;27160:6;27155:3;27151:16;27144:23;;26893:280;26783:390;;;;:::o;27179:542::-;27402:3;27417:138;27551:3;27417:138;:::i;:::-;27580:2;27575:3;27571:12;27564:19;;27600:95;27691:3;27682:6;27600:95;:::i;:::-;27593:102;;27712:3;27705:10;;27179:542;;;;:::o;27727:943::-;27867:66;27863:1;27855:6;27851:14;27844:90;27968:34;27963:2;27955:6;27951:15;27944:59;28037:34;28032:2;28024:6;28020:15;28013:59;28106:34;28101:2;28093:6;28089:15;28082:59;28176:34;28170:3;28162:6;28158:16;28151:60;28246:34;28240:3;28232:6;28228:16;28221:60;28316:34;28310:3;28302:6;28298:16;28291:60;28386:34;28380:3;28372:6;28368:16;28361:60;28456:34;28450:3;28442:6;28438:16;28431:60;28526:34;28520:3;28512:6;28508:16;28501:60;28596:66;28590:3;28582:6;28578:16;28571:92;27727:943;:::o;28676:404::-;28836:3;28857:86;28939:3;28934;28857:86;:::i;:::-;28850:93;;28952;29041:3;28952:93;:::i;:::-;29070:3;29065;29061:13;29054:20;;28676:404;;;:::o;29086:541::-;29319:3;29341:95;29432:3;29423:6;29341:95;:::i;:::-;29334:102;;29453:148;29597:3;29453:148;:::i;:::-;29446:155;;29618:3;29611:10;;29086:541;;;;:::o;29657:874::-;29760:3;29797:5;29791:12;29826:36;29852:9;29826:36;:::i;:::-;29878:89;29960:6;29955:3;29878:89;:::i;:::-;29871:96;;29998:1;29987:9;29983:17;30014:1;30009:166;;;;30189:1;30184:341;;;;29976:549;;30009:166;30093:4;30089:9;30078;30074:25;30069:3;30062:38;30155:6;30148:14;30141:22;30133:6;30129:35;30124:3;30120:45;30113:52;;30009:166;;30184:341;30251:38;30283:5;30251:38;:::i;:::-;30311:1;30325:154;30339:6;30336:1;30333:13;30325:154;;;30413:7;30407:14;30403:1;30398:3;30394:11;30387:35;30463:1;30454:7;30450:15;30439:26;;30361:4;30358:1;30354:12;30349:17;;30325:154;;;30508:6;30503:3;30499:16;30492:23;;30191:334;;29976:549;;29764:767;;29657:874;;;;:::o;30537:429::-;30714:3;30736:95;30827:3;30818:6;30736:95;:::i;:::-;30729:102;;30848:92;30936:3;30927:6;30848:92;:::i;:::-;30841:99;;30957:3;30950:10;;30537:429;;;;;:::o;30972:435::-;31152:3;31174:95;31265:3;31256:6;31174:95;:::i;:::-;31167:102;;31286:95;31377:3;31368:6;31286:95;:::i;:::-;31279:102;;31398:3;31391:10;;30972:435;;;;;:::o;31413:205::-;31582:29;31577:3;31570:42;31413:205;:::o;31624:542::-;31847:3;31862:138;31996:3;31862:138;:::i;:::-;32025:2;32020:3;32016:12;32009:19;;32045:95;32136:3;32127:6;32045:95;:::i;:::-;32038:102;;32157:3;32150:10;;31624:542;;;;:::o;32172:194::-;32212:4;32232:20;32250:1;32232:20;:::i;:::-;32227:25;;32266:20;32284:1;32266:20;:::i;:::-;32261:25;;32310:1;32307;32303:9;32295:17;;32334:1;32328:4;32325:11;32322:37;;;32339:18;;:::i;:::-;32322:37;32172:194;;;;:::o;32372:171::-;32411:3;32434:24;32452:5;32434:24;:::i;:::-;32425:33;;32480:4;32473:5;32470:15;32467:41;;32488:18;;:::i;:::-;32467:41;32535:1;32528:5;32524:13;32517:20;;32372:171;;;:::o;32549:98::-;32600:6;32634:5;32628:12;32618:22;;32549:98;;;:::o;32653:168::-;32736:11;32770:6;32765:3;32758:19;32810:4;32805:3;32801:14;32786:29;;32653:168;;;;:::o;32827:373::-;32913:3;32941:38;32973:5;32941:38;:::i;:::-;32995:70;33058:6;33053:3;32995:70;:::i;:::-;32988:77;;33074:65;33132:6;33127:3;33120:4;33113:5;33109:16;33074:65;:::i;:::-;33164:29;33186:6;33164:29;:::i;:::-;33159:3;33155:39;33148:46;;32917:283;32827:373;;;;:::o;33206:640::-;33401:4;33439:3;33428:9;33424:19;33416:27;;33453:71;33521:1;33510:9;33506:17;33497:6;33453:71;:::i;:::-;33534:72;33602:2;33591:9;33587:18;33578:6;33534:72;:::i;:::-;33616;33684:2;33673:9;33669:18;33660:6;33616:72;:::i;:::-;33735:9;33729:4;33725:20;33720:2;33709:9;33705:18;33698:48;33763:76;33834:4;33825:6;33763:76;:::i;:::-;33755:84;;33206:640;;;;;;;:::o;33852:141::-;33908:5;33939:6;33933:13;33924:22;;33955:32;33981:5;33955:32;:::i;:::-;33852:141;;;;:::o;33999:349::-;34068:6;34117:2;34105:9;34096:7;34092:23;34088:32;34085:119;;;34123:79;;:::i;:::-;34085:119;34243:1;34268:63;34323:7;34314:6;34303:9;34299:22;34268:63;:::i;:::-;34258:73;;34214:127;33999:349;;;;:::o;34354:161::-;34494:13;34490:1;34482:6;34478:14;34471:37;34354:161;:::o;34521:366::-;34663:3;34684:67;34748:2;34743:3;34684:67;:::i;:::-;34677:74;;34760:93;34849:3;34760:93;:::i;:::-;34878:2;34873:3;34869:12;34862:19;;34521:366;;;:::o;34893:419::-;35059:4;35097:2;35086:9;35082:18;35074:26;;35146:9;35140:4;35136:20;35132:1;35121:9;35117:17;35110:47;35174:131;35300:4;35174:131;:::i;:::-;35166:139;;34893:419;;;:::o;35318:180::-;35366:77;35363:1;35356:88;35463:4;35460:1;35453:15;35487:4;35484:1;35477:15

Swarm Source

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