ETH Price: $3,491.50 (+7.56%)
Gas: 7 Gwei

Token

Friendship Cards (LIN)
 

Overview

Max Total Supply

2,100 LIN

Holders

866

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LIN
0x81A9aeDd261b2945b25873c55e808B835f3B02c0
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Lin's Friendship Cards - Designed for friends, Just an experiment.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FogDrop

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-19
*/

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


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

pragma solidity ^0.8.4;



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

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

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

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


pragma solidity >=0.7.0 <0.9.0;

/******************************************************************************************* /
*   ███████████                   ██████████                                               *
* ░░███░░░░░░█                  ░░███░░░░███                                               *
*  ░███   █ ░   ██████   ███████ ░███   ░░███ ████████   ██████  ████████   █████          *
*  ░███████    ███░░███ ███░░███ ░███    ░███░░███░░███ ███░░███░░███░░███ ███░░           *
*  ░███░░░█   ░███ ░███░███ ░███ ░███    ░███ ░███ ░░░ ░███ ░███ ░███ ░███░░█████          *
*  ░███  ░    ░███ ░███░███ ░███ ░███    ███  ░███     ░███ ░███ ░███ ░███ ░░░░███         *
*  █████      ░░██████ ░░███████ ██████████   █████    ░░██████  ░███████  ██████          *
* ░░░░░        ░░░░░░   ░░░░░███░░░░░░░░░░   ░░░░░      ░░░░░░   ░███░░░  ░░░░░░           *
*                       ███ ░███                                 ░███                      *
*                      ░░██████                                  █████                     *
*                       ░░░░░░                                  ░░░░░                      *
******************************************************************************************** /                                                        *
*/

