ETH Price: $3,432.55 (-1.58%)
Gas: 2 Gwei

Token

XORE-Quantum (XQT)
 

Overview

Max Total Supply

1,337 XQT

Holders

708

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 XQT
0xb42060860b66b13ab3ca33f044cc8fdf64a6a91f
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
XoreQuantum

Compiler Version
v0.8.17+commit.8df45f5f

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

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


pragma solidity ^0.8.17;

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

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


pragma solidity ^0.8.13;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.13;


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

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

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

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

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

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

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

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


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}

// 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/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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




// 1337  ___   ______     _______    _______         ______    ____  ____       __      _____  ___  ___________  ____  ____  ___      ___ 
// |"  \/"  | /    " \   /"      \  /"     "|       /    " \  ("  _||_ " |     /""\    (\"   \|"  \("     _   ")("  _||_ " ||"  \    /"  |
//  \   \  / // ____  \ |:        |(: ______)      // ____  \ |   (  ) : |    /    \   |.\\   \    |)__/  \\__/ |   (  ) : | \   \  //   |
//   \\  \/ /  /    ) :)|_____/   ) \/    |       /  /    )  )(:  |  | . )   /' /\  \  |: \.   \\  |   \\_ /    (:  |  | . ) /\\  \/.    |
//   /\.  \(: (____/ //  //      /  // ___)_     (: (____/ //  \\ \__/ //   //  __'  \ |.  \    \. |   |.  |     \\ \__/ // |: \.        |
//  /  \   \\        /  |:  __   \ (:      "|     \         \  /\\ __ //\  /   /  \\  \|    \    \ |   \:  |     /\\ __ //\ |.  \    /:  |
// |___/\___|\"_____/   |__|  \___) \_______)      \"____/\__\(__________)(___/    \___)\___|\____\)    \__|    (__________)|___|\__/|___|
                                                                                                                                       



pragma solidity ^0.8.13;






contract XoreQuantum is ERC721A, Ownable, ReentrancyGuard, DefaultOperatorFilterer {


  string public baseURI;
  string public notRevealedUri;
  uint256 public cost = 0.088 ether;
  uint256 public wlcost = 0.088 ether;
  uint256 public maxSupply = 1337;
  uint256 public WlSupply = 777;
  uint256 public MaxperWallet = 2; // max per wallet for public
  uint256 public MaxperWalletWl = 2; // max per wallet for whitelist
  uint256 public MaxperTx = 1;  // max per transaction for public
  uint256 public MaxperTxWl = 1; // max per transaction for whitelist
  bool public paused = true;
  bool public revealed = false;
  bool public preSale = false;
  bool public publicSale = false;
  bytes32 public merkleRoot;
  mapping (address => uint256) public PublicMinted;
  mapping (address => uint256) public WhitelistMinted;
  address public p1 = 0xdef889a07c5608f2EEaAbb13BB6dA45cF21EF2a5;

  constructor(
    string memory _initBaseURI,
    string memory _notRevealedUri
  ) ERC721A("XORE-Quantum", "XQT") {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_notRevealedUri);
  }

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
      function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }



  /// @dev Public mint 
  function mint(uint256 tokens) public payable nonReentrant {
    require(!paused, "oops contract is paused");
    require(publicSale, "Sale hasn't started yet");
    require(tokens <= MaxperTx, "max mint amount per tx exceeded");
    require(totalSupply() + tokens <= maxSupply, "We Soldout");
    require(PublicMinted[_msgSenderERC721A()] + tokens <= MaxperWallet, "Max NFT Per Wallet exceeded");
    require(msg.value >= cost * tokens, "insufficient funds");

      PublicMinted[_msgSenderERC721A()] += tokens;
      _safeMint(_msgSenderERC721A(), tokens);
    
  }
