ETH Price: $3,250.03 (-0.27%)
Gas: 2 Gwei

Token

Hoodies (HOODIES)
 

Overview

Max Total Supply

108 HOODIES

Holders

72

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ktthekiltman.eth
Balance
1 HOODIES
0x90173d26f4fefbf783d3f78773653f3e986cec58
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:
Hoodies2

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : AggregatorV3Interface.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface AggregatorV3Interface {
  function decimals() external view returns (uint8);

  function description() external view returns (string memory);

  function version() external view returns (uint256);

  function getRoundData(uint80 _roundId)
    external
    view
    returns (
      uint80 roundId,
      int256 answer,
      uint256 startedAt,
      uint256 updatedAt,
      uint80 answeredInRound
    );

  function latestRoundData()
    external
    view
    returns (
      uint80 roundId,
      int256 answer,
      uint256 startedAt,
      uint256 updatedAt,
      uint80 answeredInRound
    );
}

File 2 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 3 of 10 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

File 4 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// 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 5 of 10 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * 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.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
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 simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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 sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _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}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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 6 of 10 : Hoodies2.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.18;

import "erc721a/contracts/ERC721A.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract Hoodies2 is ERC721A, ERC721AQueryable, Ownable, ReentrancyGuard {
    event Mint(
        address indexed to,
        uint256 indexed tier,
        uint256 indexed start_id,
        uint256 amount
    );
    AggregatorV3Interface internal priceFeed =
        AggregatorV3Interface(0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419);
    uint256 constant WEI_PER_ETH = 1e18;
    bytes32 whitelist;
    string base_uri;
    address payout_address;
    mapping(bytes32 => uint256) minted;
    mapping(uint256 => uint256) minted_by_tier;
    address public cross_mint_address;

    uint256[] TIER_LIMITS = [0, 0, 0, 2000, 500, 100];
    uint256[] TIER_PRICES_IN_USD = [0, 0, 0, 150, 300, 500];

    constructor() ERC721A("Hoodies", "HOODIES") {
        payout_address = msg.sender;
    }

    function mint(
        address receiver,
        bytes32[] calldata proof,
        uint256 tier,
        uint256 amount,
        uint256 max_amount
    ) public payable nonReentrant {
        require(
            msg.sender == cross_mint_address || msg.sender == receiver,
            "Invalid sender"
        );
        require(tier >= 3 && tier <= 5, "Invalid tier");
        require(amount >= 1 && amount < 1000, "Invalid amount");
        _ensure_mint_limits(receiver, proof, tier, amount, max_amount);
        require(msg.value >= get_price(tier, amount), "Not enough ETH");
        _mint(receiver, amount);
        uint256 start_id = totalSupply();
        emit Mint(receiver, tier, start_id, amount);
    }

    function get_price(
        uint256 tier,
        uint256 amount
    ) public view returns (uint256) {
        uint256 price_in_usd = TIER_PRICES_IN_USD[tier];
        return _wei_per_usd() * price_in_usd * amount;
    }

    function _ensure_mint_limits(
        address receiver,
        bytes32[] calldata proof,
        uint256 tier,
        uint256 amount,
        uint256 max_amount
    ) internal {
        bytes32 minted_index = keccak256(abi.encode(receiver, tier));
        require(
            _is_on_whitelist(receiver, proof, tier, max_amount),
            "Not on whitelist"
        );
        uint256 minted_by_wallet_from_tier = minted[minted_index];
        require(
            minted_by_wallet_from_tier + amount <= max_amount,
            "Would surpass your mint limit"
        );
        require(
            minted_by_tier[tier] + amount <= TIER_LIMITS[tier],
            "Would surpass global mint limit"
        );
        minted[minted_index] += amount;
        minted_by_tier[tier] += amount;
    }

    function _wei_per_usd() internal view returns (uint256) {
        return (WEI_PER_ETH * 1e8) / _usd_per_eth_times_1e8();
    }

    function _usd_per_eth_times_1e8() internal view returns (uint256) {
        (, int256 price, , , ) = priceFeed.latestRoundData();
        return uint256(price);
    }

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

    function tokenURI(
        uint256 tokenId
    ) public view virtual override(IERC721A, ERC721A) returns (string memory) {
        string memory uri = super.tokenURI(tokenId);
        return string(abi.encodePacked(uri, ".json"));
    }

    function set_base_uri(string memory new_base_uri) public onlyOwner {
        base_uri = new_base_uri;
    }

    function set_whitelist(bytes32 new_whitelist) public onlyOwner {
        whitelist = new_whitelist;
    }

    function set_payout_address(address new_payout_address) public {
        require(
            msg.sender == payout_address,
            "Only payout address can set payout address"
        );
        payout_address = new_payout_address;
    }

    function set_cross_mint_address(address new_cross_mint_address) public onlyOwner {
        cross_mint_address = new_cross_mint_address;
    }

    function withdraw() public {
        require(
            msg.sender == owner() || msg.sender == payout_address,
            "Only owner or payout address can withdraw"
        );
        uint256 balance = address(this).balance;
        payable(payout_address).transfer(balance);
    }

    function _is_on_whitelist(
        address receiver,
        bytes32[] calldata proof,
        uint256 tier,
        uint256 max_amount
    ) internal view returns (bool) {
        if (whitelist == 0) {
            return true;
        }
        bytes32 leaf = keccak256(
            bytes.concat(keccak256(abi.encode(receiver, tier, max_amount)))
        );
        return MerkleProof.verify(proof, whitelist, leaf);
    }
}

File 7 of 10 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 10 : ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721AQueryable.sol';
import '../ERC721A.sol';

/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

File 9 of 10 : IERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

