ETH Price: $3,357.30 (+0.27%)
Gas: 9 Gwei

Token

The Blinkless: Grimlets (BLNKGR)
 

Overview

Max Total Supply

2,550 BLNKGR

Holders

105

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
hongkonggoosefund.eth
Balance
134 BLNKGR
0xf76b5fdc6113afaea736c681d86211b823282a81
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:
Grimlets

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-26
*/

// SPDX-License-Identifier: MIT
// 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)
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.4;


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

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

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

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

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


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.4;



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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (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: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/Frontiers.sol


pragma solidity ^0.8.4;







contract Frontiers is ERC721AQueryable, Ownable {

    string metadataPath = "https://universe.theblinkless.com/frontiersjson/";
    mapping(uint256 => string) public tokenList; // tokenid => "[planetid]-[parcelid]";
    mapping(uint256 => uint256) public planetParcelCounts; // planetid => # of parcels
    address payoutWallet = 0xeD2faa60373eC70E57B39152aeE5Ce4ed7C333c7; //wallet for payouts
    address optixReceiver = 0xB818B1BbF47fC499B621f6807d61a61046C6478f; // wallet to receive optix
    address bigBangContract = 0x12bE473a9299B29a1E22c0893695254a97dEa07f; //big bang contract address
    address optixContract = 0xa93fce39D926527Af68B8520FB55e2f74D9201b5; // optix contract address
    uint256 optixMintPrice = 5000 ether;
    uint256 currentlyMinting = 0;
    bytes32 root = 0x14a5ea8f1752b06b4aa9292e0c381cb9fbf293d53f033935235cae2ef6e7ae2d;

    constructor() ERC721A("The Blinkless: Frontiers", "BLNKFR") {}

    /*
    * Verifies the parcel count supplied from metadata is accurate
    */
    function verifyParcelCount(bytes32[] memory proof, bytes32 leaf) public view returns (bool){
        return MerkleProof.verify(proof,root,leaf);
    }

    
 

     /**
    * Update the optix mint price per parcel
    */
    function updateOptixMintPrice(uint256 _price) public onlyOwner{
        optixMintPrice = _price;
    }


     /**
    * Update the metadata path
    */
    function updateMetadataPath(string memory _path) public onlyOwner{
        metadataPath = _path;
    }


     /**
    * Update the big bang address
    */
     function updateBigBangContract(address _contract) public onlyOwner{
        bigBangContract = _contract;
    }

     /**
    * Update the optix address
    */
     function updateOptixContract(address _contract) public onlyOwner{
        optixContract = _contract;
    }

     /**
    * Update the optix receiver address
    */
     function updateOptixReceiver(address _address) public onlyOwner{
        optixReceiver = _address;
    }

     /**
    * Update the mint status
    */
     function updateCurrentlyMinting(uint256 _status) public onlyOwner{
        currentlyMinting = _status;
    }

     /**
    * Update the merkle root
    */
    function updateRoot(bytes32 _root) public onlyOwner{
        root = _root;
    }


     /**
    * Update the payout wallet address
    */
    function updatePayoutWallet(address _payoutWallet) public onlyOwner{
        payoutWallet = _payoutWallet;
    }

     /*
    * Withdraw by owner
    */
    function withdraw() external onlyOwner {
        (bool success, ) = payable(payoutWallet).call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }



    /*
    * These are here to receive ETH sent to the contract address
    */
    receive() external payable {}

    fallback() external payable {}
}
// File: contracts/Grimlets.sol


pragma solidity ^0.8.4;








contract Grimlets is ERC721AQueryable, Ownable {

    string public metadataPath = "https://theblinkless.s3.amazonaws.com/grimletsjson/";
    address public payoutWallet = 0xeD2faa60373eC70E57B39152aeE5Ce4ed7C333c7; //wallet for payouts
    address public projectWallet = 0xB818B1BbF47fC499B621f6807d61a61046C6478f; //project wallet
    address public optixReceiver = 0xB818B1BbF47fC499B621f6807d61a61046C6478f; // wallet to receive optix
    address public optixContract = 0xa93fce39D926527Af68B8520FB55e2f74D9201b5; // optix contract address
    address public frontiersContract = 0xC772fB742a39dFC935Ea51f217ef58282c634521; // frontiers contract address
    uint256 public optixMintPrice = 250000 ether;
    uint256 maxSupply = 3500;
    mapping(uint256 => bool) public claimedParcels; // tokenid => bool;
    uint256[] public claimedParcelList;
    bool public isMinting = false;
    bytes32 root = 0x693320d25c96ad8361f549355d64b8d50cb5fe25fee5f890c9267e6750fc7d90;


    constructor() ERC721A("The Blinkless: Grimlets", "BLNKGR") {}

     /*
    * Ensures the caller is not a proxy contract or bot, but is an actual wallet.
    */
    modifier callerIsUser() {
        //we only want to mint to real people
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }


    /*
    * Verifies the parcel count supplied from metadata is accurate
    */
    function verifyParcelCount(bytes32[] memory proof, bytes32 leaf) public view returns (bool){
        return MerkleProof.verify(proof,root,leaf);
    }

     /**
    * Return metadata path
    */
    function tokenURI(uint tokenId) override(ERC721A) public view returns(string memory _uri){
        return string(abi.encodePacked(metadataPath,Strings.toString(tokenId),".json"));
    } 
    
    /**
    * Check merkle proof
    */
    function checkClaimedParcels() public view returns(uint[] memory claimedTokenIds){
        return claimedParcelList;
    }

    /**
    * Claim eggs from frontier parcel
    */
    function mint(uint frontierTokenId, bytes32[] memory proof) public payable callerIsUser{
        //check mint status
        require(isMinting, "Mint disabled.");

        //limit supply
        require(totalSupply() < maxSupply,"Too many");

        //check frontier not already claimed against
        require(claimedParcels[frontierTokenId] != true, "Frontier already claimed against!");

        //verify frontier has egg
        require(verifyParcelCount(proof,keccak256(abi.encodePacked(Frontiers(payable(frontiersContract)).tokenList(frontierTokenId)))), "Parcel does not have egg!");

        //check frontier ownership
        require(IERC721A(frontiersContract).ownerOf(frontierTokenId) == msg.sender, "You can only claim from an egg you own.");


        //mark parcel as claimed
        claimedParcels[frontierTokenId] = true;
        claimedParcelList.push(frontierTokenId);

        //transfer optix for mint (must have approval already!)
        IERC20(optixContract).transferFrom(msg.sender,address(optixReceiver),optixMintPrice);

        //mint those eggs!
        if(totalSupply() < 1738){ //first 420 eggs get 3
            _mint(address(msg.sender),3);
        } else {
            _mint(address(msg.sender),2);
        }
    }

    /*
    * Contract owner can mint
    */
    function ownerMint(uint256 _amount) public onlyOwner{
        require(totalSupply() + _amount <= maxSupply,"Too many");
        _mint(address(projectWallet),_amount);
    }

     /*
    * Contract owner can mint
    */
    function teamMint() public onlyOwner{
        require(totalSupply() + 478 <= maxSupply,"Too many");
        _mint(address(projectWallet), 300); //prizes
        _mint(address(0x93661f17f56314A62025d788088f71Ff8c0756b5), 89); //digi
        _mint(address(0xc114F6181f0c90c07BfA3DEB1F19b4B50f3FA884), 89); //elgallo
    }

    /*
    * Update mint status
    */
    function updateIsMinting(bool _isMinting) external onlyOwner{
        isMinting = _isMinting;
    }



     /**
    * Update the optix mint price per egg
    */
    function updateOptixMintPrice(uint256 _price) public onlyOwner{
        optixMintPrice = _price;
    }

     /**
    * Update the optix contract
    */
    function updateOptixContract(address _contract) public onlyOwner{
        optixContract = _contract;
    }

     /**
    * Update the optix contract
    */
    function updateFrontiersContract(address _contract) public onlyOwner{
        frontiersContract = _contract;
    }

     /**
    * Update the metadata path
    */
    function updateMetadataPath(string memory _path) public onlyOwner{
        metadataPath = _path;
    }

     /**
    * Update the merkle root
    */
    function updateRoot(bytes32 _root) public onlyOwner{
        root = _root;
    }

    /**
    * Update the project wallet address
    */
    function updateProjectWallet(address _projectWallet) public onlyOwner{
        projectWallet = _projectWallet;
    }

     /**
    * Update the optix receiver address
    */
     function updateOptixReceiver(address _address) public onlyOwner{
        optixReceiver = _address;
    }

    /**
    * Update the payout wallet address
    */
    function updatePayoutWallet(address _payoutWallet) public onlyOwner{
        payoutWallet = _payoutWallet;
    }

     /*
    * Withdraw by owner
    */
    function withdraw() external onlyOwner {
        (bool success, ) = payable(payoutWallet).call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }


    /*
    * These are here to receive ETH sent to the contract address
    */
    receive() external payable {}

    fallback() external payable {}


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkClaimedParcels","outputs":[{"internalType":"uint256[]","name":"claimedTokenIds","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimedParcelList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimedParcels","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"frontiersContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataPath","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"frontierTokenId","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"optixContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"optixMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"optixReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payoutWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"updateFrontiersContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isMinting","type":"bool"}],"name":"updateIsMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_path","type":"string"}],"name":"updateMetadataPath","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"updateOptixContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"updateOptixMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"updateOptixReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_payoutWallet","type":"address"}],"name":"updatePayoutWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_projectWallet","type":"address"}],"name":"updateProjectWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"updateRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"verifyParcelCount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260405180606001604052806033815260200162004bcc603391396009908051906020019062000035929190620003f2565b5073ed2faa60373ec70e57b39152aee5ce4ed7c333c7600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b818b1bbf47fc499b621f6807d61a61046c6478f600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b818b1bbf47fc499b621f6807d61a61046c6478f600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a93fce39d926527af68b8520fb55e2f74d9201b5600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c772fb742a39dfc935ea51f217ef58282c634521600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506934f086f3b33b68400000600f55610dac6010556000601360006101000a81548160ff0219169083151502179055507f693320d25c96ad8361f549355d64b8d50cb5fe25fee5f890c9267e6750fc7d9060001b6014553480156200024257600080fd5b506040518060400160405280601781526020017f54686520426c696e6b6c6573733a204772696d6c6574730000000000000000008152506040518060400160405280600681526020017f424c4e4b475200000000000000000000000000000000000000000000000000008152508160029080519060200190620002c7929190620003f2565b508060039080519060200190620002e0929190620003f2565b50620002f16200031f60201b60201c565b6000819055505050620003196200030d6200032460201b60201c565b6200032c60201b60201c565b62000507565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200040090620004a2565b90600052602060002090601f01602090048101928262000424576000855562000470565b82601f106200043f57805160ff191683800117855562000470565b8280016001018555821562000470579182015b828111156200046f57825182559160200191906001019062000452565b5b5090506200047f919062000483565b5090565b5b808211156200049e57600081600090555060010162000484565b5090565b60006002820490506001821680620004bb57607f821691505b60208210811415620004d257620004d1620004d8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6146b580620005176000396000f3fe6080604052600436106102815760003560e01c80638da5cb5b1161014f578063c23dc68f116100c1578063e88a8f4a1161007a578063e88a8f4a14610981578063e985e9c5146109aa578063f19e75d4146109e7578063f2fde38b14610a10578063f79441f814610a39578063fb28a54014610a6457610288565b8063c23dc68f1461084d578063c733bb201461088a578063c87b56dd146108b5578063ca3f3e16146108f2578063d767fe081461091b578063df8f519f1461095857610288565b8063a22cb46511610113578063a22cb4651461077f578063ab8d38a6146107a8578063b88d4fde146107d3578063ba41b0c6146107ef578063ba7a86b81461080b578063beb08ab91461082257610288565b80638da5cb5b1461068657806391343212146106b157806395d89b41146106ee57806399a2557a14610719578063a1ad4f401461075657610288565b806355d5204c116101f357806370a08231116101ac57806370a0823114610578578063715018a6146105b557806371927628146105cc5780637c6ecdb9146105f55780638462151c1461061e5780638488bb4e1461065b57610288565b806355d5204c146104445780635bbb21771461046d5780635c3d25ca146104aa5780636352211e146104d35780636796cd2c146105105780636c0667b71461053b57610288565b806318160ddd1161024557806318160ddd1461037657806321ff9970146103a157806323b872dd146103ca5780632a8092df146103e65780633ccfd60b1461041157806342842e0e1461042857610288565b806301ffc9a71461028a57806306fdde03146102c7578063081812fc146102f2578063095ea7b31461032f578063147489ae1461034b57610288565b3661028857005b005b34801561029657600080fd5b506102b160048036038101906102ac91906135ea565b610a8f565b6040516102be9190613d4d565b60405180910390f35b3480156102d357600080fd5b506102dc610b21565b6040516102e99190613d68565b60405180910390f35b3480156102fe57600080fd5b50610319600480360381019061031491906136d6565b610bb3565b6040516103269190613c6b565b60405180910390f35b61034960048036038101906103449190613427565b610c32565b005b34801561035757600080fd5b50610360610d76565b60405161036d9190613d2b565b60405180910390f35b34801561038257600080fd5b5061038b610dce565b6040516103989190613ec5565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c391906135bd565b610de5565b005b6103e460048036038101906103df9190613311565b610df7565b005b3480156103f257600080fd5b506103fb61111c565b6040516104089190613d4d565b60405180910390f35b34801561041d57600080fd5b5061042661112f565b005b610442600480360381019061043d9190613311565b611208565b005b34801561045057600080fd5b5061046b60048036038101906104669190613644565b611228565b005b34801561047957600080fd5b50610494600480360381019061048f9190613516565b61124a565b6040516104a19190613d09565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190613277565b61130d565b005b3480156104df57600080fd5b506104fa60048036038101906104f591906136d6565b611359565b6040516105079190613c6b565b60405180910390f35b34801561051c57600080fd5b5061052561136b565b6040516105329190613c6b565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d91906136d6565b611391565b60405161056f9190613ec5565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a9190613277565b6113b5565b6040516105ac9190613ec5565b60405180910390f35b3480156105c157600080fd5b506105ca61146e565b005b3480156105d857600080fd5b506105f360048036038101906105ee9190613277565b611482565b005b34801561060157600080fd5b5061061c60048036038101906106179190613277565b6114ce565b005b34801561062a57600080fd5b5061064560048036038101906106409190613277565b61151a565b6040516106529190613d2b565b60405180910390f35b34801561066757600080fd5b50610670611664565b60405161067d9190613c6b565b60405180910390f35b34801561069257600080fd5b5061069b61168a565b6040516106a89190613c6b565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d391906134ba565b6116b4565b6040516106e59190613d4d565b60405180910390f35b3480156106fa57600080fd5b506107036116cb565b6040516107109190613d68565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b9190613467565b61175d565b60405161074d9190613d2b565b60405180910390f35b34801561076257600080fd5b5061077d600480360381019061077891906136d6565b611971565b005b34801561078b57600080fd5b506107a660048036038101906107a191906133e7565b611983565b005b3480156107b457600080fd5b506107bd611a8e565b6040516107ca9190613ec5565b60405180910390f35b6107ed60048036038101906107e89190613364565b611a94565b005b61080960048036038101906108049190613703565b611b07565b005b34801561081757600080fd5b50610820612009565b005b34801561082e57600080fd5b506108376120d8565b6040516108449190613c6b565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f91906136d6565b6120fe565b6040516108819190613eaa565b60405180910390f35b34801561089657600080fd5b5061089f612168565b6040516108ac9190613c6b565b60405180910390f35b3480156108c157600080fd5b506108dc60048036038101906108d791906136d6565b61218e565b6040516108e99190613d68565b60405180910390f35b3480156108fe57600080fd5b5061091960048036038101906109149190613277565b6121c2565b005b34801561092757600080fd5b50610942600480360381019061093d91906136d6565b61220e565b60405161094f9190613d4d565b60405180910390f35b34801561096457600080fd5b5061097f600480360381019061097a9190613277565b61222e565b005b34801561098d57600080fd5b506109a860048036038101906109a39190613563565b61227a565b005b3480156109b657600080fd5b506109d160048036038101906109cc91906132d1565b61229f565b6040516109de9190613d4d565b60405180910390f35b3480156109f357600080fd5b50610a0e6004803603810190610a0991906136d6565b612333565b005b348015610a1c57600080fd5b50610a376004803603810190610a329190613277565b6123c1565b005b348015610a4557600080fd5b50610a4e612445565b604051610a5b9190613c6b565b60405180910390f35b348015610a7057600080fd5b50610a7961246b565b604051610a869190613d68565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aea57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b3090614206565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5c90614206565b8015610ba95780601f10610b7e57610100808354040283529160200191610ba9565b820191906000526020600020905b815481529060010190602001808311610b8c57829003601f168201915b5050505050905090565b6000610bbe826124f9565b610bf4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c3d82611359565b90508073ffffffffffffffffffffffffffffffffffffffff16610c5e612558565b73ffffffffffffffffffffffffffffffffffffffff1614610cc157610c8a81610c85612558565b61229f565b610cc0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60606012805480602002602001604051908101604052809291908181526020018280548015610dc457602002820191906000526020600020905b815481526020019060010190808311610db0575b5050505050905090565b6000610dd8612560565b6001546000540303905090565b610ded612565565b8060148190555050565b6000610e02826125e3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e69576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e75846126b1565b91509150610e8b8187610e86612558565b6126d8565b610ed757610ea086610e9b612558565b61229f565b610ed6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f3e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f4b868686600161271c565b8015610f5657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061102485611000888887612722565b7c02000000000000000000000000000000000000000000000000000000001761274a565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156110ac5760006001850190506000600460008381526020019081526020016000205414156110aa5760005481146110a9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111148686866001612775565b505050505050565b601360009054906101000a900460ff1681565b611137612565565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161117f90613c56565b60006040518083038185875af1925050503d80600081146111bc576040519150601f19603f3d011682016040523d82523d6000602084013e6111c1565b606091505b5050905080611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90613e6a565b60405180910390fd5b50565b61122383838360405180602001604052806000815250611a94565b505050565b611230612565565b8060099080519060200190611246929190612e99565b5050565b6060600083839050905060008167ffffffffffffffff8111156112705761126f61439f565b5b6040519080825280602002602001820160405280156112a957816020015b611296612f1f565b81526020019060019003908161128e5790505b50905060005b828114611301576112d88686838181106112cc576112cb614370565b5b905060200201356120fe565b8282815181106112eb576112ea614370565b5b60200260200101819052508060010190506112af565b50809250505092915050565b611315612565565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611364826125e3565b9050919050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601281815481106113a157600080fd5b906000526020600020016000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611476612565565b611480600061277b565b565b61148a612565565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6114d6612565565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600080600061152a856113b5565b905060008167ffffffffffffffff8111156115485761154761439f565b5b6040519080825280602002602001820160405280156115765781602001602082028036833780820191505090505b509050611581612f1f565b600061158b612560565b90505b8386146116565761159e81612841565b91508160400151156115af5761164b565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146115ef57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561164a578083878060010198508151811061163d5761163c614370565b5b6020026020010181815250505b5b80600101905061158e565b508195505050505050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006116c3836014548461286c565b905092915050565b6060600380546116da90614206565b80601f016020809104026020016040519081016040528092919081815260200182805461170690614206565b80156117535780601f1061172857610100808354040283529160200191611753565b820191906000526020600020905b81548152906001019060200180831161173657829003601f168201915b5050505050905090565b6060818310611798576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117a3612883565b90506117ad612560565b8510156117bf576117bc612560565b94505b808411156117cb578093505b60006117d6876113b5565b9050848610156117f95760008686039050818110156117f3578091505b506117fe565b600090505b60008167ffffffffffffffff81111561181a5761181961439f565b5b6040519080825280602002602001820160405280156118485781602001602082028036833780820191505090505b5090506000821415611860578094505050505061196a565b600061186b886120fe565b90506000816040015161188057816000015190505b60008990505b8881141580156118965750848714155b1561195c576118a481612841565b92508260400151156118b557611951565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146118f557826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611950578084888060010199508151811061194357611942614370565b5b6020026020010181815250505b5b806001019050611886565b508583528296505050505050505b9392505050565b611979612565565b80600f8190555050565b8060076000611990612558565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a3d612558565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a829190613d4d565b60405180910390a35050565b600f5481565b611a9f848484610df7565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b0157611aca8484848461288c565b611b00576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c90613dea565b60405180910390fd5b601360009054906101000a900460ff16611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb90613dca565b60405180910390fd5b601054611bcf610dce565b10611c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0690613e2a565b60405180910390fd5b600115156011600084815260200190815260200160002060009054906101000a900460ff1615151415611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e90613daa565b60405180910390fd5b611d5681600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639ead7222856040518263ffffffff1660e01b8152600401611cd69190613ec5565b60006040518083038186803b158015611cee57600080fd5b505afa158015611d02573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611d2b919061368d565b604051602001611d3b9190613c10565b604051602081830303815290604052805190602001206116b4565b611d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8c90613e0a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401611e079190613ec5565b60206040518083038186803b158015611e1f57600080fd5b505afa158015611e33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e5791906132a4565b73ffffffffffffffffffffffffffffffffffffffff1614611ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea490613e8a565b60405180910390fd5b60016011600084815260200190815260200160002060006101000a81548160ff0219169083151502179055506012829080600181540180825580915050600190039060005260206000200160009091909190915055600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600f546040518463ffffffff1660e01b8152600401611f8593929190613c86565b602060405180830381600087803b158015611f9f57600080fd5b505af1158015611fb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fd79190613590565b506106ca611fe3610dce565b1015611ff957611ff43360036129ec565b612005565b6120043360026129ec565b5b5050565b612011612565565b6010546101de61201f610dce565b6120299190614068565b111561206a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206190613e2a565b60405180910390fd5b612098600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661012c6129ec565b6120b77393661f17f56314a62025d788088f71ff8c0756b560596129ec565b6120d673c114f6181f0c90c07bfa3deb1f19b4b50f3fa88460596129ec565b565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612106612f1f565b61210e612f1f565b612116612560565b83108061212a5750612126612883565b8310155b156121385780915050612163565b61214183612841565b90508060400151156121565780915050612163565b61215f83612ba9565b9150505b919050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600961219b83612bc9565b6040516020016121ac929190613c27565b6040516020818303038152906040529050919050565b6121ca612565565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60116020528060005260406000206000915054906101000a900460ff1681565b612236612565565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612282612565565b80601360006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61233b612565565b60105481612347610dce565b6123519190614068565b1115612392576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238990613e2a565b60405180910390fd5b6123be600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826129ec565b50565b6123c9612565565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612439576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243090613d8a565b60405180910390fd5b6124428161277b565b50565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6009805461247890614206565b80601f01602080910402602001604051908101604052809291908181526020018280546124a490614206565b80156124f15780601f106124c6576101008083540402835291602001916124f1565b820191906000526020600020905b8154815290600101906020018083116124d457829003601f168201915b505050505081565b600081612504612560565b11158015612513575060005482105b8015612551575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b61256d612d2a565b73ffffffffffffffffffffffffffffffffffffffff1661258b61168a565b73ffffffffffffffffffffffffffffffffffffffff16146125e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d890613e4a565b60405180910390fd5b565b600080829050806125f2612560565b1161267a576000548110156126795760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612677575b600081141561266d576004600083600190039350838152602001908152602001600020549050612642565b80925050506126ac565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612739868684612d32565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612849612f1f565b6128656004600084815260200190815260200160002054612d3b565b9050919050565b6000826128798584612df1565b1490509392505050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128b2612558565b8786866040518563ffffffff1660e01b81526004016128d49493929190613cbd565b602060405180830381600087803b1580156128ee57600080fd5b505af192505050801561291f57506040513d601f19601f8201168201806040525081019061291c9190613617565b60015b612999573d806000811461294f576040519150601f19603f3d011682016040523d82523d6000602084013e612954565b606091505b50600081511415612991576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000805490506000821415612a2d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a3a600084838561271c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612ab183612aa26000866000612722565b612aab85612e47565b1761274a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612b5257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612b17565b506000821415612b8e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612ba46000848385612775565b505050565b612bb1612f1f565b612bc2612bbd836125e3565b612d3b565b9050919050565b60606000821415612c11576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d25565b600082905060005b60008214612c43578080612c2c90614269565b915050600a82612c3c91906140be565b9150612c19565b60008167ffffffffffffffff811115612c5f57612c5e61439f565b5b6040519080825280601f01601f191660200182016040528015612c915781602001600182028036833780820191505090505b5090505b60008514612d1e57600182612caa91906140ef565b9150600a85612cb991906142b2565b6030612cc59190614068565b60f81b818381518110612cdb57612cda614370565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d1791906140be565b9450612c95565b8093505050505b919050565b600033905090565b60009392505050565b612d43612f1f565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008082905060005b8451811015612e3c57612e2782868381518110612e1a57612e19614370565b5b6020026020010151612e57565b91508080612e3490614269565b915050612dfa565b508091505092915050565b60006001821460e11b9050919050565b6000818310612e6f57612e6a8284612e82565b612e7a565b612e798383612e82565b5b905092915050565b600082600052816020526040600020905092915050565b828054612ea590614206565b90600052602060002090601f016020900481019282612ec75760008555612f0e565b82601f10612ee057805160ff1916838001178555612f0e565b82800160010185558215612f0e579182015b82811115612f0d578251825591602001919060010190612ef2565b5b509050612f1b9190612f6e565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612f87576000816000905550600101612f6f565b5090565b6000612f9e612f9984613f05565b613ee0565b90508083825260208201905082856020860282011115612fc157612fc06143d8565b5b60005b85811015612ff15781612fd78882613199565b845260208401935060208301925050600181019050612fc4565b5050509392505050565b600061300e61300984613f31565b613ee0565b90508281526020810184848401111561302a576130296143dd565b5b6130358482856141c4565b509392505050565b600061305061304b84613f62565b613ee0565b90508281526020810184848401111561306c5761306b6143dd565b5b6130778482856141c4565b509392505050565b600061309261308d84613f62565b613ee0565b9050828152602081018484840111156130ae576130ad6143dd565b5b6130b98482856141d3565b509392505050565b6000813590506130d08161460c565b92915050565b6000815190506130e58161460c565b92915050565b600082601f830112613100576130ff6143d3565b5b8135613110848260208601612f8b565b91505092915050565b60008083601f84011261312f5761312e6143d3565b5b8235905067ffffffffffffffff81111561314c5761314b6143ce565b5b602083019150836020820283011115613168576131676143d8565b5b9250929050565b60008135905061317e81614623565b92915050565b60008151905061319381614623565b92915050565b6000813590506131a88161463a565b92915050565b6000813590506131bd81614651565b92915050565b6000815190506131d281614651565b92915050565b600082601f8301126131ed576131ec6143d3565b5b81356131fd848260208601612ffb565b91505092915050565b600082601f83011261321b5761321a6143d3565b5b813561322b84826020860161303d565b91505092915050565b600082601f830112613249576132486143d3565b5b815161325984826020860161307f565b91505092915050565b60008135905061327181614668565b92915050565b60006020828403121561328d5761328c6143e7565b5b600061329b848285016130c1565b91505092915050565b6000602082840312156132ba576132b96143e7565b5b60006132c8848285016130d6565b91505092915050565b600080604083850312156132e8576132e76143e7565b5b60006132f6858286016130c1565b9250506020613307858286016130c1565b9150509250929050565b60008060006060848603121561332a576133296143e7565b5b6000613338868287016130c1565b9350506020613349868287016130c1565b925050604061335a86828701613262565b9150509250925092565b6000806000806080858703121561337e5761337d6143e7565b5b600061338c878288016130c1565b945050602061339d878288016130c1565b93505060406133ae87828801613262565b925050606085013567ffffffffffffffff8111156133cf576133ce6143e2565b5b6133db878288016131d8565b91505092959194509250565b600080604083850312156133fe576133fd6143e7565b5b600061340c858286016130c1565b925050602061341d8582860161316f565b9150509250929050565b6000806040838503121561343e5761343d6143e7565b5b600061344c858286016130c1565b925050602061345d85828601613262565b9150509250929050565b6000806000606084860312156134805761347f6143e7565b5b600061348e868287016130c1565b935050602061349f86828701613262565b92505060406134b086828701613262565b9150509250925092565b600080604083850312156134d1576134d06143e7565b5b600083013567ffffffffffffffff8111156134ef576134ee6143e2565b5b6134fb858286016130eb565b925050602061350c85828601613199565b9150509250929050565b6000806020838503121561352d5761352c6143e7565b5b600083013567ffffffffffffffff81111561354b5761354a6143e2565b5b61355785828601613119565b92509250509250929050565b600060208284031215613579576135786143e7565b5b60006135878482850161316f565b91505092915050565b6000602082840312156135a6576135a56143e7565b5b60006135b484828501613184565b91505092915050565b6000602082840312156135d3576135d26143e7565b5b60006135e184828501613199565b91505092915050565b600060208284031215613600576135ff6143e7565b5b600061360e848285016131ae565b91505092915050565b60006020828403121561362d5761362c6143e7565b5b600061363b848285016131c3565b91505092915050565b60006020828403121561365a576136596143e7565b5b600082013567ffffffffffffffff811115613678576136776143e2565b5b61368484828501613206565b91505092915050565b6000602082840312156136a3576136a26143e7565b5b600082015167ffffffffffffffff8111156136c1576136c06143e2565b5b6136cd84828501613234565b91505092915050565b6000602082840312156136ec576136eb6143e7565b5b60006136fa84828501613262565b91505092915050565b6000806040838503121561371a576137196143e7565b5b600061372885828601613262565b925050602083013567ffffffffffffffff811115613749576137486143e2565b5b613755858286016130eb565b9150509250929050565b600061376b8383613b2a565b60808301905092915050565b60006137838383613be3565b60208301905092915050565b61379881614123565b82525050565b6137a781614123565b82525050565b60006137b882613fc8565b6137c2818561400e565b93506137cd83613f93565b8060005b838110156137fe5781516137e5888261375f565b97506137f083613ff4565b9250506001810190506137d1565b5085935050505092915050565b600061381682613fd3565b613820818561401f565b935061382b83613fa3565b8060005b8381101561385c5781516138438882613777565b975061384e83614001565b92505060018101905061382f565b5085935050505092915050565b61387281614135565b82525050565b61388181614135565b82525050565b600061389282613fde565b61389c8185614030565b93506138ac8185602086016141d3565b6138b5816143ec565b840191505092915050565b60006138cb82613fe9565b6138d5818561404c565b93506138e58185602086016141d3565b6138ee816143ec565b840191505092915050565b600061390482613fe9565b61390e818561405d565b935061391e8185602086016141d3565b80840191505092915050565b6000815461393781614206565b613941818661405d565b9450600182166000811461395c576001811461396d576139a0565b60ff198316865281860193506139a0565b61397685613fb3565b60005b8381101561399857815481890152600182019150602081019050613979565b838801955050505b50505092915050565b60006139b660268361404c565b91506139c1826143fd565b604082019050919050565b60006139d960218361404c565b91506139e48261444c565b604082019050919050565b60006139fc600e8361404c565b9150613a078261449b565b602082019050919050565b6000613a1f601e8361404c565b9150613a2a826144c4565b602082019050919050565b6000613a4260058361405d565b9150613a4d826144ed565b600582019050919050565b6000613a6560198361404c565b9150613a7082614516565b602082019050919050565b6000613a8860088361404c565b9150613a938261453f565b602082019050919050565b6000613aab60208361404c565b9150613ab682614568565b602082019050919050565b6000613ace600083614041565b9150613ad982614591565b600082019050919050565b6000613af160108361404c565b9150613afc82614594565b602082019050919050565b6000613b1460278361404c565b9150613b1f826145bd565b604082019050919050565b608082016000820151613b40600085018261378f565b506020820151613b536020850182613c01565b506040820151613b666040850182613869565b506060820151613b796060850182613bd4565b50505050565b608082016000820151613b95600085018261378f565b506020820151613ba86020850182613c01565b506040820151613bbb6040850182613869565b506060820151613bce6060850182613bd4565b50505050565b613bdd81614197565b82525050565b613bec816141a6565b82525050565b613bfb816141a6565b82525050565b613c0a816141b0565b82525050565b6000613c1c82846138f9565b915081905092915050565b6000613c33828561392a565b9150613c3f82846138f9565b9150613c4a82613a35565b91508190509392505050565b6000613c6182613ac1565b9150819050919050565b6000602082019050613c80600083018461379e565b92915050565b6000606082019050613c9b600083018661379e565b613ca8602083018561379e565b613cb56040830184613bf2565b949350505050565b6000608082019050613cd2600083018761379e565b613cdf602083018661379e565b613cec6040830185613bf2565b8181036060830152613cfe8184613887565b905095945050505050565b60006020820190508181036000830152613d2381846137ad565b905092915050565b60006020820190508181036000830152613d45818461380b565b905092915050565b6000602082019050613d626000830184613878565b92915050565b60006020820190508181036000830152613d8281846138c0565b905092915050565b60006020820190508181036000830152613da3816139a9565b9050919050565b60006020820190508181036000830152613dc3816139cc565b9050919050565b60006020820190508181036000830152613de3816139ef565b9050919050565b60006020820190508181036000830152613e0381613a12565b9050919050565b60006020820190508181036000830152613e2381613a58565b9050919050565b60006020820190508181036000830152613e4381613a7b565b9050919050565b60006020820190508181036000830152613e6381613a9e565b9050919050565b60006020820190508181036000830152613e8381613ae4565b9050919050565b60006020820190508181036000830152613ea381613b07565b9050919050565b6000608082019050613ebf6000830184613b7f565b92915050565b6000602082019050613eda6000830184613bf2565b92915050565b6000613eea613efb565b9050613ef68282614238565b919050565b6000604051905090565b600067ffffffffffffffff821115613f2057613f1f61439f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613f4c57613f4b61439f565b5b613f55826143ec565b9050602081019050919050565b600067ffffffffffffffff821115613f7d57613f7c61439f565b5b613f86826143ec565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614073826141a6565b915061407e836141a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140b3576140b26142e3565b5b828201905092915050565b60006140c9826141a6565b91506140d4836141a6565b9250826140e4576140e3614312565b5b828204905092915050565b60006140fa826141a6565b9150614105836141a6565b925082821015614118576141176142e3565b5b828203905092915050565b600061412e82614177565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156141f15780820151818401526020810190506141d6565b83811115614200576000848401525b50505050565b6000600282049050600182168061421e57607f821691505b6020821081141561423257614231614341565b5b50919050565b614241826143ec565b810181811067ffffffffffffffff821117156142605761425f61439f565b5b80604052505050565b6000614274826141a6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142a7576142a66142e3565b5b600182019050919050565b60006142bd826141a6565b91506142c8836141a6565b9250826142d8576142d7614312565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f46726f6e7469657220616c726561647920636c61696d656420616761696e737460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e742064697361626c65642e000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f50617263656c20646f6573206e6f742068617665206567672100000000000000600082015250565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f596f752063616e206f6e6c7920636c61696d2066726f6d20616e20656767207960008201527f6f75206f776e2e00000000000000000000000000000000000000000000000000602082015250565b61461581614123565b811461462057600080fd5b50565b61462c81614135565b811461463757600080fd5b50565b61464381614141565b811461464e57600080fd5b50565b61465a8161414b565b811461466557600080fd5b50565b614671816141a6565b811461467c57600080fd5b5056fea264697066735822122066e7c088058856c0dbdac17c6a93689afbee288a0d8c9c7a9d402863d382c65664736f6c6343000807003368747470733a2f2f746865626c696e6b6c6573732e73332e616d617a6f6e6177732e636f6d2f6772696d6c6574736a736f6e2f

