ETH Price: $2,877.97 (-5.68%)
Gas: 1 Gwei

Token

oAliens (oAliens)
 

Overview

Max Total Supply

73 oAliens

Holders

24

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
airdrophuntersfuckit.eth
Balance
3 oAliens
0xf9a69e54dbee886ff3e40e61d1b219aa9b0c962b
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
OALIENS

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-08
*/

// File: operator-filter-registry/src/lib/Constants.sol


pragma solidity ^0.8.13;

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

// File: operator-filter-registry/src/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}

// File: operator-filter-registry/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

    /// @dev The constructor that is called when the contract is being deployed.
    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @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 up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (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; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

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

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            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 (rounding == Rounding.Up && 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 down.
     *
     * 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 + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * 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 + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * 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 + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * 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 10, 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 + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


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

pragma solidity ^0.8.0;


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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        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), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @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) {
        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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/oaliens.sol



pragma solidity ^0.8.13;






contract OALIENS is Ownable, ReentrancyGuard, ERC721A, OperatorFilterer {
    using Strings for uint256;

    address private addressWithdraw;
    address[] private allowList = [
        0xc05B257E8C3b0F1a53a184bEbFA9690c040A87D6,
        0x0DFf09A6733a12366236E62111a4cE93c475Db78,
        0x2da7AfF686CC970E2d3305047B2231a0B7D3242b,
        0xDA595247Ca68b3328632e14B6ba67E907A804860,
        0xd20bcF354aA24Cc86cFf14C095563C7aCe643D6d,
        0xF9a69E54dBEe886fF3e40e61D1b219aa9B0c962B,
        0x6189AB143Bf453d356B5A9B714bf8f91ec6F8514,
        0xC5582991eD1F8Ece6D7826513AfEBB974a217727,
        0x176F54c87491c5C38B219Ca5b8ea50e71bA8E5C8,
        0xa15e3D9B6B82C6fb0DE0cF03231E4d22BA3ae663,
        0x94B5316081Af50d8F53671795bc6cEBfD413927b,
        0xFD7208b28F596211F64DF4c06e0b17E37bc690f0,
        0x3afE6D0410DcDD8F4959309A43a141664414b7bC,
        0xBfac072BBe9AC683521B8DA6635e6faDF053C5A1,
        0xfFE500927dBB171aBDdAb384e1D1754338CCa121,
        0xF2d7428cbC6025D0982572F4fEA8DEf63dEFc273,
        0xf145E52DE07eA185c12bf252D3A8b35A5b98f8ea,
        0x242B12Fc5aD25b94Ef81a3E0192c2C335128120E,
        0xe318c9C6026CC59Fd61fD55264207858E25125f3
    ];

    // Sales configs
    uint256 public maxPerAddress = 3;
    uint256 public maxSupply = 100;
    
    // Metadata uris
    string public baseURI = "notclaimed/";
    string public claimedBaseURI = "claimed/";

    mapping(uint256 => bool) public claimedTokens;

    constructor(
    ) ERC721A("oAliens", "oAliens") OperatorFilterer(address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6), false)  {
        // Set variables
    }

    function mintInternal(address to, uint256 quantity) private {
        require(_nextTokenId() + quantity <= maxSupply, "This amount of tokens would surpass the max supply.");

        _mint(to, quantity);
    }

    function mint(uint256 quantity) external payable {
        require(quantity + _numberMinted(msg.sender) <= maxPerAddress, "User already minted max per address");
        require(verifyAllowlist(msg.sender), "Account not eligible for claim.");

        mintInternal(msg.sender, quantity);
    }

    function giveaway(address to, uint256 quantity) external onlyOwner {
        mintInternal(to, quantity);
    }

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

        if(claimedTokens[tokenId]) return string(abi.encodePacked(claimedBaseURI, tokenId.toString(), ".json"));
        else return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

    function setBaseURI(string calldata _baseURI, string calldata _claimedBaseURI) external onlyOwner {
        baseURI = _baseURI;
        claimedBaseURI = _claimedBaseURI;
    }

    function setList(address[] calldata _allowList) external onlyOwner {
        allowList = _allowList;
    }

    function setMaxSupply(uint256 _maxSupply) external onlyOwner {
        maxSupply = _maxSupply;
    }

    function setClaimed(uint256 tokenId) external {
        require(!claimedTokens[tokenId], "this token has already been claimed");
        require(ownerOf(tokenId) == msg.sender, "User doesn't own nft");

        claimedTokens[tokenId] = true;
    }

    function setMax(uint256 _maxPerAddress) external onlyOwner {
        maxPerAddress = _maxPerAddress;
    }

    function verifyAllowlist(address to) internal view returns (bool) {
        for(uint16 i = 0; i < allowList.length; i++) {
            if(to == allowList[i]) return true;
        }

        return false;
    }

    function withdrawMoney() external onlyOwner {           
        (bool success, ) = addressWithdraw.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    function burn(uint256[] calldata tokensId) external {
        for(uint8 i = 0; i < tokensId.length; i++){
            require(ownerOf(tokensId[i]) == msg.sender, "User doesn't own nft");
            _burn(tokensId[i]);
        }
    }

    function transferFrom(address from, address to, uint256 tokenId) public override (ERC721A) payable onlyAllowedOperator(from)
    {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override (ERC721A) payable onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override (ERC721A) payable onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokensId","type":"uint256[]"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimedBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimedTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"string","name":"_claimedBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"setClaimed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_allowList","type":"address[]"}],"name":"setList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerAddress","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6102e060405273c05b257e8c3b0f1a53a184bebfa9690c040a87d66080908152730dff09a6733a12366236e62111a4ce93c475db7860a052732da7aff686cc970e2d3305047b2231a0b7d3242b60c05273da595247ca68b3328632e14b6ba67e907a80486060e05273d20bcf354aa24cc86cff14c095563c7ace643d6d6101005273f9a69e54dbee886ff3e40e61d1b219aa9b0c962b61012052736189ab143bf453d356b5a9b714bf8f91ec6f85146101405273c5582991ed1f8ece6d7826513afebb974a2177276101605273176f54c87491c5c38b219ca5b8ea50e71ba8e5c86101805273a15e3d9b6b82c6fb0de0cf03231e4d22ba3ae6636101a0527394b5316081af50d8f53671795bc6cebfd413927b6101c05273fd7208b28f596211f64df4c06e0b17e37bc690f06101e052733afe6d0410dcdd8f4959309a43a141664414b7bc6102005273bfac072bbe9ac683521b8da6635e6fadf053c5a16102205273ffe500927dbb171abddab384e1d1754338cca1216102405273f2d7428cbc6025d0982572f4fea8def63defc2736102605273f145e52de07ea185c12bf252d3a8b35a5b98f8ea6102805273242b12fc5ad25b94ef81a3e0192c2c335128120e6102a05273e318c9c6026cc59fd61fd55264207858e25125f36102c052620001ee90600b906013620004b7565b506003600c556064600d5560408051808201909152600b8082526a6e6f74636c61696d65642f60a81b60209092019182526200022d91600e9162000521565b5060408051808201909152600880825267636c61696d65642f60c01b60209092019182526200025f91600f9162000521565b503480156200026d57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb66000604051806040016040528060078152602001666f416c69656e7360c81b815250604051806040016040528060078152602001666f416c69656e7360c81b815250620002df620002d96200046360201b60201c565b62000467565b600180558151620002f890600490602085019062000521565b5080516200030e90600590602084019062000521565b50600060025550506daaeb6d7670e522a718067333cd4e3b156200045b578015620003a957604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200038a57600080fd5b505af11580156200039f573d6000803e3d6000fd5b505050506200045b565b6001600160a01b03821615620003fa5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200036f565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200044157600080fd5b505af115801562000456573d6000803e3d6000fd5b505050505b5050620005f1565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280548282559060005260206000209081019282156200050f579160200282015b828111156200050f57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620004d8565b506200051d9291506200059e565b5090565b8280546200052f90620005b5565b90600052602060002090601f0160209004810192826200055357600085556200050f565b82601f106200056e57805160ff19168380011785556200050f565b828001600101855582156200050f579182015b828111156200050f57825182559160200191906001019062000581565b5b808211156200051d57600081556001016200059f565b600181811c90821680620005ca57607f821691505b602082108103620005eb57634e487b7160e01b600052602260045260246000fd5b50919050565b611fb680620006016000396000f3fe6080604052600436106101e35760003560e01c8063715018a611610102578063c55ffd7b11610095578063e5a342a311610064578063e5a342a314610510578063e7aa0bd714610540578063e985e9c514610560578063f2fde38b146105a957600080fd5b8063c55ffd7b146104a5578063c87b56dd146104ba578063cc7241b5146104da578063d5abeb01146104fa57600080fd5b8063a22cb465116100d1578063a22cb4651461043d578063ac4460021461045d578063b80f55c914610472578063b88d4fde1461049257600080fd5b8063715018a6146103e25780638da5cb5b146103f757806395d89b4114610415578063a0712d681461042a57600080fd5b806341f434341161017a5780636790a9de116101495780636790a9de1461036d5780636c0360eb1461038d5780636f8b44b0146103a257806370a08231146103c257600080fd5b806341f434341461030257806342842e0e146103245780636352211e14610337578063639814e01461035757600080fd5b8063095ea7b3116101b6578063095ea7b31461029957806318160ddd146102ac5780631fe9eabc146102cf57806323b872dd146102ef57600080fd5b806301ffc9a7146101e8578063050225ea1461021d57806306fdde031461023f578063081812fc14610261575b600080fd5b3480156101f457600080fd5b5061020861020336600461197f565b6105c9565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023d6102383660046119b3565b61061b565b005b34801561024b57600080fd5b50610254610631565b6040516102149190611a35565b34801561026d57600080fd5b5061028161027c366004611a48565b6106c3565b6040516001600160a01b039091168152602001610214565b61023d6102a73660046119b3565b610707565b3480156102b857600080fd5b50600354600254035b604051908152602001610214565b3480156102db57600080fd5b5061023d6102ea366004611a48565b6107b4565b61023d6102fd366004611a61565b6107c1565b34801561030e57600080fd5b506102816daaeb6d7670e522a718067333cd4e81565b61023d610332366004611a61565b6107ec565b34801561034357600080fd5b50610281610352366004611a48565b610811565b34801561036357600080fd5b506102c1600c5481565b34801561037957600080fd5b5061023d610388366004611ae6565b61081c565b34801561039957600080fd5b50610254610844565b3480156103ae57600080fd5b5061023d6103bd366004611a48565b6108d2565b3480156103ce57600080fd5b506102c16103dd366004611b52565b6108df565b3480156103ee57600080fd5b5061023d61092e565b34801561040357600080fd5b506000546001600160a01b0316610281565b34801561042157600080fd5b50610254610942565b61023d610438366004611a48565b610951565b34801561044957600080fd5b5061023d610458366004611b7b565b610a3c565b34801561046957600080fd5b5061023d610aa8565b34801561047e57600080fd5b5061023d61048d366004611bf7565b610b53565b61023d6104a0366004611c4f565b610c17565b3480156104b157600080fd5b50610254610c3d565b3480156104c657600080fd5b506102546104d5366004611a48565b610c4a565b3480156104e657600080fd5b5061023d6104f5366004611bf7565b610d20565b34801561050657600080fd5b506102c1600d5481565b34801561051c57600080fd5b5061020861052b366004611a48565b60106020526000908152604090205460ff1681565b34801561054c57600080fd5b5061023d61055b366004611a48565b610d34565b34801561056c57600080fd5b5061020861057b366004611d2b565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b3480156105b557600080fd5b5061023d6105c4366004611b52565b610e1a565b60006301ffc9a760e01b6001600160e01b0319831614806105fa57506380ac58cd60e01b6001600160e01b03198316145b806106155750635b5e139f60e01b6001600160e01b03198316145b92915050565b610623610ea7565b61062d8282610f01565b5050565b60606004805461064090611d5e565b80601f016020809104026020016040519081016040528092919081815260200182805461066c90611d5e565b80156106b95780601f1061068e576101008083540402835291602001916106b9565b820191906000526020600020905b81548152906001019060200180831161069c57829003601f168201915b5050505050905090565b60006106ce82610f96565b6106eb576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b600061071282610811565b9050336001600160a01b0382161461074b5761072e813361057b565b61074b576040516367d9dca160e11b815260040160405180910390fd5b600082815260086020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6107bc610ea7565b600c55565b826001600160a01b03811633146107db576107db33610fbe565b6107e6848484611077565b50505050565b826001600160a01b03811633146108065761080633610fbe565b6107e6848484611219565b600061061582611234565b610824610ea7565b610830600e8585611870565b5061083d600f8383611870565b5050505050565b600e805461085190611d5e565b80601f016020809104026020016040519081016040528092919081815260200182805461087d90611d5e565b80156108ca5780601f1061089f576101008083540402835291602001916108ca565b820191906000526020600020905b8154815290600101906020018083116108ad57829003601f168201915b505050505081565b6108da610ea7565b600d55565b60006001600160a01b038216610908576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b610936610ea7565b61094060006112a2565b565b60606005805461064090611d5e565b600c5433600090815260076020526040908190205461097b911c67ffffffffffffffff1683611dae565b11156109da5760405162461bcd60e51b815260206004820152602360248201527f5573657220616c7265616479206d696e746564206d617820706572206164647260448201526265737360e81b60648201526084015b60405180910390fd5b6109e3336112ff565b610a2f5760405162461bcd60e51b815260206004820152601f60248201527f4163636f756e74206e6f7420656c696769626c6520666f7220636c61696d2e0060448201526064016109d1565b610a393382610f01565b50565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ab0610ea7565b600a546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610afd576040519150601f19603f3d011682016040523d82523d6000602084013e610b02565b606091505b5050905080610a395760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e0000000000000000000000000000000060448201526064016109d1565b60005b60ff8116821115610c125733610b86848460ff8516818110610b7a57610b7a611dc6565b90506020020135610811565b6001600160a01b031614610bdc5760405162461bcd60e51b815260206004820152601460248201527f5573657220646f65736e2774206f776e206e667400000000000000000000000060448201526064016109d1565b610c0083838360ff16818110610bf457610bf4611dc6565b9050602002013561136b565b80610c0a81611ddc565b915050610b56565b505050565b836001600160a01b0381163314610c3157610c3133610fbe565b61083d85858585611376565b600f805461085190611d5e565b6060610c5582610f96565b610cc75760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e2e0000000000000000000000000000000060648201526084016109d1565b60008281526010602052604090205460ff1615610d1057600f610ce9836113ba565b604051602001610cfa929190611e17565b6040516020818303038152906040529050919050565b600e610ce9836113ba565b919050565b610d28610ea7565b610c12600b83836118f4565b60008181526010602052604090205460ff1615610d9f5760405162461bcd60e51b815260206004820152602360248201527f7468697320746f6b656e2068617320616c7265616479206265656e20636c61696044820152621b595960ea1b60648201526084016109d1565b33610da982610811565b6001600160a01b031614610dff5760405162461bcd60e51b815260206004820152601460248201527f5573657220646f65736e2774206f776e206e667400000000000000000000000060448201526064016109d1565b6000908152601060205260409020805460ff19166001179055565b610e22610ea7565b6001600160a01b038116610e9e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109d1565b610a39816112a2565b6000546001600160a01b031633146109405760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109d1565b600d5481610f0e60025490565b610f189190611dae565b1115610f8c5760405162461bcd60e51b815260206004820152603360248201527f5468697320616d6f756e74206f6620746f6b656e7320776f756c64207375727060448201527f61737320746865206d617820737570706c792e0000000000000000000000000060648201526084016109d1565b61062d828261145a565b600060025482108015610615575050600090815260066020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b15610a3957604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561102b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104f9190611ee9565b610a3957604051633b79c77360e21b81526001600160a01b03821660048201526024016109d1565b600061108282611234565b9050836001600160a01b0316816001600160a01b0316146110b55760405162a1148160e81b815260040160405180910390fd5b600082815260086020526040902080546110e18187335b6001600160a01b039081169116811491141790565b61110c576110ef863361057b565b61110c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661113357604051633a954ecd60e21b815260040160405180910390fd5b801561113e57600082555b6001600160a01b038681166000908152600760205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260066020526040812091909155600160e11b841690036111d0576001840160008181526006602052604081205490036111ce5760025481146111ce5760008181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610c1283838360405180602001604052806000815250610c17565b6000816002548110156112895760008181526006602052604081205490600160e01b82169003611287575b8060000361128057506000190160008181526006602052604090205461125f565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000805b600b5461ffff8216101561136257600b8161ffff168154811061132857611328611dc6565b6000918252602090912001546001600160a01b03908116908416036113505750600192915050565b8061135a81611f06565b915050611303565b50600092915050565b610a39816000611558565b6113818484846107c1565b6001600160a01b0383163b156107e65761139d848484846116a3565b6107e6576040516368d2bf6b60e11b815260040160405180910390fd5b606060006113c78361178e565b600101905060008167ffffffffffffffff8111156113e7576113e7611c39565b6040519080825280601f01601f191660200182016040528015611411576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a850494508461141b57509392505050565b600254600082900361147f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526007602090815260408083208054680100000000000000018802019055848352600690915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461152e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016114f6565b508160000361154f57604051622e076360e81b815260040160405180910390fd5b60025550505050565b600061156383611234565b90508060008061158186600090815260086020526040902080549091565b9150915084156115c1576115968184336110cc565b6115c1576115a4833361057b565b6115c157604051632ce44b5f60e11b815260040160405180910390fd5b80156115cc57600082555b6001600160a01b038316600081815260076020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260066020526040812091909155600160e11b8516900361165a576001860160008181526006602052604081205490036116585760025481146116585760008181526006602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505060038054600101905550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116d8903390899088908890600401611f27565b6020604051808303816000875af1925050508015611713575060408051601f3d908101601f1916820190925261171091810190611f63565b60015b611771573d808015611741576040519150601f19603f3d011682016040523d82523d6000602084013e611746565b606091505b508051600003611769576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106117d7577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310611803576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061182157662386f26fc10000830492506010015b6305f5e1008310611839576305f5e100830492506008015b612710831061184d57612710830492506004015b6064831061185f576064830492506002015b600a83106106155760010192915050565b82805461187c90611d5e565b90600052602060002090601f01602090048101928261189e57600085556118e4565b82601f106118b75782800160ff198235161785556118e4565b828001600101855582156118e4579182015b828111156118e45782358255916020019190600101906118c9565b506118f0929150611954565b5090565b8280548282559060005260206000209081019282156118e4579160200282015b828111156118e457815473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03843516178255602090920191600190910190611914565b5b808211156118f05760008155600101611955565b6001600160e01b031981168114610a3957600080fd5b60006020828403121561199157600080fd5b813561128081611969565b80356001600160a01b0381168114610d1b57600080fd5b600080604083850312156119c657600080fd5b6119cf8361199c565b946020939093013593505050565b60005b838110156119f85781810151838201526020016119e0565b838111156107e65750506000910152565b60008151808452611a218160208601602086016119dd565b601f01601f19169290920160200192915050565b6020815260006112806020830184611a09565b600060208284031215611a5a57600080fd5b5035919050565b600080600060608486031215611a7657600080fd5b611a7f8461199c565b9250611a8d6020850161199c565b9150604084013590509250925092565b60008083601f840112611aaf57600080fd5b50813567ffffffffffffffff811115611ac757600080fd5b602083019150836020828501011115611adf57600080fd5b9250929050565b60008060008060408587031215611afc57600080fd5b843567ffffffffffffffff80821115611b1457600080fd5b611b2088838901611a9d565b90965094506020870135915080821115611b3957600080fd5b50611b4687828801611a9d565b95989497509550505050565b600060208284031215611b6457600080fd5b6112808261199c565b8015158114610a3957600080fd5b60008060408385031215611b8e57600080fd5b611b978361199c565b91506020830135611ba781611b6d565b809150509250929050565b60008083601f840112611bc457600080fd5b50813567ffffffffffffffff811115611bdc57600080fd5b6020830191508360208260051b8501011115611adf57600080fd5b60008060208385031215611c0a57600080fd5b823567ffffffffffffffff811115611c2157600080fd5b611c2d85828601611bb2565b90969095509350505050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611c6557600080fd5b611c6e8561199c565b9350611c7c6020860161199c565b925060408501359150606085013567ffffffffffffffff80821115611ca057600080fd5b818701915087601f830112611cb457600080fd5b813581811115611cc657611cc6611c39565b604051601f8201601f19908116603f01168101908382118183101715611cee57611cee611c39565b816040528281528a6020848701011115611d0757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611d3e57600080fd5b611d478361199c565b9150611d556020840161199c565b90509250929050565b600181811c90821680611d7257607f821691505b602082108103611d9257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611dc157611dc1611d98565b500190565b634e487b7160e01b600052603260045260246000fd5b600060ff821660ff8103611df257611df2611d98565b60010192915050565b60008151611e0d8185602086016119dd565b9290920192915050565b600080845481600182811c915080831680611e3357607f831692505b60208084108203611e5257634e487b7160e01b86526022600452602486fd5b818015611e665760018114611e7757611ea4565b60ff19861689528489019650611ea4565b60008b81526020902060005b86811015611e9c5781548b820152908501908301611e83565b505084890196505b505050505050611ee0611eb78286611dfb565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815260050190565b95945050505050565b600060208284031215611efb57600080fd5b815161128081611b6d565b600061ffff808316818103611f1d57611f1d611d98565b6001019392505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611f596080830184611a09565b9695505050505050565b600060208284031215611f7557600080fd5b81516112808161196956fea2646970667358221220ce48da84d217792b0a35bff9c186d1b24c6ce284dfbca34fa839ad8e91ed421164736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063715018a611610102578063c55ffd7b11610095578063e5a342a311610064578063e5a342a314610510578063e7aa0bd714610540578063e985e9c514610560578063f2fde38b146105a957600080fd5b8063c55ffd7b146104a5578063c87b56dd146104ba578063cc7241b5146104da578063d5abeb01146104fa57600080fd5b8063a22cb465116100d1578063a22cb4651461043d578063ac4460021461045d578063b80f55c914610472578063b88d4fde1461049257600080fd5b8063715018a6146103e25780638da5cb5b146103f757806395d89b4114610415578063a0712d681461042a57600080fd5b806341f434341161017a5780636790a9de116101495780636790a9de1461036d5780636c0360eb1461038d5780636f8b44b0146103a257806370a08231146103c257600080fd5b806341f434341461030257806342842e0e146103245780636352211e14610337578063639814e01461035757600080fd5b8063095ea7b3116101b6578063095ea7b31461029957806318160ddd146102ac5780631fe9eabc146102cf57806323b872dd146102ef57600080fd5b806301ffc9a7146101e8578063050225ea1461021d57806306fdde031461023f578063081812fc14610261575b600080fd5b3480156101f457600080fd5b5061020861020336600461197f565b6105c9565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023d6102383660046119b3565b61061b565b005b34801561024b57600080fd5b50610254610631565b6040516102149190611a35565b34801561026d57600080fd5b5061028161027c366004611a48565b6106c3565b6040516001600160a01b039091168152602001610214565b61023d6102a73660046119b3565b610707565b3480156102b857600080fd5b50600354600254035b604051908152602001610214565b3480156102db57600080fd5b5061023d6102ea366004611a48565b6107b4565b61023d6102fd366004611a61565b6107c1565b34801561030e57600080fd5b506102816daaeb6d7670e522a718067333cd4e81565b61023d610332366004611a61565b6107ec565b34801561034357600080fd5b50610281610352366004611a48565b610811565b34801561036357600080fd5b506102c1600c5481565b34801561037957600080fd5b5061023d610388366004611ae6565b61081c565b34801561039957600080fd5b50610254610844565b3480156103ae57600080fd5b5061023d6103bd366004611a48565b6108d2565b3480156103ce57600080fd5b506102c16103dd366004611b52565b6108df565b3480156103ee57600080fd5b5061023d61092e565b34801561040357600080fd5b506000546001600160a01b0316610281565b34801561042157600080fd5b50610254610942565b61023d610438366004611a48565b610951565b34801561044957600080fd5b5061023d610458366004611b7b565b610a3c565b34801561046957600080fd5b5061023d610aa8565b34801561047e57600080fd5b5061023d61048d366004611bf7565b610b53565b61023d6104a0366004611c4f565b610c17565b3480156104b157600080fd5b50610254610c3d565b3480156104c657600080fd5b506102546104d5366004611a48565b610c4a565b3480156104e657600080fd5b5061023d6104f5366004611bf7565b610d20565b34801561050657600080fd5b506102c1600d5481565b34801561051c57600080fd5b5061020861052b366004611a48565b60106020526000908152604090205460ff1681565b34801561054c57600080fd5b5061023d61055b366004611a48565b610d34565b34801561056c57600080fd5b5061020861057b366004611d2b565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b3480156105b557600080fd5b5061023d6105c4366004611b52565b610e1a565b60006301ffc9a760e01b6001600160e01b0319831614806105fa57506380ac58cd60e01b6001600160e01b03198316145b806106155750635b5e139f60e01b6001600160e01b03198316145b92915050565b610623610ea7565b61062d8282610f01565b5050565b60606004805461064090611d5e565b80601f016020809104026020016040519081016040528092919081815260200182805461066c90611d5e565b80156106b95780601f1061068e576101008083540402835291602001916106b9565b820191906000526020600020905b81548152906001019060200180831161069c57829003601f168201915b5050505050905090565b60006106ce82610f96565b6106eb576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b600061071282610811565b9050336001600160a01b0382161461074b5761072e813361057b565b61074b576040516367d9dca160e11b815260040160405180910390fd5b600082815260086020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6107bc610ea7565b600c55565b826001600160a01b03811633146107db576107db33610fbe565b6107e6848484611077565b50505050565b826001600160a01b03811633146108065761080633610fbe565b6107e6848484611219565b600061061582611234565b610824610ea7565b610830600e8585611870565b5061083d600f8383611870565b5050505050565b600e805461085190611d5e565b80601f016020809104026020016040519081016040528092919081815260200182805461087d90611d5e565b80156108ca5780601f1061089f576101008083540402835291602001916108ca565b820191906000526020600020905b8154815290600101906020018083116108ad57829003601f168201915b505050505081565b6108da610ea7565b600d55565b60006001600160a01b038216610908576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b610936610ea7565b61094060006112a2565b565b60606005805461064090611d5e565b600c5433600090815260076020526040908190205461097b911c67ffffffffffffffff1683611dae565b11156109da5760405162461bcd60e51b815260206004820152602360248201527f5573657220616c7265616479206d696e746564206d617820706572206164647260448201526265737360e81b60648201526084015b60405180910390fd5b6109e3336112ff565b610a2f5760405162461bcd60e51b815260206004820152601f60248201527f4163636f756e74206e6f7420656c696769626c6520666f7220636c61696d2e0060448201526064016109d1565b610a393382610f01565b50565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ab0610ea7565b600a546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610afd576040519150601f19603f3d011682016040523d82523d6000602084013e610b02565b606091505b5050905080610a395760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e0000000000000000000000000000000060448201526064016109d1565b60005b60ff8116821115610c125733610b86848460ff8516818110610b7a57610b7a611dc6565b90506020020135610811565b6001600160a01b031614610bdc5760405162461bcd60e51b815260206004820152601460248201527f5573657220646f65736e2774206f776e206e667400000000000000000000000060448201526064016109d1565b610c0083838360ff16818110610bf457610bf4611dc6565b9050602002013561136b565b80610c0a81611ddc565b915050610b56565b505050565b836001600160a01b0381163314610c3157610c3133610fbe565b61083d85858585611376565b600f805461085190611d5e565b6060610c5582610f96565b610cc75760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e2e0000000000000000000000000000000060648201526084016109d1565b60008281526010602052604090205460ff1615610d1057600f610ce9836113ba565b604051602001610cfa929190611e17565b6040516020818303038152906040529050919050565b600e610ce9836113ba565b919050565b610d28610ea7565b610c12600b83836118f4565b60008181526010602052604090205460ff1615610d9f5760405162461bcd60e51b815260206004820152602360248201527f7468697320746f6b656e2068617320616c7265616479206265656e20636c61696044820152621b595960ea1b60648201526084016109d1565b33610da982610811565b6001600160a01b031614610dff5760405162461bcd60e51b815260206004820152601460248201527f5573657220646f65736e2774206f776e206e667400000000000000000000000060448201526064016109d1565b6000908152601060205260409020805460ff19166001179055565b610e22610ea7565b6001600160a01b038116610e9e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109d1565b610a39816112a2565b6000546001600160a01b031633146109405760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109d1565b600d5481610f0e60025490565b610f189190611dae565b1115610f8c5760405162461bcd60e51b815260206004820152603360248201527f5468697320616d6f756e74206f6620746f6b656e7320776f756c64207375727060448201527f61737320746865206d617820737570706c792e0000000000000000000000000060648201526084016109d1565b61062d828261145a565b600060025482108015610615575050600090815260066020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b15610a3957604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561102b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104f9190611ee9565b610a3957604051633b79c77360e21b81526001600160a01b03821660048201526024016109d1565b600061108282611234565b9050836001600160a01b0316816001600160a01b0316146110b55760405162a1148160e81b815260040160405180910390fd5b600082815260086020526040902080546110e18187335b6001600160a01b039081169116811491141790565b61110c576110ef863361057b565b61110c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661113357604051633a954ecd60e21b815260040160405180910390fd5b801561113e57600082555b6001600160a01b038681166000908152600760205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260066020526040812091909155600160e11b841690036111d0576001840160008181526006602052604081205490036111ce5760025481146111ce5760008181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610c1283838360405180602001604052806000815250610c17565b6000816002548110156112895760008181526006602052604081205490600160e01b82169003611287575b8060000361128057506000190160008181526006602052604090205461125f565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000805b600b5461ffff8216101561136257600b8161ffff168154811061132857611328611dc6565b6000918252602090912001546001600160a01b03908116908416036113505750600192915050565b8061135a81611f06565b915050611303565b50600092915050565b610a39816000611558565b6113818484846107c1565b6001600160a01b0383163b156107e65761139d848484846116a3565b6107e6576040516368d2bf6b60e11b815260040160405180910390fd5b606060006113c78361178e565b600101905060008167ffffffffffffffff8111156113e7576113e7611c39565b6040519080825280601f01601f191660200182016040528015611411576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a850494508461141b57509392505050565b600254600082900361147f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526007602090815260408083208054680100000000000000018802019055848352600690915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461152e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016114f6565b508160000361154f57604051622e076360e81b815260040160405180910390fd5b60025550505050565b600061156383611234565b90508060008061158186600090815260086020526040902080549091565b9150915084156115c1576115968184336110cc565b6115c1576115a4833361057b565b6115c157604051632ce44b5f60e11b815260040160405180910390fd5b80156115cc57600082555b6001600160a01b038316600081815260076020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260066020526040812091909155600160e11b8516900361165a576001860160008181526006602052604081205490036116585760025481146116585760008181526006602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505060038054600101905550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116d8903390899088908890600401611f27565b6020604051808303816000875af1925050508015611713575060408051601f3d908101601f1916820190925261171091810190611f63565b60015b611771573d808015611741576040519150601f19603f3d011682016040523d82523d6000602084013e611746565b606091505b508051600003611769576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106117d7577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310611803576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061182157662386f26fc10000830492506010015b6305f5e1008310611839576305f5e100830492506008015b612710831061184d57612710830492506004015b6064831061185f576064830492506002015b600a83106106155760010192915050565b82805461187c90611d5e565b90600052602060002090601f01602090048101928261189e57600085556118e4565b82601f106118b75782800160ff198235161785556118e4565b828001600101855582156118e4579182015b828111156118e45782358255916020019190600101906118c9565b506118f0929150611954565b5090565b8280548282559060005260206000209081019282156118e4579160200282015b828111156118e457815473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03843516178255602090920191600190910190611914565b5b808211156118f05760008155600101611955565b6001600160e01b031981168114610a3957600080fd5b60006020828403121561199157600080fd5b813561128081611969565b80356001600160a01b0381168114610d1b57600080fd5b600080604083850312156119c657600080fd5b6119cf8361199c565b946020939093013593505050565b60005b838110156119f85781810151838201526020016119e0565b838111156107e65750506000910152565b60008151808452611a218160208601602086016119dd565b601f01601f19169290920160200192915050565b6020815260006112806020830184611a09565b600060208284031215611a5a57600080fd5b5035919050565b600080600060608486031215611a7657600080fd5b611a7f8461199c565b9250611a8d6020850161199c565b9150604084013590509250925092565b60008083601f840112611aaf57600080fd5b50813567ffffffffffffffff811115611ac757600080fd5b602083019150836020828501011115611adf57600080fd5b9250929050565b60008060008060408587031215611afc57600080fd5b843567ffffffffffffffff80821115611b1457600080fd5b611b2088838901611a9d565b90965094506020870135915080821115611b3957600080fd5b50611b4687828801611a9d565b95989497509550505050565b600060208284031215611b6457600080fd5b6112808261199c565b8015158114610a3957600080fd5b60008060408385031215611b8e57600080fd5b611b978361199c565b91506020830135611ba781611b6d565b809150509250929050565b60008083601f840112611bc457600080fd5b50813567ffffffffffffffff811115611bdc57600080fd5b6020830191508360208260051b8501011115611adf57600080fd5b60008060208385031215611c0a57600080fd5b823567ffffffffffffffff811115611c2157600080fd5b611c2d85828601611bb2565b90969095509350505050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611c6557600080fd5b611c6e8561199c565b9350611c7c6020860161199c565b925060408501359150606085013567ffffffffffffffff80821115611ca057600080fd5b818701915087601f830112611cb457600080fd5b813581811115611cc657611cc6611c39565b604051601f8201601f19908116603f01168101908382118183101715611cee57611cee611c39565b816040528281528a6020848701011115611d0757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611d3e57600080fd5b611d478361199c565b9150611d556020840161199c565b90509250929050565b600181811c90821680611d7257607f821691505b602082108103611d9257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611dc157611dc1611d98565b500190565b634e487b7160e01b600052603260045260246000fd5b600060ff821660ff8103611df257611df2611d98565b60010192915050565b60008151611e0d8185602086016119dd565b9290920192915050565b600080845481600182811c915080831680611e3357607f831692505b60208084108203611e5257634e487b7160e01b86526022600452602486fd5b818015611e665760018114611e7757611ea4565b60ff19861689528489019650611ea4565b60008b81526020902060005b86811015611e9c5781548b820152908501908301611e83565b505084890196505b505050505050611ee0611eb78286611dfb565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815260050190565b95945050505050565b600060208284031215611efb57600080fd5b815161128081611b6d565b600061ffff808316818103611f1d57611f1d611d98565b6001019392505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611f596080830184611a09565b9695505050505050565b600060208284031215611f7557600080fd5b81516112808161196956fea2646970667358221220ce48da84d217792b0a35bff9c186d1b24c6ce284dfbca34fa839ad8e91ed421164736f6c634300080d0033

Deployed Bytecode Sourcemap

83563:4780:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43917:639;;;;;;;;;;-1:-1:-1;43917:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;43917:639:0;;;;;;;;85738:112;;;;;;;;;;-1:-1:-1;85738:112:0;;;;;:::i;:::-;;:::i;:::-;;44819:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;51310:218::-;;;;;;;;;;-1:-1:-1;51310:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2174:55:1;;;2156:74;;2144:2;2129:18;51310:218:0;2010:226:1;50743:408:0;;;;;;:::i;:::-;;:::i;40570:323::-;;;;;;;;;;-1:-1:-1;40844:12:0;;40828:13;;:28;40570:323;;;2387:25:1;;;2375:2;2360:18;40570:323:0;2241:177:1;86937:108:0;;;;;;;;;;-1:-1:-1;86937:108:0;;;;;:::i;:::-;;:::i;87725:186::-;;;;;;:::i;:::-;;:::i;7735:143::-;;;;;;;;;;;;151:42;7735:143;;87919:194;;;;;;:::i;:::-;;:::i;46212:152::-;;;;;;;;;;-1:-1:-1;46212:152:0;;;;;:::i;:::-;;:::i;84789:32::-;;;;;;;;;;;;;;;;86265:178;;;;;;;;;;-1:-1:-1;86265:178:0;;;;;:::i;:::-;;:::i;84893:37::-;;;;;;;;;;;;;:::i;86567:102::-;;;;;;;;;;-1:-1:-1;86567:102:0;;;;;:::i;:::-;;:::i;41754:233::-;;;;;;;;;;-1:-1:-1;41754:233:0;;;;;:::i;:::-;;:::i;82670:103::-;;;;;;;;;;;;;:::i;82022:87::-;;;;;;;;;;-1:-1:-1;82068:7:0;82095:6;-1:-1:-1;;;;;82095:6:0;82022:87;;44995:104;;;;;;;;;;;;;:::i;85432:298::-;;;;;;:::i;:::-;;:::i;51868:234::-;;;;;;;;;;-1:-1:-1;51868:234:0;;;;;:::i;:::-;;:::i;87276:194::-;;;;;;;;;;;;;:::i;87478:239::-;;;;;;;;;;-1:-1:-1;87478:239:0;;;;;:::i;:::-;;:::i;88121:219::-;;;;;;:::i;:::-;;:::i;84937:41::-;;;;;;;;;;;;;:::i;85858:399::-;;;;;;;;;;-1:-1:-1;85858:399:0;;;;;:::i;:::-;;:::i;86451:108::-;;;;;;;;;;-1:-1:-1;86451:108:0;;;;;:::i;:::-;;:::i;84828:30::-;;;;;;;;;;;;;;;;84987:45;;;;;;;;;;-1:-1:-1;84987:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;86677:252;;;;;;;;;;-1:-1:-1;86677:252:0;;;;;:::i;:::-;;:::i;52259:164::-;;;;;;;;;;-1:-1:-1;52259:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;52380:25:0;;;52356:4;52380:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;52259:164;82928:201;;;;;;;;;;-1:-1:-1;82928:201:0;;;;;:::i;:::-;;:::i;43917:639::-;44002:4;-1:-1:-1;;;;;;;;;44326:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;44403:25:0;;;44326:102;:179;;;-1:-1:-1;;;;;;;;;;44480:25:0;;;44326:179;44306:199;43917:639;-1:-1:-1;;43917:639:0:o;85738:112::-;81908:13;:11;:13::i;:::-;85816:26:::1;85829:2;85833:8;85816:12;:26::i;:::-;85738:112:::0;;:::o;44819:100::-;44873:13;44906:5;44899:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44819:100;:::o;51310:218::-;51386:7;51411:16;51419:7;51411;:16::i;:::-;51406:64;;51436:34;;-1:-1:-1;;;51436:34:0;;;;;;;;;;;51406:64;-1:-1:-1;51490:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;51490:30:0;;51310:218::o;50743:408::-;50832:13;50848:16;50856:7;50848;:16::i;:::-;50832:32;-1:-1:-1;75076:10:0;-1:-1:-1;;;;;50881:28:0;;;50877:175;;50929:44;50946:5;75076:10;52259:164;:::i;50929:44::-;50924:128;;51001:35;;-1:-1:-1;;;51001:35:0;;;;;;;;;;;50924:128;51064:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;51064:35:0;-1:-1:-1;;;;;51064:35:0;;;;;;;;;51115:28;;51064:24;;51115:28;;;;;;;50821:330;50743:408;;:::o;86937:108::-;81908:13;:11;:13::i;:::-;87007::::1;:30:::0;86937:108::o;87725:186::-;87844:4;-1:-1:-1;;;;;9243:18:0;;9251:10;9243:18;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;87866:37:::1;87885:4;87891:2;87895:7;87866:18;:37::i;:::-;87725:186:::0;;;;:::o;87919:194::-;88042:4;-1:-1:-1;;;;;9243:18:0;;9251:10;9243:18;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;88064:41:::1;88087:4;88093:2;88097:7;88064:22;:41::i;46212:152::-:0;46284:7;46327:27;46346:7;46327:18;:27::i;86265:178::-;81908:13;:11;:13::i;:::-;86374:18:::1;:7;86384:8:::0;;86374:18:::1;:::i;:::-;-1:-1:-1::0;86403:32:0::1;:14;86420:15:::0;;86403:32:::1;:::i;:::-;;86265:178:::0;;;;:::o;84893:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;86567:102::-;81908:13;:11;:13::i;:::-;86639:9:::1;:22:::0;86567:102::o;41754:233::-;41826:7;-1:-1:-1;;;;;41850:19:0;;41846:60;;41878:28;;-1:-1:-1;;;41878:28:0;;;;;;;;;;;41846:60;-1:-1:-1;;;;;;41924:25:0;;;;;:18;:25;;;;;;35913:13;41924:55;;41754:233::o;82670:103::-;81908:13;:11;:13::i;:::-;82735:30:::1;82762:1;82735:18;:30::i;:::-;82670:103::o:0;44995:104::-;45051:13;45084:7;45077:14;;;;;:::i;85432:298::-;85540:13;;85525:10;42130:7;42158:25;;;:18;:25;;36051:2;42158:25;;;;;85500:36;;42158:50;35913:13;42157:82;85500:8;:36;:::i;:::-;:53;;85492:101;;;;-1:-1:-1;;;85492:101:0;;8379:2:1;85492:101:0;;;8361:21:1;8418:2;8398:18;;;8391:30;8457:34;8437:18;;;8430:62;-1:-1:-1;;;8508:18:1;;;8501:33;8551:19;;85492:101:0;;;;;;;;;85612:27;85628:10;85612:15;:27::i;:::-;85604:71;;;;-1:-1:-1;;;85604:71:0;;8783:2:1;85604:71:0;;;8765:21:1;8822:2;8802:18;;;8795:30;8861:33;8841:18;;;8834:61;8912:18;;85604:71:0;8581:355:1;85604:71:0;85688:34;85701:10;85713:8;85688:12;:34::i;:::-;85432:298;:::o;51868:234::-;75076:10;51963:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;51963:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;51963:60:0;;;;;;;;;;52039:55;;540:41:1;;;51963:49:0;;75076:10;52039:55;;513:18:1;52039:55:0;;;;;;;51868:234;;:::o;87276:194::-;81908:13;:11;:13::i;:::-;87361:15:::1;::::0;:54:::1;::::0;87343:12:::1;::::0;-1:-1:-1;;;;;87361:15:0::1;::::0;87389:21:::1;::::0;87343:12;87361:54;87343:12;87361:54;87389:21;87361:15;:54:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87342:73;;;87434:7;87426:36;;;::::0;-1:-1:-1;;;87426:36:0;;9353:2:1;87426:36:0::1;::::0;::::1;9335:21:1::0;9392:2;9372:18;;;9365:30;9431:18;9411;;;9404:46;9467:18;;87426:36:0::1;9151:340:1::0;87478:239:0;87545:7;87541:169;87558:19;;;;-1:-1:-1;87541:169:0;;;87630:10;87606:20;87614:8;;:11;;;;;;;;;;:::i;:::-;;;;;;;87606:7;:20::i;:::-;-1:-1:-1;;;;;87606:34:0;;87598:67;;;;-1:-1:-1;;;87598:67:0;;9830:2:1;87598:67:0;;;9812:21:1;9869:2;9849:18;;;9842:30;9908:22;9888:18;;;9881:50;9948:18;;87598:67:0;9628:344:1;87598:67:0;87680:18;87686:8;;87695:1;87686:11;;;;;;;;;:::i;:::-;;;;;;;87680:5;:18::i;:::-;87579:3;;;;:::i;:::-;;;;87541:169;;;;87478:239;;:::o;88121:219::-;88263:4;-1:-1:-1;;;;;9243:18:0;;9251:10;9243:18;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;88285:47:::1;88308:4;88314:2;88318:7;88327:4;88285:22;:47::i;84937:41::-:0;;;;;;;:::i;85858:399::-;85941:13;85975:16;85983:7;85975;:16::i;:::-;85967:77;;;;-1:-1:-1;;;85967:77:0;;10359:2:1;85967:77:0;;;10341:21:1;10398:2;10378:18;;;10371:30;10437:34;10417:18;;;10410:62;10508:18;10488;;;10481:46;10544:19;;85967:77:0;10157:412:1;85967:77:0;86064:22;;;;:13;:22;;;;;;;;86061:188;;;86119:14;86135:18;:7;:16;:18::i;:::-;86102:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;86088:76;;85858:399;;;:::o;86061:188::-;86211:7;86220:18;:7;:16;:18::i;86061:188::-;85858:399;;;:::o;86451:108::-;81908:13;:11;:13::i;:::-;86529:22:::1;:9;86541:10:::0;;86529:22:::1;:::i;86677:252::-:0;86743:22;;;;:13;:22;;;;;;;;86742:23;86734:71;;;;-1:-1:-1;;;86734:71:0;;12516:2:1;86734:71:0;;;12498:21:1;12555:2;12535:18;;;12528:30;12594:34;12574:18;;;12567:62;-1:-1:-1;;;12645:18:1;;;12638:33;12688:19;;86734:71:0;12314:399:1;86734:71:0;86844:10;86824:16;86832:7;86824;:16::i;:::-;-1:-1:-1;;;;;86824:30:0;;86816:63;;;;-1:-1:-1;;;86816:63:0;;9830:2:1;86816:63:0;;;9812:21:1;9869:2;9849:18;;;9842:30;9908:22;9888:18;;;9881:50;9948:18;;86816:63:0;9628:344:1;86816:63:0;86892:22;;;;:13;:22;;;;;:29;;-1:-1:-1;;86892:29:0;86917:4;86892:29;;;86677:252::o;82928:201::-;81908:13;:11;:13::i;:::-;-1:-1:-1;;;;;83017:22:0;::::1;83009:73;;;::::0;-1:-1:-1;;;83009:73:0;;12920:2:1;83009:73:0::1;::::0;::::1;12902:21:1::0;12959:2;12939:18;;;12932:30;12998:34;12978:18;;;12971:62;13069:8;13049:18;;;13042:36;13095:19;;83009:73:0::1;12718:402:1::0;83009:73:0::1;83093:28;83112:8;83093:18;:28::i;82187:132::-:0;82068:7;82095:6;-1:-1:-1;;;;;82095:6:0;75076:10;82251:23;82243:68;;;;-1:-1:-1;;;82243:68:0;;13327:2:1;82243:68:0;;;13309:21:1;;;13346:18;;;13339:30;13405:34;13385:18;;;13378:62;13457:18;;82243:68:0;13125:356:1;85211:213:0;85319:9;;85307:8;85290:14;40339:13;;;40257:103;85290:14;:25;;;;:::i;:::-;:38;;85282:102;;;;-1:-1:-1;;;85282:102:0;;13688:2:1;85282:102:0;;;13670:21:1;13727:2;13707:18;;;13700:30;13766:34;13746:18;;;13739:62;13837:21;13817:18;;;13810:49;13876:19;;85282:102:0;13486:415:1;85282:102:0;85397:19;85403:2;85407:8;85397:5;:19::i;52681:282::-;52746:4;52836:13;;52826:7;:23;52783:153;;;;-1:-1:-1;;52887:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;52887:44:0;:49;;52681:282::o;9660:647::-;151:42;9851:45;:49;9847:453;;10150:67;;-1:-1:-1;;;10150:67:0;;10201:4;10150:67;;;14141:34:1;-1:-1:-1;;;;;14211:15:1;;14191:18;;;14184:43;151:42:0;;10150;;14053:18:1;;10150:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10145:144;;10245:28;;-1:-1:-1;;;10245:28:0;;-1:-1:-1;;;;;2174:55:1;;10245:28:0;;;2156:74:1;2129:18;;10245:28:0;2010:226:1;54949:2825:0;55091:27;55121;55140:7;55121:18;:27::i;:::-;55091:57;;55206:4;-1:-1:-1;;;;;55165:45:0;55181:19;-1:-1:-1;;;;;55165:45:0;;55161:86;;55219:28;;-1:-1:-1;;;55219:28:0;;;;;;;;;;;55161:86;55261:27;54057:24;;;:15;:24;;;;;54285:26;;55452:68;54285:26;55494:4;75076:10;55500:19;-1:-1:-1;;;;;53531:32:0;;;53375:28;;53660:20;;53682:30;;53657:56;;53072:659;55452:68;55447:180;;55540:43;55557:4;75076:10;52259:164;:::i;55540:43::-;55535:92;;55592:35;;-1:-1:-1;;;55592:35:0;;;;;;;;;;;55535:92;-1:-1:-1;;;;;55644:16:0;;55640:52;;55669:23;;-1:-1:-1;;;55669:23:0;;;;;;;;;;;55640:52;55841:15;55838:160;;;55981:1;55960:19;55953:30;55838:160;-1:-1:-1;;;;;56378:24:0;;;;;;;:18;:24;;;;;;56376:26;;-1:-1:-1;;56376:26:0;;;56447:22;;;;;;;;;56445:24;;-1:-1:-1;56445:24:0;;;49601:11;49576:23;49572:41;49559:63;-1:-1:-1;;;49559:63:0;56740:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;57035:47:0;;:52;;57031:627;;57140:1;57130:11;;57108:19;57263:30;;;:17;:30;;;;;;:35;;57259:384;;57401:13;;57386:11;:28;57382:242;;57548:30;;;;:17;:30;;;;;:52;;;57382:242;57089:569;57031:627;57705:7;57701:2;-1:-1:-1;;;;;57686:27:0;57695:4;-1:-1:-1;;;;;57686:27:0;;;;;;;;;;;55080:2694;;;54949:2825;;;:::o;57870:193::-;58016:39;58033:4;58039:2;58043:7;58016:39;;;;;;;;;;;;:16;:39::i;47367:1275::-;47434:7;47469;47571:13;;47564:4;:20;47560:1015;;;47609:14;47626:23;;;:17;:23;;;;;;;-1:-1:-1;;;47715:24:0;;:29;;47711:845;;48380:113;48387:6;48397:1;48387:11;48380:113;;-1:-1:-1;;;48458:6:0;48440:25;;;;:17;:25;;;;;;48380:113;;;48526:6;47367:1275;-1:-1:-1;;;47367:1275:0:o;47711:845::-;47586:989;47560:1015;48603:31;;-1:-1:-1;;;48603:31:0;;;;;;;;;;;83289:191;83363:16;83382:6;;-1:-1:-1;;;;;83399:17:0;;;-1:-1:-1;;83399:17:0;;;;;;83432:40;;83382:6;;;;;;;83432:40;;83363:16;83432:40;83352:128;83289:191;:::o;87053:215::-;87113:4;;87130:106;87152:9;:16;87148:20;;;;87130:106;;;87199:9;87209:1;87199:12;;;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;87199:12:0;;;87193:18;;;;87190:34;;-1:-1:-1;87220:4:0;;87053:215;-1:-1:-1;;87053:215:0:o;87190:34::-;87170:3;;;;:::i;:::-;;;;87130:106;;;-1:-1:-1;87255:5:0;;87053:215;-1:-1:-1;;87053:215:0:o;69200:89::-;69260:21;69266:7;69275:5;69260;:21::i;58661:407::-;58836:31;58849:4;58855:2;58859:7;58836:12;:31::i;:::-;-1:-1:-1;;;;;58882:14:0;;;:19;58878:183;;58921:56;58952:4;58958:2;58962:7;58971:5;58921:30;:56::i;:::-;58916:145;;59005:40;;-1:-1:-1;;;59005:40:0;;;;;;;;;;;23619:716;23675:13;23726:14;23743:17;23754:5;23743:10;:17::i;:::-;23763:1;23743:21;23726:38;;23779:20;23813:6;23802:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23802:18:0;-1:-1:-1;23779:41:0;-1:-1:-1;23944:28:0;;;23960:2;23944:28;24001:288;-1:-1:-1;;24033:5:0;24175:8;24170:2;24159:14;;24154:30;24033:5;24141:44;24231:2;24222:11;;;-1:-1:-1;24252:21:0;24001:288;24252:21;-1:-1:-1;24310:6:0;23619:716;-1:-1:-1;;;23619:716:0:o;62330:2966::-;62426:13;;62403:20;62454:13;;;62450:44;;62476:18;;-1:-1:-1;;;62476:18:0;;;;;;;;;;;62450:44;-1:-1:-1;;;;;62982:22:0;;;;;;:18;:22;;;;36051:2;62982:22;;;:71;;63020:32;63008:45;;62982:71;;;63296:31;;;:17;:31;;;;;-1:-1:-1;50032:15:0;;50006:24;50002:46;49601:11;49576:23;49572:41;49569:52;49559:63;;63296:173;;63531:23;;;;63296:31;;62982:22;;64296:25;62982:22;;64149:335;64810:1;64796:12;64792:20;64750:346;64851:3;64842:7;64839:16;64750:346;;65069:7;65059:8;65056:1;65029:25;65026:1;65023;65018:59;64904:1;64891:15;64750:346;;;64754:77;65129:8;65141:1;65129:13;65125:45;;65151:19;;-1:-1:-1;;;65151:19:0;;;;;;;;;;;65125:45;65187:13;:19;-1:-1:-1;87541:169:0;87478:239;;:::o;69518:3081::-;69598:27;69628;69647:7;69628:18;:27::i;:::-;69598:57;-1:-1:-1;69598:57:0;69668:12;;69790:35;69817:7;53946:27;54057:24;;;:15;:24;;;;;54285:26;;54057:24;;53844:485;69790:35;69733:92;;;;69842:13;69838:316;;;69963:68;69988:15;70005:4;75076:10;70011:19;74989:105;69963:68;69958:184;;70055:43;70072:4;75076:10;52259:164;:::i;70055:43::-;70050:92;;70107:35;;-1:-1:-1;;;70107:35:0;;;;;;;;;;;70050:92;70310:15;70307:160;;;70450:1;70429:19;70422:30;70307:160;-1:-1:-1;;;;;71069:24:0;;;;;;:18;:24;;;;;:60;;71097:32;71069:60;;;49601:11;49576:23;49572:41;49559:63;-1:-1:-1;;;49559:63:0;71367:26;;;;:17;:26;;;;;:205;;;;-1:-1:-1;;;71692:47:0;;:52;;71688:627;;71797:1;71787:11;;71765:19;71920:30;;;:17;:30;;;;;;:35;;71916:384;;72058:13;;72043:11;:28;72039:242;;72205:30;;;;:17;:30;;;;;:52;;;72039:242;71746:569;71688:627;72343:35;;72370:7;;72366:1;;-1:-1:-1;;;;;72343:35:0;;;;;72366:1;;72343:35;-1:-1:-1;;72566:12:0;:14;;;;;;-1:-1:-1;;;;69518:3081:0:o;61152:716::-;61336:88;;-1:-1:-1;;;61336:88:0;;61315:4;;-1:-1:-1;;;;;61336:45:0;;;;;:88;;75076:10;;61403:4;;61409:7;;61418:5;;61336:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61336:88:0;;;;;;;;-1:-1:-1;;61336:88:0;;;;;;;;;;;;:::i;:::-;;;61332:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61619:6;:13;61636:1;61619:18;61615:235;;61665:40;;-1:-1:-1;;;61665:40:0;;;;;;;;;;;61615:235;61808:6;61802:13;61793:6;61789:2;61785:15;61778:38;61332:529;-1:-1:-1;;;;;;61495:64:0;-1:-1:-1;;;61495:64:0;;-1:-1:-1;61152:716:0;;;;;;:::o;20485:922::-;20538:7;;20625:6;20616:15;;20612:102;;20661:6;20652:15;;;-1:-1:-1;20696:2:0;20686:12;20612:102;20741:6;20732:5;:15;20728:102;;20777:6;20768:15;;;-1:-1:-1;20812:2:0;20802:12;20728:102;20857:6;20848:5;:15;20844:102;;20893:6;20884:15;;;-1:-1:-1;20928:2:0;20918:12;20844:102;20973:5;20964;:14;20960:99;;21008:5;20999:14;;;-1:-1:-1;21042:1:0;21032:11;20960:99;21086:5;21077;:14;21073:99;;21121:5;21112:14;;;-1:-1:-1;21155:1:0;21145:11;21073:99;21199:5;21190;:14;21186:99;;21234:5;21225:14;;;-1:-1:-1;21268:1:0;21258:11;21186:99;21312:5;21303;:14;21299:66;;21348:1;21338:11;21393:6;20485:922;-1:-1:-1;;20485:922:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:196::-;660:20;;-1:-1:-1;;;;;709:54:1;;699:65;;689:93;;778:1;775;768:12;793:254;861:6;869;922:2;910:9;901:7;897:23;893:32;890:52;;;938:1;935;928:12;890:52;961:29;980:9;961:29;:::i;:::-;951:39;1037:2;1022:18;;;;1009:32;;-1:-1:-1;;;793:254:1:o;1052:258::-;1124:1;1134:113;1148:6;1145:1;1142:13;1134:113;;;1224:11;;;1218:18;1205:11;;;1198:39;1170:2;1163:10;1134:113;;;1265:6;1262:1;1259:13;1256:48;;;-1:-1:-1;;1300:1:1;1282:16;;1275:27;1052:258::o;1315:269::-;1368:3;1406:5;1400:12;1433:6;1428:3;1421:19;1449:63;1505:6;1498:4;1493:3;1489:14;1482:4;1475:5;1471:16;1449:63;:::i;:::-;1566:2;1545:15;-1:-1:-1;;1541:29:1;1532:39;;;;1573:4;1528:50;;1315:269;-1:-1:-1;;1315:269:1:o;1589:231::-;1738:2;1727:9;1720:21;1701:4;1758:56;1810:2;1799:9;1795:18;1787:6;1758:56;:::i;1825:180::-;1884:6;1937:2;1925:9;1916:7;1912:23;1908:32;1905:52;;;1953:1;1950;1943:12;1905:52;-1:-1:-1;1976:23:1;;1825:180;-1:-1:-1;1825:180:1:o;2423:328::-;2500:6;2508;2516;2569:2;2557:9;2548:7;2544:23;2540:32;2537:52;;;2585:1;2582;2575:12;2537:52;2608:29;2627:9;2608:29;:::i;:::-;2598:39;;2656:38;2690:2;2679:9;2675:18;2656:38;:::i;:::-;2646:48;;2741:2;2730:9;2726:18;2713:32;2703:42;;2423:328;;;;;:::o;3018:348::-;3070:8;3080:6;3134:3;3127:4;3119:6;3115:17;3111:27;3101:55;;3152:1;3149;3142:12;3101:55;-1:-1:-1;3175:20:1;;3218:18;3207:30;;3204:50;;;3250:1;3247;3240:12;3204:50;3287:4;3279:6;3275:17;3263:29;;3339:3;3332:4;3323:6;3315;3311:19;3307:30;3304:39;3301:59;;;3356:1;3353;3346:12;3301:59;3018:348;;;;;:::o;3371:721::-;3463:6;3471;3479;3487;3540:2;3528:9;3519:7;3515:23;3511:32;3508:52;;;3556:1;3553;3546:12;3508:52;3596:9;3583:23;3625:18;3666:2;3658:6;3655:14;3652:34;;;3682:1;3679;3672:12;3652:34;3721:59;3772:7;3763:6;3752:9;3748:22;3721:59;:::i;:::-;3799:8;;-1:-1:-1;3695:85:1;-1:-1:-1;3887:2:1;3872:18;;3859:32;;-1:-1:-1;3903:16:1;;;3900:36;;;3932:1;3929;3922:12;3900:36;;3971:61;4024:7;4013:8;4002:9;3998:24;3971:61;:::i;:::-;3371:721;;;;-1:-1:-1;4051:8:1;-1:-1:-1;;;;3371:721:1:o;4097:186::-;4156:6;4209:2;4197:9;4188:7;4184:23;4180:32;4177:52;;;4225:1;4222;4215:12;4177:52;4248:29;4267:9;4248:29;:::i;4288:118::-;4374:5;4367:13;4360:21;4353:5;4350:32;4340:60;;4396:1;4393;4386:12;4411:315;4476:6;4484;4537:2;4525:9;4516:7;4512:23;4508:32;4505:52;;;4553:1;4550;4543:12;4505:52;4576:29;4595:9;4576:29;:::i;:::-;4566:39;;4655:2;4644:9;4640:18;4627:32;4668:28;4690:5;4668:28;:::i;:::-;4715:5;4705:15;;;4411:315;;;;;:::o;4731:367::-;4794:8;4804:6;4858:3;4851:4;4843:6;4839:17;4835:27;4825:55;;4876:1;4873;4866:12;4825:55;-1:-1:-1;4899:20:1;;4942:18;4931:30;;4928:50;;;4974:1;4971;4964:12;4928:50;5011:4;5003:6;4999:17;4987:29;;5071:3;5064:4;5054:6;5051:1;5047:14;5039:6;5035:27;5031:38;5028:47;5025:67;;;5088:1;5085;5078:12;5103:437;5189:6;5197;5250:2;5238:9;5229:7;5225:23;5221:32;5218:52;;;5266:1;5263;5256:12;5218:52;5306:9;5293:23;5339:18;5331:6;5328:30;5325:50;;;5371:1;5368;5361:12;5325:50;5410:70;5472:7;5463:6;5452:9;5448:22;5410:70;:::i;:::-;5499:8;;5384:96;;-1:-1:-1;5103:437:1;-1:-1:-1;;;;5103:437:1:o;5545:127::-;5606:10;5601:3;5597:20;5594:1;5587:31;5637:4;5634:1;5627:15;5661:4;5658:1;5651:15;5677:1138;5772:6;5780;5788;5796;5849:3;5837:9;5828:7;5824:23;5820:33;5817:53;;;5866:1;5863;5856:12;5817:53;5889:29;5908:9;5889:29;:::i;:::-;5879:39;;5937:38;5971:2;5960:9;5956:18;5937:38;:::i;:::-;5927:48;;6022:2;6011:9;6007:18;5994:32;5984:42;;6077:2;6066:9;6062:18;6049:32;6100:18;6141:2;6133:6;6130:14;6127:34;;;6157:1;6154;6147:12;6127:34;6195:6;6184:9;6180:22;6170:32;;6240:7;6233:4;6229:2;6225:13;6221:27;6211:55;;6262:1;6259;6252:12;6211:55;6298:2;6285:16;6320:2;6316;6313:10;6310:36;;;6326:18;;:::i;:::-;6401:2;6395:9;6369:2;6455:13;;-1:-1:-1;;6451:22:1;;;6475:2;6447:31;6443:40;6431:53;;;6499:18;;;6519:22;;;6496:46;6493:72;;;6545:18;;:::i;:::-;6585:10;6581:2;6574:22;6620:2;6612:6;6605:18;6660:7;6655:2;6650;6646;6642:11;6638:20;6635:33;6632:53;;;6681:1;6678;6671:12;6632:53;6737:2;6732;6728;6724:11;6719:2;6711:6;6707:15;6694:46;6782:1;6777:2;6772;6764:6;6760:15;6756:24;6749:35;6803:6;6793:16;;;;;;;5677:1138;;;;;;;:::o;7262:260::-;7330:6;7338;7391:2;7379:9;7370:7;7366:23;7362:32;7359:52;;;7407:1;7404;7397:12;7359:52;7430:29;7449:9;7430:29;:::i;:::-;7420:39;;7478:38;7512:2;7501:9;7497:18;7478:38;:::i;:::-;7468:48;;7262:260;;;;;:::o;7527:380::-;7606:1;7602:12;;;;7649;;;7670:61;;7724:4;7716:6;7712:17;7702:27;;7670:61;7777:2;7769:6;7766:14;7746:18;7743:38;7740:161;;7823:10;7818:3;7814:20;7811:1;7804:31;7858:4;7855:1;7848:15;7886:4;7883:1;7876:15;7740:161;;7527:380;;;:::o;7912:127::-;7973:10;7968:3;7964:20;7961:1;7954:31;8004:4;8001:1;7994:15;8028:4;8025:1;8018:15;8044:128;8084:3;8115:1;8111:6;8108:1;8105:13;8102:39;;;8121:18;;:::i;:::-;-1:-1:-1;8157:9:1;;8044:128::o;9496:127::-;9557:10;9552:3;9548:20;9545:1;9538:31;9588:4;9585:1;9578:15;9612:4;9609:1;9602:15;9977:175;10014:3;10058:4;10051:5;10047:16;10087:4;10078:7;10075:17;10072:43;;10095:18;;:::i;:::-;10144:1;10131:15;;9977:175;-1:-1:-1;;9977:175:1:o;10700:185::-;10742:3;10780:5;10774:12;10795:52;10840:6;10835:3;10828:4;10821:5;10817:16;10795:52;:::i;:::-;10863:16;;;;;10700:185;-1:-1:-1;;10700:185:1:o;11008:1301::-;11285:3;11314:1;11347:6;11341:13;11377:3;11399:1;11427:9;11423:2;11419:18;11409:28;;11487:2;11476:9;11472:18;11509;11499:61;;11553:4;11545:6;11541:17;11531:27;;11499:61;11579:2;11627;11619:6;11616:14;11596:18;11593:38;11590:165;;-1:-1:-1;;;11654:33:1;;11710:4;11707:1;11700:15;11740:4;11661:3;11728:17;11590:165;11771:18;11798:104;;;;11916:1;11911:320;;;;11764:467;;11798:104;-1:-1:-1;;11831:24:1;;11819:37;;11876:16;;;;-1:-1:-1;11798:104:1;;11911:320;10647:1;10640:14;;;10684:4;10671:18;;12006:1;12020:165;12034:6;12031:1;12028:13;12020:165;;;12112:14;;12099:11;;;12092:35;12155:16;;;;12049:10;;12020:165;;;12024:3;;12214:6;12209:3;12205:16;12198:23;;11764:467;;;;;;;12247:56;12272:30;12298:3;12290:6;12272:30;:::i;:::-;10962:7;10950:20;;10995:1;10986:11;;10890:113;12247:56;12240:63;11008:1301;-1:-1:-1;;;;;11008:1301:1:o;14238:245::-;14305:6;14358:2;14346:9;14337:7;14333:23;14329:32;14326:52;;;14374:1;14371;14364:12;14326:52;14406:9;14400:16;14425:28;14447:5;14425:28;:::i;14488:197::-;14526:3;14554:6;14595:2;14588:5;14584:14;14622:2;14613:7;14610:15;14607:41;;14628:18;;:::i;:::-;14677:1;14664:15;;14488:197;-1:-1:-1;;;14488:197:1:o;14822:523::-;15016:4;-1:-1:-1;;;;;15126:2:1;15118:6;15114:15;15103:9;15096:34;15178:2;15170:6;15166:15;15161:2;15150:9;15146:18;15139:43;;15218:6;15213:2;15202:9;15198:18;15191:34;15261:3;15256:2;15245:9;15241:18;15234:31;15282:57;15334:3;15323:9;15319:19;15311:6;15282:57;:::i;:::-;15274:65;14822:523;-1:-1:-1;;;;;;14822:523:1:o;15350:249::-;15419:6;15472:2;15460:9;15451:7;15447:23;15443:32;15440:52;;;15488:1;15485;15478:12;15440:52;15520:9;15514:16;15539:30;15563:5;15539:30;:::i

Swarm Source

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

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