contract FogDrop is ERC721AQueryable, Ownable, ReentrancyGuard {
    string public baseTokenURI = "";

    string public uriSuffix = "";

    bytes32 public merkleRoot;

    uint256 public cost;

    uint256 public maxSupply;

    uint256 public maxMintAmountPerTx;

    uint256 public maxMintAmountPreOwner;

    bool public mintPaused = true;
    bool public whitelistMintEnabled = false;

    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _maxPreTx,
        uint256 _maxSupply,
        uint256 _maxPreOwner,
        uint256 _cost,
        string memory _baseUri
    ) ERC721A(_name, _symbol) {
        maxMintAmountPerTx = _maxPreTx;
        maxMintAmountPreOwner = _maxPreOwner;
        maxSupply = _maxSupply;
        cost = _cost;
        baseTokenURI = _baseUri;
    }

    /**
     * @dev check the conditions are valid
     */
    modifier _check_mint_compliance(uint256 _mintAmount) {
        require(_msgSender().code.length == 0, "invalid addres");
        require(
            _mintAmount > 0 && _mintAmount <= maxMintAmountPerTx,
            "Invalid mint amount!"
        );
        require(
            ownerMintAmount(_msgSender()) + _mintAmount <=
                maxMintAmountPreOwner,
            "mint amount limited"
        );
        require(
            totalSupply() + _mintAmount <= maxSupply,
            "Max supply exceeded!"
        );
        _;
    }

    /**
     * @dev check mint balance
     */
    modifier _check_mint_balance(uint256 _mintAmount) {
        require(msg.value >= cost * _mintAmount, "Insufficient funds!");
        _;
    }

    /**
     * @dev return someone mint amount
     */
    function ownerMintAmount(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    /**
     * @dev whitelist mint NFTs
     */
    function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof)
        public
        payable
        _check_mint_compliance(_mintAmount)
        _check_mint_balance(_mintAmount)
    {
        // Verify whitelist requirements
        require(whitelistMintEnabled, "The whitelist sale is not enabled!");
        require(
            numberWhitelistMinted(_msgSender()) == 0,
            "Address already claimed!"
        );
        bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
        require(
            MerkleProof.verify(_merkleProof, merkleRoot, leaf),
            "Invalid proof!"
        );

        _setAux(_msgSender(), _getAux(_msgSender()) + uint64(_mintAmount));
        _safeMint(_msgSender(), _mintAmount);
    }

    /**
     * @dev public mint for everyone
     */
    function mint(uint256 _mintAmount)
        public
        payable
        _check_mint_compliance(_mintAmount)
        _check_mint_balance(_mintAmount)
    {
        require(!mintPaused, "The contract is paused!");
        _safeMint(_msgSender(), _mintAmount);
    }

    /**
     * @dev The owner mint NFT for the receiver
     */
    function mintTo(uint256 _mintAmount, address _receiver) public onlyOwner {
        require(
            totalSupply() + _mintAmount <= maxSupply,
            "Max supply exceeded!"
        );
        require(ownerMintAmount(_receiver) + _mintAmount <= maxMintAmountPreOwner, "mint amount limited");
        _safeMint(_receiver, _mintAmount);
    }

    /**
     * @dev return whitelist mint amount
     */
    function numberWhitelistMinted(address _owner)
        public
        view
        returns (uint256)
    {
        return _getAux(_owner);
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    /**
     * @dev This will set the price of every single NFT.
     */
    function setCost(uint256 _cost) public onlyOwner {
        cost = _cost;
    }

    /**
     * @dev This will set How many NFT can be mint in single Tx  .
     */
    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx)
        public
        onlyOwner
    {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

    /**
     * @dev This will set How many NFT can a wallet to mint  .
     */
    function setMaxMintAmountPreOwner(uint256 _maxMintAmountPreOwner)
        public
        onlyOwner
    {
        maxMintAmountPreOwner = _maxMintAmountPreOwner;
    }

    /**
     * @dev This will set the base token url when revealed .
     */
    function setBaseTokenURI(string memory _baseUrl) public onlyOwner {
        baseTokenURI = _baseUrl;
    }

    /**
     * @dev This will enable or disable publit mint.if false, it should be public .
     */
    function setPaused(bool _state) public onlyOwner {
        mintPaused = _state;
    }

    /**
     * @dev This will set the merkle tree root of the whitelist .
     */
    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

    /**
     * @dev This will enable or disaple whitelist mint.
     */
    function setWhitelistMintEnabled(bool _state) public onlyOwner {
        whitelistMintEnabled = _state;
    }

    /**
     * @dev This will set uri suffix.
     */
    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    /**
     * @dev This will transfer the remaining contract balance to the owner.
     */
    function withdraw() public onlyOwner nonReentrant {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override(ERC721A)
        returns (string memory)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        string memory baseurl = _baseURI();
        return
            bytes(baseurl).length != 0
                ? string(
                    abi.encodePacked(baseurl, _toString(tokenId), uriSuffix)
                )
                : "";
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_maxPreTx","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxPreOwner","type":"uint256"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"string","name":"_baseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPreOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"numberWhitelistMinted","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":"address","name":"owner","type":"address"}],"name":"ownerMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUrl","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPreOwner","type":"uint256"}],"name":"setMaxMintAmountPreOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b9291906200024a565b5060405180602001604052806000815250600b9080519060200190620000539291906200024a565b506001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055503480156200009757600080fd5b5060405162004c1d38038062004c1d8339818101604052810190620000bd91906200038f565b86868160029080519060200190620000d79291906200024a565b508060039080519060200190620000f09291906200024a565b50620001016200017360201b60201c565b6000819055505050620001296200011d6200017c60201b60201c565b6200018460201b60201c565b600160098190555084600f819055508260108190555083600e8190555081600d8190555080600a9080519060200190620001659291906200024a565b505050505050505062000647565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000258906200053e565b90600052602060002090601f0160209004810192826200027c5760008555620002c8565b82601f106200029757805160ff1916838001178555620002c8565b82800160010185558215620002c8579182015b82811115620002c7578251825591602001919060010190620002aa565b5b509050620002d79190620002db565b5090565b5b80821115620002f6576000816000905550600101620002dc565b5090565b6000620003116200030b84620004c8565b6200049f565b90508281526020810184848401111562000330576200032f6200060d565b5b6200033d84828562000508565b509392505050565b600082601f8301126200035d576200035c62000608565b5b81516200036f848260208601620002fa565b91505092915050565b60008151905062000389816200062d565b92915050565b600080600080600080600060e0888a031215620003b157620003b062000617565b5b600088015167ffffffffffffffff811115620003d257620003d162000612565b5b620003e08a828b0162000345565b975050602088015167ffffffffffffffff81111562000404576200040362000612565b5b620004128a828b0162000345565b9650506040620004258a828b0162000378565b9550506060620004388a828b0162000378565b94505060806200044b8a828b0162000378565b93505060a06200045e8a828b0162000378565b92505060c088015167ffffffffffffffff81111562000482576200048162000612565b5b620004908a828b0162000345565b91505092959891949750929550565b6000620004ab620004be565b9050620004b9828262000574565b919050565b6000604051905090565b600067ffffffffffffffff821115620004e657620004e5620005d9565b5b620004f1826200061c565b9050602081019050919050565b6000819050919050565b60005b83811015620005285780820151818401526020810190506200050b565b8381111562000538576000848401525b50505050565b600060028204905060018216806200055757607f821691505b602082108114156200056e576200056d620005aa565b5b50919050565b6200057f826200061c565b810181811067ffffffffffffffff82111715620005a157620005a0620005d9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200063881620004fe565b81146200064457600080fd5b50565b6145c680620006576000396000f3fe6080604052600436106102675760003560e01c80637cb6475911610144578063b723b34e116100b6578063d12198f61161007a578063d12198f61461090f578063d2cab05614610938578063d547cfb714610954578063d5abeb011461097f578063e985e9c5146109aa578063f2fde38b146109e757610267565b8063b723b34e14610827578063b767a09814610850578063b88d4fde14610879578063c23dc68f14610895578063c87b56dd146108d257610267565b806395d89b411161010857806395d89b411461071457806399a2557a1461073f578063a0712d681461077c578063a22cb46514610798578063b071401b146107c1578063b2bf4ae9146107ea57610267565b80637cb647591461062d5780637e4831d3146106565780638462151c146106815780638da5cb5b146106be57806394354fd0146106e957610267565b80633445cc2c116101dd5780635bbb2177116101a15780635bbb2177146105095780636352211e1461054657806368c616b1146105835780636caede3d146105ae57806370a08231146105d9578063715018a61461061657610267565b80633445cc2c146104455780633ccfd60b1461048257806342842e0e1461049957806344a0d68a146104b55780635503a0e8146104de57610267565b806316ba10e01161022f57806316ba10e01461035857806316c38b3c1461038157806318160ddd146103aa57806323b872dd146103d55780632eb4a7ab146103f157806330176e131461041c57610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b31461031157806313faede61461032d575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613446565b610a10565b6040516102a09190613bdf565b60405180910390f35b3480156102b557600080fd5b506102be610aa2565b6040516102cb9190613c15565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f691906134e9565b610b34565b6040516103089190613b34565b60405180910390f35b61032b6004803603810190610326919061330c565b610bb3565b005b34801561033957600080fd5b50610342610cf7565b60405161034f9190613dd2565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a91906134a0565b610cfd565b005b34801561038d57600080fd5b506103a860048036038101906103a391906133ec565b610d1f565b005b3480156103b657600080fd5b506103bf610d44565b6040516103cc9190613dd2565b60405180910390f35b6103ef60048036038101906103ea91906131f6565b610d5b565b005b3480156103fd57600080fd5b50610406611080565b6040516104139190613bfa565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e91906134a0565b611086565b005b34801561045157600080fd5b5061046c60048036038101906104679190613189565b6110a8565b6040516104799190613dd2565b60405180910390f35b34801561048e57600080fd5b506104976110c4565b005b6104b360048036038101906104ae91906131f6565b61115c565b005b3480156104c157600080fd5b506104dc60048036038101906104d791906134e9565b61117c565b005b3480156104ea57600080fd5b506104f361118e565b6040516105009190613c15565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b919061339f565b61121c565b60405161053d9190613b9b565b60405180910390f35b34801561055257600080fd5b5061056d600480360381019061056891906134e9565b6112df565b60405161057a9190613b34565b60405180910390f35b34801561058f57600080fd5b506105986112f1565b6040516105a59190613dd2565b60405180910390f35b3480156105ba57600080fd5b506105c36112f7565b6040516105d09190613bdf565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb9190613189565b61130a565b60405161060d9190613dd2565b60405180910390f35b34801561062257600080fd5b5061062b6113c3565b005b34801561063957600080fd5b50610654600480360381019061064f9190613419565b6113d7565b005b34801561066257600080fd5b5061066b6113e9565b6040516106789190613bdf565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190613189565b6113fc565b6040516106b59190613bbd565b60405180910390f35b3480156106ca57600080fd5b506106d3611546565b6040516106e09190613b34565b60405180910390f35b3480156106f557600080fd5b506106fe611570565b60405161070b9190613dd2565b60405180910390f35b34801561072057600080fd5b50610729611576565b6040516107369190613c15565b60405180910390f35b34801561074b57600080fd5b506107666004803603810190610761919061334c565b611608565b6040516107739190613bbd565b60405180910390f35b610796600480360381019061079191906134e9565b61181c565b005b3480156107a457600080fd5b506107bf60048036038101906107ba91906132cc565b611a3c565b005b3480156107cd57600080fd5b506107e860048036038101906107e391906134e9565b611b47565b005b3480156107f657600080fd5b50610811600480360381019061080c9190613189565b611b59565b60405161081e9190613dd2565b60405180910390f35b34801561083357600080fd5b5061084e60048036038101906108499190613516565b611b6b565b005b34801561085c57600080fd5b50610877600480360381019061087291906133ec565b611c30565b005b610893600480360381019061088e9190613249565b611c55565b005b3480156108a157600080fd5b506108bc60048036038101906108b791906134e9565b611cc8565b6040516108c99190613db7565b60405180910390f35b3480156108de57600080fd5b506108f960048036038101906108f491906134e9565b611d32565b6040516109069190613c15565b60405180910390f35b34801561091b57600080fd5b50610936600480360381019061093191906134e9565b611dd4565b005b610952600480360381019061094d9190613556565b611de6565b005b34801561096057600080fd5b50610969612144565b6040516109769190613c15565b60405180910390f35b34801561098b57600080fd5b506109946121d2565b6040516109a19190613dd2565b60405180910390f35b3480156109b657600080fd5b506109d160048036038101906109cc91906131b6565b6121d8565b6040516109de9190613bdf565b60405180910390f35b3480156109f357600080fd5b50610a0e6004803603810190610a099190613189565b61226c565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a9b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610ab19061411a565b80601f0160208091040260200160405190810160405280929190818152602001828054610add9061411a565b8015610b2a5780601f10610aff57610100808354040283529160200191610b2a565b820191906000526020600020905b815481529060010190602001808311610b0d57829003601f168201915b5050505050905090565b6000610b3f826122f0565b610b75576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bbe826112df565b90508073ffffffffffffffffffffffffffffffffffffffff16610bdf61234f565b73ffffffffffffffffffffffffffffffffffffffff1614610c4257610c0b81610c0661234f565b6121d8565b610c41576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610d05612357565b80600b9080519060200190610d1b929190612e8d565b5050565b610d27612357565b80601160006101000a81548160ff02191690831515021790555050565b6000610d4e6123d5565b6001546000540303905090565b6000610d66826123de565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dcd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610dd9846124ac565b91509150610def8187610dea61234f565b6124d3565b610e3b57610e0486610dff61234f565b6121d8565b610e3a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ea2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610eaf8686866001612517565b8015610eba57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f8885610f6488888761251d565b7c020000000000000000000000000000000000000000000000000000000017612545565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561101057600060018501905060006004600083815260200190815260200160002054141561100e57600054811461100d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110788686866001612570565b505050505050565b600c5481565b61108e612357565b80600a90805190602001906110a4929190612e8d565b5050565b60006110b382612576565b67ffffffffffffffff169050919050565b6110cc612357565b6110d46125c3565b60006110de611546565b73ffffffffffffffffffffffffffffffffffffffff164760405161110190613b1f565b60006040518083038185875af1925050503d806000811461113e576040519150601f19603f3d011682016040523d82523d6000602084013e611143565b606091505b505090508061115157600080fd5b5061115a612613565b565b61117783838360405180602001604052806000815250611c55565b505050565b611184612357565b80600d8190555050565b600b805461119b9061411a565b80601f01602080910402602001604051908101604052809291908181526020018280546111c79061411a565b80156112145780601f106111e957610100808354040283529160200191611214565b820191906000526020600020905b8154815290600101906020018083116111f757829003601f168201915b505050505081565b6060600083839050905060008167ffffffffffffffff81111561124257611241614277565b5b60405190808252806020026020018201604052801561127b57816020015b611268612f13565b8152602001906001900390816112605790505b50905060005b8281146112d3576112aa86868381811061129e5761129d614248565b5b90506020020135611cc8565b8282815181106112bd576112bc614248565b5b6020026020010181905250806001019050611281565b50809250505092915050565b60006112ea826123de565b9050919050565b60105481565b601160019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611372576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113cb612357565b6113d5600061261d565b565b6113df612357565b80600c8190555050565b601160009054906101000a900460ff1681565b6060600080600061140c8561130a565b905060008167ffffffffffffffff81111561142a57611429614277565b5b6040519080825280602002602001820160405280156114585781602001602082028036833780820191505090505b509050611463612f13565b600061146d6123d5565b90505b83861461153857611480816126e3565b91508160400151156114915761152d565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146114d157816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561152c578083878060010198508151811061151f5761151e614248565b5b6020026020010181815250505b5b806001019050611470565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b6060600380546115859061411a565b80601f01602080910402602001604051908101604052809291908181526020018280546115b19061411a565b80156115fe5780601f106115d3576101008083540402835291602001916115fe565b820191906000526020600020905b8154815290600101906020018083116115e157829003601f168201915b5050505050905090565b6060818310611643576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061164e61270e565b90506116586123d5565b85101561166a576116676123d5565b94505b80841115611676578093505b60006116818761130a565b9050848610156116a457600086860390508181101561169e578091505b506116a9565b600090505b60008167ffffffffffffffff8111156116c5576116c4614277565b5b6040519080825280602002602001820160405280156116f35781602001602082028036833780820191505090505b509050600082141561170b5780945050505050611815565b600061171688611cc8565b90506000816040015161172b57816000015190505b60008990505b8881141580156117415750848714155b156118075761174f816126e3565b9250826040015115611760576117fc565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146117a057826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117fb57808488806001019950815181106117ee576117ed614248565b5b6020026020010181815250505b5b806001019050611731565b508583528296505050505050505b9392505050565b806000611827612717565b73ffffffffffffffffffffffffffffffffffffffff163b1461187e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187590613c77565b60405180910390fd5b6000811180156118905750600f548111155b6118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c690613c97565b60405180910390fd5b601054816118e36118de612717565b611b59565b6118ed9190613f49565b111561192e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192590613cb7565b60405180910390fd5b600e548161193a610d44565b6119449190613f49565b1115611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c90613d37565b60405180910390fd5b8180600d546119949190613fdd565b3410156119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd90613d97565b60405180910390fd5b601160009054906101000a900460ff1615611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d90613cf7565b60405180910390fd5b611a37611a31612717565b8461271f565b505050565b8060076000611a4961234f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611af661234f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b3b9190613bdf565b60405180910390a35050565b611b4f612357565b80600f8190555050565b6000611b648261273d565b9050919050565b611b73612357565b600e5482611b7f610d44565b611b899190613f49565b1115611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc190613d37565b60405180910390fd5b60105482611bd783611b59565b611be19190613f49565b1115611c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1990613cb7565b60405180910390fd5b611c2c818361271f565b5050565b611c38612357565b80601160016101000a81548160ff02191690831515021790555050565b611c60848484610d5b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cc257611c8b84848484612794565b611cc1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611cd0612f13565b611cd8612f13565b611ce06123d5565b831080611cf45750611cf061270e565b8310155b15611d025780915050611d2d565b611d0b836126e3565b9050806040015115611d205780915050611d2d565b611d29836128f4565b9150505b919050565b6060611d3d826122f0565b611d73576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611d7d612914565b9050600081511415611d9e5760405180602001604052806000815250611dcc565b80611da8846129a6565b600b604051602001611dbc93929190613aee565b6040516020818303038152906040525b915050919050565b611ddc612357565b8060108190555050565b826000611df1612717565b73ffffffffffffffffffffffffffffffffffffffff163b14611e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3f90613c77565b60405180910390fd5b600081118015611e5a5750600f548111155b611e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9090613c97565b60405180910390fd5b60105481611ead611ea8612717565b611b59565b611eb79190613f49565b1115611ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eef90613cb7565b60405180910390fd5b600e5481611f04610d44565b611f0e9190613f49565b1115611f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4690613d37565b60405180910390fd5b8380600d54611f5e9190613fdd565b341015611fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9790613d97565b60405180910390fd5b601160019054906101000a900460ff16611fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe690613d57565b60405180910390fd5b6000612001611ffc612717565b6110a8565b14612041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203890613d17565b60405180910390fd5b600061204b612717565b60405160200161205b9190613ad3565b6040516020818303038152906040528051906020012090506120c1858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c54836129ff565b612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f790613c37565b60405180910390fd5b61212b61210b612717565b8761211c612117612717565b612576565b6121269190613f9f565b612a16565b61213c612136612717565b8761271f565b505050505050565b600a80546121519061411a565b80601f016020809104026020016040519081016040528092919081815260200182805461217d9061411a565b80156121ca5780601f1061219f576101008083540402835291602001916121ca565b820191906000526020600020905b8154815290600101906020018083116121ad57829003601f168201915b505050505081565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612274612357565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122db90613c57565b60405180910390fd5b6122ed8161261d565b50565b6000816122fb6123d5565b1115801561230a575060005482105b8015612348575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b61235f612717565b73ffffffffffffffffffffffffffffffffffffffff1661237d611546565b73ffffffffffffffffffffffffffffffffffffffff16146123d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ca90613cd7565b60405180910390fd5b565b60006001905090565b600080829050806123ed6123d5565b11612475576000548110156124745760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612472575b600081141561246857600460008360019003935083815260200190815260200160002054905061243d565b80925050506124a7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612534868684612acc565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600060c0600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c9050919050565b60026009541415612609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260090613d77565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126eb612f13565b6127076004600084815260200190815260200160002054612ad5565b9050919050565b60008054905090565b600033905090565b612739828260405180602001604052806000815250612b8b565b5050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127ba61234f565b8786866040518563ffffffff1660e01b81526004016127dc9493929190613b4f565b602060405180830381600087803b1580156127f657600080fd5b505af192505050801561282757506040513d601f19601f820116820180604052508101906128249190613473565b60015b6128a1573d8060008114612857576040519150601f19603f3d011682016040523d82523d6000602084013e61285c565b606091505b50600081511415612899576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6128fc612f13565b61290d612908836123de565b612ad5565b9050919050565b6060600a80546129239061411a565b80601f016020809104026020016040519081016040528092919081815260200182805461294f9061411a565b801561299c5780601f106129715761010080835404028352916020019161299c565b820191906000526020600020905b81548152906001019060200180831161297f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156129ea57600184039350600a81066030018453600a81049050806129e5576129ea565b6129bf565b50828103602084039350808452505050919050565b600082612a0c8584612c28565b1490509392505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600082905060c081901b77ffffffffffffffffffffffffffffffffffffffffffffffff831617915081600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b60009392505050565b612add612f13565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b612b958383612c7e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612c2357600080549050600083820390505b612bd56000868380600101945086612794565b612c0b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612bc2578160005414612c2057600080fd5b50505b505050565b60008082905060005b8451811015612c7357612c5e82868381518110612c5157612c50614248565b5b6020026020010151612e3b565b91508080612c6b9061417d565b915050612c31565b508091505092915050565b6000805490506000821415612cbf576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ccc6000848385612517565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612d4383612d34600086600061251d565b612d3d85612e66565b17612545565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612de457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612da9565b506000821415612e20576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612e366000848385612570565b505050565b6000818310612e5357612e4e8284612e76565b612e5e565b612e5d8383612e76565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612e999061411a565b90600052602060002090601f016020900481019282612ebb5760008555612f02565b82601f10612ed457805160ff1916838001178555612f02565b82800160010185558215612f02579182015b82811115612f01578251825591602001919060010190612ee6565b5b509050612f0f9190612f62565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612f7b576000816000905550600101612f63565b5090565b6000612f92612f8d84613e12565b613ded565b905082815260208101848484011115612fae57612fad6142b5565b5b612fb98482856140d8565b509392505050565b6000612fd4612fcf84613e43565b613ded565b905082815260208101848484011115612ff057612fef6142b5565b5b612ffb8482856140d8565b509392505050565b6000813590506130128161451d565b92915050565b60008083601f84011261302e5761302d6142ab565b5b8235905067ffffffffffffffff81111561304b5761304a6142a6565b5b602083019150836020820283011115613067576130666142b0565b5b9250929050565b60008083601f840112613084576130836142ab565b5b8235905067ffffffffffffffff8111156130a1576130a06142a6565b5b6020830191508360208202830111156130bd576130bc6142b0565b5b9250929050565b6000813590506130d381614534565b92915050565b6000813590506130e88161454b565b92915050565b6000813590506130fd81614562565b92915050565b60008151905061311281614562565b92915050565b600082601f83011261312d5761312c6142ab565b5b813561313d848260208601612f7f565b91505092915050565b600082601f83011261315b5761315a6142ab565b5b813561316b848260208601612fc1565b91505092915050565b60008135905061318381614579565b92915050565b60006020828403121561319f5761319e6142bf565b5b60006131ad84828501613003565b91505092915050565b600080604083850312156131cd576131cc6142bf565b5b60006131db85828601613003565b92505060206131ec85828601613003565b9150509250929050565b60008060006060848603121561320f5761320e6142bf565b5b600061321d86828701613003565b935050602061322e86828701613003565b925050604061323f86828701613174565b9150509250925092565b60008060008060808587031215613263576132626142bf565b5b600061327187828801613003565b945050602061328287828801613003565b935050604061329387828801613174565b925050606085013567ffffffffffffffff8111156132b4576132b36142ba565b5b6132c087828801613118565b91505092959194509250565b600080604083850312156132e3576132e26142bf565b5b60006132f185828601613003565b9250506020613302858286016130c4565b9150509250929050565b60008060408385031215613323576133226142bf565b5b600061333185828601613003565b925050602061334285828601613174565b9150509250929050565b600080600060608486031215613365576133646142bf565b5b600061337386828701613003565b935050602061338486828701613174565b925050604061339586828701613174565b9150509250925092565b600080602083850312156133b6576133b56142bf565b5b600083013567ffffffffffffffff8111156133d4576133d36142ba565b5b6133e08582860161306e565b92509250509250929050565b600060208284031215613402576134016142bf565b5b6000613410848285016130c4565b91505092915050565b60006020828403121561342f5761342e6142bf565b5b600061343d848285016130d9565b91505092915050565b60006020828403121561345c5761345b6142bf565b5b600061346a848285016130ee565b91505092915050565b600060208284031215613489576134886142bf565b5b600061349784828501613103565b91505092915050565b6000602082840312156134b6576134b56142bf565b5b600082013567ffffffffffffffff8111156134d4576134d36142ba565b5b6134e084828501613146565b91505092915050565b6000602082840312156134ff576134fe6142bf565b5b600061350d84828501613174565b91505092915050565b6000806040838503121561352d5761352c6142bf565b5b600061353b85828601613174565b925050602061354c85828601613003565b9150509250929050565b60008060006040848603121561356f5761356e6142bf565b5b600061357d86828701613174565b935050602084013567ffffffffffffffff81111561359e5761359d6142ba565b5b6135aa86828701613018565b92509250509250925092565b60006135c283836139ed565b60808301905092915050565b60006135da8383613aa6565b60208301905092915050565b6135ef81614037565b82525050565b6135fe81614037565b82525050565b61361561361082614037565b6141c6565b82525050565b600061362682613ea9565b6136308185613eef565b935061363b83613e74565b8060005b8381101561366c57815161365388826135b6565b975061365e83613ed5565b92505060018101905061363f565b5085935050505092915050565b600061368482613eb4565b61368e8185613f00565b935061369983613e84565b8060005b838110156136ca5781516136b188826135ce565b97506136bc83613ee2565b92505060018101905061369d565b5085935050505092915050565b6136e081614049565b82525050565b6136ef81614049565b82525050565b6136fe81614055565b82525050565b600061370f82613ebf565b6137198185613f11565b93506137298185602086016140e7565b613732816142c4565b840191505092915050565b600061374882613eca565b6137528185613f2d565b93506137628185602086016140e7565b61376b816142c4565b840191505092915050565b600061378182613eca565b61378b8185613f3e565b935061379b8185602086016140e7565b80840191505092915050565b600081546137b48161411a565b6137be8186613f3e565b945060018216600081146137d957600181146137ea5761381d565b60ff1983168652818601935061381d565b6137f385613e94565b60005b83811015613815578154818901526001820191506020810190506137f6565b838801955050505b50505092915050565b6000613833600e83613f2d565b915061383e826142e2565b602082019050919050565b6000613856602683613f2d565b91506138618261430b565b604082019050919050565b6000613879600e83613f2d565b91506138848261435a565b602082019050919050565b600061389c601483613f2d565b91506138a782614383565b602082019050919050565b60006138bf601383613f2d565b91506138ca826143ac565b602082019050919050565b60006138e2602083613f2d565b91506138ed826143d5565b602082019050919050565b6000613905601783613f2d565b9150613910826143fe565b602082019050919050565b6000613928601883613f2d565b915061393382614427565b602082019050919050565b600061394b600083613f22565b915061395682614450565b600082019050919050565b600061396e601483613f2d565b915061397982614453565b602082019050919050565b6000613991602283613f2d565b915061399c8261447c565b604082019050919050565b60006139b4601f83613f2d565b91506139bf826144cb565b602082019050919050565b60006139d7601383613f2d565b91506139e2826144f4565b602082019050919050565b608082016000820151613a0360008501826135e6565b506020820151613a166020850182613ac4565b506040820151613a2960408501826136d7565b506060820151613a3c6060850182613a97565b50505050565b608082016000820151613a5860008501826135e6565b506020820151613a6b6020850182613ac4565b506040820151613a7e60408501826136d7565b506060820151613a916060850182613a97565b50505050565b613aa0816140ab565b82525050565b613aaf816140ba565b82525050565b613abe816140ba565b82525050565b613acd816140c4565b82525050565b6000613adf8284613604565b60148201915081905092915050565b6000613afa8286613776565b9150613b068285613776565b9150613b1282846137a7565b9150819050949350505050565b6000613b2a8261393e565b9150819050919050565b6000602082019050613b4960008301846135f5565b92915050565b6000608082019050613b6460008301876135f5565b613b7160208301866135f5565b613b7e6040830185613ab5565b8181036060830152613b908184613704565b905095945050505050565b60006020820190508181036000830152613bb5818461361b565b905092915050565b60006020820190508181036000830152613bd78184613679565b905092915050565b6000602082019050613bf460008301846136e6565b92915050565b6000602082019050613c0f60008301846136f5565b92915050565b60006020820190508181036000830152613c2f818461373d565b905092915050565b60006020820190508181036000830152613c5081613826565b9050919050565b60006020820190508181036000830152613c7081613849565b9050919050565b60006020820190508181036000830152613c908161386c565b9050919050565b60006020820190508181036000830152613cb08161388f565b9050919050565b60006020820190508181036000830152613cd0816138b2565b9050919050565b60006020820190508181036000830152613cf0816138d5565b9050919050565b60006020820190508181036000830152613d10816138f8565b9050919050565b60006020820190508181036000830152613d308161391b565b9050919050565b60006020820190508181036000830152613d5081613961565b9050919050565b60006020820190508181036000830152613d7081613984565b9050919050565b60006020820190508181036000830152613d90816139a7565b9050919050565b60006020820190508181036000830152613db0816139ca565b9050919050565b6000608082019050613dcc6000830184613a42565b92915050565b6000602082019050613de76000830184613ab5565b92915050565b6000613df7613e08565b9050613e03828261414c565b919050565b6000604051905090565b600067ffffffffffffffff821115613e2d57613e2c614277565b5b613e36826142c4565b9050602081019050919050565b600067ffffffffffffffff821115613e5e57613e5d614277565b5b613e67826142c4565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f54826140ba565b9150613f5f836140ba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f9457613f936141ea565b5b828201905092915050565b6000613faa826140c4565b9150613fb5836140c4565b92508267ffffffffffffffff03821115613fd257613fd16141ea565b5b828201905092915050565b6000613fe8826140ba565b9150613ff3836140ba565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561402c5761402b6141ea565b5b828202905092915050565b60006140428261408b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156141055780820151818401526020810190506140ea565b83811115614114576000848401525b50505050565b6000600282049050600182168061413257607f821691505b6020821081141561414657614145614219565b5b50919050565b614155826142c4565b810181811067ffffffffffffffff8211171561417457614173614277565b5b80604052505050565b6000614188826140ba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141bb576141ba6141ea565b5b600182019050919050565b60006141d1826141d8565b9050919050565b60006141e3826142d5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f696e76616c696420616464726573000000000000000000000000000000000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f6d696e7420616d6f756e74206c696d6974656400000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61452681614037565b811461453157600080fd5b50565b61453d81614049565b811461454857600080fd5b50565b61455481614055565b811461455f57600080fd5b50565b61456b8161405f565b811461457657600080fd5b50565b614582816140ba565b811461458d57600080fd5b5056fea264697066735822122053e7275599c3f07e03b40101bb6ae15571099698584f254ab10c546044b6a60664736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000834000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000010467269656e64736869702043617264730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c494e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656966636b78626168767761653735347772646c32327a696667667570636c35666a7777716336766f79766d3778667762336f61736d2f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c80637cb6475911610144578063b723b34e116100b6578063d12198f61161007a578063d12198f61461090f578063d2cab05614610938578063d547cfb714610954578063d5abeb011461097f578063e985e9c5146109aa578063f2fde38b146109e757610267565b8063b723b34e14610827578063b767a09814610850578063b88d4fde14610879578063c23dc68f14610895578063c87b56dd146108d257610267565b806395d89b411161010857806395d89b411461071457806399a2557a1461073f578063a0712d681461077c578063a22cb46514610798578063b071401b146107c1578063b2bf4ae9146107ea57610267565b80637cb647591461062d5780637e4831d3146106565780638462151c146106815780638da5cb5b146106be57806394354fd0146106e957610267565b80633445cc2c116101dd5780635bbb2177116101a15780635bbb2177146105095780636352211e1461054657806368c616b1146105835780636caede3d146105ae57806370a08231146105d9578063715018a61461061657610267565b80633445cc2c146104455780633ccfd60b1461048257806342842e0e1461049957806344a0d68a146104b55780635503a0e8146104de57610267565b806316ba10e01161022f57806316ba10e01461035857806316c38b3c1461038157806318160ddd146103aa57806323b872dd146103d55780632eb4a7ab146103f157806330176e131461041c57610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b31461031157806313faede61461032d575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613446565b610a10565b6040516102a09190613bdf565b60405180910390f35b3480156102b557600080fd5b506102be610aa2565b6040516102cb9190613c15565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f691906134e9565b610b34565b6040516103089190613b34565b60405180910390f35b61032b6004803603810190610326919061330c565b610bb3565b005b34801561033957600080fd5b50610342610cf7565b60405161034f9190613dd2565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a91906134a0565b610cfd565b005b34801561038d57600080fd5b506103a860048036038101906103a391906133ec565b610d1f565b005b3480156103b657600080fd5b506103bf610d44565b6040516103cc9190613dd2565b60405180910390f35b6103ef60048036038101906103ea91906131f6565b610d5b565b005b3480156103fd57600080fd5b50610406611080565b6040516104139190613bfa565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e91906134a0565b611086565b005b34801561045157600080fd5b5061046c60048036038101906104679190613189565b6110a8565b6040516104799190613dd2565b60405180910390f35b34801561048e57600080fd5b506104976110c4565b005b6104b360048036038101906104ae91906131f6565b61115c565b005b3480156104c157600080fd5b506104dc60048036038101906104d791906134e9565b61117c565b005b3480156104ea57600080fd5b506104f361118e565b6040516105009190613c15565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b919061339f565b61121c565b60405161053d9190613b9b565b60405180910390f35b34801561055257600080fd5b5061056d600480360381019061056891906134e9565b6112df565b60405161057a9190613b34565b60405180910390f35b34801561058f57600080fd5b506105986112f1565b6040516105a59190613dd2565b60405180910390f35b3480156105ba57600080fd5b506105c36112f7565b6040516105d09190613bdf565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb9190613189565b61130a565b60405161060d9190613dd2565b60405180910390f35b34801561062257600080fd5b5061062b6113c3565b005b34801561063957600080fd5b50610654600480360381019061064f9190613419565b6113d7565b005b34801561066257600080fd5b5061066b6113e9565b6040516106789190613bdf565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190613189565b6113fc565b6040516106b59190613bbd565b60405180910390f35b3480156106ca57600080fd5b506106d3611546565b6040516106e09190613b34565b60405180910390f35b3480156106f557600080fd5b506106fe611570565b60405161070b9190613dd2565b60405180910390f35b34801561072057600080fd5b50610729611576565b6040516107369190613c15565b60405180910390f35b34801561074b57600080fd5b506107666004803603810190610761919061334c565b611608565b6040516107739190613bbd565b60405180910390f35b610796600480360381019061079191906134e9565b61181c565b005b3480156107a457600080fd5b506107bf60048036038101906107ba91906132cc565b611a3c565b005b3480156107cd57600080fd5b506107e860048036038101906107e391906134e9565b611b47565b005b3480156107f657600080fd5b50610811600480360381019061080c9190613189565b611b59565b60405161081e9190613dd2565b60405180910390f35b34801561083357600080fd5b5061084e60048036038101906108499190613516565b611b6b565b005b34801561085c57600080fd5b50610877600480360381019061087291906133ec565b611c30565b005b610893600480360381019061088e9190613249565b611c55565b005b3480156108a157600080fd5b506108bc60048036038101906108b791906134e9565b611cc8565b6040516108c99190613db7565b60405180910390f35b3480156108de57600080fd5b506108f960048036038101906108f491906134e9565b611d32565b6040516109069190613c15565b60405180910390f35b34801561091b57600080fd5b50610936600480360381019061093191906134e9565b611dd4565b005b610952600480360381019061094d9190613556565b611de6565b005b34801561096057600080fd5b50610969612144565b6040516109769190613c15565b60405180910390f35b34801561098b57600080fd5b506109946121d2565b6040516109a19190613dd2565b60405180910390f35b3480156109b657600080fd5b506109d160048036038101906109cc91906131b6565b6121d8565b6040516109de9190613bdf565b60405180910390f35b3480156109f357600080fd5b50610a0e6004803603810190610a099190613189565b61226c565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a9b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610ab19061411a565b80601f0160208091040260200160405190810160405280929190818152602001828054610add9061411a565b8015610b2a5780601f10610aff57610100808354040283529160200191610b2a565b820191906000526020600020905b815481529060010190602001808311610b0d57829003601f168201915b5050505050905090565b6000610b3f826122f0565b610b75576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bbe826112df565b90508073ffffffffffffffffffffffffffffffffffffffff16610bdf61234f565b73ffffffffffffffffffffffffffffffffffffffff1614610c4257610c0b81610c0661234f565b6121d8565b610c41576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610d05612357565b80600b9080519060200190610d1b929190612e8d565b5050565b610d27612357565b80601160006101000a81548160ff02191690831515021790555050565b6000610d4e6123d5565b6001546000540303905090565b6000610d66826123de565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dcd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610dd9846124ac565b91509150610def8187610dea61234f565b6124d3565b610e3b57610e0486610dff61234f565b6121d8565b610e3a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ea2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610eaf8686866001612517565b8015610eba57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f8885610f6488888761251d565b7c020000000000000000000000000000000000000000000000000000000017612545565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561101057600060018501905060006004600083815260200190815260200160002054141561100e57600054811461100d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110788686866001612570565b505050505050565b600c5481565b61108e612357565b80600a90805190602001906110a4929190612e8d565b5050565b60006110b382612576565b67ffffffffffffffff169050919050565b6110cc612357565b6110d46125c3565b60006110de611546565b73ffffffffffffffffffffffffffffffffffffffff164760405161110190613b1f565b60006040518083038185875af1925050503d806000811461113e576040519150601f19603f3d011682016040523d82523d6000602084013e611143565b606091505b505090508061115157600080fd5b5061115a612613565b565b61117783838360405180602001604052806000815250611c55565b505050565b611184612357565b80600d8190555050565b600b805461119b9061411a565b80601f01602080910402602001604051908101604052809291908181526020018280546111c79061411a565b80156112145780601f106111e957610100808354040283529160200191611214565b820191906000526020600020905b8154815290600101906020018083116111f757829003601f168201915b505050505081565b6060600083839050905060008167ffffffffffffffff81111561124257611241614277565b5b60405190808252806020026020018201604052801561127b57816020015b611268612f13565b8152602001906001900390816112605790505b50905060005b8281146112d3576112aa86868381811061129e5761129d614248565b5b90506020020135611cc8565b8282815181106112bd576112bc614248565b5b6020026020010181905250806001019050611281565b50809250505092915050565b60006112ea826123de565b9050919050565b60105481565b601160019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611372576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113cb612357565b6113d5600061261d565b565b6113df612357565b80600c8190555050565b601160009054906101000a900460ff1681565b6060600080600061140c8561130a565b905060008167ffffffffffffffff81111561142a57611429614277565b5b6040519080825280602002602001820160405280156114585781602001602082028036833780820191505090505b509050611463612f13565b600061146d6123d5565b90505b83861461153857611480816126e3565b91508160400151156114915761152d565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146114d157816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561152c578083878060010198508151811061151f5761151e614248565b5b6020026020010181815250505b5b806001019050611470565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b6060600380546115859061411a565b80601f01602080910402602001604051908101604052809291908181526020018280546115b19061411a565b80156115fe5780601f106115d3576101008083540402835291602001916115fe565b820191906000526020600020905b8154815290600101906020018083116115e157829003601f168201915b5050505050905090565b6060818310611643576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061164e61270e565b90506116586123d5565b85101561166a576116676123d5565b94505b80841115611676578093505b60006116818761130a565b9050848610156116a457600086860390508181101561169e578091505b506116a9565b600090505b60008167ffffffffffffffff8111156116c5576116c4614277565b5b6040519080825280602002602001820160405280156116f35781602001602082028036833780820191505090505b509050600082141561170b5780945050505050611815565b600061171688611cc8565b90506000816040015161172b57816000015190505b60008990505b8881141580156117415750848714155b156118075761174f816126e3565b9250826040015115611760576117fc565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146117a057826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117fb57808488806001019950815181106117ee576117ed614248565b5b6020026020010181815250505b5b806001019050611731565b508583528296505050505050505b9392505050565b806000611827612717565b73ffffffffffffffffffffffffffffffffffffffff163b1461187e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187590613c77565b60405180910390fd5b6000811180156118905750600f548111155b6118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c690613c97565b60405180910390fd5b601054816118e36118de612717565b611b59565b6118ed9190613f49565b111561192e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192590613cb7565b60405180910390fd5b600e548161193a610d44565b6119449190613f49565b1115611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c90613d37565b60405180910390fd5b8180600d546119949190613fdd565b3410156119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd90613d97565b60405180910390fd5b601160009054906101000a900460ff1615611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d90613cf7565b60405180910390fd5b611a37611a31612717565b8461271f565b505050565b8060076000611a4961234f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611af661234f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b3b9190613bdf565b60405180910390a35050565b611b4f612357565b80600f8190555050565b6000611b648261273d565b9050919050565b611b73612357565b600e5482611b7f610d44565b611b899190613f49565b1115611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc190613d37565b60405180910390fd5b60105482611bd783611b59565b611be19190613f49565b1115611c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1990613cb7565b60405180910390fd5b611c2c818361271f565b5050565b611c38612357565b80601160016101000a81548160ff02191690831515021790555050565b611c60848484610d5b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cc257611c8b84848484612794565b611cc1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611cd0612f13565b611cd8612f13565b611ce06123d5565b831080611cf45750611cf061270e565b8310155b15611d025780915050611d2d565b611d0b836126e3565b9050806040015115611d205780915050611d2d565b611d29836128f4565b9150505b919050565b6060611d3d826122f0565b611d73576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611d7d612914565b9050600081511415611d9e5760405180602001604052806000815250611dcc565b80611da8846129a6565b600b604051602001611dbc93929190613aee565b6040516020818303038152906040525b915050919050565b611ddc612357565b8060108190555050565b826000611df1612717565b73ffffffffffffffffffffffffffffffffffffffff163b14611e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3f90613c77565b60405180910390fd5b600081118015611e5a5750600f548111155b611e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9090613c97565b60405180910390fd5b60105481611ead611ea8612717565b611b59565b611eb79190613f49565b1115611ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eef90613cb7565b60405180910390fd5b600e5481611f04610d44565b611f0e9190613f49565b1115611f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4690613d37565b60405180910390fd5b8380600d54611f5e9190613fdd565b341015611fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9790613d97565b60405180910390fd5b601160019054906101000a900460ff16611fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe690613d57565b60405180910390fd5b6000612001611ffc612717565b6110a8565b14612041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203890613d17565b60405180910390fd5b600061204b612717565b60405160200161205b9190613ad3565b6040516020818303038152906040528051906020012090506120c1858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c54836129ff565b612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f790613c37565b60405180910390fd5b61212b61210b612717565b8761211c612117612717565b612576565b6121269190613f9f565b612a16565b61213c612136612717565b8761271f565b505050505050565b600a80546121519061411a565b80601f016020809104026020016040519081016040528092919081815260200182805461217d9061411a565b80156121ca5780601f1061219f576101008083540402835291602001916121ca565b820191906000526020600020905b8154815290600101906020018083116121ad57829003601f168201915b505050505081565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612274612357565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122db90613c57565b60405180910390fd5b6122ed8161261d565b50565b6000816122fb6123d5565b1115801561230a575060005482105b8015612348575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b61235f612717565b73ffffffffffffffffffffffffffffffffffffffff1661237d611546565b73ffffffffffffffffffffffffffffffffffffffff16146123d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ca90613cd7565b60405180910390fd5b565b60006001905090565b600080829050806123ed6123d5565b11612475576000548110156124745760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612472575b600081141561246857600460008360019003935083815260200190815260200160002054905061243d565b80925050506124a7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612534868684612acc565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600060c0600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c9050919050565b60026009541415612609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260090613d77565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126eb612f13565b6127076004600084815260200190815260200160002054612ad5565b9050919050565b60008054905090565b600033905090565b612739828260405180602001604052806000815250612b8b565b5050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127ba61234f565b8786866040518563ffffffff1660e01b81526004016127dc9493929190613b4f565b602060405180830381600087803b1580156127f657600080fd5b505af192505050801561282757506040513d601f19601f820116820180604052508101906128249190613473565b60015b6128a1573d8060008114612857576040519150601f19603f3d011682016040523d82523d6000602084013e61285c565b606091505b50600081511415612899576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6128fc612f13565b61290d612908836123de565b612ad5565b9050919050565b6060600a80546129239061411a565b80601f016020809104026020016040519081016040528092919081815260200182805461294f9061411a565b801561299c5780601f106129715761010080835404028352916020019161299c565b820191906000526020600020905b81548152906001019060200180831161297f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156129ea57600184039350600a81066030018453600a81049050806129e5576129ea565b6129bf565b50828103602084039350808452505050919050565b600082612a0c8584612c28565b1490509392505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600082905060c081901b77ffffffffffffffffffffffffffffffffffffffffffffffff831617915081600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b60009392505050565b612add612f13565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b612b958383612c7e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612c2357600080549050600083820390505b612bd56000868380600101945086612794565b612c0b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612bc2578160005414612c2057600080fd5b50505b505050565b60008082905060005b8451811015612c7357612c5e82868381518110612c5157612c50614248565b5b6020026020010151612e3b565b91508080612c6b9061417d565b915050612c31565b508091505092915050565b6000805490506000821415612cbf576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ccc6000848385612517565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612d4383612d34600086600061251d565b612d3d85612e66565b17612545565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612de457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612da9565b506000821415612e20576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612e366000848385612570565b505050565b6000818310612e5357612e4e8284612e76565b612e5e565b612e5d8383612e76565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612e999061411a565b90600052602060002090601f016020900481019282612ebb5760008555612f02565b82601f10612ed457805160ff1916838001178555612f02565b82800160010185558215612f02579182015b82811115612f01578251825591602001919060010190612ee6565b5b509050612f0f9190612f62565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612f7b576000816000905550600101612f63565b5090565b6000612f92612f8d84613e12565b613ded565b905082815260208101848484011115612fae57612fad6142b5565b5b612fb98482856140d8565b509392505050565b6000612fd4612fcf84613e43565b613ded565b905082815260208101848484011115612ff057612fef6142b5565b5b612ffb8482856140d8565b509392505050565b6000813590506130128161451d565b92915050565b60008083601f84011261302e5761302d6142ab565b5b8235905067ffffffffffffffff81111561304b5761304a6142a6565b5b602083019150836020820283011115613067576130666142b0565b5b9250929050565b60008083601f840112613084576130836142ab565b5b8235905067ffffffffffffffff8111156130a1576130a06142a6565b5b6020830191508360208202830111156130bd576130bc6142b0565b5b9250929050565b6000813590506130d381614534565b92915050565b6000813590506130e88161454b565b92915050565b6000813590506130fd81614562565b92915050565b60008151905061311281614562565b92915050565b600082601f83011261312d5761312c6142ab565b5b813561313d848260208601612f7f565b91505092915050565b600082601f83011261315b5761315a6142ab565b5b813561316b848260208601612fc1565b91505092915050565b60008135905061318381614579565b92915050565b60006020828403121561319f5761319e6142bf565b5b60006131ad84828501613003565b91505092915050565b600080604083850312156131cd576131cc6142bf565b5b60006131db85828601613003565b92505060206131ec85828601613003565b9150509250929050565b60008060006060848603121561320f5761320e6142bf565b5b600061321d86828701613003565b935050602061322e86828701613003565b925050604061323f86828701613174565b9150509250925092565b60008060008060808587031215613263576132626142bf565b5b600061327187828801613003565b945050602061328287828801613003565b935050604061329387828801613174565b925050606085013567ffffffffffffffff8111156132b4576132b36142ba565b5b6132c087828801613118565b91505092959194509250565b600080604083850312156132e3576132e26142bf565b5b60006132f185828601613003565b9250506020613302858286016130c4565b9150509250929050565b60008060408385031215613323576133226142bf565b5b600061333185828601613003565b925050602061334285828601613174565b9150509250929050565b600080600060608486031215613365576133646142bf565b5b600061337386828701613003565b935050602061338486828701613174565b925050604061339586828701613174565b9150509250925092565b600080602083850312156133b6576133b56142bf565b5b600083013567ffffffffffffffff8111156133d4576133d36142ba565b5b6133e08582860161306e565b92509250509250929050565b600060208284031215613402576134016142bf565b5b6000613410848285016130c4565b91505092915050565b60006020828403121561342f5761342e6142bf565b5b600061343d848285016130d9565b91505092915050565b60006020828403121561345c5761345b6142bf565b5b600061346a848285016130ee565b91505092915050565b600060208284031215613489576134886142bf565b5b600061349784828501613103565b91505092915050565b6000602082840312156134b6576134b56142bf565b5b600082013567ffffffffffffffff8111156134d4576134d36142ba565b5b6134e084828501613146565b91505092915050565b6000602082840312156134ff576134fe6142bf565b5b600061350d84828501613174565b91505092915050565b6000806040838503121561352d5761352c6142bf565b5b600061353b85828601613174565b925050602061354c85828601613003565b9150509250929050565b60008060006040848603121561356f5761356e6142bf565b5b600061357d86828701613174565b935050602084013567ffffffffffffffff81111561359e5761359d6142ba565b5b6135aa86828701613018565b92509250509250925092565b60006135c283836139ed565b60808301905092915050565b60006135da8383613aa6565b60208301905092915050565b6135ef81614037565b82525050565b6135fe81614037565b82525050565b61361561361082614037565b6141c6565b82525050565b600061362682613ea9565b6136308185613eef565b935061363b83613e74565b8060005b8381101561366c57815161365388826135b6565b975061365e83613ed5565b92505060018101905061363f565b5085935050505092915050565b600061368482613eb4565b61368e8185613f00565b935061369983613e84565b8060005b838110156136ca5781516136b188826135ce565b97506136bc83613ee2565b92505060018101905061369d565b5085935050505092915050565b6136e081614049565b82525050565b6136ef81614049565b82525050565b6136fe81614055565b82525050565b600061370f82613ebf565b6137198185613f11565b93506137298185602086016140e7565b613732816142c4565b840191505092915050565b600061374882613eca565b6137528185613f2d565b93506137628185602086016140e7565b61376b816142c4565b840191505092915050565b600061378182613eca565b61378b8185613f3e565b935061379b8185602086016140e7565b80840191505092915050565b600081546137b48161411a565b6137be8186613f3e565b945060018216600081146137d957600181146137ea5761381d565b60ff1983168652818601935061381d565b6137f385613e94565b60005b83811015613815578154818901526001820191506020810190506137f6565b838801955050505b50505092915050565b6000613833600e83613f2d565b915061383e826142e2565b602082019050919050565b6000613856602683613f2d565b91506138618261430b565b604082019050919050565b6000613879600e83613f2d565b91506138848261435a565b602082019050919050565b600061389c601483613f2d565b91506138a782614383565b602082019050919050565b60006138bf601383613f2d565b91506138ca826143ac565b602082019050919050565b60006138e2602083613f2d565b91506138ed826143d5565b602082019050919050565b6000613905601783613f2d565b9150613910826143fe565b602082019050919050565b6000613928601883613f2d565b915061393382614427565b602082019050919050565b600061394b600083613f22565b915061395682614450565b600082019050919050565b600061396e601483613f2d565b915061397982614453565b602082019050919050565b6000613991602283613f2d565b915061399c8261447c565b604082019050919050565b60006139b4601f83613f2d565b91506139bf826144cb565b602082019050919050565b60006139d7601383613f2d565b91506139e2826144f4565b602082019050919050565b608082016000820151613a0360008501826135e6565b506020820151613a166020850182613ac4565b506040820151613a2960408501826136d7565b506060820151613a3c6060850182613a97565b50505050565b608082016000820151613a5860008501826135e6565b506020820151613a6b6020850182613ac4565b506040820151613a7e60408501826136d7565b506060820151613a916060850182613a97565b50505050565b613aa0816140ab565b82525050565b613aaf816140ba565b82525050565b613abe816140ba565b82525050565b613acd816140c4565b82525050565b6000613adf8284613604565b60148201915081905092915050565b6000613afa8286613776565b9150613b068285613776565b9150613b1282846137a7565b9150819050949350505050565b6000613b2a8261393e565b9150819050919050565b6000602082019050613b4960008301846135f5565b92915050565b6000608082019050613b6460008301876135f5565b613b7160208301866135f5565b613b7e6040830185613ab5565b8181036060830152613b908184613704565b905095945050505050565b60006020820190508181036000830152613bb5818461361b565b905092915050565b60006020820190508181036000830152613bd78184613679565b905092915050565b6000602082019050613bf460008301846136e6565b92915050565b6000602082019050613c0f60008301846136f5565b92915050565b60006020820190508181036000830152613c2f818461373d565b905092915050565b60006020820190508181036000830152613c5081613826565b9050919050565b60006020820190508181036000830152613c7081613849565b9050919050565b60006020820190508181036000830152613c908161386c565b9050919050565b60006020820190508181036000830152613cb08161388f565b9050919050565b60006020820190508181036000830152613cd0816138b2565b9050919050565b60006020820190508181036000830152613cf0816138d5565b9050919050565b60006020820190508181036000830152613d10816138f8565b9050919050565b60006020820190508181036000830152613d308161391b565b9050919050565b60006020820190508181036000830152613d5081613961565b9050919050565b60006020820190508181036000830152613d7081613984565b9050919050565b60006020820190508181036000830152613d90816139a7565b9050919050565b60006020820190508181036000830152613db0816139ca565b9050919050565b6000608082019050613dcc6000830184613a42565b92915050565b6000602082019050613de76000830184613ab5565b92915050565b6000613df7613e08565b9050613e03828261414c565b919050565b6000604051905090565b600067ffffffffffffffff821115613e2d57613e2c614277565b5b613e36826142c4565b9050602081019050919050565b600067ffffffffffffffff821115613e5e57613e5d614277565b5b613e67826142c4565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f54826140ba565b9150613f5f836140ba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f9457613f936141ea565b5b828201905092915050565b6000613faa826140c4565b9150613fb5836140c4565b92508267ffffffffffffffff03821115613fd257613fd16141ea565b5b828201905092915050565b6000613fe8826140ba565b9150613ff3836140ba565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561402c5761402b6141ea565b5b828202905092915050565b60006140428261408b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156141055780820151818401526020810190506140ea565b83811115614114576000848401525b50505050565b6000600282049050600182168061413257607f821691505b6020821081141561414657614145614219565b5b50919050565b614155826142c4565b810181811067ffffffffffffffff8211171561417457614173614277565b5b80604052505050565b6000614188826140ba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141bb576141ba6141ea565b5b600182019050919050565b60006141d1826141d8565b9050919050565b60006141e3826142d5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f696e76616c696420616464726573000000000000000000000000000000000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f6d696e7420616d6f756e74206c696d6974656400000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61452681614037565b811461453157600080fd5b50565b61453d81614049565b811461454857600080fd5b50565b61455481614055565b811461455f57600080fd5b50565b61456b8161405f565b811461457657600080fd5b50565b614582816140ba565b811461458d57600080fd5b5056fea264697066735822122053e7275599c3f07e03b40101bb6ae15571099698584f254ab10c546044b6a60664736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000070000000000000000000000000000000000000000000000000000000000000834000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000010467269656e64736869702043617264730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c494e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656966636b78626168767761653735347772646c32327a696667667570636c35666a7777716336766f79766d3778667762336f61736d2f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Friendship Cards
Arg [1] : _symbol (string): LIN
Arg [2] : _maxPreTx (uint256): 7
Arg [3] : _maxSupply (uint256): 2100
Arg [4] : _maxPreOwner (uint256): 14
Arg [5] : _cost (uint256): 0
Arg [6] : _baseUri (string): ipfs://bafybeifckxbahvwae754wrdl22zifgfupcl5fjwwqc6voyvm7xfwb3oasm/

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000834
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [8] : 467269656e647368697020436172647300000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [10] : 4c494e0000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [12] : 697066733a2f2f6261667962656966636b78626168767761653735347772646c
Arg [13] : 32327a696667667570636c35666a7777716336766f79766d3778667762336f61
Arg [14] : 736d2f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