/// @dev presale mint for whitelisted
    function presalemint(uint256 tokens, bytes32[] calldata merkleProof) public payable nonReentrant {
    require(!paused, "oops contract is paused");
    require(preSale, "Presale hasn't started yet");
    require(MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "You are not Whitelisted");
    require(WhitelistMinted[_msgSenderERC721A()] + tokens <= MaxperWalletWl, "Max NFT Per Wallet exceeded");
    require(tokens <= MaxperTxWl, "max mint per Tx exceeded");
    require(totalSupply() + tokens <= WlSupply, "Whitelist MaxSupply exceeded");
    require(msg.value >= wlcost * tokens, "insufficient funds");

        WhitelistMinted[_msgSenderERC721A()] += tokens;
      _safeMint(_msgSenderERC721A(), tokens);
  }

  /// @dev use it for giveaway and team mint
     function airdrop(uint256 _mintAmount, address destination) public onlyOwner nonReentrant {
    require(totalSupply() + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
  }

/// @notice returns metadata link of tokenid
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _toString(tokenId), ".json"))
        : "";
  }

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

    /// @notice return the tokens owned by an address
      function tokensOfOwner(address owner) public view 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;
        }
    }

  //only owner
  function reveal(bool _state) public onlyOwner {
      revealed = _state;
  }

    /// @dev change the merkle root for the whitelist phase
  function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

  /// @dev change the public max per wallet
  function setMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWallet = _limit;
  }

  /// @dev change the whitelist max per wallet
    function setWlMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWalletWl = _limit;
  }

    /// @dev change the public max per transaction
  function setMaxPerTx(uint256 _limit) public onlyOwner {
    MaxperTx = _limit;
  }

  /// @dev change the whitelist max per transaction
    function setWlMaxPerTx(uint256 _limit) public onlyOwner {
    MaxperTxWl = _limit;
  }

   /// @dev change the public price(amount need to be in wei)
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

   /// @dev change the whitelist price(amount need to be in wei)
    function setWlCost(uint256 _newWlCost) public onlyOwner {
    wlcost = _newWlCost;
  }

  /// @dev cut the supply if we dont sold out
    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }

 /// @dev cut the whitelist supply if we dont sold out
    function setwlsupply(uint256 _newsupply) public onlyOwner {
    WlSupply = _newsupply;
  }

 /// @dev set your baseuri
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

   /// @dev set hidden uri
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

 /// @dev to pause and unpause your contract(use booleans true or false)
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }

     /// @dev activate whitelist sale(use booleans true or false)
    function togglepreSale(bool _state) external onlyOwner {
        preSale = _state;
    }

    /// @dev activate public sale(use booleans true or false)
    function togglepublicSale(bool _state) external onlyOwner {
        publicSale = _state;
    }
  
  /// @dev withdraw funds from contract
  function withdraw() public payable onlyOwner nonReentrant {
      uint256 share1 = address(this).balance * 100 / 100;

      payable(p1).transfer(share1);
  }

    /// Opensea Royalties

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_notRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MaxperTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperTxWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWalletWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"PublicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WhitelistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"p1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"presalemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWlCost","type":"uint256"}],"name":"setWlCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWlMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWlMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setwlsupply","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":"bool","name":"_state","type":"bool"}],"name":"togglepreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"togglepublicSale","outputs":[],"stateMutability":"nonpayable","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlcost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052670138a388a43c0000600c55670138a388a43c0000600d55610539600e55610309600f5560026010556002601155600160125560016013556001601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff0219169083151502179055506000601460026101000a81548160ff0219169083151502179055506000601460036101000a81548160ff02191690831515021790555073def889a07c5608f2eeaabb13bb6da45cf21ef2a5601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200010a57600080fd5b5060405162005503380380620055038339818101604052810190620001309190620007a7565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600c81526020017f584f52452d5175616e74756d00000000000000000000000000000000000000008152506040518060400160405280600381526020017f58515400000000000000000000000000000000000000000000000000000000008152508160029081620001c4919062000a77565b508060039081620001d6919062000a77565b50620001e76200043860201b60201c565b60008190555050506200020f620002036200044160201b60201c565b6200044960201b60201c565b600160098190555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200040c578015620002d2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200029892919062000ba3565b600060405180830381600087803b158015620002b357600080fd5b505af1158015620002c8573d6000803e3d6000fd5b505050506200040b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200038c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200035292919062000ba3565b600060405180830381600087803b1580156200036d57600080fd5b505af115801562000382573d6000803e3d6000fd5b505050506200040a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620003d5919062000bd0565b600060405180830381600087803b158015620003f057600080fd5b505af115801562000405573d6000803e3d6000fd5b505050505b5b5b50506200041f826200050f60201b60201c565b62000430816200053460201b60201c565b505062000c70565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200051f6200055960201b60201c565b80600a908162000530919062000a77565b5050565b620005446200055960201b60201c565b80600b908162000555919062000a77565b5050565b620005696200044160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200058f620005ea60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005df9062000c4e565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200067d8262000632565b810181811067ffffffffffffffff821117156200069f576200069e62000643565b5b80604052505050565b6000620006b462000614565b9050620006c2828262000672565b919050565b600067ffffffffffffffff821115620006e557620006e462000643565b5b620006f08262000632565b9050602081019050919050565b60005b838110156200071d57808201518184015260208101905062000700565b60008484015250505050565b6000620007406200073a84620006c7565b620006a8565b9050828152602081018484840111156200075f576200075e6200062d565b5b6200076c848285620006fd565b509392505050565b600082601f8301126200078c576200078b62000628565b5b81516200079e84826020860162000729565b91505092915050565b60008060408385031215620007c157620007c06200061e565b5b600083015167ffffffffffffffff811115620007e257620007e162000623565b5b620007f08582860162000774565b925050602083015167ffffffffffffffff81111562000814576200081362000623565b5b620008228582860162000774565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200087f57607f821691505b60208210810362000895576200089462000837565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008c0565b6200090b8683620008c0565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000958620009526200094c8462000923565b6200092d565b62000923565b9050919050565b6000819050919050565b620009748362000937565b6200098c62000983826200095f565b848454620008cd565b825550505050565b600090565b620009a362000994565b620009b081848462000969565b505050565b5b81811015620009d857620009cc60008262000999565b600181019050620009b6565b5050565b601f82111562000a2757620009f1816200089b565b620009fc84620008b0565b8101602085101562000a0c578190505b62000a2462000a1b85620008b0565b830182620009b5565b50505b505050565b600082821c905092915050565b600062000a4c6000198460080262000a2c565b1980831691505092915050565b600062000a67838362000a39565b9150826002028217905092915050565b62000a82826200082c565b67ffffffffffffffff81111562000a9e5762000a9d62000643565b5b62000aaa825462000866565b62000ab7828285620009dc565b600060209050601f83116001811462000aef576000841562000ada578287015190505b62000ae6858262000a59565b86555062000b56565b601f19841662000aff866200089b565b60005b8281101562000b295784890151825560018201915060208501945060208101905062000b02565b8683101562000b49578489015162000b45601f89168262000a39565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b8b8262000b5e565b9050919050565b62000b9d8162000b7e565b82525050565b600060408201905062000bba600083018562000b92565b62000bc9602083018462000b92565b9392505050565b600060208201905062000be7600083018462000b92565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000c3660208362000bed565b915062000c438262000bfe565b602082019050919050565b6000602082019050818103600083015262000c698162000c27565b9050919050565b6148838062000c806000396000f3fe6080604052600436106103755760003560e01c80636c2d3c4f116101d1578063bde0608a11610102578063e268e4d3116100a0578063f2fde38b1161006f578063f2fde38b14610c68578063f3257cdd14610c91578063fea0e05814610cba578063ff64569114610ce357610375565b8063e268e4d314610bb0578063e985e9c514610bd9578063f12f6d5d14610c16578063f2c4ce1e14610c3f57610375565b8063c87b56dd116100dc578063c87b56dd14610ae0578063d5abeb0114610b1d578063d8ed370c14610b48578063dc33e68114610b7357610375565b8063bde0608a14610a63578063c2a2747b14610a8c578063c6f6f21614610ab757610375565b806395d89b411161016f578063a22cb46511610149578063a22cb465146109ca578063b88d4fde146109f3578063bc63f02e14610a0f578063bd7a199814610a3857610375565b806395d89b41146109465780639f404eef14610971578063a0712d68146109ae57610375565b80637cb64759116101ab5780637cb647591461088c5780638462151c146108b55780638da5cb5b146108f2578063940cd05b1461091d57610375565b80636c2d3c4f1461080d57806370a0823114610838578063715018a61461087557610375565b806333bc1c5c116102ab578063458c4f9e116102495780635a7adf7f116102235780635a7adf7f1461074f5780635c975abb1461077a5780636352211e146107a55780636c0360eb146107e257610375565b8063458c4f9e146106d257806351830227146106fb57806355f804b31461072657610375565b80633ccfd60b116102855780633ccfd60b1461065857806341f434341461066257806342842e0e1461068d57806344a0d68a146106a957610375565b806333bc1c5c146105c757806334aa3dfa146105f257806335f90f431461061b57610375565b8063095ea7b311610318578063149835a0116102f2578063149835a01461052c57806318160ddd1461055557806323b872dd146105805780632eb4a7ab1461059c57610375565b8063095ea7b3146104ba5780630bddb613146104d657806313faede61461050157610375565b8063036e4cb511610354578063036e4cb51461040b57806306fdde0314610427578063081812fc14610452578063081c8c441461048f57610375565b806277ec051461037a57806301ffc9a7146103a557806302329a29146103e2575b600080fd5b34801561038657600080fd5b5061038f610d0e565b60405161039c9190613156565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c791906131dd565b610d14565b6040516103d99190613225565b60405180910390f35b3480156103ee57600080fd5b506104096004803603810190610404919061326c565b610da6565b005b6104256004803603810190610420919061332a565b610dcb565b005b34801561043357600080fd5b5061043c611122565b604051610449919061341a565b60405180910390f35b34801561045e57600080fd5b506104796004803603810190610474919061343c565b6111b4565b60405161048691906134aa565b60405180910390f35b34801561049b57600080fd5b506104a4611233565b6040516104b1919061341a565b60405180910390f35b6104d460048036038101906104cf91906134f1565b6112c1565b005b3480156104e257600080fd5b506104eb611405565b6040516104f89190613156565b60405180910390f35b34801561050d57600080fd5b5061051661140b565b6040516105239190613156565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e919061343c565b611411565b005b34801561056157600080fd5b5061056a611423565b6040516105779190613156565b60405180910390f35b61059a60048036038101906105959190613531565b61143a565b005b3480156105a857600080fd5b506105b1611489565b6040516105be919061359d565b60405180910390f35b3480156105d357600080fd5b506105dc61148f565b6040516105e99190613225565b60405180910390f35b3480156105fe57600080fd5b506106196004803603810190610614919061343c565b6114a2565b005b34801561062757600080fd5b50610642600480360381019061063d91906135b8565b6114b4565b60405161064f9190613156565b60405180910390f35b6106606114cc565b005b34801561066e57600080fd5b5061067761156c565b6040516106849190613644565b60405180910390f35b6106a760048036038101906106a29190613531565b61157e565b005b3480156106b557600080fd5b506106d060048036038101906106cb919061343c565b6115cd565b005b3480156106de57600080fd5b506106f960048036038101906106f4919061343c565b6115df565b005b34801561070757600080fd5b506107106115f1565b60405161071d9190613225565b60405180910390f35b34801561073257600080fd5b5061074d6004803603810190610748919061378f565b611604565b005b34801561075b57600080fd5b5061076461161f565b6040516107719190613225565b60405180910390f35b34801561078657600080fd5b5061078f611632565b60405161079c9190613225565b60405180910390f35b3480156107b157600080fd5b506107cc60048036038101906107c7919061343c565b611645565b6040516107d991906134aa565b60405180910390f35b3480156107ee57600080fd5b506107f7611657565b604051610804919061341a565b60405180910390f35b34801561081957600080fd5b506108226116e5565b60405161082f9190613156565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a91906135b8565b6116eb565b60405161086c9190613156565b60405180910390f35b34801561088157600080fd5b5061088a6117a3565b005b34801561089857600080fd5b506108b360048036038101906108ae9190613804565b6117b7565b005b3480156108c157600080fd5b506108dc60048036038101906108d791906135b8565b6117c9565b6040516108e991906138ef565b60405180910390f35b3480156108fe57600080fd5b5061090761190c565b60405161091491906134aa565b60405180910390f35b34801561092957600080fd5b50610944600480360381019061093f919061326c565b611936565b005b34801561095257600080fd5b5061095b61195b565b604051610968919061341a565b60405180910390f35b34801561097d57600080fd5b50610998600480360381019061099391906135b8565b6119ed565b6040516109a59190613156565b60405180910390f35b6109c860048036038101906109c3919061343c565b611a05565b005b3480156109d657600080fd5b506109f160048036038101906109ec9190613911565b611ca7565b005b610a0d6004803603810190610a0891906139f2565b611db2565b005b348015610a1b57600080fd5b50610a366004803603810190610a319190613a75565b611e03565b005b348015610a4457600080fd5b50610a4d611e80565b604051610a5a9190613156565b60405180910390f35b348015610a6f57600080fd5b50610a8a6004803603810190610a85919061343c565b611e86565b005b348015610a9857600080fd5b50610aa1611e98565b604051610aae91906134aa565b60405180910390f35b348015610ac357600080fd5b50610ade6004803603810190610ad9919061343c565b611ebe565b005b348015610aec57600080fd5b50610b076004803603810190610b02919061343c565b611ed0565b604051610b14919061341a565b60405180910390f35b348015610b2957600080fd5b50610b32612025565b604051610b3f9190613156565b60405180910390f35b348015610b5457600080fd5b50610b5d61202b565b604051610b6a9190613156565b60405180910390f35b348015610b7f57600080fd5b50610b9a6004803603810190610b9591906135b8565b612031565b604051610ba79190613156565b60405180910390f35b348015610bbc57600080fd5b50610bd76004803603810190610bd2919061343c565b612043565b005b348015610be557600080fd5b50610c006004803603810190610bfb9190613ab5565b612055565b604051610c0d9190613225565b60405180910390f35b348015610c2257600080fd5b50610c3d6004803603810190610c38919061343c565b6120e9565b005b348015610c4b57600080fd5b50610c666004803603810190610c61919061378f565b6120fb565b005b348015610c7457600080fd5b50610c8f6004803603810190610c8a91906135b8565b612116565b005b348015610c9d57600080fd5b50610cb86004803603810190610cb3919061326c565b612199565b005b348015610cc657600080fd5b50610ce16004803603810190610cdc919061326c565b6121be565b005b348015610cef57600080fd5b50610cf86121e3565b604051610d059190613156565b60405180910390f35b60115481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d6f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d9f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610dae6121e9565b80601460006101000a81548160ff02191690831515021790555050565b610dd3612267565b601460009054906101000a900460ff1615610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90613b41565b60405180910390fd5b601460029054906101000a900460ff16610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990613bad565b60405180910390fd5b610ee6828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060155433604051602001610ecb9190613c15565b604051602081830303815290604052805190602001206122b6565b610f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1c90613c7c565b60405180910390fd5b6011548360176000610f356122cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f7a9190613ccb565b1115610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290613d4b565b60405180910390fd5b601354831115611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff790613db7565b60405180910390fd5b600f548361100c611423565b6110169190613ccb565b1115611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90613e23565b60405180910390fd5b82600d546110659190613e43565b3410156110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e90613ed1565b60405180910390fd5b82601760006110b46122cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110fd9190613ccb565b9250508190555061111561110f6122cd565b846122d5565b61111d6122f3565b505050565b60606002805461113190613f20565b80601f016020809104026020016040519081016040528092919081815260200182805461115d90613f20565b80156111aa5780601f1061117f576101008083540402835291602001916111aa565b820191906000526020600020905b81548152906001019060200180831161118d57829003601f168201915b5050505050905090565b60006111bf826122fd565b6111f5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b805461124090613f20565b80601f016020809104026020016040519081016040528092919081815260200182805461126c90613f20565b80156112b95780601f1061128e576101008083540402835291602001916112b9565b820191906000526020600020905b81548152906001019060200180831161129c57829003601f168201915b505050505081565b60006112cc82611645565b90508073ffffffffffffffffffffffffffffffffffffffff166112ed6122cd565b73ffffffffffffffffffffffffffffffffffffffff161461135057611319816113146122cd565b612055565b61134f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f5481565b600c5481565b6114196121e9565b80600e8190555050565b600061142d61235c565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114785761147733612365565b5b611483848484612462565b50505050565b60155481565b601460039054906101000a900460ff1681565b6114aa6121e9565b8060138190555050565b60176020528060005260406000206000915090505481565b6114d46121e9565b6114dc612267565b6000606480476114ec9190613e43565b6114f69190613f80565b9050601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611560573d6000803e3d6000fd5b505061156a6122f3565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146115bc576115bb33612365565b5b6115c7848484612784565b50505050565b6115d56121e9565b80600c8190555050565b6115e76121e9565b80600f8190555050565b601460019054906101000a900460ff1681565b61160c6121e9565b80600a908161161b9190614153565b5050565b601460029054906101000a900460ff1681565b601460009054906101000a900460ff1681565b6000611650826127a4565b9050919050565b600a805461166490613f20565b80601f016020809104026020016040519081016040528092919081815260200182805461169090613f20565b80156116dd5780601f106116b2576101008083540402835291602001916116dd565b820191906000526020600020905b8154815290600101906020018083116116c057829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611752576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6117ab6121e9565b6117b56000612870565b565b6117bf6121e9565b8060158190555050565b606060008060006117d9856116eb565b905060008167ffffffffffffffff8111156117f7576117f6613664565b5b6040519080825280602002602001820160405280156118255781602001602082028036833780820191505090505b5090506118306130ee565b600061183a61235c565b90505b8386146118fe5761184d81612936565b915081604001516118f357600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461189857816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118f257808387806001019850815181106118e5576118e4614225565b5b6020026020010181815250505b5b80600101905061183d565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61193e6121e9565b80601460016101000a81548160ff02191690831515021790555050565b60606003805461196a90613f20565b80601f016020809104026020016040519081016040528092919081815260200182805461199690613f20565b80156119e35780601f106119b8576101008083540402835291602001916119e3565b820191906000526020600020905b8154815290600101906020018083116119c657829003601f168201915b5050505050905090565b60166020528060005260406000206000915090505481565b611a0d612267565b601460009054906101000a900460ff1615611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490613b41565b60405180910390fd5b601460039054906101000a900460ff16611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa3906142a0565b60405180910390fd5b601254811115611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae89061430c565b60405180910390fd5b600e5481611afd611423565b611b079190613ccb565b1115611b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3f90614378565b60405180910390fd5b6010548160166000611b586122cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b9d9190613ccb565b1115611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd590613d4b565b60405180910390fd5b80600c54611bec9190613e43565b341015611c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2590613ed1565b60405180910390fd5b8060166000611c3b6122cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c849190613ccb565b92505081905550611c9c611c966122cd565b826122d5565b611ca46122f3565b50565b8060076000611cb46122cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d616122cd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611da69190613225565b60405180910390a35050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611df057611def33612365565b5b611dfc85858585612961565b5050505050565b611e0b6121e9565b611e13612267565b600e5482611e1f611423565b611e299190613ccb565b1115611e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e61906143e4565b60405180910390fd5b611e7481836122d5565b611e7c6122f3565b5050565b60105481565b611e8e6121e9565b8060118190555050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ec66121e9565b8060128190555050565b6060611edb826122fd565b611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1190614476565b60405180910390fd5b60001515601460019054906101000a900460ff16151503611fc757600b8054611f4290613f20565b80601f0160208091040260200160405190810160405280929190818152602001828054611f6e90613f20565b8015611fbb5780601f10611f9057610100808354040283529160200191611fbb565b820191906000526020600020905b815481529060010190602001808311611f9e57829003601f168201915b50505050509050612020565b6000611fd16129d4565b90506000815111611ff1576040518060200160405280600081525061201c565b80611ffb84612a66565b60405160200161200c92919061451e565b6040516020818303038152906040525b9150505b919050565b600e5481565b60135481565b600061203c82612ab6565b9050919050565b61204b6121e9565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120f16121e9565b80600d8190555050565b6121036121e9565b80600b90816121129190614153565b5050565b61211e6121e9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361218d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612184906145bf565b60405180910390fd5b61219681612870565b50565b6121a16121e9565b80601460036101000a81548160ff02191690831515021790555050565b6121c66121e9565b80601460026101000a81548160ff02191690831515021790555050565b60125481565b6121f1612b0d565b73ffffffffffffffffffffffffffffffffffffffff1661220f61190c565b73ffffffffffffffffffffffffffffffffffffffff1614612265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225c9061462b565b60405180910390fd5b565b6002600954036122ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a390614697565b60405180910390fd5b6002600981905550565b6000826122c38584612b15565b1490509392505050565b600033905090565b6122ef828260405180602001604052806000815250612b6b565b5050565b6001600981905550565b60008161230861235c565b11158015612317575060005482105b8015612355575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006001905090565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561245f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016123dc9291906146b7565b602060405180830381865afa1580156123f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061241d91906146f5565b61245e57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161245591906134aa565b60405180910390fd5b5b50565b600061246d826127a4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146124d4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806124e084612c08565b915091506124f681876124f16122cd565b612c2f565b6125425761250b866125066122cd565b612055565b612541576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036125a8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125b58686866001612c73565b80156125c057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061268e8561266a888887612c79565b7c020000000000000000000000000000000000000000000000000000000017612ca1565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036127145760006001850190506000600460008381526020019081526020016000205403612712576000548114612711578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461277c8686866001612ccc565b505050505050565b61279f83838360405180602001604052806000815250611db2565b505050565b600080829050806127b361235c565b11612839576000548110156128385760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612836575b6000810361282c576004600083600190039350838152602001908152602001600020549050612802565b809250505061286b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61293e6130ee565b61295a6004600084815260200190815260200160002054612cd2565b9050919050565b61296c84848461143a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146129ce5761299784848484612d88565b6129cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a80546129e390613f20565b80601f0160208091040260200160405190810160405280929190818152602001828054612a0f90613f20565b8015612a5c5780601f10612a3157610100808354040283529160200191612a5c565b820191906000526020600020905b815481529060010190602001808311612a3f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612aa157600184039350600a81066030018453600a8104905080612a7f575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60008082905060005b8451811015612b6057612b4b82868381518110612b3e57612b3d614225565b5b6020026020010151612ed8565b91508080612b5890614722565b915050612b1e565b508091505092915050565b612b758383612f03565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612c0357600080549050600083820390505b612bb56000868380600101945086612d88565b612beb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612ba2578160005414612c0057600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612c908686846130be565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612cda6130ee565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dae6122cd565b8786866040518563ffffffff1660e01b8152600401612dd094939291906147bf565b6020604051808303816000875af1925050508015612e0c57506040513d601f19601f82011682018060405250810190612e099190614820565b60015b612e85573d8060008114612e3c576040519150601f19603f3d011682016040523d82523d6000602084013e612e41565b606091505b506000815103612e7d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000818310612ef057612eeb82846130c7565b612efb565b612efa83836130c7565b5b905092915050565b60008054905060008203612f43576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f506000848385612c73565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612fc783612fb86000866000612c79565b612fc1856130de565b17612ca1565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461306857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061302d565b50600082036130a3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506130b96000848385612ccc565b505050565b60009392505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000819050919050565b6131508161313d565b82525050565b600060208201905061316b6000830184613147565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131ba81613185565b81146131c557600080fd5b50565b6000813590506131d7816131b1565b92915050565b6000602082840312156131f3576131f261317b565b5b6000613201848285016131c8565b91505092915050565b60008115159050919050565b61321f8161320a565b82525050565b600060208201905061323a6000830184613216565b92915050565b6132498161320a565b811461325457600080fd5b50565b60008135905061326681613240565b92915050565b6000602082840312156132825761328161317b565b5b600061329084828501613257565b91505092915050565b6132a28161313d565b81146132ad57600080fd5b50565b6000813590506132bf81613299565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126132ea576132e96132c5565b5b8235905067ffffffffffffffff811115613307576133066132ca565b5b602083019150836020820283011115613323576133226132cf565b5b9250929050565b6000806000604084860312156133435761334261317b565b5b6000613351868287016132b0565b935050602084013567ffffffffffffffff81111561337257613371613180565b5b61337e868287016132d4565b92509250509250925092565b600081519050919050565b600082825260208201905092915050565b60005b838110156133c45780820151818401526020810190506133a9565b60008484015250505050565b6000601f19601f8301169050919050565b60006133ec8261338a565b6133f68185613395565b93506134068185602086016133a6565b61340f816133d0565b840191505092915050565b6000602082019050818103600083015261343481846133e1565b905092915050565b6000602082840312156134525761345161317b565b5b6000613460848285016132b0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061349482613469565b9050919050565b6134a481613489565b82525050565b60006020820190506134bf600083018461349b565b92915050565b6134ce81613489565b81146134d957600080fd5b50565b6000813590506134eb816134c5565b92915050565b600080604083850312156135085761350761317b565b5b6000613516858286016134dc565b9250506020613527858286016132b0565b9150509250929050565b60008060006060848603121561354a5761354961317b565b5b6000613558868287016134dc565b9350506020613569868287016134dc565b925050604061357a868287016132b0565b9150509250925092565b6000819050919050565b61359781613584565b82525050565b60006020820190506135b2600083018461358e565b92915050565b6000602082840312156135ce576135cd61317b565b5b60006135dc848285016134dc565b91505092915050565b6000819050919050565b600061360a61360561360084613469565b6135e5565b613469565b9050919050565b600061361c826135ef565b9050919050565b600061362e82613611565b9050919050565b61363e81613623565b82525050565b60006020820190506136596000830184613635565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61369c826133d0565b810181811067ffffffffffffffff821117156136bb576136ba613664565b5b80604052505050565b60006136ce613171565b90506136da8282613693565b919050565b600067ffffffffffffffff8211156136fa576136f9613664565b5b613703826133d0565b9050602081019050919050565b82818337600083830152505050565b600061373261372d846136df565b6136c4565b90508281526020810184848401111561374e5761374d61365f565b5b613759848285613710565b509392505050565b600082601f830112613776576137756132c5565b5b813561378684826020860161371f565b91505092915050565b6000602082840312156137a5576137a461317b565b5b600082013567ffffffffffffffff8111156137c3576137c2613180565b5b6137cf84828501613761565b91505092915050565b6137e181613584565b81146137ec57600080fd5b50565b6000813590506137fe816137d8565b92915050565b60006020828403121561381a5761381961317b565b5b6000613828848285016137ef565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6138668161313d565b82525050565b6000613878838361385d565b60208301905092915050565b6000602082019050919050565b600061389c82613831565b6138a6818561383c565b93506138b18361384d565b8060005b838110156138e25781516138c9888261386c565b97506138d483613884565b9250506001810190506138b5565b5085935050505092915050565b600060208201905081810360008301526139098184613891565b905092915050565b600080604083850312156139285761392761317b565b5b6000613936858286016134dc565b925050602061394785828601613257565b9150509250929050565b600067ffffffffffffffff82111561396c5761396b613664565b5b613975826133d0565b9050602081019050919050565b600061399561399084613951565b6136c4565b9050828152602081018484840111156139b1576139b061365f565b5b6139bc848285613710565b509392505050565b600082601f8301126139d9576139d86132c5565b5b81356139e9848260208601613982565b91505092915050565b60008060008060808587031215613a0c57613a0b61317b565b5b6000613a1a878288016134dc565b9450506020613a2b878288016134dc565b9350506040613a3c878288016132b0565b925050606085013567ffffffffffffffff811115613a5d57613a5c613180565b5b613a69878288016139c4565b91505092959194509250565b60008060408385031215613a8c57613a8b61317b565b5b6000613a9a858286016132b0565b9250506020613aab858286016134dc565b9150509250929050565b60008060408385031215613acc57613acb61317b565b5b6000613ada858286016134dc565b9250506020613aeb858286016134dc565b9150509250929050565b7f6f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b6000613b2b601783613395565b9150613b3682613af5565b602082019050919050565b60006020820190508181036000830152613b5a81613b1e565b9050919050565b7f50726573616c65206861736e2774207374617274656420796574000000000000600082015250565b6000613b97601a83613395565b9150613ba282613b61565b602082019050919050565b60006020820190508181036000830152613bc681613b8a565b9050919050565b60008160601b9050919050565b6000613be582613bcd565b9050919050565b6000613bf782613bda565b9050919050565b613c0f613c0a82613489565b613bec565b82525050565b6000613c218284613bfe565b60148201915081905092915050565b7f596f7520617265206e6f742057686974656c6973746564000000000000000000600082015250565b6000613c66601783613395565b9150613c7182613c30565b602082019050919050565b60006020820190508181036000830152613c9581613c59565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cd68261313d565b9150613ce18361313d565b9250828201905080821115613cf957613cf8613c9c565b5b92915050565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b6000613d35601b83613395565b9150613d4082613cff565b602082019050919050565b60006020820190508181036000830152613d6481613d28565b9050919050565b7f6d6178206d696e74207065722054782065786365656465640000000000000000600082015250565b6000613da1601883613395565b9150613dac82613d6b565b602082019050919050565b60006020820190508181036000830152613dd081613d94565b9050919050565b7f57686974656c697374204d6178537570706c7920657863656564656400000000600082015250565b6000613e0d601c83613395565b9150613e1882613dd7565b602082019050919050565b60006020820190508181036000830152613e3c81613e00565b9050919050565b6000613e4e8261313d565b9150613e598361313d565b9250828202613e678161313d565b91508282048414831517613e7e57613e7d613c9c565b5b5092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000613ebb601283613395565b9150613ec682613e85565b602082019050919050565b60006020820190508181036000830152613eea81613eae565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f3857607f821691505b602082108103613f4b57613f4a613ef1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f8b8261313d565b9150613f968361313d565b925082613fa657613fa5613f51565b5b828204905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026140137fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613fd6565b61401d8683613fd6565b95508019841693508086168417925050509392505050565b600061405061404b6140468461313d565b6135e5565b61313d565b9050919050565b6000819050919050565b61406a83614035565b61407e61407682614057565b848454613fe3565b825550505050565b600090565b614093614086565b61409e818484614061565b505050565b5b818110156140c2576140b760008261408b565b6001810190506140a4565b5050565b601f821115614107576140d881613fb1565b6140e184613fc6565b810160208510156140f0578190505b6141046140fc85613fc6565b8301826140a3565b50505b505050565b600082821c905092915050565b600061412a6000198460080261410c565b1980831691505092915050565b60006141438383614119565b9150826002028217905092915050565b61415c8261338a565b67ffffffffffffffff81111561417557614174613664565b5b61417f8254613f20565b61418a8282856140c6565b600060209050601f8311600181146141bd57600084156141ab578287015190505b6141b58582614137565b86555061421d565b601f1984166141cb86613fb1565b60005b828110156141f3578489015182556001820191506020850194506020810190506141ce565b86831015614210578489015161420c601f891682614119565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f53616c65206861736e2774207374617274656420796574000000000000000000600082015250565b600061428a601783613395565b915061429582614254565b602082019050919050565b600060208201905081810360008301526142b98161427d565b9050919050565b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b60006142f6601f83613395565b9150614301826142c0565b602082019050919050565b60006020820190508181036000830152614325816142e9565b9050919050565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b6000614362600a83613395565b915061436d8261432c565b602082019050919050565b6000602082019050818103600083015261439181614355565b9050919050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b60006143ce601683613395565b91506143d982614398565b602082019050919050565b600060208201905081810360008301526143fd816143c1565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b6000614460603083613395565b915061446b82614404565b604082019050919050565b6000602082019050818103600083015261448f81614453565b9050919050565b600081905092915050565b60006144ac8261338a565b6144b68185614496565b93506144c68185602086016133a6565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614508600583614496565b9150614513826144d2565b600582019050919050565b600061452a82856144a1565b915061453682846144a1565b9150614541826144fb565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145a9602683613395565b91506145b48261454d565b604082019050919050565b600060208201905081810360008301526145d88161459c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614615602083613395565b9150614620826145df565b602082019050919050565b6000602082019050818103600083015261464481614608565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614681601f83613395565b915061468c8261464b565b602082019050919050565b600060208201905081810360008301526146b081614674565b9050919050565b60006040820190506146cc600083018561349b565b6146d9602083018461349b565b9392505050565b6000815190506146ef81613240565b92915050565b60006020828403121561470b5761470a61317b565b5b6000614719848285016146e0565b91505092915050565b600061472d8261313d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361475f5761475e613c9c565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b60006147918261476a565b61479b8185614775565b93506147ab8185602086016133a6565b6147b4816133d0565b840191505092915050565b60006080820190506147d4600083018761349b565b6147e1602083018661349b565b6147ee6040830185613147565b81810360608301526148008184614786565b905095945050505050565b60008151905061481a816131b1565b92915050565b6000602082840312156148365761483561317b565b5b60006148448482850161480b565b9150509291505056fea264697066735822122097c276b4dafda66bd9d71215615e77c96febccc4c99039307919489bf65e834764736f6c63430008110033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d64534d6b5933614d6b6566705670334d526d455039567434645266445537417a6e31425232505757484873382f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d54774d78426a676870355579756357567a62764b393251376247387673385475366b42754755487a653245722f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103755760003560e01c80636c2d3c4f116101d1578063bde0608a11610102578063e268e4d3116100a0578063f2fde38b1161006f578063f2fde38b14610c68578063f3257cdd14610c91578063fea0e05814610cba578063ff64569114610ce357610375565b8063e268e4d314610bb0578063e985e9c514610bd9578063f12f6d5d14610c16578063f2c4ce1e14610c3f57610375565b8063c87b56dd116100dc578063c87b56dd14610ae0578063d5abeb0114610b1d578063d8ed370c14610b48578063dc33e68114610b7357610375565b8063bde0608a14610a63578063c2a2747b14610a8c578063c6f6f21614610ab757610375565b806395d89b411161016f578063a22cb46511610149578063a22cb465146109ca578063b88d4fde146109f3578063bc63f02e14610a0f578063bd7a199814610a3857610375565b806395d89b41146109465780639f404eef14610971578063a0712d68146109ae57610375565b80637cb64759116101ab5780637cb647591461088c5780638462151c146108b55780638da5cb5b146108f2578063940cd05b1461091d57610375565b80636c2d3c4f1461080d57806370a0823114610838578063715018a61461087557610375565b806333bc1c5c116102ab578063458c4f9e116102495780635a7adf7f116102235780635a7adf7f1461074f5780635c975abb1461077a5780636352211e146107a55780636c0360eb146107e257610375565b8063458c4f9e146106d257806351830227146106fb57806355f804b31461072657610375565b80633ccfd60b116102855780633ccfd60b1461065857806341f434341461066257806342842e0e1461068d57806344a0d68a146106a957610375565b806333bc1c5c146105c757806334aa3dfa146105f257806335f90f431461061b57610375565b8063095ea7b311610318578063149835a0116102f2578063149835a01461052c57806318160ddd1461055557806323b872dd146105805780632eb4a7ab1461059c57610375565b8063095ea7b3146104ba5780630bddb613146104d657806313faede61461050157610375565b8063036e4cb511610354578063036e4cb51461040b57806306fdde0314610427578063081812fc14610452578063081c8c441461048f57610375565b806277ec051461037a57806301ffc9a7146103a557806302329a29146103e2575b600080fd5b34801561038657600080fd5b5061038f610d0e565b60405161039c9190613156565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c791906131dd565b610d14565b6040516103d99190613225565b60405180910390f35b3480156103ee57600080fd5b506104096004803603810190610404919061326c565b610da6565b005b6104256004803603810190610420919061332a565b610dcb565b005b34801561043357600080fd5b5061043c611122565b604051610449919061341a565b60405180910390f35b34801561045e57600080fd5b506104796004803603810190610474919061343c565b6111b4565b60405161048691906134aa565b60405180910390f35b34801561049b57600080fd5b506104a4611233565b6040516104b1919061341a565b60405180910390f35b6104d460048036038101906104cf91906134f1565b6112c1565b005b3480156104e257600080fd5b506104eb611405565b6040516104f89190613156565b60405180910390f35b34801561050d57600080fd5b5061051661140b565b6040516105239190613156565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e919061343c565b611411565b005b34801561056157600080fd5b5061056a611423565b6040516105779190613156565b60405180910390f35b61059a60048036038101906105959190613531565b61143a565b005b3480156105a857600080fd5b506105b1611489565b6040516105be919061359d565b60405180910390f35b3480156105d357600080fd5b506105dc61148f565b6040516105e99190613225565b60405180910390f35b3480156105fe57600080fd5b506106196004803603810190610614919061343c565b6114a2565b005b34801561062757600080fd5b50610642600480360381019061063d91906135b8565b6114b4565b60405161064f9190613156565b60405180910390f35b6106606114cc565b005b34801561066e57600080fd5b5061067761156c565b6040516106849190613644565b60405180910390f35b6106a760048036038101906106a29190613531565b61157e565b005b3480156106b557600080fd5b506106d060048036038101906106cb919061343c565b6115cd565b005b3480156106de57600080fd5b506106f960048036038101906106f4919061343c565b6115df565b005b34801561070757600080fd5b506107106115f1565b60405161071d9190613225565b60405180910390f35b34801561073257600080fd5b5061074d6004803603810190610748919061378f565b611604565b005b34801561075b57600080fd5b5061076461161f565b6040516107719190613225565b60405180910390f35b34801561078657600080fd5b5061078f611632565b60405161079c9190613225565b60405180910390f35b3480156107b157600080fd5b506107cc60048036038101906107c7919061343c565b611645565b6040516107d991906134aa565b60405180910390f35b3480156107ee57600080fd5b506107f7611657565b604051610804919061341a565b60405180910390f35b34801561081957600080fd5b506108226116e5565b60405161082f9190613156565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a91906135b8565b6116eb565b60405161086c9190613156565b60405180910390f35b34801561088157600080fd5b5061088a6117a3565b005b34801561089857600080fd5b506108b360048036038101906108ae9190613804565b6117b7565b005b3480156108c157600080fd5b506108dc60048036038101906108d791906135b8565b6117c9565b6040516108e991906138ef565b60405180910390f35b3480156108fe57600080fd5b5061090761190c565b60405161091491906134aa565b60405180910390f35b34801561092957600080fd5b50610944600480360381019061093f919061326c565b611936565b005b34801561095257600080fd5b5061095b61195b565b604051610968919061341a565b60405180910390f35b34801561097d57600080fd5b50610998600480360381019061099391906135b8565b6119ed565b6040516109a59190613156565b60405180910390f35b6109c860048036038101906109c3919061343c565b611a05565b005b3480156109d657600080fd5b506109f160048036038101906109ec9190613911565b611ca7565b005b610a0d6004803603810190610a0891906139f2565b611db2565b005b348015610a1b57600080fd5b50610a366004803603810190610a319190613a75565b611e03565b005b348015610a4457600080fd5b50610a4d611e80565b604051610a5a9190613156565b60405180910390f35b348015610a6f57600080fd5b50610a8a6004803603810190610a85919061343c565b611e86565b005b348015610a9857600080fd5b50610aa1611e98565b604051610aae91906134aa565b60405180910390f35b348015610ac357600080fd5b50610ade6004803603810190610ad9919061343c565b611ebe565b005b348015610aec57600080fd5b50610b076004803603810190610b02919061343c565b611ed0565b604051610b14919061341a565b60405180910390f35b348015610b2957600080fd5b50610b32612025565b604051610b3f9190613156565b60405180910390f35b348015610b5457600080fd5b50610b5d61202b565b604051610b6a9190613156565b60405180910390f35b348015610b7f57600080fd5b50610b9a6004803603810190610b9591906135b8565b612031565b604051610ba79190613156565b60405180910390f35b348015610bbc57600080fd5b50610bd76004803603810190610bd2919061343c565b612043565b005b348015610be557600080fd5b50610c006004803603810190610bfb9190613ab5565b612055565b604051610c0d9190613225565b60405180910390f35b348015610c2257600080fd5b50610c3d6004803603810190610c38919061343c565b6120e9565b005b348015610c4b57600080fd5b50610c666004803603810190610c61919061378f565b6120fb565b005b348015610c7457600080fd5b50610c8f6004803603810190610c8a91906135b8565b612116565b005b348015610c9d57600080fd5b50610cb86004803603810190610cb3919061326c565b612199565b005b348015610cc657600080fd5b50610ce16004803603810190610cdc919061326c565b6121be565b005b348015610cef57600080fd5b50610cf86121e3565b604051610d059190613156565b60405180910390f35b60115481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d6f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d9f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610dae6121e9565b80601460006101000a81548160ff02191690831515021790555050565b610dd3612267565b601460009054906101000a900460ff1615610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90613b41565b60405180910390fd5b601460029054906101000a900460ff16610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990613bad565b60405180910390fd5b610ee6828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060155433604051602001610ecb9190613c15565b604051602081830303815290604052805190602001206122b6565b610f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1c90613c7c565b60405180910390fd5b6011548360176000610f356122cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f7a9190613ccb565b1115610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290613d4b565b60405180910390fd5b601354831115611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff790613db7565b60405180910390fd5b600f548361100c611423565b6110169190613ccb565b1115611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90613e23565b60405180910390fd5b82600d546110659190613e43565b3410156110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e90613ed1565b60405180910390fd5b82601760006110b46122cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110fd9190613ccb565b9250508190555061111561110f6122cd565b846122d5565b61111d6122f3565b505050565b60606002805461113190613f20565b80601f016020809104026020016040519081016040528092919081815260200182805461115d90613f20565b80156111aa5780601f1061117f576101008083540402835291602001916111aa565b820191906000526020600020905b81548152906001019060200180831161118d57829003601f168201915b5050505050905090565b60006111bf826122fd565b6111f5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b805461124090613f20565b80601f016020809104026020016040519081016040528092919081815260200182805461126c90613f20565b80156112b95780601f1061128e576101008083540402835291602001916112b9565b820191906000526020600020905b81548152906001019060200180831161129c57829003601f168201915b505050505081565b60006112cc82611645565b90508073ffffffffffffffffffffffffffffffffffffffff166112ed6122cd565b73ffffffffffffffffffffffffffffffffffffffff161461135057611319816113146122cd565b612055565b61134f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f5481565b600c5481565b6114196121e9565b80600e8190555050565b600061142d61235c565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114785761147733612365565b5b611483848484612462565b50505050565b60155481565b601460039054906101000a900460ff1681565b6114aa6121e9565b8060138190555050565b60176020528060005260406000206000915090505481565b6114d46121e9565b6114dc612267565b6000606480476114ec9190613e43565b6114f69190613f80565b9050601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611560573d6000803e3d6000fd5b505061156a6122f3565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146115bc576115bb33612365565b5b6115c7848484612784565b50505050565b6115d56121e9565b80600c8190555050565b6115e76121e9565b80600f8190555050565b601460019054906101000a900460ff1681565b61160c6121e9565b80600a908161161b9190614153565b5050565b601460029054906101000a900460ff1681565b601460009054906101000a900460ff1681565b6000611650826127a4565b9050919050565b600a805461166490613f20565b80601f016020809104026020016040519081016040528092919081815260200182805461169090613f20565b80156116dd5780601f106116b2576101008083540402835291602001916116dd565b820191906000526020600020905b8154815290600101906020018083116116c057829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611752576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6117ab6121e9565b6117b56000612870565b565b6117bf6121e9565b8060158190555050565b606060008060006117d9856116eb565b905060008167ffffffffffffffff8111156117f7576117f6613664565b5b6040519080825280602002602001820160405280156118255781602001602082028036833780820191505090505b5090506118306130ee565b600061183a61235c565b90505b8386146118fe5761184d81612936565b915081604001516118f357600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461189857816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118f257808387806001019850815181106118e5576118e4614225565b5b6020026020010181815250505b5b80600101905061183d565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61193e6121e9565b80601460016101000a81548160ff02191690831515021790555050565b60606003805461196a90613f20565b80601f016020809104026020016040519081016040528092919081815260200182805461199690613f20565b80156119e35780601f106119b8576101008083540402835291602001916119e3565b820191906000526020600020905b8154815290600101906020018083116119c657829003601f168201915b5050505050905090565b60166020528060005260406000206000915090505481565b611a0d612267565b601460009054906101000a900460ff1615611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490613b41565b60405180910390fd5b601460039054906101000a900460ff16611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa3906142a0565b60405180910390fd5b601254811115611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae89061430c565b60405180910390fd5b600e5481611afd611423565b611b079190613ccb565b1115611b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3f90614378565b60405180910390fd5b6010548160166000611b586122cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b9d9190613ccb565b1115611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd590613d4b565b60405180910390fd5b80600c54611bec9190613e43565b341015611c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2590613ed1565b60405180910390fd5b8060166000611c3b6122cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c849190613ccb565b92505081905550611c9c611c966122cd565b826122d5565b611ca46122f3565b50565b8060076000611cb46122cd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d616122cd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611da69190613225565b60405180910390a35050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611df057611def33612365565b5b611dfc85858585612961565b5050505050565b611e0b6121e9565b611e13612267565b600e5482611e1f611423565b611e299190613ccb565b1115611e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e61906143e4565b60405180910390fd5b611e7481836122d5565b611e7c6122f3565b5050565b60105481565b611e8e6121e9565b8060118190555050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ec66121e9565b8060128190555050565b6060611edb826122fd565b611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1190614476565b60405180910390fd5b60001515601460019054906101000a900460ff16151503611fc757600b8054611f4290613f20565b80601f0160208091040260200160405190810160405280929190818152602001828054611f6e90613f20565b8015611fbb5780601f10611f9057610100808354040283529160200191611fbb565b820191906000526020600020905b815481529060010190602001808311611f9e57829003601f168201915b50505050509050612020565b6000611fd16129d4565b90506000815111611ff1576040518060200160405280600081525061201c565b80611ffb84612a66565b60405160200161200c92919061451e565b6040516020818303038152906040525b9150505b919050565b600e5481565b60135481565b600061203c82612ab6565b9050919050565b61204b6121e9565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120f16121e9565b80600d8190555050565b6121036121e9565b80600b90816121129190614153565b5050565b61211e6121e9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361218d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612184906145bf565b60405180910390fd5b61219681612870565b50565b6121a16121e9565b80601460036101000a81548160ff02191690831515021790555050565b6121c66121e9565b80601460026101000a81548160ff02191690831515021790555050565b60125481565b6121f1612b0d565b73ffffffffffffffffffffffffffffffffffffffff1661220f61190c565b73ffffffffffffffffffffffffffffffffffffffff1614612265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225c9061462b565b60405180910390fd5b565b6002600954036122ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a390614697565b60405180910390fd5b6002600981905550565b6000826122c38584612b15565b1490509392505050565b600033905090565b6122ef828260405180602001604052806000815250612b6b565b5050565b6001600981905550565b60008161230861235c565b11158015612317575060005482105b8015612355575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006001905090565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561245f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016123dc9291906146b7565b602060405180830381865afa1580156123f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061241d91906146f5565b61245e57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161245591906134aa565b60405180910390fd5b5b50565b600061246d826127a4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146124d4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806124e084612c08565b915091506124f681876124f16122cd565b612c2f565b6125425761250b866125066122cd565b612055565b612541576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036125a8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125b58686866001612c73565b80156125c057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061268e8561266a888887612c79565b7c020000000000000000000000000000000000000000000000000000000017612ca1565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036127145760006001850190506000600460008381526020019081526020016000205403612712576000548114612711578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461277c8686866001612ccc565b505050505050565b61279f83838360405180602001604052806000815250611db2565b505050565b600080829050806127b361235c565b11612839576000548110156128385760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612836575b6000810361282c576004600083600190039350838152602001908152602001600020549050612802565b809250505061286b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61293e6130ee565b61295a6004600084815260200190815260200160002054612cd2565b9050919050565b61296c84848461143a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146129ce5761299784848484612d88565b6129cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600a80546129e390613f20565b80601f0160208091040260200160405190810160405280929190818152602001828054612a0f90613f20565b8015612a5c5780601f10612a3157610100808354040283529160200191612a5c565b820191906000526020600020905b815481529060010190602001808311612a3f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612aa157600184039350600a81066030018453600a8104905080612a7f575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60008082905060005b8451811015612b6057612b4b82868381518110612b3e57612b3d614225565b5b6020026020010151612ed8565b91508080612b5890614722565b915050612b1e565b508091505092915050565b612b758383612f03565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612c0357600080549050600083820390505b612bb56000868380600101945086612d88565b612beb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612ba2578160005414612c0057600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612c908686846130be565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612cda6130ee565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612dae6122cd565b8786866040518563ffffffff1660e01b8152600401612dd094939291906147bf565b6020604051808303816000875af1925050508015612e0c57506040513d601f19601f82011682018060405250810190612e099190614820565b60015b612e85573d8060008114612e3c576040519150601f19603f3d011682016040523d82523d6000602084013e612e41565b606091505b506000815103612e7d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000818310612ef057612eeb82846130c7565b612efb565b612efa83836130c7565b5b905092915050565b60008054905060008203612f43576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f506000848385612c73565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612fc783612fb86000866000612c79565b612fc1856130de565b17612ca1565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461306857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061302d565b50600082036130a3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506130b96000848385612ccc565b505050565b60009392505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000819050919050565b6131508161313d565b82525050565b600060208201905061316b6000830184613147565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131ba81613185565b81146131c557600080fd5b50565b6000813590506131d7816131b1565b92915050565b6000602082840312156131f3576131f261317b565b5b6000613201848285016131c8565b91505092915050565b60008115159050919050565b61321f8161320a565b82525050565b600060208201905061323a6000830184613216565b92915050565b6132498161320a565b811461325457600080fd5b50565b60008135905061326681613240565b92915050565b6000602082840312156132825761328161317b565b5b600061329084828501613257565b91505092915050565b6132a28161313d565b81146132ad57600080fd5b50565b6000813590506132bf81613299565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126132ea576132e96132c5565b5b8235905067ffffffffffffffff811115613307576133066132ca565b5b602083019150836020820283011115613323576133226132cf565b5b9250929050565b6000806000604084860312156133435761334261317b565b5b6000613351868287016132b0565b935050602084013567ffffffffffffffff81111561337257613371613180565b5b61337e868287016132d4565b92509250509250925092565b600081519050919050565b600082825260208201905092915050565b60005b838110156133c45780820151818401526020810190506133a9565b60008484015250505050565b6000601f19601f8301169050919050565b60006133ec8261338a565b6133f68185613395565b93506134068185602086016133a6565b61340f816133d0565b840191505092915050565b6000602082019050818103600083015261343481846133e1565b905092915050565b6000602082840312156134525761345161317b565b5b6000613460848285016132b0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061349482613469565b9050919050565b6134a481613489565b82525050565b60006020820190506134bf600083018461349b565b92915050565b6134ce81613489565b81146134d957600080fd5b50565b6000813590506134eb816134c5565b92915050565b600080604083850312156135085761350761317b565b5b6000613516858286016134dc565b9250506020613527858286016132b0565b9150509250929050565b60008060006060848603121561354a5761354961317b565b5b6000613558868287016134dc565b9350506020613569868287016134dc565b925050604061357a868287016132b0565b9150509250925092565b6000819050919050565b61359781613584565b82525050565b60006020820190506135b2600083018461358e565b92915050565b6000602082840312156135ce576135cd61317b565b5b60006135dc848285016134dc565b91505092915050565b6000819050919050565b600061360a61360561360084613469565b6135e5565b613469565b9050919050565b600061361c826135ef565b9050919050565b600061362e82613611565b9050919050565b61363e81613623565b82525050565b60006020820190506136596000830184613635565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61369c826133d0565b810181811067ffffffffffffffff821117156136bb576136ba613664565b5b80604052505050565b60006136ce613171565b90506136da8282613693565b919050565b600067ffffffffffffffff8211156136fa576136f9613664565b5b613703826133d0565b9050602081019050919050565b82818337600083830152505050565b600061373261372d846136df565b6136c4565b90508281526020810184848401111561374e5761374d61365f565b5b613759848285613710565b509392505050565b600082601f830112613776576137756132c5565b5b813561378684826020860161371f565b91505092915050565b6000602082840312156137a5576137a461317b565b5b600082013567ffffffffffffffff8111156137c3576137c2613180565b5b6137cf84828501613761565b91505092915050565b6137e181613584565b81146137ec57600080fd5b50565b6000813590506137fe816137d8565b92915050565b60006020828403121561381a5761381961317b565b5b6000613828848285016137ef565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6138668161313d565b82525050565b6000613878838361385d565b60208301905092915050565b6000602082019050919050565b600061389c82613831565b6138a6818561383c565b93506138b18361384d565b8060005b838110156138e25781516138c9888261386c565b97506138d483613884565b9250506001810190506138b5565b5085935050505092915050565b600060208201905081810360008301526139098184613891565b905092915050565b600080604083850312156139285761392761317b565b5b6000613936858286016134dc565b925050602061394785828601613257565b9150509250929050565b600067ffffffffffffffff82111561396c5761396b613664565b5b613975826133d0565b9050602081019050919050565b600061399561399084613951565b6136c4565b9050828152602081018484840111156139b1576139b061365f565b5b6139bc848285613710565b509392505050565b600082601f8301126139d9576139d86132c5565b5b81356139e9848260208601613982565b91505092915050565b60008060008060808587031215613a0c57613a0b61317b565b5b6000613a1a878288016134dc565b9450506020613a2b878288016134dc565b9350506040613a3c878288016132b0565b925050606085013567ffffffffffffffff811115613a5d57613a5c613180565b5b613a69878288016139c4565b91505092959194509250565b60008060408385031215613a8c57613a8b61317b565b5b6000613a9a858286016132b0565b9250506020613aab858286016134dc565b9150509250929050565b60008060408385031215613acc57613acb61317b565b5b6000613ada858286016134dc565b9250506020613aeb858286016134dc565b9150509250929050565b7f6f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b6000613b2b601783613395565b9150613b3682613af5565b602082019050919050565b60006020820190508181036000830152613b5a81613b1e565b9050919050565b7f50726573616c65206861736e2774207374617274656420796574000000000000600082015250565b6000613b97601a83613395565b9150613ba282613b61565b602082019050919050565b60006020820190508181036000830152613bc681613b8a565b9050919050565b60008160601b9050919050565b6000613be582613bcd565b9050919050565b6000613bf782613bda565b9050919050565b613c0f613c0a82613489565b613bec565b82525050565b6000613c218284613bfe565b60148201915081905092915050565b7f596f7520617265206e6f742057686974656c6973746564000000000000000000600082015250565b6000613c66601783613395565b9150613c7182613c30565b602082019050919050565b60006020820190508181036000830152613c9581613c59565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cd68261313d565b9150613ce18361313d565b9250828201905080821115613cf957613cf8613c9c565b5b92915050565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b6000613d35601b83613395565b9150613d4082613cff565b602082019050919050565b60006020820190508181036000830152613d6481613d28565b9050919050565b7f6d6178206d696e74207065722054782065786365656465640000000000000000600082015250565b6000613da1601883613395565b9150613dac82613d6b565b602082019050919050565b60006020820190508181036000830152613dd081613d94565b9050919050565b7f57686974656c697374204d6178537570706c7920657863656564656400000000600082015250565b6000613e0d601c83613395565b9150613e1882613dd7565b602082019050919050565b60006020820190508181036000830152613e3c81613e00565b9050919050565b6000613e4e8261313d565b9150613e598361313d565b9250828202613e678161313d565b91508282048414831517613e7e57613e7d613c9c565b5b5092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000613ebb601283613395565b9150613ec682613e85565b602082019050919050565b60006020820190508181036000830152613eea81613eae565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f3857607f821691505b602082108103613f4b57613f4a613ef1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f8b8261313d565b9150613f968361313d565b925082613fa657613fa5613f51565b5b828204905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026140137fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613fd6565b61401d8683613fd6565b95508019841693508086168417925050509392505050565b600061405061404b6140468461313d565b6135e5565b61313d565b9050919050565b6000819050919050565b61406a83614035565b61407e61407682614057565b848454613fe3565b825550505050565b600090565b614093614086565b61409e818484614061565b505050565b5b818110156140c2576140b760008261408b565b6001810190506140a4565b5050565b601f821115614107576140d881613fb1565b6140e184613fc6565b810160208510156140f0578190505b6141046140fc85613fc6565b8301826140a3565b50505b505050565b600082821c905092915050565b600061412a6000198460080261410c565b1980831691505092915050565b60006141438383614119565b9150826002028217905092915050565b61415c8261338a565b67ffffffffffffffff81111561417557614174613664565b5b61417f8254613f20565b61418a8282856140c6565b600060209050601f8311600181146141bd57600084156141ab578287015190505b6141b58582614137565b86555061421d565b601f1984166141cb86613fb1565b60005b828110156141f3578489015182556001820191506020850194506020810190506141ce565b86831015614210578489015161420c601f891682614119565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f53616c65206861736e2774207374617274656420796574000000000000000000600082015250565b600061428a601783613395565b915061429582614254565b602082019050919050565b600060208201905081810360008301526142b98161427d565b9050919050565b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b60006142f6601f83613395565b9150614301826142c0565b602082019050919050565b60006020820190508181036000830152614325816142e9565b9050919050565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b6000614362600a83613395565b915061436d8261432c565b602082019050919050565b6000602082019050818103600083015261439181614355565b9050919050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b60006143ce601683613395565b91506143d982614398565b602082019050919050565b600060208201905081810360008301526143fd816143c1565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b6000614460603083613395565b915061446b82614404565b604082019050919050565b6000602082019050818103600083015261448f81614453565b9050919050565b600081905092915050565b60006144ac8261338a565b6144b68185614496565b93506144c68185602086016133a6565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614508600583614496565b9150614513826144d2565b600582019050919050565b600061452a82856144a1565b915061453682846144a1565b9150614541826144fb565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145a9602683613395565b91506145b48261454d565b604082019050919050565b600060208201905081810360008301526145d88161459c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614615602083613395565b9150614620826145df565b602082019050919050565b6000602082019050818103600083015261464481614608565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614681601f83613395565b915061468c8261464b565b602082019050919050565b600060208201905081810360008301526146b081614674565b9050919050565b60006040820190506146cc600083018561349b565b6146d9602083018461349b565b9392505050565b6000815190506146ef81613240565b92915050565b60006020828403121561470b5761470a61317b565b5b6000614719848285016146e0565b91505092915050565b600061472d8261313d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361475f5761475e613c9c565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b60006147918261476a565b61479b8185614775565b93506147ab8185602086016133a6565b6147b4816133d0565b840191505092915050565b60006080820190506147d4600083018761349b565b6147e1602083018661349b565b6147ee6040830185613147565b81810360608301526148008184614786565b905095945050505050565b60008151905061481a816131b1565b92915050565b6000602082840312156148365761483561317b565b5b60006148448482850161480b565b9150509291505056fea264697066735822122097c276b4dafda66bd9d71215615e77c96febccc4c99039307919489bf65e834764736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d64534d6b5933614d6b6566705670334d526d455039567434645266445537417a6e31425232505757484873382f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d54774d78426a676870355579756357567a62764b393251376247387673385475366b42754755487a653245722f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmdSMkY3aMkefpVp3MRmEP9Vt4dRfDU7Azn1BR2PWWHHs8/
Arg [1] : _notRevealedUri (string): ipfs://QmTwMxBjghp5UyucWVzbvK92Q7bG8vs8Tu6kBuGUHze2Er/hidden.json

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d64534d6b5933614d6b6566705670334d526d4550395674
Arg [4] : 34645266445537417a6e31425232505757484873382f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [6] : 697066733a2f2f516d54774d78426a676870355579756357567a62764b393251
Arg [7] : 376247387673385475366b42754755487a653245722f68696464656e2e6a736f
Arg [8] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

