ETH Price: $3,098.34 (+0.35%)

Token

The End (END)
 

Overview

Max Total Supply

1,000 END

Holders

60

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 END
0x9349f2246d266445f0d40055c9529f084a3ea74f
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:
TheEnd

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : TheEnd.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

/*                                                                   
    EEEEEEEEEEEEEEEEEEEEEENNNNNNNN        NNNNNNNNDDDDDDDDDDDDD        
    E::::::::::::::::::::EN:::::::N       N::::::ND::::::::::::DDD     
    E::::::::::::::::::::EN::::::::N      N::::::ND:::::::::::::::DD   
    EE::::::EEEEEEEEE::::EN:::::::::N     N::::::NDDD:::::DDDDD:::::D  
      E:::::E       EEEEEEN::::::::::N    N::::::N  D:::::D    D:::::D 
      E:::::E             N:::::::::::N   N::::::N  D:::::D     D:::::D
      E::::::EEEEEEEEEE   N:::::::N::::N  N::::::N  D:::::D     D:::::D
      E:::::::::::::::E   N::::::N N::::N N::::::N  D:::::D     D:::::D
      E:::::::::::::::E   N::::::N  N::::N:::::::N  D:::::D     D:::::D
      E::::::EEEEEEEEEE   N::::::N   N:::::::::::N  D:::::D     D:::::D
      E:::::E             N::::::N    N::::::::::N  D:::::D     D:::::D
      E:::::E       EEEEEEN::::::N     N:::::::::N  D:::::D    D:::::D 
    EE::::::EEEEEEEE:::::EN::::::N      N::::::::NDDD:::::DDDDD:::::D  
    E::::::::::::::::::::EN::::::N       N:::::::ND:::::::::::::::DD   
    E::::::::::::::::::::EN::::::N        N::::::ND::::::::::::DDD     
    EEEEEEEEEEEEEEEEEEEEEENNNNNNNN         NNNNNNNDDDDDDDDDDDDD        

    The End All Rights Reserved 2022
    Developed by ATOMICON.PRO ([email protected])
*/

import "./ERC721A.sol";
import "./utils/operator_filterer/DefaultOperatorFilterer.sol";

import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract TheEnd is ERC721A, Ownable, ReentrancyGuard, DefaultOperatorFilterer {

    enum SALE_STAGE {
        CLOSED,
        CLAIM,
        PUBLIC
    }    

    uint16 constant public COLLECTION_SIZE = 1000;

    uint32 constant public CLAIM_START_TIME = 1672426800;
    uint32 constant public PUBLIC_SALE_START_TIME = 1673290800;

    bytes8 constant private _hashSalt = 0xa6a38c95e06ea182;
    address constant private _signerAddress = 0x97B5716B3175e3bac5410822D81948536A67Bd20;

     address[4] private _payoutWallets = [
        0xAb8da4a15424E0A51B31317f3A69f76f1c4033c1,
        0xEA469f5F95Ec73a9DCF37C729BCBd7dB5d4D1bC9,
        0x7e3F983911eB2740Ba7F685907B68A0044bA9cFF,
        0x9BB75389c8D1d6fDA48c6f8c1daE6Fd3F4bd5DEb
    ];

    /// @notice Used nonces for minting signatures    
    mapping(uint64 => bool) private _usedNonces;

    constructor() ERC721A("The End", "END") {}

    /// @notice Claim tokens for free based on a backend whitelist
    function claimMint(bytes32 hash, bytes memory signature, uint256 quantity, uint64 maxTokens, uint64 nonce)
        external
    {
        SALE_STAGE saleStage = getSaleStage();
        require(saleStage == SALE_STAGE.CLAIM, "SPF holders claim stage has not begun yet");

        require(totalSupply() + quantity <= COLLECTION_SIZE, "Reached max supply");
        require(numberMinted(msg.sender) + quantity <= maxTokens, "Exceeding claiming limit for this account");

        require(_operationHash(msg.sender, quantity, maxTokens, nonce) == hash, "Hash comparison failed");
        require(_isTrustedSigner(hash, signature), "Direct minting is disallowed");
        require(!_usedNonces[nonce], "Hash is already used");
        
        _usedNonces[nonce] = true;
        _safeMint(msg.sender, quantity);
    }

    /// @notice Mint tokens during the sales
    function saleMint(bytes32 hash, bytes memory signature, uint64 nonce, uint256 quantity)
        external
    {
        SALE_STAGE saleStage = getSaleStage();
        require(saleStage == SALE_STAGE.PUBLIC, "Sales have not begun yet");

        require(totalSupply() + quantity <= COLLECTION_SIZE, "Reached max supply");
        require(quantity <= 10, "Can't mint more then 10 tokens per transaction");

        require(_operationHash(msg.sender, quantity, COLLECTION_SIZE, nonce) == hash, "Hash comparison failed");
        require(_isTrustedSigner(hash, signature), "Direct minting is disallowed");
        require(!_usedNonces[nonce], "Hash is already used");

        _usedNonces[nonce] = true;
        _safeMint(msg.sender, quantity);
    }

    /// @dev Generate hash of current mint operation
    function _operationHash(address buyer, uint256 quantity, uint64 maxTokens, uint64 nonce) internal view returns (bytes32) {        
         SALE_STAGE saleStage = getSaleStage();

        if(saleStage == SALE_STAGE.CLOSED)
            revert("Sales have not begun yet");

        return keccak256(abi.encodePacked(
            _hashSalt,
            buyer,
            uint64(block.chainid),
            uint64(saleStage),
            uint64(maxTokens),
            uint64(quantity),
            uint64(nonce)
        ));
    } 

    /// @dev Test whether a message was signed by a trusted address
    function _isTrustedSigner(bytes32 hash, bytes memory signature) internal pure returns(bool) {
        return _signerAddress == ECDSA.recover(hash, signature);
    }

    /// @notice Withdraw money in equal ammounts to a list of addresses
    function withdrawMoney() external onlyOwner nonReentrant {
        require(address(this).balance > 0, "No funds on the contract");

        uint payoutWalletsCount = _payoutWallets.length;
        uint paymentPerWallet = address(this).balance / payoutWalletsCount;

        for (uint i = 0; i < payoutWalletsCount; i++) {
            payable(_payoutWallets[i]).transfer(paymentPerWallet);
        }
    }

    /// @notice Number of tokens minted by an address
    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    /// @notice Get current sale stage
    function getSaleStage() public view returns (SALE_STAGE) {
        if(block.timestamp >= PUBLIC_SALE_START_TIME)
            return SALE_STAGE.PUBLIC;
        
        if(block.timestamp >= CLAIM_START_TIME)
            return SALE_STAGE.CLAIM;
        
        return SALE_STAGE.CLOSED;
    }

    /// @notice URI with contract metadata for opensea
    function contractURI() public pure returns (string memory) {
        return "ipfs://bafkreifkpcxqm4e3bptp4a4hm2p32ppywkprorijmtrc5jxqtskcpb3gxi";
    }

    /// @dev Starting index for the token IDs
    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    /// @dev Token metadata folder/root URI
    string private _baseTokenURI = "ipfs://bafybeick2nrdh5nmelynvcnufhe7n7ise3zzphn5tv6x4d7yuhnsckzgzy/";

    /// @dev Get base token URI
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    /// @notice Set base token URI
    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    /// @dev Recieve any amount of ether
    receive() external payable {}
}