File 10 of 10 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","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":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tier","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"start_id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cross_mint_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tier","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"get_price","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":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"tier","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"max_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"new_base_uri","type":"string"}],"name":"set_base_uri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"new_cross_mint_address","type":"address"}],"name":"set_cross_mint_address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"new_payout_address","type":"address"}],"name":"set_payout_address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"new_whitelist","type":"bytes32"}],"name":"set_whitelist","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052735f4ec3df9cbd43714fe2740f5e3616155c5b8419600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060c00160405280600061ffff168152602001600061ffff168152602001600061ffff1681526020016107d061ffff1681526020016101f461ffff168152602001606461ffff168152506011906006620000b892919062000311565b506040518060c00160405280600061ffff168152602001600061ffff168152602001600061ffff168152602001609661ffff16815260200161012c61ffff1681526020016101f461ffff1681525060129060066200011892919062000311565b503480156200012657600080fd5b506040518060400160405280600781526020017f486f6f64696573000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f484f4f44494553000000000000000000000000000000000000000000000000008152508160029081620001a4919062000602565b508060039081620001b6919062000602565b50620001c76200023e60201b60201c565b6000819055505050620001ef620001e36200024360201b60201c565b6200024b60201b60201c565b600160098190555033600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620006e9565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805482825590600052602060002090810192821562000356579160200282015b8281111562000355578251829061ffff1690559160200191906001019062000332565b5b50905062000365919062000369565b5090565b5b80821115620003845760008160009055506001016200036a565b5090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200040a57607f821691505b60208210810362000420576200041f620003c2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200048a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200044b565b6200049686836200044b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004e3620004dd620004d784620004ae565b620004b8565b620004ae565b9050919050565b6000819050919050565b620004ff83620004c2565b620005176200050e82620004ea565b84845462000458565b825550505050565b600090565b6200052e6200051f565b6200053b818484620004f4565b505050565b5b8181101562000563576200055760008262000524565b60018101905062000541565b5050565b601f821115620005b2576200057c8162000426565b62000587846200043b565b8101602085101562000597578190505b620005af620005a6856200043b565b83018262000540565b50505b505050565b600082821c905092915050565b6000620005d760001984600802620005b7565b1980831691505092915050565b6000620005f28383620005c4565b9150826002028217905092915050565b6200060d8262000388565b67ffffffffffffffff81111562000629576200062862000393565b5b620006358254620003f1565b6200064282828562000567565b600060209050601f8311600181146200067a576000841562000665578287015190505b620006718582620005e4565b865550620006e1565b601f1984166200068a8662000426565b60005b82811015620006b4578489015182556001820191506020850194506020810190506200068d565b86831015620006d45784890151620006d0601f891682620005c4565b8355505b6001600288020188555050505b505050505050565b61426780620006f96000396000f3fe6080604052600436106101c25760003560e01c8063715018a6116100f7578063a579929211610095578063c23dc68f11610064578063c23dc68f1461060d578063c87b56dd1461064a578063e985e9c514610687578063f2fde38b146106c4576101c2565b8063a579929214610583578063a9526846146105ac578063af1c5211146105c8578063b88d4fde146105f1576101c2565b806395d89b41116100d157806395d89b41146104b557806399a2557a146104e05780639ea982cb1461051d578063a22cb4651461055a576101c2565b8063715018a6146104365780638462151c1461044d5780638da5cb5b1461048a576101c2565b80633ccfd60b1161016457806348c04a231161013e57806348c04a23146103545780635bbb21771461037f5780636352211e146103bc57806370a08231146103f9576101c2565b80633ccfd60b146102f857806342842e0e1461030f578063453383531461032b576101c2565b8063095ea7b3116101a0578063095ea7b31461026c5780630c1e154f1461028857806318160ddd146102b157806323b872dd146102dc576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612960565b6106ed565b6040516101fb91906129a8565b60405180910390f35b34801561021057600080fd5b5061021961077f565b6040516102269190612a53565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612aab565b610811565b6040516102639190612b19565b60405180910390f35b61028660048036038101906102819190612b60565b610890565b005b34801561029457600080fd5b506102af60048036038101906102aa9190612ba0565b6109d4565b005b3480156102bd57600080fd5b506102c6610aa8565b6040516102d39190612bdc565b60405180910390f35b6102f660048036038101906102f19190612bf7565b610abf565b005b34801561030457600080fd5b5061030d610de1565b005b61032960048036038101906103249190612bf7565b610f1f565b005b34801561033757600080fd5b50610352600480360381019061034d9190612ba0565b610f3f565b005b34801561036057600080fd5b50610369610f8b565b6040516103769190612b19565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a19190612caf565b610fb1565b6040516103b39190612e5f565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de9190612aab565b611074565b6040516103f09190612b19565b60405180910390f35b34801561040557600080fd5b50610420600480360381019061041b9190612ba0565b611086565b60405161042d9190612bdc565b60405180910390f35b34801561044257600080fd5b5061044b61113e565b005b34801561045957600080fd5b50610474600480360381019061046f9190612ba0565b611152565b6040516104819190612f3f565b60405180910390f35b34801561049657600080fd5b5061049f611295565b6040516104ac9190612b19565b60405180910390f35b3480156104c157600080fd5b506104ca6112bf565b6040516104d79190612a53565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190612f61565b611351565b6040516105149190612f3f565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190612fb4565b61155d565b6040516105519190612bdc565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190613020565b6115a8565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190613096565b6116b3565b005b6105c660048036038101906105c19190613119565b6116c5565b005b3480156105d457600080fd5b506105ef60048036038101906105ea91906132e3565b611906565b005b61060b600480360381019061060691906133cd565b611921565b005b34801561061957600080fd5b50610634600480360381019061062f9190612aab565b611994565b60405161064191906134a5565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c9190612aab565b6119fe565b60405161067e9190612a53565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a991906134c0565b611a35565b6040516106bb91906129a8565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e69190612ba0565b611ac9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107785750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461078e9061352f565b80601f01602080910402602001604051908101604052809291908181526020018280546107ba9061352f565b80156108075780601f106107dc57610100808354040283529160200191610807565b820191906000526020600020905b8154815290600101906020018083116107ea57829003601f168201915b5050505050905090565b600061081c82611b4c565b610852576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089b82611074565b90508073ffffffffffffffffffffffffffffffffffffffff166108bc611bab565b73ffffffffffffffffffffffffffffffffffffffff161461091f576108e8816108e3611bab565b611a35565b61091e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5b906135d2565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610ab2611bb3565b6001546000540303905090565b6000610aca82611bb8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b31576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b3d84611c84565b91509150610b538187610b4e611bab565b611cab565b610b9f57610b6886610b63611bab565b611a35565b610b9e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c05576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c128686866001611cef565b8015610c1d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ceb85610cc7888887611cf5565b7c020000000000000000000000000000000000000000000000000000000017611d1d565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d715760006001850190506000600460008381526020019081526020016000205403610d6f576000548114610d6e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dd98686866001611d48565b505050505050565b610de9611295565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610e6f5750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea590613664565b60405180910390fd5b6000479050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f1b573d6000803e3d6000fd5b5050565b610f3a83838360405180602001604052806000815250611921565b505050565b610f47611d4e565b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600083839050905060008167ffffffffffffffff811115610fd757610fd66131b8565b5b60405190808252806020026020018201604052801561101057816020015b610ffd6128a5565b815260200190600190039081610ff55790505b50905060005b8281146110685761103f86868381811061103357611032613684565b5b90506020020135611994565b82828151811061105257611051613684565b5b6020026020010181905250806001019050611016565b50809250505092915050565b600061107f82611bb8565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110ed576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611146611d4e565b6111506000611dcc565b565b6060600080600061116285611086565b905060008167ffffffffffffffff8111156111805761117f6131b8565b5b6040519080825280602002602001820160405280156111ae5781602001602082028036833780820191505090505b5090506111b96128a5565b60006111c3611bb3565b90505b838614611287576111d681611e92565b9150816040015161127c57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461122157816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361127b578083878060010198508151811061126e5761126d613684565b5b6020026020010181815250505b5b8060010190506111c6565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112ce9061352f565b80601f01602080910402602001604051908101604052809291908181526020018280546112fa9061352f565b80156113475780601f1061131c57610100808354040283529160200191611347565b820191906000526020600020905b81548152906001019060200180831161132a57829003601f168201915b5050505050905090565b606081831061138c576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611397611ebd565b90506113a1611bb3565b8510156113b3576113b0611bb3565b94505b808411156113bf578093505b60006113ca87611086565b9050848610156113ed5760008686039050818110156113e7578091505b506113f2565b600090505b60008167ffffffffffffffff81111561140e5761140d6131b8565b5b60405190808252806020026020018201604052801561143c5781602001602082028036833780820191505090505b509050600082036114535780945050505050611556565b600061145e88611994565b90506000816040015161147357816000015190505b60008990505b8881141580156114895750848714155b156115485761149781611e92565b9250826040015161153d57600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146114e257826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361153c578084888060010199508151811061152f5761152e613684565b5b6020026020010181815250505b5b806001019050611479565b508583528296505050505050505b9392505050565b6000806012848154811061157457611573613684565b5b90600052602060002001549050828161158b611ec6565b61159591906136e2565b61159f91906136e2565b91505092915050565b80600760006115b5611bab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611662611bab565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116a791906129a8565b60405180910390a35050565b6116bb611d4e565b80600b8190555050565b6116cd611ef7565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061175457508573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a90613770565b60405180910390fd5b600383101580156117a5575060058311155b6117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117db906137dc565b60405180910390fd5b600182101580156117f657506103e882105b611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90613848565b60405180910390fd5b611843868686868686611f46565b61184d838361155d565b34101561188f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611886906138b4565b60405180910390fd5b6118998683612102565b60006118a3610aa8565b905080848873ffffffffffffffffffffffffffffffffffffffff167fb4c03061fb5b7fed76389d5af8f2e0ddb09f8c70d1333abbb62582835e10accb866040516118ed9190612bdc565b60405180910390a4506118fe6122bd565b505050505050565b61190e611d4e565b80600c908161191d9190613a80565b5050565b61192c848484610abf565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461198e57611957848484846122c7565b61198d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61199c6128a5565b6119a46128a5565b6119ac611bb3565b8310806119c057506119bc611ebd565b8310155b156119ce57809150506119f9565b6119d783611e92565b90508060400151156119ec57809150506119f9565b6119f583612417565b9150505b919050565b60606000611a0b83612437565b905080604051602001611a1e9190613bda565b604051602081830303815290604052915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ad1611d4e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3790613c6e565b60405180910390fd5b611b4981611dcc565b50565b600081611b57611bb3565b11158015611b66575060005482105b8015611ba4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611bc7611bb3565b11611c4d57600054811015611c4c5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611c4a575b60008103611c40576004600083600190039350838152602001908152602001600020549050611c16565b8092505050611c7f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d0c8686846124d5565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611d566124de565b73ffffffffffffffffffffffffffffffffffffffff16611d74611295565b73ffffffffffffffffffffffffffffffffffffffff1614611dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc190613cda565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e9a6128a5565b611eb660046000848152602001908152602001600020546124e6565b9050919050565b60008054905090565b6000611ed061259c565b6305f5e100670de0b6b3a7640000611ee891906136e2565b611ef29190613d29565b905090565b600260095403611f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3390613da6565b60405180910390fd5b6002600981905550565b60008684604051602001611f5b929190613dc6565b604051602081830303815290604052805190602001209050611f80878787878661263d565b611fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb690613e3b565b60405180910390fd5b6000600e6000838152602001908152602001600020549050828482611fe49190613e5b565b1115612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c90613edb565b60405180910390fd5b6011858154811061203957612038613684565b5b906000526020600020015484600f6000888152602001908152602001600020546120639190613e5b565b11156120a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209b90613f47565b60405180910390fd5b83600e600084815260200190815260200160002060008282546120c79190613e5b565b9250508190555083600f600087815260200190815260200160002060008282546120f19190613e5b565b925050819055505050505050505050565b60008054905060008203612142576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61214f6000848385611cef565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121c6836121b76000866000611cf5565b6121c085612704565b17611d1d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461226757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061222c565b50600082036122a2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122b86000848385611d48565b505050565b6001600981905550565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122ed611bab565b8786866040518563ffffffff1660e01b815260040161230f9493929190613fbc565b6020604051808303816000875af192505050801561234b57506040513d601f19601f82011682018060405250810190612348919061401d565b60015b6123c4573d806000811461237b576040519150601f19603f3d011682016040523d82523d6000602084013e612380565b606091505b5060008151036123bc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61241f6128a5565b61243061242b83611bb8565b6124e6565b9050919050565b606061244282611b4c565b612478576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612482612714565b905060008151036124a257604051806020016040528060008152506124cd565b806124ac846127a6565b6040516020016124bd92919061404a565b6040516020818303038152906040525b915050919050565b60009392505050565b600033905090565b6124ee6128a5565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa15801561260c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061263091906140fb565b5050509150508091505090565b60008060001b600b540361265457600190506126fb565b600086848460405160200161266b93929190614176565b6040516020818303038152906040528051906020012060405160200161269191906141ce565b6040516020818303038152906040528051906020012090506126f7868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b54836127f6565b9150505b95945050505050565b60006001821460e11b9050919050565b6060600c80546127239061352f565b80601f016020809104026020016040519081016040528092919081815260200182805461274f9061352f565b801561279c5780601f106127715761010080835404028352916020019161279c565b820191906000526020600020905b81548152906001019060200180831161277f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156127e157600184039350600a81066030018453600a81049050806127bf575b50828103602084039350808452505050919050565b600082612803858461280d565b1490509392505050565b60008082905060005b8451811015612858576128438286838151811061283657612835613684565b5b6020026020010151612863565b91508080612850906141e9565b915050612816565b508091505092915050565b600081831061287b57612876828461288e565b612886565b612885838361288e565b5b905092915050565b600082600052816020526040600020905092915050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61293d81612908565b811461294857600080fd5b50565b60008135905061295a81612934565b92915050565b600060208284031215612976576129756128fe565b5b60006129848482850161294b565b91505092915050565b60008115159050919050565b6129a28161298d565b82525050565b60006020820190506129bd6000830184612999565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129fd5780820151818401526020810190506129e2565b60008484015250505050565b6000601f19601f8301169050919050565b6000612a25826129c3565b612a2f81856129ce565b9350612a3f8185602086016129df565b612a4881612a09565b840191505092915050565b60006020820190508181036000830152612a6d8184612a1a565b905092915050565b6000819050919050565b612a8881612a75565b8114612a9357600080fd5b50565b600081359050612aa581612a7f565b92915050565b600060208284031215612ac157612ac06128fe565b5b6000612acf84828501612a96565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b0382612ad8565b9050919050565b612b1381612af8565b82525050565b6000602082019050612b2e6000830184612b0a565b92915050565b612b3d81612af8565b8114612b4857600080fd5b50565b600081359050612b5a81612b34565b92915050565b60008060408385031215612b7757612b766128fe565b5b6000612b8585828601612b4b565b9250506020612b9685828601612a96565b9150509250929050565b600060208284031215612bb657612bb56128fe565b5b6000612bc484828501612b4b565b91505092915050565b612bd681612a75565b82525050565b6000602082019050612bf16000830184612bcd565b92915050565b600080600060608486031215612c1057612c0f6128fe565b5b6000612c1e86828701612b4b565b9350506020612c2f86828701612b4b565b9250506040612c4086828701612a96565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612c6f57612c6e612c4a565b5b8235905067ffffffffffffffff811115612c8c57612c8b612c4f565b5b602083019150836020820283011115612ca857612ca7612c54565b5b9250929050565b60008060208385031215612cc657612cc56128fe565b5b600083013567ffffffffffffffff811115612ce457612ce3612903565b5b612cf085828601612c59565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d3181612af8565b82525050565b600067ffffffffffffffff82169050919050565b612d5481612d37565b82525050565b612d638161298d565b82525050565b600062ffffff82169050919050565b612d8181612d69565b82525050565b608082016000820151612d9d6000850182612d28565b506020820151612db06020850182612d4b565b506040820151612dc36040850182612d5a565b506060820151612dd66060850182612d78565b50505050565b6000612de88383612d87565b60808301905092915050565b6000602082019050919050565b6000612e0c82612cfc565b612e168185612d07565b9350612e2183612d18565b8060005b83811015612e52578151612e398882612ddc565b9750612e4483612df4565b925050600181019050612e25565b5085935050505092915050565b60006020820190508181036000830152612e798184612e01565b905092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612eb681612a75565b82525050565b6000612ec88383612ead565b60208301905092915050565b6000602082019050919050565b6000612eec82612e81565b612ef68185612e8c565b9350612f0183612e9d565b8060005b83811015612f32578151612f198882612ebc565b9750612f2483612ed4565b925050600181019050612f05565b5085935050505092915050565b60006020820190508181036000830152612f598184612ee1565b905092915050565b600080600060608486031215612f7a57612f796128fe565b5b6000612f8886828701612b4b565b9350506020612f9986828701612a96565b9250506040612faa86828701612a96565b9150509250925092565b60008060408385031215612fcb57612fca6128fe565b5b6000612fd985828601612a96565b9250506020612fea85828601612a96565b9150509250929050565b612ffd8161298d565b811461300857600080fd5b50565b60008135905061301a81612ff4565b92915050565b60008060408385031215613037576130366128fe565b5b600061304585828601612b4b565b92505060206130568582860161300b565b9150509250929050565b6000819050919050565b61307381613060565b811461307e57600080fd5b50565b6000813590506130908161306a565b92915050565b6000602082840312156130ac576130ab6128fe565b5b60006130ba84828501613081565b91505092915050565b60008083601f8401126130d9576130d8612c4a565b5b8235905067ffffffffffffffff8111156130f6576130f5612c4f565b5b60208301915083602082028301111561311257613111612c54565b5b9250929050565b60008060008060008060a08789031215613136576131356128fe565b5b600061314489828a01612b4b565b965050602087013567ffffffffffffffff81111561316557613164612903565b5b61317189828a016130c3565b9550955050604061318489828a01612a96565b935050606061319589828a01612a96565b92505060806131a689828a01612a96565b9150509295509295509295565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131f082612a09565b810181811067ffffffffffffffff8211171561320f5761320e6131b8565b5b80604052505050565b60006132226128f4565b905061322e82826131e7565b919050565b600067ffffffffffffffff82111561324e5761324d6131b8565b5b61325782612a09565b9050602081019050919050565b82818337600083830152505050565b600061328661328184613233565b613218565b9050828152602081018484840111156132a2576132a16131b3565b5b6132ad848285613264565b509392505050565b600082601f8301126132ca576132c9612c4a565b5b81356132da848260208601613273565b91505092915050565b6000602082840312156132f9576132f86128fe565b5b600082013567ffffffffffffffff81111561331757613316612903565b5b613323848285016132b5565b91505092915050565b600067ffffffffffffffff821115613347576133466131b8565b5b61335082612a09565b9050602081019050919050565b600061337061336b8461332c565b613218565b90508281526020810184848401111561338c5761338b6131b3565b5b613397848285613264565b509392505050565b600082601f8301126133b4576133b3612c4a565b5b81356133c484826020860161335d565b91505092915050565b600080600080608085870312156133e7576133e66128fe565b5b60006133f587828801612b4b565b945050602061340687828801612b4b565b935050604061341787828801612a96565b925050606085013567ffffffffffffffff81111561343857613437612903565b5b6134448782880161339f565b91505092959194509250565b6080820160008201516134666000850182612d28565b5060208201516134796020850182612d4b565b50604082015161348c6040850182612d5a565b50606082015161349f6060850182612d78565b50505050565b60006080820190506134ba6000830184613450565b92915050565b600080604083850312156134d7576134d66128fe565b5b60006134e585828601612b4b565b92505060206134f685828601612b4b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061354757607f821691505b60208210810361355a57613559613500565b5b50919050565b7f4f6e6c79207061796f757420616464726573732063616e20736574207061796f60008201527f7574206164647265737300000000000000000000000000000000000000000000602082015250565b60006135bc602a836129ce565b91506135c782613560565b604082019050919050565b600060208201905081810360008301526135eb816135af565b9050919050565b7f4f6e6c79206f776e6572206f72207061796f757420616464726573732063616e60008201527f2077697468647261770000000000000000000000000000000000000000000000602082015250565b600061364e6029836129ce565b9150613659826135f2565b604082019050919050565b6000602082019050818103600083015261367d81613641565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136ed82612a75565b91506136f883612a75565b925082820261370681612a75565b9150828204841483151761371d5761371c6136b3565b5b5092915050565b7f496e76616c69642073656e646572000000000000000000000000000000000000600082015250565b600061375a600e836129ce565b915061376582613724565b602082019050919050565b600060208201905081810360008301526137898161374d565b9050919050565b7f496e76616c696420746965720000000000000000000000000000000000000000600082015250565b60006137c6600c836129ce565b91506137d182613790565b602082019050919050565b600060208201905081810360008301526137f5816137b9565b9050919050565b7f496e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b6000613832600e836129ce565b915061383d826137fc565b602082019050919050565b6000602082019050818103600083015261386181613825565b9050919050565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b600061389e600e836129ce565b91506138a982613868565b602082019050919050565b600060208201905081810360008301526138cd81613891565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026139367fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826138f9565b61394086836138f9565b95508019841693508086168417925050509392505050565b6000819050919050565b600061397d61397861397384612a75565b613958565b612a75565b9050919050565b6000819050919050565b61399783613962565b6139ab6139a382613984565b848454613906565b825550505050565b600090565b6139c06139b3565b6139cb81848461398e565b505050565b5b818110156139ef576139e46000826139b8565b6001810190506139d1565b5050565b601f821115613a3457613a05816138d4565b613a0e846138e9565b81016020851015613a1d578190505b613a31613a29856138e9565b8301826139d0565b50505b505050565b600082821c905092915050565b6000613a5760001984600802613a39565b1980831691505092915050565b6000613a708383613a46565b9150826002028217905092915050565b613a89826129c3565b67ffffffffffffffff811115613aa257613aa16131b8565b5b613aac825461352f565b613ab78282856139f3565b600060209050601f831160018114613aea5760008415613ad8578287015190505b613ae28582613a64565b865550613b4a565b601f198416613af8866138d4565b60005b82811015613b2057848901518255600182019150602085019450602081019050613afb565b86831015613b3d5784890151613b39601f891682613a46565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000613b68826129c3565b613b728185613b52565b9350613b828185602086016129df565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613bc4600583613b52565b9150613bcf82613b8e565b600582019050919050565b6000613be68284613b5d565b9150613bf182613bb7565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c586026836129ce565b9150613c6382613bfc565b604082019050919050565b60006020820190508181036000830152613c8781613c4b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cc46020836129ce565b9150613ccf82613c8e565b602082019050919050565b60006020820190508181036000830152613cf381613cb7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d3482612a75565b9150613d3f83612a75565b925082613d4f57613d4e613cfa565b5b828204905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613d90601f836129ce565b9150613d9b82613d5a565b602082019050919050565b60006020820190508181036000830152613dbf81613d83565b9050919050565b6000604082019050613ddb6000830185612b0a565b613de86020830184612bcd565b9392505050565b7f4e6f74206f6e2077686974656c69737400000000000000000000000000000000600082015250565b6000613e256010836129ce565b9150613e3082613def565b602082019050919050565b60006020820190508181036000830152613e5481613e18565b9050919050565b6000613e6682612a75565b9150613e7183612a75565b9250828201905080821115613e8957613e886136b3565b5b92915050565b7f576f756c64207375727061737320796f7572206d696e74206c696d6974000000600082015250565b6000613ec5601d836129ce565b9150613ed082613e8f565b602082019050919050565b60006020820190508181036000830152613ef481613eb8565b9050919050565b7f576f756c64207375727061737320676c6f62616c206d696e74206c696d697400600082015250565b6000613f31601f836129ce565b9150613f3c82613efb565b602082019050919050565b60006020820190508181036000830152613f6081613f24565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613f8e82613f67565b613f988185613f72565b9350613fa88185602086016129df565b613fb181612a09565b840191505092915050565b6000608082019050613fd16000830187612b0a565b613fde6020830186612b0a565b613feb6040830185612bcd565b8181036060830152613ffd8184613f83565b905095945050505050565b60008151905061401781612934565b92915050565b600060208284031215614033576140326128fe565b5b600061404184828501614008565b91505092915050565b60006140568285613b5d565b91506140628284613b5d565b91508190509392505050565b600069ffffffffffffffffffff82169050919050565b61408d8161406e565b811461409857600080fd5b50565b6000815190506140aa81614084565b92915050565b6000819050919050565b6140c3816140b0565b81146140ce57600080fd5b50565b6000815190506140e0816140ba565b92915050565b6000815190506140f581612a7f565b92915050565b600080600080600060a08688031215614117576141166128fe565b5b60006141258882890161409b565b9550506020614136888289016140d1565b9450506040614147888289016140e6565b9350506060614158888289016140e6565b92505060806141698882890161409b565b9150509295509295909350565b600060608201905061418b6000830186612b0a565b6141986020830185612bcd565b6141a56040830184612bcd565b949350505050565b6000819050919050565b6141c86141c382613060565b6141ad565b82525050565b60006141da82846141b7565b60208201915081905092915050565b60006141f482612a75565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614226576142256136b3565b5b60018201905091905056fea2646970667358221220ebed108a918922a832050ab5d013b2b3b9b2963f11f605ff0c656733028856bf64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c8063715018a6116100f7578063a579929211610095578063c23dc68f11610064578063c23dc68f1461060d578063c87b56dd1461064a578063e985e9c514610687578063f2fde38b146106c4576101c2565b8063a579929214610583578063a9526846146105ac578063af1c5211146105c8578063b88d4fde146105f1576101c2565b806395d89b41116100d157806395d89b41146104b557806399a2557a146104e05780639ea982cb1461051d578063a22cb4651461055a576101c2565b8063715018a6146104365780638462151c1461044d5780638da5cb5b1461048a576101c2565b80633ccfd60b1161016457806348c04a231161013e57806348c04a23146103545780635bbb21771461037f5780636352211e146103bc57806370a08231146103f9576101c2565b80633ccfd60b146102f857806342842e0e1461030f578063453383531461032b576101c2565b8063095ea7b3116101a0578063095ea7b31461026c5780630c1e154f1461028857806318160ddd146102b157806323b872dd146102dc576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612960565b6106ed565b6040516101fb91906129a8565b60405180910390f35b34801561021057600080fd5b5061021961077f565b6040516102269190612a53565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612aab565b610811565b6040516102639190612b19565b60405180910390f35b61028660048036038101906102819190612b60565b610890565b005b34801561029457600080fd5b506102af60048036038101906102aa9190612ba0565b6109d4565b005b3480156102bd57600080fd5b506102c6610aa8565b6040516102d39190612bdc565b60405180910390f35b6102f660048036038101906102f19190612bf7565b610abf565b005b34801561030457600080fd5b5061030d610de1565b005b61032960048036038101906103249190612bf7565b610f1f565b005b34801561033757600080fd5b50610352600480360381019061034d9190612ba0565b610f3f565b005b34801561036057600080fd5b50610369610f8b565b6040516103769190612b19565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a19190612caf565b610fb1565b6040516103b39190612e5f565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de9190612aab565b611074565b6040516103f09190612b19565b60405180910390f35b34801561040557600080fd5b50610420600480360381019061041b9190612ba0565b611086565b60405161042d9190612bdc565b60405180910390f35b34801561044257600080fd5b5061044b61113e565b005b34801561045957600080fd5b50610474600480360381019061046f9190612ba0565b611152565b6040516104819190612f3f565b60405180910390f35b34801561049657600080fd5b5061049f611295565b6040516104ac9190612b19565b60405180910390f35b3480156104c157600080fd5b506104ca6112bf565b6040516104d79190612a53565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190612f61565b611351565b6040516105149190612f3f565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190612fb4565b61155d565b6040516105519190612bdc565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190613020565b6115a8565b005b34801561058f57600080fd5b506105aa60048036038101906105a59190613096565b6116b3565b005b6105c660048036038101906105c19190613119565b6116c5565b005b3480156105d457600080fd5b506105ef60048036038101906105ea91906132e3565b611906565b005b61060b600480360381019061060691906133cd565b611921565b005b34801561061957600080fd5b50610634600480360381019061062f9190612aab565b611994565b60405161064191906134a5565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c9190612aab565b6119fe565b60405161067e9190612a53565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a991906134c0565b611a35565b6040516106bb91906129a8565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e69190612ba0565b611ac9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107785750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461078e9061352f565b80601f01602080910402602001604051908101604052809291908181526020018280546107ba9061352f565b80156108075780601f106107dc57610100808354040283529160200191610807565b820191906000526020600020905b8154815290600101906020018083116107ea57829003601f168201915b5050505050905090565b600061081c82611b4c565b610852576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089b82611074565b90508073ffffffffffffffffffffffffffffffffffffffff166108bc611bab565b73ffffffffffffffffffffffffffffffffffffffff161461091f576108e8816108e3611bab565b611a35565b61091e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5b906135d2565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610ab2611bb3565b6001546000540303905090565b6000610aca82611bb8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b31576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b3d84611c84565b91509150610b538187610b4e611bab565b611cab565b610b9f57610b6886610b63611bab565b611a35565b610b9e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c05576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c128686866001611cef565b8015610c1d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ceb85610cc7888887611cf5565b7c020000000000000000000000000000000000000000000000000000000017611d1d565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d715760006001850190506000600460008381526020019081526020016000205403610d6f576000548114610d6e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dd98686866001611d48565b505050505050565b610de9611295565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610e6f5750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea590613664565b60405180910390fd5b6000479050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f1b573d6000803e3d6000fd5b5050565b610f3a83838360405180602001604052806000815250611921565b505050565b610f47611d4e565b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600083839050905060008167ffffffffffffffff811115610fd757610fd66131b8565b5b60405190808252806020026020018201604052801561101057816020015b610ffd6128a5565b815260200190600190039081610ff55790505b50905060005b8281146110685761103f86868381811061103357611032613684565b5b90506020020135611994565b82828151811061105257611051613684565b5b6020026020010181905250806001019050611016565b50809250505092915050565b600061107f82611bb8565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110ed576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611146611d4e565b6111506000611dcc565b565b6060600080600061116285611086565b905060008167ffffffffffffffff8111156111805761117f6131b8565b5b6040519080825280602002602001820160405280156111ae5781602001602082028036833780820191505090505b5090506111b96128a5565b60006111c3611bb3565b90505b838614611287576111d681611e92565b9150816040015161127c57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461122157816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361127b578083878060010198508151811061126e5761126d613684565b5b6020026020010181815250505b5b8060010190506111c6565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112ce9061352f565b80601f01602080910402602001604051908101604052809291908181526020018280546112fa9061352f565b80156113475780601f1061131c57610100808354040283529160200191611347565b820191906000526020600020905b81548152906001019060200180831161132a57829003601f168201915b5050505050905090565b606081831061138c576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611397611ebd565b90506113a1611bb3565b8510156113b3576113b0611bb3565b94505b808411156113bf578093505b60006113ca87611086565b9050848610156113ed5760008686039050818110156113e7578091505b506113f2565b600090505b60008167ffffffffffffffff81111561140e5761140d6131b8565b5b60405190808252806020026020018201604052801561143c5781602001602082028036833780820191505090505b509050600082036114535780945050505050611556565b600061145e88611994565b90506000816040015161147357816000015190505b60008990505b8881141580156114895750848714155b156115485761149781611e92565b9250826040015161153d57600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146114e257826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361153c578084888060010199508151811061152f5761152e613684565b5b6020026020010181815250505b5b806001019050611479565b508583528296505050505050505b9392505050565b6000806012848154811061157457611573613684565b5b90600052602060002001549050828161158b611ec6565b61159591906136e2565b61159f91906136e2565b91505092915050565b80600760006115b5611bab565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611662611bab565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116a791906129a8565b60405180910390a35050565b6116bb611d4e565b80600b8190555050565b6116cd611ef7565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061175457508573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a90613770565b60405180910390fd5b600383101580156117a5575060058311155b6117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117db906137dc565b60405180910390fd5b600182101580156117f657506103e882105b611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90613848565b60405180910390fd5b611843868686868686611f46565b61184d838361155d565b34101561188f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611886906138b4565b60405180910390fd5b6118998683612102565b60006118a3610aa8565b905080848873ffffffffffffffffffffffffffffffffffffffff167fb4c03061fb5b7fed76389d5af8f2e0ddb09f8c70d1333abbb62582835e10accb866040516118ed9190612bdc565b60405180910390a4506118fe6122bd565b505050505050565b61190e611d4e565b80600c908161191d9190613a80565b5050565b61192c848484610abf565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461198e57611957848484846122c7565b61198d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61199c6128a5565b6119a46128a5565b6119ac611bb3565b8310806119c057506119bc611ebd565b8310155b156119ce57809150506119f9565b6119d783611e92565b90508060400151156119ec57809150506119f9565b6119f583612417565b9150505b919050565b60606000611a0b83612437565b905080604051602001611a1e9190613bda565b604051602081830303815290604052915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ad1611d4e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3790613c6e565b60405180910390fd5b611b4981611dcc565b50565b600081611b57611bb3565b11158015611b66575060005482105b8015611ba4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611bc7611bb3565b11611c4d57600054811015611c4c5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611c4a575b60008103611c40576004600083600190039350838152602001908152602001600020549050611c16565b8092505050611c7f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d0c8686846124d5565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611d566124de565b73ffffffffffffffffffffffffffffffffffffffff16611d74611295565b73ffffffffffffffffffffffffffffffffffffffff1614611dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc190613cda565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e9a6128a5565b611eb660046000848152602001908152602001600020546124e6565b9050919050565b60008054905090565b6000611ed061259c565b6305f5e100670de0b6b3a7640000611ee891906136e2565b611ef29190613d29565b905090565b600260095403611f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3390613da6565b60405180910390fd5b6002600981905550565b60008684604051602001611f5b929190613dc6565b604051602081830303815290604052805190602001209050611f80878787878661263d565b611fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb690613e3b565b60405180910390fd5b6000600e6000838152602001908152602001600020549050828482611fe49190613e5b565b1115612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c90613edb565b60405180910390fd5b6011858154811061203957612038613684565b5b906000526020600020015484600f6000888152602001908152602001600020546120639190613e5b565b11156120a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209b90613f47565b60405180910390fd5b83600e600084815260200190815260200160002060008282546120c79190613e5b565b9250508190555083600f600087815260200190815260200160002060008282546120f19190613e5b565b925050819055505050505050505050565b60008054905060008203612142576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61214f6000848385611cef565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121c6836121b76000866000611cf5565b6121c085612704565b17611d1d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461226757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061222c565b50600082036122a2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122b86000848385611d48565b505050565b6001600981905550565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122ed611bab565b8786866040518563ffffffff1660e01b815260040161230f9493929190613fbc565b6020604051808303816000875af192505050801561234b57506040513d601f19601f82011682018060405250810190612348919061401d565b60015b6123c4573d806000811461237b576040519150601f19603f3d011682016040523d82523d6000602084013e612380565b606091505b5060008151036123bc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61241f6128a5565b61243061242b83611bb8565b6124e6565b9050919050565b606061244282611b4c565b612478576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612482612714565b905060008151036124a257604051806020016040528060008152506124cd565b806124ac846127a6565b6040516020016124bd92919061404a565b6040516020818303038152906040525b915050919050565b60009392505050565b600033905090565b6124ee6128a5565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa15801561260c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061263091906140fb565b5050509150508091505090565b60008060001b600b540361265457600190506126fb565b600086848460405160200161266b93929190614176565b6040516020818303038152906040528051906020012060405160200161269191906141ce565b6040516020818303038152906040528051906020012090506126f7868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b54836127f6565b9150505b95945050505050565b60006001821460e11b9050919050565b6060600c80546127239061352f565b80601f016020809104026020016040519081016040528092919081815260200182805461274f9061352f565b801561279c5780601f106127715761010080835404028352916020019161279c565b820191906000526020600020905b81548152906001019060200180831161277f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156127e157600184039350600a81066030018453600a81049050806127bf575b50828103602084039350808452505050919050565b600082612803858461280d565b1490509392505050565b60008082905060005b8451811015612858576128438286838151811061283657612835613684565b5b6020026020010151612863565b91508080612850906141e9565b915050612816565b508091505092915050565b600081831061287b57612876828461288e565b612886565b612885838361288e565b5b905092915050565b600082600052816020526040600020905092915050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61293d81612908565b811461294857600080fd5b50565b60008135905061295a81612934565b92915050565b600060208284031215612976576129756128fe565b5b60006129848482850161294b565b91505092915050565b60008115159050919050565b6129a28161298d565b82525050565b60006020820190506129bd6000830184612999565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129fd5780820151818401526020810190506129e2565b60008484015250505050565b6000601f19601f8301169050919050565b6000612a25826129c3565b612a2f81856129ce565b9350612a3f8185602086016129df565b612a4881612a09565b840191505092915050565b60006020820190508181036000830152612a6d8184612a1a565b905092915050565b6000819050919050565b612a8881612a75565b8114612a9357600080fd5b50565b600081359050612aa581612a7f565b92915050565b600060208284031215612ac157612ac06128fe565b5b6000612acf84828501612a96565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b0382612ad8565b9050919050565b612b1381612af8565b82525050565b6000602082019050612b2e6000830184612b0a565b92915050565b612b3d81612af8565b8114612b4857600080fd5b50565b600081359050612b5a81612b34565b92915050565b60008060408385031215612b7757612b766128fe565b5b6000612b8585828601612b4b565b9250506020612b9685828601612a96565b9150509250929050565b600060208284031215612bb657612bb56128fe565b5b6000612bc484828501612b4b565b91505092915050565b612bd681612a75565b82525050565b6000602082019050612bf16000830184612bcd565b92915050565b600080600060608486031215612c1057612c0f6128fe565b5b6000612c1e86828701612b4b565b9350506020612c2f86828701612b4b565b9250506040612c4086828701612a96565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612c6f57612c6e612c4a565b5b8235905067ffffffffffffffff811115612c8c57612c8b612c4f565b5b602083019150836020820283011115612ca857612ca7612c54565b5b9250929050565b60008060208385031215612cc657612cc56128fe565b5b600083013567ffffffffffffffff811115612ce457612ce3612903565b5b612cf085828601612c59565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d3181612af8565b82525050565b600067ffffffffffffffff82169050919050565b612d5481612d37565b82525050565b612d638161298d565b82525050565b600062ffffff82169050919050565b612d8181612d69565b82525050565b608082016000820151612d9d6000850182612d28565b506020820151612db06020850182612d4b565b506040820151612dc36040850182612d5a565b506060820151612dd66060850182612d78565b50505050565b6000612de88383612d87565b60808301905092915050565b6000602082019050919050565b6000612e0c82612cfc565b612e168185612d07565b9350612e2183612d18565b8060005b83811015612e52578151612e398882612ddc565b9750612e4483612df4565b925050600181019050612e25565b5085935050505092915050565b60006020820190508181036000830152612e798184612e01565b905092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612eb681612a75565b82525050565b6000612ec88383612ead565b60208301905092915050565b6000602082019050919050565b6000612eec82612e81565b612ef68185612e8c565b9350612f0183612e9d565b8060005b83811015612f32578151612f198882612ebc565b9750612f2483612ed4565b925050600181019050612f05565b5085935050505092915050565b60006020820190508181036000830152612f598184612ee1565b905092915050565b600080600060608486031215612f7a57612f796128fe565b5b6000612f8886828701612b4b565b9350506020612f9986828701612a96565b9250506040612faa86828701612a96565b9150509250925092565b60008060408385031215612fcb57612fca6128fe565b5b6000612fd985828601612a96565b9250506020612fea85828601612a96565b9150509250929050565b612ffd8161298d565b811461300857600080fd5b50565b60008135905061301a81612ff4565b92915050565b60008060408385031215613037576130366128fe565b5b600061304585828601612b4b565b92505060206130568582860161300b565b9150509250929050565b6000819050919050565b61307381613060565b811461307e57600080fd5b50565b6000813590506130908161306a565b92915050565b6000602082840312156130ac576130ab6128fe565b5b60006130ba84828501613081565b91505092915050565b60008083601f8401126130d9576130d8612c4a565b5b8235905067ffffffffffffffff8111156130f6576130f5612c4f565b5b60208301915083602082028301111561311257613111612c54565b5b9250929050565b60008060008060008060a08789031215613136576131356128fe565b5b600061314489828a01612b4b565b965050602087013567ffffffffffffffff81111561316557613164612903565b5b61317189828a016130c3565b9550955050604061318489828a01612a96565b935050606061319589828a01612a96565b92505060806131a689828a01612a96565b9150509295509295509295565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131f082612a09565b810181811067ffffffffffffffff8211171561320f5761320e6131b8565b5b80604052505050565b60006132226128f4565b905061322e82826131e7565b919050565b600067ffffffffffffffff82111561324e5761324d6131b8565b5b61325782612a09565b9050602081019050919050565b82818337600083830152505050565b600061328661328184613233565b613218565b9050828152602081018484840111156132a2576132a16131b3565b5b6132ad848285613264565b509392505050565b600082601f8301126132ca576132c9612c4a565b5b81356132da848260208601613273565b91505092915050565b6000602082840312156132f9576132f86128fe565b5b600082013567ffffffffffffffff81111561331757613316612903565b5b613323848285016132b5565b91505092915050565b600067ffffffffffffffff821115613347576133466131b8565b5b61335082612a09565b9050602081019050919050565b600061337061336b8461332c565b613218565b90508281526020810184848401111561338c5761338b6131b3565b5b613397848285613264565b509392505050565b600082601f8301126133b4576133b3612c4a565b5b81356133c484826020860161335d565b91505092915050565b600080600080608085870312156133e7576133e66128fe565b5b60006133f587828801612b4b565b945050602061340687828801612b4b565b935050604061341787828801612a96565b925050606085013567ffffffffffffffff81111561343857613437612903565b5b6134448782880161339f565b91505092959194509250565b6080820160008201516134666000850182612d28565b5060208201516134796020850182612d4b565b50604082015161348c6040850182612d5a565b50606082015161349f6060850182612d78565b50505050565b60006080820190506134ba6000830184613450565b92915050565b600080604083850312156134d7576134d66128fe565b5b60006134e585828601612b4b565b92505060206134f685828601612b4b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061354757607f821691505b60208210810361355a57613559613500565b5b50919050565b7f4f6e6c79207061796f757420616464726573732063616e20736574207061796f60008201527f7574206164647265737300000000000000000000000000000000000000000000602082015250565b60006135bc602a836129ce565b91506135c782613560565b604082019050919050565b600060208201905081810360008301526135eb816135af565b9050919050565b7f4f6e6c79206f776e6572206f72207061796f757420616464726573732063616e60008201527f2077697468647261770000000000000000000000000000000000000000000000602082015250565b600061364e6029836129ce565b9150613659826135f2565b604082019050919050565b6000602082019050818103600083015261367d81613641565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136ed82612a75565b91506136f883612a75565b925082820261370681612a75565b9150828204841483151761371d5761371c6136b3565b5b5092915050565b7f496e76616c69642073656e646572000000000000000000000000000000000000600082015250565b600061375a600e836129ce565b915061376582613724565b602082019050919050565b600060208201905081810360008301526137898161374d565b9050919050565b7f496e76616c696420746965720000000000000000000000000000000000000000600082015250565b60006137c6600c836129ce565b91506137d182613790565b602082019050919050565b600060208201905081810360008301526137f5816137b9565b9050919050565b7f496e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b6000613832600e836129ce565b915061383d826137fc565b602082019050919050565b6000602082019050818103600083015261386181613825565b9050919050565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b600061389e600e836129ce565b91506138a982613868565b602082019050919050565b600060208201905081810360008301526138cd81613891565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026139367fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826138f9565b61394086836138f9565b95508019841693508086168417925050509392505050565b6000819050919050565b600061397d61397861397384612a75565b613958565b612a75565b9050919050565b6000819050919050565b61399783613962565b6139ab6139a382613984565b848454613906565b825550505050565b600090565b6139c06139b3565b6139cb81848461398e565b505050565b5b818110156139ef576139e46000826139b8565b6001810190506139d1565b5050565b601f821115613a3457613a05816138d4565b613a0e846138e9565b81016020851015613a1d578190505b613a31613a29856138e9565b8301826139d0565b50505b505050565b600082821c905092915050565b6000613a5760001984600802613a39565b1980831691505092915050565b6000613a708383613a46565b9150826002028217905092915050565b613a89826129c3565b67ffffffffffffffff811115613aa257613aa16131b8565b5b613aac825461352f565b613ab78282856139f3565b600060209050601f831160018114613aea5760008415613ad8578287015190505b613ae28582613a64565b865550613b4a565b601f198416613af8866138d4565b60005b82811015613b2057848901518255600182019150602085019450602081019050613afb565b86831015613b3d5784890151613b39601f891682613a46565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000613b68826129c3565b613b728185613b52565b9350613b828185602086016129df565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613bc4600583613b52565b9150613bcf82613b8e565b600582019050919050565b6000613be68284613b5d565b9150613bf182613bb7565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c586026836129ce565b9150613c6382613bfc565b604082019050919050565b60006020820190508181036000830152613c8781613c4b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cc46020836129ce565b9150613ccf82613c8e565b602082019050919050565b60006020820190508181036000830152613cf381613cb7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d3482612a75565b9150613d3f83612a75565b925082613d4f57613d4e613cfa565b5b828204905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613d90601f836129ce565b9150613d9b82613d5a565b602082019050919050565b60006020820190508181036000830152613dbf81613d83565b9050919050565b6000604082019050613ddb6000830185612b0a565b613de86020830184612bcd565b9392505050565b7f4e6f74206f6e2077686974656c69737400000000000000000000000000000000600082015250565b6000613e256010836129ce565b9150613e3082613def565b602082019050919050565b60006020820190508181036000830152613e5481613e18565b9050919050565b6000613e6682612a75565b9150613e7183612a75565b9250828201905080821115613e8957613e886136b3565b5b92915050565b7f576f756c64207375727061737320796f7572206d696e74206c696d6974000000600082015250565b6000613ec5601d836129ce565b9150613ed082613e8f565b602082019050919050565b60006020820190508181036000830152613ef481613eb8565b9050919050565b7f576f756c64207375727061737320676c6f62616c206d696e74206c696d697400600082015250565b6000613f31601f836129ce565b9150613f3c82613efb565b602082019050919050565b60006020820190508181036000830152613f6081613f24565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613f8e82613f67565b613f988185613f72565b9350613fa88185602086016129df565b613fb181612a09565b840191505092915050565b6000608082019050613fd16000830187612b0a565b613fde6020830186612b0a565b613feb6040830185612bcd565b8181036060830152613ffd8184613f83565b905095945050505050565b60008151905061401781612934565b92915050565b600060208284031215614033576140326128fe565b5b600061404184828501614008565b91505092915050565b60006140568285613b5d565b91506140628284613b5d565b91508190509392505050565b600069ffffffffffffffffffff82169050919050565b61408d8161406e565b811461409857600080fd5b50565b6000815190506140aa81614084565b92915050565b6000819050919050565b6140c3816140b0565b81146140ce57600080fd5b50565b6000815190506140e0816140ba565b92915050565b6000815190506140f581612a7f565b92915050565b600080600080600060a08688031215614117576141166128fe565b5b60006141258882890161409b565b9550506020614136888289016140d1565b9450506040614147888289016140e6565b9350506060614158888289016140e6565b92505060806141698882890161409b565b9150509295509295909350565b600060608201905061418b6000830186612b0a565b6141986020830185612bcd565b6141a56040830184612bcd565b949350505050565b6000819050919050565b6141c86141c382613060565b6141ad565b82525050565b60006141da82846141b7565b60208201915081905092915050565b60006141f482612a75565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614226576142256136b3565b5b60018201905091905056fea2646970667358221220ebed108a918922a832050ab5d013b2b3b9b2963f11f605ff0c656733028856bf64736f6c63430008120033

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.