ETH Price: $2,332.98 (-0.59%)
Gas: 7.34 Gwei

Token

True Wolves (WOLVES)
 

Overview

Max Total Supply

333 WOLVES

Holders

171

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 WOLVES
0xc341d836c96e31e136acf08a49df9bd5e5aae0d0
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:
TrueWolves

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.2
// 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();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

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

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

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

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

    /**
     * @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.2
// 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 {
    // Reference type for token approval.
    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 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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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]`.
        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 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 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 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.
            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`.
                )

                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 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

            // 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: contracts/tw.sol



pragma solidity ^0.8.17;






contract TrueWolves is Ownable, ERC721A {

    uint256 public MAX_SUPPLY = 2222;

    uint256 public wlPrice = 0.0099 ether;

    uint256 public pbPrice = 0.012 ether;

    uint256 public wlSaleTime;

    uint256 public pbSaleTime;

    bytes32 public rootWL;

    string private _baseTokenURI;



    constructor() ERC721A("True Wolves", "WOLVES") {}



    function whitelistMint(bytes32[] memory _proof, uint256 _qty)

        external

        payable

    {

        uint256 supply = totalSupply();

        require(block.timestamp >= wlSaleTime, "Sale has not started yet");

        require(_getAux(msg.sender) < 2, "Already minted");

        require(_qty < 3, "Can not mint this many");

        require(

            checkWL(_proof, keccak256(abi.encodePacked(msg.sender))),

            "Address not whitelisted"

        );

        require(supply + _qty <= MAX_SUPPLY, "Reached max supply");

        require(msg.value >= wlPrice * _qty);

        _setAux(msg.sender, _getAux(msg.sender) + uint64(_qty));

        _mint(msg.sender, _qty);

    }



    function publicMint(uint256 _qty) external payable {

        uint256 supply = totalSupply();

        require(block.timestamp >= pbSaleTime, "Sale has not started yet");

        require(_qty < 3, "Can not mint this many");

        require(supply + _qty <= MAX_SUPPLY, "Reached max supply");

        require(msg.value >= pbPrice * _qty);

        _mint(msg.sender, _qty);

    }



    function checkWL(bytes32[] memory _proof, bytes32 _leaf)

        public

        view

        returns (bool)

    {

        return MerkleProof.verify(_proof, rootWL, _leaf);

    }



    function getMinted() public view returns (uint256) {

        return _getAux(msg.sender);

    }



    function _startTokenId() internal view virtual override returns (uint256) {

        return 1;

    }



    function devMint(uint256 _qty) external onlyOwner {

        require(totalSupply() + _qty <= MAX_SUPPLY, "Reached max supply");

        _mint(msg.sender, _qty);

    }



    function _baseURI() internal view virtual override returns (string memory) {

        return _baseTokenURI;

    }



    function setBaseURI(string calldata baseURI) external onlyOwner {

        _baseTokenURI = baseURI;

    }



    function setWlPrice(uint256 price) external onlyOwner {

        wlPrice = price;

    }



    function setPbPrice(uint256 price) external onlyOwner {

        pbPrice = price;

    }



    function setWlSaleTime(uint256 timestamp) external onlyOwner {

        wlSaleTime = timestamp;

    }



    function setPbSaleTime(uint256 timestamp) external onlyOwner {

        pbSaleTime = timestamp;

    }



    function setMerkle(bytes32 root) external onlyOwner {

        rootWL = root;

    }



    function withdraw() external onlyOwner {

        uint256 funds = address(this).balance;

        (bool succ, ) = payable(msg.sender).call{value: funds}("");

        require(succ, "transfer failed");

    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"bytes32","name":"_leaf","type":"bytes32"}],"name":"checkWL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"pbPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pbSaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rootWL","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","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":"nonpayable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPbPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setPbSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setWlPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setWlSaleTime","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlSaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526108ae60095566232bff5f46c000600a55662aa1efb94e0000600b553480156200002d57600080fd5b506040518060400160405280600b81526020016a5472756520576f6c76657360a81b81525060405180604001604052806006815260200165574f4c56455360d01b8152506200008b62000085620000b560201b60201c565b620000b9565b6003620000998382620001ae565b506004620000a88282620001ae565b505060018055506200027a565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200013457607f821691505b6020821081036200015557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001a957600081815260208120601f850160051c81016020861015620001845750805b601f850160051c820191505b81811015620001a55782815560010162000190565b5050505b505050565b81516001600160401b03811115620001ca57620001ca62000109565b620001e281620001db84546200011f565b846200015b565b602080601f8311600181146200021a5760008415620002015750858301515b600019600386901b1c1916600185901b178555620001a5565b600085815260208120601f198616915b828110156200024b578886015182559484019460019091019084016200022a565b50858210156200026a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611b8a806200028a6000396000f3fe6080604052600436106102045760003560e01c806369e894b011610118578063bc9817f4116100a0578063d423f2241161006f578063d423f224146105a6578063da21ebc9146105c6578063e985e9c5146105dc578063ec6654b414610625578063f2fde38b1461063b57600080fd5b8063bc9817f414610530578063c236d09314610550578063c7f8d01a14610570578063c87b56dd1461058657600080fd5b80638dd07d0f116100e75780638dd07d0f1461049657806395d89b41146104b6578063a22cb465146104cb578063ac72200d146104eb578063b88d4fde1461051057600080fd5b806369e894b01461042d57806370a0823114610443578063715018a6146104635780638da5cb5b1461047857600080fd5b806332cb6b0c1161019b57806342842e0e1161016a57806342842e0e1461039757806355f804b3146103b757806362f61747146103d75780636352211e146103ed578063670e99691461040d57600080fd5b806332cb6b0c1461032c578063375a069a146103425780633ccfd60b1461036257806341b3ba3d1461037757600080fd5b806318160ddd116101d757806318160ddd146102ba57806323b872dd146102e65780632904e6d9146103065780632db115441461031957600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b506102296102243660046114e4565b61065b565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106ad565b6040516102359190611551565b34801561026c57600080fd5b5061028061027b366004611564565b61073f565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611599565b610783565b005b3480156102c657600080fd5b506102d8600254600154036000190190565b604051908152602001610235565b3480156102f257600080fd5b506102b86103013660046115c3565b610823565b6102b86103143660046116c6565b6109bc565b6102b8610327366004611564565b610bfe565b34801561033857600080fd5b506102d860095481565b34801561034e57600080fd5b506102b861035d366004611564565b610cfc565b34801561036e57600080fd5b506102b8610d4e565b34801561038357600080fd5b506102b8610392366004611564565b610de2565b3480156103a357600080fd5b506102b86103b23660046115c3565b610def565b3480156103c357600080fd5b506102b86103d236600461170b565b610e0a565b3480156103e357600080fd5b506102d8600b5481565b3480156103f957600080fd5b50610280610408366004611564565b610e1f565b34801561041957600080fd5b506102296104283660046116c6565b610e2a565b34801561043957600080fd5b506102d8600d5481565b34801561044f57600080fd5b506102d861045e36600461177d565b610e40565b34801561046f57600080fd5b506102b8610e8f565b34801561048457600080fd5b506000546001600160a01b0316610280565b3480156104a257600080fd5b506102b86104b1366004611564565b610ea3565b3480156104c257600080fd5b50610253610eb0565b3480156104d757600080fd5b506102b86104e6366004611798565b610ebf565b3480156104f757600080fd5b503360009081526006602052604090205460c01c6102d8565b34801561051c57600080fd5b506102b861052b3660046117d4565b610f54565b34801561053c57600080fd5b506102b861054b366004611564565b610f9e565b34801561055c57600080fd5b506102b861056b366004611564565b610fab565b34801561057c57600080fd5b506102d8600a5481565b34801561059257600080fd5b506102536105a1366004611564565b610fb8565b3480156105b257600080fd5b506102b86105c1366004611564565b61103b565b3480156105d257600080fd5b506102d8600c5481565b3480156105e857600080fd5b506102296105f7366004611894565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561063157600080fd5b506102d8600e5481565b34801561064757600080fd5b506102b861065636600461177d565b611048565b60006301ffc9a760e01b6001600160e01b03198316148061068c57506380ac58cd60e01b6001600160e01b03198316145b806106a75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546106bc906118c7565b80601f01602080910402602001604051908101604052809291908181526020018280546106e8906118c7565b80156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b600061074a826110be565b610767576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061078e82610e1f565b9050336001600160a01b038216146107c7576107aa81336105f7565b6107c7576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061082e826110f3565b9050836001600160a01b0316816001600160a01b0316146108615760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176108ae5761089186336105f7565b6108ae57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166108d557604051633a954ecd60e21b815260040160405180910390fd5b80156108e057600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610972576001840160008181526005602052604081205490036109705760015481146109705760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60006109cf600254600154036000190190565b9050600c54421015610a235760405162461bcd60e51b815260206004820152601860248201527714d85b19481a185cc81b9bdd081cdd185c9d1959081e595d60421b60448201526064015b60405180910390fd5b3360009081526006602052604090205460029060c01c67ffffffffffffffff1610610a815760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481b5a5b9d195960921b6044820152606401610a1a565b60038210610aca5760405162461bcd60e51b815260206004820152601660248201527543616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610a1a565b6040516bffffffffffffffffffffffff193360601b166020820152610b0990849060340160405160208183030381529060405280519060200120610e2a565b610b555760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c69737465640000000000000000006044820152606401610a1a565b600954610b628383611917565b1115610b805760405162461bcd60e51b8152600401610a1a9061192a565b81600a54610b8e9190611956565b341015610b9a57600080fd5b33600081815260066020526040902054610bef9190610bbd90859060c01c61196d565b6001600160a01b03909116600090815260066020526040902080546001600160c01b031660c09290921b919091179055565b610bf93383611162565b505050565b6000610c11600254600154036000190190565b9050600d54421015610c605760405162461bcd60e51b815260206004820152601860248201527714d85b19481a185cc81b9bdd081cdd185c9d1959081e595d60421b6044820152606401610a1a565b60038210610ca95760405162461bcd60e51b815260206004820152601660248201527543616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610a1a565b600954610cb68383611917565b1115610cd45760405162461bcd60e51b8152600401610a1a9061192a565b81600b54610ce29190611956565b341015610cee57600080fd5b610cf83383611162565b5050565b610d04611260565b60095481610d19600254600154036000190190565b610d239190611917565b1115610d415760405162461bcd60e51b8152600401610a1a9061192a565b610d4b3382611162565b50565b610d56611260565b6040514790600090339083908381818185875af1925050503d8060008114610d9a576040519150601f19603f3d011682016040523d82523d6000602084013e610d9f565b606091505b5050905080610cf85760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b6044820152606401610a1a565b610dea611260565b600e55565b610bf983838360405180602001604052806000815250610f54565b610e12611260565b600f610bf98284836119db565b60006106a7826110f3565b6000610e3983600e54846112ba565b9392505050565b60006001600160a01b038216610e69576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610e97611260565b610ea160006112d0565b565b610eab611260565b600a55565b6060600480546106bc906118c7565b336001600160a01b03831603610ee85760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f5f848484610823565b6001600160a01b0383163b15610f9857610f7b84848484611320565b610f98576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610fa6611260565b600b55565b610fb3611260565b600c55565b6060610fc3826110be565b610fe057604051630a14c4b560e41b815260040160405180910390fd5b6000610fea61140b565b9050805160000361100a5760405180602001604052806000815250610e39565b806110148461141a565b604051602001611025929190611a9c565b6040516020818303038152906040529392505050565b611043611260565b600d55565b611050611260565b6001600160a01b0381166110b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a1a565b610d4b816112d0565b6000816001111580156110d2575060015482105b80156106a7575050600090815260056020526040902054600160e01b161590565b60008180600111611149576001548110156111495760008181526005602052604081205490600160e01b82169003611147575b80600003610e39575060001901600081815260056020526040902054611126565b505b604051636f96cda160e11b815260040160405180910390fd5b60015460008290036111875760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461123657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016111fe565b508160000361125757604051622e076360e81b815260040160405180910390fd5b60015550505050565b6000546001600160a01b03163314610ea15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a1a565b6000826112c78584611452565b14949350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611355903390899088908890600401611acb565b6020604051808303816000875af1925050508015611390575060408051601f3d908101601f1916820190925261138d91810190611b08565b60015b6113ee573d8080156113be576040519150601f19603f3d011682016040523d82523d6000602084013e6113c3565b606091505b5080516000036113e6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600f80546106bc906118c7565b604080516080019081905280825b600183039250600a81066030018353600a9004806114285750819003601f19909101908152919050565b600081815b8451811015611497576114838286838151811061147657611476611b25565b602002602001015161149f565b91508061148f81611b3b565b915050611457565b509392505050565b60008183106114bb576000828152602084905260409020610e39565b6000838152602083905260409020610e39565b6001600160e01b031981168114610d4b57600080fd5b6000602082840312156114f657600080fd5b8135610e39816114ce565b60005b8381101561151c578181015183820152602001611504565b50506000910152565b6000815180845261153d816020860160208601611501565b601f01601f19169290920160200192915050565b602081526000610e396020830184611525565b60006020828403121561157657600080fd5b5035919050565b80356001600160a01b038116811461159457600080fd5b919050565b600080604083850312156115ac57600080fd5b6115b58361157d565b946020939093013593505050565b6000806000606084860312156115d857600080fd5b6115e18461157d565b92506115ef6020850161157d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561163e5761163e6115ff565b604052919050565b600082601f83011261165757600080fd5b8135602067ffffffffffffffff821115611673576116736115ff565b8160051b611682828201611615565b928352848101820192828101908785111561169c57600080fd5b83870192505b848310156116bb578235825291830191908301906116a2565b979650505050505050565b600080604083850312156116d957600080fd5b823567ffffffffffffffff8111156116f057600080fd5b6116fc85828601611646565b95602094909401359450505050565b6000806020838503121561171e57600080fd5b823567ffffffffffffffff8082111561173657600080fd5b818501915085601f83011261174a57600080fd5b81358181111561175957600080fd5b86602082850101111561176b57600080fd5b60209290920196919550909350505050565b60006020828403121561178f57600080fd5b610e398261157d565b600080604083850312156117ab57600080fd5b6117b48361157d565b9150602083013580151581146117c957600080fd5b809150509250929050565b600080600080608085870312156117ea57600080fd5b6117f38561157d565b9350602061180281870161157d565b935060408601359250606086013567ffffffffffffffff8082111561182657600080fd5b818801915088601f83011261183a57600080fd5b81358181111561184c5761184c6115ff565b61185e601f8201601f19168501611615565b9150808252898482850101111561187457600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156118a757600080fd5b6118b08361157d565b91506118be6020840161157d565b90509250929050565b600181811c908216806118db57607f821691505b6020821081036118fb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106a7576106a7611901565b60208082526012908201527152656163686564206d617820737570706c7960701b604082015260600190565b80820281158282048414176106a7576106a7611901565b67ffffffffffffffff81811683821601908082111561198e5761198e611901565b5092915050565b601f821115610bf957600081815260208120601f850160051c810160208610156119bc5750805b601f850160051c820191505b818110156109b4578281556001016119c8565b67ffffffffffffffff8311156119f3576119f36115ff565b611a0783611a0183546118c7565b83611995565b6000601f841160018114611a3b5760008515611a235750838201355b600019600387901b1c1916600186901b178355611a95565b600083815260209020601f19861690835b82811015611a6c5786850135825560209485019460019092019101611a4c565b5086821015611a895760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b60008351611aae818460208801611501565b835190830190611ac2818360208801611501565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611afe90830184611525565b9695505050505050565b600060208284031215611b1a57600080fd5b8151610e39816114ce565b634e487b7160e01b600052603260045260246000fd5b600060018201611b4d57611b4d611901565b506001019056fea2646970667358221220229060d80565e7930dbd17d58033f252a546569ca1eb1c1d467b359af56a81ec64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102045760003560e01c806369e894b011610118578063bc9817f4116100a0578063d423f2241161006f578063d423f224146105a6578063da21ebc9146105c6578063e985e9c5146105dc578063ec6654b414610625578063f2fde38b1461063b57600080fd5b8063bc9817f414610530578063c236d09314610550578063c7f8d01a14610570578063c87b56dd1461058657600080fd5b80638dd07d0f116100e75780638dd07d0f1461049657806395d89b41146104b6578063a22cb465146104cb578063ac72200d146104eb578063b88d4fde1461051057600080fd5b806369e894b01461042d57806370a0823114610443578063715018a6146104635780638da5cb5b1461047857600080fd5b806332cb6b0c1161019b57806342842e0e1161016a57806342842e0e1461039757806355f804b3146103b757806362f61747146103d75780636352211e146103ed578063670e99691461040d57600080fd5b806332cb6b0c1461032c578063375a069a146103425780633ccfd60b1461036257806341b3ba3d1461037757600080fd5b806318160ddd116101d757806318160ddd146102ba57806323b872dd146102e65780632904e6d9146103065780632db115441461031957600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b506102296102243660046114e4565b61065b565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106ad565b6040516102359190611551565b34801561026c57600080fd5b5061028061027b366004611564565b61073f565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611599565b610783565b005b3480156102c657600080fd5b506102d8600254600154036000190190565b604051908152602001610235565b3480156102f257600080fd5b506102b86103013660046115c3565b610823565b6102b86103143660046116c6565b6109bc565b6102b8610327366004611564565b610bfe565b34801561033857600080fd5b506102d860095481565b34801561034e57600080fd5b506102b861035d366004611564565b610cfc565b34801561036e57600080fd5b506102b8610d4e565b34801561038357600080fd5b506102b8610392366004611564565b610de2565b3480156103a357600080fd5b506102b86103b23660046115c3565b610def565b3480156103c357600080fd5b506102b86103d236600461170b565b610e0a565b3480156103e357600080fd5b506102d8600b5481565b3480156103f957600080fd5b50610280610408366004611564565b610e1f565b34801561041957600080fd5b506102296104283660046116c6565b610e2a565b34801561043957600080fd5b506102d8600d5481565b34801561044f57600080fd5b506102d861045e36600461177d565b610e40565b34801561046f57600080fd5b506102b8610e8f565b34801561048457600080fd5b506000546001600160a01b0316610280565b3480156104a257600080fd5b506102b86104b1366004611564565b610ea3565b3480156104c257600080fd5b50610253610eb0565b3480156104d757600080fd5b506102b86104e6366004611798565b610ebf565b3480156104f757600080fd5b503360009081526006602052604090205460c01c6102d8565b34801561051c57600080fd5b506102b861052b3660046117d4565b610f54565b34801561053c57600080fd5b506102b861054b366004611564565b610f9e565b34801561055c57600080fd5b506102b861056b366004611564565b610fab565b34801561057c57600080fd5b506102d8600a5481565b34801561059257600080fd5b506102536105a1366004611564565b610fb8565b3480156105b257600080fd5b506102b86105c1366004611564565b61103b565b3480156105d257600080fd5b506102d8600c5481565b3480156105e857600080fd5b506102296105f7366004611894565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561063157600080fd5b506102d8600e5481565b34801561064757600080fd5b506102b861065636600461177d565b611048565b60006301ffc9a760e01b6001600160e01b03198316148061068c57506380ac58cd60e01b6001600160e01b03198316145b806106a75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546106bc906118c7565b80601f01602080910402602001604051908101604052809291908181526020018280546106e8906118c7565b80156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b600061074a826110be565b610767576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061078e82610e1f565b9050336001600160a01b038216146107c7576107aa81336105f7565b6107c7576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061082e826110f3565b9050836001600160a01b0316816001600160a01b0316146108615760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176108ae5761089186336105f7565b6108ae57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166108d557604051633a954ecd60e21b815260040160405180910390fd5b80156108e057600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610972576001840160008181526005602052604081205490036109705760015481146109705760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60006109cf600254600154036000190190565b9050600c54421015610a235760405162461bcd60e51b815260206004820152601860248201527714d85b19481a185cc81b9bdd081cdd185c9d1959081e595d60421b60448201526064015b60405180910390fd5b3360009081526006602052604090205460029060c01c67ffffffffffffffff1610610a815760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481b5a5b9d195960921b6044820152606401610a1a565b60038210610aca5760405162461bcd60e51b815260206004820152601660248201527543616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610a1a565b6040516bffffffffffffffffffffffff193360601b166020820152610b0990849060340160405160208183030381529060405280519060200120610e2a565b610b555760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c69737465640000000000000000006044820152606401610a1a565b600954610b628383611917565b1115610b805760405162461bcd60e51b8152600401610a1a9061192a565b81600a54610b8e9190611956565b341015610b9a57600080fd5b33600081815260066020526040902054610bef9190610bbd90859060c01c61196d565b6001600160a01b03909116600090815260066020526040902080546001600160c01b031660c09290921b919091179055565b610bf93383611162565b505050565b6000610c11600254600154036000190190565b9050600d54421015610c605760405162461bcd60e51b815260206004820152601860248201527714d85b19481a185cc81b9bdd081cdd185c9d1959081e595d60421b6044820152606401610a1a565b60038210610ca95760405162461bcd60e51b815260206004820152601660248201527543616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610a1a565b600954610cb68383611917565b1115610cd45760405162461bcd60e51b8152600401610a1a9061192a565b81600b54610ce29190611956565b341015610cee57600080fd5b610cf83383611162565b5050565b610d04611260565b60095481610d19600254600154036000190190565b610d239190611917565b1115610d415760405162461bcd60e51b8152600401610a1a9061192a565b610d4b3382611162565b50565b610d56611260565b6040514790600090339083908381818185875af1925050503d8060008114610d9a576040519150601f19603f3d011682016040523d82523d6000602084013e610d9f565b606091505b5050905080610cf85760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b6044820152606401610a1a565b610dea611260565b600e55565b610bf983838360405180602001604052806000815250610f54565b610e12611260565b600f610bf98284836119db565b60006106a7826110f3565b6000610e3983600e54846112ba565b9392505050565b60006001600160a01b038216610e69576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610e97611260565b610ea160006112d0565b565b610eab611260565b600a55565b6060600480546106bc906118c7565b336001600160a01b03831603610ee85760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f5f848484610823565b6001600160a01b0383163b15610f9857610f7b84848484611320565b610f98576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610fa6611260565b600b55565b610fb3611260565b600c55565b6060610fc3826110be565b610fe057604051630a14c4b560e41b815260040160405180910390fd5b6000610fea61140b565b9050805160000361100a5760405180602001604052806000815250610e39565b806110148461141a565b604051602001611025929190611a9c565b6040516020818303038152906040529392505050565b611043611260565b600d55565b611050611260565b6001600160a01b0381166110b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a1a565b610d4b816112d0565b6000816001111580156110d2575060015482105b80156106a7575050600090815260056020526040902054600160e01b161590565b60008180600111611149576001548110156111495760008181526005602052604081205490600160e01b82169003611147575b80600003610e39575060001901600081815260056020526040902054611126565b505b604051636f96cda160e11b815260040160405180910390fd5b60015460008290036111875760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461123657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016111fe565b508160000361125757604051622e076360e81b815260040160405180910390fd5b60015550505050565b6000546001600160a01b03163314610ea15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a1a565b6000826112c78584611452565b14949350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611355903390899088908890600401611acb565b6020604051808303816000875af1925050508015611390575060408051601f3d908101601f1916820190925261138d91810190611b08565b60015b6113ee573d8080156113be576040519150601f19603f3d011682016040523d82523d6000602084013e6113c3565b606091505b5080516000036113e6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600f80546106bc906118c7565b604080516080019081905280825b600183039250600a81066030018353600a9004806114285750819003601f19909101908152919050565b600081815b8451811015611497576114838286838151811061147657611476611b25565b602002602001015161149f565b91508061148f81611b3b565b915050611457565b509392505050565b60008183106114bb576000828152602084905260409020610e39565b6000838152602083905260409020610e39565b6001600160e01b031981168114610d4b57600080fd5b6000602082840312156114f657600080fd5b8135610e39816114ce565b60005b8381101561151c578181015183820152602001611504565b50506000910152565b6000815180845261153d816020860160208601611501565b601f01601f19169290920160200192915050565b602081526000610e396020830184611525565b60006020828403121561157657600080fd5b5035919050565b80356001600160a01b038116811461159457600080fd5b919050565b600080604083850312156115ac57600080fd5b6115b58361157d565b946020939093013593505050565b6000806000606084860312156115d857600080fd5b6115e18461157d565b92506115ef6020850161157d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561163e5761163e6115ff565b604052919050565b600082601f83011261165757600080fd5b8135602067ffffffffffffffff821115611673576116736115ff565b8160051b611682828201611615565b928352848101820192828101908785111561169c57600080fd5b83870192505b848310156116bb578235825291830191908301906116a2565b979650505050505050565b600080604083850312156116d957600080fd5b823567ffffffffffffffff8111156116f057600080fd5b6116fc85828601611646565b95602094909401359450505050565b6000806020838503121561171e57600080fd5b823567ffffffffffffffff8082111561173657600080fd5b818501915085601f83011261174a57600080fd5b81358181111561175957600080fd5b86602082850101111561176b57600080fd5b60209290920196919550909350505050565b60006020828403121561178f57600080fd5b610e398261157d565b600080604083850312156117ab57600080fd5b6117b48361157d565b9150602083013580151581146117c957600080fd5b809150509250929050565b600080600080608085870312156117ea57600080fd5b6117f38561157d565b9350602061180281870161157d565b935060408601359250606086013567ffffffffffffffff8082111561182657600080fd5b818801915088601f83011261183a57600080fd5b81358181111561184c5761184c6115ff565b61185e601f8201601f19168501611615565b9150808252898482850101111561187457600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156118a757600080fd5b6118b08361157d565b91506118be6020840161157d565b90509250929050565b600181811c908216806118db57607f821691505b6020821081036118fb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106a7576106a7611901565b60208082526012908201527152656163686564206d617820737570706c7960701b604082015260600190565b80820281158282048414176106a7576106a7611901565b67ffffffffffffffff81811683821601908082111561198e5761198e611901565b5092915050565b601f821115610bf957600081815260208120601f850160051c810160208610156119bc5750805b601f850160051c820191505b818110156109b4578281556001016119c8565b67ffffffffffffffff8311156119f3576119f36115ff565b611a0783611a0183546118c7565b83611995565b6000601f841160018114611a3b5760008515611a235750838201355b600019600387901b1c1916600186901b178355611a95565b600083815260209020601f19861690835b82811015611a6c5786850135825560209485019460019092019101611a4c565b5086821015611a895760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b60008351611aae818460208801611501565b835190830190611ac2818360208801611501565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611afe90830184611525565b9695505050505050565b600060208284031215611b1a57600080fd5b8151610e39816114ce565b634e487b7160e01b600052603260045260246000fd5b600060018201611b4d57611b4d611901565b506001019056fea2646970667358221220229060d80565e7930dbd17d58033f252a546569ca1eb1c1d467b359af56a81ec64736f6c63430008110033

Deployed Bytecode Sourcemap

63215:3169:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30753:639;;;;;;;;;;-1:-1:-1;30753:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;30753:639:0;;;;;;;;31655:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38138:218::-;;;;;;;;;;-1:-1:-1;38138:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;38138:218:0;1533:203:1;37579:400:0;;;;;;;;;;-1:-1:-1;37579:400:0;;;;;:::i;:::-;;:::i;:::-;;27406:323;;;;;;;;;;;;27680:12;;65159:1;27664:13;:28;-1:-1:-1;;27664:46:0;;27406:323;;;;2324:25:1;;;2312:2;2297:18;27406:323:0;2178:177:1;41845:2817:0;;;;;;;;;;-1:-1:-1;41845:2817:0;;;;;:::i;:::-;;:::i;63596:731::-;;;;;;:::i;:::-;;:::i;64339:395::-;;;;;;:::i;:::-;;:::i;63264:32::-;;;;;;;;;;;;;;;;65182:174;;;;;;;;;;-1:-1:-1;65182:174:0;;;;;:::i;:::-;;:::i;66164:215::-;;;;;;;;;;;;;:::i;66064:88::-;;;;;;;;;;-1:-1:-1;66064:88:0;;;;;:::i;:::-;;:::i;44758:185::-;;;;;;;;;;-1:-1:-1;44758:185:0;;;;;:::i;:::-;;:::i;65498:110::-;;;;;;;;;;-1:-1:-1;65498:110:0;;;;;:::i;:::-;;:::i;63351:36::-;;;;;;;;;;;;;;;;33048:152;;;;;;;;;;-1:-1:-1;33048:152:0;;;;;:::i;:::-;;:::i;64746:195::-;;;;;;;;;;-1:-1:-1;64746:195:0;;;;;:::i;:::-;;:::i;63430:25::-;;;;;;;;;;;;;;;;28590:233;;;;;;;;;;-1:-1:-1;28590:233:0;;;;;:::i;:::-;;:::i;11501:103::-;;;;;;;;;;;;;:::i;10853:87::-;;;;;;;;;;-1:-1:-1;10899:7:0;10926:6;-1:-1:-1;;;;;10926:6:0;10853:87;;65620:92;;;;;;;;;;-1:-1:-1;65620:92:0;;;;;:::i;:::-;;:::i;31831:104::-;;;;;;;;;;;;;:::i;38696:308::-;;;;;;;;;;-1:-1:-1;38696:308:0;;;;;:::i;:::-;;:::i;64953:100::-;;;;;;;;;;-1:-1:-1;65032:10:0;64995:7;29565:25;;;:18;:25;;;;;;23123:3;29565:40;64953:100;;45541:399;;;;;;;;;;-1:-1:-1;45541:399:0;;;;;:::i;:::-;;:::i;65724:92::-;;;;;;;;;;-1:-1:-1;65724:92:0;;;;;:::i;:::-;;:::i;65828:106::-;;;;;;;;;;-1:-1:-1;65828:106:0;;;;;:::i;:::-;;:::i;63305:37::-;;;;;;;;;;;;;;;;32041:318;;;;;;;;;;-1:-1:-1;32041:318:0;;;;;:::i;:::-;;:::i;65946:106::-;;;;;;;;;;-1:-1:-1;65946:106:0;;;;;:::i;:::-;;:::i;63396:25::-;;;;;;;;;;;;;;;;39161:164;;;;;;;;;;-1:-1:-1;39161:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;39282:25:0;;;39258:4;39282:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;39161:164;63464:21;;;;;;;;;;;;;;;;11759:201;;;;;;;;;;-1:-1:-1;11759:201:0;;;;;:::i;:::-;;:::i;30753:639::-;30838:4;-1:-1:-1;;;;;;;;;31162:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;31239:25:0;;;31162:102;:179;;;-1:-1:-1;;;;;;;;;;31316:25:0;;;31162:179;31142:199;30753:639;-1:-1:-1;;30753:639:0:o;31655:100::-;31709:13;31742:5;31735:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31655:100;:::o;38138:218::-;38214:7;38239:16;38247:7;38239;:16::i;:::-;38234:64;;38264:34;;-1:-1:-1;;;38264:34:0;;;;;;;;;;;38234:64;-1:-1:-1;38318:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;38318:30:0;;38138:218::o;37579:400::-;37660:13;37676:16;37684:7;37676;:16::i;:::-;37660:32;-1:-1:-1;61436:10:0;-1:-1:-1;;;;;37709:28:0;;;37705:175;;37757:44;37774:5;61436:10;39161:164;:::i;37757:44::-;37752:128;;37829:35;;-1:-1:-1;;;37829:35:0;;;;;;;;;;;37752:128;37892:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;37892:35:0;-1:-1:-1;;;;;37892:35:0;;;;;;;;;37943:28;;37892:24;;37943:28;;;;;;;37649:330;37579:400;;:::o;41845:2817::-;41979:27;42009;42028:7;42009:18;:27::i;:::-;41979:57;;42094:4;-1:-1:-1;;;;;42053:45:0;42069:19;-1:-1:-1;;;;;42053:45:0;;42049:86;;42107:28;;-1:-1:-1;;;42107:28:0;;;;;;;;;;;42049:86;42149:27;40959:24;;;:15;:24;;;;;41181:26;;61436:10;40584:30;;;-1:-1:-1;;;;;40277:28:0;;40562:20;;;40559:56;42335:180;;42428:43;42445:4;61436:10;39161:164;:::i;42428:43::-;42423:92;;42480:35;;-1:-1:-1;;;42480:35:0;;;;;;;;;;;42423:92;-1:-1:-1;;;;;42532:16:0;;42528:52;;42557:23;;-1:-1:-1;;;42557:23:0;;;;;;;;;;;42528:52;42729:15;42726:160;;;42869:1;42848:19;42841:30;42726:160;-1:-1:-1;;;;;43266:24:0;;;;;;;:18;:24;;;;;;43264:26;;-1:-1:-1;;43264:26:0;;;43335:22;;;;;;;;;43333:24;;-1:-1:-1;43333:24:0;;;36437:11;36412:23;36408:41;36395:63;-1:-1:-1;;;36395:63:0;43628:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;43923:47:0;;:52;;43919:627;;44028:1;44018:11;;43996:19;44151:30;;;:17;:30;;;;;;:35;;44147:384;;44289:13;;44274:11;:28;44270:242;;44436:30;;;;:17;:30;;;;;:52;;;44270:242;43977:569;43919:627;44593:7;44589:2;-1:-1:-1;;;;;44574:27:0;44583:4;-1:-1:-1;;;;;44574:27:0;;;;;;;;;;;44612:42;41968:2694;;;41845:2817;;;:::o;63596:731::-;63717:14;63734:13;27680:12;;65159:1;27664:13;:28;-1:-1:-1;;27664:46:0;;27406:323;63734:13;63717:30;;63787:10;;63768:15;:29;;63760:66;;;;-1:-1:-1;;;63760:66:0;;8008:2:1;63760:66:0;;;7990:21:1;8047:2;8027:18;;;8020:30;-1:-1:-1;;;8066:18:1;;;8059:54;8130:18;;63760:66:0;;;;;;;;;63855:10;29532:6;29565:25;;;:18;:25;;;;;;63869:1;;23123:3;29565:40;63847:23;;;63839:50;;;;-1:-1:-1;;;63839:50:0;;8361:2:1;63839:50:0;;;8343:21:1;8400:2;8380:18;;;8373:30;-1:-1:-1;;;8419:18:1;;;8412:44;8473:18;;63839:50:0;8159:338:1;63839:50:0;63917:1;63910:4;:8;63902:43;;;;-1:-1:-1;;;63902:43:0;;8704:2:1;63902:43:0;;;8686:21:1;8743:2;8723:18;;;8716:30;-1:-1:-1;;;8762:18:1;;;8755:52;8824:18;;63902:43:0;8502:346:1;63902:43:0;64008:28;;-1:-1:-1;;64025:10:0;9002:2:1;8998:15;8994:53;64008:28:0;;;8982:66:1;63982:56:0;;63990:6;;9064:12:1;;64008:28:0;;;;;;;;;;;;63998:39;;;;;;63982:7;:56::i;:::-;63958:135;;;;-1:-1:-1;;;63958:135:0;;9289:2:1;63958:135:0;;;9271:21:1;9328:2;9308:18;;;9301:30;9367:25;9347:18;;;9340:53;9410:18;;63958:135:0;9087:347:1;63958:135:0;64131:10;;64114:13;64123:4;64114:6;:13;:::i;:::-;:27;;64106:58;;;;-1:-1:-1;;;64106:58:0;;;;;;;:::i;:::-;64208:4;64198:7;;:14;;;;:::i;:::-;64185:9;:27;;64177:36;;;;;;64234:10;29532:6;29565:25;;;:18;:25;;;;;;64226:55;;64234:10;64246:34;;64275:4;;23123:3;29565:40;64246:34;:::i;:::-;-1:-1:-1;;;;;29891:25:0;;;29874:14;29891:25;;;:18;:25;;;;;;;-1:-1:-1;;;;;30091:32:0;23123:3;30128:24;;;;30090:63;;;;30164:34;;29802:404;64226:55;64294:23;64300:10;64312:4;64294:5;:23::i;:::-;63704:623;63596:731;;:::o;64339:395::-;64403:14;64420:13;27680:12;;65159:1;27664:13;:28;-1:-1:-1;;27664:46:0;;27406:323;64420:13;64403:30;;64473:10;;64454:15;:29;;64446:66;;;;-1:-1:-1;;;64446:66:0;;8008:2:1;64446:66:0;;;7990:21:1;8047:2;8027:18;;;8020:30;-1:-1:-1;;;8066:18:1;;;8059:54;8130:18;;64446:66:0;7806:348:1;64446:66:0;64540:1;64533:4;:8;64525:43;;;;-1:-1:-1;;;64525:43:0;;8704:2:1;64525:43:0;;;8686:21:1;8743:2;8723:18;;;8716:30;-1:-1:-1;;;8762:18:1;;;8755:52;8824:18;;64525:43:0;8502:346:1;64525:43:0;64606:10;;64589:13;64598:4;64589:6;:13;:::i;:::-;:27;;64581:58;;;;-1:-1:-1;;;64581:58:0;;;;;;;:::i;:::-;64683:4;64673:7;;:14;;;;:::i;:::-;64660:9;:27;;64652:36;;;;;;64701:23;64707:10;64719:4;64701:5;:23::i;:::-;64390:344;64339:395;:::o;65182:174::-;10739:13;:11;:13::i;:::-;65277:10:::1;;65269:4;65253:13;27680:12:::0;;65159:1;27664:13;:28;-1:-1:-1;;27664:46:0;;27406:323;65253:13:::1;:20;;;;:::i;:::-;:34;;65245:65;;;;-1:-1:-1::0;;;65245:65:0::1;;;;;;;:::i;:::-;65323:23;65329:10;65341:4;65323:5;:23::i;:::-;65182:174:::0;:::o;66164:215::-;10739:13;:11;:13::i;:::-;66282:42:::1;::::0;66232:21:::1;::::0;66216:13:::1;::::0;66290:10:::1;::::0;66232:21;;66216:13;66282:42;66216:13;66282:42;66232:21;66290:10;66282:42:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66266:58;;;66345:4;66337:32;;;::::0;-1:-1:-1;;;66337:32:0;;10818:2:1;66337:32:0::1;::::0;::::1;10800:21:1::0;10857:2;10837:18;;;10830:30;-1:-1:-1;;;10876:18:1;;;10869:45;10931:18;;66337:32:0::1;10616:339:1::0;66064:88:0;10739:13;:11;:13::i;:::-;66129:6:::1;:13:::0;66064:88::o;44758:185::-;44896:39;44913:4;44919:2;44923:7;44896:39;;;;;;;;;;;;:16;:39::i;65498:110::-;10739:13;:11;:13::i;:::-;65575::::1;:23;65591:7:::0;;65575:13;:23:::1;:::i;33048:152::-:0;33120:7;33163:27;33182:7;33163:18;:27::i;64746:195::-;64857:4;64890:41;64909:6;64917;;64925:5;64890:18;:41::i;:::-;64883:48;64746:195;-1:-1:-1;;;64746:195:0:o;28590:233::-;28662:7;-1:-1:-1;;;;;28686:19:0;;28682:60;;28714:28;;-1:-1:-1;;;28714:28:0;;;;;;;;;;;28682:60;-1:-1:-1;;;;;;28760:25:0;;;;;:18;:25;;;;;;22749:13;28760:55;;28590:233::o;11501:103::-;10739:13;:11;:13::i;:::-;11566:30:::1;11593:1;11566:18;:30::i;:::-;11501:103::o:0;65620:92::-;10739:13;:11;:13::i;:::-;65687:7:::1;:15:::0;65620:92::o;31831:104::-;31887:13;31920:7;31913:14;;;;;:::i;38696:308::-;61436:10;-1:-1:-1;;;;;38795:31:0;;;38791:61;;38835:17;;-1:-1:-1;;;38835:17:0;;;;;;;;;;;38791:61;61436:10;38865:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;38865:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;38865:60:0;;;;;;;;;;38941:55;;540:41:1;;;38865:49:0;;61436:10;38941:55;;513:18:1;38941:55:0;;;;;;;38696:308;;:::o;45541:399::-;45708:31;45721:4;45727:2;45731:7;45708:12;:31::i;:::-;-1:-1:-1;;;;;45754:14:0;;;:19;45750:183;;45793:56;45824:4;45830:2;45834:7;45843:5;45793:30;:56::i;:::-;45788:145;;45877:40;;-1:-1:-1;;;45877:40:0;;;;;;;;;;;45788:145;45541:399;;;;:::o;65724:92::-;10739:13;:11;:13::i;:::-;65791:7:::1;:15:::0;65724:92::o;65828:106::-;10739:13;:11;:13::i;:::-;65902:10:::1;:22:::0;65828:106::o;32041:318::-;32114:13;32145:16;32153:7;32145;:16::i;:::-;32140:59;;32170:29;;-1:-1:-1;;;32170:29:0;;;;;;;;;;;32140:59;32212:21;32236:10;:8;:10::i;:::-;32212:34;;32270:7;32264:21;32289:1;32264:26;:87;;;;;;;;;;;;;;;;;32317:7;32326:18;32336:7;32326:9;:18::i;:::-;32300:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32257:94;32041:318;-1:-1:-1;;;32041:318:0:o;65946:106::-;10739:13;:11;:13::i;:::-;66020:10:::1;:22:::0;65946:106::o;11759:201::-;10739:13;:11;:13::i;:::-;-1:-1:-1;;;;;11848:22:0;::::1;11840:73;;;::::0;-1:-1:-1;;;11840:73:0;;13721:2:1;11840:73:0::1;::::0;::::1;13703:21:1::0;13760:2;13740:18;;;13733:30;13799:34;13779:18;;;13772:62;-1:-1:-1;;;13850:18:1;;;13843:36;13896:19;;11840:73:0::1;13519:402:1::0;11840:73:0::1;11924:28;11943:8;11924:18;:28::i;39583:282::-:0;39648:4;39704:7;65159:1;39685:26;;:66;;;;;39738:13;;39728:7;:23;39685:66;:153;;;;-1:-1:-1;;39789:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;39789:44:0;:49;;39583:282::o;34203:1275::-;34270:7;34305;;65159:1;34354:23;34350:1061;;34407:13;;34400:4;:20;34396:1015;;;34445:14;34462:23;;;:17;:23;;;;;;;-1:-1:-1;;;34551:24:0;;:29;;34547:845;;35216:113;35223:6;35233:1;35223:11;35216:113;;-1:-1:-1;;;35294:6:0;35276:25;;;;:17;:25;;;;;;35216:113;;34547:845;34422:989;34396:1015;35439:31;;-1:-1:-1;;;35439:31:0;;;;;;;;;;;49202:2454;49298:13;;49275:20;49326:13;;;49322:44;;49348:18;;-1:-1:-1;;;49348:18:0;;;;;;;;;;;49322:44;-1:-1:-1;;;;;49854:22:0;;;;;;:18;:22;;;;22887:2;49854:22;;;:71;;49892:32;49880:45;;49854:71;;;50168:31;;;:17;:31;;;;;-1:-1:-1;36868:15:0;;36842:24;36838:46;36437:11;36412:23;36408:41;36405:52;36395:63;;50168:173;;50403:23;;;;50168:31;;49854:22;;50902:25;49854:22;;50755:335;51170:1;51156:12;51152:20;51110:346;51211:3;51202:7;51199:16;51110:346;;51429:7;51419:8;51416:1;51389:25;51386:1;51383;51378:59;51264:1;51251:15;51110:346;;;51114:77;51489:8;51501:1;51489:13;51485:45;;51511:19;;-1:-1:-1;;;51511:19:0;;;;;;;;;;;51485:45;51547:13;:19;-1:-1:-1;63704:623:0;63596:731;;:::o;11018:132::-;10899:7;10926:6;-1:-1:-1;;;;;10926:6:0;61436:10;11082:23;11074:68;;;;-1:-1:-1;;;11074:68:0;;14128:2:1;11074:68:0;;;14110:21:1;;;14147:18;;;14140:30;14206:34;14186:18;;;14179:62;14258:18;;11074:68:0;13926:356:1;1219:190:0;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;;1219:190;-1:-1:-1;;;;1219:190:0:o;12120:191::-;12194:16;12213:6;;-1:-1:-1;;;;;12230:17:0;;;-1:-1:-1;;;;;;12230:17:0;;;;;;12263:40;;12213:6;;;;;;;12263:40;;12194:16;12263:40;12183:128;12120:191;:::o;48024:716::-;48208:88;;-1:-1:-1;;;48208:88:0;;48187:4;;-1:-1:-1;;;;;48208:45:0;;;;;:88;;61436:10;;48275:4;;48281:7;;48290:5;;48208:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48208:88:0;;;;;;;;-1:-1:-1;;48208:88:0;;;;;;;;;;;;:::i;:::-;;;48204:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48491:6;:13;48508:1;48491:18;48487:235;;48537:40;;-1:-1:-1;;;48537:40:0;;;;;;;;;;;48487:235;48680:6;48674:13;48665:6;48661:2;48657:15;48650:38;48204:529;-1:-1:-1;;;;;;48367:64:0;-1:-1:-1;;;48367:64:0;;-1:-1:-1;48024:716:0;;;;;;:::o;65368:118::-;65428:13;65463;65456:20;;;;;:::i;61556:1581::-;62039:4;62033:11;;62046:4;62029:22;62125:17;;;;62029:22;62483:5;62465:428;62531:1;62526:3;62522:11;62515:18;;62702:2;62696:4;62692:13;62688:2;62684:22;62679:3;62671:36;62796:2;62786:13;;62853:25;62465:428;62853:25;-1:-1:-1;62923:13:0;;;-1:-1:-1;;63038:14:0;;;63100:19;;;63038:14;61556:1581;-1:-1:-1;61556:1581:0:o;2086:296::-;2169:7;2212:4;2169:7;2227:118;2251:5;:12;2247:1;:16;2227:118;;;2300:33;2310:12;2324:5;2330:1;2324:8;;;;;;;;:::i;:::-;;;;;;;2300:9;:33::i;:::-;2285:48;-1:-1:-1;2265:3:0;;;;:::i;:::-;;;;2227:118;;;-1:-1:-1;2362:12:0;2086:296;-1:-1:-1;;;2086:296:0:o;8293:149::-;8356:7;8387:1;8383;:5;:51;;8518:13;8612:15;;;8648:4;8641:15;;;8695:4;8679:21;;8383:51;;;8518:13;8612:15;;;8648:4;8641:15;;;8695:4;8679:21;;8391:20;8450:268;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:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:127::-;2754:10;2749:3;2745:20;2742:1;2735:31;2785:4;2782:1;2775:15;2809:4;2806:1;2799:15;2825:275;2896:2;2890:9;2961:2;2942:13;;-1:-1:-1;;2938:27:1;2926:40;;2996:18;2981:34;;3017:22;;;2978:62;2975:88;;;3043:18;;:::i;:::-;3079:2;3072:22;2825:275;;-1:-1:-1;2825:275:1:o;3105:712::-;3159:5;3212:3;3205:4;3197:6;3193:17;3189:27;3179:55;;3230:1;3227;3220:12;3179:55;3266:6;3253:20;3292:4;3315:18;3311:2;3308:26;3305:52;;;3337:18;;:::i;:::-;3383:2;3380:1;3376:10;3406:28;3430:2;3426;3422:11;3406:28;:::i;:::-;3468:15;;;3538;;;3534:24;;;3499:12;;;;3570:15;;;3567:35;;;3598:1;3595;3588:12;3567:35;3634:2;3626:6;3622:15;3611:26;;3646:142;3662:6;3657:3;3654:15;3646:142;;;3728:17;;3716:30;;3679:12;;;;3766;;;;3646:142;;;3806:5;3105:712;-1:-1:-1;;;;;;;3105:712:1:o;3822:416::-;3915:6;3923;3976:2;3964:9;3955:7;3951:23;3947:32;3944:52;;;3992:1;3989;3982:12;3944:52;4032:9;4019:23;4065:18;4057:6;4054:30;4051:50;;;4097:1;4094;4087:12;4051:50;4120:61;4173:7;4164:6;4153:9;4149:22;4120:61;:::i;:::-;4110:71;4228:2;4213:18;;;;4200:32;;-1:-1:-1;;;;3822:416:1:o;4428:592::-;4499:6;4507;4560:2;4548:9;4539:7;4535:23;4531:32;4528:52;;;4576:1;4573;4566:12;4528:52;4616:9;4603:23;4645:18;4686:2;4678:6;4675:14;4672:34;;;4702:1;4699;4692:12;4672:34;4740:6;4729:9;4725:22;4715:32;;4785:7;4778:4;4774:2;4770:13;4766:27;4756:55;;4807:1;4804;4797:12;4756:55;4847:2;4834:16;4873:2;4865:6;4862:14;4859:34;;;4889:1;4886;4879:12;4859:34;4934:7;4929:2;4920:6;4916:2;4912:15;4908:24;4905:37;4902:57;;;4955:1;4952;4945:12;4902:57;4986:2;4978:11;;;;;5008:6;;-1:-1:-1;4428:592:1;;-1:-1:-1;;;;4428:592:1:o;5446:186::-;5505:6;5558:2;5546:9;5537:7;5533:23;5529:32;5526:52;;;5574:1;5571;5564:12;5526:52;5597:29;5616:9;5597:29;:::i;5637:347::-;5702:6;5710;5763:2;5751:9;5742:7;5738:23;5734:32;5731:52;;;5779:1;5776;5769:12;5731:52;5802:29;5821:9;5802:29;:::i;:::-;5792:39;;5881:2;5870:9;5866:18;5853:32;5928:5;5921:13;5914:21;5907:5;5904:32;5894:60;;5950:1;5947;5940:12;5894:60;5973:5;5963:15;;;5637:347;;;;;:::o;5989:980::-;6084:6;6092;6100;6108;6161:3;6149:9;6140:7;6136:23;6132:33;6129:53;;;6178:1;6175;6168:12;6129:53;6201:29;6220:9;6201:29;:::i;:::-;6191:39;;6249:2;6270:38;6304:2;6293:9;6289:18;6270:38;:::i;:::-;6260:48;;6355:2;6344:9;6340:18;6327:32;6317:42;;6410:2;6399:9;6395:18;6382:32;6433:18;6474:2;6466:6;6463:14;6460:34;;;6490:1;6487;6480:12;6460:34;6528:6;6517:9;6513:22;6503:32;;6573:7;6566:4;6562:2;6558:13;6554:27;6544:55;;6595:1;6592;6585:12;6544:55;6631:2;6618:16;6653:2;6649;6646:10;6643:36;;;6659:18;;:::i;:::-;6701:53;6744:2;6725:13;;-1:-1:-1;;6721:27:1;6717:36;;6701:53;:::i;:::-;6688:66;;6777:2;6770:5;6763:17;6817:7;6812:2;6807;6803;6799:11;6795:20;6792:33;6789:53;;;6838:1;6835;6828:12;6789:53;6893:2;6888;6884;6880:11;6875:2;6868:5;6864:14;6851:45;6937:1;6932:2;6927;6920:5;6916:14;6912:23;6905:34;;6958:5;6948:15;;;;;5989:980;;;;;;;:::o;6974:260::-;7042:6;7050;7103:2;7091:9;7082:7;7078:23;7074:32;7071:52;;;7119:1;7116;7109:12;7071:52;7142:29;7161:9;7142:29;:::i;:::-;7132:39;;7190:38;7224:2;7213:9;7209:18;7190:38;:::i;:::-;7180:48;;6974:260;;;;;:::o;7421:380::-;7500:1;7496:12;;;;7543;;;7564:61;;7618:4;7610:6;7606:17;7596:27;;7564:61;7671:2;7663:6;7660:14;7640:18;7637:38;7634:161;;7717:10;7712:3;7708:20;7705:1;7698:31;7752:4;7749:1;7742:15;7780:4;7777:1;7770:15;7634:161;;7421:380;;;:::o;9439:127::-;9500:10;9495:3;9491:20;9488:1;9481:31;9531:4;9528:1;9521:15;9555:4;9552:1;9545:15;9571:125;9636:9;;;9657:10;;;9654:36;;;9670:18;;:::i;9701:342::-;9903:2;9885:21;;;9942:2;9922:18;;;9915:30;-1:-1:-1;;;9976:2:1;9961:18;;9954:48;10034:2;10019:18;;9701:342::o;10048:168::-;10121:9;;;10152;;10169:15;;;10163:22;;10149:37;10139:71;;10190:18;;:::i;10221:180::-;10288:18;10326:10;;;10338;;;10322:27;;10361:11;;;10358:37;;;10375:18;;:::i;:::-;10358:37;10221:180;;;;:::o;11086:545::-;11188:2;11183:3;11180:11;11177:448;;;11224:1;11249:5;11245:2;11238:17;11294:4;11290:2;11280:19;11364:2;11352:10;11348:19;11345:1;11341:27;11335:4;11331:38;11400:4;11388:10;11385:20;11382:47;;;-1:-1:-1;11423:4:1;11382:47;11478:2;11473:3;11469:12;11466:1;11462:20;11456:4;11452:31;11442:41;;11533:82;11551:2;11544:5;11541:13;11533:82;;;11596:17;;;11577:1;11566:13;11533:82;;11807:1206;11931:18;11926:3;11923:27;11920:53;;;11953:18;;:::i;:::-;11982:94;12072:3;12032:38;12064:4;12058:11;12032:38;:::i;:::-;12026:4;11982:94;:::i;:::-;12102:1;12127:2;12122:3;12119:11;12144:1;12139:616;;;;12799:1;12816:3;12813:93;;;-1:-1:-1;12872:19:1;;;12859:33;12813:93;-1:-1:-1;;11764:1:1;11760:11;;;11756:24;11752:29;11742:40;11788:1;11784:11;;;11739:57;12919:78;;12112:895;;12139:616;11033:1;11026:14;;;11070:4;11057:18;;-1:-1:-1;;12175:17:1;;;12276:9;12298:229;12312:7;12309:1;12306:14;12298:229;;;12401:19;;;12388:33;12373:49;;12508:4;12493:20;;;;12461:1;12449:14;;;;12328:12;12298:229;;;12302:3;12555;12546:7;12543:16;12540:159;;;12679:1;12675:6;12669:3;12663;12660:1;12656:11;12652:21;12648:34;12644:39;12631:9;12626:3;12622:19;12609:33;12605:79;12597:6;12590:95;12540:159;;;12742:1;12736:3;12733:1;12729:11;12725:19;12719:4;12712:33;12112:895;;;11807:1206;;;:::o;13018:496::-;13197:3;13235:6;13229:13;13251:66;13310:6;13305:3;13298:4;13290:6;13286:17;13251:66;:::i;:::-;13380:13;;13339:16;;;;13402:70;13380:13;13339:16;13449:4;13437:17;;13402:70;:::i;:::-;13488:20;;13018:496;-1:-1:-1;;;;13018:496:1:o;14287:489::-;-1:-1:-1;;;;;14556:15:1;;;14538:34;;14608:15;;14603:2;14588:18;;14581:43;14655:2;14640:18;;14633:34;;;14703:3;14698:2;14683:18;;14676:31;;;14481:4;;14724:46;;14750:19;;14742:6;14724:46;:::i;:::-;14716:54;14287:489;-1:-1:-1;;;;;;14287:489:1:o;14781:249::-;14850:6;14903:2;14891:9;14882:7;14878:23;14874:32;14871:52;;;14919:1;14916;14909:12;14871:52;14951:9;14945:16;14970:30;14994:5;14970:30;:::i;15035:127::-;15096:10;15091:3;15087:20;15084:1;15077:31;15127:4;15124:1;15117:15;15151:4;15148:1;15141:15;15167:135;15206:3;15227:17;;;15224:43;;15247:18;;:::i;:::-;-1:-1:-1;15294:1:1;15283:13;;15167:135::o

Swarm Source

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