Deployed Bytecode

0x6080604052600436106102815760003560e01c80638da5cb5b1161014f578063c23dc68f116100c1578063e88a8f4a1161007a578063e88a8f4a14610981578063e985e9c5146109aa578063f19e75d4146109e7578063f2fde38b14610a10578063f79441f814610a39578063fb28a54014610a6457610288565b8063c23dc68f1461084d578063c733bb201461088a578063c87b56dd146108b5578063ca3f3e16146108f2578063d767fe081461091b578063df8f519f1461095857610288565b8063a22cb46511610113578063a22cb4651461077f578063ab8d38a6146107a8578063b88d4fde146107d3578063ba41b0c6146107ef578063ba7a86b81461080b578063beb08ab91461082257610288565b80638da5cb5b1461068657806391343212146106b157806395d89b41146106ee57806399a2557a14610719578063a1ad4f401461075657610288565b806355d5204c116101f357806370a08231116101ac57806370a0823114610578578063715018a6146105b557806371927628146105cc5780637c6ecdb9146105f55780638462151c1461061e5780638488bb4e1461065b57610288565b806355d5204c146104445780635bbb21771461046d5780635c3d25ca146104aa5780636352211e146104d35780636796cd2c146105105780636c0667b71461053b57610288565b806318160ddd1161024557806318160ddd1461037657806321ff9970146103a157806323b872dd146103ca5780632a8092df146103e65780633ccfd60b1461041157806342842e0e1461042857610288565b806301ffc9a71461028a57806306fdde03146102c7578063081812fc146102f2578063095ea7b31461032f578063147489ae1461034b57610288565b3661028857005b005b34801561029657600080fd5b506102b160048036038101906102ac91906135ea565b610a8f565b6040516102be9190613d4d565b60405180910390f35b3480156102d357600080fd5b506102dc610b21565b6040516102e99190613d68565b60405180910390f35b3480156102fe57600080fd5b50610319600480360381019061031491906136d6565b610bb3565b6040516103269190613c6b565b60405180910390f35b61034960048036038101906103449190613427565b610c32565b005b34801561035757600080fd5b50610360610d76565b60405161036d9190613d2b565b60405180910390f35b34801561038257600080fd5b5061038b610dce565b6040516103989190613ec5565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c391906135bd565b610de5565b005b6103e460048036038101906103df9190613311565b610df7565b005b3480156103f257600080fd5b506103fb61111c565b6040516104089190613d4d565b60405180910390f35b34801561041d57600080fd5b5061042661112f565b005b610442600480360381019061043d9190613311565b611208565b005b34801561045057600080fd5b5061046b60048036038101906104669190613644565b611228565b005b34801561047957600080fd5b50610494600480360381019061048f9190613516565b61124a565b6040516104a19190613d09565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190613277565b61130d565b005b3480156104df57600080fd5b506104fa60048036038101906104f591906136d6565b611359565b6040516105079190613c6b565b60405180910390f35b34801561051c57600080fd5b5061052561136b565b6040516105329190613c6b565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d91906136d6565b611391565b60405161056f9190613ec5565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a9190613277565b6113b5565b6040516105ac9190613ec5565b60405180910390f35b3480156105c157600080fd5b506105ca61146e565b005b3480156105d857600080fd5b506105f360048036038101906105ee9190613277565b611482565b005b34801561060157600080fd5b5061061c60048036038101906106179190613277565b6114ce565b005b34801561062a57600080fd5b5061064560048036038101906106409190613277565b61151a565b6040516106529190613d2b565b60405180910390f35b34801561066757600080fd5b50610670611664565b60405161067d9190613c6b565b60405180910390f35b34801561069257600080fd5b5061069b61168a565b6040516106a89190613c6b565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d391906134ba565b6116b4565b6040516106e59190613d4d565b60405180910390f35b3480156106fa57600080fd5b506107036116cb565b6040516107109190613d68565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b9190613467565b61175d565b60405161074d9190613d2b565b60405180910390f35b34801561076257600080fd5b5061077d600480360381019061077891906136d6565b611971565b005b34801561078b57600080fd5b506107a660048036038101906107a191906133e7565b611983565b005b3480156107b457600080fd5b506107bd611a8e565b6040516107ca9190613ec5565b60405180910390f35b6107ed60048036038101906107e89190613364565b611a94565b005b61080960048036038101906108049190613703565b611b07565b005b34801561081757600080fd5b50610820612009565b005b34801561082e57600080fd5b506108376120d8565b6040516108449190613c6b565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f91906136d6565b6120fe565b6040516108819190613eaa565b60405180910390f35b34801561089657600080fd5b5061089f612168565b6040516108ac9190613c6b565b60405180910390f35b3480156108c157600080fd5b506108dc60048036038101906108d791906136d6565b61218e565b6040516108e99190613d68565b60405180910390f35b3480156108fe57600080fd5b5061091960048036038101906109149190613277565b6121c2565b005b34801561092757600080fd5b50610942600480360381019061093d91906136d6565b61220e565b60405161094f9190613d4d565b60405180910390f35b34801561096457600080fd5b5061097f600480360381019061097a9190613277565b61222e565b005b34801561098d57600080fd5b506109a860048036038101906109a39190613563565b61227a565b005b3480156109b657600080fd5b506109d160048036038101906109cc91906132d1565b61229f565b6040516109de9190613d4d565b60405180910390f35b3480156109f357600080fd5b50610a0e6004803603810190610a0991906136d6565b612333565b005b348015610a1c57600080fd5b50610a376004803603810190610a329190613277565b6123c1565b005b348015610a4557600080fd5b50610a4e612445565b604051610a5b9190613c6b565b60405180910390f35b348015610a7057600080fd5b50610a7961246b565b604051610a869190613d68565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aea57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610b3090614206565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5c90614206565b8015610ba95780601f10610b7e57610100808354040283529160200191610ba9565b820191906000526020600020905b815481529060010190602001808311610b8c57829003601f168201915b5050505050905090565b6000610bbe826124f9565b610bf4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c3d82611359565b90508073ffffffffffffffffffffffffffffffffffffffff16610c5e612558565b73ffffffffffffffffffffffffffffffffffffffff1614610cc157610c8a81610c85612558565b61229f565b610cc0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60606012805480602002602001604051908101604052809291908181526020018280548015610dc457602002820191906000526020600020905b815481526020019060010190808311610db0575b5050505050905090565b6000610dd8612560565b6001546000540303905090565b610ded612565565b8060148190555050565b6000610e02826125e3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e69576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e75846126b1565b91509150610e8b8187610e86612558565b6126d8565b610ed757610ea086610e9b612558565b61229f565b610ed6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f3e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f4b868686600161271c565b8015610f5657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061102485611000888887612722565b7c02000000000000000000000000000000000000000000000000000000001761274a565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156110ac5760006001850190506000600460008381526020019081526020016000205414156110aa5760005481146110a9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111148686866001612775565b505050505050565b601360009054906101000a900460ff1681565b611137612565565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161117f90613c56565b60006040518083038185875af1925050503d80600081146111bc576040519150601f19603f3d011682016040523d82523d6000602084013e6111c1565b606091505b5050905080611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90613e6a565b60405180910390fd5b50565b61122383838360405180602001604052806000815250611a94565b505050565b611230612565565b8060099080519060200190611246929190612e99565b5050565b6060600083839050905060008167ffffffffffffffff8111156112705761126f61439f565b5b6040519080825280602002602001820160405280156112a957816020015b611296612f1f565b81526020019060019003908161128e5790505b50905060005b828114611301576112d88686838181106112cc576112cb614370565b5b905060200201356120fe565b8282815181106112eb576112ea614370565b5b60200260200101819052508060010190506112af565b50809250505092915050565b611315612565565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611364826125e3565b9050919050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601281815481106113a157600080fd5b906000526020600020016000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611476612565565b611480600061277b565b565b61148a612565565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6114d6612565565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600080600061152a856113b5565b905060008167ffffffffffffffff8111156115485761154761439f565b5b6040519080825280602002602001820160405280156115765781602001602082028036833780820191505090505b509050611581612f1f565b600061158b612560565b90505b8386146116565761159e81612841565b91508160400151156115af5761164b565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146115ef57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561164a578083878060010198508151811061163d5761163c614370565b5b6020026020010181815250505b5b80600101905061158e565b508195505050505050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006116c3836014548461286c565b905092915050565b6060600380546116da90614206565b80601f016020809104026020016040519081016040528092919081815260200182805461170690614206565b80156117535780601f1061172857610100808354040283529160200191611753565b820191906000526020600020905b81548152906001019060200180831161173657829003601f168201915b5050505050905090565b6060818310611798576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806117a3612883565b90506117ad612560565b8510156117bf576117bc612560565b94505b808411156117cb578093505b60006117d6876113b5565b9050848610156117f95760008686039050818110156117f3578091505b506117fe565b600090505b60008167ffffffffffffffff81111561181a5761181961439f565b5b6040519080825280602002602001820160405280156118485781602001602082028036833780820191505090505b5090506000821415611860578094505050505061196a565b600061186b886120fe565b90506000816040015161188057816000015190505b60008990505b8881141580156118965750848714155b1561195c576118a481612841565b92508260400151156118b557611951565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146118f557826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611950578084888060010199508151811061194357611942614370565b5b6020026020010181815250505b5b806001019050611886565b508583528296505050505050505b9392505050565b611979612565565b80600f8190555050565b8060076000611990612558565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a3d612558565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a829190613d4d565b60405180910390a35050565b600f5481565b611a9f848484610df7565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b0157611aca8484848461288c565b611b00576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c90613dea565b60405180910390fd5b601360009054906101000a900460ff16611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb90613dca565b60405180910390fd5b601054611bcf610dce565b10611c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0690613e2a565b60405180910390fd5b600115156011600084815260200190815260200160002060009054906101000a900460ff1615151415611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e90613daa565b60405180910390fd5b611d5681600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639ead7222856040518263ffffffff1660e01b8152600401611cd69190613ec5565b60006040518083038186803b158015611cee57600080fd5b505afa158015611d02573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611d2b919061368d565b604051602001611d3b9190613c10565b604051602081830303815290604052805190602001206116b4565b611d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8c90613e0a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401611e079190613ec5565b60206040518083038186803b158015611e1f57600080fd5b505afa158015611e33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e5791906132a4565b73ffffffffffffffffffffffffffffffffffffffff1614611ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea490613e8a565b60405180910390fd5b60016011600084815260200190815260200160002060006101000a81548160ff0219169083151502179055506012829080600181540180825580915050600190039060005260206000200160009091909190915055600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600f546040518463ffffffff1660e01b8152600401611f8593929190613c86565b602060405180830381600087803b158015611f9f57600080fd5b505af1158015611fb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fd79190613590565b506106ca611fe3610dce565b1015611ff957611ff43360036129ec565b612005565b6120043360026129ec565b5b5050565b612011612565565b6010546101de61201f610dce565b6120299190614068565b111561206a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206190613e2a565b60405180910390fd5b612098600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661012c6129ec565b6120b77393661f17f56314a62025d788088f71ff8c0756b560596129ec565b6120d673c114f6181f0c90c07bfa3deb1f19b4b50f3fa88460596129ec565b565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612106612f1f565b61210e612f1f565b612116612560565b83108061212a5750612126612883565b8310155b156121385780915050612163565b61214183612841565b90508060400151156121565780915050612163565b61215f83612ba9565b9150505b919050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600961219b83612bc9565b6040516020016121ac929190613c27565b6040516020818303038152906040529050919050565b6121ca612565565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60116020528060005260406000206000915054906101000a900460ff1681565b612236612565565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612282612565565b80601360006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61233b612565565b60105481612347610dce565b6123519190614068565b1115612392576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238990613e2a565b60405180910390fd5b6123be600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826129ec565b50565b6123c9612565565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612439576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243090613d8a565b60405180910390fd5b6124428161277b565b50565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6009805461247890614206565b80601f01602080910402602001604051908101604052809291908181526020018280546124a490614206565b80156124f15780601f106124c6576101008083540402835291602001916124f1565b820191906000526020600020905b8154815290600101906020018083116124d457829003601f168201915b505050505081565b600081612504612560565b11158015612513575060005482105b8015612551575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b61256d612d2a565b73ffffffffffffffffffffffffffffffffffffffff1661258b61168a565b73ffffffffffffffffffffffffffffffffffffffff16146125e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d890613e4a565b60405180910390fd5b565b600080829050806125f2612560565b1161267a576000548110156126795760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612677575b600081141561266d576004600083600190039350838152602001908152602001600020549050612642565b80925050506126ac565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612739868684612d32565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612849612f1f565b6128656004600084815260200190815260200160002054612d3b565b9050919050565b6000826128798584612df1565b1490509392505050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128b2612558565b8786866040518563ffffffff1660e01b81526004016128d49493929190613cbd565b602060405180830381600087803b1580156128ee57600080fd5b505af192505050801561291f57506040513d601f19601f8201168201806040525081019061291c9190613617565b60015b612999573d806000811461294f576040519150601f19603f3d011682016040523d82523d6000602084013e612954565b606091505b50600081511415612991576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000805490506000821415612a2d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a3a600084838561271c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612ab183612aa26000866000612722565b612aab85612e47565b1761274a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612b5257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612b17565b506000821415612b8e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612ba46000848385612775565b505050565b612bb1612f1f565b612bc2612bbd836125e3565b612d3b565b9050919050565b60606000821415612c11576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d25565b600082905060005b60008214612c43578080612c2c90614269565b915050600a82612c3c91906140be565b9150612c19565b60008167ffffffffffffffff811115612c5f57612c5e61439f565b5b6040519080825280601f01601f191660200182016040528015612c915781602001600182028036833780820191505090505b5090505b60008514612d1e57600182612caa91906140ef565b9150600a85612cb991906142b2565b6030612cc59190614068565b60f81b818381518110612cdb57612cda614370565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d1791906140be565b9450612c95565b8093505050505b919050565b600033905090565b60009392505050565b612d43612f1f565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008082905060005b8451811015612e3c57612e2782868381518110612e1a57612e19614370565b5b6020026020010151612e57565b91508080612e3490614269565b915050612dfa565b508091505092915050565b60006001821460e11b9050919050565b6000818310612e6f57612e6a8284612e82565b612e7a565b612e798383612e82565b5b905092915050565b600082600052816020526040600020905092915050565b828054612ea590614206565b90600052602060002090601f016020900481019282612ec75760008555612f0e565b82601f10612ee057805160ff1916838001178555612f0e565b82800160010185558215612f0e579182015b82811115612f0d578251825591602001919060010190612ef2565b5b509050612f1b9190612f6e565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612f87576000816000905550600101612f6f565b5090565b6000612f9e612f9984613f05565b613ee0565b90508083825260208201905082856020860282011115612fc157612fc06143d8565b5b60005b85811015612ff15781612fd78882613199565b845260208401935060208301925050600181019050612fc4565b5050509392505050565b600061300e61300984613f31565b613ee0565b90508281526020810184848401111561302a576130296143dd565b5b6130358482856141c4565b509392505050565b600061305061304b84613f62565b613ee0565b90508281526020810184848401111561306c5761306b6143dd565b5b6130778482856141c4565b509392505050565b600061309261308d84613f62565b613ee0565b9050828152602081018484840111156130ae576130ad6143dd565b5b6130b98482856141d3565b509392505050565b6000813590506130d08161460c565b92915050565b6000815190506130e58161460c565b92915050565b600082601f830112613100576130ff6143d3565b5b8135613110848260208601612f8b565b91505092915050565b60008083601f84011261312f5761312e6143d3565b5b8235905067ffffffffffffffff81111561314c5761314b6143ce565b5b602083019150836020820283011115613168576131676143d8565b5b9250929050565b60008135905061317e81614623565b92915050565b60008151905061319381614623565b92915050565b6000813590506131a88161463a565b92915050565b6000813590506131bd81614651565b92915050565b6000815190506131d281614651565b92915050565b600082601f8301126131ed576131ec6143d3565b5b81356131fd848260208601612ffb565b91505092915050565b600082601f83011261321b5761321a6143d3565b5b813561322b84826020860161303d565b91505092915050565b600082601f830112613249576132486143d3565b5b815161325984826020860161307f565b91505092915050565b60008135905061327181614668565b92915050565b60006020828403121561328d5761328c6143e7565b5b600061329b848285016130c1565b91505092915050565b6000602082840312156132ba576132b96143e7565b5b60006132c8848285016130d6565b91505092915050565b600080604083850312156132e8576132e76143e7565b5b60006132f6858286016130c1565b9250506020613307858286016130c1565b9150509250929050565b60008060006060848603121561332a576133296143e7565b5b6000613338868287016130c1565b9350506020613349868287016130c1565b925050604061335a86828701613262565b9150509250925092565b6000806000806080858703121561337e5761337d6143e7565b5b600061338c878288016130c1565b945050602061339d878288016130c1565b93505060406133ae87828801613262565b925050606085013567ffffffffffffffff8111156133cf576133ce6143e2565b5b6133db878288016131d8565b91505092959194509250565b600080604083850312156133fe576133fd6143e7565b5b600061340c858286016130c1565b925050602061341d8582860161316f565b9150509250929050565b6000806040838503121561343e5761343d6143e7565b5b600061344c858286016130c1565b925050602061345d85828601613262565b9150509250929050565b6000806000606084860312156134805761347f6143e7565b5b600061348e868287016130c1565b935050602061349f86828701613262565b92505060406134b086828701613262565b9150509250925092565b600080604083850312156134d1576134d06143e7565b5b600083013567ffffffffffffffff8111156134ef576134ee6143e2565b5b6134fb858286016130eb565b925050602061350c85828601613199565b9150509250929050565b6000806020838503121561352d5761352c6143e7565b5b600083013567ffffffffffffffff81111561354b5761354a6143e2565b5b61355785828601613119565b92509250509250929050565b600060208284031215613579576135786143e7565b5b60006135878482850161316f565b91505092915050565b6000602082840312156135a6576135a56143e7565b5b60006135b484828501613184565b91505092915050565b6000602082840312156135d3576135d26143e7565b5b60006135e184828501613199565b91505092915050565b600060208284031215613600576135ff6143e7565b5b600061360e848285016131ae565b91505092915050565b60006020828403121561362d5761362c6143e7565b5b600061363b848285016131c3565b91505092915050565b60006020828403121561365a576136596143e7565b5b600082013567ffffffffffffffff811115613678576136776143e2565b5b61368484828501613206565b91505092915050565b6000602082840312156136a3576136a26143e7565b5b600082015167ffffffffffffffff8111156136c1576136c06143e2565b5b6136cd84828501613234565b91505092915050565b6000602082840312156136ec576136eb6143e7565b5b60006136fa84828501613262565b91505092915050565b6000806040838503121561371a576137196143e7565b5b600061372885828601613262565b925050602083013567ffffffffffffffff811115613749576137486143e2565b5b613755858286016130eb565b9150509250929050565b600061376b8383613b2a565b60808301905092915050565b60006137838383613be3565b60208301905092915050565b61379881614123565b82525050565b6137a781614123565b82525050565b60006137b882613fc8565b6137c2818561400e565b93506137cd83613f93565b8060005b838110156137fe5781516137e5888261375f565b97506137f083613ff4565b9250506001810190506137d1565b5085935050505092915050565b600061381682613fd3565b613820818561401f565b935061382b83613fa3565b8060005b8381101561385c5781516138438882613777565b975061384e83614001565b92505060018101905061382f565b5085935050505092915050565b61387281614135565b82525050565b61388181614135565b82525050565b600061389282613fde565b61389c8185614030565b93506138ac8185602086016141d3565b6138b5816143ec565b840191505092915050565b60006138cb82613fe9565b6138d5818561404c565b93506138e58185602086016141d3565b6138ee816143ec565b840191505092915050565b600061390482613fe9565b61390e818561405d565b935061391e8185602086016141d3565b80840191505092915050565b6000815461393781614206565b613941818661405d565b9450600182166000811461395c576001811461396d576139a0565b60ff198316865281860193506139a0565b61397685613fb3565b60005b8381101561399857815481890152600182019150602081019050613979565b838801955050505b50505092915050565b60006139b660268361404c565b91506139c1826143fd565b604082019050919050565b60006139d960218361404c565b91506139e48261444c565b604082019050919050565b60006139fc600e8361404c565b9150613a078261449b565b602082019050919050565b6000613a1f601e8361404c565b9150613a2a826144c4565b602082019050919050565b6000613a4260058361405d565b9150613a4d826144ed565b600582019050919050565b6000613a6560198361404c565b9150613a7082614516565b602082019050919050565b6000613a8860088361404c565b9150613a938261453f565b602082019050919050565b6000613aab60208361404c565b9150613ab682614568565b602082019050919050565b6000613ace600083614041565b9150613ad982614591565b600082019050919050565b6000613af160108361404c565b9150613afc82614594565b602082019050919050565b6000613b1460278361404c565b9150613b1f826145bd565b604082019050919050565b608082016000820151613b40600085018261378f565b506020820151613b536020850182613c01565b506040820151613b666040850182613869565b506060820151613b796060850182613bd4565b50505050565b608082016000820151613b95600085018261378f565b506020820151613ba86020850182613c01565b506040820151613bbb6040850182613869565b506060820151613bce6060850182613bd4565b50505050565b613bdd81614197565b82525050565b613bec816141a6565b82525050565b613bfb816141a6565b82525050565b613c0a816141b0565b82525050565b6000613c1c82846138f9565b915081905092915050565b6000613c33828561392a565b9150613c3f82846138f9565b9150613c4a82613a35565b91508190509392505050565b6000613c6182613ac1565b9150819050919050565b6000602082019050613c80600083018461379e565b92915050565b6000606082019050613c9b600083018661379e565b613ca8602083018561379e565b613cb56040830184613bf2565b949350505050565b6000608082019050613cd2600083018761379e565b613cdf602083018661379e565b613cec6040830185613bf2565b8181036060830152613cfe8184613887565b905095945050505050565b60006020820190508181036000830152613d2381846137ad565b905092915050565b60006020820190508181036000830152613d45818461380b565b905092915050565b6000602082019050613d626000830184613878565b92915050565b60006020820190508181036000830152613d8281846138c0565b905092915050565b60006020820190508181036000830152613da3816139a9565b9050919050565b60006020820190508181036000830152613dc3816139cc565b9050919050565b60006020820190508181036000830152613de3816139ef565b9050919050565b60006020820190508181036000830152613e0381613a12565b9050919050565b60006020820190508181036000830152613e2381613a58565b9050919050565b60006020820190508181036000830152613e4381613a7b565b9050919050565b60006020820190508181036000830152613e6381613a9e565b9050919050565b60006020820190508181036000830152613e8381613ae4565b9050919050565b60006020820190508181036000830152613ea381613b07565b9050919050565b6000608082019050613ebf6000830184613b7f565b92915050565b6000602082019050613eda6000830184613bf2565b92915050565b6000613eea613efb565b9050613ef68282614238565b919050565b6000604051905090565b600067ffffffffffffffff821115613f2057613f1f61439f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613f4c57613f4b61439f565b5b613f55826143ec565b9050602081019050919050565b600067ffffffffffffffff821115613f7d57613f7c61439f565b5b613f86826143ec565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614073826141a6565b915061407e836141a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140b3576140b26142e3565b5b828201905092915050565b60006140c9826141a6565b91506140d4836141a6565b9250826140e4576140e3614312565b5b828204905092915050565b60006140fa826141a6565b9150614105836141a6565b925082821015614118576141176142e3565b5b828203905092915050565b600061412e82614177565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156141f15780820151818401526020810190506141d6565b83811115614200576000848401525b50505050565b6000600282049050600182168061421e57607f821691505b6020821081141561423257614231614341565b5b50919050565b614241826143ec565b810181811067ffffffffffffffff821117156142605761425f61439f565b5b80604052505050565b6000614274826141a6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142a7576142a66142e3565b5b600182019050919050565b60006142bd826141a6565b91506142c8836141a6565b9250826142d8576142d7614312565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f46726f6e7469657220616c726561647920636c61696d656420616761696e737460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e742064697361626c65642e000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f50617263656c20646f6573206e6f742068617665206567672100000000000000600082015250565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f596f752063616e206f6e6c7920636c61696d2066726f6d20616e20656767207960008201527f6f75206f776e2e00000000000000000000000000000000000000000000000000602082015250565b61461581614123565b811461462057600080fd5b50565b61462c81614135565b811461463757600080fd5b50565b61464381614141565b811461464e57600080fd5b50565b61465a8161414b565b811461466557600080fd5b50565b614671816141a6565b811461467c57600080fd5b5056fea264697066735822122066e7c088058856c0dbdac17c6a93689afbee288a0d8c9c7a9d402863d382c65664736f6c63430008070033