File 2 of 12 : 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 12 : 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 12 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 5 of 12 : DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {OperatorFilterer} from "./OperatorFilterer.sol";

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

File 6 of 12 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.0
// 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 {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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

File 7 of 12 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

File 8 of 12 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

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

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

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

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

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

File 10 of 12 : 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 11 of 12 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

File 12 of 12 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

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

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

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

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

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

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

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

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CLAIM_START_TIME","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COLLECTION_SIZE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_START_TIME","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint64","name":"maxTokens","type":"uint64"},{"internalType":"uint64","name":"nonce","type":"uint64"}],"name":"claimMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleStage","outputs":[{"internalType":"enum TheEnd.SALE_STAGE","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint64","name":"nonce","type":"uint64"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"saleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052604051806080016040528073ab8da4a15424e0a51b31317f3a69f76f1c4033c173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173ea469f5f95ec73a9dcf37c729bcbd7db5d4d1bc973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001737e3f983911eb2740ba7f685907b68a0044ba9cff73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001739bb75389c8d1d6fda48c6f8c1dae6fd3f4bd5deb73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250600a906004620001379291906200052c565b506040518060800160405280604381526020016200479060439139600f908162000162919062000847565b503480156200017057600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600781526020017f54686520456e64000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f454e440000000000000000000000000000000000000000000000000000000000815250816002908162000205919062000847565b50806003908162000217919062000847565b50620002286200045560201b60201c565b600081905550505062000250620002446200045e60201b60201c565b6200046660201b60201c565b600160098190555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200044d57801562000313576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620002d992919062000973565b600060405180830381600087803b158015620002f457600080fd5b505af115801562000309573d6000803e3d6000fd5b505050506200044c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620003cd576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200039392919062000973565b600060405180830381600087803b158015620003ae57600080fd5b505af1158015620003c3573d6000803e3d6000fd5b505050506200044b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620004169190620009a0565b600060405180830381600087803b1580156200043157600080fd5b505af115801562000446573d6000803e3d6000fd5b505050505b5b5b5050620009bd565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82600481019282156200059b579160200282015b828111156200059a5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000540565b5b509050620005aa9190620005ae565b5090565b5b80821115620005c9576000816000905550600101620005af565b5090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200064f57607f821691505b60208210810362000665576200066462000607565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006cf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000690565b620006db868362000690565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000728620007226200071c84620006f3565b620006fd565b620006f3565b9050919050565b6000819050919050565b620007448362000707565b6200075c62000753826200072f565b8484546200069d565b825550505050565b600090565b6200077362000764565b6200078081848462000739565b505050565b5b81811015620007a8576200079c60008262000769565b60018101905062000786565b5050565b601f821115620007f757620007c1816200066b565b620007cc8462000680565b81016020851015620007dc578190505b620007f4620007eb8562000680565b83018262000785565b50505b505050565b600082821c905092915050565b60006200081c60001984600802620007fc565b1980831691505092915050565b600062000837838362000809565b9150826002028217905092915050565b6200085282620005cd565b67ffffffffffffffff8111156200086e576200086d620005d8565b5b6200087a825462000636565b62000887828285620007ac565b600060209050601f831160018114620008bf5760008415620008aa578287015190505b620008b6858262000829565b86555062000926565b601f198416620008cf866200066b565b60005b82811015620008f957848901518255600182019150602085019450602081019050620008d2565b8683101562000919578489015162000915601f89168262000809565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200095b826200092e565b9050919050565b6200096d816200094e565b82525050565b60006040820190506200098a600083018562000962565b62000999602083018462000962565b9392505050565b6000602082019050620009b7600083018462000962565b92915050565b613dc380620009cd6000396000f3fe6080604052600436106101bb5760003560e01c8063715018a6116100ec578063d8258d951161008a578063e8a3d48511610064578063e8a3d48514610605578063e985e9c514610630578063f2fde38b1461066d578063fd0525bc14610696576101c2565b8063d8258d9514610572578063dc33e6811461059d578063dcefac7f146105da576101c2565b8063a22cb465116100c6578063a22cb465146104cc578063ac446002146104f5578063b88d4fde1461050c578063c87b56dd14610535576101c2565b8063715018a61461045f5780638da5cb5b1461047657806395d89b41146104a1576101c2565b806341f434341161015957806353b3d2ae1161013357806353b3d2ae1461039157806355f804b3146103bc5780636352211e146103e557806370a0823114610422576101c2565b806341f434341461031257806342842e0e1461033d57806345c16a2214610366576101c2565b8063095ea7b311610195578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780633a933b0c146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e9919061261a565b6106bf565b6040516101fb9190612662565b60405180910390f35b34801561021057600080fd5b50610219610751565b604051610226919061270d565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612765565b6107e3565b60405161026391906127d3565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e919061281a565b610862565b005b3480156102a157600080fd5b506102aa6109a6565b6040516102b79190612869565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612884565b6109bd565b005b3480156102f557600080fd5b50610310600480360381019061030b9190612a82565b610cdf565b005b34801561031e57600080fd5b50610327610f6a565b6040516103349190612b78565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190612884565b610f7c565b005b34801561037257600080fd5b5061037b610f9c565b6040516103889190612c0a565b60405180910390f35b34801561039d57600080fd5b506103a6610fda565b6040516103b39190612c44565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de9190612cbf565b610fe2565b005b3480156103f157600080fd5b5061040c60048036038101906104079190612765565b611000565b60405161041991906127d3565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190612d0c565b611012565b6040516104569190612869565b60405180910390f35b34801561046b57600080fd5b506104746110ca565b005b34801561048257600080fd5b5061048b6110de565b60405161049891906127d3565b60405180910390f35b3480156104ad57600080fd5b506104b6611108565b6040516104c3919061270d565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190612d65565b61119a565b005b34801561050157600080fd5b5061050a611311565b005b34801561051857600080fd5b50610533600480360381019061052e9190612da5565b611421565b005b34801561054157600080fd5b5061055c60048036038101906105579190612765565b611494565b604051610569919061270d565b60405180910390f35b34801561057e57600080fd5b50610587611532565b6040516105949190612e45565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf9190612d0c565b611538565b6040516105d19190612869565b60405180910390f35b3480156105e657600080fd5b506105ef61154a565b6040516105fc9190612c44565b60405180910390f35b34801561061157600080fd5b5061061a611552565b604051610627919061270d565b60405180910390f35b34801561063c57600080fd5b5061065760048036038101906106529190612e60565b611572565b6040516106649190612662565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f9190612d0c565b611606565b005b3480156106a257600080fd5b506106bd60048036038101906106b89190612ea0565b611689565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461076090612f52565b80601f016020809104026020016040519081016040528092919081815260200182805461078c90612f52565b80156107d95780601f106107ae576101008083540402835291602001916107d9565b820191906000526020600020905b8154815290600101906020018083116107bc57829003601f168201915b5050505050905090565b60006107ee826118fc565b610824576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086d82611000565b90508073ffffffffffffffffffffffffffffffffffffffff1661088e61195b565b73ffffffffffffffffffffffffffffffffffffffff16146108f1576108ba816108b561195b565b611572565b6108f0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109b0611963565b6001546000540303905090565b60006109c88261196c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a2f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a3b84611a38565b91509150610a518187610a4c61195b565b611a5f565b610a9d57610a6686610a6161195b565b611572565b610a9c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b03576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b108686866001611aa3565b8015610b1b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610be985610bc5888887611aa9565b7c020000000000000000000000000000000000000000000000000000000017611ad1565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c6f5760006001850190506000600460008381526020019081526020016000205403610c6d576000548114610c6c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cd78686866001611afc565b505050505050565b6000610ce9610f9c565b905060016002811115610cff57610cfe612b93565b5b816002811115610d1257610d11612b93565b5b14610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4990612ff5565b60405180910390fd5b6103e861ffff1684610d626109a6565b610d6c9190613044565b1115610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da4906130c4565b60405180910390fd5b8267ffffffffffffffff1684610dc233611538565b610dcc9190613044565b1115610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0490613156565b60405180910390fd5b85610e1a33868686611b02565b14610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e51906131c2565b60405180910390fd5b610e648686611bd1565b610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a9061322e565b60405180910390fd5b600e60008367ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f9061329a565b60405180910390fd5b6001600e60008467ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f623385611c27565b505050505050565b6daaeb6d7670e522a718067333cd4e81565b610f9783838360405180602001604052806000815250611421565b505050565b60006363bc643063ffffffff164210610fb85760029050610fd7565b6363af353063ffffffff164210610fd25760019050610fd7565b600090505b90565b6363af353081565b610fea611c45565b8181600f9182610ffb929190613467565b505050565b600061100b8261196c565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611079576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110d2611c45565b6110dc6000611cc3565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461111790612f52565b80601f016020809104026020016040519081016040528092919081815260200182805461114390612f52565b80156111905780601f1061116557610100808354040283529160200191611190565b820191906000526020600020905b81548152906001019060200180831161117357829003601f168201915b5050505050905090565b6111a261195b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611206576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061121361195b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112c061195b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113059190612662565b60405180910390a35050565b611319611c45565b611321611d89565b60004711611364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135b90613583565b60405180910390fd5b6000600490506000814761137891906135d2565b905060005b8281101561141457600a816004811061139957611398613603565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611400573d6000803e3d6000fd5b50808061140c90613632565b91505061137d565b50505061141f611dd8565b565b61142c8484846109bd565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461148e5761145784848484611de2565b61148d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061149f826118fc565b6114d5576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114df611f32565b905060008151036114ff576040518060200160405280600081525061152a565b8061150984611fc4565b60405160200161151a9291906136b6565b6040516020818303038152906040525b915050919050565b6103e881565b60006115438261201e565b9050919050565b6363bc643081565b6060604051806080016040528060428152602001613d4c60429139905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61160e611c45565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361167d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116749061374c565b60405180910390fd5b61168681611cc3565b50565b6000611693610f9c565b90506002808111156116a8576116a7612b93565b5b8160028111156116bb576116ba612b93565b5b146116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f2906137b8565b60405180910390fd5b6103e861ffff168261170b6109a6565b6117159190613044565b1115611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d906130c4565b60405180910390fd5b600a82111561179a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117919061384a565b60405180910390fd5b846117ad33846103e861ffff1687611b02565b146117ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e4906131c2565b60405180910390fd5b6117f78585611bd1565b611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d9061322e565b60405180910390fd5b600e60008467ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a29061329a565b60405180910390fd5b6001600e60008567ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506118f53383611c27565b5050505050565b600081611907611963565b11158015611916575060005482105b8015611954575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061197b611963565b11611a0157600054811015611a005760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036119fe575b600081036119f45760046000836001900393508381526020019081526020016000205490506119ca565b8092505050611a33565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ac0868684612075565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600080611b0d610f9c565b905060006002811115611b2357611b22612b93565b5b816002811115611b3657611b35612b93565b5b03611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d906137b8565b60405180910390fd5b67a6a38c95e06ea18260c01b8646836002811115611b9757611b96612b93565b5b878988604051602001611bb09796959493929190613935565b60405160208183030381529060405280519060200120915050949350505050565b6000611bdd838361207e565b73ffffffffffffffffffffffffffffffffffffffff167397b5716b3175e3bac5410822d81948536a67bd2073ffffffffffffffffffffffffffffffffffffffff1614905092915050565b611c418282604051806020016040528060008152506120a5565b5050565b611c4d612142565b73ffffffffffffffffffffffffffffffffffffffff16611c6b6110de565b73ffffffffffffffffffffffffffffffffffffffff1614611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb890613a02565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260095403611dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc590613a6e565b60405180910390fd5b6002600981905550565b6001600981905550565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e0861195b565b8786866040518563ffffffff1660e01b8152600401611e2a9493929190613ae3565b6020604051808303816000875af1925050508015611e6657506040513d601f19601f82011682018060405250810190611e639190613b44565b60015b611edf573d8060008114611e96576040519150601f19603f3d011682016040523d82523d6000602084013e611e9b565b606091505b506000815103611ed7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054611f4190612f52565b80601f0160208091040260200160405190810160405280929190818152602001828054611f6d90612f52565b8015611fba5780601f10611f8f57610100808354040283529160200191611fba565b820191906000526020600020905b815481529060010190602001808311611f9d57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561200a57600183039250600a81066030018353600a81049050611fea565b508181036020830392508083525050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b600080600061208d858561214a565b9150915061209a8161219b565b819250505092915050565b6120af8383612301565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461213d57600080549050600083820390505b6120ef6000868380600101945086611de2565b612125576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120dc57816000541461213a57600080fd5b50505b505050565b600033905090565b600080604183510361218b5760008060006020860151925060408601519150606086015160001a905061217f878285856124bc565b94509450505050612194565b60006002915091505b9250929050565b600060048111156121af576121ae612b93565b5b8160048111156121c2576121c1612b93565b5b03156122fe57600160048111156121dc576121db612b93565b5b8160048111156121ef576121ee612b93565b5b0361222f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222690613bbd565b60405180910390fd5b6002600481111561224357612242612b93565b5b81600481111561225657612255612b93565b5b03612296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228d90613c29565b60405180910390fd5b600360048111156122aa576122a9612b93565b5b8160048111156122bd576122bc612b93565b5b036122fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f490613cbb565b60405180910390fd5b5b50565b60008054905060008203612341576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61234e6000848385611aa3565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123c5836123b66000866000611aa9565b6123bf8561259e565b17611ad1565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461246657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061242b565b50600082036124a1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124b76000848385611afc565b505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156124f7576000600391509150612595565b60006001878787876040516000815260200160405260405161251c9493929190613d06565b6020604051602081039080840390855afa15801561253e573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361258c57600060019250925050612595565b80600092509250505b94509492505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125f7816125c2565b811461260257600080fd5b50565b600081359050612614816125ee565b92915050565b6000602082840312156126305761262f6125b8565b5b600061263e84828501612605565b91505092915050565b60008115159050919050565b61265c81612647565b82525050565b60006020820190506126776000830184612653565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126b757808201518184015260208101905061269c565b60008484015250505050565b6000601f19601f8301169050919050565b60006126df8261267d565b6126e98185612688565b93506126f9818560208601612699565b612702816126c3565b840191505092915050565b6000602082019050818103600083015261272781846126d4565b905092915050565b6000819050919050565b6127428161272f565b811461274d57600080fd5b50565b60008135905061275f81612739565b92915050565b60006020828403121561277b5761277a6125b8565b5b600061278984828501612750565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127bd82612792565b9050919050565b6127cd816127b2565b82525050565b60006020820190506127e860008301846127c4565b92915050565b6127f7816127b2565b811461280257600080fd5b50565b600081359050612814816127ee565b92915050565b60008060408385031215612831576128306125b8565b5b600061283f85828601612805565b925050602061285085828601612750565b9150509250929050565b6128638161272f565b82525050565b600060208201905061287e600083018461285a565b92915050565b60008060006060848603121561289d5761289c6125b8565b5b60006128ab86828701612805565b93505060206128bc86828701612805565b92505060406128cd86828701612750565b9150509250925092565b6000819050919050565b6128ea816128d7565b81146128f557600080fd5b50565b600081359050612907816128e1565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61294f826126c3565b810181811067ffffffffffffffff8211171561296e5761296d612917565b5b80604052505050565b60006129816125ae565b905061298d8282612946565b919050565b600067ffffffffffffffff8211156129ad576129ac612917565b5b6129b6826126c3565b9050602081019050919050565b82818337600083830152505050565b60006129e56129e084612992565b612977565b905082815260208101848484011115612a0157612a00612912565b5b612a0c8482856129c3565b509392505050565b600082601f830112612a2957612a2861290d565b5b8135612a398482602086016129d2565b91505092915050565b600067ffffffffffffffff82169050919050565b612a5f81612a42565b8114612a6a57600080fd5b50565b600081359050612a7c81612a56565b92915050565b600080600080600060a08688031215612a9e57612a9d6125b8565b5b6000612aac888289016128f8565b955050602086013567ffffffffffffffff811115612acd57612acc6125bd565b5b612ad988828901612a14565b9450506040612aea88828901612750565b9350506060612afb88828901612a6d565b9250506080612b0c88828901612a6d565b9150509295509295909350565b6000819050919050565b6000612b3e612b39612b3484612792565b612b19565b612792565b9050919050565b6000612b5082612b23565b9050919050565b6000612b6282612b45565b9050919050565b612b7281612b57565b82525050565b6000602082019050612b8d6000830184612b69565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110612bd357612bd2612b93565b5b50565b6000819050612be482612bc2565b919050565b6000612bf482612bd6565b9050919050565b612c0481612be9565b82525050565b6000602082019050612c1f6000830184612bfb565b92915050565b600063ffffffff82169050919050565b612c3e81612c25565b82525050565b6000602082019050612c596000830184612c35565b92915050565b600080fd5b600080fd5b60008083601f840112612c7f57612c7e61290d565b5b8235905067ffffffffffffffff811115612c9c57612c9b612c5f565b5b602083019150836001820283011115612cb857612cb7612c64565b5b9250929050565b60008060208385031215612cd657612cd56125b8565b5b600083013567ffffffffffffffff811115612cf457612cf36125bd565b5b612d0085828601612c69565b92509250509250929050565b600060208284031215612d2257612d216125b8565b5b6000612d3084828501612805565b91505092915050565b612d4281612647565b8114612d4d57600080fd5b50565b600081359050612d5f81612d39565b92915050565b60008060408385031215612d7c57612d7b6125b8565b5b6000612d8a85828601612805565b9250506020612d9b85828601612d50565b9150509250929050565b60008060008060808587031215612dbf57612dbe6125b8565b5b6000612dcd87828801612805565b9450506020612dde87828801612805565b9350506040612def87828801612750565b925050606085013567ffffffffffffffff811115612e1057612e0f6125bd565b5b612e1c87828801612a14565b91505092959194509250565b600061ffff82169050919050565b612e3f81612e28565b82525050565b6000602082019050612e5a6000830184612e36565b92915050565b60008060408385031215612e7757612e766125b8565b5b6000612e8585828601612805565b9250506020612e9685828601612805565b9150509250929050565b60008060008060808587031215612eba57612eb96125b8565b5b6000612ec8878288016128f8565b945050602085013567ffffffffffffffff811115612ee957612ee86125bd565b5b612ef587828801612a14565b9350506040612f0687828801612a6d565b9250506060612f1787828801612750565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f6a57607f821691505b602082108103612f7d57612f7c612f23565b5b50919050565b7f53504620686f6c6465727320636c61696d20737461676520686173206e6f742060008201527f626567756e207965740000000000000000000000000000000000000000000000602082015250565b6000612fdf602983612688565b9150612fea82612f83565b604082019050919050565b6000602082019050818103600083015261300e81612fd2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061304f8261272f565b915061305a8361272f565b925082820190508082111561307257613071613015565b5b92915050565b7f52656163686564206d617820737570706c790000000000000000000000000000600082015250565b60006130ae601283612688565b91506130b982613078565b602082019050919050565b600060208201905081810360008301526130dd816130a1565b9050919050565b7f457863656564696e6720636c61696d696e67206c696d697420666f722074686960008201527f73206163636f756e740000000000000000000000000000000000000000000000602082015250565b6000613140602983612688565b915061314b826130e4565b604082019050919050565b6000602082019050818103600083015261316f81613133565b9050919050565b7f4861736820636f6d70617269736f6e206661696c656400000000000000000000600082015250565b60006131ac601683612688565b91506131b782613176565b602082019050919050565b600060208201905081810360008301526131db8161319f565b9050919050565b7f446972656374206d696e74696e6720697320646973616c6c6f77656400000000600082015250565b6000613218601c83612688565b9150613223826131e2565b602082019050919050565b600060208201905081810360008301526132478161320b565b9050919050565b7f4861736820697320616c72656164792075736564000000000000000000000000600082015250565b6000613284601483612688565b915061328f8261324e565b602082019050919050565b600060208201905081810360008301526132b381613277565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026133277fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826132ea565b61333186836132ea565b95508019841693508086168417925050509392505050565b600061336461335f61335a8461272f565b612b19565b61272f565b9050919050565b6000819050919050565b61337e83613349565b61339261338a8261336b565b8484546132f7565b825550505050565b600090565b6133a761339a565b6133b2818484613375565b505050565b5b818110156133d6576133cb60008261339f565b6001810190506133b8565b5050565b601f82111561341b576133ec816132c5565b6133f5846132da565b81016020851015613404578190505b613418613410856132da565b8301826133b7565b50505b505050565b600082821c905092915050565b600061343e60001984600802613420565b1980831691505092915050565b6000613457838361342d565b9150826002028217905092915050565b61347183836132ba565b67ffffffffffffffff81111561348a57613489612917565b5b6134948254612f52565b61349f8282856133da565b6000601f8311600181146134ce57600084156134bc578287013590505b6134c6858261344b565b86555061352e565b601f1984166134dc866132c5565b60005b82811015613504578489013582556001820191506020850194506020810190506134df565b86831015613521578489013561351d601f89168261342d565b8355505b6001600288020188555050505b50505050505050565b7f4e6f2066756e6473206f6e2074686520636f6e74726163740000000000000000600082015250565b600061356d601883612688565b915061357882613537565b602082019050919050565b6000602082019050818103600083015261359c81613560565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006135dd8261272f565b91506135e88361272f565b9250826135f8576135f76135a3565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061363d8261272f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361366f5761366e613015565b5b600182019050919050565b600081905092915050565b60006136908261267d565b61369a818561367a565b93506136aa818560208601612699565b80840191505092915050565b60006136c28285613685565b91506136ce8284613685565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613736602683612688565b9150613741826136da565b604082019050919050565b6000602082019050818103600083015261376581613729565b9050919050565b7f53616c65732068617665206e6f7420626567756e207965740000000000000000600082015250565b60006137a2601883612688565b91506137ad8261376c565b602082019050919050565b600060208201905081810360008301526137d181613795565b9050919050565b7f43616e2774206d696e74206d6f7265207468656e20313020746f6b656e73207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b6000613834602e83612688565b915061383f826137d8565b604082019050919050565b6000602082019050818103600083015261386381613827565b9050919050565b60007fffffffffffffffff00000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b6138b16138ac8261386a565b613896565b82525050565b60008160601b9050919050565b60006138cf826138b7565b9050919050565b60006138e1826138c4565b9050919050565b6138f96138f4826127b2565b6138d6565b82525050565b60008160c01b9050919050565b6000613917826138ff565b9050919050565b61392f61392a82612a42565b61390c565b82525050565b6000613941828a6138a0565b60088201915061395182896138e8565b601482019150613961828861391e565b600882019150613971828761391e565b600882019150613981828661391e565b600882019150613991828561391e565b6008820191506139a1828461391e565b60088201915081905098975050505050505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139ec602083612688565b91506139f7826139b6565b602082019050919050565b60006020820190508181036000830152613a1b816139df565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613a58601f83612688565b9150613a6382613a22565b602082019050919050565b60006020820190508181036000830152613a8781613a4b565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613ab582613a8e565b613abf8185613a99565b9350613acf818560208601612699565b613ad8816126c3565b840191505092915050565b6000608082019050613af860008301876127c4565b613b0560208301866127c4565b613b12604083018561285a565b8181036060830152613b248184613aaa565b905095945050505050565b600081519050613b3e816125ee565b92915050565b600060208284031215613b5a57613b596125b8565b5b6000613b6884828501613b2f565b91505092915050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000613ba7601883612688565b9150613bb282613b71565b602082019050919050565b60006020820190508181036000830152613bd681613b9a565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613c13601f83612688565b9150613c1e82613bdd565b602082019050919050565b60006020820190508181036000830152613c4281613c06565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ca5602283612688565b9150613cb082613c49565b604082019050919050565b60006020820190508181036000830152613cd481613c98565b9050919050565b613ce4816128d7565b82525050565b600060ff82169050919050565b613d0081613cea565b82525050565b6000608082019050613d1b6000830187613cdb565b613d286020830186613cf7565b613d356040830185613cdb565b613d426060830184613cdb565b9594505050505056fe697066733a2f2f6261666b726569666b706378716d34653362707470346134686d32703332707079776b70726f72696a6d747263356a787174736b63706233677869a2646970667358221220a1f70a941fa39ee3124033bc3ced2110bc3b2888e68ca3dfd709fd8440e57e1a64736f6c63430008110033697066733a2f2f62616679626569636b326e726468356e6d656c796e76636e75666865376e37697365337a7a70686e35747636783464377975686e73636b7a677a792f

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c8063715018a6116100ec578063d8258d951161008a578063e8a3d48511610064578063e8a3d48514610605578063e985e9c514610630578063f2fde38b1461066d578063fd0525bc14610696576101c2565b8063d8258d9514610572578063dc33e6811461059d578063dcefac7f146105da576101c2565b8063a22cb465116100c6578063a22cb465146104cc578063ac446002146104f5578063b88d4fde1461050c578063c87b56dd14610535576101c2565b8063715018a61461045f5780638da5cb5b1461047657806395d89b41146104a1576101c2565b806341f434341161015957806353b3d2ae1161013357806353b3d2ae1461039157806355f804b3146103bc5780636352211e146103e557806370a0823114610422576101c2565b806341f434341461031257806342842e0e1461033d57806345c16a2214610366576101c2565b8063095ea7b311610195578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780633a933b0c146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e9919061261a565b6106bf565b6040516101fb9190612662565b60405180910390f35b34801561021057600080fd5b50610219610751565b604051610226919061270d565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612765565b6107e3565b60405161026391906127d3565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e919061281a565b610862565b005b3480156102a157600080fd5b506102aa6109a6565b6040516102b79190612869565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612884565b6109bd565b005b3480156102f557600080fd5b50610310600480360381019061030b9190612a82565b610cdf565b005b34801561031e57600080fd5b50610327610f6a565b6040516103349190612b78565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190612884565b610f7c565b005b34801561037257600080fd5b5061037b610f9c565b6040516103889190612c0a565b60405180910390f35b34801561039d57600080fd5b506103a6610fda565b6040516103b39190612c44565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de9190612cbf565b610fe2565b005b3480156103f157600080fd5b5061040c60048036038101906104079190612765565b611000565b60405161041991906127d3565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190612d0c565b611012565b6040516104569190612869565b60405180910390f35b34801561046b57600080fd5b506104746110ca565b005b34801561048257600080fd5b5061048b6110de565b60405161049891906127d3565b60405180910390f35b3480156104ad57600080fd5b506104b6611108565b6040516104c3919061270d565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190612d65565b61119a565b005b34801561050157600080fd5b5061050a611311565b005b34801561051857600080fd5b50610533600480360381019061052e9190612da5565b611421565b005b34801561054157600080fd5b5061055c60048036038101906105579190612765565b611494565b604051610569919061270d565b60405180910390f35b34801561057e57600080fd5b50610587611532565b6040516105949190612e45565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf9190612d0c565b611538565b6040516105d19190612869565b60405180910390f35b3480156105e657600080fd5b506105ef61154a565b6040516105fc9190612c44565b60405180910390f35b34801561061157600080fd5b5061061a611552565b604051610627919061270d565b60405180910390f35b34801561063c57600080fd5b5061065760048036038101906106529190612e60565b611572565b6040516106649190612662565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f9190612d0c565b611606565b005b3480156106a257600080fd5b506106bd60048036038101906106b89190612ea0565b611689565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461076090612f52565b80601f016020809104026020016040519081016040528092919081815260200182805461078c90612f52565b80156107d95780601f106107ae576101008083540402835291602001916107d9565b820191906000526020600020905b8154815290600101906020018083116107bc57829003601f168201915b5050505050905090565b60006107ee826118fc565b610824576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086d82611000565b90508073ffffffffffffffffffffffffffffffffffffffff1661088e61195b565b73ffffffffffffffffffffffffffffffffffffffff16146108f1576108ba816108b561195b565b611572565b6108f0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109b0611963565b6001546000540303905090565b60006109c88261196c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a2f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a3b84611a38565b91509150610a518187610a4c61195b565b611a5f565b610a9d57610a6686610a6161195b565b611572565b610a9c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b03576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b108686866001611aa3565b8015610b1b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610be985610bc5888887611aa9565b7c020000000000000000000000000000000000000000000000000000000017611ad1565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c6f5760006001850190506000600460008381526020019081526020016000205403610c6d576000548114610c6c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cd78686866001611afc565b505050505050565b6000610ce9610f9c565b905060016002811115610cff57610cfe612b93565b5b816002811115610d1257610d11612b93565b5b14610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4990612ff5565b60405180910390fd5b6103e861ffff1684610d626109a6565b610d6c9190613044565b1115610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da4906130c4565b60405180910390fd5b8267ffffffffffffffff1684610dc233611538565b610dcc9190613044565b1115610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0490613156565b60405180910390fd5b85610e1a33868686611b02565b14610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e51906131c2565b60405180910390fd5b610e648686611bd1565b610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a9061322e565b60405180910390fd5b600e60008367ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f9061329a565b60405180910390fd5b6001600e60008467ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f623385611c27565b505050505050565b6daaeb6d7670e522a718067333cd4e81565b610f9783838360405180602001604052806000815250611421565b505050565b60006363bc643063ffffffff164210610fb85760029050610fd7565b6363af353063ffffffff164210610fd25760019050610fd7565b600090505b90565b6363af353081565b610fea611c45565b8181600f9182610ffb929190613467565b505050565b600061100b8261196c565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611079576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110d2611c45565b6110dc6000611cc3565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461111790612f52565b80601f016020809104026020016040519081016040528092919081815260200182805461114390612f52565b80156111905780601f1061116557610100808354040283529160200191611190565b820191906000526020600020905b81548152906001019060200180831161117357829003601f168201915b5050505050905090565b6111a261195b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611206576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061121361195b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112c061195b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113059190612662565b60405180910390a35050565b611319611c45565b611321611d89565b60004711611364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135b90613583565b60405180910390fd5b6000600490506000814761137891906135d2565b905060005b8281101561141457600a816004811061139957611398613603565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611400573d6000803e3d6000fd5b50808061140c90613632565b91505061137d565b50505061141f611dd8565b565b61142c8484846109bd565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461148e5761145784848484611de2565b61148d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061149f826118fc565b6114d5576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114df611f32565b905060008151036114ff576040518060200160405280600081525061152a565b8061150984611fc4565b60405160200161151a9291906136b6565b6040516020818303038152906040525b915050919050565b6103e881565b60006115438261201e565b9050919050565b6363bc643081565b6060604051806080016040528060428152602001613d4c60429139905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61160e611c45565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361167d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116749061374c565b60405180910390fd5b61168681611cc3565b50565b6000611693610f9c565b90506002808111156116a8576116a7612b93565b5b8160028111156116bb576116ba612b93565b5b146116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f2906137b8565b60405180910390fd5b6103e861ffff168261170b6109a6565b6117159190613044565b1115611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d906130c4565b60405180910390fd5b600a82111561179a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117919061384a565b60405180910390fd5b846117ad33846103e861ffff1687611b02565b146117ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e4906131c2565b60405180910390fd5b6117f78585611bd1565b611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d9061322e565b60405180910390fd5b600e60008467ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a29061329a565b60405180910390fd5b6001600e60008567ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506118f53383611c27565b5050505050565b600081611907611963565b11158015611916575060005482105b8015611954575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061197b611963565b11611a0157600054811015611a005760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036119fe575b600081036119f45760046000836001900393508381526020019081526020016000205490506119ca565b8092505050611a33565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ac0868684612075565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600080611b0d610f9c565b905060006002811115611b2357611b22612b93565b5b816002811115611b3657611b35612b93565b5b03611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d906137b8565b60405180910390fd5b67a6a38c95e06ea18260c01b8646836002811115611b9757611b96612b93565b5b878988604051602001611bb09796959493929190613935565b60405160208183030381529060405280519060200120915050949350505050565b6000611bdd838361207e565b73ffffffffffffffffffffffffffffffffffffffff167397b5716b3175e3bac5410822d81948536a67bd2073ffffffffffffffffffffffffffffffffffffffff1614905092915050565b611c418282604051806020016040528060008152506120a5565b5050565b611c4d612142565b73ffffffffffffffffffffffffffffffffffffffff16611c6b6110de565b73ffffffffffffffffffffffffffffffffffffffff1614611cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb890613a02565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260095403611dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc590613a6e565b60405180910390fd5b6002600981905550565b6001600981905550565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e0861195b565b8786866040518563ffffffff1660e01b8152600401611e2a9493929190613ae3565b6020604051808303816000875af1925050508015611e6657506040513d601f19601f82011682018060405250810190611e639190613b44565b60015b611edf573d8060008114611e96576040519150601f19603f3d011682016040523d82523d6000602084013e611e9b565b606091505b506000815103611ed7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054611f4190612f52565b80601f0160208091040260200160405190810160405280929190818152602001828054611f6d90612f52565b8015611fba5780601f10611f8f57610100808354040283529160200191611fba565b820191906000526020600020905b815481529060010190602001808311611f9d57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561200a57600183039250600a81066030018353600a81049050611fea565b508181036020830392508083525050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b600080600061208d858561214a565b9150915061209a8161219b565b819250505092915050565b6120af8383612301565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461213d57600080549050600083820390505b6120ef6000868380600101945086611de2565b612125576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120dc57816000541461213a57600080fd5b50505b505050565b600033905090565b600080604183510361218b5760008060006020860151925060408601519150606086015160001a905061217f878285856124bc565b94509450505050612194565b60006002915091505b9250929050565b600060048111156121af576121ae612b93565b5b8160048111156121c2576121c1612b93565b5b03156122fe57600160048111156121dc576121db612b93565b5b8160048111156121ef576121ee612b93565b5b0361222f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222690613bbd565b60405180910390fd5b6002600481111561224357612242612b93565b5b81600481111561225657612255612b93565b5b03612296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228d90613c29565b60405180910390fd5b600360048111156122aa576122a9612b93565b5b8160048111156122bd576122bc612b93565b5b036122fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f490613cbb565b60405180910390fd5b5b50565b60008054905060008203612341576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61234e6000848385611aa3565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123c5836123b66000866000611aa9565b6123bf8561259e565b17611ad1565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461246657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061242b565b50600082036124a1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124b76000848385611afc565b505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156124f7576000600391509150612595565b60006001878787876040516000815260200160405260405161251c9493929190613d06565b6020604051602081039080840390855afa15801561253e573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361258c57600060019250925050612595565b80600092509250505b94509492505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125f7816125c2565b811461260257600080fd5b50565b600081359050612614816125ee565b92915050565b6000602082840312156126305761262f6125b8565b5b600061263e84828501612605565b91505092915050565b60008115159050919050565b61265c81612647565b82525050565b60006020820190506126776000830184612653565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126b757808201518184015260208101905061269c565b60008484015250505050565b6000601f19601f8301169050919050565b60006126df8261267d565b6126e98185612688565b93506126f9818560208601612699565b612702816126c3565b840191505092915050565b6000602082019050818103600083015261272781846126d4565b905092915050565b6000819050919050565b6127428161272f565b811461274d57600080fd5b50565b60008135905061275f81612739565b92915050565b60006020828403121561277b5761277a6125b8565b5b600061278984828501612750565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127bd82612792565b9050919050565b6127cd816127b2565b82525050565b60006020820190506127e860008301846127c4565b92915050565b6127f7816127b2565b811461280257600080fd5b50565b600081359050612814816127ee565b92915050565b60008060408385031215612831576128306125b8565b5b600061283f85828601612805565b925050602061285085828601612750565b9150509250929050565b6128638161272f565b82525050565b600060208201905061287e600083018461285a565b92915050565b60008060006060848603121561289d5761289c6125b8565b5b60006128ab86828701612805565b93505060206128bc86828701612805565b92505060406128cd86828701612750565b9150509250925092565b6000819050919050565b6128ea816128d7565b81146128f557600080fd5b50565b600081359050612907816128e1565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61294f826126c3565b810181811067ffffffffffffffff8211171561296e5761296d612917565b5b80604052505050565b60006129816125ae565b905061298d8282612946565b919050565b600067ffffffffffffffff8211156129ad576129ac612917565b5b6129b6826126c3565b9050602081019050919050565b82818337600083830152505050565b60006129e56129e084612992565b612977565b905082815260208101848484011115612a0157612a00612912565b5b612a0c8482856129c3565b509392505050565b600082601f830112612a2957612a2861290d565b5b8135612a398482602086016129d2565b91505092915050565b600067ffffffffffffffff82169050919050565b612a5f81612a42565b8114612a6a57600080fd5b50565b600081359050612a7c81612a56565b92915050565b600080600080600060a08688031215612a9e57612a9d6125b8565b5b6000612aac888289016128f8565b955050602086013567ffffffffffffffff811115612acd57612acc6125bd565b5b612ad988828901612a14565b9450506040612aea88828901612750565b9350506060612afb88828901612a6d565b9250506080612b0c88828901612a6d565b9150509295509295909350565b6000819050919050565b6000612b3e612b39612b3484612792565b612b19565b612792565b9050919050565b6000612b5082612b23565b9050919050565b6000612b6282612b45565b9050919050565b612b7281612b57565b82525050565b6000602082019050612b8d6000830184612b69565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110612bd357612bd2612b93565b5b50565b6000819050612be482612bc2565b919050565b6000612bf482612bd6565b9050919050565b612c0481612be9565b82525050565b6000602082019050612c1f6000830184612bfb565b92915050565b600063ffffffff82169050919050565b612c3e81612c25565b82525050565b6000602082019050612c596000830184612c35565b92915050565b600080fd5b600080fd5b60008083601f840112612c7f57612c7e61290d565b5b8235905067ffffffffffffffff811115612c9c57612c9b612c5f565b5b602083019150836001820283011115612cb857612cb7612c64565b5b9250929050565b60008060208385031215612cd657612cd56125b8565b5b600083013567ffffffffffffffff811115612cf457612cf36125bd565b5b612d0085828601612c69565b92509250509250929050565b600060208284031215612d2257612d216125b8565b5b6000612d3084828501612805565b91505092915050565b612d4281612647565b8114612d4d57600080fd5b50565b600081359050612d5f81612d39565b92915050565b60008060408385031215612d7c57612d7b6125b8565b5b6000612d8a85828601612805565b9250506020612d9b85828601612d50565b9150509250929050565b60008060008060808587031215612dbf57612dbe6125b8565b5b6000612dcd87828801612805565b9450506020612dde87828801612805565b9350506040612def87828801612750565b925050606085013567ffffffffffffffff811115612e1057612e0f6125bd565b5b612e1c87828801612a14565b91505092959194509250565b600061ffff82169050919050565b612e3f81612e28565b82525050565b6000602082019050612e5a6000830184612e36565b92915050565b60008060408385031215612e7757612e766125b8565b5b6000612e8585828601612805565b9250506020612e9685828601612805565b9150509250929050565b60008060008060808587031215612eba57612eb96125b8565b5b6000612ec8878288016128f8565b945050602085013567ffffffffffffffff811115612ee957612ee86125bd565b5b612ef587828801612a14565b9350506040612f0687828801612a6d565b9250506060612f1787828801612750565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f6a57607f821691505b602082108103612f7d57612f7c612f23565b5b50919050565b7f53504620686f6c6465727320636c61696d20737461676520686173206e6f742060008201527f626567756e207965740000000000000000000000000000000000000000000000602082015250565b6000612fdf602983612688565b9150612fea82612f83565b604082019050919050565b6000602082019050818103600083015261300e81612fd2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061304f8261272f565b915061305a8361272f565b925082820190508082111561307257613071613015565b5b92915050565b7f52656163686564206d617820737570706c790000000000000000000000000000600082015250565b60006130ae601283612688565b91506130b982613078565b602082019050919050565b600060208201905081810360008301526130dd816130a1565b9050919050565b7f457863656564696e6720636c61696d696e67206c696d697420666f722074686960008201527f73206163636f756e740000000000000000000000000000000000000000000000602082015250565b6000613140602983612688565b915061314b826130e4565b604082019050919050565b6000602082019050818103600083015261316f81613133565b9050919050565b7f4861736820636f6d70617269736f6e206661696c656400000000000000000000600082015250565b60006131ac601683612688565b91506131b782613176565b602082019050919050565b600060208201905081810360008301526131db8161319f565b9050919050565b7f446972656374206d696e74696e6720697320646973616c6c6f77656400000000600082015250565b6000613218601c83612688565b9150613223826131e2565b602082019050919050565b600060208201905081810360008301526132478161320b565b9050919050565b7f4861736820697320616c72656164792075736564000000000000000000000000600082015250565b6000613284601483612688565b915061328f8261324e565b602082019050919050565b600060208201905081810360008301526132b381613277565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026133277fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826132ea565b61333186836132ea565b95508019841693508086168417925050509392505050565b600061336461335f61335a8461272f565b612b19565b61272f565b9050919050565b6000819050919050565b61337e83613349565b61339261338a8261336b565b8484546132f7565b825550505050565b600090565b6133a761339a565b6133b2818484613375565b505050565b5b818110156133d6576133cb60008261339f565b6001810190506133b8565b5050565b601f82111561341b576133ec816132c5565b6133f5846132da565b81016020851015613404578190505b613418613410856132da565b8301826133b7565b50505b505050565b600082821c905092915050565b600061343e60001984600802613420565b1980831691505092915050565b6000613457838361342d565b9150826002028217905092915050565b61347183836132ba565b67ffffffffffffffff81111561348a57613489612917565b5b6134948254612f52565b61349f8282856133da565b6000601f8311600181146134ce57600084156134bc578287013590505b6134c6858261344b565b86555061352e565b601f1984166134dc866132c5565b60005b82811015613504578489013582556001820191506020850194506020810190506134df565b86831015613521578489013561351d601f89168261342d565b8355505b6001600288020188555050505b50505050505050565b7f4e6f2066756e6473206f6e2074686520636f6e74726163740000000000000000600082015250565b600061356d601883612688565b915061357882613537565b602082019050919050565b6000602082019050818103600083015261359c81613560565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006135dd8261272f565b91506135e88361272f565b9250826135f8576135f76135a3565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061363d8261272f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361366f5761366e613015565b5b600182019050919050565b600081905092915050565b60006136908261267d565b61369a818561367a565b93506136aa818560208601612699565b80840191505092915050565b60006136c28285613685565b91506136ce8284613685565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613736602683612688565b9150613741826136da565b604082019050919050565b6000602082019050818103600083015261376581613729565b9050919050565b7f53616c65732068617665206e6f7420626567756e207965740000000000000000600082015250565b60006137a2601883612688565b91506137ad8261376c565b602082019050919050565b600060208201905081810360008301526137d181613795565b9050919050565b7f43616e2774206d696e74206d6f7265207468656e20313020746f6b656e73207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b6000613834602e83612688565b915061383f826137d8565b604082019050919050565b6000602082019050818103600083015261386381613827565b9050919050565b60007fffffffffffffffff00000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b6138b16138ac8261386a565b613896565b82525050565b60008160601b9050919050565b60006138cf826138b7565b9050919050565b60006138e1826138c4565b9050919050565b6138f96138f4826127b2565b6138d6565b82525050565b60008160c01b9050919050565b6000613917826138ff565b9050919050565b61392f61392a82612a42565b61390c565b82525050565b6000613941828a6138a0565b60088201915061395182896138e8565b601482019150613961828861391e565b600882019150613971828761391e565b600882019150613981828661391e565b600882019150613991828561391e565b6008820191506139a1828461391e565b60088201915081905098975050505050505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139ec602083612688565b91506139f7826139b6565b602082019050919050565b60006020820190508181036000830152613a1b816139df565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613a58601f83612688565b9150613a6382613a22565b602082019050919050565b60006020820190508181036000830152613a8781613a4b565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613ab582613a8e565b613abf8185613a99565b9350613acf818560208601612699565b613ad8816126c3565b840191505092915050565b6000608082019050613af860008301876127c4565b613b0560208301866127c4565b613b12604083018561285a565b8181036060830152613b248184613aaa565b905095945050505050565b600081519050613b3e816125ee565b92915050565b600060208284031215613b5a57613b596125b8565b5b6000613b6884828501613b2f565b91505092915050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000613ba7601883612688565b9150613bb282613b71565b602082019050919050565b60006020820190508181036000830152613bd681613b9a565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613c13601f83612688565b9150613c1e82613bdd565b602082019050919050565b60006020820190508181036000830152613c4281613c06565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ca5602283612688565b9150613cb082613c49565b604082019050919050565b60006020820190508181036000830152613cd481613c98565b9050919050565b613ce4816128d7565b82525050565b600060ff82169050919050565b613d0081613cea565b82525050565b6000608082019050613d1b6000830187613cdb565b613d286020830186613cf7565b613d356040830185613cdb565b613d426060830184613cdb565b9594505050505056fe697066733a2f2f6261666b726569666b706378716d34653362707470346134686d32703332707079776b70726f72696a6d747263356a787174736b63706233677869a2646970667358221220a1f70a941fa39ee3124033bc3ced2110bc3b2888e68ca3dfd709fd8440e57e1a64736f6c63430008110033

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.