78729:6388:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34539:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35441:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41932:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41365:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78910:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84045:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83502:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31192:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45571:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78876:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83283:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82258:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84254:160;;;;;;;;;;;;;:::i;:::-;;48492:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82601:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78839:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71762:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36834:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79013:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79094:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32376:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15318:103;;;;;;;;;;;;;:::i;:::-;;83682:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79058:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75638:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14670:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78971:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35617:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72678:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81488:273;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42490:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82775:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80476:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81836:354;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83869:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49283:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71175:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84520:473;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83024:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80651:773;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78799:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78938:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42881:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15576:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34539:639;34624:4;34963:10;34948:25;;:11;:25;;;;:102;;;;35040:10;35025:25;;:11;:25;;;;34948:102;:179;;;;35117:10;35102:25;;:11;:25;;;;34948:179;34928:199;;34539:639;;;:::o;35441:100::-;35495:13;35528:5;35521:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35441:100;:::o;41932:218::-;42008:7;42033:16;42041:7;42033;:16::i;:::-;42028:64;;42058:34;;;;;;;;;;;;;;42028:64;42112:15;:24;42128:7;42112:24;;;;;;;;;;;:30;;;;;;;;;;;;42105:37;;41932:218;;;:::o;41365:408::-;41454:13;41470:16;41478:7;41470;:16::i;:::-;41454:32;;41526:5;41503:28;;:19;:17;:19::i;:::-;:28;;;41499:175;;41551:44;41568:5;41575:19;:17;:19::i;:::-;41551:16;:44::i;:::-;41546:128;;41623:35;;;;;;;;;;;;;;41546:128;41499:175;41719:2;41686:15;:24;41702:7;41686:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;41757:7;41753:2;41737:28;;41746:5;41737:28;;;;;;;;;;;;41443:330;41365:408;;:::o;78910:19::-;;;;:::o;84045:106::-;14556:13;:11;:13::i;:::-;84133:10:::1;84121:9;:22;;;;;;;;;;;;:::i;:::-;;84045:106:::0;:::o;83502:87::-;14556:13;:11;:13::i;:::-;83575:6:::1;83562:10;;:19;;;;;;;;;;;;;;;;;;83502:87:::0;:::o;31192:323::-;31253:7;31481:15;:13;:15::i;:::-;31466:12;;31450:13;;:28;:46;31443:53;;31192:323;:::o;45571:2825::-;45713:27;45743;45762:7;45743:18;:27::i;:::-;45713:57;;45828:4;45787:45;;45803:19;45787:45;;;45783:86;;45841:28;;;;;;;;;;;;;;45783:86;45883:27;45912:23;45939:35;45966:7;45939:26;:35::i;:::-;45882:92;;;;46074:68;46099:15;46116:4;46122:19;:17;:19::i;:::-;46074:24;:68::i;:::-;46069:180;;46162:43;46179:4;46185:19;:17;:19::i;:::-;46162:16;:43::i;:::-;46157:92;;46214:35;;;;;;;;;;;;;;46157:92;46069:180;46280:1;46266:16;;:2;:16;;;46262:52;;;46291:23;;;;;;;;;;;;;;46262:52;46327:43;46349:4;46355:2;46359:7;46368:1;46327:21;:43::i;:::-;46463:15;46460:160;;;46603:1;46582:19;46575:30;46460:160;47000:18;:24;47019:4;47000:24;;;;;;;;;;;;;;;;46998:26;;;;;;;;;;;;47069:18;:22;47088:2;47069:22;;;;;;;;;;;;;;;;47067:24;;;;;;;;;;;47391:146;47428:2;47477:45;47492:4;47498:2;47502:19;47477:14;:45::i;:::-;27591:8;47449:73;47391:18;:146::i;:::-;47362:17;:26;47380:7;47362:26;;;;;;;;;;;:175;;;;47708:1;27591:8;47657:19;:47;:52;47653:627;;;47730:19;47762:1;47752:7;:11;47730:33;;47919:1;47885:17;:30;47903:11;47885:30;;;;;;;;;;;;:35;47881:384;;;48023:13;;48008:11;:28;48004:242;;48203:19;48170:17;:30;48188:11;48170:30;;;;;;;;;;;:52;;;;48004:242;47881:384;47711:569;47653:627;48327:7;48323:2;48308:27;;48317:4;48308:27;;;;;;;;;;;;48346:42;48367:4;48373:2;48377:7;48386:1;48346:20;:42::i;:::-;45702:2694;;;45571:2825;;;:::o;78876:25::-;;;;:::o;83283:108::-;14556:13;:11;:13::i;:::-;83375:8:::1;83360:12;:23;;;;;;;;;;;;:::i;:::-;;83283:108:::0;:::o;82258:150::-;82353:7;82385:15;82393:6;82385:7;:15::i;:::-;82378:22;;;;82258:150;;;:::o;84254:160::-;14556:13;:11;:13::i;:::-;2380:21:::1;:19;:21::i;:::-;84316:7:::2;84337;:5;:7::i;:::-;84329:21;;84358;84329:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84315:69;;;84403:2;84395:11;;;::::0;::::2;;84304:110;2424:20:::1;:18;:20::i;:::-;84254:160::o:0;48492:193::-;48638:39;48655:4;48661:2;48665:7;48638:39;;;;;;;;;;;;:16;:39::i;:::-;48492:193;;;:::o;82601:80::-;14556:13;:11;:13::i;:::-;82668:5:::1;82661:4;:12;;;;82601:80:::0;:::o;78839:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71762:528::-;71906:23;71972:22;71997:8;;:15;;71972:40;;72027:34;72085:14;72064:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;72027:73;;72120:9;72115:125;72136:14;72131:1;:19;72115:125;;72192:32;72212:8;;72221:1;72212:11;;;;;;;:::i;:::-;;;;;;;;72192:19;:32::i;:::-;72176:10;72187:1;72176:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;72152:3;;;;;72115:125;;;;72261:10;72254:17;;;;71762:528;;;;:::o;36834:152::-;36906:7;36949:27;36968:7;36949:18;:27::i;:::-;36926:52;;36834:152;;;:::o;79013:36::-;;;;:::o;79094:40::-;;;;;;;;;;;;;:::o;32376:233::-;32448:7;32489:1;32472:19;;:5;:19;;;32468:60;;;32500:28;;;;;;;;;;;;;;32468:60;26535:13;32546:18;:25;32565:5;32546:25;;;;;;;;;;;;;;;;:55;32539:62;;32376:233;;;:::o;15318:103::-;14556:13;:11;:13::i;:::-;15383:30:::1;15410:1;15383:18;:30::i;:::-;15318:103::o:0;83682:104::-;14556:13;:11;:13::i;:::-;83767:11:::1;83754:10;:24;;;;83682:104:::0;:::o;79058:29::-;;;;;;;;;;;;;:::o;75638:900::-;75716:16;75770:19;75804:25;75844:22;75869:16;75879:5;75869:9;:16::i;:::-;75844:41;;75900:25;75942:14;75928:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75900:57;;75972:31;;:::i;:::-;76023:9;76035:15;:13;:15::i;:::-;76023:27;;76018:472;76067:14;76052:11;:29;76018:472;;76119:15;76132:1;76119:12;:15::i;:::-;76107:27;;76157:9;:16;;;76153:73;;;76198:8;;76153:73;76274:1;76248:28;;:9;:14;;;:28;;;76244:111;;76321:9;:14;;;76301:34;;76244:111;76398:5;76377:26;;:17;:26;;;76373:102;;;76454:1;76428:8;76437:13;;;;;;76428:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;76373:102;76018:472;76083:3;;;;;76018:472;;;;76511:8;76504:15;;;;;;;75638:900;;;:::o;14670:87::-;14716:7;14743:6;;;;;;;;;;;14736:13;;14670:87;:::o;78971:33::-;;;;:::o;35617:104::-;35673:13;35706:7;35699:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35617:104;:::o;72678:2513::-;72821:16;72888:4;72879:5;:13;72875:45;;72901:19;;;;;;;;;;;;;;72875:45;72935:19;72969:17;72989:14;:12;:14::i;:::-;72969:34;;73089:15;:13;:15::i;:::-;73081:5;:23;73077:87;;;73133:15;:13;:15::i;:::-;73125:23;;73077:87;73240:9;73233:4;:16;73229:73;;;73277:9;73270:16;;73229:73;73316:25;73344:16;73354:5;73344:9;:16::i;:::-;73316:44;;73538:4;73530:5;:12;73526:278;;;73563:19;73592:5;73585:4;:12;73563:34;;73634:17;73620:11;:31;73616:111;;;73696:11;73676:31;;73616:111;73544:198;73526:278;;;73787:1;73767:21;;73526:278;73818:25;73860:17;73846:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73818:60;;73918:1;73897:17;:22;73893:78;;;73947:8;73940:15;;;;;;;;73893:78;74115:31;74149:26;74169:5;74149:19;:26::i;:::-;74115:60;;74190:25;74435:9;:16;;;74430:92;;74492:9;:14;;;74472:34;;74430:92;74541:9;74553:5;74541:17;;74536:478;74565:4;74560:1;:9;;:45;;;;;74588:17;74573:11;:32;;74560:45;74536:478;;;74643:15;74656:1;74643:12;:15::i;:::-;74631:27;;74681:9;:16;;;74677:73;;;74722:8;;74677:73;74798:1;74772:28;;:9;:14;;;:28;;;74768:111;;74845:9;:14;;;74825:34;;74768:111;74922:5;74901:26;;:17;:26;;;74897:102;;;74978:1;74952:8;74961:13;;;;;;74952:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;74897:102;74536:478;74607:3;;;;;74536:478;;;;75116:11;75106:8;75099:29;75164:8;75157:15;;;;;;;;72678:2513;;;;;;:::o;81488:273::-;81588:11;79749:1;79721:12;:10;:12::i;:::-;:24;;;:29;79713:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;79816:1;79802:11;:15;:52;;;;;79836:18;;79821:11;:33;;79802:52;79780:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;79999:21;;79967:11;79935:29;79951:12;:10;:12::i;:::-;79935:15;:29::i;:::-;:43;;;;:::i;:::-;:85;;79913:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;80131:9;;80116:11;80100:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;80078:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;81630:11:::1;80355;80348:4;;:18;;;;:::i;:::-;80335:9;:31;;80327:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;81668:10:::2;;;;;;;;;;;81667:11;81659:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;81717:36;81727:12;:10;:12::i;:::-;81741:11;81717:9;:36::i;:::-;80199:1:::1;81488:273:::0;;:::o;42490:234::-;42637:8;42585:18;:39;42604:19;:17;:19::i;:::-;42585:39;;;;;;;;;;;;;;;:49;42625:8;42585:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;42697:8;42661:55;;42676:19;:17;:19::i;:::-;42661:55;;;42707:8;42661:55;;;;;;:::i;:::-;;;;;;;;42490:234;;:::o;82775:159::-;14556:13;:11;:13::i;:::-;82907:19:::1;82886:18;:40;;;;82775:159:::0;:::o;80476:116::-;80537:7;80564:20;80578:5;80564:13;:20::i;:::-;80557:27;;80476:116;;;:::o;81836:354::-;14556:13;:11;:13::i;:::-;81973:9:::1;;81958:11;81942:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;81920:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;82093:21;;82078:11;82049:26;82065:9;82049:15;:26::i;:::-;:40;;;;:::i;:::-;:65;;82041:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;82149:33;82159:9;82170:11;82149:9;:33::i;:::-;81836:354:::0;;:::o;83869:111::-;14556:13;:11;:13::i;:::-;83966:6:::1;83943:20;;:29;;;;;;;;;;;;;;;;;;83869:111:::0;:::o;49283:407::-;49458:31;49471:4;49477:2;49481:7;49458:12;:31::i;:::-;49522:1;49504:2;:14;;;:19;49500:183;;49543:56;49574:4;49580:2;49584:7;49593:5;49543:30;:56::i;:::-;49538:145;;49627:40;;;;;;;;;;;;;;49538:145;49500:183;49283:407;;;;:::o;71175:428::-;71259:21;;:::i;:::-;71293:31;;:::i;:::-;71349:15;:13;:15::i;:::-;71339:7;:25;:54;;;;71379:14;:12;:14::i;:::-;71368:7;:25;;71339:54;71335:103;;;71417:9;71410:16;;;;;71335:103;71460:21;71473:7;71460:12;:21::i;:::-;71448:33;;71496:9;:16;;;71492:65;;;71536:9;71529:16;;;;;71492:65;71574:21;71587:7;71574:12;:21::i;:::-;71567:28;;;71175:428;;;;:::o;84520:473::-;84647:13;84683:16;84691:7;84683;:16::i;:::-;84678:59;;84708:29;;;;;;;;;;;;;;84678:59;84748:21;84772:10;:8;:10::i;:::-;84748:34;;84838:1;84819:7;84813:21;:26;;:172;;;;;;;;;;;;;;;;;84905:7;84914:18;84924:7;84914:9;:18::i;:::-;84934:9;84888:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84813:172;84793:192;;;84520:473;;;:::o;83024:171::-;14556:13;:11;:13::i;:::-;83165:22:::1;83141:21;:46;;;;83024:171:::0;:::o;80651:773::-;80793:11;79749:1;79721:12;:10;:12::i;:::-;:24;;;:29;79713:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;79816:1;79802:11;:15;:52;;;;;79836:18;;79821:11;:33;;79802:52;79780:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;79999:21;;79967:11;79935:29;79951:12;:10;:12::i;:::-;79935:15;:29::i;:::-;:43;;;;:::i;:::-;:85;;79913:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;80131:9;;80116:11;80100:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;80078:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;80835:11:::1;80355;80348:4;;:18;;;;:::i;:::-;80335:9;:31;;80327:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;80914:20:::2;;;;;;;;;;;80906:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;81045:1;81006:35;81028:12;:10;:12::i;:::-;81006:21;:35::i;:::-;:40;80984:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;81109:12;81151;:10;:12::i;:::-;81134:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;81124:41;;;;;;81109:56;;81198:50;81217:12;;81198:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81231:10;;81243:4;81198:18;:50::i;:::-;81176:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;81303:66;81311:12;:10;:12::i;:::-;81356:11;81325:21;81333:12;:10;:12::i;:::-;81325:7;:21::i;:::-;:43;;;;:::i;:::-;81303:7;:66::i;:::-;81380:36;81390:12;:10;:12::i;:::-;81404:11;81380:9;:36::i;:::-;80853:571;80199:1:::1;80651:773:::0;;;;:::o;78799:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;78938:24::-;;;;:::o;42881:164::-;42978:4;43002:18;:25;43021:5;43002:25;;;;;;;;;;;;;;;:35;43028:8;43002:35;;;;;;;;;;;;;;;;;;;;;;;;;42995:42;;42881:164;;;;:::o;15576:201::-;14556:13;:11;:13::i;:::-;15685:1:::1;15665:22;;:8;:22;;;;15657:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;15741:28;15760:8;15741:18;:28::i;:::-;15576:201:::0;:::o;43303:282::-;43368:4;43424:7;43405:15;:13;:15::i;:::-;:26;;:66;;;;;43458:13;;43448:7;:23;43405:66;:153;;;;;43557:1;27311:8;43509:17;:26;43527:7;43509:26;;;;;;;;;;;;:44;:49;43405:153;43385:173;;43303:282;;;:::o;65611:105::-;65671:7;65698:10;65691:17;;65611:105;:::o;14835:132::-;14910:12;:10;:12::i;:::-;14899:23;;:7;:5;:7::i;:::-;:23;;;14891:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14835:132::o;82416:101::-;82481:7;82508:1;82501:8;;82416:101;:::o;37989:1275::-;38056:7;38076:12;38091:7;38076:22;;38159:4;38140:15;:13;:15::i;:::-;:23;38136:1061;;38193:13;;38186:4;:20;38182:1015;;;38231:14;38248:17;:23;38266:4;38248:23;;;;;;;;;;;;38231:40;;38365:1;27311:8;38337:6;:24;:29;38333:845;;;39002:113;39019:1;39009:6;:11;39002:113;;;39062:17;:25;39080:6;;;;;;;39062:25;;;;;;;;;;;;39053:34;;39002:113;;;39148:6;39141:13;;;;;;38333:845;38208:989;38182:1015;38136:1061;39225:31;;;;;;;;;;;;;;37989:1275;;;;:::o;44466:485::-;44568:27;44597:23;44638:38;44679:15;:24;44695:7;44679:24;;;;;;;;;;;44638:65;;44856:18;44833:41;;44913:19;44907:26;44888:45;;44818:126;44466:485;;;:::o;43694:659::-;43843:11;44008:16;44001:5;43997:28;43988:37;;44168:16;44157:9;44153:32;44140:45;;44318:15;44307:9;44304:30;44296:5;44285:9;44282:20;44279:56;44269:66;;43694:659;;;;;:::o;50352:159::-;;;;;:::o;64920:311::-;65055:7;65075:16;27715:3;65101:19;:41;;65075:68;;27715:3;65169:31;65180:4;65186:2;65190:9;65169:10;:31::i;:::-;65161:40;;:62;;65154:69;;;64920:311;;;;;:::o;39812:450::-;39892:14;40060:16;40053:5;40049:28;40040:37;;40237:5;40223:11;40198:23;40194:41;40191:52;40184:5;40181:63;40171:73;;39812:450;;;;:::o;51176:158::-;;;;;:::o;33263:137::-;33318:6;26909:3;33351:18;:25;33370:5;33351:25;;;;;;;;;;;;;;;;:40;;33337:55;;33263:137;;;:::o;2460:293::-;1862:1;2594:7;;:19;;2586:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1862:1;2727:7;:18;;;;2460:293::o;2761:213::-;1818:1;2944:7;:22;;;;2761:213::o;15937:191::-;16011:16;16030:6;;;;;;;;;;;16011:25;;16056:8;16047:6;;:17;;;;;;;;;;;;;;;;;;16111:8;16080:40;;16101:8;16080:40;;;;;;;;;;;;16000:128;15937:191;:::o;37437:161::-;37505:21;;:::i;:::-;37546:44;37565:17;:24;37583:5;37565:24;;;;;;;;;;;;37546:18;:44::i;:::-;37539:51;;37437:161;;;:::o;30879:103::-;30934:7;30961:13;;30954:20;;30879:103;:::o;13221:98::-;13274:7;13301:10;13294:17;;13221:98;:::o;59443:112::-;59520:27;59530:2;59534:8;59520:27;;;;;;;;;;;;:9;:27::i;:::-;59443:112;;:::o;32691:178::-;32752:7;26535:13;26673:2;32780:18;:25;32799:5;32780:25;;;;;;;;;;;;;;;;:50;;32779:82;32772:89;;32691:178;;;:::o;51774:716::-;51937:4;51983:2;51958:45;;;52004:19;:17;:19::i;:::-;52025:4;52031:7;52040:5;51958:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51954:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52258:1;52241:6;:13;:18;52237:235;;;52287:40;;;;;;;;;;;;;;52237:235;52430:6;52424:13;52415:6;52411:2;52407:15;52400:38;51954:529;52127:54;;;52117:64;;;:6;:64;;;;52110:71;;;51774:716;;;;;;:::o;37175:166::-;37245:21;;:::i;:::-;37286:47;37305:27;37324:7;37305:18;:27::i;:::-;37286:18;:47::i;:::-;37279:54;;37175:166;;;:::o;85001:113::-;85061:13;85094:12;85087:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85001:113;:::o;65818:1745::-;65883:17;66317:4;66310;66304:11;66300:22;66409:1;66403:4;66396:15;66484:4;66481:1;66477:12;66470:19;;66566:1;66561:3;66554:14;66670:3;66909:5;66891:428;66917:1;66891:428;;;66957:1;66952:3;66948:11;66941:18;;67128:2;67122:4;67118:13;67114:2;67110:22;67105:3;67097:36;67222:2;67216:4;67212:13;67204:21;;67289:4;67279:25;;67297:5;;67279:25;66891:428;;;66895:21;67358:3;67353;67349:13;67473:4;67468:3;67464:14;67457:21;;67538:6;67533:3;67526:19;65922:1634;;;65818:1745;;;:::o;4203:190::-;4328:4;4381;4352:25;4365:5;4372:4;4352:12;:25::i;:::-;:33;4345:40;;4203:190;;;;;:::o;33588:404::-;33660:14;33677:18;:25;33696:5;33677:25;;;;;;;;;;;;;;;;33660:42;;33713:17;33843:3;33830:16;;26909:3;33914:9;:24;;27054:14;33877:6;:32;33876:63;33867:72;;33978:6;33950:18;:25;33969:5;33950:25;;;;;;;;;;;;;;;:34;;;;33649:343;;33588:404;;:::o;64621:147::-;64758:6;64621:147;;;;;:::o;39363:366::-;39429:31;;:::i;:::-;39506:6;39473:9;:14;;:41;;;;;;;;;;;27194:3;39559:6;:33;;39525:9;:24;;:68;;;;;;;;;;;39651:1;27311:8;39623:6;:24;:29;;39604:9;:16;;:48;;;;;;;;;;;27715:3;39692:6;:28;;39663:9;:19;;:58;;;;;;;;;;;39363:366;;;:::o;58670:689::-;58801:19;58807:2;58811:8;58801:5;:19::i;:::-;58880:1;58862:2;:14;;;:19;58858:483;;58902:11;58916:13;;58902:27;;58948:13;58970:8;58964:3;:14;58948:30;;58997:233;59028:62;59067:1;59071:2;59075:7;;;;;;59084:5;59028:30;:62::i;:::-;59023:167;;59126:40;;;;;;;;;;;;;;59023:167;59225:3;59217:5;:11;58997:233;;59312:3;59295:13;;:20;59291:34;;59317:8;;;59291:34;58883:458;;58858:483;58670:689;;;:::o;5070:296::-;5153:7;5173:20;5196:4;5173:27;;5216:9;5211:118;5235:5;:12;5231:1;:16;5211:118;;;5284:33;5294:12;5308:5;5314:1;5308:8;;;;;;;;:::i;:::-;;;;;;;;5284:9;:33::i;:::-;5269:48;;5249:3;;;;;:::i;:::-;;;;5211:118;;;;5346:12;5339:19;;;5070:296;;;;:::o;52952:2966::-;53025:20;53048:13;;53025:36;;53088:1;53076:8;:13;53072:44;;;53098:18;;;;;;;;;;;;;;53072:44;53129:61;53159:1;53163:2;53167:12;53181:8;53129:21;:61::i;:::-;53673:1;26673:2;53643:1;:26;;53642:32;53630:8;:45;53604:18;:22;53623:2;53604:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;53952:139;53989:2;54043:33;54066:1;54070:2;54074:1;54043:14;:33::i;:::-;54010:30;54031:8;54010:20;:30::i;:::-;:66;53952:18;:139::i;:::-;53918:17;:31;53936:12;53918:31;;;;;;;;;;;:173;;;;54108:16;54139:11;54168:8;54153:12;:23;54139:37;;54689:16;54685:2;54681:25;54669:37;;55061:12;55021:8;54980:1;54918:25;54859:1;54798;54771:335;55432:1;55418:12;55414:20;55372:346;55473:3;55464:7;55461:16;55372:346;;55691:7;55681:8;55678:1;55651:25;55648:1;55645;55640:59;55526:1;55517:7;55513:15;55502:26;;55372:346;;;55376:77;55763:1;55751:8;:13;55747:45;;;55773:19;;;;;;;;;;;;;;55747:45;55825:3;55809:13;:19;;;;53378:2462;;55850:60;55879:1;55883:2;55887:12;55901:8;55850:20;:60::i;:::-;53014:2904;52952:2966;;:::o;12110:149::-;12173:7;12204:1;12200;:5;:51;;12231:20;12246:1;12249;12231:14;:20::i;:::-;12200:51;;;12208:20;12223:1;12226;12208:14;:20::i;:::-;12200:51;12193:58;;12110:149;;;;:::o;40364:324::-;40434:14;40667:1;40657:8;40654:15;40628:24;40624:46;40614:56;;40364:324;;;:::o;12267:268::-;12335:13;12442:1;12436:4;12429:15;12471:1;12465:4;12458:15;12512:4;12506;12496:21;12487:30;;12267:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1594:::-;1667:8;1677:6;1727:3;1720:4;1712:6;1708:17;1704:27;1694:122;;1735:79;;:::i;:::-;1694:122;1848:6;1835:20;1825:30;;1878:18;1870:6;1867:30;1864:117;;;1900:79;;:::i;:::-;1864:117;2014:4;2006:6;2002:17;1990:29;;2068:3;2060:4;2052:6;2048:17;2038:8;2034:32;2031:41;2028:128;;;2075:79;;:::i;:::-;2028:128;1594:568;;;;;:::o;2168:133::-;2211:5;2249:6;2236:20;2227:29;;2265:30;2289:5;2265:30;:::i;:::-;2168:133;;;;:::o;2307:139::-;2353:5;2391:6;2378:20;2369:29;;2407:33;2434:5;2407:33;:::i;:::-;2307:139;;;;:::o;2452:137::-;2497:5;2535:6;2522:20;2513:29;;2551:32;2577:5;2551:32;:::i;:::-;2452:137;;;;:::o;2595:141::-;2651:5;2682:6;2676:13;2667:22;;2698:32;2724:5;2698:32;:::i;:::-;2595:141;;;;:::o;2755:338::-;2810:5;2859:3;2852:4;2844:6;2840:17;2836:27;2826:122;;2867:79;;:::i;:::-;2826:122;2984:6;2971:20;3009:78;3083:3;3075:6;3068:4;3060:6;3056:17;3009:78;:::i;:::-;3000:87;;2816:277;2755:338;;;;:::o;3113:340::-;3169:5;3218:3;3211:4;3203:6;3199:17;3195:27;3185:122;;3226:79;;:::i;:::-;3185:122;3343:6;3330:20;3368:79;3443:3;3435:6;3428:4;3420:6;3416:17;3368:79;:::i;:::-;3359:88;;3175:278;3113:340;;;;:::o;3459:139::-;3505:5;3543:6;3530:20;3521:29;;3559:33;3586:5;3559:33;:::i;:::-;3459:139;;;;:::o;3604:329::-;3663:6;3712:2;3700:9;3691:7;3687:23;3683:32;3680:119;;;3718:79;;:::i;:::-;3680:119;3838:1;3863:53;3908:7;3899:6;3888:9;3884:22;3863:53;:::i;:::-;3853:63;;3809:117;3604:329;;;;:::o;3939:474::-;4007:6;4015;4064:2;4052:9;4043:7;4039:23;4035:32;4032:119;;;4070:79;;:::i;:::-;4032:119;4190:1;4215:53;4260:7;4251:6;4240:9;4236:22;4215:53;:::i;:::-;4205:63;;4161:117;4317:2;4343:53;4388:7;4379:6;4368:9;4364:22;4343:53;:::i;:::-;4333:63;;4288:118;3939:474;;;;;:::o;4419:619::-;4496:6;4504;4512;4561:2;4549:9;4540:7;4536:23;4532:32;4529:119;;;4567:79;;:::i;:::-;4529:119;4687:1;4712:53;4757:7;4748:6;4737:9;4733:22;4712:53;:::i;:::-;4702:63;;4658:117;4814:2;4840:53;4885:7;4876:6;4865:9;4861:22;4840:53;:::i;:::-;4830:63;;4785:118;4942:2;4968:53;5013:7;5004:6;4993:9;4989:22;4968:53;:::i;:::-;4958:63;;4913:118;4419:619;;;;;:::o;5044:943::-;5139:6;5147;5155;5163;5212:3;5200:9;5191:7;5187:23;5183:33;5180:120;;;5219:79;;:::i;:::-;5180:120;5339:1;5364:53;5409:7;5400:6;5389:9;5385:22;5364:53;:::i;:::-;5354:63;;5310:117;5466:2;5492:53;5537:7;5528:6;5517:9;5513:22;5492:53;:::i;:::-;5482:63;;5437:118;5594:2;5620:53;5665:7;5656:6;5645:9;5641:22;5620:53;:::i;:::-;5610:63;;5565:118;5750:2;5739:9;5735:18;5722:32;5781:18;5773:6;5770:30;5767:117;;;5803:79;;:::i;:::-;5767:117;5908:62;5962:7;5953:6;5942:9;5938:22;5908:62;:::i;:::-;5898:72;;5693:287;5044:943;;;;;;;:::o;5993:468::-;6058:6;6066;6115:2;6103:9;6094:7;6090:23;6086:32;6083:119;;;6121:79;;:::i;:::-;6083:119;6241:1;6266:53;6311:7;6302:6;6291:9;6287:22;6266:53;:::i;:::-;6256:63;;6212:117;6368:2;6394:50;6436:7;6427:6;6416:9;6412:22;6394:50;:::i;:::-;6384:60;;6339:115;5993:468;;;;;:::o;6467:474::-;6535:6;6543;6592:2;6580:9;6571:7;6567:23;6563:32;6560:119;;;6598:79;;:::i;:::-;6560:119;6718:1;6743:53;6788:7;6779:6;6768:9;6764:22;6743:53;:::i;:::-;6733:63;;6689:117;6845:2;6871:53;6916:7;6907:6;6896:9;6892:22;6871:53;:::i;:::-;6861:63;;6816:118;6467:474;;;;;:::o;6947:619::-;7024:6;7032;7040;7089:2;7077:9;7068:7;7064:23;7060:32;7057:119;;;7095:79;;:::i;:::-;7057:119;7215:1;7240:53;7285:7;7276:6;7265:9;7261:22;7240:53;:::i;:::-;7230:63;;7186:117;7342:2;7368:53;7413:7;7404:6;7393:9;7389:22;7368:53;:::i;:::-;7358:63;;7313:118;7470:2;7496:53;7541:7;7532:6;7521:9;7517:22;7496:53;:::i;:::-;7486:63;;7441:118;6947:619;;;;;:::o;7572:559::-;7658:6;7666;7715:2;7703:9;7694:7;7690:23;7686:32;7683:119;;;7721:79;;:::i;:::-;7683:119;7869:1;7858:9;7854:17;7841:31;7899:18;7891:6;7888:30;7885:117;;;7921:79;;:::i;:::-;7885:117;8034:80;8106:7;8097:6;8086:9;8082:22;8034:80;:::i;:::-;8016:98;;;;7812:312;7572:559;;;;;:::o;8137:323::-;8193:6;8242:2;8230:9;8221:7;8217:23;8213:32;8210:119;;;8248:79;;:::i;:::-;8210:119;8368:1;8393:50;8435:7;8426:6;8415:9;8411:22;8393:50;:::i;:::-;8383:60;;8339:114;8137:323;;;;:::o;8466:329::-;8525:6;8574:2;8562:9;8553:7;8549:23;8545:32;8542:119;;;8580:79;;:::i;:::-;8542:119;8700:1;8725:53;8770:7;8761:6;8750:9;8746:22;8725:53;:::i;:::-;8715:63;;8671:117;8466:329;;;;:::o;8801:327::-;8859:6;8908:2;8896:9;8887:7;8883:23;8879:32;8876:119;;;8914:79;;:::i;:::-;8876:119;9034:1;9059:52;9103:7;9094:6;9083:9;9079:22;9059:52;:::i;:::-;9049:62;;9005:116;8801:327;;;;:::o;9134:349::-;9203:6;9252:2;9240:9;9231:7;9227:23;9223:32;9220:119;;;9258:79;;:::i;:::-;9220:119;9378:1;9403:63;9458:7;9449:6;9438:9;9434:22;9403:63;:::i;:::-;9393:73;;9349:127;9134:349;;;;:::o;9489:509::-;9558:6;9607:2;9595:9;9586:7;9582:23;9578:32;9575:119;;;9613:79;;:::i;:::-;9575:119;9761:1;9750:9;9746:17;9733:31;9791:18;9783:6;9780:30;9777:117;;;9813:79;;:::i;:::-;9777:117;9918:63;9973:7;9964:6;9953:9;9949:22;9918:63;:::i;:::-;9908:73;;9704:287;9489:509;;;;:::o;10004:329::-;10063:6;10112:2;10100:9;10091:7;10087:23;10083:32;10080:119;;;10118:79;;:::i;:::-;10080:119;10238:1;10263:53;10308:7;10299:6;10288:9;10284:22;10263:53;:::i;:::-;10253:63;;10209:117;10004:329;;;;:::o;10339:474::-;10407:6;10415;10464:2;10452:9;10443:7;10439:23;10435:32;10432:119;;;10470:79;;:::i;:::-;10432:119;10590:1;10615:53;10660:7;10651:6;10640:9;10636:22;10615:53;:::i;:::-;10605:63;;10561:117;10717:2;10743:53;10788:7;10779:6;10768:9;10764:22;10743:53;:::i;:::-;10733:63;;10688:118;10339:474;;;;;:::o;10819:704::-;10914:6;10922;10930;10979:2;10967:9;10958:7;10954:23;10950:32;10947:119;;;10985:79;;:::i;:::-;10947:119;11105:1;11130:53;11175:7;11166:6;11155:9;11151:22;11130:53;:::i;:::-;11120:63;;11076:117;11260:2;11249:9;11245:18;11232:32;11291:18;11283:6;11280:30;11277:117;;;11313:79;;:::i;:::-;11277:117;11426:80;11498:7;11489:6;11478:9;11474:22;11426:80;:::i;:::-;11408:98;;;;11203:313;10819:704;;;;;:::o;11529:303::-;11660:10;11681:108;11785:3;11777:6;11681:108;:::i;:::-;11821:4;11816:3;11812:14;11798:28;;11529:303;;;;:::o;11838:179::-;11907:10;11928:46;11970:3;11962:6;11928:46;:::i;:::-;12006:4;12001:3;11997:14;11983:28;;11838:179;;;;:::o;12023:108::-;12100:24;12118:5;12100:24;:::i;:::-;12095:3;12088:37;12023:108;;:::o;12137:118::-;12224:24;12242:5;12224:24;:::i;:::-;12219:3;12212:37;12137:118;;:::o;12261:157::-;12366:45;12386:24;12404:5;12386:24;:::i;:::-;12366:45;:::i;:::-;12361:3;12354:58;12261:157;;:::o;12500:980::-;12681:3;12710:85;12789:5;12710:85;:::i;:::-;12811:117;12921:6;12916:3;12811:117;:::i;:::-;12804:124;;12952:87;13033:5;12952:87;:::i;:::-;13062:7;13093:1;13078:377;13103:6;13100:1;13097:13;13078:377;;;13179:6;13173:13;13206:125;13327:3;13312:13;13206:125;:::i;:::-;13199:132;;13354:91;13438:6;13354:91;:::i;:::-;13344:101;;13138:317;13125:1;13122;13118:9;13113:14;;13078:377;;;13082:14;13471:3;13464:10;;12686:794;;;12500:980;;;;:::o;13516:732::-;13635:3;13664:54;13712:5;13664:54;:::i;:::-;13734:86;13813:6;13808:3;13734:86;:::i;:::-;13727:93;;13844:56;13894:5;13844:56;:::i;:::-;13923:7;13954:1;13939:284;13964:6;13961:1;13958:13;13939:284;;;14040:6;14034:13;14067:63;14126:3;14111:13;14067:63;:::i;:::-;14060:70;;14153:60;14206:6;14153:60;:::i;:::-;14143:70;;13999:224;13986:1;13983;13979:9;13974:14;;13939:284;;;13943:14;14239:3;14232:10;;13640:608;;;13516:732;;;;:::o;14254:99::-;14325:21;14340:5;14325:21;:::i;:::-;14320:3;14313:34;14254:99;;:::o;14359:109::-;14440:21;14455:5;14440:21;:::i;:::-;14435:3;14428:34;14359:109;;:::o;14474:118::-;14561:24;14579:5;14561:24;:::i;:::-;14556:3;14549:37;14474:118;;:::o;14598:360::-;14684:3;14712:38;14744:5;14712:38;:::i;:::-;14766:70;14829:6;14824:3;14766:70;:::i;:::-;14759:77;;14845:52;14890:6;14885:3;14878:4;14871:5;14867:16;14845:52;:::i;:::-;14922:29;14944:6;14922:29;:::i;:::-;14917:3;14913:39;14906:46;;14688:270;14598:360;;;;:::o;14964:364::-;15052:3;15080:39;15113:5;15080:39;:::i;:::-;15135:71;15199:6;15194:3;15135:71;:::i;:::-;15128:78;;15215:52;15260:6;15255:3;15248:4;15241:5;15237:16;15215:52;:::i;:::-;15292:29;15314:6;15292:29;:::i;:::-;15287:3;15283:39;15276:46;;15056:272;14964:364;;;;:::o;15334:377::-;15440:3;15468:39;15501:5;15468:39;:::i;:::-;15523:89;15605:6;15600:3;15523:89;:::i;:::-;15516:96;;15621:52;15666:6;15661:3;15654:4;15647:5;15643:16;15621:52;:::i;:::-;15698:6;15693:3;15689:16;15682:23;;15444:267;15334:377;;;;:::o;15741:845::-;15844:3;15881:5;15875:12;15910:36;15936:9;15910:36;:::i;:::-;15962:89;16044:6;16039:3;15962:89;:::i;:::-;15955:96;;16082:1;16071:9;16067:17;16098:1;16093:137;;;;16244:1;16239:341;;;;16060:520;;16093:137;16177:4;16173:9;16162;16158:25;16153:3;16146:38;16213:6;16208:3;16204:16;16197:23;;16093:137;;16239:341;16306:38;16338:5;16306:38;:::i;:::-;16366:1;16380:154;16394:6;16391:1;16388:13;16380:154;;;16468:7;16462:14;16458:1;16453:3;16449:11;16442:35;16518:1;16509:7;16505:15;16494:26;;16416:4;16413:1;16409:12;16404:17;;16380:154;;;16563:6;16558:3;16554:16;16547:23;;16246:334;;16060:520;;15848:738;;15741:845;;;;:::o;16592:366::-;16734:3;16755:67;16819:2;16814:3;16755:67;:::i;:::-;16748:74;;16831:93;16920:3;16831:93;:::i;:::-;16949:2;16944:3;16940:12;16933:19;;16592:366;;;:::o;16964:::-;17106:3;17127:67;17191:2;17186:3;17127:67;:::i;:::-;17120:74;;17203:93;17292:3;17203:93;:::i;:::-;17321:2;17316:3;17312:12;17305:19;;16964:366;;;:::o;17336:::-;17478:3;17499:67;17563:2;17558:3;17499:67;:::i;:::-;17492:74;;17575:93;17664:3;17575:93;:::i;:::-;17693:2;17688:3;17684:12;17677:19;;17336:366;;;:::o;17708:::-;17850:3;17871:67;17935:2;17930:3;17871:67;:::i;:::-;17864:74;;17947:93;18036:3;17947:93;:::i;:::-;18065:2;18060:3;18056:12;18049:19;;17708:366;;;:::o;18080:::-;18222:3;18243:67;18307:2;18302:3;18243:67;:::i;:::-;18236:74;;18319:93;18408:3;18319:93;:::i;:::-;18437:2;18432:3;18428:12;18421:19;;18080:366;;;:::o;18452:::-;18594:3;18615:67;18679:2;18674:3;18615:67;:::i;:::-;18608:74;;18691:93;18780:3;18691:93;:::i;:::-;18809:2;18804:3;18800:12;18793:19;;18452:366;;;:::o;18824:::-;18966:3;18987:67;19051:2;19046:3;18987:67;:::i;:::-;18980:74;;19063:93;19152:3;19063:93;:::i;:::-;19181:2;19176:3;19172:12;19165:19;;18824:366;;;:::o;19196:::-;19338:3;19359:67;19423:2;19418:3;19359:67;:::i;:::-;19352:74;;19435:93;19524:3;19435:93;:::i;:::-;19553:2;19548:3;19544:12;19537:19;;19196:366;;;:::o;19568:398::-;19727:3;19748:83;19829:1;19824:3;19748:83;:::i;:::-;19741:90;;19840:93;19929:3;19840:93;:::i;:::-;19958:1;19953:3;19949:11;19942:18;;19568:398;;;:::o;19972:366::-;20114:3;20135:67;20199:2;20194:3;20135:67;:::i;:::-;20128:74;;20211:93;20300:3;20211:93;:::i;:::-;20329:2;20324:3;20320:12;20313:19;;19972:366;;;:::o;20344:::-;20486:3;20507:67;20571:2;20566:3;20507:67;:::i;:::-;20500:74;;20583:93;20672:3;20583:93;:::i;:::-;20701:2;20696:3;20692:12;20685:19;;20344:366;;;:::o;20716:::-;20858:3;20879:67;20943:2;20938:3;20879:67;:::i;:::-;20872:74;;20955:93;21044:3;20955:93;:::i;:::-;21073:2;21068:3;21064:12;21057:19;;20716:366;;;:::o;21088:::-;21230:3;21251:67;21315:2;21310:3;21251:67;:::i;:::-;21244:74;;21327:93;21416:3;21327:93;:::i;:::-;21445:2;21440:3;21436:12;21429:19;;21088:366;;;:::o;21532:864::-;21681:4;21676:3;21672:14;21768:4;21761:5;21757:16;21751:23;21787:63;21844:4;21839:3;21835:14;21821:12;21787:63;:::i;:::-;21696:164;21952:4;21945:5;21941:16;21935:23;21971:61;22026:4;22021:3;22017:14;22003:12;21971:61;:::i;:::-;21870:172;22126:4;22119:5;22115:16;22109:23;22145:57;22196:4;22191:3;22187:14;22173:12;22145:57;:::i;:::-;22052:160;22299:4;22292:5;22288:16;22282:23;22318:61;22373:4;22368:3;22364:14;22350:12;22318:61;:::i;:::-;22222:167;21650:746;21532:864;;:::o;22474:874::-;22633:4;22628:3;22624:14;22720:4;22713:5;22709:16;22703:23;22739:63;22796:4;22791:3;22787:14;22773:12;22739:63;:::i;:::-;22648:164;22904:4;22897:5;22893:16;22887:23;22923:61;22978:4;22973:3;22969:14;22955:12;22923:61;:::i;:::-;22822:172;23078:4;23071:5;23067:16;23061:23;23097:57;23148:4;23143:3;23139:14;23125:12;23097:57;:::i;:::-;23004:160;23251:4;23244:5;23240:16;23234:23;23270:61;23325:4;23320:3;23316:14;23302:12;23270:61;:::i;:::-;23174:167;22602:746;22474:874;;:::o;23354:105::-;23429:23;23446:5;23429:23;:::i;:::-;23424:3;23417:36;23354:105;;:::o;23465:108::-;23542:24;23560:5;23542:24;:::i;:::-;23537:3;23530:37;23465:108;;:::o;23579:118::-;23666:24;23684:5;23666:24;:::i;:::-;23661:3;23654:37;23579:118;;:::o;23703:105::-;23778:23;23795:5;23778:23;:::i;:::-;23773:3;23766:36;23703:105;;:::o;23814:256::-;23926:3;23941:75;24012:3;24003:6;23941:75;:::i;:::-;24041:2;24036:3;24032:12;24025:19;;24061:3;24054:10;;23814:256;;;;:::o;24076:589::-;24301:3;24323:95;24414:3;24405:6;24323:95;:::i;:::-;24316:102;;24435:95;24526:3;24517:6;24435:95;:::i;:::-;24428:102;;24547:92;24635:3;24626:6;24547:92;:::i;:::-;24540:99;;24656:3;24649:10;;24076:589;;;;;;:::o;24671:379::-;24855:3;24877:147;25020:3;24877:147;:::i;:::-;24870:154;;25041:3;25034:10;;24671:379;;;:::o;25056:222::-;25149:4;25187:2;25176:9;25172:18;25164:26;;25200:71;25268:1;25257:9;25253:17;25244:6;25200:71;:::i;:::-;25056:222;;;;:::o;25284:640::-;25479:4;25517:3;25506:9;25502:19;25494:27;;25531:71;25599:1;25588:9;25584:17;25575:6;25531:71;:::i;:::-;25612:72;25680:2;25669:9;25665:18;25656:6;25612:72;:::i;:::-;25694;25762:2;25751:9;25747:18;25738:6;25694:72;:::i;:::-;25813:9;25807:4;25803:20;25798:2;25787:9;25783:18;25776:48;25841:76;25912:4;25903:6;25841:76;:::i;:::-;25833:84;;25284:640;;;;;;;:::o;25930:497::-;26135:4;26173:2;26162:9;26158:18;26150:26;;26222:9;26216:4;26212:20;26208:1;26197:9;26193:17;26186:47;26250:170;26415:4;26406:6;26250:170;:::i;:::-;26242:178;;25930:497;;;;:::o;26433:373::-;26576:4;26614:2;26603:9;26599:18;26591:26;;26663:9;26657:4;26653:20;26649:1;26638:9;26634:17;26627:47;26691:108;26794:4;26785:6;26691:108;:::i;:::-;26683:116;;26433:373;;;;:::o;26812:210::-;26899:4;26937:2;26926:9;26922:18;26914:26;;26950:65;27012:1;27001:9;26997:17;26988:6;26950:65;:::i;:::-;26812:210;;;;:::o;27028:222::-;27121:4;27159:2;27148:9;27144:18;27136:26;;27172:71;27240:1;27229:9;27225:17;27216:6;27172:71;:::i;:::-;27028:222;;;;:::o;27256:313::-;27369:4;27407:2;27396:9;27392:18;27384:26;;27456:9;27450:4;27446:20;27442:1;27431:9;27427:17;27420:47;27484:78;27557:4;27548:6;27484:78;:::i;:::-;27476:86;;27256:313;;;;:::o;27575:419::-;27741:4;27779:2;27768:9;27764:18;27756:26;;27828:9;27822:4;27818:20;27814:1;27803:9;27799:17;27792:47;27856:131;27982:4;27856:131;:::i;:::-;27848:139;;27575:419;;;:::o;28000:::-;28166:4;28204:2;28193:9;28189:18;28181:26;;28253:9;28247:4;28243:20;28239:1;28228:9;28224:17;28217:47;28281:131;28407:4;28281:131;:::i;:::-;28273:139;;28000:419;;;:::o;28425:::-;28591:4;28629:2;28618:9;28614:18;28606:26;;28678:9;28672:4;28668:20;28664:1;28653:9;28649:17;28642:47;28706:131;28832:4;28706:131;:::i;:::-;28698:139;;28425:419;;;:::o;28850:::-;29016:4;29054:2;29043:9;29039:18;29031:26;;29103:9;29097:4;29093:20;29089:1;29078:9;29074:17;29067:47;29131:131;29257:4;29131:131;:::i;:::-;29123:139;;28850:419;;;:::o;29275:::-;29441:4;29479:2;29468:9;29464:18;29456:26;;29528:9;29522:4;29518:20;29514:1;29503:9;29499:17;29492:47;29556:131;29682:4;29556:131;:::i;:::-;29548:139;;29275:419;;;:::o;29700:::-;29866:4;29904:2;29893:9;29889:18;29881:26;;29953:9;29947:4;29943:20;29939:1;29928:9;29924:17;29917:47;29981:131;30107:4;29981:131;:::i;:::-;29973:139;;29700:419;;;:::o;30125:::-;30291:4;30329:2;30318:9;30314:18;30306:26;;30378:9;30372:4;30368:20;30364:1;30353:9;30349:17;30342:47;30406:131;30532:4;30406:131;:::i;:::-;30398:139;;30125:419;;;:::o;30550:::-;30716:4;30754:2;30743:9;30739:18;30731:26;;30803:9;30797:4;30793:20;30789:1;30778:9;30774:17;30767:47;30831:131;30957:4;30831:131;:::i;:::-;30823:139;;30550:419;;;:::o;30975:::-;31141:4;31179:2;31168:9;31164:18;31156:26;;31228:9;31222:4;31218:20;31214:1;31203:9;31199:17;31192:47;31256:131;31382:4;31256:131;:::i;:::-;31248:139;;30975:419;;;:::o;31400:::-;31566:4;31604:2;31593:9;31589:18;31581:26;;31653:9;31647:4;31643:20;31639:1;31628:9;31624:17;31617:47;31681:131;31807:4;31681:131;:::i;:::-;31673:139;;31400:419;;;:::o;31825:::-;31991:4;32029:2;32018:9;32014:18;32006:26;;32078:9;32072:4;32068:20;32064:1;32053:9;32049:17;32042:47;32106:131;32232:4;32106:131;:::i;:::-;32098:139;;31825:419;;;:::o;32250:::-;32416:4;32454:2;32443:9;32439:18;32431:26;;32503:9;32497:4;32493:20;32489:1;32478:9;32474:17;32467:47;32531:131;32657:4;32531:131;:::i;:::-;32523:139;;32250:419;;;:::o;32675:347::-;32830:4;32868:3;32857:9;32853:19;32845:27;;32882:133;33012:1;33001:9;32997:17;32988:6;32882:133;:::i;:::-;32675:347;;;;:::o;33028:222::-;33121:4;33159:2;33148:9;33144:18;33136:26;;33172:71;33240:1;33229:9;33225:17;33216:6;33172:71;:::i;:::-;33028:222;;;;:::o;33256:129::-;33290:6;33317:20;;:::i;:::-;33307:30;;33346:33;33374:4;33366:6;33346:33;:::i;:::-;33256:129;;;:::o;33391:75::-;33424:6;33457:2;33451:9;33441:19;;33391:75;:::o;33472:307::-;33533:4;33623:18;33615:6;33612:30;33609:56;;;33645:18;;:::i;:::-;33609:56;33683:29;33705:6;33683:29;:::i;:::-;33675:37;;33767:4;33761;33757:15;33749:23;;33472:307;;;:::o;33785:308::-;33847:4;33937:18;33929:6;33926:30;33923:56;;;33959:18;;:::i;:::-;33923:56;33997:29;34019:6;33997:29;:::i;:::-;33989:37;;34081:4;34075;34071:15;34063:23;;33785:308;;;:::o;34099:163::-;34197:4;34220:3;34212:11;;34250:4;34245:3;34241:14;34233:22;;34099:163;;;:::o;34268:132::-;34335:4;34358:3;34350:11;;34388:4;34383:3;34379:14;34371:22;;34268:132;;;:::o;34406:141::-;34455:4;34478:3;34470:11;;34501:3;34498:1;34491:14;34535:4;34532:1;34522:18;34514:26;;34406:141;;;:::o;34553:145::-;34651:6;34685:5;34679:12;34669:22;;34553:145;;;:::o;34704:114::-;34771:6;34805:5;34799:12;34789:22;;34704:114;;;:::o;34824:98::-;34875:6;34909:5;34903:12;34893:22;;34824:98;;;:::o;34928:99::-;34980:6;35014:5;35008:12;34998:22;;34928:99;;;:::o;35033:144::-;35134:4;35166;35161:3;35157:14;35149:22;;35033:144;;;:::o;35183:113::-;35253:4;35285;35280:3;35276:14;35268:22;;35183:113;;;:::o;35302:215::-;35432:11;35466:6;35461:3;35454:19;35506:4;35501:3;35497:14;35482:29;;35302:215;;;;:::o;35523:184::-;35622:11;35656:6;35651:3;35644:19;35696:4;35691:3;35687:14;35672:29;;35523:184;;;;:::o;35713:168::-;35796:11;35830:6;35825:3;35818:19;35870:4;35865:3;35861:14;35846:29;;35713:168;;;;:::o;35887:147::-;35988:11;36025:3;36010:18;;35887:147;;;;:::o;36040:169::-;36124:11;36158:6;36153:3;36146:19;36198:4;36193:3;36189:14;36174:29;;36040:169;;;;:::o;36215:148::-;36317:11;36354:3;36339:18;;36215:148;;;;:::o;36369:305::-;36409:3;36428:20;36446:1;36428:20;:::i;:::-;36423:25;;36462:20;36480:1;36462:20;:::i;:::-;36457:25;;36616:1;36548:66;36544:74;36541:1;36538:81;36535:107;;;36622:18;;:::i;:::-;36535:107;36666:1;36663;36659:9;36652:16;;36369:305;;;;:::o;36680:254::-;36719:3;36738:19;36755:1;36738:19;:::i;:::-;36733:24;;36771:19;36788:1;36771:19;:::i;:::-;36766:24;;36876:1;36856:18;36852:26;36849:1;36846:33;36843:59;;;36882:18;;:::i;:::-;36843:59;36926:1;36923;36919:9;36912:16;;36680:254;;;;:::o;36940:348::-;36980:7;37003:20;37021:1;37003:20;:::i;:::-;36998:25;;37037:20;37055:1;37037:20;:::i;:::-;37032:25;;37225:1;37157:66;37153:74;37150:1;37147:81;37142:1;37135:9;37128:17;37124:105;37121:131;;;37232:18;;:::i;:::-;37121:131;37280:1;37277;37273:9;37262:20;;36940:348;;;;:::o;37294:96::-;37331:7;37360:24;37378:5;37360:24;:::i;:::-;37349:35;;37294:96;;;:::o;37396:90::-;37430:7;37473:5;37466:13;37459:21;37448:32;;37396:90;;;:::o;37492:77::-;37529:7;37558:5;37547:16;;37492:77;;;:::o;37575:149::-;37611:7;37651:66;37644:5;37640:78;37629:89;;37575:149;;;:::o;37730:126::-;37767:7;37807:42;37800:5;37796:54;37785:65;;37730:126;;;:::o;37862:91::-;37898:7;37938:8;37931:5;37927:20;37916:31;;37862:91;;;:::o;37959:77::-;37996:7;38025:5;38014:16;;37959:77;;;:::o;38042:101::-;38078:7;38118:18;38111:5;38107:30;38096:41;;38042:101;;;:::o;38149:154::-;38233:6;38228:3;38223;38210:30;38295:1;38286:6;38281:3;38277:16;38270:27;38149:154;;;:::o;38309:307::-;38377:1;38387:113;38401:6;38398:1;38395:13;38387:113;;;38486:1;38481:3;38477:11;38471:18;38467:1;38462:3;38458:11;38451:39;38423:2;38420:1;38416:10;38411:15;;38387:113;;;38518:6;38515:1;38512:13;38509:101;;;38598:1;38589:6;38584:3;38580:16;38573:27;38509:101;38358:258;38309:307;;;:::o;38622:320::-;38666:6;38703:1;38697:4;38693:12;38683:22;;38750:1;38744:4;38740:12;38771:18;38761:81;;38827:4;38819:6;38815:17;38805:27;;38761:81;38889:2;38881:6;38878:14;38858:18;38855:38;38852:84;;;38908:18;;:::i;:::-;38852:84;38673:269;38622:320;;;:::o;38948:281::-;39031:27;39053:4;39031:27;:::i;:::-;39023:6;39019:40;39161:6;39149:10;39146:22;39125:18;39113:10;39110:34;39107:62;39104:88;;;39172:18;;:::i;:::-;39104:88;39212:10;39208:2;39201:22;38991:238;38948:281;;:::o;39235:233::-;39274:3;39297:24;39315:5;39297:24;:::i;:::-;39288:33;;39343:66;39336:5;39333:77;39330:103;;;39413:18;;:::i;:::-;39330:103;39460:1;39453:5;39449:13;39442:20;;39235:233;;;:::o;39474:100::-;39513:7;39542:26;39562:5;39542:26;:::i;:::-;39531:37;;39474:100;;;:::o;39580:94::-;39619:7;39648:20;39662:5;39648:20;:::i;:::-;39637:31;;39580:94;;;:::o;39680:180::-;39728:77;39725:1;39718:88;39825:4;39822:1;39815:15;39849:4;39846:1;39839:15;39866:180;39914:77;39911:1;39904:88;40011:4;40008:1;40001:15;40035:4;40032:1;40025:15;40052:180;40100:77;40097:1;40090:88;40197:4;40194:1;40187:15;40221:4;40218:1;40211:15;40238:180;40286:77;40283:1;40276:88;40383:4;40380:1;40373:15;40407:4;40404:1;40397:15;40424:117;40533:1;40530;40523:12;40547:117;40656:1;40653;40646:12;40670:117;40779:1;40776;40769:12;40793:117;40902:1;40899;40892:12;40916:117;41025:1;41022;41015:12;41039:117;41148:1;41145;41138:12;41162:102;41203:6;41254:2;41250:7;41245:2;41238:5;41234:14;41230:28;41220:38;;41162:102;;;:::o;41270:94::-;41303:8;41351:5;41347:2;41343:14;41322:35;;41270:94;;;:::o;41370:164::-;41510:16;41506:1;41498:6;41494:14;41487:40;41370:164;:::o;41540:225::-;41680:34;41676:1;41668:6;41664:14;41657:58;41749:8;41744:2;41736:6;41732:15;41725:33;41540:225;:::o;41771:164::-;41911:16;41907:1;41899:6;41895:14;41888:40;41771:164;:::o;41941:170::-;42081:22;42077:1;42069:6;42065:14;42058:46;41941:170;:::o;42117:169::-;42257:21;42253:1;42245:6;42241:14;42234:45;42117:169;:::o;42292:182::-;42432:34;42428:1;42420:6;42416:14;42409:58;42292:182;:::o;42480:173::-;42620:25;42616:1;42608:6;42604:14;42597:49;42480:173;:::o;42659:174::-;42799:26;42795:1;42787:6;42783:14;42776:50;42659:174;:::o;42839:114::-;;:::o;42959:170::-;43099:22;43095:1;43087:6;43083:14;43076:46;42959:170;:::o;43135:221::-;43275:34;43271:1;43263:6;43259:14;43252:58;43344:4;43339:2;43331:6;43327:15;43320:29;43135:221;:::o;43362:181::-;43502:33;43498:1;43490:6;43486:14;43479:57;43362:181;:::o;43549:169::-;43689:21;43685:1;43677:6;43673:14;43666:45;43549:169;:::o;43724:122::-;43797:24;43815:5;43797:24;:::i;:::-;43790:5;43787:35;43777:63;;43836:1;43833;43826:12;43777:63;43724:122;:::o;43852:116::-;43922:21;43937:5;43922:21;:::i;:::-;43915:5;43912:32;43902:60;;43958:1;43955;43948:12;43902:60;43852:116;:::o;43974:122::-;44047:24;44065:5;44047:24;:::i;:::-;44040:5;44037:35;44027:63;;44086:1;44083;44076:12;44027:63;43974:122;:::o;44102:120::-;44174:23;44191:5;44174:23;:::i;:::-;44167:5;44164:34;44154:62;;44212:1;44209;44202:12;44154:62;44102:120;:::o;44228:122::-;44301:24;44319:5;44301:24;:::i;:::-;44294:5;44291:35;44281:63;;44340:1;44337;44330:12;44281:63;44228:122;:::o

Swarm Source

ipfs://53e7275599c3f07e03b40101bb6ae15571099698584f254ab10c546044b6a606
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.