ETH Price: $2,482.98 (-1.22%)

Token

NegativeGang (NG)
 

Overview

Max Total Supply

214 NG

Holders

71

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
degentastic.eth
Balance
2 NG
0xebc02e2a9d30a55cf3fa4d3279fd0ed23d5d0b60
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:
NegativeGang

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 2022-11-27
*/

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.13;

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

// File: 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.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

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

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

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}
// File: 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.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

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


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

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

//1b0014041a0a15

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() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.4;

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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 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`.
     *
     * 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 calldata data
    ) external;

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol

// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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`
    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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 auxillary 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 auxillary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly {
            // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value)
        private
        pure
        returns (uint256 result)
    {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override virtual {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        override
        returns (address)
    {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (
                        !_checkContractOnERC721Received(
                            address(0),
                            to,
                            updatedIndex++,
                            _data
                        )
                    ) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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 `_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));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

            // 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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool 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))
                }
            }
        }
    }

    /**
     * @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 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
        returns (string memory ptr)
    {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol

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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol

// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol

// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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`.
     *
     * 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 calldata data
    ) external;

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC165, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: address zero is not a valid owner"
        );
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

    /**
     * @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, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @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 (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            isApprovedForAll(owner, spender) ||
            getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

pragma solidity ^0.8.0;



contract NegativeGang is ERC721A, Ownable, DefaultOperatorFilterer {
    using Strings for uint256;

    string private baseURI;

    uint256 public price = 0.015 ether;

   

    uint256 public maxPerWallet = 2;
    string public hiddenURI="ipfs://QmZucm5VWjUk8B3aebi9Cn3WwiQLYgio5EjYvFjgacbXkp";
    bool public revealed = false;
   
    

    uint256 public maxSupply = 567;

    bool public whitelistSale = true;
    
    bool public publicEnabled = false;
    
    bytes32 whitelistRoot;
  

  
    
    constructor() ERC721A("NegativeGang", "NG") {
        
        
    }

function whitelistMint(bytes32[] calldata _merkleProof,uint256 count) external payable {
        
       
       bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

     
        
        require(MerkleProof.verify(_merkleProof, whitelistRoot, leaf),"Incorrect Whitelist Proof");
        require(msg.value >= price * count, "Please send the exact amount.");
        require(numberMinted(msg.sender)+ count <=maxPerWallet,"You cant mint anymore");
        require(totalSupply() + count <= maxSupply , "No more");
        require(count>0,"Please enter a number");
        require(whitelistSale, "Minting is not live yet");
      


        

        _safeMint(msg.sender, count);
    }

function publicMint(uint256 count) external payable {
       

        require(msg.value >= count * price, "Please send the exact amount.");
        require(numberMinted(msg.sender)+ count <=maxPerWallet,"You cant mint anymore");
        require(totalSupply() + count <= maxSupply , "No more");
        require(count>0,"Please enter a number");
        require(publicEnabled, "Minting is not live yet");
        
       

        

        _safeMint(msg.sender, count);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
   
     function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
     if (revealed == false) {
      return hiddenURI;
    }

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

    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }
    function setHiddenURI(string memory uri) public onlyOwner {
        hiddenURI = uri;
    }


    function setMaxPerWallet(uint256 amount) external onlyOwner {
        maxPerWallet = amount;
    }
    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function setMaxSupply(uint256 _newSupply) external onlyOwner {
        maxSupply = _newSupply;
    }
   
    function flipWhitelist(bool status) external onlyOwner {
        whitelistSale = status;
    }
   
    function flipPublic(bool status) external onlyOwner {
        
        publicEnabled = status;
    }
    function reveal() external onlyOwner {
    revealed = !revealed;
   
  }
     function setWhitelistRoot(bytes32 _presaleRoot_1)
        external
        onlyOwner
    {  
        whitelistRoot = _presaleRoot_1;
       
    }
     function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }
 function batchmint(uint256 _mintAmount, address destination) public onlyOwner {
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
    
  }
    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "Transfer failed.");
    }

       function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","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":"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":"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":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"batchmint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"flipPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"flipWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","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":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_presaleRoot_1","type":"bytes32"}],"name":"setWhitelistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266354a6ba7a18000600a556002600b5560405180606001604052806035815260200162004c8060359139600c90816200003e9190620006cd565b506000600d60006101000a81548160ff021916908315150217905550610237600e556001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff021916908315150217905550348015620000a357600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600c81526020017f4e6567617469766547616e6700000000000000000000000000000000000000008152506040518060400160405280600281526020017f4e470000000000000000000000000000000000000000000000000000000000008152508160029081620001389190620006cd565b5080600390816200014a9190620006cd565b506200015b6200038060201b60201c565b600081905550505062000183620001776200038560201b60201c565b6200038d60201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003785780156200023e576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b815260040162000204929190620007f9565b600060405180830381600087803b1580156200021f57600080fd5b505af115801562000234573d6000803e3d6000fd5b5050505062000377565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002f8576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002be929190620007f9565b600060405180830381600087803b158015620002d957600080fd5b505af1158015620002ee573d6000803e3d6000fd5b5050505062000376565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000341919062000826565b600060405180830381600087803b1580156200035c57600080fd5b505af115801562000371573d6000803e3d6000fd5b505050505b5b5b505062000843565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004d557607f821691505b602082108103620004eb57620004ea6200048d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005557fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000516565b62000561868362000516565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005ae620005a8620005a28462000579565b62000583565b62000579565b9050919050565b6000819050919050565b620005ca836200058d565b620005e2620005d982620005b5565b84845462000523565b825550505050565b600090565b620005f9620005ea565b62000606818484620005bf565b505050565b5b818110156200062e5762000622600082620005ef565b6001810190506200060c565b5050565b601f8211156200067d576200064781620004f1565b620006528462000506565b8101602085101562000662578190505b6200067a620006718562000506565b8301826200060b565b50505b505050565b600082821c905092915050565b6000620006a26000198460080262000682565b1980831691505092915050565b6000620006bd83836200068f565b9150826002028217905092915050565b620006d88262000453565b67ffffffffffffffff811115620006f457620006f36200045e565b5b620007008254620004bc565b6200070d82828562000632565b600060209050601f83116001811462000745576000841562000730578287015190505b6200073c8582620006af565b865550620007ac565b601f1984166200075586620004f1565b60005b828110156200077f5784890151825560018201915060208501945060208101905062000758565b868310156200079f57848901516200079b601f8916826200068f565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007e182620007b4565b9050919050565b620007f381620007d4565b82525050565b6000604082019050620008106000830185620007e8565b6200081f6020830184620007e8565b9392505050565b60006020820190506200083d6000830184620007e8565b92915050565b61442d80620008536000396000f3fe6080604052600436106102305760003560e01c80637bcf36ae1161012e578063bbaac02f116100ab578063e268e4d31161006f578063e268e4d3146107e7578063e985e9c514610810578063f2fde38b1461084d578063f55e7fc714610876578063f5aa406d1461089f57610230565b8063bbaac02f146106f0578063bbb8127914610719578063c87b56dd14610742578063d5abeb011461077f578063dc33e681146107aa57610230565b80639b001f45116100f25780639b001f4514610631578063a035b1fe1461065c578063a22cb46514610687578063a475b5dd146106b0578063b88d4fde146106c757610230565b80637bcf36ae1461055e5780638cc54e7f146105875780638da5cb5b146105b257806391b7f5ed146105dd57806395d89b411461060657610230565b80633ccfd60b116101bc57806355f804b31161018057806355f804b31461047b5780636352211e146104a45780636f8b44b0146104e157806370a082311461050a578063715018a61461054757610230565b80633ccfd60b146103ba57806341f43434146103d157806342842e0e146103fc578063453c231014610425578063518302271461045057610230565b806318160ddd1161020357806318160ddd1461030357806323b872dd1461032e5780632904e6d9146103575780632db115441461037357806331ffd6f11461038f57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612ef6565b6108c8565b6040516102699190612f3e565b60405180910390f35b34801561027e57600080fd5b5061028761095a565b6040516102949190612fe9565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613041565b6109ec565b6040516102d191906130af565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc91906130f6565b610a68565b005b34801561030f57600080fd5b50610318610a81565b6040516103259190613145565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190613160565b610a98565b005b610371600480360381019061036c9190613218565b610ae7565b005b61038d60048036038101906103889190613041565b610d40565b005b34801561039b57600080fd5b506103a4610ede565b6040516103b19190612f3e565b60405180910390f35b3480156103c657600080fd5b506103cf610ef1565b005b3480156103dd57600080fd5b506103e661101c565b6040516103f391906132d7565b60405180910390f35b34801561040857600080fd5b50610423600480360381019061041e9190613160565b61102e565b005b34801561043157600080fd5b5061043a61107d565b6040516104479190613145565b60405180910390f35b34801561045c57600080fd5b50610465611083565b6040516104729190612f3e565b60405180910390f35b34801561048757600080fd5b506104a2600480360381019061049d9190613422565b611096565b005b3480156104b057600080fd5b506104cb60048036038101906104c69190613041565b611125565b6040516104d891906130af565b60405180910390f35b3480156104ed57600080fd5b5061050860048036038101906105039190613041565b611137565b005b34801561051657600080fd5b50610531600480360381019061052c919061346b565b6111bd565b60405161053e9190613145565b60405180910390f35b34801561055357600080fd5b5061055c611275565b005b34801561056a57600080fd5b5061058560048036038101906105809190613498565b6112fd565b005b34801561059357600080fd5b5061059c611427565b6040516105a99190612fe9565b60405180910390f35b3480156105be57600080fd5b506105c76114b5565b6040516105d491906130af565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff9190613041565b6114df565b005b34801561061257600080fd5b5061061b611565565b6040516106289190612fe9565b60405180910390f35b34801561063d57600080fd5b506106466115f7565b6040516106539190612f3e565b60405180910390f35b34801561066857600080fd5b5061067161160a565b60405161067e9190613145565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a99190613504565b611610565b005b3480156106bc57600080fd5b506106c5611629565b005b3480156106d357600080fd5b506106ee60048036038101906106e991906135e5565b6116d1565b005b3480156106fc57600080fd5b5061071760048036038101906107129190613422565b611722565b005b34801561072557600080fd5b50610740600480360381019061073b9190613668565b6117b1565b005b34801561074e57600080fd5b5061076960048036038101906107649190613041565b61184a565b6040516107769190612fe9565b60405180910390f35b34801561078b57600080fd5b5061079461199f565b6040516107a19190613145565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc919061346b565b6119a5565b6040516107de9190613145565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190613041565b6119b7565b005b34801561081c57600080fd5b5061083760048036038101906108329190613695565b611a3d565b6040516108449190612f3e565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f919061346b565b611ad1565b005b34801561088257600080fd5b5061089d60048036038101906108989190613668565b611bc8565b005b3480156108ab57600080fd5b506108c660048036038101906108c1919061370b565b611c61565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109535750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461096990613767565b80601f016020809104026020016040519081016040528092919081815260200182805461099590613767565b80156109e25780601f106109b7576101008083540402835291602001916109e2565b820191906000526020600020905b8154815290600101906020018083116109c557829003601f168201915b5050505050905090565b60006109f782611ce7565b610a2d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610a7281611d46565b610a7c8383611e43565b505050565b6000610a8b611fe9565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ad657610ad533611d46565b5b610ae1848484611fee565b50505050565b600033604051602001610afa91906137e0565b604051602081830303815290604052805190602001209050610b60848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105483611ffe565b610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9690613847565b60405180910390fd5b81600a54610bad9190613896565b341015610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be690613924565b60405180910390fd5b600b5482610bfc336119a5565b610c069190613944565b1115610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e906139c4565b60405180910390fd5b600e5482610c53610a81565b610c5d9190613944565b1115610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9590613a30565b60405180910390fd5b60008211610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd890613a9c565b60405180910390fd5b600f60009054906101000a900460ff16610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790613b08565b60405180910390fd5b610d3a3383612015565b50505050565b600a5481610d4e9190613896565b341015610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8790613924565b60405180910390fd5b600b5481610d9d336119a5565b610da79190613944565b1115610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf906139c4565b60405180910390fd5b600e5481610df4610a81565b610dfe9190613944565b1115610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690613a30565b60405180910390fd5b60008111610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990613a9c565b60405180910390fd5b600f60019054906101000a900460ff16610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec890613b08565b60405180910390fd5b610edb3382612015565b50565b600f60009054906101000a900460ff1681565b610ef9612033565b73ffffffffffffffffffffffffffffffffffffffff16610f176114b5565b73ffffffffffffffffffffffffffffffffffffffff1614610f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6490613b74565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610f9390613bc5565b60006040518083038185875af1925050503d8060008114610fd0576040519150601f19603f3d011682016040523d82523d6000602084013e610fd5565b606091505b5050905080611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090613c26565b60405180910390fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461106c5761106b33611d46565b5b61107784848461203b565b50505050565b600b5481565b600d60009054906101000a900460ff1681565b61109e612033565b73ffffffffffffffffffffffffffffffffffffffff166110bc6114b5565b73ffffffffffffffffffffffffffffffffffffffff1614611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990613b74565b60405180910390fd5b80600990816111219190613de8565b5050565b60006111308261205b565b9050919050565b61113f612033565b73ffffffffffffffffffffffffffffffffffffffff1661115d6114b5565b73ffffffffffffffffffffffffffffffffffffffff16146111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90613b74565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611224576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61127d612033565b73ffffffffffffffffffffffffffffffffffffffff1661129b6114b5565b73ffffffffffffffffffffffffffffffffffffffff16146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890613b74565b60405180910390fd5b6112fb6000612127565b565b611305612033565b73ffffffffffffffffffffffffffffffffffffffff166113236114b5565b73ffffffffffffffffffffffffffffffffffffffff1614611379576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137090613b74565b60405180910390fd5b600082116113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b390613f06565b60405180910390fd5b60006113c6610a81565b9050600e5483826113d79190613944565b1115611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90613f72565b60405180910390fd5b6114228284612015565b505050565b600c805461143490613767565b80601f016020809104026020016040519081016040528092919081815260200182805461146090613767565b80156114ad5780601f10611482576101008083540402835291602001916114ad565b820191906000526020600020905b81548152906001019060200180831161149057829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114e7612033565b73ffffffffffffffffffffffffffffffffffffffff166115056114b5565b73ffffffffffffffffffffffffffffffffffffffff161461155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290613b74565b60405180910390fd5b80600a8190555050565b60606003805461157490613767565b80601f01602080910402602001604051908101604052809291908181526020018280546115a090613767565b80156115ed5780601f106115c2576101008083540402835291602001916115ed565b820191906000526020600020905b8154815290600101906020018083116115d057829003601f168201915b5050505050905090565b600f60019054906101000a900460ff1681565b600a5481565b8161161a81611d46565b61162483836121ed565b505050565b611631612033565b73ffffffffffffffffffffffffffffffffffffffff1661164f6114b5565b73ffffffffffffffffffffffffffffffffffffffff16146116a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169c90613b74565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461170f5761170e33611d46565b5b61171b85858585612364565b5050505050565b61172a612033565b73ffffffffffffffffffffffffffffffffffffffff166117486114b5565b73ffffffffffffffffffffffffffffffffffffffff161461179e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179590613b74565b60405180910390fd5b80600c90816117ad9190613de8565b5050565b6117b9612033565b73ffffffffffffffffffffffffffffffffffffffff166117d76114b5565b73ffffffffffffffffffffffffffffffffffffffff161461182d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182490613b74565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b606061185582611ce7565b611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90614004565b60405180910390fd5b60001515600d60009054906101000a900460ff1615150361194157600c80546118bc90613767565b80601f01602080910402602001604051908101604052809291908181526020018280546118e890613767565b80156119355780601f1061190a57610100808354040283529160200191611935565b820191906000526020600020905b81548152906001019060200180831161191857829003601f168201915b5050505050905061199a565b600061194b6123d7565b9050600081511161196b5760405180602001604052806000815250611996565b8061197584612469565b6040516020016119869291906140ac565b6040516020818303038152906040525b9150505b919050565b600e5481565b60006119b0826125c9565b9050919050565b6119bf612033565b73ffffffffffffffffffffffffffffffffffffffff166119dd6114b5565b73ffffffffffffffffffffffffffffffffffffffff1614611a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2a90613b74565b60405180910390fd5b80600b8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ad9612033565b73ffffffffffffffffffffffffffffffffffffffff16611af76114b5565b73ffffffffffffffffffffffffffffffffffffffff1614611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4490613b74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb39061414d565b60405180910390fd5b611bc581612127565b50565b611bd0612033565b73ffffffffffffffffffffffffffffffffffffffff16611bee6114b5565b73ffffffffffffffffffffffffffffffffffffffff1614611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b90613b74565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b611c69612033565b73ffffffffffffffffffffffffffffffffffffffff16611c876114b5565b73ffffffffffffffffffffffffffffffffffffffff1614611cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd490613b74565b60405180910390fd5b8060108190555050565b600081611cf2611fe9565b11158015611d01575060005482105b8015611d3f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611e40576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611dbd92919061416d565b602060405180830381865afa158015611dda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dfe91906141ab565b611e3f57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611e3691906130af565b60405180910390fd5b5b50565b6000611e4e8261205b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611eb5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611ed4612620565b73ffffffffffffffffffffffffffffffffffffffff1614611f3757611f0081611efb612620565b611a3d565b611f36576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b611ff9838383612628565b505050565b60008261200b85846129cf565b1490509392505050565b61202f828260405180602001604052806000815250612a25565b5050565b600033905090565b612056838383604051806020016040528060008152506116d1565b505050565b6000808290508061206a611fe9565b116120f0576000548110156120ef5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036120ed575b600081036120e35760046000836001900393508381526020019081526020016000205490506120b9565b8092505050612122565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121f5612620565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612259576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612266612620565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612313612620565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123589190612f3e565b60405180910390a35050565b61236f848484612628565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123d15761239a84848484612cd8565b6123d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600980546123e690613767565b80601f016020809104026020016040519081016040528092919081815260200182805461241290613767565b801561245f5780601f106124345761010080835404028352916020019161245f565b820191906000526020600020905b81548152906001019060200180831161244257829003601f168201915b5050505050905090565b6060600082036124b0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125c4565b600082905060005b600082146124e25780806124cb906141d8565b915050600a826124db919061424f565b91506124b8565b60008167ffffffffffffffff8111156124fe576124fd6132f7565b5b6040519080825280601f01601f1916602001820160405280156125305781602001600182028036833780820191505090505b5090505b600085146125bd576001826125499190614280565b9150600a8561255891906142b4565b60306125649190613944565b60f81b81838151811061257a576125796142e5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125b6919061424f565b9450612534565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60006126338261205b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461269a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166126bb612620565b73ffffffffffffffffffffffffffffffffffffffff1614806126ea57506126e9856126e4612620565b611a3d565b5b8061272f57506126f8612620565b73ffffffffffffffffffffffffffffffffffffffff16612717846109ec565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612768576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036127ce576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127db8585856001612e28565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6128d886612e2e565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603612960576000600184019050600060046000838152602001908152602001600020540361295e57600054811461295d578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129c88585856001612e38565b5050505050565b60008082905060005b8451811015612a1a57612a05828683815181106129f8576129f76142e5565b5b6020026020010151612e3e565b91508080612a12906141d8565b9150506129d8565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612a91576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612acb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ad86000858386612e28565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612b3d60018514612e69565b901b60a042901b612b4d86612e2e565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612c51575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c016000878480600101955087612cd8565b612c37576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612b92578260005414612c4c57600080fd5b612cbc565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612c52575b816000819055505050612cd26000858386612e38565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cfe612620565b8786866040518563ffffffff1660e01b8152600401612d209493929190614369565b6020604051808303816000875af1925050508015612d5c57506040513d601f19601f82011682018060405250810190612d5991906143ca565b60015b612dd5573d8060008114612d8c576040519150601f19603f3d011682016040523d82523d6000602084013e612d91565b606091505b506000815103612dcd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b6000819050919050565b50505050565b6000818310612e5657612e518284612e73565b612e61565b612e608383612e73565b5b905092915050565b6000819050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ed381612e9e565b8114612ede57600080fd5b50565b600081359050612ef081612eca565b92915050565b600060208284031215612f0c57612f0b612e94565b5b6000612f1a84828501612ee1565b91505092915050565b60008115159050919050565b612f3881612f23565b82525050565b6000602082019050612f536000830184612f2f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f93578082015181840152602081019050612f78565b60008484015250505050565b6000601f19601f8301169050919050565b6000612fbb82612f59565b612fc58185612f64565b9350612fd5818560208601612f75565b612fde81612f9f565b840191505092915050565b600060208201905081810360008301526130038184612fb0565b905092915050565b6000819050919050565b61301e8161300b565b811461302957600080fd5b50565b60008135905061303b81613015565b92915050565b60006020828403121561305757613056612e94565b5b60006130658482850161302c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130998261306e565b9050919050565b6130a98161308e565b82525050565b60006020820190506130c460008301846130a0565b92915050565b6130d38161308e565b81146130de57600080fd5b50565b6000813590506130f0816130ca565b92915050565b6000806040838503121561310d5761310c612e94565b5b600061311b858286016130e1565b925050602061312c8582860161302c565b9150509250929050565b61313f8161300b565b82525050565b600060208201905061315a6000830184613136565b92915050565b60008060006060848603121561317957613178612e94565b5b6000613187868287016130e1565b9350506020613198868287016130e1565b92505060406131a98682870161302c565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126131d8576131d76131b3565b5b8235905067ffffffffffffffff8111156131f5576131f46131b8565b5b602083019150836020820283011115613211576132106131bd565b5b9250929050565b60008060006040848603121561323157613230612e94565b5b600084013567ffffffffffffffff81111561324f5761324e612e99565b5b61325b868287016131c2565b9350935050602061326e8682870161302c565b9150509250925092565b6000819050919050565b600061329d6132986132938461306e565b613278565b61306e565b9050919050565b60006132af82613282565b9050919050565b60006132c1826132a4565b9050919050565b6132d1816132b6565b82525050565b60006020820190506132ec60008301846132c8565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61332f82612f9f565b810181811067ffffffffffffffff8211171561334e5761334d6132f7565b5b80604052505050565b6000613361612e8a565b905061336d8282613326565b919050565b600067ffffffffffffffff82111561338d5761338c6132f7565b5b61339682612f9f565b9050602081019050919050565b82818337600083830152505050565b60006133c56133c084613372565b613357565b9050828152602081018484840111156133e1576133e06132f2565b5b6133ec8482856133a3565b509392505050565b600082601f830112613409576134086131b3565b5b81356134198482602086016133b2565b91505092915050565b60006020828403121561343857613437612e94565b5b600082013567ffffffffffffffff81111561345657613455612e99565b5b613462848285016133f4565b91505092915050565b60006020828403121561348157613480612e94565b5b600061348f848285016130e1565b91505092915050565b600080604083850312156134af576134ae612e94565b5b60006134bd8582860161302c565b92505060206134ce858286016130e1565b9150509250929050565b6134e181612f23565b81146134ec57600080fd5b50565b6000813590506134fe816134d8565b92915050565b6000806040838503121561351b5761351a612e94565b5b6000613529858286016130e1565b925050602061353a858286016134ef565b9150509250929050565b600067ffffffffffffffff82111561355f5761355e6132f7565b5b61356882612f9f565b9050602081019050919050565b600061358861358384613544565b613357565b9050828152602081018484840111156135a4576135a36132f2565b5b6135af8482856133a3565b509392505050565b600082601f8301126135cc576135cb6131b3565b5b81356135dc848260208601613575565b91505092915050565b600080600080608085870312156135ff576135fe612e94565b5b600061360d878288016130e1565b945050602061361e878288016130e1565b935050604061362f8782880161302c565b925050606085013567ffffffffffffffff8111156136505761364f612e99565b5b61365c878288016135b7565b91505092959194509250565b60006020828403121561367e5761367d612e94565b5b600061368c848285016134ef565b91505092915050565b600080604083850312156136ac576136ab612e94565b5b60006136ba858286016130e1565b92505060206136cb858286016130e1565b9150509250929050565b6000819050919050565b6136e8816136d5565b81146136f357600080fd5b50565b600081359050613705816136df565b92915050565b60006020828403121561372157613720612e94565b5b600061372f848285016136f6565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061377f57607f821691505b60208210810361379257613791613738565b5b50919050565b60008160601b9050919050565b60006137b082613798565b9050919050565b60006137c2826137a5565b9050919050565b6137da6137d58261308e565b6137b7565b82525050565b60006137ec82846137c9565b60148201915081905092915050565b7f496e636f72726563742057686974656c6973742050726f6f6600000000000000600082015250565b6000613831601983612f64565b915061383c826137fb565b602082019050919050565b6000602082019050818103600083015261386081613824565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138a18261300b565b91506138ac8361300b565b92508282026138ba8161300b565b915082820484148315176138d1576138d0613867565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b600061390e601d83612f64565b9150613919826138d8565b602082019050919050565b6000602082019050818103600083015261393d81613901565b9050919050565b600061394f8261300b565b915061395a8361300b565b925082820190508082111561397257613971613867565b5b92915050565b7f596f752063616e74206d696e7420616e796d6f72650000000000000000000000600082015250565b60006139ae601583612f64565b91506139b982613978565b602082019050919050565b600060208201905081810360008301526139dd816139a1565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b6000613a1a600783612f64565b9150613a25826139e4565b602082019050919050565b60006020820190508181036000830152613a4981613a0d565b9050919050565b7f506c6561736520656e7465722061206e756d6265720000000000000000000000600082015250565b6000613a86601583612f64565b9150613a9182613a50565b602082019050919050565b60006020820190508181036000830152613ab581613a79565b9050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b6000613af2601783612f64565b9150613afd82613abc565b602082019050919050565b60006020820190508181036000830152613b2181613ae5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b5e602083612f64565b9150613b6982613b28565b602082019050919050565b60006020820190508181036000830152613b8d81613b51565b9050919050565b600081905092915050565b50565b6000613baf600083613b94565b9150613bba82613b9f565b600082019050919050565b6000613bd082613ba2565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613c10601083612f64565b9150613c1b82613bda565b602082019050919050565b60006020820190508181036000830152613c3f81613c03565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613ca87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613c6b565b613cb28683613c6b565b95508019841693508086168417925050509392505050565b6000613ce5613ce0613cdb8461300b565b613278565b61300b565b9050919050565b6000819050919050565b613cff83613cca565b613d13613d0b82613cec565b848454613c78565b825550505050565b600090565b613d28613d1b565b613d33818484613cf6565b505050565b5b81811015613d5757613d4c600082613d20565b600181019050613d39565b5050565b601f821115613d9c57613d6d81613c46565b613d7684613c5b565b81016020851015613d85578190505b613d99613d9185613c5b565b830182613d38565b50505b505050565b600082821c905092915050565b6000613dbf60001984600802613da1565b1980831691505092915050565b6000613dd88383613dae565b9150826002028217905092915050565b613df182612f59565b67ffffffffffffffff811115613e0a57613e096132f7565b5b613e148254613767565b613e1f828285613d5b565b600060209050601f831160018114613e525760008415613e40578287015190505b613e4a8582613dcc565b865550613eb2565b601f198416613e6086613c46565b60005b82811015613e8857848901518255600182019150602085019450602081019050613e63565b86831015613ea55784890151613ea1601f891682613dae565b8355505b6001600288020188555050505b505050505050565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000613ef0601b83612f64565b9150613efb82613eba565b602082019050919050565b60006020820190508181036000830152613f1f81613ee3565b9050919050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000613f5c601683612f64565b9150613f6782613f26565b602082019050919050565b60006020820190508181036000830152613f8b81613f4f565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b6000613fee603083612f64565b9150613ff982613f92565b604082019050919050565b6000602082019050818103600083015261401d81613fe1565b9050919050565b600081905092915050565b600061403a82612f59565b6140448185614024565b9350614054818560208601612f75565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614096600583614024565b91506140a182614060565b600582019050919050565b60006140b8828561402f565b91506140c4828461402f565b91506140cf82614089565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614137602683612f64565b9150614142826140db565b604082019050919050565b600060208201905081810360008301526141668161412a565b9050919050565b600060408201905061418260008301856130a0565b61418f60208301846130a0565b9392505050565b6000815190506141a5816134d8565b92915050565b6000602082840312156141c1576141c0612e94565b5b60006141cf84828501614196565b91505092915050565b60006141e38261300b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361421557614214613867565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061425a8261300b565b91506142658361300b565b92508261427557614274614220565b5b828204905092915050565b600061428b8261300b565b91506142968361300b565b92508282039050818111156142ae576142ad613867565b5b92915050565b60006142bf8261300b565b91506142ca8361300b565b9250826142da576142d9614220565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061433b82614314565b614345818561431f565b9350614355818560208601612f75565b61435e81612f9f565b840191505092915050565b600060808201905061437e60008301876130a0565b61438b60208301866130a0565b6143986040830185613136565b81810360608301526143aa8184614330565b905095945050505050565b6000815190506143c481612eca565b92915050565b6000602082840312156143e0576143df612e94565b5b60006143ee848285016143b5565b9150509291505056fea26469706673582212203ae5d5beceff6057c90fad0b5625fab18c19d1264c943d0fc8ad15801291c75d64736f6c63430008110033697066733a2f2f516d5a75636d3556576a556b3842336165626939436e33577769514c5967696f35456a5976466a67616362586b70

Deployed Bytecode

0x6080604052600436106102305760003560e01c80637bcf36ae1161012e578063bbaac02f116100ab578063e268e4d31161006f578063e268e4d3146107e7578063e985e9c514610810578063f2fde38b1461084d578063f55e7fc714610876578063f5aa406d1461089f57610230565b8063bbaac02f146106f0578063bbb8127914610719578063c87b56dd14610742578063d5abeb011461077f578063dc33e681146107aa57610230565b80639b001f45116100f25780639b001f4514610631578063a035b1fe1461065c578063a22cb46514610687578063a475b5dd146106b0578063b88d4fde146106c757610230565b80637bcf36ae1461055e5780638cc54e7f146105875780638da5cb5b146105b257806391b7f5ed146105dd57806395d89b411461060657610230565b80633ccfd60b116101bc57806355f804b31161018057806355f804b31461047b5780636352211e146104a45780636f8b44b0146104e157806370a082311461050a578063715018a61461054757610230565b80633ccfd60b146103ba57806341f43434146103d157806342842e0e146103fc578063453c231014610425578063518302271461045057610230565b806318160ddd1161020357806318160ddd1461030357806323b872dd1461032e5780632904e6d9146103575780632db115441461037357806331ffd6f11461038f57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612ef6565b6108c8565b6040516102699190612f3e565b60405180910390f35b34801561027e57600080fd5b5061028761095a565b6040516102949190612fe9565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613041565b6109ec565b6040516102d191906130af565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc91906130f6565b610a68565b005b34801561030f57600080fd5b50610318610a81565b6040516103259190613145565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190613160565b610a98565b005b610371600480360381019061036c9190613218565b610ae7565b005b61038d60048036038101906103889190613041565b610d40565b005b34801561039b57600080fd5b506103a4610ede565b6040516103b19190612f3e565b60405180910390f35b3480156103c657600080fd5b506103cf610ef1565b005b3480156103dd57600080fd5b506103e661101c565b6040516103f391906132d7565b60405180910390f35b34801561040857600080fd5b50610423600480360381019061041e9190613160565b61102e565b005b34801561043157600080fd5b5061043a61107d565b6040516104479190613145565b60405180910390f35b34801561045c57600080fd5b50610465611083565b6040516104729190612f3e565b60405180910390f35b34801561048757600080fd5b506104a2600480360381019061049d9190613422565b611096565b005b3480156104b057600080fd5b506104cb60048036038101906104c69190613041565b611125565b6040516104d891906130af565b60405180910390f35b3480156104ed57600080fd5b5061050860048036038101906105039190613041565b611137565b005b34801561051657600080fd5b50610531600480360381019061052c919061346b565b6111bd565b60405161053e9190613145565b60405180910390f35b34801561055357600080fd5b5061055c611275565b005b34801561056a57600080fd5b5061058560048036038101906105809190613498565b6112fd565b005b34801561059357600080fd5b5061059c611427565b6040516105a99190612fe9565b60405180910390f35b3480156105be57600080fd5b506105c76114b5565b6040516105d491906130af565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff9190613041565b6114df565b005b34801561061257600080fd5b5061061b611565565b6040516106289190612fe9565b60405180910390f35b34801561063d57600080fd5b506106466115f7565b6040516106539190612f3e565b60405180910390f35b34801561066857600080fd5b5061067161160a565b60405161067e9190613145565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a99190613504565b611610565b005b3480156106bc57600080fd5b506106c5611629565b005b3480156106d357600080fd5b506106ee60048036038101906106e991906135e5565b6116d1565b005b3480156106fc57600080fd5b5061071760048036038101906107129190613422565b611722565b005b34801561072557600080fd5b50610740600480360381019061073b9190613668565b6117b1565b005b34801561074e57600080fd5b5061076960048036038101906107649190613041565b61184a565b6040516107769190612fe9565b60405180910390f35b34801561078b57600080fd5b5061079461199f565b6040516107a19190613145565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc919061346b565b6119a5565b6040516107de9190613145565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190613041565b6119b7565b005b34801561081c57600080fd5b5061083760048036038101906108329190613695565b611a3d565b6040516108449190612f3e565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f919061346b565b611ad1565b005b34801561088257600080fd5b5061089d60048036038101906108989190613668565b611bc8565b005b3480156108ab57600080fd5b506108c660048036038101906108c1919061370b565b611c61565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109535750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461096990613767565b80601f016020809104026020016040519081016040528092919081815260200182805461099590613767565b80156109e25780601f106109b7576101008083540402835291602001916109e2565b820191906000526020600020905b8154815290600101906020018083116109c557829003601f168201915b5050505050905090565b60006109f782611ce7565b610a2d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610a7281611d46565b610a7c8383611e43565b505050565b6000610a8b611fe9565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ad657610ad533611d46565b5b610ae1848484611fee565b50505050565b600033604051602001610afa91906137e0565b604051602081830303815290604052805190602001209050610b60848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105483611ffe565b610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9690613847565b60405180910390fd5b81600a54610bad9190613896565b341015610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be690613924565b60405180910390fd5b600b5482610bfc336119a5565b610c069190613944565b1115610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e906139c4565b60405180910390fd5b600e5482610c53610a81565b610c5d9190613944565b1115610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9590613a30565b60405180910390fd5b60008211610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd890613a9c565b60405180910390fd5b600f60009054906101000a900460ff16610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790613b08565b60405180910390fd5b610d3a3383612015565b50505050565b600a5481610d4e9190613896565b341015610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8790613924565b60405180910390fd5b600b5481610d9d336119a5565b610da79190613944565b1115610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf906139c4565b60405180910390fd5b600e5481610df4610a81565b610dfe9190613944565b1115610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690613a30565b60405180910390fd5b60008111610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990613a9c565b60405180910390fd5b600f60019054906101000a900460ff16610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec890613b08565b60405180910390fd5b610edb3382612015565b50565b600f60009054906101000a900460ff1681565b610ef9612033565b73ffffffffffffffffffffffffffffffffffffffff16610f176114b5565b73ffffffffffffffffffffffffffffffffffffffff1614610f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6490613b74565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610f9390613bc5565b60006040518083038185875af1925050503d8060008114610fd0576040519150601f19603f3d011682016040523d82523d6000602084013e610fd5565b606091505b5050905080611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090613c26565b60405180910390fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461106c5761106b33611d46565b5b61107784848461203b565b50505050565b600b5481565b600d60009054906101000a900460ff1681565b61109e612033565b73ffffffffffffffffffffffffffffffffffffffff166110bc6114b5565b73ffffffffffffffffffffffffffffffffffffffff1614611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990613b74565b60405180910390fd5b80600990816111219190613de8565b5050565b60006111308261205b565b9050919050565b61113f612033565b73ffffffffffffffffffffffffffffffffffffffff1661115d6114b5565b73ffffffffffffffffffffffffffffffffffffffff16146111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90613b74565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611224576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61127d612033565b73ffffffffffffffffffffffffffffffffffffffff1661129b6114b5565b73ffffffffffffffffffffffffffffffffffffffff16146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890613b74565b60405180910390fd5b6112fb6000612127565b565b611305612033565b73ffffffffffffffffffffffffffffffffffffffff166113236114b5565b73ffffffffffffffffffffffffffffffffffffffff1614611379576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137090613b74565b60405180910390fd5b600082116113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b390613f06565b60405180910390fd5b60006113c6610a81565b9050600e5483826113d79190613944565b1115611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90613f72565b60405180910390fd5b6114228284612015565b505050565b600c805461143490613767565b80601f016020809104026020016040519081016040528092919081815260200182805461146090613767565b80156114ad5780601f10611482576101008083540402835291602001916114ad565b820191906000526020600020905b81548152906001019060200180831161149057829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114e7612033565b73ffffffffffffffffffffffffffffffffffffffff166115056114b5565b73ffffffffffffffffffffffffffffffffffffffff161461155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290613b74565b60405180910390fd5b80600a8190555050565b60606003805461157490613767565b80601f01602080910402602001604051908101604052809291908181526020018280546115a090613767565b80156115ed5780601f106115c2576101008083540402835291602001916115ed565b820191906000526020600020905b8154815290600101906020018083116115d057829003601f168201915b5050505050905090565b600f60019054906101000a900460ff1681565b600a5481565b8161161a81611d46565b61162483836121ed565b505050565b611631612033565b73ffffffffffffffffffffffffffffffffffffffff1661164f6114b5565b73ffffffffffffffffffffffffffffffffffffffff16146116a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169c90613b74565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461170f5761170e33611d46565b5b61171b85858585612364565b5050505050565b61172a612033565b73ffffffffffffffffffffffffffffffffffffffff166117486114b5565b73ffffffffffffffffffffffffffffffffffffffff161461179e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179590613b74565b60405180910390fd5b80600c90816117ad9190613de8565b5050565b6117b9612033565b73ffffffffffffffffffffffffffffffffffffffff166117d76114b5565b73ffffffffffffffffffffffffffffffffffffffff161461182d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182490613b74565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b606061185582611ce7565b611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b90614004565b60405180910390fd5b60001515600d60009054906101000a900460ff1615150361194157600c80546118bc90613767565b80601f01602080910402602001604051908101604052809291908181526020018280546118e890613767565b80156119355780601f1061190a57610100808354040283529160200191611935565b820191906000526020600020905b81548152906001019060200180831161191857829003601f168201915b5050505050905061199a565b600061194b6123d7565b9050600081511161196b5760405180602001604052806000815250611996565b8061197584612469565b6040516020016119869291906140ac565b6040516020818303038152906040525b9150505b919050565b600e5481565b60006119b0826125c9565b9050919050565b6119bf612033565b73ffffffffffffffffffffffffffffffffffffffff166119dd6114b5565b73ffffffffffffffffffffffffffffffffffffffff1614611a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2a90613b74565b60405180910390fd5b80600b8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ad9612033565b73ffffffffffffffffffffffffffffffffffffffff16611af76114b5565b73ffffffffffffffffffffffffffffffffffffffff1614611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4490613b74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb39061414d565b60405180910390fd5b611bc581612127565b50565b611bd0612033565b73ffffffffffffffffffffffffffffffffffffffff16611bee6114b5565b73ffffffffffffffffffffffffffffffffffffffff1614611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b90613b74565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b611c69612033565b73ffffffffffffffffffffffffffffffffffffffff16611c876114b5565b73ffffffffffffffffffffffffffffffffffffffff1614611cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd490613b74565b60405180910390fd5b8060108190555050565b600081611cf2611fe9565b11158015611d01575060005482105b8015611d3f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611e40576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611dbd92919061416d565b602060405180830381865afa158015611dda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dfe91906141ab565b611e3f57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611e3691906130af565b60405180910390fd5b5b50565b6000611e4e8261205b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611eb5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611ed4612620565b73ffffffffffffffffffffffffffffffffffffffff1614611f3757611f0081611efb612620565b611a3d565b611f36576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b611ff9838383612628565b505050565b60008261200b85846129cf565b1490509392505050565b61202f828260405180602001604052806000815250612a25565b5050565b600033905090565b612056838383604051806020016040528060008152506116d1565b505050565b6000808290508061206a611fe9565b116120f0576000548110156120ef5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036120ed575b600081036120e35760046000836001900393508381526020019081526020016000205490506120b9565b8092505050612122565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121f5612620565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612259576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612266612620565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612313612620565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123589190612f3e565b60405180910390a35050565b61236f848484612628565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123d15761239a84848484612cd8565b6123d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600980546123e690613767565b80601f016020809104026020016040519081016040528092919081815260200182805461241290613767565b801561245f5780601f106124345761010080835404028352916020019161245f565b820191906000526020600020905b81548152906001019060200180831161244257829003601f168201915b5050505050905090565b6060600082036124b0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125c4565b600082905060005b600082146124e25780806124cb906141d8565b915050600a826124db919061424f565b91506124b8565b60008167ffffffffffffffff8111156124fe576124fd6132f7565b5b6040519080825280601f01601f1916602001820160405280156125305781602001600182028036833780820191505090505b5090505b600085146125bd576001826125499190614280565b9150600a8561255891906142b4565b60306125649190613944565b60f81b81838151811061257a576125796142e5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125b6919061424f565b9450612534565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60006126338261205b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461269a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166126bb612620565b73ffffffffffffffffffffffffffffffffffffffff1614806126ea57506126e9856126e4612620565b611a3d565b5b8061272f57506126f8612620565b73ffffffffffffffffffffffffffffffffffffffff16612717846109ec565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612768576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036127ce576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127db8585856001612e28565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6128d886612e2e565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603612960576000600184019050600060046000838152602001908152602001600020540361295e57600054811461295d578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129c88585856001612e38565b5050505050565b60008082905060005b8451811015612a1a57612a05828683815181106129f8576129f76142e5565b5b6020026020010151612e3e565b91508080612a12906141d8565b9150506129d8565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612a91576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612acb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ad86000858386612e28565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612b3d60018514612e69565b901b60a042901b612b4d86612e2e565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612c51575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c016000878480600101955087612cd8565b612c37576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612b92578260005414612c4c57600080fd5b612cbc565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612c52575b816000819055505050612cd26000858386612e38565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cfe612620565b8786866040518563ffffffff1660e01b8152600401612d209493929190614369565b6020604051808303816000875af1925050508015612d5c57506040513d601f19601f82011682018060405250810190612d5991906143ca565b60015b612dd5573d8060008114612d8c576040519150601f19603f3d011682016040523d82523d6000602084013e612d91565b606091505b506000815103612dcd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b6000819050919050565b50505050565b6000818310612e5657612e518284612e73565b612e61565b612e608383612e73565b5b905092915050565b6000819050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ed381612e9e565b8114612ede57600080fd5b50565b600081359050612ef081612eca565b92915050565b600060208284031215612f0c57612f0b612e94565b5b6000612f1a84828501612ee1565b91505092915050565b60008115159050919050565b612f3881612f23565b82525050565b6000602082019050612f536000830184612f2f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f93578082015181840152602081019050612f78565b60008484015250505050565b6000601f19601f8301169050919050565b6000612fbb82612f59565b612fc58185612f64565b9350612fd5818560208601612f75565b612fde81612f9f565b840191505092915050565b600060208201905081810360008301526130038184612fb0565b905092915050565b6000819050919050565b61301e8161300b565b811461302957600080fd5b50565b60008135905061303b81613015565b92915050565b60006020828403121561305757613056612e94565b5b60006130658482850161302c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130998261306e565b9050919050565b6130a98161308e565b82525050565b60006020820190506130c460008301846130a0565b92915050565b6130d38161308e565b81146130de57600080fd5b50565b6000813590506130f0816130ca565b92915050565b6000806040838503121561310d5761310c612e94565b5b600061311b858286016130e1565b925050602061312c8582860161302c565b9150509250929050565b61313f8161300b565b82525050565b600060208201905061315a6000830184613136565b92915050565b60008060006060848603121561317957613178612e94565b5b6000613187868287016130e1565b9350506020613198868287016130e1565b92505060406131a98682870161302c565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126131d8576131d76131b3565b5b8235905067ffffffffffffffff8111156131f5576131f46131b8565b5b602083019150836020820283011115613211576132106131bd565b5b9250929050565b60008060006040848603121561323157613230612e94565b5b600084013567ffffffffffffffff81111561324f5761324e612e99565b5b61325b868287016131c2565b9350935050602061326e8682870161302c565b9150509250925092565b6000819050919050565b600061329d6132986132938461306e565b613278565b61306e565b9050919050565b60006132af82613282565b9050919050565b60006132c1826132a4565b9050919050565b6132d1816132b6565b82525050565b60006020820190506132ec60008301846132c8565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61332f82612f9f565b810181811067ffffffffffffffff8211171561334e5761334d6132f7565b5b80604052505050565b6000613361612e8a565b905061336d8282613326565b919050565b600067ffffffffffffffff82111561338d5761338c6132f7565b5b61339682612f9f565b9050602081019050919050565b82818337600083830152505050565b60006133c56133c084613372565b613357565b9050828152602081018484840111156133e1576133e06132f2565b5b6133ec8482856133a3565b509392505050565b600082601f830112613409576134086131b3565b5b81356134198482602086016133b2565b91505092915050565b60006020828403121561343857613437612e94565b5b600082013567ffffffffffffffff81111561345657613455612e99565b5b613462848285016133f4565b91505092915050565b60006020828403121561348157613480612e94565b5b600061348f848285016130e1565b91505092915050565b600080604083850312156134af576134ae612e94565b5b60006134bd8582860161302c565b92505060206134ce858286016130e1565b9150509250929050565b6134e181612f23565b81146134ec57600080fd5b50565b6000813590506134fe816134d8565b92915050565b6000806040838503121561351b5761351a612e94565b5b6000613529858286016130e1565b925050602061353a858286016134ef565b9150509250929050565b600067ffffffffffffffff82111561355f5761355e6132f7565b5b61356882612f9f565b9050602081019050919050565b600061358861358384613544565b613357565b9050828152602081018484840111156135a4576135a36132f2565b5b6135af8482856133a3565b509392505050565b600082601f8301126135cc576135cb6131b3565b5b81356135dc848260208601613575565b91505092915050565b600080600080608085870312156135ff576135fe612e94565b5b600061360d878288016130e1565b945050602061361e878288016130e1565b935050604061362f8782880161302c565b925050606085013567ffffffffffffffff8111156136505761364f612e99565b5b61365c878288016135b7565b91505092959194509250565b60006020828403121561367e5761367d612e94565b5b600061368c848285016134ef565b91505092915050565b600080604083850312156136ac576136ab612e94565b5b60006136ba858286016130e1565b92505060206136cb858286016130e1565b9150509250929050565b6000819050919050565b6136e8816136d5565b81146136f357600080fd5b50565b600081359050613705816136df565b92915050565b60006020828403121561372157613720612e94565b5b600061372f848285016136f6565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061377f57607f821691505b60208210810361379257613791613738565b5b50919050565b60008160601b9050919050565b60006137b082613798565b9050919050565b60006137c2826137a5565b9050919050565b6137da6137d58261308e565b6137b7565b82525050565b60006137ec82846137c9565b60148201915081905092915050565b7f496e636f72726563742057686974656c6973742050726f6f6600000000000000600082015250565b6000613831601983612f64565b915061383c826137fb565b602082019050919050565b6000602082019050818103600083015261386081613824565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138a18261300b565b91506138ac8361300b565b92508282026138ba8161300b565b915082820484148315176138d1576138d0613867565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b600061390e601d83612f64565b9150613919826138d8565b602082019050919050565b6000602082019050818103600083015261393d81613901565b9050919050565b600061394f8261300b565b915061395a8361300b565b925082820190508082111561397257613971613867565b5b92915050565b7f596f752063616e74206d696e7420616e796d6f72650000000000000000000000600082015250565b60006139ae601583612f64565b91506139b982613978565b602082019050919050565b600060208201905081810360008301526139dd816139a1565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b6000613a1a600783612f64565b9150613a25826139e4565b602082019050919050565b60006020820190508181036000830152613a4981613a0d565b9050919050565b7f506c6561736520656e7465722061206e756d6265720000000000000000000000600082015250565b6000613a86601583612f64565b9150613a9182613a50565b602082019050919050565b60006020820190508181036000830152613ab581613a79565b9050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b6000613af2601783612f64565b9150613afd82613abc565b602082019050919050565b60006020820190508181036000830152613b2181613ae5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b5e602083612f64565b9150613b6982613b28565b602082019050919050565b60006020820190508181036000830152613b8d81613b51565b9050919050565b600081905092915050565b50565b6000613baf600083613b94565b9150613bba82613b9f565b600082019050919050565b6000613bd082613ba2565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613c10601083612f64565b9150613c1b82613bda565b602082019050919050565b60006020820190508181036000830152613c3f81613c03565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613ca87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613c6b565b613cb28683613c6b565b95508019841693508086168417925050509392505050565b6000613ce5613ce0613cdb8461300b565b613278565b61300b565b9050919050565b6000819050919050565b613cff83613cca565b613d13613d0b82613cec565b848454613c78565b825550505050565b600090565b613d28613d1b565b613d33818484613cf6565b505050565b5b81811015613d5757613d4c600082613d20565b600181019050613d39565b5050565b601f821115613d9c57613d6d81613c46565b613d7684613c5b565b81016020851015613d85578190505b613d99613d9185613c5b565b830182613d38565b50505b505050565b600082821c905092915050565b6000613dbf60001984600802613da1565b1980831691505092915050565b6000613dd88383613dae565b9150826002028217905092915050565b613df182612f59565b67ffffffffffffffff811115613e0a57613e096132f7565b5b613e148254613767565b613e1f828285613d5b565b600060209050601f831160018114613e525760008415613e40578287015190505b613e4a8582613dcc565b865550613eb2565b601f198416613e6086613c46565b60005b82811015613e8857848901518255600182019150602085019450602081019050613e63565b86831015613ea55784890151613ea1601f891682613dae565b8355505b6001600288020188555050505b505050505050565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000613ef0601b83612f64565b9150613efb82613eba565b602082019050919050565b60006020820190508181036000830152613f1f81613ee3565b9050919050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000613f5c601683612f64565b9150613f6782613f26565b602082019050919050565b60006020820190508181036000830152613f8b81613f4f565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b6000613fee603083612f64565b9150613ff982613f92565b604082019050919050565b6000602082019050818103600083015261401d81613fe1565b9050919050565b600081905092915050565b600061403a82612f59565b6140448185614024565b9350614054818560208601612f75565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614096600583614024565b91506140a182614060565b600582019050919050565b60006140b8828561402f565b91506140c4828461402f565b91506140cf82614089565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614137602683612f64565b9150614142826140db565b604082019050919050565b600060208201905081810360008301526141668161412a565b9050919050565b600060408201905061418260008301856130a0565b61418f60208301846130a0565b9392505050565b6000815190506141a5816134d8565b92915050565b6000602082840312156141c1576141c0612e94565b5b60006141cf84828501614196565b91505092915050565b60006141e38261300b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361421557614214613867565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061425a8261300b565b91506142658361300b565b92508261427557614274614220565b5b828204905092915050565b600061428b8261300b565b91506142968361300b565b92508282039050818111156142ae576142ad613867565b5b92915050565b60006142bf8261300b565b91506142ca8361300b565b9250826142da576142d9614220565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061433b82614314565b614345818561431f565b9350614355818560208601612f75565b61435e81612f9f565b840191505092915050565b600060808201905061437e60008301876130a0565b61438b60208301866130a0565b6143986040830185613136565b81810360608301526143aa8184614330565b905095945050505050565b6000815190506143c481612eca565b92915050565b6000602082840312156143e0576143df612e94565b5b60006143ee848285016143b5565b9150509291505056fea26469706673582212203ae5d5beceff6057c90fad0b5625fab18c19d1264c943d0fc8ad15801291c75d64736f6c63430008110033

Deployed Bytecode Sourcemap

96469:4983:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30419:665;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35675:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37880:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100706:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29473:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100871:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;97080:707;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;97791:489;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96869:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100305:206;;;;;;;;;;;;;:::i;:::-;;2958:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;101042:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96658:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96782:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98901:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35464:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99303:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31148:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61911:103;;;;;;;;;;;;;:::i;:::-;;99989:310;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96696:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61260:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99203:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35844:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96914:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96608:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100522:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;99632:75;;;;;;;;;;;;;:::i;:::-;;101221:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98995:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;99416:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98408:481;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96830:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99873:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99097:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38608:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62169:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;99523:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;99714:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30419:665;30549:4;30869:10;30854:25;;:11;:25;;;;:102;;;;30946:10;30931:25;;:11;:25;;;;30854:102;:179;;;;31023:10;31008:25;;:11;:25;;;;30854:179;30834:199;;30419:665;;;:::o;35675:100::-;35729:13;35762:5;35755:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35675:100;:::o;37880:245::-;37984:7;38014:16;38022:7;38014;:16::i;:::-;38009:64;;38039:34;;;;;;;;;;;;;;38009:64;38093:15;:24;38109:7;38093:24;;;;;;;;;;;;;;;;;;;;;38086:31;;37880:245;;;:::o;100706:157::-;100802:8;4479:30;4500:8;4479:20;:30::i;:::-;100823:32:::1;100837:8;100847:7;100823:13;:32::i;:::-;100706:157:::0;;;:::o;29473:315::-;29526:7;29754:15;:13;:15::i;:::-;29739:12;;29723:13;;:28;:46;29716:53;;29473:315;:::o;100871:163::-;100972:4;4307:10;4299:18;;:4;:18;;;4295:83;;4334:32;4355:10;4334:20;:32::i;:::-;4295:83;100989:37:::1;101008:4;101014:2;101018:7;100989:18;:37::i;:::-;100871:163:::0;;;;:::o;97080:707::-;97196:12;97238:10;97221:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;97211:39;;;;;;97196:54;;97288:53;97307:12;;97288:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97321:13;;97336:4;97288:18;:53::i;:::-;97280:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;97410:5;97402;;:13;;;;:::i;:::-;97389:9;:26;;97381:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;97502:12;;97494:5;97468:24;97481:10;97468:12;:24::i;:::-;:31;;;;:::i;:::-;:46;;97460:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;97583:9;;97574:5;97558:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;97550:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;97630:1;97624:5;:7;97616:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;97675:13;;;;;;;;;;;97667:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;97751:28;97761:10;97773:5;97751:9;:28::i;:::-;97167:620;97080:707;;;:::o;97791:489::-;97894:5;;97886;:13;;;;:::i;:::-;97873:9;:26;;97865:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;97986:12;;97978:5;97952:24;97965:10;97952:12;:24::i;:::-;:31;;;;:::i;:::-;:46;;97944:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;98067:9;;98058:5;98042:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;98034:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;98114:1;98108:5;:7;98100:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;98159:13;;;;;;;;;;;98151:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;98244:28;98254:10;98266:5;98244:9;:28::i;:::-;97791:489;:::o;96869:32::-;;;;;;;;;;;;;:::o;100305:206::-;61491:12;:10;:12::i;:::-;61480:23;;:7;:5;:7::i;:::-;:23;;;61472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;100356:12:::1;100382:10;100374:24;;100420:21;100374:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100355:101;;;100475:7;100467:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;100344:167;100305:206::o:0;2958:143::-;3058:42;2958:143;:::o;101042:171::-;101147:4;4307:10;4299:18;;:4;:18;;;4295:83;;4334:32;4355:10;4334:20;:32::i;:::-;4295:83;101164:41:::1;101187:4;101193:2;101197:7;101164:22;:41::i;:::-;101042:171:::0;;;;:::o;96658:31::-;;;;:::o;96782:28::-;;;;;;;;;;;;;:::o;98901:88::-;61491:12;:10;:12::i;:::-;61480:23;;:7;:5;:7::i;:::-;:23;;;61472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;98978:3:::1;98968:7;:13;;;;;;:::i;:::-;;98901:88:::0;:::o;35464:144::-;35528:7;35571:27;35590:7;35571:18;:27::i;:::-;35548:52;;35464:144;;;:::o;99303:102::-;61491:12;:10;:12::i;:::-;61480:23;;:7;:5;:7::i;:::-;:23;;;61472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;99387:10:::1;99375:9;:22;;;;99303:102:::0;:::o;31148:224::-;31212:7;31253:1;31236:19;;:5;:19;;;31232:60;;31264:28;;;;;;;;;;;;;;31232:60;26443:13;31310:18;:25;31329:5;31310:25;;;;;;;;;;;;;;;;:54;31303:61;;31148:224;;;:::o;61911:103::-;61491:12;:10;:12::i;:::-;61480:23;;:7;:5;:7::i;:::-;:23;;;61472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61976:30:::1;62003:1;61976:18;:30::i;:::-;61911:103::o:0;99989:310::-;61491:12;:10;:12::i;:::-;61480:23;;:7;:5;:7::i;:::-;:23;;;61472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;100096:1:::1;100082:11;:15;100074:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;100136:14;100153:13;:11;:13::i;:::-;100136:30;;100205:9;;100190:11;100181:6;:20;;;;:::i;:::-;:33;;100173:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;100252:35;100262:11;100275;100252:9;:35::i;:::-;100067:232;99989:310:::0;;:::o;96696:79::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;61260:87::-;61306:7;61333:6;;;;;;;;;;;61326:13;;61260:87;:::o;99203:92::-;61491:12;:10;:12::i;:::-;61480:23;;:7;:5;:7::i;:::-;:23;;;61472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;99278:9:::1;99270:5;:17;;;;99203:92:::0;:::o;35844:104::-;35900:13;35933:7;35926:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35844:104;:::o;96914:33::-;;;;;;;;;;;;;:::o;96608:34::-;;;;:::o;100522:176::-;100626:8;4479:30;4500:8;4479:20;:30::i;:::-;100647:43:::1;100671:8;100681;100647:23;:43::i;:::-;100522:176:::0;;;:::o;99632:75::-;61491:12;:10;:12::i;:::-;61480:23;;:7;:5;:7::i;:::-;:23;;;61472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;99688:8:::1;;;;;;;;;;;99687:9;99676:8;;:20;;;;;;;;;;;;;;;;;;99632:75::o:0;101221:228::-;101372:4;4307:10;4299:18;;:4;:18;;;4295:83;;4334:32;4355:10;4334:20;:32::i;:::-;4295:83;101394:47:::1;101417:4;101423:2;101427:7;101436:4;101394:22;:47::i;:::-;101221:228:::0;;;;;:::o;98995:92::-;61491:12;:10;:12::i;:::-;61480:23;;:7;:5;:7::i;:::-;:23;;;61472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;99076:3:::1;99064:9;:15;;;;;;:::i;:::-;;98995:92:::0;:::o;99416:96::-;61491:12;:10;:12::i;:::-;61480:23;;:7;:5;:7::i;:::-;:23;;;61472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;99498:6:::1;99482:13;;:22;;;;;;;;;;;;;;;;;;99416:96:::0;:::o;98408:481::-;98506:13;98547:16;98555:7;98547;:16::i;:::-;98531:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;98653:5;98641:17;;:8;;;;;;;;;;;:17;;;98637:56;;98676:9;98669:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98637:56;98701:28;98732:10;:8;:10::i;:::-;98701:41;;98787:1;98762:14;98756:28;:32;:127;;;;;;;;;;;;;;;;;98824:14;98840:18;:7;:16;:18::i;:::-;98807:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;98756:127;98749:134;;;98408:481;;;;:::o;96830:30::-;;;;:::o;99873:113::-;99931:7;99958:20;99972:5;99958:13;:20::i;:::-;99951:27;;99873:113;;;:::o;99097:100::-;61491:12;:10;:12::i;:::-;61480:23;;:7;:5;:7::i;:::-;:23;;;61472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;99183:6:::1;99168:12;:21;;;;99097:100:::0;:::o;38608:214::-;38750:4;38779:18;:25;38798:5;38779:25;;;;;;;;;;;;;;;:35;38805:8;38779:35;;;;;;;;;;;;;;;;;;;;;;;;;38772:42;;38608:214;;;;:::o;62169:238::-;61491:12;:10;:12::i;:::-;61480:23;;:7;:5;:7::i;:::-;:23;;;61472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62292:1:::1;62272:22;;:8;:22;;::::0;62250:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;62371:28;62390:8;62371:18;:28::i;:::-;62169:238:::0;:::o;99523:103::-;61491:12;:10;:12::i;:::-;61480:23;;:7;:5;:7::i;:::-;:23;;;61472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;99612:6:::1;99596:13;;:22;;;;;;;;;;;;;;;;;;99523:103:::0;:::o;99714:152::-;61491:12;:10;:12::i;:::-;61480:23;;:7;:5;:7::i;:::-;:23;;;61472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;99835:14:::1;99819:13;:30;;;;99714:152:::0;:::o;40037:273::-;40094:4;40150:7;40131:15;:13;:15::i;:::-;:26;;:66;;;;;40184:13;;40174:7;:23;40131:66;:152;;;;;40282:1;27213:8;40235:17;:26;40253:7;40235:26;;;;;;;;;;;;:43;:48;40131:152;40111:172;;40037:273;;;:::o;4537:419::-;4776:1;3058:42;4728:45;;;:49;4724:225;;;3058:42;4799;;;4850:4;4857:8;4799:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4794:144;;4913:8;4894:28;;;;;;;;;;;:::i;:::-;;;;;;;;4794:144;4724:225;4537:419;:::o;37332:482::-;37413:13;37445:27;37464:7;37445:18;:27::i;:::-;37413:61;;37495:5;37489:11;;:2;:11;;;37485:48;;37509:24;;;;;;;;;;;;;;37485:48;37573:5;37550:28;;:19;:17;:19::i;:::-;:28;;;37546:175;;37598:44;37615:5;37622:19;:17;:19::i;:::-;37598:16;:44::i;:::-;37593:128;;37670:35;;;;;;;;;;;;;;37593:128;37546:175;37760:2;37733:15;:24;37749:7;37733:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37798:7;37794:2;37778:28;;37787:5;37778:28;;;;;;;;;;;;37402:412;37332:482;;:::o;28997:92::-;29053:7;28997:92;:::o;38889:170::-;39023:28;39033:4;39039:2;39043:7;39023:9;:28::i;:::-;38889:170;;;:::o;9448:190::-;9573:4;9626;9597:25;9610:5;9617:4;9597:12;:25::i;:::-;:33;9590:40;;9448:190;;;;;:::o;40394:104::-;40463:27;40473:2;40477:8;40463:27;;;;;;;;;;;;:9;:27::i;:::-;40394:104;;:::o;59910:98::-;59963:7;59990:10;59983:17;;59910:98;:::o;39130:185::-;39268:39;39285:4;39291:2;39295:7;39268:39;;;;;;;;;;;;:16;:39::i;:::-;39130:185;;;:::o;32851:1161::-;32945:7;32970:12;32985:7;32970:22;;33053:4;33034:15;:13;:15::i;:::-;:23;33030:915;;33087:13;;33080:4;:20;33076:869;;;33125:14;33142:17;:23;33160:4;33142:23;;;;;;;;;;;;33125:40;;33258:1;27213:8;33231:6;:23;:28;33227:699;;33750:113;33767:1;33757:6;:11;33750:113;;33810:17;:25;33828:6;;;;;;;33810:25;;;;;;;;;;;;33801:34;;33750:113;;;33896:6;33889:13;;;;;;33227:699;33102:843;33076:869;33030:915;33973:31;;;;;;;;;;;;;;32851:1161;;;;:::o;62567:191::-;62641:16;62660:6;;;;;;;;;;;62641:25;;62686:8;62677:6;;:17;;;;;;;;;;;;;;;;;;62741:8;62710:40;;62731:8;62710:40;;;;;;;;;;;;62630:128;62567:191;:::o;38197:340::-;38340:19;:17;:19::i;:::-;38328:31;;:8;:31;;;38324:61;;38368:17;;;;;;;;;;;;;;38324:61;38450:8;38398:18;:39;38417:19;:17;:19::i;:::-;38398:39;;;;;;;;;;;;;;;:49;38438:8;38398:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;38510:8;38474:55;;38489:19;:17;:19::i;:::-;38474:55;;;38520:8;38474:55;;;;;;:::i;:::-;;;;;;;;38197:340;;:::o;39386:396::-;39553:28;39563:4;39569:2;39573:7;39553:9;:28::i;:::-;39614:1;39596:2;:14;;;:19;39592:183;;39635:56;39666:4;39672:2;39676:7;39685:5;39635:30;:56::i;:::-;39630:145;;39719:40;;;;;;;;;;;;;;39630:145;39592:183;39386:396;;;;:::o;98288:108::-;98348:13;98381:7;98374:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98288:108;:::o;57081:723::-;57137:13;57367:1;57358:5;:10;57354:53;;57385:10;;;;;;;;;;;;;;;;;;;;;57354:53;57417:12;57432:5;57417:20;;57448:14;57473:78;57488:1;57480:4;:9;57473:78;;57506:8;;;;;:::i;:::-;;;;57537:2;57529:10;;;;;:::i;:::-;;;57473:78;;;57561:19;57593:6;57583:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57561:39;;57611:154;57627:1;57618:5;:10;57611:154;;57655:1;57645:11;;;;;:::i;:::-;;;57722:2;57714:5;:10;;;;:::i;:::-;57701:2;:24;;;;:::i;:::-;57688:39;;57671:6;57678;57671:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;57751:2;57742:11;;;;;:::i;:::-;;;57611:154;;;57789:6;57775:21;;;;;57081:723;;;;:::o;31454:202::-;31515:7;26443:13;26580:2;31556:18;:25;31575:5;31556:25;;;;;;;;;;;;;;;;:49;;31555:93;31535:113;;31454:202;;;:::o;54405:105::-;54465:7;54492:10;54485:17;;54405:105;:::o;45535:2528::-;45650:27;45680;45699:7;45680:18;:27::i;:::-;45650:57;;45765:4;45724:45;;45740:19;45724:45;;;45720:99;;45791:28;;;;;;;;;;;;;;45720:99;45832:22;45881:4;45858:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;45902:43;45919:4;45925:19;:17;:19::i;:::-;45902:16;:43::i;:::-;45858:87;:147;;;;45986:19;:17;:19::i;:::-;45962:43;;:20;45974:7;45962:11;:20::i;:::-;:43;;;45858:147;45832:174;;46024:17;46019:66;;46050:35;;;;;;;;;;;;;;46019:66;46114:1;46100:16;;:2;:16;;;46096:52;;46125:23;;;;;;;;;;;;;;46096:52;46161:43;46183:4;46189:2;46193:7;46202:1;46161:21;:43::i;:::-;46277:15;:24;46293:7;46277:24;;;;;;;;;;;;46270:31;;;;;;;;;;;46669:18;:24;46688:4;46669:24;;;;;;;;;;;;;;;;46667:26;;;;;;;;;;;;46738:18;:22;46757:2;46738:22;;;;;;;;;;;;;;;;46736:24;;;;;;;;;;;27491:8;27097:3;47119:15;:41;;47077:21;47095:2;47077:17;:21::i;:::-;:84;:128;47031:17;:26;47049:7;47031:26;;;;;;;;;;;:174;;;;47375:1;27491:8;47325:19;:46;:51;47321:626;;47397:19;47429:1;47419:7;:11;47397:33;;47586:1;47552:17;:30;47570:11;47552:30;;;;;;;;;;;;:35;47548:384;;47690:13;;47675:11;:28;47671:242;;47870:19;47837:17;:30;47855:11;47837:30;;;;;;;;;;;:52;;;;47671:242;47548:384;47378:569;47321:626;47994:7;47990:2;47975:27;;47984:4;47975:27;;;;;;;;;;;;48013:42;48034:4;48040:2;48044:7;48053:1;48013:20;:42::i;:::-;45639:2424;;45535:2528;;;:::o;10315:328::-;10425:7;10450:20;10473:4;10450:27;;10493:9;10488:118;10512:5;:12;10508:1;:16;10488:118;;;10561:33;10571:12;10585:5;10591:1;10585:8;;;;;;;;:::i;:::-;;;;;;;;10561:9;:33::i;:::-;10546:48;;10526:3;;;;;:::i;:::-;;;;10488:118;;;;10623:12;10616:19;;;10315:328;;;;:::o;40871:2461::-;40994:20;41017:13;;40994:36;;41059:1;41045:16;;:2;:16;;;41041:48;;41070:19;;;;;;;;;;;;;;41041:48;41116:1;41104:8;:13;41100:44;;41126:18;;;;;;;;;;;;;;41100:44;41157:61;41187:1;41191:2;41195:12;41209:8;41157:21;:61::i;:::-;41795:1;26580:2;41766:1;:25;;41765:31;41736:8;:61;41693:18;:22;41712:2;41693:22;;;;;;;;;;;;;;;;:104;;;;;;;;;;;27356:3;42196:29;42223:1;42211:8;:13;42196:14;:29::i;:::-;:56;;27097:3;42133:15;:41;;42091:21;42109:2;42091:17;:21::i;:::-;:84;:162;42040:17;:31;42058:12;42040:31;;;;;;;;;;;:213;;;;42270:20;42293:12;42270:35;;42320:11;42349:8;42334:12;:23;42320:37;;42396:1;42378:2;:14;;;:19;42374:826;;42418:504;42474:12;42470:2;42449:38;;42466:1;42449:38;;;;;;;;;;;;42541:212;42610:1;42643:2;42676:14;;;;;;42721:5;42541:30;:212::i;:::-;42510:365;;42811:40;;;;;;;;;;;;;;42510:365;42917:3;42902:12;:18;42418:504;;43003:12;42986:13;;:29;42982:43;;43017:8;;;42982:43;42374:826;;;43066:119;43122:14;;;;;;43118:2;43097:40;;43114:1;43097:40;;;;;;;;;;;;43180:3;43165:12;:18;43066:119;;42374:826;43230:12;43214:13;:28;;;;41470:1784;;43264:60;43293:1;43297:2;43301:12;43315:8;43264:20;:60::i;:::-;40983:2349;40871:2461;;;:::o;51759:831::-;51922:4;51981:2;51956:45;;;52020:19;:17;:19::i;:::-;52058:4;52081:7;52107:5;51956:171;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51939:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52358:1;52341:6;:13;:18;52337:235;;52387:40;;;;;;;;;;;;;;52337:235;52530:6;52524:13;52515:6;52511:2;52507:15;52500:38;51939:644;52227:54;;;52200:81;;;:6;:81;;;;52176:105;;;51759:831;;;;;;:::o;53238:159::-;;;;;:::o;36861:180::-;36952:14;37018:5;37008:15;;36861:180;;;:::o;54056:158::-;;;;;:::o;16796:149::-;16859:7;16890:1;16886;:5;:51;;16917:20;16932:1;16935;16917:14;:20::i;:::-;16886:51;;;16894:20;16909:1;16912;16894:14;:20::i;:::-;16886:51;16879:58;;16796:149;;;;:::o;37128:142::-;37186:14;37247:5;37237:15;;37128:142;;;:::o;16953:300::-;17048:13;17160:1;17154:4;17147:15;17189:1;17183:4;17176:15;17230:4;17224;17214:21;17205:30;;16953:300;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:117;6222:1;6219;6212:12;6253:568;6326:8;6336:6;6386:3;6379:4;6371:6;6367:17;6363:27;6353:122;;6394:79;;:::i;:::-;6353:122;6507:6;6494:20;6484:30;;6537:18;6529:6;6526:30;6523:117;;;6559:79;;:::i;:::-;6523:117;6673:4;6665:6;6661:17;6649:29;;6727:3;6719:4;6711:6;6707:17;6697:8;6693:32;6690:41;6687:128;;;6734:79;;:::i;:::-;6687:128;6253:568;;;;;:::o;6827:704::-;6922:6;6930;6938;6987:2;6975:9;6966:7;6962:23;6958:32;6955:119;;;6993:79;;:::i;:::-;6955:119;7141:1;7130:9;7126:17;7113:31;7171:18;7163:6;7160:30;7157:117;;;7193:79;;:::i;:::-;7157:117;7306:80;7378:7;7369:6;7358:9;7354:22;7306:80;:::i;:::-;7288:98;;;;7084:312;7435:2;7461:53;7506:7;7497:6;7486:9;7482:22;7461:53;:::i;:::-;7451:63;;7406:118;6827:704;;;;;:::o;7537:60::-;7565:3;7586:5;7579:12;;7537:60;;;:::o;7603:142::-;7653:9;7686:53;7704:34;7713:24;7731:5;7713:24;:::i;:::-;7704:34;:::i;:::-;7686:53;:::i;:::-;7673:66;;7603:142;;;:::o;7751:126::-;7801:9;7834:37;7865:5;7834:37;:::i;:::-;7821:50;;7751:126;;;:::o;7883:157::-;7964:9;7997:37;8028:5;7997:37;:::i;:::-;7984:50;;7883:157;;;:::o;8046:193::-;8164:68;8226:5;8164:68;:::i;:::-;8159:3;8152:81;8046:193;;:::o;8245:284::-;8369:4;8407:2;8396:9;8392:18;8384:26;;8420:102;8519:1;8508:9;8504:17;8495:6;8420:102;:::i;:::-;8245:284;;;;:::o;8535:117::-;8644:1;8641;8634:12;8658:180;8706:77;8703:1;8696:88;8803:4;8800:1;8793:15;8827:4;8824:1;8817:15;8844:281;8927:27;8949:4;8927:27;:::i;:::-;8919:6;8915:40;9057:6;9045:10;9042:22;9021:18;9009:10;9006:34;9003:62;9000:88;;;9068:18;;:::i;:::-;9000:88;9108:10;9104:2;9097:22;8887:238;8844:281;;:::o;9131:129::-;9165:6;9192:20;;:::i;:::-;9182:30;;9221:33;9249:4;9241:6;9221:33;:::i;:::-;9131:129;;;:::o;9266:308::-;9328:4;9418:18;9410:6;9407:30;9404:56;;;9440:18;;:::i;:::-;9404:56;9478:29;9500:6;9478:29;:::i;:::-;9470:37;;9562:4;9556;9552:15;9544:23;;9266:308;;;:::o;9580:146::-;9677:6;9672:3;9667;9654:30;9718:1;9709:6;9704:3;9700:16;9693:27;9580:146;;;:::o;9732:425::-;9810:5;9835:66;9851:49;9893:6;9851:49;:::i;:::-;9835:66;:::i;:::-;9826:75;;9924:6;9917:5;9910:21;9962:4;9955:5;9951:16;10000:3;9991:6;9986:3;9982:16;9979:25;9976:112;;;10007:79;;:::i;:::-;9976:112;10097:54;10144:6;10139:3;10134;10097:54;:::i;:::-;9816:341;9732:425;;;;;:::o;10177:340::-;10233:5;10282:3;10275:4;10267:6;10263:17;10259:27;10249:122;;10290:79;;:::i;:::-;10249:122;10407:6;10394:20;10432:79;10507:3;10499:6;10492:4;10484:6;10480:17;10432:79;:::i;:::-;10423:88;;10239:278;10177:340;;;;:::o;10523:509::-;10592:6;10641:2;10629:9;10620:7;10616:23;10612:32;10609:119;;;10647:79;;:::i;:::-;10609:119;10795:1;10784:9;10780:17;10767:31;10825:18;10817:6;10814:30;10811:117;;;10847:79;;:::i;:::-;10811:117;10952:63;11007:7;10998:6;10987:9;10983:22;10952:63;:::i;:::-;10942:73;;10738:287;10523:509;;;;:::o;11038:329::-;11097:6;11146:2;11134:9;11125:7;11121:23;11117:32;11114:119;;;11152:79;;:::i;:::-;11114:119;11272:1;11297:53;11342:7;11333:6;11322:9;11318:22;11297:53;:::i;:::-;11287:63;;11243:117;11038:329;;;;:::o;11373:474::-;11441:6;11449;11498:2;11486:9;11477:7;11473:23;11469:32;11466:119;;;11504:79;;:::i;:::-;11466:119;11624:1;11649:53;11694:7;11685:6;11674:9;11670:22;11649:53;:::i;:::-;11639:63;;11595:117;11751:2;11777:53;11822:7;11813:6;11802:9;11798:22;11777:53;:::i;:::-;11767:63;;11722:118;11373:474;;;;;:::o;11853:116::-;11923:21;11938:5;11923:21;:::i;:::-;11916:5;11913:32;11903:60;;11959:1;11956;11949:12;11903:60;11853:116;:::o;11975:133::-;12018:5;12056:6;12043:20;12034:29;;12072:30;12096:5;12072:30;:::i;:::-;11975:133;;;;:::o;12114:468::-;12179:6;12187;12236:2;12224:9;12215:7;12211:23;12207:32;12204:119;;;12242:79;;:::i;:::-;12204:119;12362:1;12387:53;12432:7;12423:6;12412:9;12408:22;12387:53;:::i;:::-;12377:63;;12333:117;12489:2;12515:50;12557:7;12548:6;12537:9;12533:22;12515:50;:::i;:::-;12505:60;;12460:115;12114:468;;;;;:::o;12588:307::-;12649:4;12739:18;12731:6;12728:30;12725:56;;;12761:18;;:::i;:::-;12725:56;12799:29;12821:6;12799:29;:::i;:::-;12791:37;;12883:4;12877;12873:15;12865:23;;12588:307;;;:::o;12901:423::-;12978:5;13003:65;13019:48;13060:6;13019:48;:::i;:::-;13003:65;:::i;:::-;12994:74;;13091:6;13084:5;13077:21;13129:4;13122:5;13118:16;13167:3;13158:6;13153:3;13149:16;13146:25;13143:112;;;13174:79;;:::i;:::-;13143:112;13264:54;13311:6;13306:3;13301;13264:54;:::i;:::-;12984:340;12901:423;;;;;:::o;13343:338::-;13398:5;13447:3;13440:4;13432:6;13428:17;13424:27;13414:122;;13455:79;;:::i;:::-;13414:122;13572:6;13559:20;13597:78;13671:3;13663:6;13656:4;13648:6;13644:17;13597:78;:::i;:::-;13588:87;;13404:277;13343:338;;;;:::o;13687:943::-;13782:6;13790;13798;13806;13855:3;13843:9;13834:7;13830:23;13826:33;13823:120;;;13862:79;;:::i;:::-;13823:120;13982:1;14007:53;14052:7;14043:6;14032:9;14028:22;14007:53;:::i;:::-;13997:63;;13953:117;14109:2;14135:53;14180:7;14171:6;14160:9;14156:22;14135:53;:::i;:::-;14125:63;;14080:118;14237:2;14263:53;14308:7;14299:6;14288:9;14284:22;14263:53;:::i;:::-;14253:63;;14208:118;14393:2;14382:9;14378:18;14365:32;14424:18;14416:6;14413:30;14410:117;;;14446:79;;:::i;:::-;14410:117;14551:62;14605:7;14596:6;14585:9;14581:22;14551:62;:::i;:::-;14541:72;;14336:287;13687:943;;;;;;;:::o;14636:323::-;14692:6;14741:2;14729:9;14720:7;14716:23;14712:32;14709:119;;;14747:79;;:::i;:::-;14709:119;14867:1;14892:50;14934:7;14925:6;14914:9;14910:22;14892:50;:::i;:::-;14882:60;;14838:114;14636:323;;;;:::o;14965:474::-;15033:6;15041;15090:2;15078:9;15069:7;15065:23;15061:32;15058:119;;;15096:79;;:::i;:::-;15058:119;15216:1;15241:53;15286:7;15277:6;15266:9;15262:22;15241:53;:::i;:::-;15231:63;;15187:117;15343:2;15369:53;15414:7;15405:6;15394:9;15390:22;15369:53;:::i;:::-;15359:63;;15314:118;14965:474;;;;;:::o;15445:77::-;15482:7;15511:5;15500:16;;15445:77;;;:::o;15528:122::-;15601:24;15619:5;15601:24;:::i;:::-;15594:5;15591:35;15581:63;;15640:1;15637;15630:12;15581:63;15528:122;:::o;15656:139::-;15702:5;15740:6;15727:20;15718:29;;15756:33;15783:5;15756:33;:::i;:::-;15656:139;;;;:::o;15801:329::-;15860:6;15909:2;15897:9;15888:7;15884:23;15880:32;15877:119;;;15915:79;;:::i;:::-;15877:119;16035:1;16060:53;16105:7;16096:6;16085:9;16081:22;16060:53;:::i;:::-;16050:63;;16006:117;15801:329;;;;:::o;16136:180::-;16184:77;16181:1;16174:88;16281:4;16278:1;16271:15;16305:4;16302:1;16295:15;16322:320;16366:6;16403:1;16397:4;16393:12;16383:22;;16450:1;16444:4;16440:12;16471:18;16461:81;;16527:4;16519:6;16515:17;16505:27;;16461:81;16589:2;16581:6;16578:14;16558:18;16555:38;16552:84;;16608:18;;:::i;:::-;16552:84;16373:269;16322:320;;;:::o;16648:94::-;16681:8;16729:5;16725:2;16721:14;16700:35;;16648:94;;;:::o;16748:::-;16787:7;16816:20;16830:5;16816:20;:::i;:::-;16805:31;;16748:94;;;:::o;16848:100::-;16887:7;16916:26;16936:5;16916:26;:::i;:::-;16905:37;;16848:100;;;:::o;16954:157::-;17059:45;17079:24;17097:5;17079:24;:::i;:::-;17059:45;:::i;:::-;17054:3;17047:58;16954:157;;:::o;17117:256::-;17229:3;17244:75;17315:3;17306:6;17244:75;:::i;:::-;17344:2;17339:3;17335:12;17328:19;;17364:3;17357:10;;17117:256;;;;:::o;17379:175::-;17519:27;17515:1;17507:6;17503:14;17496:51;17379:175;:::o;17560:366::-;17702:3;17723:67;17787:2;17782:3;17723:67;:::i;:::-;17716:74;;17799:93;17888:3;17799:93;:::i;:::-;17917:2;17912:3;17908:12;17901:19;;17560:366;;;:::o;17932:419::-;18098:4;18136:2;18125:9;18121:18;18113:26;;18185:9;18179:4;18175:20;18171:1;18160:9;18156:17;18149:47;18213:131;18339:4;18213:131;:::i;:::-;18205:139;;17932:419;;;:::o;18357:180::-;18405:77;18402:1;18395:88;18502:4;18499:1;18492:15;18526:4;18523:1;18516:15;18543:410;18583:7;18606:20;18624:1;18606:20;:::i;:::-;18601:25;;18640:20;18658:1;18640:20;:::i;:::-;18635:25;;18695:1;18692;18688:9;18717:30;18735:11;18717:30;:::i;:::-;18706:41;;18896:1;18887:7;18883:15;18880:1;18877:22;18857:1;18850:9;18830:83;18807:139;;18926:18;;:::i;:::-;18807:139;18591:362;18543:410;;;;:::o;18959:179::-;19099:31;19095:1;19087:6;19083:14;19076:55;18959:179;:::o;19144:366::-;19286:3;19307:67;19371:2;19366:3;19307:67;:::i;:::-;19300:74;;19383:93;19472:3;19383:93;:::i;:::-;19501:2;19496:3;19492:12;19485:19;;19144:366;;;:::o;19516:419::-;19682:4;19720:2;19709:9;19705:18;19697:26;;19769:9;19763:4;19759:20;19755:1;19744:9;19740:17;19733:47;19797:131;19923:4;19797:131;:::i;:::-;19789:139;;19516:419;;;:::o;19941:191::-;19981:3;20000:20;20018:1;20000:20;:::i;:::-;19995:25;;20034:20;20052:1;20034:20;:::i;:::-;20029:25;;20077:1;20074;20070:9;20063:16;;20098:3;20095:1;20092:10;20089:36;;;20105:18;;:::i;:::-;20089:36;19941:191;;;;:::o;20138:171::-;20278:23;20274:1;20266:6;20262:14;20255:47;20138:171;:::o;20315:366::-;20457:3;20478:67;20542:2;20537:3;20478:67;:::i;:::-;20471:74;;20554:93;20643:3;20554:93;:::i;:::-;20672:2;20667:3;20663:12;20656:19;;20315:366;;;:::o;20687:419::-;20853:4;20891:2;20880:9;20876:18;20868:26;;20940:9;20934:4;20930:20;20926:1;20915:9;20911:17;20904:47;20968:131;21094:4;20968:131;:::i;:::-;20960:139;;20687:419;;;:::o;21112:157::-;21252:9;21248:1;21240:6;21236:14;21229:33;21112:157;:::o;21275:365::-;21417:3;21438:66;21502:1;21497:3;21438:66;:::i;:::-;21431:73;;21513:93;21602:3;21513:93;:::i;:::-;21631:2;21626:3;21622:12;21615:19;;21275:365;;;:::o;21646:419::-;21812:4;21850:2;21839:9;21835:18;21827:26;;21899:9;21893:4;21889:20;21885:1;21874:9;21870:17;21863:47;21927:131;22053:4;21927:131;:::i;:::-;21919:139;;21646:419;;;:::o;22071:171::-;22211:23;22207:1;22199:6;22195:14;22188:47;22071:171;:::o;22248:366::-;22390:3;22411:67;22475:2;22470:3;22411:67;:::i;:::-;22404:74;;22487:93;22576:3;22487:93;:::i;:::-;22605:2;22600:3;22596:12;22589:19;;22248:366;;;:::o;22620:419::-;22786:4;22824:2;22813:9;22809:18;22801:26;;22873:9;22867:4;22863:20;22859:1;22848:9;22844:17;22837:47;22901:131;23027:4;22901:131;:::i;:::-;22893:139;;22620:419;;;:::o;23045:173::-;23185:25;23181:1;23173:6;23169:14;23162:49;23045:173;:::o;23224:366::-;23366:3;23387:67;23451:2;23446:3;23387:67;:::i;:::-;23380:74;;23463:93;23552:3;23463:93;:::i;:::-;23581:2;23576:3;23572:12;23565:19;;23224:366;;;:::o;23596:419::-;23762:4;23800:2;23789:9;23785:18;23777:26;;23849:9;23843:4;23839:20;23835:1;23824:9;23820:17;23813:47;23877:131;24003:4;23877:131;:::i;:::-;23869:139;;23596:419;;;:::o;24021:182::-;24161:34;24157:1;24149:6;24145:14;24138:58;24021:182;:::o;24209:366::-;24351:3;24372:67;24436:2;24431:3;24372:67;:::i;:::-;24365:74;;24448:93;24537:3;24448:93;:::i;:::-;24566:2;24561:3;24557:12;24550:19;;24209:366;;;:::o;24581:419::-;24747:4;24785:2;24774:9;24770:18;24762:26;;24834:9;24828:4;24824:20;24820:1;24809:9;24805:17;24798:47;24862:131;24988:4;24862:131;:::i;:::-;24854:139;;24581:419;;;:::o;25006:147::-;25107:11;25144:3;25129:18;;25006:147;;;;:::o;25159:114::-;;:::o;25279:398::-;25438:3;25459:83;25540:1;25535:3;25459:83;:::i;:::-;25452:90;;25551:93;25640:3;25551:93;:::i;:::-;25669:1;25664:3;25660:11;25653:18;;25279:398;;;:::o;25683:379::-;25867:3;25889:147;26032:3;25889:147;:::i;:::-;25882:154;;26053:3;26046:10;;25683:379;;;:::o;26068:166::-;26208:18;26204:1;26196:6;26192:14;26185:42;26068:166;:::o;26240:366::-;26382:3;26403:67;26467:2;26462:3;26403:67;:::i;:::-;26396:74;;26479:93;26568:3;26479:93;:::i;:::-;26597:2;26592:3;26588:12;26581:19;;26240:366;;;:::o;26612:419::-;26778:4;26816:2;26805:9;26801:18;26793:26;;26865:9;26859:4;26855:20;26851:1;26840:9;26836:17;26829:47;26893:131;27019:4;26893:131;:::i;:::-;26885:139;;26612:419;;;:::o;27037:141::-;27086:4;27109:3;27101:11;;27132:3;27129:1;27122:14;27166:4;27163:1;27153:18;27145:26;;27037:141;;;:::o;27184:93::-;27221:6;27268:2;27263;27256:5;27252:14;27248:23;27238:33;;27184:93;;;:::o;27283:107::-;27327:8;27377:5;27371:4;27367:16;27346:37;;27283:107;;;;:::o;27396:393::-;27465:6;27515:1;27503:10;27499:18;27538:97;27568:66;27557:9;27538:97;:::i;:::-;27656:39;27686:8;27675:9;27656:39;:::i;:::-;27644:51;;27728:4;27724:9;27717:5;27713:21;27704:30;;27777:4;27767:8;27763:19;27756:5;27753:30;27743:40;;27472:317;;27396:393;;;;;:::o;27795:142::-;27845:9;27878:53;27896:34;27905:24;27923:5;27905:24;:::i;:::-;27896:34;:::i;:::-;27878:53;:::i;:::-;27865:66;;27795:142;;;:::o;27943:75::-;27986:3;28007:5;28000:12;;27943:75;;;:::o;28024:269::-;28134:39;28165:7;28134:39;:::i;:::-;28195:91;28244:41;28268:16;28244:41;:::i;:::-;28236:6;28229:4;28223:11;28195:91;:::i;:::-;28189:4;28182:105;28100:193;28024:269;;;:::o;28299:73::-;28344:3;28299:73;:::o;28378:189::-;28455:32;;:::i;:::-;28496:65;28554:6;28546;28540:4;28496:65;:::i;:::-;28431:136;28378:189;;:::o;28573:186::-;28633:120;28650:3;28643:5;28640:14;28633:120;;;28704:39;28741:1;28734:5;28704:39;:::i;:::-;28677:1;28670:5;28666:13;28657:22;;28633:120;;;28573:186;;:::o;28765:543::-;28866:2;28861:3;28858:11;28855:446;;;28900:38;28932:5;28900:38;:::i;:::-;28984:29;29002:10;28984:29;:::i;:::-;28974:8;28970:44;29167:2;29155:10;29152:18;29149:49;;;29188:8;29173:23;;29149:49;29211:80;29267:22;29285:3;29267:22;:::i;:::-;29257:8;29253:37;29240:11;29211:80;:::i;:::-;28870:431;;28855:446;28765:543;;;:::o;29314:117::-;29368:8;29418:5;29412:4;29408:16;29387:37;;29314:117;;;;:::o;29437:169::-;29481:6;29514:51;29562:1;29558:6;29550:5;29547:1;29543:13;29514:51;:::i;:::-;29510:56;29595:4;29589;29585:15;29575:25;;29488:118;29437:169;;;;:::o;29611:295::-;29687:4;29833:29;29858:3;29852:4;29833:29;:::i;:::-;29825:37;;29895:3;29892:1;29888:11;29882:4;29879:21;29871:29;;29611:295;;;;:::o;29911:1395::-;30028:37;30061:3;30028:37;:::i;:::-;30130:18;30122:6;30119:30;30116:56;;;30152:18;;:::i;:::-;30116:56;30196:38;30228:4;30222:11;30196:38;:::i;:::-;30281:67;30341:6;30333;30327:4;30281:67;:::i;:::-;30375:1;30399:4;30386:17;;30431:2;30423:6;30420:14;30448:1;30443:618;;;;31105:1;31122:6;31119:77;;;31171:9;31166:3;31162:19;31156:26;31147:35;;31119:77;31222:67;31282:6;31275:5;31222:67;:::i;:::-;31216:4;31209:81;31078:222;30413:887;;30443:618;30495:4;30491:9;30483:6;30479:22;30529:37;30561:4;30529:37;:::i;:::-;30588:1;30602:208;30616:7;30613:1;30610:14;30602:208;;;30695:9;30690:3;30686:19;30680:26;30672:6;30665:42;30746:1;30738:6;30734:14;30724:24;;30793:2;30782:9;30778:18;30765:31;;30639:4;30636:1;30632:12;30627:17;;30602:208;;;30838:6;30829:7;30826:19;30823:179;;;30896:9;30891:3;30887:19;30881:26;30939:48;30981:4;30973:6;30969:17;30958:9;30939:48;:::i;:::-;30931:6;30924:64;30846:156;30823:179;31048:1;31044;31036:6;31032:14;31028:22;31022:4;31015:36;30450:611;;;30413:887;;30003:1303;;;29911:1395;;:::o;31312:177::-;31452:29;31448:1;31440:6;31436:14;31429:53;31312:177;:::o;31495:366::-;31637:3;31658:67;31722:2;31717:3;31658:67;:::i;:::-;31651:74;;31734:93;31823:3;31734:93;:::i;:::-;31852:2;31847:3;31843:12;31836:19;;31495:366;;;:::o;31867:419::-;32033:4;32071:2;32060:9;32056:18;32048:26;;32120:9;32114:4;32110:20;32106:1;32095:9;32091:17;32084:47;32148:131;32274:4;32148:131;:::i;:::-;32140:139;;31867:419;;;:::o;32292:172::-;32432:24;32428:1;32420:6;32416:14;32409:48;32292:172;:::o;32470:366::-;32612:3;32633:67;32697:2;32692:3;32633:67;:::i;:::-;32626:74;;32709:93;32798:3;32709:93;:::i;:::-;32827:2;32822:3;32818:12;32811:19;;32470:366;;;:::o;32842:419::-;33008:4;33046:2;33035:9;33031:18;33023:26;;33095:9;33089:4;33085:20;33081:1;33070:9;33066:17;33059:47;33123:131;33249:4;33123:131;:::i;:::-;33115:139;;32842:419;;;:::o;33267:235::-;33407:34;33403:1;33395:6;33391:14;33384:58;33476:18;33471:2;33463:6;33459:15;33452:43;33267:235;:::o;33508:366::-;33650:3;33671:67;33735:2;33730:3;33671:67;:::i;:::-;33664:74;;33747:93;33836:3;33747:93;:::i;:::-;33865:2;33860:3;33856:12;33849:19;;33508:366;;;:::o;33880:419::-;34046:4;34084:2;34073:9;34069:18;34061:26;;34133:9;34127:4;34123:20;34119:1;34108:9;34104:17;34097:47;34161:131;34287:4;34161:131;:::i;:::-;34153:139;;33880:419;;;:::o;34305:148::-;34407:11;34444:3;34429:18;;34305:148;;;;:::o;34459:390::-;34565:3;34593:39;34626:5;34593:39;:::i;:::-;34648:89;34730:6;34725:3;34648:89;:::i;:::-;34641:96;;34746:65;34804:6;34799:3;34792:4;34785:5;34781:16;34746:65;:::i;:::-;34836:6;34831:3;34827:16;34820:23;;34569:280;34459:390;;;;:::o;34855:155::-;34995:7;34991:1;34983:6;34979:14;34972:31;34855:155;:::o;35016:400::-;35176:3;35197:84;35279:1;35274:3;35197:84;:::i;:::-;35190:91;;35290:93;35379:3;35290:93;:::i;:::-;35408:1;35403:3;35399:11;35392:18;;35016:400;;;:::o;35422:701::-;35703:3;35725:95;35816:3;35807:6;35725:95;:::i;:::-;35718:102;;35837:95;35928:3;35919:6;35837:95;:::i;:::-;35830:102;;35949:148;36093:3;35949:148;:::i;:::-;35942:155;;36114:3;36107:10;;35422:701;;;;;:::o;36129:225::-;36269:34;36265:1;36257:6;36253:14;36246:58;36338:8;36333:2;36325:6;36321:15;36314:33;36129:225;:::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:332::-;37278:4;37316:2;37305:9;37301:18;37293:26;;37329:71;37397:1;37386:9;37382:17;37373:6;37329:71;:::i;:::-;37410:72;37478:2;37467:9;37463:18;37454:6;37410:72;:::i;:::-;37157:332;;;;;:::o;37495:137::-;37549:5;37580:6;37574:13;37565:22;;37596:30;37620:5;37596:30;:::i;:::-;37495:137;;;;:::o;37638:345::-;37705:6;37754:2;37742:9;37733:7;37729:23;37725:32;37722:119;;;37760:79;;:::i;:::-;37722:119;37880:1;37905:61;37958:7;37949:6;37938:9;37934:22;37905:61;:::i;:::-;37895:71;;37851:125;37638:345;;;;:::o;37989:233::-;38028:3;38051:24;38069:5;38051:24;:::i;:::-;38042:33;;38097:66;38090:5;38087:77;38084:103;;38167:18;;:::i;:::-;38084:103;38214:1;38207:5;38203:13;38196:20;;37989:233;;;:::o;38228:180::-;38276:77;38273:1;38266:88;38373:4;38370:1;38363:15;38397:4;38394:1;38387:15;38414:185;38454:1;38471:20;38489:1;38471:20;:::i;:::-;38466:25;;38505:20;38523:1;38505:20;:::i;:::-;38500:25;;38544:1;38534:35;;38549:18;;:::i;:::-;38534:35;38591:1;38588;38584:9;38579:14;;38414:185;;;;:::o;38605:194::-;38645:4;38665:20;38683:1;38665:20;:::i;:::-;38660:25;;38699:20;38717:1;38699:20;:::i;:::-;38694:25;;38743:1;38740;38736:9;38728:17;;38767:1;38761:4;38758:11;38755:37;;;38772:18;;:::i;:::-;38755:37;38605:194;;;;:::o;38805:176::-;38837:1;38854:20;38872:1;38854:20;:::i;:::-;38849:25;;38888:20;38906:1;38888:20;:::i;:::-;38883:25;;38927:1;38917:35;;38932:18;;:::i;:::-;38917:35;38973:1;38970;38966:9;38961:14;;38805:176;;;;:::o;38987:180::-;39035:77;39032:1;39025:88;39132:4;39129:1;39122:15;39156:4;39153:1;39146:15;39173:98;39224:6;39258:5;39252:12;39242:22;;39173:98;;;:::o;39277:168::-;39360:11;39394:6;39389:3;39382:19;39434:4;39429:3;39425:14;39410:29;;39277:168;;;;:::o;39451:373::-;39537:3;39565:38;39597:5;39565:38;:::i;:::-;39619:70;39682:6;39677:3;39619:70;:::i;:::-;39612:77;;39698:65;39756:6;39751:3;39744:4;39737:5;39733:16;39698:65;:::i;:::-;39788:29;39810:6;39788:29;:::i;:::-;39783:3;39779:39;39772:46;;39541:283;39451:373;;;;:::o;39830:640::-;40025:4;40063:3;40052:9;40048:19;40040:27;;40077:71;40145:1;40134:9;40130:17;40121:6;40077:71;:::i;:::-;40158:72;40226:2;40215:9;40211:18;40202:6;40158:72;:::i;:::-;40240;40308:2;40297:9;40293:18;40284:6;40240:72;:::i;:::-;40359:9;40353:4;40349:20;40344:2;40333:9;40329:18;40322:48;40387:76;40458:4;40449:6;40387:76;:::i;:::-;40379:84;;39830:640;;;;;;;:::o;40476:141::-;40532:5;40563:6;40557:13;40548:22;;40579:32;40605:5;40579:32;:::i;:::-;40476:141;;;;:::o;40623:349::-;40692:6;40741:2;40729:9;40720:7;40716:23;40712:32;40709:119;;;40747:79;;:::i;:::-;40709:119;40867:1;40892:63;40947:7;40938:6;40927:9;40923:22;40892:63;:::i;:::-;40882:73;;40838:127;40623:349;;;;:::o

Swarm Source

ipfs://3ae5d5beceff6057c90fad0b5625fab18c19d1264c943d0fc8ad15801291c75d
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.