Deployed Bytecode Sourcemap

81166:5856:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32526:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33428:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39919:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39352:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83039:124;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29179:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86003:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43558:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82031:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86672:184;;;;;;;;;;;;;:::i;:::-;;46479:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85843:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67204:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86508:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34821:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81721:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81990:34;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30363:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77258:103;;;;;;;;;;;;;:::i;:::-;;86151:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85669:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71080:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81311:72;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76610:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82590:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33604:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68120:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85339:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40477:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81835:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47270:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83227:1278;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84791:324;;;;;;;;;;;;;:::i;:::-;;81411:73;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66617:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81615:73;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82796:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85502:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81917:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86337:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85165:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40868:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84560:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77516:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81508:73;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81222:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32526:639;32611:4;32950:10;32935:25;;:11;:25;;;;:102;;;;33027:10;33012:25;;:11;:25;;;;32935:102;:179;;;;33104:10;33089:25;;:11;:25;;;;32935:179;32915:199;;32526:639;;;:::o;33428:100::-;33482:13;33515:5;33508:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33428:100;:::o;39919:218::-;39995:7;40020:16;40028:7;40020;:16::i;:::-;40015:64;;40045:34;;;;;;;;;;;;;;40015:64;40099:15;:24;40115:7;40099:24;;;;;;;;;;;:30;;;;;;;;;;;;40092:37;;39919:218;;;:::o;39352:408::-;39441:13;39457:16;39465:7;39457;:16::i;:::-;39441:32;;39513:5;39490:28;;:19;:17;:19::i;:::-;:28;;;39486:175;;39538:44;39555:5;39562:19;:17;:19::i;:::-;39538:16;:44::i;:::-;39533:128;;39610:35;;;;;;;;;;;;;;39533:128;39486:175;39706:2;39673:15;:24;39689:7;39673:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39744:7;39740:2;39724:28;;39733:5;39724:28;;;;;;;;;;;;39430:330;39352:408;;:::o;83039:124::-;83090:29;83138:17;83131:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83039:124;:::o;29179:323::-;29240:7;29468:15;:13;:15::i;:::-;29453:12;;29437:13;;:28;:46;29430:53;;29179:323;:::o;86003:82::-;76496:13;:11;:13::i;:::-;86072:5:::1;86065:4;:12;;;;86003:82:::0;:::o;43558:2825::-;43700:27;43730;43749:7;43730:18;:27::i;:::-;43700:57;;43815:4;43774:45;;43790:19;43774:45;;;43770:86;;43828:28;;;;;;;;;;;;;;43770:86;43870:27;43899:23;43926:35;43953:7;43926:26;:35::i;:::-;43869:92;;;;44061:68;44086:15;44103:4;44109:19;:17;:19::i;:::-;44061:24;:68::i;:::-;44056:180;;44149:43;44166:4;44172:19;:17;:19::i;:::-;44149:16;:43::i;:::-;44144:92;;44201:35;;;;;;;;;;;;;;44144:92;44056:180;44267:1;44253:16;;:2;:16;;;44249:52;;;44278:23;;;;;;;;;;;;;;44249:52;44314:43;44336:4;44342:2;44346:7;44355:1;44314:21;:43::i;:::-;44450:15;44447:160;;;44590:1;44569:19;44562:30;44447:160;44987:18;:24;45006:4;44987:24;;;;;;;;;;;;;;;;44985:26;;;;;;;;;;;;45056:18;:22;45075:2;45056:22;;;;;;;;;;;;;;;;45054:24;;;;;;;;;;;45378:146;45415:2;45464:45;45479:4;45485:2;45489:19;45464:14;:45::i;:::-;25578:8;45436:73;45378:18;:146::i;:::-;45349:17;:26;45367:7;45349:26;;;;;;;;;;;:175;;;;45695:1;25578:8;45644:19;:47;:52;45640:627;;;45717:19;45749:1;45739:7;:11;45717:33;;45906:1;45872:17;:30;45890:11;45872:30;;;;;;;;;;;;:35;45868:384;;;46010:13;;45995:11;:28;45991:242;;46190:19;46157:17;:30;46175:11;46157:30;;;;;;;;;;;:52;;;;45991:242;45868:384;45698:569;45640:627;46314:7;46310:2;46295:27;;46304:4;46295:27;;;;;;;;;;;;46333:42;46354:4;46360:2;46364:7;46373:1;46333:20;:42::i;:::-;43689:2694;;;43558:2825;;;:::o;82031:29::-;;;;;;;;;;;;;:::o;86672:184::-;76496:13;:11;:13::i;:::-;86723:12:::1;86749;;;;;;;;;;;86741:26;;86775:21;86741:60;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86722:79;;;86820:7;86812:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;86711:145;86672:184::o:0;46479:193::-;46625:39;46642:4;46648:2;46652:7;46625:39;;;;;;;;;;;;:16;:39::i;:::-;46479:193;;;:::o;85843:104::-;76496:13;:11;:13::i;:::-;85934:5:::1;85919:12;:20;;;;;;;;;;;;:::i;:::-;;85843:104:::0;:::o;67204:528::-;67348:23;67414:22;67439:8;;:15;;67414:40;;67469:34;67527:14;67506:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;67469:73;;67562:9;67557:125;67578:14;67573:1;:19;67557:125;;67634:32;67654:8;;67663:1;67654:11;;;;;;;:::i;:::-;;;;;;;;67634:19;:32::i;:::-;67618:10;67629:1;67618:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;67594:3;;;;;67557:125;;;;67703:10;67696:17;;;;67204:528;;;;:::o;86508:114::-;76496:13;:11;:13::i;:::-;86601::::1;86586:12;;:28;;;;;;;;;;;;;;;;;;86508:114:::0;:::o;34821:152::-;34893:7;34936:27;34955:7;34936:18;:27::i;:::-;34913:52;;34821:152;;;:::o;81721:77::-;;;;;;;;;;;;;:::o;81990:34::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30363:233::-;30435:7;30476:1;30459:19;;:5;:19;;;30455:60;;;30487:28;;;;;;;;;;;;;;30455:60;24522:13;30533:18;:25;30552:5;30533:25;;;;;;;;;;;;;;;;:55;30526:62;;30363:233;;;:::o;77258:103::-;76496:13;:11;:13::i;:::-;77323:30:::1;77350:1;77323:18;:30::i;:::-;77258:103::o:0;86151:118::-;76496:13;:11;:13::i;:::-;86247:14:::1;86231:13;;:30;;;;;;;;;;;;;;;;;;86151:118:::0;:::o;85669:116::-;76496:13;:11;:13::i;:::-;85768:9:::1;85748:17;;:29;;;;;;;;;;;;;;;;;;85669:116:::0;:::o;71080:900::-;71158:16;71212:19;71246:25;71286:22;71311:16;71321:5;71311:9;:16::i;:::-;71286:41;;71342:25;71384:14;71370:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71342:57;;71414:31;;:::i;:::-;71465:9;71477:15;:13;:15::i;:::-;71465:27;;71460:472;71509:14;71494:11;:29;71460:472;;71561:15;71574:1;71561:12;:15::i;:::-;71549:27;;71599:9;:16;;;71595:73;;;71640:8;;71595:73;71716:1;71690:28;;:9;:14;;;:28;;;71686:111;;71763:9;:14;;;71743:34;;71686:111;71840:5;71819:26;;:17;:26;;;71815:102;;;71896:1;71870:8;71879:13;;;;;;71870:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;71815:102;71460:472;71525:3;;;;;71460:472;;;;71953:8;71946:15;;;;;;;71080:900;;;:::o;81311:72::-;;;;;;;;;;;;;:::o;76610:87::-;76656:7;76683:6;;;;;;;;;;;76676:13;;76610:87;:::o;82590:152::-;82676:4;82699:35;82718:5;82724:4;;82729;82699:18;:35::i;:::-;82692:42;;82590:152;;;;:::o;33604:104::-;33660:13;33693:7;33686:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33604:104;:::o;68120:2513::-;68263:16;68330:4;68321:5;:13;68317:45;;68343:19;;;;;;;;;;;;;;68317:45;68377:19;68411:17;68431:14;:12;:14::i;:::-;68411:34;;68531:15;:13;:15::i;:::-;68523:5;:23;68519:87;;;68575:15;:13;:15::i;:::-;68567:23;;68519:87;68682:9;68675:4;:16;68671:73;;;68719:9;68712:16;;68671:73;68758:25;68786:16;68796:5;68786:9;:16::i;:::-;68758:44;;68980:4;68972:5;:12;68968:278;;;69005:19;69034:5;69027:4;:12;69005:34;;69076:17;69062:11;:31;69058:111;;;69138:11;69118:31;;69058:111;68986:198;68968:278;;;69229:1;69209:21;;68968:278;69260:25;69302:17;69288:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69260:60;;69360:1;69339:17;:22;69335:78;;;69389:8;69382:15;;;;;;;;69335:78;69557:31;69591:26;69611:5;69591:19;:26::i;:::-;69557:60;;69632:25;69877:9;:16;;;69872:92;;69934:9;:14;;;69914:34;;69872:92;69983:9;69995:5;69983:17;;69978:478;70007:4;70002:1;:9;;:45;;;;;70030:17;70015:11;:32;;70002:45;69978:478;;;70085:15;70098:1;70085:12;:15::i;:::-;70073:27;;70123:9;:16;;;70119:73;;;70164:8;;70119:73;70240:1;70214:28;;:9;:14;;;:28;;;70210:111;;70287:9;:14;;;70267:34;;70210:111;70364:5;70343:26;;:17;:26;;;70339:102;;;70420:1;70394:8;70403:13;;;;;;70394:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;70339:102;69978:478;70049:3;;;;;69978:478;;;;70558:11;70548:8;70541:29;70606:8;70599:15;;;;;;;;68120:2513;;;;;;:::o;85339:104::-;76496:13;:11;:13::i;:::-;85429:6:::1;85412:14;:23;;;;85339:104:::0;:::o;40477:234::-;40624:8;40572:18;:39;40591:19;:17;:19::i;:::-;40572:39;;;;;;;;;;;;;;;:49;40612:8;40572:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;40684:8;40648:55;;40663:19;:17;:19::i;:::-;40648:55;;;40694:8;40648:55;;;;;;:::i;:::-;;;;;;;;40477:234;;:::o;81835:44::-;;;;:::o;47270:407::-;47445:31;47458:4;47464:2;47468:7;47445:12;:31::i;:::-;47509:1;47491:2;:14;;;:19;47487:183;;47530:56;47561:4;47567:2;47571:7;47580:5;47530:30;:56::i;:::-;47525:145;;47614:40;;;;;;;;;;;;;;47525:145;47487:183;47270:407;;;;:::o;83227:1278::-;82431:10;82418:23;;:9;:23;;;82410:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;83362:9:::1;;;;;;;;;;;83354:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;83451:9;;83435:13;:11;:13::i;:::-;:25;83427:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;83582:4;83547:39;;:14;:31;83562:15;83547:31;;;;;;;;;;;;;;;;;;;;;:39;;;;83539:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;83680:118;83698:5;83749:17;;;;;;;;;;;83731:47;;;83779:15;83731:64;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;83714:82;;;;;;;;:::i;:::-;;;;;;;;;;;;;83704:93;;;;;;83680:17;:118::i;:::-;83672:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;83941:10;83885:66;;83894:17;;;;;;;;;;;83885:35;;;83921:15;83885:52;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:66;;;83877:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;84078:4;84044:14;:31;84059:15;84044:31;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;84093:17;84116:15;84093:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84217:13;;;;;;;;;;;84210:34;;;84245:10;84264:13;;;;;;;;;;;84279:14;;84210:84;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;84354:4;84338:13;:11;:13::i;:::-;:20;84335:163;;;84397:28;84411:10;84423:1;84397:5;:28::i;:::-;84335:163;;;84458:28;84472:10;84484:1;84458:5;:28::i;:::-;84335:163;83227:1278:::0;;:::o;84791:324::-;76496:13;:11;:13::i;:::-;84869:9:::1;;84862:3;84846:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;84838:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;84901:34;84915:13;;;;;;;;;;;84931:3;84901:5;:34::i;:::-;84955:62;84969:42;85014:2;84955:5;:62::i;:::-;85035;85049:42;85094:2;85035:5;:62::i;:::-;84791:324::o:0;81411:73::-;;;;;;;;;;;;;:::o;66617:428::-;66701:21;;:::i;:::-;66735:31;;:::i;:::-;66791:15;:13;:15::i;:::-;66781:7;:25;:54;;;;66821:14;:12;:14::i;:::-;66810:7;:25;;66781:54;66777:103;;;66859:9;66852:16;;;;;66777:103;66902:21;66915:7;66902:12;:21::i;:::-;66890:33;;66938:9;:16;;;66934:65;;;66978:9;66971:16;;;;;66934:65;67016:21;67029:7;67016:12;:21::i;:::-;67009:28;;;66617:428;;;;:::o;81615:73::-;;;;;;;;;;;;;:::o;82796:187::-;82866:18;82927:12;82940:25;82957:7;82940:16;:25::i;:::-;82910:64;;;;;;;;;:::i;:::-;;;;;;;;;;;;;82896:79;;82796:187;;;:::o;85502:108::-;76496:13;:11;:13::i;:::-;85593:9:::1;85577:13;;:25;;;;;;;;;;;;;;;;;;85502:108:::0;:::o;81917:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;86337:106::-;76496:13;:11;:13::i;:::-;86427:8:::1;86411:13;;:24;;;;;;;;;;;;;;;;;;86337:106:::0;:::o;85165:101::-;76496:13;:11;:13::i;:::-;85248:10:::1;85236:9;;:22;;;;;;;;;;;;;;;;;;85165:101:::0;:::o;40868:164::-;40965:4;40989:18;:25;41008:5;40989:25;;;;;;;;;;;;;;;:35;41015:8;40989:35;;;;;;;;;;;;;;;;;;;;;;;;;40982:42;;40868:164;;;;:::o;84560:175::-;76496:13;:11;:13::i;:::-;84658:9:::1;;84647:7;84631:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:36;;84623:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;84690:37;84704:13;;;;;;;;;;;84719:7;84690:5;:37::i;:::-;84560:175:::0;:::o;77516:201::-;76496:13;:11;:13::i;:::-;77625:1:::1;77605:22;;:8;:22;;;;77597:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;77681:28;77700:8;77681:18;:28::i;:::-;77516:201:::0;:::o;81508:73::-;;;;;;;;;;;;;:::o;81222:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41290:282::-;41355:4;41411:7;41392:15;:13;:15::i;:::-;:26;;:66;;;;;41445:13;;41435:7;:23;41392:66;:153;;;;;41544:1;25298:8;41496:17;:26;41514:7;41496:26;;;;;;;;;;;;:44;:49;41392:153;41372:173;;41290:282;;;:::o;63598:105::-;63658:7;63685:10;63678:17;;63598:105;:::o;28695:92::-;28751:7;28695:92;:::o;76775:132::-;76850:12;:10;:12::i;:::-;76839:23;;:7;:5;:7::i;:::-;:23;;;76831:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76775:132::o;35976:1275::-;36043:7;36063:12;36078:7;36063:22;;36146:4;36127:15;:13;:15::i;:::-;:23;36123:1061;;36180:13;;36173:4;:20;36169:1015;;;36218:14;36235:17;:23;36253:4;36235:23;;;;;;;;;;;;36218:40;;36352:1;25298:8;36324:6;:24;:29;36320:845;;;36989:113;37006:1;36996:6;:11;36989:113;;;37049:17;:25;37067:6;;;;;;;37049:25;;;;;;;;;;;;37040:34;;36989:113;;;37135:6;37128:13;;;;;;36320:845;36195:989;36169:1015;36123:1061;37212:31;;;;;;;;;;;;;;35976:1275;;;;:::o;42453:485::-;42555:27;42584:23;42625:38;42666:15;:24;42682:7;42666:24;;;;;;;;;;;42625:65;;42843:18;42820:41;;42900:19;42894:26;42875:45;;42805:126;42453:485;;;:::o;41681:659::-;41830:11;41995:16;41988:5;41984:28;41975:37;;42155:16;42144:9;42140:32;42127:45;;42305:15;42294:9;42291:30;42283:5;42272:9;42269:20;42266:56;42256:66;;41681:659;;;;;:::o;48339:159::-;;;;;:::o;62907:311::-;63042:7;63062:16;25702:3;63088:19;:41;;63062:68;;25702:3;63156:31;63167:4;63173:2;63177:9;63156:10;:31::i;:::-;63148:40;;:62;;63141:69;;;62907:311;;;;;:::o;37799:450::-;37879:14;38047:16;38040:5;38036:28;38027:37;;38224:5;38210:11;38185:23;38181:41;38178:52;38171:5;38168:63;38158:73;;37799:450;;;;:::o;49163:158::-;;;;;:::o;77877:191::-;77951:16;77970:6;;;;;;;;;;;77951:25;;77996:8;77987:6;;:17;;;;;;;;;;;;;;;;;;78051:8;78020:40;;78041:8;78020:40;;;;;;;;;;;;77940:128;77877:191;:::o;35424:161::-;35492:21;;:::i;:::-;35533:44;35552:17;:24;35570:5;35552:24;;;;;;;;;;;;35533:18;:44::i;:::-;35526:51;;35424:161;;;:::o;1252:190::-;1377:4;1430;1401:25;1414:5;1421:4;1401:12;:25::i;:::-;:33;1394:40;;1252:190;;;;;:::o;28866:103::-;28921:7;28948:13;;28941:20;;28866:103;:::o;49761:716::-;49924:4;49970:2;49945:45;;;49991:19;:17;:19::i;:::-;50012:4;50018:7;50027:5;49945:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49941:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50245:1;50228:6;:13;:18;50224:235;;;50274:40;;;;;;;;;;;;;;50224:235;50417:6;50411:13;50402:6;50398:2;50394:15;50387:38;49941:529;50114:54;;;50104:64;;;:6;:64;;;;50097:71;;;49761:716;;;;;;:::o;50939:2966::-;51012:20;51035:13;;51012:36;;51075:1;51063:8;:13;51059:44;;;51085:18;;;;;;;;;;;;;;51059:44;51116:61;51146:1;51150:2;51154:12;51168:8;51116:21;:61::i;:::-;51660:1;24660:2;51630:1;:26;;51629:32;51617:8;:45;51591:18;:22;51610:2;51591:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;51939:139;51976:2;52030:33;52053:1;52057:2;52061:1;52030:14;:33::i;:::-;51997:30;52018:8;51997:20;:30::i;:::-;:66;51939:18;:139::i;:::-;51905:17;:31;51923:12;51905:31;;;;;;;;;;;:173;;;;52095:16;52126:11;52155:8;52140:12;:23;52126:37;;52676:16;52672:2;52668:25;52656:37;;53048:12;53008:8;52967:1;52905:25;52846:1;52785;52758:335;53419:1;53405:12;53401:20;53359:346;53460:3;53451:7;53448:16;53359:346;;53678:7;53668:8;53665:1;53638:25;53635:1;53632;53627:59;53513:1;53504:7;53500:15;53489:26;;53359:346;;;53363:77;53750:1;53738:8;:13;53734:45;;;53760:19;;;;;;;;;;;;;;53734:45;53812:3;53796:13;:19;;;;51365:2462;;53837:60;53866:1;53870:2;53874:12;53888:8;53837:20;:60::i;:::-;51001:2904;50939:2966;;:::o;35162:166::-;35232:21;;:::i;:::-;35273:47;35292:27;35311:7;35292:18;:27::i;:::-;35273:18;:47::i;:::-;35266:54;;35162:166;;;:::o;72415:723::-;72471:13;72701:1;72692:5;:10;72688:53;;;72719:10;;;;;;;;;;;;;;;;;;;;;72688:53;72751:12;72766:5;72751:20;;72782:14;72807:78;72822:1;72814:4;:9;72807:78;;72840:8;;;;;:::i;:::-;;;;72871:2;72863:10;;;;;:::i;:::-;;;72807:78;;;72895:19;72927:6;72917:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72895:39;;72945:154;72961:1;72952:5;:10;72945:154;;72989:1;72979:11;;;;;:::i;:::-;;;73056:2;73048:5;:10;;;;:::i;:::-;73035:2;:24;;;;:::i;:::-;73022:39;;73005:6;73012;73005:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;73085:2;73076:11;;;;;:::i;:::-;;;72945:154;;;73123:6;73109:21;;;;;72415:723;;;;:::o;75161:98::-;75214:7;75241:10;75234:17;;75161:98;:::o;62608:147::-;62745:6;62608:147;;;;;:::o;37350:366::-;37416:31;;:::i;:::-;37493:6;37460:9;:14;;:41;;;;;;;;;;;25181:3;37546:6;:33;;37512:9;:24;;:68;;;;;;;;;;;37638:1;25298:8;37610:6;:24;:29;;37591:9;:16;;:48;;;;;;;;;;;25702:3;37679:6;:28;;37650:9;:19;;:58;;;;;;;;;;;37350:366;;;:::o;2119:296::-;2202:7;2222:20;2245:4;2222:27;;2265:9;2260:118;2284:5;:12;2280:1;:16;2260:118;;;2333:33;2343:12;2357:5;2363:1;2357:8;;;;;;;;:::i;:::-;;;;;;;;2333:9;:33::i;:::-;2318:48;;2298:3;;;;;:::i;:::-;;;;2260:118;;;;2395:12;2388:19;;;2119:296;;;;:::o;38351:324::-;38421:14;38654:1;38644:8;38641:15;38615:24;38611:46;38601:56;;38351:324;;;:::o;8326:149::-;8389:7;8420:1;8416;:5;:51;;8447:20;8462:1;8465;8447:14;:20::i;:::-;8416:51;;;8424:20;8439:1;8442;8424:14;:20::i;:::-;8416:51;8409:58;;8326:149;;;;:::o;8483:268::-;8551:13;8658:1;8652:4;8645:15;8687:1;8681:4;8674:15;8728:4;8722;8712:21;8703:30;;8483:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:421::-;1675:5;1700:66;1716:49;1758:6;1716:49;:::i;:::-;1700:66;:::i;:::-;1691:75;;1789:6;1782:5;1775:21;1827:4;1820:5;1816:16;1865:3;1856:6;1851:3;1847:16;1844:25;1841:112;;;1872:79;;:::i;:::-;1841:112;1962:39;1994:6;1989:3;1984;1962:39;:::i;:::-;1681:326;1586:421;;;;;:::o;2013:139::-;2059:5;2097:6;2084:20;2075:29;;2113:33;2140:5;2113:33;:::i;:::-;2013:139;;;;:::o;2158:143::-;2215:5;2246:6;2240:13;2231:22;;2262:33;2289:5;2262:33;:::i;:::-;2158:143;;;;:::o;2324:370::-;2395:5;2444:3;2437:4;2429:6;2425:17;2421:27;2411:122;;2452:79;;:::i;:::-;2411:122;2569:6;2556:20;2594:94;2684:3;2676:6;2669:4;2661:6;2657:17;2594:94;:::i;:::-;2585:103;;2401:293;2324:370;;;;:::o;2717:568::-;2790:8;2800:6;2850:3;2843:4;2835:6;2831:17;2827:27;2817:122;;2858:79;;:::i;:::-;2817:122;2971:6;2958:20;2948:30;;3001:18;2993:6;2990:30;2987:117;;;3023:79;;:::i;:::-;2987:117;3137:4;3129:6;3125:17;3113:29;;3191:3;3183:4;3175:6;3171:17;3161:8;3157:32;3154:41;3151:128;;;3198:79;;:::i;:::-;3151:128;2717:568;;;;;:::o;3291:133::-;3334:5;3372:6;3359:20;3350:29;;3388:30;3412:5;3388:30;:::i;:::-;3291:133;;;;:::o;3430:137::-;3484:5;3515:6;3509:13;3500:22;;3531:30;3555:5;3531:30;:::i;:::-;3430:137;;;;:::o;3573:139::-;3619:5;3657:6;3644:20;3635:29;;3673:33;3700:5;3673:33;:::i;:::-;3573:139;;;;:::o;3718:137::-;3763:5;3801:6;3788:20;3779:29;;3817:32;3843:5;3817:32;:::i;:::-;3718:137;;;;:::o;3861:141::-;3917:5;3948:6;3942:13;3933:22;;3964:32;3990:5;3964:32;:::i;:::-;3861:141;;;;:::o;4021:338::-;4076:5;4125:3;4118:4;4110:6;4106:17;4102:27;4092:122;;4133:79;;:::i;:::-;4092:122;4250:6;4237:20;4275:78;4349:3;4341:6;4334:4;4326:6;4322:17;4275:78;:::i;:::-;4266:87;;4082:277;4021:338;;;;:::o;4379:340::-;4435:5;4484:3;4477:4;4469:6;4465:17;4461:27;4451:122;;4492:79;;:::i;:::-;4451:122;4609:6;4596:20;4634:79;4709:3;4701:6;4694:4;4686:6;4682:17;4634:79;:::i;:::-;4625:88;;4441:278;4379:340;;;;:::o;4739:355::-;4806:5;4855:3;4848:4;4840:6;4836:17;4832:27;4822:122;;4863:79;;:::i;:::-;4822:122;4973:6;4967:13;4998:90;5084:3;5076:6;5069:4;5061:6;5057:17;4998:90;:::i;:::-;4989:99;;4812:282;4739:355;;;;:::o;5100:139::-;5146:5;5184:6;5171:20;5162:29;;5200:33;5227:5;5200:33;:::i;:::-;5100:139;;;;:::o;5245:329::-;5304:6;5353:2;5341:9;5332:7;5328:23;5324:32;5321:119;;;5359:79;;:::i;:::-;5321:119;5479:1;5504:53;5549:7;5540:6;5529:9;5525:22;5504:53;:::i;:::-;5494:63;;5450:117;5245:329;;;;:::o;5580:351::-;5650:6;5699:2;5687:9;5678:7;5674:23;5670:32;5667:119;;;5705:79;;:::i;:::-;5667:119;5825:1;5850:64;5906:7;5897:6;5886:9;5882:22;5850:64;:::i;:::-;5840:74;;5796:128;5580:351;;;;:::o;5937:474::-;6005:6;6013;6062:2;6050:9;6041:7;6037:23;6033:32;6030:119;;;6068:79;;:::i;:::-;6030:119;6188:1;6213:53;6258:7;6249:6;6238:9;6234:22;6213:53;:::i;:::-;6203:63;;6159:117;6315:2;6341:53;6386:7;6377:6;6366:9;6362:22;6341:53;:::i;:::-;6331:63;;6286:118;5937:474;;;;;:::o;6417:619::-;6494:6;6502;6510;6559:2;6547:9;6538:7;6534:23;6530:32;6527:119;;;6565:79;;:::i;:::-;6527:119;6685:1;6710:53;6755:7;6746:6;6735:9;6731:22;6710:53;:::i;:::-;6700:63;;6656:117;6812:2;6838:53;6883:7;6874:6;6863:9;6859:22;6838:53;:::i;:::-;6828:63;;6783:118;6940:2;6966:53;7011:7;7002:6;6991:9;6987:22;6966:53;:::i;:::-;6956:63;;6911:118;6417:619;;;;;:::o;7042:943::-;7137:6;7145;7153;7161;7210:3;7198:9;7189:7;7185:23;7181:33;7178:120;;;7217:79;;:::i;:::-;7178:120;7337:1;7362:53;7407:7;7398:6;7387:9;7383:22;7362:53;:::i;:::-;7352:63;;7308:117;7464:2;7490:53;7535:7;7526:6;7515:9;7511:22;7490:53;:::i;:::-;7480:63;;7435:118;7592:2;7618:53;7663:7;7654:6;7643:9;7639:22;7618:53;:::i;:::-;7608:63;;7563:118;7748:2;7737:9;7733:18;7720:32;7779:18;7771:6;7768:30;7765:117;;;7801:79;;:::i;:::-;7765:117;7906:62;7960:7;7951:6;7940:9;7936:22;7906:62;:::i;:::-;7896:72;;7691:287;7042:943;;;;;;;:::o;7991:468::-;8056:6;8064;8113:2;8101:9;8092:7;8088:23;8084:32;8081:119;;;8119:79;;:::i;:::-;8081:119;8239:1;8264:53;8309:7;8300:6;8289:9;8285:22;8264:53;:::i;:::-;8254:63;;8210:117;8366:2;8392:50;8434:7;8425:6;8414:9;8410:22;8392:50;:::i;:::-;8382:60;;8337:115;7991:468;;;;;:::o;8465:474::-;8533:6;8541;8590:2;8578:9;8569:7;8565:23;8561:32;8558:119;;;8596:79;;:::i;:::-;8558:119;8716:1;8741:53;8786:7;8777:6;8766:9;8762:22;8741:53;:::i;:::-;8731:63;;8687:117;8843:2;8869:53;8914:7;8905:6;8894:9;8890:22;8869:53;:::i;:::-;8859:63;;8814:118;8465:474;;;;;:::o;8945:619::-;9022:6;9030;9038;9087:2;9075:9;9066:7;9062:23;9058:32;9055:119;;;9093:79;;:::i;:::-;9055:119;9213:1;9238:53;9283:7;9274:6;9263:9;9259:22;9238:53;:::i;:::-;9228:63;;9184:117;9340:2;9366:53;9411:7;9402:6;9391:9;9387:22;9366:53;:::i;:::-;9356:63;;9311:118;9468:2;9494:53;9539:7;9530:6;9519:9;9515:22;9494:53;:::i;:::-;9484:63;;9439:118;8945:619;;;;;:::o;9570:684::-;9663:6;9671;9720:2;9708:9;9699:7;9695:23;9691:32;9688:119;;;9726:79;;:::i;:::-;9688:119;9874:1;9863:9;9859:17;9846:31;9904:18;9896:6;9893:30;9890:117;;;9926:79;;:::i;:::-;9890:117;10031:78;10101:7;10092:6;10081:9;10077:22;10031:78;:::i;:::-;10021:88;;9817:302;10158:2;10184:53;10229:7;10220:6;10209:9;10205:22;10184:53;:::i;:::-;10174:63;;10129:118;9570:684;;;;;:::o;10260:559::-;10346:6;10354;10403:2;10391:9;10382:7;10378:23;10374:32;10371:119;;;10409:79;;:::i;:::-;10371:119;10557:1;10546:9;10542:17;10529:31;10587:18;10579:6;10576:30;10573:117;;;10609:79;;:::i;:::-;10573:117;10722:80;10794:7;10785:6;10774:9;10770:22;10722:80;:::i;:::-;10704:98;;;;10500:312;10260:559;;;;;:::o;10825:323::-;10881:6;10930:2;10918:9;10909:7;10905:23;10901:32;10898:119;;;10936:79;;:::i;:::-;10898:119;11056:1;11081:50;11123:7;11114:6;11103:9;11099:22;11081:50;:::i;:::-;11071:60;;11027:114;10825:323;;;;:::o;11154:345::-;11221:6;11270:2;11258:9;11249:7;11245:23;11241:32;11238:119;;;11276:79;;:::i;:::-;11238:119;11396:1;11421:61;11474:7;11465:6;11454:9;11450:22;11421:61;:::i;:::-;11411:71;;11367:125;11154:345;;;;:::o;11505:329::-;11564:6;11613:2;11601:9;11592:7;11588:23;11584:32;11581:119;;;11619:79;;:::i;:::-;11581:119;11739:1;11764:53;11809:7;11800:6;11789:9;11785:22;11764:53;:::i;:::-;11754:63;;11710:117;11505:329;;;;:::o;11840:327::-;11898:6;11947:2;11935:9;11926:7;11922:23;11918:32;11915:119;;;11953:79;;:::i;:::-;11915:119;12073:1;12098:52;12142:7;12133:6;12122:9;12118:22;12098:52;:::i;:::-;12088:62;;12044:116;11840:327;;;;:::o;12173:349::-;12242:6;12291:2;12279:9;12270:7;12266:23;12262:32;12259:119;;;12297:79;;:::i;:::-;12259:119;12417:1;12442:63;12497:7;12488:6;12477:9;12473:22;12442:63;:::i;:::-;12432:73;;12388:127;12173:349;;;;:::o;12528:509::-;12597:6;12646:2;12634:9;12625:7;12621:23;12617:32;12614:119;;;12652:79;;:::i;:::-;12614:119;12800:1;12789:9;12785:17;12772:31;12830:18;12822:6;12819:30;12816:117;;;12852:79;;:::i;:::-;12816:117;12957:63;13012:7;13003:6;12992:9;12988:22;12957:63;:::i;:::-;12947:73;;12743:287;12528:509;;;;:::o;13043:524::-;13123:6;13172:2;13160:9;13151:7;13147:23;13143:32;13140:119;;;13178:79;;:::i;:::-;13140:119;13319:1;13308:9;13304:17;13298:24;13349:18;13341:6;13338:30;13335:117;;;13371:79;;:::i;:::-;13335:117;13476:74;13542:7;13533:6;13522:9;13518:22;13476:74;:::i;:::-;13466:84;;13269:291;13043:524;;;;:::o;13573:329::-;13632:6;13681:2;13669:9;13660:7;13656:23;13652:32;13649:119;;;13687:79;;:::i;:::-;13649:119;13807:1;13832:53;13877:7;13868:6;13857:9;13853:22;13832:53;:::i;:::-;13822:63;;13778:117;13573:329;;;;:::o;13908:684::-;14001:6;14009;14058:2;14046:9;14037:7;14033:23;14029:32;14026:119;;;14064:79;;:::i;:::-;14026:119;14184:1;14209:53;14254:7;14245:6;14234:9;14230:22;14209:53;:::i;:::-;14199:63;;14155:117;14339:2;14328:9;14324:18;14311:32;14370:18;14362:6;14359:30;14356:117;;;14392:79;;:::i;:::-;14356:117;14497:78;14567:7;14558:6;14547:9;14543:22;14497:78;:::i;:::-;14487:88;;14282:303;13908:684;;;;;:::o;14598:303::-;14729:10;14750:108;14854:3;14846:6;14750:108;:::i;:::-;14890:4;14885:3;14881:14;14867:28;;14598:303;;;;:::o;14907:179::-;14976:10;14997:46;15039:3;15031:6;14997:46;:::i;:::-;15075:4;15070:3;15066:14;15052:28;;14907:179;;;;:::o;15092:108::-;15169:24;15187:5;15169:24;:::i;:::-;15164:3;15157:37;15092:108;;:::o;15206:118::-;15293:24;15311:5;15293:24;:::i;:::-;15288:3;15281:37;15206:118;;:::o;15406:980::-;15587:3;15616:85;15695:5;15616:85;:::i;:::-;15717:117;15827:6;15822:3;15717:117;:::i;:::-;15710:124;;15858:87;15939:5;15858:87;:::i;:::-;15968:7;15999:1;15984:377;16009:6;16006:1;16003:13;15984:377;;;16085:6;16079:13;16112:125;16233:3;16218:13;16112:125;:::i;:::-;16105:132;;16260:91;16344:6;16260:91;:::i;:::-;16250:101;;16044:317;16031:1;16028;16024:9;16019:14;;15984:377;;;15988:14;16377:3;16370:10;;15592:794;;;15406:980;;;;:::o;16422:732::-;16541:3;16570:54;16618:5;16570:54;:::i;:::-;16640:86;16719:6;16714:3;16640:86;:::i;:::-;16633:93;;16750:56;16800:5;16750:56;:::i;:::-;16829:7;16860:1;16845:284;16870:6;16867:1;16864:13;16845:284;;;16946:6;16940:13;16973:63;17032:3;17017:13;16973:63;:::i;:::-;16966:70;;17059:60;17112:6;17059:60;:::i;:::-;17049:70;;16905:224;16892:1;16889;16885:9;16880:14;;16845:284;;;16849:14;17145:3;17138:10;;16546:608;;;16422:732;;;;:::o;17160:99::-;17231:21;17246:5;17231:21;:::i;:::-;17226:3;17219:34;17160:99;;:::o;17265:109::-;17346:21;17361:5;17346:21;:::i;:::-;17341:3;17334:34;17265:109;;:::o;17380:360::-;17466:3;17494:38;17526:5;17494:38;:::i;:::-;17548:70;17611:6;17606:3;17548:70;:::i;:::-;17541:77;;17627:52;17672:6;17667:3;17660:4;17653:5;17649:16;17627:52;:::i;:::-;17704:29;17726:6;17704:29;:::i;:::-;17699:3;17695:39;17688:46;;17470:270;17380:360;;;;:::o;17746:364::-;17834:3;17862:39;17895:5;17862:39;:::i;:::-;17917:71;17981:6;17976:3;17917:71;:::i;:::-;17910:78;;17997:52;18042:6;18037:3;18030:4;18023:5;18019:16;17997:52;:::i;:::-;18074:29;18096:6;18074:29;:::i;:::-;18069:3;18065:39;18058:46;;17838:272;17746:364;;;;:::o;18116:377::-;18222:3;18250:39;18283:5;18250:39;:::i;:::-;18305:89;18387:6;18382:3;18305:89;:::i;:::-;18298:96;;18403:52;18448:6;18443:3;18436:4;18429:5;18425:16;18403:52;:::i;:::-;18480:6;18475:3;18471:16;18464:23;;18226:267;18116:377;;;;:::o;18523:845::-;18626:3;18663:5;18657:12;18692:36;18718:9;18692:36;:::i;:::-;18744:89;18826:6;18821:3;18744:89;:::i;:::-;18737:96;;18864:1;18853:9;18849:17;18880:1;18875:137;;;;19026:1;19021:341;;;;18842:520;;18875:137;18959:4;18955:9;18944;18940:25;18935:3;18928:38;18995:6;18990:3;18986:16;18979:23;;18875:137;;19021:341;19088:38;19120:5;19088:38;:::i;:::-;19148:1;19162:154;19176:6;19173:1;19170:13;19162:154;;;19250:7;19244:14;19240:1;19235:3;19231:11;19224:35;19300:1;19291:7;19287:15;19276:26;;19198:4;19195:1;19191:12;19186:17;;19162:154;;;19345:6;19340:3;19336:16;19329:23;;19028:334;;18842:520;;18630:738;;18523:845;;;;:::o;19374:366::-;19516:3;19537:67;19601:2;19596:3;19537:67;:::i;:::-;19530:74;;19613:93;19702:3;19613:93;:::i;:::-;19731:2;19726:3;19722:12;19715:19;;19374:366;;;:::o;19746:::-;19888:3;19909:67;19973:2;19968:3;19909:67;:::i;:::-;19902:74;;19985:93;20074:3;19985:93;:::i;:::-;20103:2;20098:3;20094:12;20087:19;;19746:366;;;:::o;20118:::-;20260:3;20281:67;20345:2;20340:3;20281:67;:::i;:::-;20274:74;;20357:93;20446:3;20357:93;:::i;:::-;20475:2;20470:3;20466:12;20459:19;;20118:366;;;:::o;20490:::-;20632:3;20653:67;20717:2;20712:3;20653:67;:::i;:::-;20646:74;;20729:93;20818:3;20729:93;:::i;:::-;20847:2;20842:3;20838:12;20831:19;;20490:366;;;:::o;20862:400::-;21022:3;21043:84;21125:1;21120:3;21043:84;:::i;:::-;21036:91;;21136:93;21225:3;21136:93;:::i;:::-;21254:1;21249:3;21245:11;21238:18;;20862:400;;;:::o;21268:366::-;21410:3;21431:67;21495:2;21490:3;21431:67;:::i;:::-;21424:74;;21507:93;21596:3;21507:93;:::i;:::-;21625:2;21620:3;21616:12;21609:19;;21268:366;;;:::o;21640:365::-;21782:3;21803:66;21867:1;21862:3;21803:66;:::i;:::-;21796:73;;21878:93;21967:3;21878:93;:::i;:::-;21996:2;21991:3;21987:12;21980:19;;21640:365;;;:::o;22011:366::-;22153:3;22174:67;22238:2;22233:3;22174:67;:::i;:::-;22167:74;;22250:93;22339:3;22250:93;:::i;:::-;22368:2;22363:3;22359:12;22352:19;;22011:366;;;:::o;22383:398::-;22542:3;22563:83;22644:1;22639:3;22563:83;:::i;:::-;22556:90;;22655:93;22744:3;22655:93;:::i;:::-;22773:1;22768:3;22764:11;22757:18;;22383:398;;;:::o;22787:366::-;22929:3;22950:67;23014:2;23009:3;22950:67;:::i;:::-;22943:74;;23026:93;23115:3;23026:93;:::i;:::-;23144:2;23139:3;23135:12;23128:19;;22787:366;;;:::o;23159:::-;23301:3;23322:67;23386:2;23381:3;23322:67;:::i;:::-;23315:74;;23398:93;23487:3;23398:93;:::i;:::-;23516:2;23511:3;23507:12;23500:19;;23159:366;;;:::o;23603:864::-;23752:4;23747:3;23743:14;23839:4;23832:5;23828:16;23822:23;23858:63;23915:4;23910:3;23906:14;23892:12;23858:63;:::i;:::-;23767:164;24023:4;24016:5;24012:16;24006:23;24042:61;24097:4;24092:3;24088:14;24074:12;24042:61;:::i;:::-;23941:172;24197:4;24190:5;24186:16;24180:23;24216:57;24267:4;24262:3;24258:14;24244:12;24216:57;:::i;:::-;24123:160;24370:4;24363:5;24359:16;24353:23;24389:61;24444:4;24439:3;24435:14;24421:12;24389:61;:::i;:::-;24293:167;23721:746;23603:864;;:::o;24545:874::-;24704:4;24699:3;24695:14;24791:4;24784:5;24780:16;24774:23;24810:63;24867:4;24862:3;24858:14;24844:12;24810:63;:::i;:::-;24719:164;24975:4;24968:5;24964:16;24958:23;24994:61;25049:4;25044:3;25040:14;25026:12;24994:61;:::i;:::-;24893:172;25149:4;25142:5;25138:16;25132:23;25168:57;25219:4;25214:3;25210:14;25196:12;25168:57;:::i;:::-;25075:160;25322:4;25315:5;25311:16;25305:23;25341:61;25396:4;25391:3;25387:14;25373:12;25341:61;:::i;:::-;25245:167;24673:746;24545:874;;:::o;25425:105::-;25500:23;25517:5;25500:23;:::i;:::-;25495:3;25488:36;25425:105;;:::o;25536:108::-;25613:24;25631:5;25613:24;:::i;:::-;25608:3;25601:37;25536:108;;:::o;25650:118::-;25737:24;25755:5;25737:24;:::i;:::-;25732:3;25725:37;25650:118;;:::o;25774:105::-;25849:23;25866:5;25849:23;:::i;:::-;25844:3;25837:36;25774:105;;:::o;25885:275::-;26017:3;26039:95;26130:3;26121:6;26039:95;:::i;:::-;26032:102;;26151:3;26144:10;;25885:275;;;;:::o;26166:695::-;26444:3;26466:92;26554:3;26545:6;26466:92;:::i;:::-;26459:99;;26575:95;26666:3;26657:6;26575:95;:::i;:::-;26568:102;;26687:148;26831:3;26687:148;:::i;:::-;26680:155;;26852:3;26845:10;;26166:695;;;;;:::o;26867:379::-;27051:3;27073:147;27216:3;27073:147;:::i;:::-;27066:154;;27237:3;27230:10;;26867:379;;;:::o;27252:222::-;27345:4;27383:2;27372:9;27368:18;27360:26;;27396:71;27464:1;27453:9;27449:17;27440:6;27396:71;:::i;:::-;27252:222;;;;:::o;27480:442::-;27629:4;27667:2;27656:9;27652:18;27644:26;;27680:71;27748:1;27737:9;27733:17;27724:6;27680:71;:::i;:::-;27761:72;27829:2;27818:9;27814:18;27805:6;27761:72;:::i;:::-;27843;27911:2;27900:9;27896:18;27887:6;27843:72;:::i;:::-;27480:442;;;;;;:::o;27928:640::-;28123:4;28161:3;28150:9;28146:19;28138:27;;28175:71;28243:1;28232:9;28228:17;28219:6;28175:71;:::i;:::-;28256:72;28324:2;28313:9;28309:18;28300:6;28256:72;:::i;:::-;28338;28406:2;28395:9;28391:18;28382:6;28338:72;:::i;:::-;28457:9;28451:4;28447:20;28442:2;28431:9;28427:18;28420:48;28485:76;28556:4;28547:6;28485:76;:::i;:::-;28477:84;;27928:640;;;;;;;:::o;28574:497::-;28779:4;28817:2;28806:9;28802:18;28794:26;;28866:9;28860:4;28856:20;28852:1;28841:9;28837:17;28830:47;28894:170;29059:4;29050:6;28894:170;:::i;:::-;28886:178;;28574:497;;;;:::o;29077:373::-;29220:4;29258:2;29247:9;29243:18;29235:26;;29307:9;29301:4;29297:20;29293:1;29282:9;29278:17;29271:47;29335:108;29438:4;29429:6;29335:108;:::i;:::-;29327:116;;29077:373;;;;:::o;29456:210::-;29543:4;29581:2;29570:9;29566:18;29558:26;;29594:65;29656:1;29645:9;29641:17;29632:6;29594:65;:::i;:::-;29456:210;;;;:::o;29672:313::-;29785:4;29823:2;29812:9;29808:18;29800:26;;29872:9;29866:4;29862:20;29858:1;29847:9;29843:17;29836:47;29900:78;29973:4;29964:6;29900:78;:::i;:::-;29892:86;;29672:313;;;;:::o;29991:419::-;30157:4;30195:2;30184:9;30180:18;30172:26;;30244:9;30238:4;30234:20;30230:1;30219:9;30215:17;30208:47;30272:131;30398:4;30272:131;:::i;:::-;30264:139;;29991:419;;;:::o;30416:::-;30582:4;30620:2;30609:9;30605:18;30597:26;;30669:9;30663:4;30659:20;30655:1;30644:9;30640:17;30633:47;30697:131;30823:4;30697:131;:::i;:::-;30689:139;;30416:419;;;:::o;30841:::-;31007:4;31045:2;31034:9;31030:18;31022:26;;31094:9;31088:4;31084:20;31080:1;31069:9;31065:17;31058:47;31122:131;31248:4;31122:131;:::i;:::-;31114:139;;30841:419;;;:::o;31266:::-;31432:4;31470:2;31459:9;31455:18;31447:26;;31519:9;31513:4;31509:20;31505:1;31494:9;31490:17;31483:47;31547:131;31673:4;31547:131;:::i;:::-;31539:139;;31266:419;;;:::o;31691:::-;31857:4;31895:2;31884:9;31880:18;31872:26;;31944:9;31938:4;31934:20;31930:1;31919:9;31915:17;31908:47;31972:131;32098:4;31972:131;:::i;:::-;31964:139;;31691:419;;;:::o;32116:::-;32282:4;32320:2;32309:9;32305:18;32297:26;;32369:9;32363:4;32359:20;32355:1;32344:9;32340:17;32333:47;32397:131;32523:4;32397:131;:::i;:::-;32389:139;;32116:419;;;:::o;32541:::-;32707:4;32745:2;32734:9;32730:18;32722:26;;32794:9;32788:4;32784:20;32780:1;32769:9;32765:17;32758:47;32822:131;32948:4;32822:131;:::i;:::-;32814:139;;32541:419;;;:::o;32966:::-;33132:4;33170:2;33159:9;33155:18;33147:26;;33219:9;33213:4;33209:20;33205:1;33194:9;33190:17;33183:47;33247:131;33373:4;33247:131;:::i;:::-;33239:139;;32966:419;;;:::o;33391:::-;33557:4;33595:2;33584:9;33580:18;33572:26;;33644:9;33638:4;33634:20;33630:1;33619:9;33615:17;33608:47;33672:131;33798:4;33672:131;:::i;:::-;33664:139;;33391:419;;;:::o;33816:347::-;33971:4;34009:3;33998:9;33994:19;33986:27;;34023:133;34153:1;34142:9;34138:17;34129:6;34023:133;:::i;:::-;33816:347;;;;:::o;34169:222::-;34262:4;34300:2;34289:9;34285:18;34277:26;;34313:71;34381:1;34370:9;34366:17;34357:6;34313:71;:::i;:::-;34169:222;;;;:::o;34397:129::-;34431:6;34458:20;;:::i;:::-;34448:30;;34487:33;34515:4;34507:6;34487:33;:::i;:::-;34397:129;;;:::o;34532:75::-;34565:6;34598:2;34592:9;34582:19;;34532:75;:::o;34613:311::-;34690:4;34780:18;34772:6;34769:30;34766:56;;;34802:18;;:::i;:::-;34766:56;34852:4;34844:6;34840:17;34832:25;;34912:4;34906;34902:15;34894:23;;34613:311;;;:::o;34930:307::-;34991:4;35081:18;35073:6;35070:30;35067:56;;;35103:18;;:::i;:::-;35067:56;35141:29;35163:6;35141:29;:::i;:::-;35133:37;;35225:4;35219;35215:15;35207:23;;34930:307;;;:::o;35243:308::-;35305:4;35395:18;35387:6;35384:30;35381:56;;;35417:18;;:::i;:::-;35381:56;35455:29;35477:6;35455:29;:::i;:::-;35447:37;;35539:4;35533;35529:15;35521:23;;35243:308;;;:::o;35557:163::-;35655:4;35678:3;35670:11;;35708:4;35703:3;35699:14;35691:22;;35557:163;;;:::o;35726:132::-;35793:4;35816:3;35808:11;;35846:4;35841:3;35837:14;35829:22;;35726:132;;;:::o;35864:141::-;35913:4;35936:3;35928:11;;35959:3;35956:1;35949:14;35993:4;35990:1;35980:18;35972:26;;35864:141;;;:::o;36011:145::-;36109:6;36143:5;36137:12;36127:22;;36011:145;;;:::o;36162:114::-;36229:6;36263:5;36257:12;36247:22;;36162:114;;;:::o;36282:98::-;36333:6;36367:5;36361:12;36351:22;;36282:98;;;:::o;36386:99::-;36438:6;36472:5;36466:12;36456:22;;36386:99;;;:::o;36491:144::-;36592:4;36624;36619:3;36615:14;36607:22;;36491:144;;;:::o;36641:113::-;36711:4;36743;36738:3;36734:14;36726:22;;36641:113;;;:::o;36760:215::-;36890:11;36924:6;36919:3;36912:19;36964:4;36959:3;36955:14;36940:29;;36760:215;;;;:::o;36981:184::-;37080:11;37114:6;37109:3;37102:19;37154:4;37149:3;37145:14;37130:29;;36981:184;;;;:::o;37171:168::-;37254:11;37288:6;37283:3;37276:19;37328:4;37323:3;37319:14;37304:29;;37171:168;;;;:::o;37345:147::-;37446:11;37483:3;37468:18;;37345:147;;;;:::o;37498:169::-;37582:11;37616:6;37611:3;37604:19;37656:4;37651:3;37647:14;37632:29;;37498:169;;;;:::o;37673:148::-;37775:11;37812:3;37797:18;;37673:148;;;;:::o;37827:305::-;37867:3;37886:20;37904:1;37886:20;:::i;:::-;37881:25;;37920:20;37938:1;37920:20;:::i;:::-;37915:25;;38074:1;38006:66;38002:74;37999:1;37996:81;37993:107;;;38080:18;;:::i;:::-;37993:107;38124:1;38121;38117:9;38110:16;;37827:305;;;;:::o;38138:185::-;38178:1;38195:20;38213:1;38195:20;:::i;:::-;38190:25;;38229:20;38247:1;38229:20;:::i;:::-;38224:25;;38268:1;38258:35;;38273:18;;:::i;:::-;38258:35;38315:1;38312;38308:9;38303:14;;38138:185;;;;:::o;38329:191::-;38369:4;38389:20;38407:1;38389:20;:::i;:::-;38384:25;;38423:20;38441:1;38423:20;:::i;:::-;38418:25;;38462:1;38459;38456:8;38453:34;;;38467:18;;:::i;:::-;38453:34;38512:1;38509;38505:9;38497:17;;38329:191;;;;:::o;38526:96::-;38563:7;38592:24;38610:5;38592:24;:::i;:::-;38581:35;;38526:96;;;:::o;38628:90::-;38662:7;38705:5;38698:13;38691:21;38680:32;;38628:90;;;:::o;38724:77::-;38761:7;38790:5;38779:16;;38724:77;;;:::o;38807:149::-;38843:7;38883:66;38876:5;38872:78;38861:89;;38807:149;;;:::o;38962:126::-;38999:7;39039:42;39032:5;39028:54;39017:65;;38962:126;;;:::o;39094:91::-;39130:7;39170:8;39163:5;39159:20;39148:31;;39094:91;;;:::o;39191:77::-;39228:7;39257:5;39246:16;;39191:77;;;:::o;39274:101::-;39310:7;39350:18;39343:5;39339:30;39328:41;;39274:101;;;:::o;39381:154::-;39465:6;39460:3;39455;39442:30;39527:1;39518:6;39513:3;39509:16;39502:27;39381:154;;;:::o;39541:307::-;39609:1;39619:113;39633:6;39630:1;39627:13;39619:113;;;39718:1;39713:3;39709:11;39703:18;39699:1;39694:3;39690:11;39683:39;39655:2;39652:1;39648:10;39643:15;;39619:113;;;39750:6;39747:1;39744:13;39741:101;;;39830:1;39821:6;39816:3;39812:16;39805:27;39741:101;39590:258;39541:307;;;:::o;39854:320::-;39898:6;39935:1;39929:4;39925:12;39915:22;;39982:1;39976:4;39972:12;40003:18;39993:81;;40059:4;40051:6;40047:17;40037:27;;39993:81;40121:2;40113:6;40110:14;40090:18;40087:38;40084:84;;;40140:18;;:::i;:::-;40084:84;39905:269;39854:320;;;:::o;40180:281::-;40263:27;40285:4;40263:27;:::i;:::-;40255:6;40251:40;40393:6;40381:10;40378:22;40357:18;40345:10;40342:34;40339:62;40336:88;;;40404:18;;:::i;:::-;40336:88;40444:10;40440:2;40433:22;40223:238;40180:281;;:::o;40467:233::-;40506:3;40529:24;40547:5;40529:24;:::i;:::-;40520:33;;40575:66;40568:5;40565:77;40562:103;;;40645:18;;:::i;:::-;40562:103;40692:1;40685:5;40681:13;40674:20;;40467:233;;;:::o;40706:176::-;40738:1;40755:20;40773:1;40755:20;:::i;:::-;40750:25;;40789:20;40807:1;40789:20;:::i;:::-;40784:25;;40828:1;40818:35;;40833:18;;:::i;:::-;40818:35;40874:1;40871;40867:9;40862:14;;40706:176;;;;:::o;40888:180::-;40936:77;40933:1;40926:88;41033:4;41030:1;41023:15;41057:4;41054:1;41047:15;41074:180;41122:77;41119:1;41112:88;41219:4;41216:1;41209:15;41243:4;41240:1;41233:15;41260:180;41308:77;41305:1;41298:88;41405:4;41402:1;41395:15;41429:4;41426:1;41419:15;41446:180;41494:77;41491:1;41484:88;41591:4;41588:1;41581:15;41615:4;41612:1;41605:15;41632:180;41680:77;41677:1;41670:88;41777:4;41774:1;41767:15;41801:4;41798:1;41791:15;41818:117;41927:1;41924;41917:12;41941:117;42050:1;42047;42040:12;42064:117;42173:1;42170;42163:12;42187:117;42296:1;42293;42286:12;42310:117;42419:1;42416;42409:12;42433:117;42542:1;42539;42532:12;42556:102;42597:6;42648:2;42644:7;42639:2;42632:5;42628:14;42624:28;42614:38;;42556:102;;;:::o;42664:225::-;42804:34;42800:1;42792:6;42788:14;42781:58;42873:8;42868:2;42860:6;42856:15;42849:33;42664:225;:::o;42895:220::-;43035:34;43031:1;43023:6;43019:14;43012:58;43104:3;43099:2;43091:6;43087:15;43080:28;42895:220;:::o;43121:164::-;43261:16;43257:1;43249:6;43245:14;43238:40;43121:164;:::o;43291:180::-;43431:32;43427:1;43419:6;43415:14;43408:56;43291:180;:::o;43477:155::-;43617:7;43613:1;43605:6;43601:14;43594:31;43477:155;:::o;43638:175::-;43778:27;43774:1;43766:6;43762:14;43755:51;43638:175;:::o;43819:158::-;43959:10;43955:1;43947:6;43943:14;43936:34;43819:158;:::o;43983:182::-;44123:34;44119:1;44111:6;44107:14;44100:58;43983:182;:::o;44171:114::-;;:::o;44291:166::-;44431:18;44427:1;44419:6;44415:14;44408:42;44291:166;:::o;44463:226::-;44603:34;44599:1;44591:6;44587:14;44580:58;44672:9;44667:2;44659:6;44655:15;44648:34;44463:226;:::o;44695:122::-;44768:24;44786:5;44768:24;:::i;:::-;44761:5;44758:35;44748:63;;44807:1;44804;44797:12;44748:63;44695:122;:::o;44823:116::-;44893:21;44908:5;44893:21;:::i;:::-;44886:5;44883:32;44873:60;;44929:1;44926;44919:12;44873:60;44823:116;:::o;44945:122::-;45018:24;45036:5;45018:24;:::i;:::-;45011:5;45008:35;44998:63;;45057:1;45054;45047:12;44998:63;44945:122;:::o;45073:120::-;45145:23;45162:5;45145:23;:::i;:::-;45138:5;45135:34;45125:62;;45183:1;45180;45173:12;45125:62;45073:120;:::o;45199:122::-;45272:24;45290:5;45272:24;:::i;:::-;45265:5;45262:35;45252:63;;45311:1;45308;45301:12;45252:63;45199:122;:::o

Swarm Source

ipfs://66e7c088058856c0dbdac17c6a93689afbee288a0d8c9c7a9d402863d382c656
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.