79828:7744:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80192:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45592:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86364:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81822:761;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46494:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52985:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79946:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52418:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80093:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79979:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85748:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42245:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87017:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80530:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80495:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85294:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80613:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86818:162;;;:::i;:::-;;7735:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87190:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85451:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85906:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80430:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86032:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80463:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80400:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47887:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79920:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80017:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43429:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26371:103;;;;;;;;;;;;;:::i;:::-;;84690:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83642:881;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25723:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84545:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46670:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80560:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81200:577;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53543:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87371:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82638:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80127:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84995:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80669:62;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85149:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82913:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80057:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80329:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83470:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84847:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53934:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85605:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86164:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26629:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86673:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86512:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80262:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80192:33;;;;:::o;45592:639::-;45677:4;46016:10;46001:25;;:11;:25;;;;:102;;;;46093:10;46078:25;;:11;:25;;;;46001:102;:179;;;;46170:10;46155:25;;:11;:25;;;;46001:179;45981:199;;45592:639;;;:::o;86364:73::-;25609:13;:11;:13::i;:::-;86425:6:::1;86416;;:15;;;;;;;;;;;;;;;;;;86364:73:::0;:::o;81822:761::-;22994:21;:19;:21::i;:::-;81935:6:::1;;;;;;;;;;;81934:7;81926:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;81984:7;;;;;;;;;;;81976:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;82037:84;82056:11;;82037:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82069:10;;82108;82091:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;82081:39;;;;;;82037:18;:84::i;:::-;82029:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;82213:14;;82203:6;82164:15;:36;82180:19;:17;:19::i;:::-;82164:36;;;;;;;;;;;;;;;;:45;;;;:::i;:::-;:63;;82156:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;82284:10;;82274:6;:20;;82266:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;82364:8;;82354:6;82338:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:34;;82330:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;82442:6;82433;;:15;;;;:::i;:::-;82420:9;:28;;82412:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;82524:6;82484:15;:36;82500:19;:17;:19::i;:::-;82484:36;;;;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;;;;;;;82539:38;82549:19;:17;:19::i;:::-;82570:6;82539:9;:38::i;:::-;23038:20:::0;:18;:20::i;:::-;81822:761;;;:::o;46494:100::-;46548:13;46581:5;46574:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46494:100;:::o;52985:218::-;53061:7;53086:16;53094:7;53086;:16::i;:::-;53081:64;;53111:34;;;;;;;;;;;;;;53081:64;53165:15;:24;53181:7;53165:24;;;;;;;;;;;:30;;;;;;;;;;;;53158:37;;52985:218;;;:::o;79946:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52418:408::-;52507:13;52523:16;52531:7;52523;:16::i;:::-;52507:32;;52579:5;52556:28;;:19;:17;:19::i;:::-;:28;;;52552:175;;52604:44;52621:5;52628:19;:17;:19::i;:::-;52604:16;:44::i;:::-;52599:128;;52676:35;;;;;;;;;;;;;;52599:128;52552:175;52772:2;52739:15;:24;52755:7;52739:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;52810:7;52806:2;52790:28;;52799:5;52790:28;;;;;;;;;;;;52496:330;52418:408;;:::o;80093:29::-;;;;:::o;79979:33::-;;;;:::o;85748:94::-;25609:13;:11;:13::i;:::-;85826:10:::1;85814:9;:22;;;;85748:94:::0;:::o;42245:323::-;42306:7;42534:15;:13;:15::i;:::-;42519:12;;42503:13;;:28;:46;42496:53;;42245:323;:::o;87017:165::-;87126:4;9251:10;9243:18;;:4;:18;;;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;9239:83;87139:37:::1;87158:4;87164:2;87168:7;87139:18;:37::i;:::-;87017:165:::0;;;;:::o;80530:25::-;;;;:::o;80495:30::-;;;;;;;;;;;;;:::o;85294:88::-;25609:13;:11;:13::i;:::-;85370:6:::1;85357:10;:19;;;;85294:88:::0;:::o;80613:51::-;;;;;;;;;;;;;;;;;:::o;86818:162::-;25609:13;:11;:13::i;:::-;22994:21:::1;:19;:21::i;:::-;86885:14:::2;86932:3;86926::::0;86902:21:::2;:27;;;;:::i;:::-;:33;;;;:::i;:::-;86885:50;;86954:2;;;;;;;;;;;86946:20;;:28;86967:6;86946:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;86876:104;23038:20:::1;:18;:20::i;:::-;86818:162::o:0;7735:143::-;151:42;7735:143;:::o;87190:173::-;87303:4;9251:10;9243:18;;:4;:18;;;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;9239:83;87316:41:::1;87339:4;87345:2;87349:7;87316:22;:41::i;:::-;87190:173:::0;;;;:::o;85451:80::-;25609:13;:11;:13::i;:::-;85517:8:::1;85510:4;:15;;;;85451:80:::0;:::o;85906:92::-;25609:13;:11;:13::i;:::-;85982:10:::1;85971:8;:21;;;;85906:92:::0;:::o;80430:28::-;;;;;;;;;;;;;:::o;86032:98::-;25609:13;:11;:13::i;:::-;86113:11:::1;86103:7;:21;;;;;;:::i;:::-;;86032:98:::0;:::o;80463:27::-;;;;;;;;;;;;;:::o;80400:25::-;;;;;;;;;;;;;:::o;47887:152::-;47959:7;48002:27;48021:7;48002:18;:27::i;:::-;47979:52;;47887:152;;;:::o;79920:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;80017:35::-;;;;:::o;43429:233::-;43501:7;43542:1;43525:19;;:5;:19;;;43521:60;;43553:28;;;;;;;;;;;;;;43521:60;37588:13;43599:18;:25;43618:5;43599:25;;;;;;;;;;;;;;;;:55;43592:62;;43429:233;;;:::o;26371:103::-;25609:13;:11;:13::i;:::-;26436:30:::1;26463:1;26436:18;:30::i;:::-;26371:103::o:0;84690:106::-;25609:13;:11;:13::i;:::-;84777:11:::1;84764:10;:24;;;;84690:106:::0;:::o;83642:881::-;83701:16;83755:19;83789:25;83829:22;83854:16;83864:5;83854:9;:16::i;:::-;83829:41;;83885:25;83927:14;83913:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83885:57;;83957:31;;:::i;:::-;84008:9;84020:15;:13;:15::i;:::-;84008:27;;84003:472;84052:14;84037:11;:29;84003:472;;84104:15;84117:1;84104:12;:15::i;:::-;84092:27;;84142:9;:16;;;84183:8;84138:73;84259:1;84233:28;;:9;:14;;;:28;;;84229:111;;84306:9;:14;;;84286:34;;84229:111;84383:5;84362:26;;:17;:26;;;84358:102;;84439:1;84413:8;84422:13;;;;;;84413:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;84358:102;84003:472;84068:3;;;;;84003:472;;;;84496:8;84489:15;;;;;;;83642:881;;;:::o;25723:87::-;25769:7;25796:6;;;;;;;;;;;25789:13;;25723:87;:::o;84545:78::-;25609:13;:11;:13::i;:::-;84611:6:::1;84600:8;;:17;;;;;;;;;;;;;;;;;;84545:78:::0;:::o;46670:104::-;46726:13;46759:7;46752:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46670:104;:::o;80560:48::-;;;;;;;;;;;;;;;;;:::o;81200:577::-;22994:21;:19;:21::i;:::-;81274:6:::1;;;;;;;;;;;81273:7;81265:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;81323:10;;;;;;;;;;;81315:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;81386:8;;81376:6;:18;;81368:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;81471:9;;81461:6;81445:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;81437:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;81556:12;;81546:6;81510:12;:33;81523:19;:17;:19::i;:::-;81510:33;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;:58;;81502:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;81635:6;81628:4;;:13;;;;:::i;:::-;81615:9;:26;;81607:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;81712:6;81675:12;:33;81688:19;:17;:19::i;:::-;81675:33;;;;;;;;;;;;;;;;:43;;;;;;;:::i;:::-;;;;;;;;81727:38;81737:19;:17;:19::i;:::-;81758:6;81727:9;:38::i;:::-;23038:20:::0;:18;:20::i;:::-;81200:577;:::o;53543:234::-;53690:8;53638:18;:39;53657:19;:17;:19::i;:::-;53638:39;;;;;;;;;;;;;;;:49;53678:8;53638:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;53750:8;53714:55;;53729:19;:17;:19::i;:::-;53714:55;;;53760:8;53714:55;;;;;;:::i;:::-;;;;;;;;53543:234;;:::o;87371:198::-;87503:4;9251:10;9243:18;;:4;:18;;;9239:83;;9278:32;9299:10;9278:20;:32::i;:::-;9239:83;87516:47:::1;87539:4;87545:2;87549:7;87558:4;87516:22;:47::i;:::-;87371:198:::0;;;;;:::o;82638:223::-;25609:13;:11;:13::i;:::-;22994:21:::1;:19;:21::i;:::-;82773:9:::2;;82758:11;82742:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;82734:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;82820:35;82830:11;82843;82820:9;:35::i;:::-;23038:20:::1;:18;:20::i;:::-;82638:223:::0;;:::o;80127:31::-;;;;:::o;84995:96::-;25609:13;:11;:13::i;:::-;85079:6:::1;85062:14;:23;;;;84995:96:::0;:::o;80669:62::-;;;;;;;;;;;;;:::o;85149:84::-;25609:13;:11;:13::i;:::-;85221:6:::1;85210:8;:17;;;;85149:84:::0;:::o;82913:492::-;83011:13;83052:16;83060:7;83052;:16::i;:::-;83036:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;83162:5;83150:17;;:8;;;;;;;;;;;:17;;;83147:62;;83187:14;83180:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83147:62;83217:28;83248:10;:8;:10::i;:::-;83217:41;;83303:1;83278:14;83272:28;:32;:127;;;;;;;;;;;;;;;;;83340:14;83356:18;83366:7;83356:9;:18::i;:::-;83323:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;83272:127;83265:134;;;82913:492;;;;:::o;80057:31::-;;;;:::o;80329:29::-;;;;:::o;83470:107::-;83528:7;83551:20;83565:5;83551:13;:20::i;:::-;83544:27;;83470:107;;;:::o;84847:92::-;25609:13;:11;:13::i;:::-;84927:6:::1;84912:12;:21;;;;84847:92:::0;:::o;53934:164::-;54031:4;54055:18;:25;54074:5;54055:25;;;;;;;;;;;;;;;:35;54081:8;54055:35;;;;;;;;;;;;;;;;;;;;;;;;;54048:42;;53934:164;;;;:::o;85605:88::-;25609:13;:11;:13::i;:::-;85677:10:::1;85668:6;:19;;;;85605:88:::0;:::o;86164:120::-;25609:13;:11;:13::i;:::-;86263:15:::1;86246:14;:32;;;;;;:::i;:::-;;86164:120:::0;:::o;26629:201::-;25609:13;:11;:13::i;:::-;26738:1:::1;26718:22;;:8;:22;;::::0;26710:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;26794:28;26813:8;26794:18;:28::i;:::-;26629:201:::0;:::o;86673:96::-;25609:13;:11;:13::i;:::-;86755:6:::1;86742:10;;:19;;;;;;;;;;;;;;;;;;86673:96:::0;:::o;86512:90::-;25609:13;:11;:13::i;:::-;86588:6:::1;86578:7;;:16;;;;;;;;;;;;;;;;;;86512:90:::0;:::o;80262:27::-;;;;:::o;25888:132::-;25963:12;:10;:12::i;:::-;25952:23;;:7;:5;:7::i;:::-;:23;;;25944:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25888:132::o;23074:293::-;22476:1;23208:7;;:19;23200:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22476:1;23341:7;:18;;;;23074:293::o;12310:190::-;12435:4;12488;12459:25;12472:5;12479:4;12459:12;:25::i;:::-;:33;12452:40;;12310:190;;;;;:::o;76664:105::-;76724:7;76751:10;76744:17;;76664:105;:::o;70496:112::-;70573:27;70583:2;70587:8;70573:27;;;;;;;;;;;;:9;:27::i;:::-;70496:112;;:::o;23375:213::-;22432:1;23558:7;:22;;;;23375:213::o;54356:282::-;54421:4;54477:7;54458:15;:13;:15::i;:::-;:26;;:66;;;;;54511:13;;54501:7;:23;54458:66;:153;;;;;54610:1;38364:8;54562:17;:26;54580:7;54562:26;;;;;;;;;;;;:44;:49;54458:153;54438:173;;54356:282;;;:::o;81064:101::-;81129:7;81156:1;81149:8;;81064:101;:::o;9660:647::-;9899:1;151:42;9851:45;;;:49;9847:453;;;151:42;10150;;;10201:4;10208:8;10150:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10145:144;;10264:8;10245:28;;;;;;;;;;;:::i;:::-;;;;;;;;10145:144;9847:453;9660:647;:::o;56624:2825::-;56766:27;56796;56815:7;56796:18;:27::i;:::-;56766:57;;56881:4;56840:45;;56856:19;56840:45;;;56836:86;;56894:28;;;;;;;;;;;;;;56836:86;56936:27;56965:23;56992:35;57019:7;56992:26;:35::i;:::-;56935:92;;;;57127:68;57152:15;57169:4;57175:19;:17;:19::i;:::-;57127:24;:68::i;:::-;57122:180;;57215:43;57232:4;57238:19;:17;:19::i;:::-;57215:16;:43::i;:::-;57210:92;;57267:35;;;;;;;;;;;;;;57210:92;57122:180;57333:1;57319:16;;:2;:16;;;57315:52;;57344:23;;;;;;;;;;;;;;57315:52;57380:43;57402:4;57408:2;57412:7;57421:1;57380:21;:43::i;:::-;57516:15;57513:160;;;57656:1;57635:19;57628:30;57513:160;58053:18;:24;58072:4;58053:24;;;;;;;;;;;;;;;;58051:26;;;;;;;;;;;;58122:18;:22;58141:2;58122:22;;;;;;;;;;;;;;;;58120:24;;;;;;;;;;;58444:146;58481:2;58530:45;58545:4;58551:2;58555:19;58530:14;:45::i;:::-;38644:8;58502:73;58444:18;:146::i;:::-;58415:17;:26;58433:7;58415:26;;;;;;;;;;;:175;;;;58761:1;38644:8;58710:19;:47;:52;58706:627;;58783:19;58815:1;58805:7;:11;58783:33;;58972:1;58938:17;:30;58956:11;58938:30;;;;;;;;;;;;:35;58934:384;;59076:13;;59061:11;:28;59057:242;;59256:19;59223:17;:30;59241:11;59223:30;;;;;;;;;;;:52;;;;59057:242;58934:384;58764:569;58706:627;59380:7;59376:2;59361:27;;59370:4;59361:27;;;;;;;;;;;;59399:42;59420:4;59426:2;59430:7;59439:1;59399:20;:42::i;:::-;56755:2694;;;56624:2825;;;:::o;59545:193::-;59691:39;59708:4;59714:2;59718:7;59691:39;;;;;;;;;;;;:16;:39::i;:::-;59545:193;;;:::o;49042:1275::-;49109:7;49129:12;49144:7;49129:22;;49212:4;49193:15;:13;:15::i;:::-;:23;49189:1061;;49246:13;;49239:4;:20;49235:1015;;;49284:14;49301:17;:23;49319:4;49301:23;;;;;;;;;;;;49284:40;;49418:1;38364:8;49390:6;:24;:29;49386:845;;50055:113;50072:1;50062:6;:11;50055:113;;50115:17;:25;50133:6;;;;;;;50115:25;;;;;;;;;;;;50106:34;;50055:113;;;50201:6;50194:13;;;;;;49386:845;49261:989;49235:1015;49189:1061;50278:31;;;;;;;;;;;;;;49042:1275;;;;:::o;26990:191::-;27064:16;27083:6;;;;;;;;;;;27064:25;;27109:8;27100:6;;:17;;;;;;;;;;;;;;;;;;27164:8;27133:40;;27154:8;27133:40;;;;;;;;;;;;27053:128;26990:191;:::o;48490:161::-;48558:21;;:::i;:::-;48599:44;48618:17;:24;48636:5;48618:24;;;;;;;;;;;;48599:18;:44::i;:::-;48592:51;;48490:161;;;:::o;60336:407::-;60511:31;60524:4;60530:2;60534:7;60511:12;:31::i;:::-;60575:1;60557:2;:14;;;:19;60553:183;;60596:56;60627:4;60633:2;60637:7;60646:5;60596:30;:56::i;:::-;60591:145;;60680:40;;;;;;;;;;;;;;60591:145;60553:183;60336:407;;;;:::o;80954:102::-;81014:13;81043:7;81036:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80954:102;:::o;76871:1745::-;76936:17;77370:4;77363;77357:11;77353:22;77462:1;77456:4;77449:15;77537:4;77534:1;77530:12;77523:19;;77619:1;77614:3;77607:14;77723:3;77962:5;77944:428;77970:1;77944:428;;;78010:1;78005:3;78001:11;77994:18;;78181:2;78175:4;78171:13;78167:2;78163:22;78158:3;78150:36;78275:2;78269:4;78265:13;78257:21;;78342:4;77944:428;78332:25;77944:428;77948:21;78411:3;78406;78402:13;78526:4;78521:3;78517:14;78510:21;;78591:6;78586:3;78579:19;76975:1634;;;76871:1745;;;:::o;43744:178::-;43805:7;37588:13;37726:2;43833:18;:25;43852:5;43833:25;;;;;;;;;;;;;;;;:50;;43832:82;43825:89;;43744:178;;;:::o;24274:98::-;24327:7;24354:10;24347:17;;24274:98;:::o;13177:296::-;13260:7;13280:20;13303:4;13280:27;;13323:9;13318:118;13342:5;:12;13338:1;:16;13318:118;;;13391:33;13401:12;13415:5;13421:1;13415:8;;;;;;;;:::i;:::-;;;;;;;;13391:9;:33::i;:::-;13376:48;;13356:3;;;;;:::i;:::-;;;;13318:118;;;;13453:12;13446:19;;;13177:296;;;;:::o;69723:689::-;69854:19;69860:2;69864:8;69854:5;:19::i;:::-;69933:1;69915:2;:14;;;:19;69911:483;;69955:11;69969:13;;69955:27;;70001:13;70023:8;70017:3;:14;70001:30;;70050:233;70081:62;70120:1;70124:2;70128:7;;;;;;70137:5;70081:30;:62::i;:::-;70076:167;;70179:40;;;;;;;;;;;;;;70076:167;70278:3;70270:5;:11;70050:233;;70365:3;70348:13;;:20;70344:34;;70370:8;;;70344:34;69936:458;;69911:483;69723:689;;;:::o;55519:485::-;55621:27;55650:23;55691:38;55732:15;:24;55748:7;55732:24;;;;;;;;;;;55691:65;;55909:18;55886:41;;55966:19;55960:26;55941:45;;55871:126;55519:485;;;:::o;54747:659::-;54896:11;55061:16;55054:5;55050:28;55041:37;;55221:16;55210:9;55206:32;55193:45;;55371:15;55360:9;55357:30;55349:5;55338:9;55335:20;55332:56;55322:66;;54747:659;;;;;:::o;61405:159::-;;;;;:::o;75973:311::-;76108:7;76128:16;38768:3;76154:19;:41;;76128:68;;38768:3;76222:31;76233:4;76239:2;76243:9;76222:10;:31::i;:::-;76214:40;;:62;;76207:69;;;75973:311;;;;;:::o;50865:450::-;50945:14;51113:16;51106:5;51102:28;51093:37;;51290:5;51276:11;51251:23;51247:41;51244:52;51237:5;51234:63;51224:73;;50865:450;;;;:::o;62229:158::-;;;;;:::o;50416:366::-;50482:31;;:::i;:::-;50559:6;50526:9;:14;;:41;;;;;;;;;;;38247:3;50612:6;:33;;50578:9;:24;;:68;;;;;;;;;;;50704:1;38364:8;50676:6;:24;:29;;50657:9;:16;;:48;;;;;;;;;;;38768:3;50745:6;:28;;50716:9;:19;;:58;;;;;;;;;;;50416:366;;;:::o;62827:716::-;62990:4;63036:2;63011:45;;;63057:19;:17;:19::i;:::-;63078:4;63084:7;63093:5;63011:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;63007:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63311:1;63294:6;:13;:18;63290:235;;63340:40;;;;;;;;;;;;;;63290:235;63483:6;63477:13;63468:6;63464:2;63460:15;63453:38;63007:529;63180:54;;;63170:64;;;:6;:64;;;;63163:71;;;62827:716;;;;;;:::o;20217:149::-;20280:7;20311:1;20307;:5;:51;;20338:20;20353:1;20356;20338:14;:20::i;:::-;20307:51;;;20315:20;20330:1;20333;20315:14;:20::i;:::-;20307:51;20300:58;;20217:149;;;;:::o;64005:2966::-;64078:20;64101:13;;64078:36;;64141:1;64129:8;:13;64125:44;;64151:18;;;;;;;;;;;;;;64125:44;64182:61;64212:1;64216:2;64220:12;64234:8;64182:21;:61::i;:::-;64726:1;37726:2;64696:1;:26;;64695:32;64683:8;:45;64657:18;:22;64676:2;64657:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;65005:139;65042:2;65096:33;65119:1;65123:2;65127:1;65096:14;:33::i;:::-;65063:30;65084:8;65063:20;:30::i;:::-;:66;65005:18;:139::i;:::-;64971:17;:31;64989:12;64971:31;;;;;;;;;;;:173;;;;65161:16;65192:11;65221:8;65206:12;:23;65192:37;;65742:16;65738:2;65734:25;65722:37;;66114:12;66074:8;66033:1;65971:25;65912:1;65851;65824:335;66485:1;66471:12;66467:20;66425:346;66526:3;66517:7;66514:16;66425:346;;66744:7;66734:8;66731:1;66704:25;66701:1;66698;66693:59;66579:1;66570:7;66566:15;66555:26;;66425:346;;;66429:77;66816:1;66804:8;:13;66800:45;;66826:19;;;;;;;;;;;;;;66800:45;66878:3;66862:13;:19;;;;64431:2462;;66903:60;66932:1;66936:2;66940:12;66954:8;66903:20;:60::i;:::-;64067:2904;64005:2966;;:::o;75674:147::-;75811:6;75674:147;;;;;:::o;20374:268::-;20442:13;20549:1;20543:4;20536:15;20578:1;20572:4;20565:15;20619:4;20613;20603:21;20594:30;;20374:268;;;;:::o;51417:324::-;51487:14;51720:1;51710:8;51707:15;51681:24;51677:46;51667:56;;51417:324;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:75::-;475:6;508:2;502:9;492:19;;442:75;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745:12;769:149;805:7;845:66;838:5;834:78;823:89;;769:149;;;:::o;924:120::-;996:23;1013:5;996:23;:::i;:::-;989:5;986:34;976:62;;1034:1;1031;1024:12;976:62;924:120;:::o;1050:137::-;1095:5;1133:6;1120:20;1111:29;;1149:32;1175:5;1149:32;:::i;:::-;1050:137;;;;:::o;1193:327::-;1251:6;1300:2;1288:9;1279:7;1275:23;1271:32;1268:119;;;1306:79;;:::i;:::-;1268:119;1426:1;1451:52;1495:7;1486:6;1475:9;1471:22;1451:52;:::i;:::-;1441:62;;1397:116;1193:327;;;;:::o;1526:90::-;1560:7;1603:5;1596:13;1589:21;1578:32;;1526:90;;;:::o;1622:109::-;1703:21;1718:5;1703:21;:::i;:::-;1698:3;1691:34;1622:109;;:::o;1737:210::-;1824:4;1862:2;1851:9;1847:18;1839:26;;1875:65;1937:1;1926:9;1922:17;1913:6;1875:65;:::i;:::-;1737:210;;;;:::o;1953:116::-;2023:21;2038:5;2023:21;:::i;:::-;2016:5;2013:32;2003:60;;2059:1;2056;2049:12;2003:60;1953:116;:::o;2075:133::-;2118:5;2156:6;2143:20;2134:29;;2172:30;2196:5;2172:30;:::i;:::-;2075:133;;;;:::o;2214:323::-;2270:6;2319:2;2307:9;2298:7;2294:23;2290:32;2287:119;;;2325:79;;:::i;:::-;2287:119;2445:1;2470:50;2512:7;2503:6;2492:9;2488:22;2470:50;:::i;:::-;2460:60;;2416:114;2214:323;;;;:::o;2543:122::-;2616:24;2634:5;2616:24;:::i;:::-;2609:5;2606:35;2596:63;;2655:1;2652;2645:12;2596:63;2543:122;:::o;2671:139::-;2717:5;2755:6;2742:20;2733:29;;2771:33;2798:5;2771:33;:::i;:::-;2671:139;;;;:::o;2816:117::-;2925:1;2922;2915:12;2939:117;3048:1;3045;3038:12;3062:117;3171:1;3168;3161:12;3202:568;3275:8;3285:6;3335:3;3328:4;3320:6;3316:17;3312:27;3302:122;;3343:79;;:::i;:::-;3302:122;3456:6;3443:20;3433:30;;3486:18;3478:6;3475:30;3472:117;;;3508:79;;:::i;:::-;3472:117;3622:4;3614:6;3610:17;3598:29;;3676:3;3668:4;3660:6;3656:17;3646:8;3642:32;3639:41;3636:128;;;3683:79;;:::i;:::-;3636:128;3202:568;;;;;:::o;3776:704::-;3871:6;3879;3887;3936:2;3924:9;3915:7;3911:23;3907:32;3904:119;;;3942:79;;:::i;:::-;3904:119;4062:1;4087:53;4132:7;4123:6;4112:9;4108:22;4087:53;:::i;:::-;4077:63;;4033:117;4217:2;4206:9;4202:18;4189:32;4248:18;4240:6;4237:30;4234:117;;;4270:79;;:::i;:::-;4234:117;4383:80;4455:7;4446:6;4435:9;4431:22;4383:80;:::i;:::-;4365:98;;;;4160:313;3776:704;;;;;:::o;4486:99::-;4538:6;4572:5;4566:12;4556:22;;4486:99;;;:::o;4591:169::-;4675:11;4709:6;4704:3;4697:19;4749:4;4744:3;4740:14;4725:29;;4591:169;;;;:::o;4766:246::-;4847:1;4857:113;4871:6;4868:1;4865:13;4857:113;;;4956:1;4951:3;4947:11;4941:18;4937:1;4932:3;4928:11;4921:39;4893:2;4890:1;4886:10;4881:15;;4857:113;;;5004:1;4995:6;4990:3;4986:16;4979:27;4828:184;4766:246;;;:::o;5018:102::-;5059:6;5110:2;5106:7;5101:2;5094:5;5090:14;5086:28;5076:38;;5018:102;;;:::o;5126:377::-;5214:3;5242:39;5275:5;5242:39;:::i;:::-;5297:71;5361:6;5356:3;5297:71;:::i;:::-;5290:78;;5377:65;5435:6;5430:3;5423:4;5416:5;5412:16;5377:65;:::i;:::-;5467:29;5489:6;5467:29;:::i;:::-;5462:3;5458:39;5451:46;;5218:285;5126:377;;;;:::o;5509:313::-;5622:4;5660:2;5649:9;5645:18;5637:26;;5709:9;5703:4;5699:20;5695:1;5684:9;5680:17;5673:47;5737:78;5810:4;5801:6;5737:78;:::i;:::-;5729:86;;5509:313;;;;:::o;5828:329::-;5887:6;5936:2;5924:9;5915:7;5911:23;5907:32;5904:119;;;5942:79;;:::i;:::-;5904:119;6062:1;6087:53;6132:7;6123:6;6112:9;6108:22;6087:53;:::i;:::-;6077:63;;6033:117;5828:329;;;;:::o;6163:126::-;6200:7;6240:42;6233:5;6229:54;6218:65;;6163:126;;;:::o;6295:96::-;6332:7;6361:24;6379:5;6361:24;:::i;:::-;6350:35;;6295:96;;;:::o;6397:118::-;6484:24;6502:5;6484:24;:::i;:::-;6479:3;6472:37;6397:118;;:::o;6521:222::-;6614:4;6652:2;6641:9;6637:18;6629:26;;6665:71;6733:1;6722:9;6718:17;6709:6;6665:71;:::i;:::-;6521:222;;;;:::o;6749:122::-;6822:24;6840:5;6822:24;:::i;:::-;6815:5;6812:35;6802:63;;6861:1;6858;6851:12;6802:63;6749:122;:::o;6877:139::-;6923:5;6961:6;6948:20;6939:29;;6977:33;7004:5;6977:33;:::i;:::-;6877:139;;;;:::o;7022:474::-;7090:6;7098;7147:2;7135:9;7126:7;7122:23;7118:32;7115:119;;;7153:79;;:::i;:::-;7115:119;7273:1;7298:53;7343:7;7334:6;7323:9;7319:22;7298:53;:::i;:::-;7288:63;;7244:117;7400:2;7426:53;7471:7;7462:6;7451:9;7447:22;7426:53;:::i;:::-;7416:63;;7371:118;7022:474;;;;;:::o;7502:619::-;7579:6;7587;7595;7644:2;7632:9;7623:7;7619:23;7615:32;7612:119;;;7650:79;;:::i;:::-;7612:119;7770:1;7795:53;7840:7;7831:6;7820:9;7816:22;7795:53;:::i;:::-;7785:63;;7741:117;7897:2;7923:53;7968:7;7959:6;7948:9;7944:22;7923:53;:::i;:::-;7913:63;;7868:118;8025:2;8051:53;8096:7;8087:6;8076:9;8072:22;8051:53;:::i;:::-;8041:63;;7996:118;7502:619;;;;;:::o;8127:77::-;8164:7;8193:5;8182:16;;8127:77;;;:::o;8210:118::-;8297:24;8315:5;8297:24;:::i;:::-;8292:3;8285:37;8210:118;;:::o;8334:222::-;8427:4;8465:2;8454:9;8450:18;8442:26;;8478:71;8546:1;8535:9;8531:17;8522:6;8478:71;:::i;:::-;8334:222;;;;:::o;8562:329::-;8621:6;8670:2;8658:9;8649:7;8645:23;8641:32;8638:119;;;8676:79;;:::i;:::-;8638:119;8796:1;8821:53;8866:7;8857:6;8846:9;8842:22;8821:53;:::i;:::-;8811:63;;8767:117;8562:329;;;;:::o;8897:60::-;8925:3;8946:5;8939:12;;8897:60;;;:::o;8963:142::-;9013:9;9046:53;9064:34;9073:24;9091:5;9073:24;:::i;:::-;9064:34;:::i;:::-;9046:53;:::i;:::-;9033:66;;8963:142;;;:::o;9111:126::-;9161:9;9194:37;9225:5;9194:37;:::i;:::-;9181:50;;9111:126;;;:::o;9243:157::-;9324:9;9357:37;9388:5;9357:37;:::i;:::-;9344:50;;9243:157;;;:::o;9406:193::-;9524:68;9586:5;9524:68;:::i;:::-;9519:3;9512:81;9406:193;;:::o;9605:284::-;9729:4;9767:2;9756:9;9752:18;9744:26;;9780:102;9879:1;9868:9;9864:17;9855:6;9780:102;:::i;:::-;9605:284;;;;:::o;9895:117::-;10004:1;10001;9994:12;10018:180;10066:77;10063:1;10056:88;10163:4;10160:1;10153:15;10187:4;10184:1;10177:15;10204:281;10287:27;10309:4;10287:27;:::i;:::-;10279:6;10275:40;10417:6;10405:10;10402:22;10381:18;10369:10;10366:34;10363:62;10360:88;;;10428:18;;:::i;:::-;10360:88;10468:10;10464:2;10457:22;10247:238;10204:281;;:::o;10491:129::-;10525:6;10552:20;;:::i;:::-;10542:30;;10581:33;10609:4;10601:6;10581:33;:::i;:::-;10491:129;;;:::o;10626:308::-;10688:4;10778:18;10770:6;10767:30;10764:56;;;10800:18;;:::i;:::-;10764:56;10838:29;10860:6;10838:29;:::i;:::-;10830:37;;10922:4;10916;10912:15;10904:23;;10626:308;;;:::o;10940:146::-;11037:6;11032:3;11027;11014:30;11078:1;11069:6;11064:3;11060:16;11053:27;10940:146;;;:::o;11092:425::-;11170:5;11195:66;11211:49;11253:6;11211:49;:::i;:::-;11195:66;:::i;:::-;11186:75;;11284:6;11277:5;11270:21;11322:4;11315:5;11311:16;11360:3;11351:6;11346:3;11342:16;11339:25;11336:112;;;11367:79;;:::i;:::-;11336:112;11457:54;11504:6;11499:3;11494;11457:54;:::i;:::-;11176:341;11092:425;;;;;:::o;11537:340::-;11593:5;11642:3;11635:4;11627:6;11623:17;11619:27;11609:122;;11650:79;;:::i;:::-;11609:122;11767:6;11754:20;11792:79;11867:3;11859:6;11852:4;11844:6;11840:17;11792:79;:::i;:::-;11783:88;;11599:278;11537:340;;;;:::o;11883:509::-;11952:6;12001:2;11989:9;11980:7;11976:23;11972:32;11969:119;;;12007:79;;:::i;:::-;11969:119;12155:1;12144:9;12140:17;12127:31;12185:18;12177:6;12174:30;12171:117;;;12207:79;;:::i;:::-;12171:117;12312:63;12367:7;12358:6;12347:9;12343:22;12312:63;:::i;:::-;12302:73;;12098:287;11883:509;;;;:::o;12398:122::-;12471:24;12489:5;12471:24;:::i;:::-;12464:5;12461:35;12451:63;;12510:1;12507;12500:12;12451:63;12398:122;:::o;12526:139::-;12572:5;12610:6;12597:20;12588:29;;12626:33;12653:5;12626:33;:::i;:::-;12526:139;;;;:::o;12671:329::-;12730:6;12779:2;12767:9;12758:7;12754:23;12750:32;12747:119;;;12785:79;;:::i;:::-;12747:119;12905:1;12930:53;12975:7;12966:6;12955:9;12951:22;12930:53;:::i;:::-;12920:63;;12876:117;12671:329;;;;:::o;13006:114::-;13073:6;13107:5;13101:12;13091:22;;13006:114;;;:::o;13126:184::-;13225:11;13259:6;13254:3;13247:19;13299:4;13294:3;13290:14;13275:29;;13126:184;;;;:::o;13316:132::-;13383:4;13406:3;13398:11;;13436:4;13431:3;13427:14;13419:22;;13316:132;;;:::o;13454:108::-;13531:24;13549:5;13531:24;:::i;:::-;13526:3;13519:37;13454:108;;:::o;13568:179::-;13637:10;13658:46;13700:3;13692:6;13658:46;:::i;:::-;13736:4;13731:3;13727:14;13713:28;;13568:179;;;;:::o;13753:113::-;13823:4;13855;13850:3;13846:14;13838:22;;13753:113;;;:::o;13902:732::-;14021:3;14050:54;14098:5;14050:54;:::i;:::-;14120:86;14199:6;14194:3;14120:86;:::i;:::-;14113:93;;14230:56;14280:5;14230:56;:::i;:::-;14309:7;14340:1;14325:284;14350:6;14347:1;14344:13;14325:284;;;14426:6;14420:13;14453:63;14512:3;14497:13;14453:63;:::i;:::-;14446:70;;14539:60;14592:6;14539:60;:::i;:::-;14529:70;;14385:224;14372:1;14369;14365:9;14360:14;;14325:284;;;14329:14;14625:3;14618:10;;14026:608;;;13902:732;;;;:::o;14640:373::-;14783:4;14821:2;14810:9;14806:18;14798:26;;14870:9;14864:4;14860:20;14856:1;14845:9;14841:17;14834:47;14898:108;15001:4;14992:6;14898:108;:::i;:::-;14890:116;;14640:373;;;;:::o;15019:468::-;15084:6;15092;15141:2;15129:9;15120:7;15116:23;15112:32;15109:119;;;15147:79;;:::i;:::-;15109:119;15267:1;15292:53;15337:7;15328:6;15317:9;15313:22;15292:53;:::i;:::-;15282:63;;15238:117;15394:2;15420:50;15462:7;15453:6;15442:9;15438:22;15420:50;:::i;:::-;15410:60;;15365:115;15019:468;;;;;:::o;15493:307::-;15554:4;15644:18;15636:6;15633:30;15630:56;;;15666:18;;:::i;:::-;15630:56;15704:29;15726:6;15704:29;:::i;:::-;15696:37;;15788:4;15782;15778:15;15770:23;;15493:307;;;:::o;15806:423::-;15883:5;15908:65;15924:48;15965:6;15924:48;:::i;:::-;15908:65;:::i;:::-;15899:74;;15996:6;15989:5;15982:21;16034:4;16027:5;16023:16;16072:3;16063:6;16058:3;16054:16;16051:25;16048:112;;;16079:79;;:::i;:::-;16048:112;16169:54;16216:6;16211:3;16206;16169:54;:::i;:::-;15889:340;15806:423;;;;;:::o;16248:338::-;16303:5;16352:3;16345:4;16337:6;16333:17;16329:27;16319:122;;16360:79;;:::i;:::-;16319:122;16477:6;16464:20;16502:78;16576:3;16568:6;16561:4;16553:6;16549:17;16502:78;:::i;:::-;16493:87;;16309:277;16248:338;;;;:::o;16592:943::-;16687:6;16695;16703;16711;16760:3;16748:9;16739:7;16735:23;16731:33;16728:120;;;16767:79;;:::i;:::-;16728:120;16887:1;16912:53;16957:7;16948:6;16937:9;16933:22;16912:53;:::i;:::-;16902:63;;16858:117;17014:2;17040:53;17085:7;17076:6;17065:9;17061:22;17040:53;:::i;:::-;17030:63;;16985:118;17142:2;17168:53;17213:7;17204:6;17193:9;17189:22;17168:53;:::i;:::-;17158:63;;17113:118;17298:2;17287:9;17283:18;17270:32;17329:18;17321:6;17318:30;17315:117;;;17351:79;;:::i;:::-;17315:117;17456:62;17510:7;17501:6;17490:9;17486:22;17456:62;:::i;:::-;17446:72;;17241:287;16592:943;;;;;;;:::o;17541:474::-;17609:6;17617;17666:2;17654:9;17645:7;17641:23;17637:32;17634:119;;;17672:79;;:::i;:::-;17634:119;17792:1;17817:53;17862:7;17853:6;17842:9;17838:22;17817:53;:::i;:::-;17807:63;;17763:117;17919:2;17945:53;17990:7;17981:6;17970:9;17966:22;17945:53;:::i;:::-;17935:63;;17890:118;17541:474;;;;;:::o;18021:::-;18089:6;18097;18146:2;18134:9;18125:7;18121:23;18117:32;18114:119;;;18152:79;;:::i;:::-;18114:119;18272:1;18297:53;18342:7;18333:6;18322:9;18318:22;18297:53;:::i;:::-;18287:63;;18243:117;18399:2;18425:53;18470:7;18461:6;18450:9;18446:22;18425:53;:::i;:::-;18415:63;;18370:118;18021:474;;;;;:::o;18501:173::-;18641:25;18637:1;18629:6;18625:14;18618:49;18501:173;:::o;18680:366::-;18822:3;18843:67;18907:2;18902:3;18843:67;:::i;:::-;18836:74;;18919:93;19008:3;18919:93;:::i;:::-;19037:2;19032:3;19028:12;19021:19;;18680:366;;;:::o;19052:419::-;19218:4;19256:2;19245:9;19241:18;19233:26;;19305:9;19299:4;19295:20;19291:1;19280:9;19276:17;19269:47;19333:131;19459:4;19333:131;:::i;:::-;19325:139;;19052:419;;;:::o;19477:176::-;19617:28;19613:1;19605:6;19601:14;19594:52;19477:176;:::o;19659:366::-;19801:3;19822:67;19886:2;19881:3;19822:67;:::i;:::-;19815:74;;19898:93;19987:3;19898:93;:::i;:::-;20016:2;20011:3;20007:12;20000:19;;19659:366;;;:::o;20031:419::-;20197:4;20235:2;20224:9;20220:18;20212:26;;20284:9;20278:4;20274:20;20270:1;20259:9;20255:17;20248:47;20312:131;20438:4;20312:131;:::i;:::-;20304:139;;20031:419;;;:::o;20456:94::-;20489:8;20537:5;20533:2;20529:14;20508:35;;20456:94;;;:::o;20556:::-;20595:7;20624:20;20638:5;20624:20;:::i;:::-;20613:31;;20556:94;;;:::o;20656:100::-;20695:7;20724:26;20744:5;20724:26;:::i;:::-;20713:37;;20656:100;;;:::o;20762:157::-;20867:45;20887:24;20905:5;20887:24;:::i;:::-;20867:45;:::i;:::-;20862:3;20855:58;20762:157;;:::o;20925:256::-;21037:3;21052:75;21123:3;21114:6;21052:75;:::i;:::-;21152:2;21147:3;21143:12;21136:19;;21172:3;21165:10;;20925:256;;;;:::o;21187:173::-;21327:25;21323:1;21315:6;21311:14;21304:49;21187:173;:::o;21366:366::-;21508:3;21529:67;21593:2;21588:3;21529:67;:::i;:::-;21522:74;;21605:93;21694:3;21605:93;:::i;:::-;21723:2;21718:3;21714:12;21707:19;;21366:366;;;:::o;21738:419::-;21904:4;21942:2;21931:9;21927:18;21919:26;;21991:9;21985:4;21981:20;21977:1;21966:9;21962:17;21955:47;22019:131;22145:4;22019:131;:::i;:::-;22011:139;;21738:419;;;:::o;22163:180::-;22211:77;22208:1;22201:88;22308:4;22305:1;22298:15;22332:4;22329:1;22322:15;22349:191;22389:3;22408:20;22426:1;22408:20;:::i;:::-;22403:25;;22442:20;22460:1;22442:20;:::i;:::-;22437:25;;22485:1;22482;22478:9;22471:16;;22506:3;22503:1;22500:10;22497:36;;;22513:18;;:::i;:::-;22497:36;22349:191;;;;:::o;22546:177::-;22686:29;22682:1;22674:6;22670:14;22663:53;22546:177;:::o;22729:366::-;22871:3;22892:67;22956:2;22951:3;22892:67;:::i;:::-;22885:74;;22968:93;23057:3;22968:93;:::i;:::-;23086:2;23081:3;23077:12;23070:19;;22729:366;;;:::o;23101:419::-;23267:4;23305:2;23294:9;23290:18;23282:26;;23354:9;23348:4;23344:20;23340:1;23329:9;23325:17;23318:47;23382:131;23508:4;23382:131;:::i;:::-;23374:139;;23101:419;;;:::o;23526:174::-;23666:26;23662:1;23654:6;23650:14;23643:50;23526:174;:::o;23706:366::-;23848:3;23869:67;23933:2;23928:3;23869:67;:::i;:::-;23862:74;;23945:93;24034:3;23945:93;:::i;:::-;24063:2;24058:3;24054:12;24047:19;;23706:366;;;:::o;24078:419::-;24244:4;24282:2;24271:9;24267:18;24259:26;;24331:9;24325:4;24321:20;24317:1;24306:9;24302:17;24295:47;24359:131;24485:4;24359:131;:::i;:::-;24351:139;;24078:419;;;:::o;24503:178::-;24643:30;24639:1;24631:6;24627:14;24620:54;24503:178;:::o;24687:366::-;24829:3;24850:67;24914:2;24909:3;24850:67;:::i;:::-;24843:74;;24926:93;25015:3;24926:93;:::i;:::-;25044:2;25039:3;25035:12;25028:19;;24687:366;;;:::o;25059:419::-;25225:4;25263:2;25252:9;25248:18;25240:26;;25312:9;25306:4;25302:20;25298:1;25287:9;25283:17;25276:47;25340:131;25466:4;25340:131;:::i;:::-;25332:139;;25059:419;;;:::o;25484:410::-;25524:7;25547:20;25565:1;25547:20;:::i;:::-;25542:25;;25581:20;25599:1;25581:20;:::i;:::-;25576:25;;25636:1;25633;25629:9;25658:30;25676:11;25658:30;:::i;:::-;25647:41;;25837:1;25828:7;25824:15;25821:1;25818:22;25798:1;25791:9;25771:83;25748:139;;25867:18;;:::i;:::-;25748:139;25532:362;25484:410;;;;:::o;25900:168::-;26040:20;26036:1;26028:6;26024:14;26017:44;25900:168;:::o;26074:366::-;26216:3;26237:67;26301:2;26296:3;26237:67;:::i;:::-;26230:74;;26313:93;26402:3;26313:93;:::i;:::-;26431:2;26426:3;26422:12;26415:19;;26074:366;;;:::o;26446:419::-;26612:4;26650:2;26639:9;26635:18;26627:26;;26699:9;26693:4;26689:20;26685:1;26674:9;26670:17;26663:47;26727:131;26853:4;26727:131;:::i;:::-;26719:139;;26446:419;;;:::o;26871:180::-;26919:77;26916:1;26909:88;27016:4;27013:1;27006:15;27040:4;27037:1;27030:15;27057:320;27101:6;27138:1;27132:4;27128:12;27118:22;;27185:1;27179:4;27175:12;27206:18;27196:81;;27262:4;27254:6;27250:17;27240:27;;27196:81;27324:2;27316:6;27313:14;27293:18;27290:38;27287:84;;27343:18;;:::i;:::-;27287:84;27108:269;27057:320;;;:::o;27383:180::-;27431:77;27428:1;27421:88;27528:4;27525:1;27518:15;27552:4;27549:1;27542:15;27569:185;27609:1;27626:20;27644:1;27626:20;:::i;:::-;27621:25;;27660:20;27678:1;27660:20;:::i;:::-;27655:25;;27699:1;27689:35;;27704:18;;:::i;:::-;27689:35;27746:1;27743;27739:9;27734:14;;27569:185;;;;:::o;27760:141::-;27809:4;27832:3;27824:11;;27855:3;27852:1;27845:14;27889:4;27886:1;27876:18;27868:26;;27760:141;;;:::o;27907:93::-;27944:6;27991:2;27986;27979:5;27975:14;27971:23;27961:33;;27907:93;;;:::o;28006:107::-;28050:8;28100:5;28094:4;28090:16;28069:37;;28006:107;;;;:::o;28119:393::-;28188:6;28238:1;28226:10;28222:18;28261:97;28291:66;28280:9;28261:97;:::i;:::-;28379:39;28409:8;28398:9;28379:39;:::i;:::-;28367:51;;28451:4;28447:9;28440:5;28436:21;28427:30;;28500:4;28490:8;28486:19;28479:5;28476:30;28466:40;;28195:317;;28119:393;;;;;:::o;28518:142::-;28568:9;28601:53;28619:34;28628:24;28646:5;28628:24;:::i;:::-;28619:34;:::i;:::-;28601:53;:::i;:::-;28588:66;;28518:142;;;:::o;28666:75::-;28709:3;28730:5;28723:12;;28666:75;;;:::o;28747:269::-;28857:39;28888:7;28857:39;:::i;:::-;28918:91;28967:41;28991:16;28967:41;:::i;:::-;28959:6;28952:4;28946:11;28918:91;:::i;:::-;28912:4;28905:105;28823:193;28747:269;;;:::o;29022:73::-;29067:3;29022:73;:::o;29101:189::-;29178:32;;:::i;:::-;29219:65;29277:6;29269;29263:4;29219:65;:::i;:::-;29154:136;29101:189;;:::o;29296:186::-;29356:120;29373:3;29366:5;29363:14;29356:120;;;29427:39;29464:1;29457:5;29427:39;:::i;:::-;29400:1;29393:5;29389:13;29380:22;;29356:120;;;29296:186;;:::o;29488:543::-;29589:2;29584:3;29581:11;29578:446;;;29623:38;29655:5;29623:38;:::i;:::-;29707:29;29725:10;29707:29;:::i;:::-;29697:8;29693:44;29890:2;29878:10;29875:18;29872:49;;;29911:8;29896:23;;29872:49;29934:80;29990:22;30008:3;29990:22;:::i;:::-;29980:8;29976:37;29963:11;29934:80;:::i;:::-;29593:431;;29578:446;29488:543;;;:::o;30037:117::-;30091:8;30141:5;30135:4;30131:16;30110:37;;30037:117;;;;:::o;30160:169::-;30204:6;30237:51;30285:1;30281:6;30273:5;30270:1;30266:13;30237:51;:::i;:::-;30233:56;30318:4;30312;30308:15;30298:25;;30211:118;30160:169;;;;:::o;30334:295::-;30410:4;30556:29;30581:3;30575:4;30556:29;:::i;:::-;30548:37;;30618:3;30615:1;30611:11;30605:4;30602:21;30594:29;;30334:295;;;;:::o;30634:1395::-;30751:37;30784:3;30751:37;:::i;:::-;30853:18;30845:6;30842:30;30839:56;;;30875:18;;:::i;:::-;30839:56;30919:38;30951:4;30945:11;30919:38;:::i;:::-;31004:67;31064:6;31056;31050:4;31004:67;:::i;:::-;31098:1;31122:4;31109:17;;31154:2;31146:6;31143:14;31171:1;31166:618;;;;31828:1;31845:6;31842:77;;;31894:9;31889:3;31885:19;31879:26;31870:35;;31842:77;31945:67;32005:6;31998:5;31945:67;:::i;:::-;31939:4;31932:81;31801:222;31136:887;;31166:618;31218:4;31214:9;31206:6;31202:22;31252:37;31284:4;31252:37;:::i;:::-;31311:1;31325:208;31339:7;31336:1;31333:14;31325:208;;;31418:9;31413:3;31409:19;31403:26;31395:6;31388:42;31469:1;31461:6;31457:14;31447:24;;31516:2;31505:9;31501:18;31488:31;;31362:4;31359:1;31355:12;31350:17;;31325:208;;;31561:6;31552:7;31549:19;31546:179;;;31619:9;31614:3;31610:19;31604:26;31662:48;31704:4;31696:6;31692:17;31681:9;31662:48;:::i;:::-;31654:6;31647:64;31569:156;31546:179;31771:1;31767;31759:6;31755:14;31751:22;31745:4;31738:36;31173:611;;;31136:887;;30726:1303;;;30634:1395;;:::o;32035:180::-;32083:77;32080:1;32073:88;32180:4;32177:1;32170:15;32204:4;32201:1;32194:15;32221:173;32361:25;32357:1;32349:6;32345:14;32338:49;32221:173;:::o;32400:366::-;32542:3;32563:67;32627:2;32622:3;32563:67;:::i;:::-;32556:74;;32639:93;32728:3;32639:93;:::i;:::-;32757:2;32752:3;32748:12;32741:19;;32400:366;;;:::o;32772:419::-;32938:4;32976:2;32965:9;32961:18;32953:26;;33025:9;33019:4;33015:20;33011:1;33000:9;32996:17;32989:47;33053:131;33179:4;33053:131;:::i;:::-;33045:139;;32772:419;;;:::o;33197:181::-;33337:33;33333:1;33325:6;33321:14;33314:57;33197:181;:::o;33384:366::-;33526:3;33547:67;33611:2;33606:3;33547:67;:::i;:::-;33540:74;;33623:93;33712:3;33623:93;:::i;:::-;33741:2;33736:3;33732:12;33725:19;;33384:366;;;:::o;33756:419::-;33922:4;33960:2;33949:9;33945:18;33937:26;;34009:9;34003:4;33999:20;33995:1;33984:9;33980:17;33973:47;34037:131;34163:4;34037:131;:::i;:::-;34029:139;;33756:419;;;:::o;34181:160::-;34321:12;34317:1;34309:6;34305:14;34298:36;34181:160;:::o;34347:366::-;34489:3;34510:67;34574:2;34569:3;34510:67;:::i;:::-;34503:74;;34586:93;34675:3;34586:93;:::i;:::-;34704:2;34699:3;34695:12;34688:19;;34347:366;;;:::o;34719:419::-;34885:4;34923:2;34912:9;34908:18;34900:26;;34972:9;34966:4;34962:20;34958:1;34947:9;34943:17;34936:47;35000:131;35126:4;35000:131;:::i;:::-;34992:139;;34719:419;;;:::o;35144:172::-;35284:24;35280:1;35272:6;35268:14;35261:48;35144:172;:::o;35322:366::-;35464:3;35485:67;35549:2;35544:3;35485:67;:::i;:::-;35478:74;;35561:93;35650:3;35561:93;:::i;:::-;35679:2;35674:3;35670:12;35663:19;;35322:366;;;:::o;35694:419::-;35860:4;35898:2;35887:9;35883:18;35875:26;;35947:9;35941:4;35937:20;35933:1;35922:9;35918:17;35911:47;35975:131;36101:4;35975:131;:::i;:::-;35967:139;;35694:419;;;:::o;36119:235::-;36259:34;36255:1;36247:6;36243:14;36236:58;36328:18;36323:2;36315:6;36311:15;36304:43;36119:235;:::o;36360:366::-;36502:3;36523:67;36587:2;36582:3;36523:67;:::i;:::-;36516:74;;36599:93;36688:3;36599:93;:::i;:::-;36717:2;36712:3;36708:12;36701:19;;36360:366;;;:::o;36732:419::-;36898:4;36936:2;36925:9;36921:18;36913:26;;36985:9;36979:4;36975:20;36971:1;36960:9;36956:17;36949:47;37013:131;37139:4;37013:131;:::i;:::-;37005:139;;36732:419;;;:::o;37157:148::-;37259:11;37296:3;37281:18;;37157:148;;;;:::o;37311:390::-;37417:3;37445:39;37478:5;37445:39;:::i;:::-;37500:89;37582:6;37577:3;37500:89;:::i;:::-;37493:96;;37598:65;37656:6;37651:3;37644:4;37637:5;37633:16;37598:65;:::i;:::-;37688:6;37683:3;37679:16;37672:23;;37421:280;37311:390;;;;:::o;37707:155::-;37847:7;37843:1;37835:6;37831:14;37824:31;37707:155;:::o;37868:400::-;38028:3;38049:84;38131:1;38126:3;38049:84;:::i;:::-;38042:91;;38142:93;38231:3;38142:93;:::i;:::-;38260:1;38255:3;38251:11;38244:18;;37868:400;;;:::o;38274:701::-;38555:3;38577:95;38668:3;38659:6;38577:95;:::i;:::-;38570:102;;38689:95;38780:3;38771:6;38689:95;:::i;:::-;38682:102;;38801:148;38945:3;38801:148;:::i;:::-;38794:155;;38966:3;38959:10;;38274:701;;;;;:::o;38981:225::-;39121:34;39117:1;39109:6;39105:14;39098:58;39190:8;39185:2;39177:6;39173:15;39166:33;38981:225;:::o;39212:366::-;39354:3;39375:67;39439:2;39434:3;39375:67;:::i;:::-;39368:74;;39451:93;39540:3;39451:93;:::i;:::-;39569:2;39564:3;39560:12;39553:19;;39212:366;;;:::o;39584:419::-;39750:4;39788:2;39777:9;39773:18;39765:26;;39837:9;39831:4;39827:20;39823:1;39812:9;39808:17;39801:47;39865:131;39991:4;39865:131;:::i;:::-;39857:139;;39584:419;;;:::o;40009:182::-;40149:34;40145:1;40137:6;40133:14;40126:58;40009:182;:::o;40197:366::-;40339:3;40360:67;40424:2;40419:3;40360:67;:::i;:::-;40353:74;;40436:93;40525:3;40436:93;:::i;:::-;40554:2;40549:3;40545:12;40538:19;;40197:366;;;:::o;40569:419::-;40735:4;40773:2;40762:9;40758:18;40750:26;;40822:9;40816:4;40812:20;40808:1;40797:9;40793:17;40786:47;40850:131;40976:4;40850:131;:::i;:::-;40842:139;;40569:419;;;:::o;40994:181::-;41134:33;41130:1;41122:6;41118:14;41111:57;40994:181;:::o;41181:366::-;41323:3;41344:67;41408:2;41403:3;41344:67;:::i;:::-;41337:74;;41420:93;41509:3;41420:93;:::i;:::-;41538:2;41533:3;41529:12;41522:19;;41181:366;;;:::o;41553:419::-;41719:4;41757:2;41746:9;41742:18;41734:26;;41806:9;41800:4;41796:20;41792:1;41781:9;41777:17;41770:47;41834:131;41960:4;41834:131;:::i;:::-;41826:139;;41553:419;;;:::o;41978:332::-;42099:4;42137:2;42126:9;42122:18;42114:26;;42150:71;42218:1;42207:9;42203:17;42194:6;42150:71;:::i;:::-;42231:72;42299:2;42288:9;42284:18;42275:6;42231:72;:::i;:::-;41978:332;;;;;:::o;42316:137::-;42370:5;42401:6;42395:13;42386:22;;42417:30;42441:5;42417:30;:::i;:::-;42316:137;;;;:::o;42459:345::-;42526:6;42575:2;42563:9;42554:7;42550:23;42546:32;42543:119;;;42581:79;;:::i;:::-;42543:119;42701:1;42726:61;42779:7;42770:6;42759:9;42755:22;42726:61;:::i;:::-;42716:71;;42672:125;42459:345;;;;:::o;42810:233::-;42849:3;42872:24;42890:5;42872:24;:::i;:::-;42863:33;;42918:66;42911:5;42908:77;42905:103;;42988:18;;:::i;:::-;42905:103;43035:1;43028:5;43024:13;43017:20;;42810:233;;;:::o;43049:98::-;43100:6;43134:5;43128:12;43118:22;;43049:98;;;:::o;43153:168::-;43236:11;43270:6;43265:3;43258:19;43310:4;43305:3;43301:14;43286:29;;43153:168;;;;:::o;43327:373::-;43413:3;43441:38;43473:5;43441:38;:::i;:::-;43495:70;43558:6;43553:3;43495:70;:::i;:::-;43488:77;;43574:65;43632:6;43627:3;43620:4;43613:5;43609:16;43574:65;:::i;:::-;43664:29;43686:6;43664:29;:::i;:::-;43659:3;43655:39;43648:46;;43417:283;43327:373;;;;:::o;43706:640::-;43901:4;43939:3;43928:9;43924:19;43916:27;;43953:71;44021:1;44010:9;44006:17;43997:6;43953:71;:::i;:::-;44034:72;44102:2;44091:9;44087:18;44078:6;44034:72;:::i;:::-;44116;44184:2;44173:9;44169:18;44160:6;44116:72;:::i;:::-;44235:9;44229:4;44225:20;44220:2;44209:9;44205:18;44198:48;44263:76;44334:4;44325:6;44263:76;:::i;:::-;44255:84;;43706:640;;;;;;;:::o;44352:141::-;44408:5;44439:6;44433:13;44424:22;;44455:32;44481:5;44455:32;:::i;:::-;44352:141;;;;:::o;44499:349::-;44568:6;44617:2;44605:9;44596:7;44592:23;44588:32;44585:119;;;44623:79;;:::i;:::-;44585:119;44743:1;44768:63;44823:7;44814:6;44803:9;44799:22;44768:63;:::i;:::-;44758:73;;44714:127;44499:349;;;;:::o

Swarm Source

ipfs://97c276b4dafda66bd9d71215615e77c96febccc4c99039307919489bf65e8347
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.