ETH Price: $3,468.47 (+0.30%)
Gas: 13 Gwei

Token

Shade NFT Gen 1 (Shade)
 

Overview

Max Total Supply

7,777 Shade

Holders

2,036

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 Shade
0x7333a0c737271bc3fad230ab4ae722e99ef9a279
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:
ShadeNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-25
*/

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @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: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// 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/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/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/finance/PaymentSplitter.sol


// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;




/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(account, totalReceived, released(account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        uint256 payment = _pendingPayment(account, totalReceived, released(token, account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

    // The 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 tokenId of the next token to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [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 => address) private _tokenApprovals;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @dev 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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _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 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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` 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 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _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 {
        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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

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

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(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++;
        }
    }

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

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        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 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;
    }

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

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

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

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

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

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

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

// File: contracts/Shade.sol



pragma solidity >=0.8.7;






contract ShadeNFT is ERC721A, Ownable, PaymentSplitter {
    //@dev Attributes for NFT configuration
    string internal baseURI;
    uint256 public cost = 0.005 ether;
    uint256 public maxSupply = 7777;
    uint public MAX_FREE_SUPPLY = 1777;
    uint public freeMints = 0;
    uint256 public MAX_FREE_PER_TX = 1;
    uint256 public MAX_MINT_PER_TX = 10;
    mapping(uint256 => string) private _tokenURIs;
    bool public isWhitelist = true;
    bytes32 public merkleRoot;
    // uint public whitelistStartTimestamp;

    // @dev inner attributes of the contract
    constructor(
        address[] memory _payees,
        uint256[] memory _amount,
        string memory _uri
    )
     ERC721A("Shade NFT Gen 1", "Shade") PaymentSplitter(_payees, _amount){
         baseURI = _uri;
    }


    // function setWhitelistStartTimestamp(uint _timestamp) external onlyOwner {
    //     whitelistStartTimestamp = _timestamp;
    // }

// Merkle tree whitelisting
    function setWhitelistActive(bool _whitelistActive) external onlyOwner {
        isWhitelist = _whitelistActive;
    }

    function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner {
        merkleRoot = _whitelistMerkleRoot;
    }

    function _leaf(address account) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(account));
    }

    function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) {
        return MerkleProof.verify(proof, merkleRoot, leaf);
    }

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

    /**
     * @dev get base URI for NFT metadata
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function mint(uint256 amount) external payable {
        require(!isWhitelist, "Whitelist ongoing.");
        (uint costFull, bool freeMint) = getCost(amount, msg.sender);
        require(msg.value == costFull, "Invalid ETH amount");
        if(freeMint)
            freeMints++;
        _mint(amount);
    }

    function mintWithSignature(uint256 amount, bytes32[] calldata _proof) external payable {
        // require(block.timestamp >= whitelistStartTimestamp, "Sale not started");
        require(isWhitelist, "Whitelist has ended");
        if(isWhitelist){
            require(_verify(_leaf(msg.sender), _proof), "Invalid Merkle Tree proof.");
        }

        (uint costFull, bool freeMint) = getCost(amount, msg.sender);
        require(msg.value == costFull, "Invalid ETH amount");
        if(freeMint)
            freeMints++;
        _mint(amount);
    }

    function _mint(uint256 amount) internal{
        // require(block.timestamp > whitelistStartTimestamp + 1800, "Public sale not started");
        require(totalSupply() + amount <= maxSupply, "Exceeds max supply.");
        require(_numberMinted(msg.sender) + amount <= MAX_MINT_PER_TX, "Exceeds max amount");
        _safeMint(msg.sender, amount);
    }
    /**
     * @dev change cost of NFT
     * @param _newCost new cost of each edition
     */
    function setCost(uint256 _newCost) external onlyOwner {
        cost = _newCost;
    }

    /**
     * @dev change metadata uri
     * @param _newBaseURI new URI for metadata
     */
    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    /**
     * @dev Get token URI
     * @param tokenId ID of the token to retrieve
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "URI query for nonexistent token"
        );

            if (bytes(_tokenURIs[tokenId]).length == 0) {
                string memory currentBaseURI = _baseURI();
                return
                    bytes(currentBaseURI).length > 0
                        ? string(
                            abi.encodePacked(
                                currentBaseURI,
                                Strings.toString(tokenId),
                                ".json"
                            )
                        )
                        : "";
            } else return _tokenURIs[tokenId];
    }

    function getCost(uint amount, address _wallet) public view returns(uint, bool) {
        if(_numberMinted(_wallet) == 0 && freeMints < MAX_FREE_SUPPLY)
            return (cost * (amount - 1 ), true);
        else return (cost *  amount, false);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"_payees","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"},{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_wallet","type":"address"}],"name":"getCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bool","name":"","type":"bool"}],"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":"isWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintWithSignature","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_whitelistActive","type":"bool"}],"name":"setWhitelistActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526611c37937e08000601155611e616012556106f160135560006014556001601555600a6016556001601860006101000a81548160ff0219169083151502179055503480156200005257600080fd5b50604051620059863803806200598683398181016040528101906200007891906200083b565b82826040518060400160405280600f81526020017f5368616465204e46542047656e203100000000000000000000000000000000008152506040518060400160405280600581526020017f53686164650000000000000000000000000000000000000000000000000000008152508160029080519060200190620000fe92919062000583565b5080600390805190602001906200011792919062000583565b50620001286200027260201b60201c565b600081905550505062000150620001446200027b60201b60201c565b6200028360201b60201c565b805182511462000197576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200018e9062000a28565b60405180910390fd5b6000825111620001de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001d59062000a6c565b60405180910390fd5b60005b82518110156200024d576200023783828151811062000205576200020462000d67565b5b602002602001015183838151811062000223576200022262000d67565b5b60200260200101516200034960201b60201c565b8080620002449062000cbb565b915050620001e1565b50505080601090805190602001906200026892919062000583565b5050505062000f62565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b39062000a06565b60405180910390fd5b6000811162000402576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003f99062000a8e565b60405180910390fd5b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541462000487576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200047e9062000a4a565b60405180910390fd5b600d829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806009546200053e919062000b7e565b6009819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac828260405162000577929190620009d9565b60405180910390a15050565b828054620005919062000c4f565b90600052602060002090601f016020900481019282620005b5576000855562000601565b82601f10620005d057805160ff191683800117855562000601565b8280016001018555821562000601579182015b8281111562000600578251825591602001919060010190620005e3565b5b50905062000610919062000614565b5090565b5b808211156200062f57600081600090555060010162000615565b5090565b60006200064a620006448462000ad9565b62000ab0565b9050808382526020820190508285602086028201111562000670576200066f62000dca565b5b60005b85811015620006a4578162000689888262000774565b84526020840193506020830192505060018101905062000673565b5050509392505050565b6000620006c5620006bf8462000b08565b62000ab0565b90508083825260208201905082856020860282011115620006eb57620006ea62000dca565b5b60005b858110156200071f578162000704888262000824565b845260208401935060208301925050600181019050620006ee565b5050509392505050565b6000620007406200073a8462000b37565b62000ab0565b9050828152602081018484840111156200075f576200075e62000dcf565b5b6200076c84828562000c19565b509392505050565b600081519050620007858162000f2e565b92915050565b600082601f830112620007a357620007a262000dc5565b5b8151620007b584826020860162000633565b91505092915050565b600082601f830112620007d657620007d562000dc5565b5b8151620007e8848260208601620006ae565b91505092915050565b600082601f83011262000809576200080862000dc5565b5b81516200081b84826020860162000729565b91505092915050565b600081519050620008358162000f48565b92915050565b60008060006060848603121562000857576200085662000dd9565b5b600084015167ffffffffffffffff81111562000878576200087762000dd4565b5b62000886868287016200078b565b935050602084015167ffffffffffffffff811115620008aa57620008a962000dd4565b5b620008b886828701620007be565b925050604084015167ffffffffffffffff811115620008dc57620008db62000dd4565b5b620008ea86828701620007f1565b9150509250925092565b620008ff8162000bdb565b82525050565b600062000914602c8362000b6d565b9150620009218262000def565b604082019050919050565b60006200093b60328362000b6d565b9150620009488262000e3e565b604082019050919050565b600062000962602b8362000b6d565b91506200096f8262000e8d565b604082019050919050565b600062000989601a8362000b6d565b9150620009968262000edc565b602082019050919050565b6000620009b0601d8362000b6d565b9150620009bd8262000f05565b602082019050919050565b620009d38162000c0f565b82525050565b6000604082019050620009f06000830185620008f4565b620009ff6020830184620009c8565b9392505050565b6000602082019050818103600083015262000a218162000905565b9050919050565b6000602082019050818103600083015262000a43816200092c565b9050919050565b6000602082019050818103600083015262000a658162000953565b9050919050565b6000602082019050818103600083015262000a87816200097a565b9050919050565b6000602082019050818103600083015262000aa981620009a1565b9050919050565b600062000abc62000acf565b905062000aca828262000c85565b919050565b6000604051905090565b600067ffffffffffffffff82111562000af75762000af662000d96565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562000b265762000b2562000d96565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562000b555762000b5462000d96565b5b62000b608262000dde565b9050602081019050919050565b600082825260208201905092915050565b600062000b8b8262000c0f565b915062000b988362000c0f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000bd05762000bcf62000d09565b5b828201905092915050565b600062000be88262000bef565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000c3957808201518184015260208101905062000c1c565b8381111562000c49576000848401525b50505050565b6000600282049050600182168062000c6857607f821691505b6020821081141562000c7f5762000c7e62000d38565b5b50919050565b62000c908262000dde565b810181811067ffffffffffffffff8211171562000cb25762000cb162000d96565b5b80604052505050565b600062000cc88262000c0f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000cfe5762000cfd62000d09565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b62000f398162000bdb565b811462000f4557600080fd5b50565b62000f538162000c0f565b811462000f5f57600080fd5b50565b614a148062000f726000396000f3fe60806040526004361061024a5760003560e01c8063715018a611610139578063b88d4fde116100b6578063ce7c2ac21161007a578063ce7c2ac2146108d2578063d5abeb011461090f578063d79779b21461093a578063e33b7de314610977578063e985e9c5146109a2578063f2fde38b146109df57610291565b8063b88d4fde146107ef578063bd32fb6614610818578063c3b754dc14610841578063c87b56dd1461086a578063ccb22f09146108a757610291565b806395d89b41116100fd57806395d89b41146107045780639852595c1461072f5780639cee012c1461076c578063a0712d68146107aa578063a22cb465146107c657610291565b8063715018a61461062f57806380b17335146106465780638b83209b146106715780638da5cb5b146106ae5780638ecad721146106d957610291565b80633a98ef39116101c757806348b750441161018b57806348b750441461054757806355f804b3146105705780636352211e146105995780636bf7593a146105d657806370a08231146105f257610291565b80633a98ef3914610462578063406072a91461048d5780634146ed0a146104ca57806342842e0e146104f557806344a0d68a1461051e57610291565b806313faede61161020e57806313faede61461038f57806318160ddd146103ba57806319165587146103e557806323b872dd1461040e5780632eb4a7ab1461043757610291565b806301ffc9a71461029657806302ddb65b146102d357806306fdde03146102fe578063081812fc14610329578063095ea7b31461036657610291565b36610291577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610278610a08565b34604051610287929190613dac565b60405180910390a1005b600080fd5b3480156102a257600080fd5b506102bd60048036038101906102b891906136f0565b610a10565b6040516102ca9190613dd5565b60405180910390f35b3480156102df57600080fd5b506102e8610aa2565b6040516102f5919061402d565b60405180910390f35b34801561030a57600080fd5b50610313610aa8565b6040516103209190613e0b565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190613800565b610b3a565b60405161035d9190613d1c565b60405180910390f35b34801561037257600080fd5b5061038d60048036038101906103889190613629565b610bb6565b005b34801561039b57600080fd5b506103a4610cf7565b6040516103b1919061402d565b60405180910390f35b3480156103c657600080fd5b506103cf610cfd565b6040516103dc919061402d565b60405180910390f35b3480156103f157600080fd5b5061040c600480360381019061040791906134a6565b610d14565b005b34801561041a57600080fd5b5061043560048036038101906104309190613513565b610ebf565b005b34801561044357600080fd5b5061044c6111e4565b6040516104599190613df0565b60405180910390f35b34801561046e57600080fd5b506104776111ea565b604051610484919061402d565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af9190613777565b6111f4565b6040516104c1919061402d565b60405180910390f35b3480156104d657600080fd5b506104df61127b565b6040516104ec9190613dd5565b60405180910390f35b34801561050157600080fd5b5061051c60048036038101906105179190613513565b61128e565b005b34801561052a57600080fd5b5061054560048036038101906105409190613800565b6112ae565b005b34801561055357600080fd5b5061056e60048036038101906105699190613777565b611334565b005b34801561057c57600080fd5b50610597600480360381019061059291906137b7565b6115fc565b005b3480156105a557600080fd5b506105c060048036038101906105bb9190613800565b611692565b6040516105cd9190613d1c565b60405180910390f35b6105f060048036038101906105eb919061389a565b6116a4565b005b3480156105fe57600080fd5b5061061960048036038101906106149190613479565b61181d565b604051610626919061402d565b60405180910390f35b34801561063b57600080fd5b506106446118d6565b005b34801561065257600080fd5b5061065b61195e565b604051610668919061402d565b60405180910390f35b34801561067d57600080fd5b5061069860048036038101906106939190613800565b611964565b6040516106a59190613d1c565b60405180910390f35b3480156106ba57600080fd5b506106c36119ac565b6040516106d09190613d1c565b60405180910390f35b3480156106e557600080fd5b506106ee6119d6565b6040516106fb919061402d565b60405180910390f35b34801561071057600080fd5b506107196119dc565b6040516107269190613e0b565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190613479565b611a6e565b604051610763919061402d565b60405180910390f35b34801561077857600080fd5b50610793600480360381019061078e919061385a565b611ab7565b6040516107a1929190614048565b60405180910390f35b6107c460048036038101906107bf9190613800565b611b1b565b005b3480156107d257600080fd5b506107ed60048036038101906107e891906135e9565b611beb565b005b3480156107fb57600080fd5b5061081660048036038101906108119190613566565b611d63565b005b34801561082457600080fd5b5061083f600480360381019061083a91906136c3565b611dd6565b005b34801561084d57600080fd5b5061086860048036038101906108639190613669565b611e5c565b005b34801561087657600080fd5b50610891600480360381019061088c9190613800565b611ef5565b60405161089e9190613e0b565b60405180910390f35b3480156108b357600080fd5b506108bc612068565b6040516108c9919061402d565b60405180910390f35b3480156108de57600080fd5b506108f960048036038101906108f49190613479565b61206e565b604051610906919061402d565b60405180910390f35b34801561091b57600080fd5b506109246120b7565b604051610931919061402d565b60405180910390f35b34801561094657600080fd5b50610961600480360381019061095c919061374a565b6120bd565b60405161096e919061402d565b60405180910390f35b34801561098357600080fd5b5061098c612106565b604051610999919061402d565b60405180910390f35b3480156109ae57600080fd5b506109c960048036038101906109c491906134d3565b612110565b6040516109d69190613dd5565b60405180910390f35b3480156109eb57600080fd5b50610a066004803603810190610a019190613479565b6121a4565b005b600033905090565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a9b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60135481565b606060028054610ab790614375565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae390614375565b8015610b305780601f10610b0557610100808354040283529160200191610b30565b820191906000526020600020905b815481529060010190602001808311610b1357829003601f168201915b5050505050905090565b6000610b458261229c565b610b7b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bc182611692565b90508073ffffffffffffffffffffffffffffffffffffffff16610be26122fb565b73ffffffffffffffffffffffffffffffffffffffff1614610c4557610c0e81610c096122fb565b612110565b610c44576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60115481565b6000610d07612303565b6001546000540303905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d90613e8d565b60405180910390fd5b6000610da0612106565b47610dab9190614146565b90506000610dc28383610dbd86611a6e565b61230c565b90506000811415610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff90613f0d565b60405180910390fd5b80600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e579190614146565b9250508190555080600a6000828254610e709190614146565b92505081905550610e81838261237a565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610eb2929190613d37565b60405180910390a1505050565b6000610eca8261246e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f31576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610f3d8461253c565b91509150610f538187610f4e6122fb565b61255e565b610f9f57610f6886610f636122fb565b612110565b610f9e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611006576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61101386868660016125a2565b801561101e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506110ec856110c88888876125a8565b7c0200000000000000000000000000000000000000000000000000000000176125d0565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611174576000600185019050600060046000838152602001908152602001600020541415611172576000548114611171578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111dc86868660016125fb565b505050505050565b60195481565b6000600954905090565b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601860009054906101000a900460ff1681565b6112a983838360405180602001604052806000815250611d63565b505050565b6112b6610a08565b73ffffffffffffffffffffffffffffffffffffffff166112d46119ac565b73ffffffffffffffffffffffffffffffffffffffff161461132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190613f8d565b60405180910390fd5b8060118190555050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad90613e8d565b60405180910390fd5b60006113c1836120bd565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016113fa9190613d1c565b60206040518083038186803b15801561141257600080fd5b505afa158015611426573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144a919061382d565b6114549190614146565b9050600061146c838361146787876111f4565b61230c565b905060008114156114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a990613f0d565b60405180910390fd5b80600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461153e9190614146565b9250508190555080600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115949190614146565b925050819055506115a6848483612601565b8373ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a84836040516115ee929190613dac565b60405180910390a250505050565b611604610a08565b73ffffffffffffffffffffffffffffffffffffffff166116226119ac565b73ffffffffffffffffffffffffffffffffffffffff1614611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90613f8d565b60405180910390fd5b806010908051906020019061168e9291906131ce565b5050565b600061169d8261246e565b9050919050565b601860009054906101000a900460ff166116f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ea90613f4d565b60405180910390fd5b601860009054906101000a900460ff161561179b5761175b61171433612687565b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506126b7565b61179a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179190613e4d565b60405180910390fd5b5b6000806117a88533611ab7565b915091508134146117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e590613f6d565b60405180910390fd5b801561180d5760146000815480929190611807906143d8565b91905055505b611816856126ce565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611885576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6118de610a08565b73ffffffffffffffffffffffffffffffffffffffff166118fc6119ac565b73ffffffffffffffffffffffffffffffffffffffff1614611952576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194990613f8d565b60405180910390fd5b61195c600061278a565b565b60145481565b6000600d828154811061197a57611979614503565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60165481565b6060600380546119eb90614375565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1790614375565b8015611a645780601f10611a3957610100808354040283529160200191611a64565b820191906000526020600020905b815481529060010190602001808311611a4757829003601f168201915b5050505050905090565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806000611ac584612850565b148015611ad55750601354601454105b15611aff57600184611ae79190614227565b601154611af491906141cd565b600191509150611b14565b83601154611b0d91906141cd565b6000915091505b9250929050565b601860009054906101000a900460ff1615611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290613fed565b60405180910390fd5b600080611b788333611ab7565b91509150813414611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb590613f6d565b60405180910390fd5b8015611bdd5760146000815480929190611bd7906143d8565b91905055505b611be6836126ce565b505050565b611bf36122fb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c58576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611c656122fb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d126122fb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d579190613dd5565b60405180910390a35050565b611d6e848484610ebf565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611dd057611d99848484846128a7565b611dcf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611dde610a08565b73ffffffffffffffffffffffffffffffffffffffff16611dfc6119ac565b73ffffffffffffffffffffffffffffffffffffffff1614611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4990613f8d565b60405180910390fd5b8060198190555050565b611e64610a08565b73ffffffffffffffffffffffffffffffffffffffff16611e826119ac565b73ffffffffffffffffffffffffffffffffffffffff1614611ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecf90613f8d565b60405180910390fd5b80601860006101000a81548160ff02191690831515021790555050565b6060611f008261229c565b611f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3690613e2d565b60405180910390fd5b6000601760008481526020019081526020016000208054611f5f90614375565b90501415611fc4576000611f71612a07565b90506000815111611f915760405180602001604052806000815250611fbc565b80611f9b84612a99565b604051602001611fac929190613cd8565b6040516020818303038152906040525b915050612063565b601760008381526020019081526020016000208054611fe290614375565b80601f016020809104026020016040519081016040528092919081815260200182805461200e90614375565b801561205b5780601f106120305761010080835404028352916020019161205b565b820191906000526020600020905b81548152906001019060200180831161203e57829003601f168201915b505050505090505b919050565b60155481565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60125481565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600a54905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121ac610a08565b73ffffffffffffffffffffffffffffffffffffffff166121ca6119ac565b73ffffffffffffffffffffffffffffffffffffffff1614612220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221790613f8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228790613e6d565b60405180910390fd5b6122998161278a565b50565b6000816122a7612303565b111580156122b6575060005482105b80156122f4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600081600954600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548561235d91906141cd565b612367919061419c565b6123719190614227565b90509392505050565b804710156123bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b490613ecd565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516123e390613d07565b60006040518083038185875af1925050503d8060008114612420576040519150601f19603f3d011682016040523d82523d6000602084013e612425565b606091505b5050905080612469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246090613ead565b60405180910390fd5b505050565b6000808290508061247d612303565b11612505576000548110156125045760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612502575b60008114156124f85760046000836001900393508381526020019081526020016000205490506124cd565b8092505050612537565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86125bf868684612bfa565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6126828363a9059cbb60e01b8484604051602401612620929190613dac565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612c03565b505050565b60008160405160200161269a9190613ca6565b604051602081830303815290604052805190602001209050919050565b60006126c68260195485612cca565b905092915050565b601254816126da610cfd565b6126e49190614146565b1115612725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271c90613fad565b60405180910390fd5b6016548161273233612850565b61273c9190614146565b111561277d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277490613f2d565b60405180910390fd5b6127873382612ce1565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128cd6122fb565b8786866040518563ffffffff1660e01b81526004016128ef9493929190613d60565b602060405180830381600087803b15801561290957600080fd5b505af192505050801561293a57506040513d601f19601f82011682018060405250810190612937919061371d565b60015b6129b4573d806000811461296a576040519150601f19603f3d011682016040523d82523d6000602084013e61296f565b606091505b506000815114156129ac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060108054612a1690614375565b80601f0160208091040260200160405190810160405280929190818152602001828054612a4290614375565b8015612a8f5780601f10612a6457610100808354040283529160200191612a8f565b820191906000526020600020905b815481529060010190602001808311612a7257829003601f168201915b5050505050905090565b60606000821415612ae1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bf5565b600082905060005b60008214612b13578080612afc906143d8565b915050600a82612b0c919061419c565b9150612ae9565b60008167ffffffffffffffff811115612b2f57612b2e614532565b5b6040519080825280601f01601f191660200182016040528015612b615781602001600182028036833780820191505090505b5090505b60008514612bee57600182612b7a9190614227565b9150600a85612b899190614445565b6030612b959190614146565b60f81b818381518110612bab57612baa614503565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612be7919061419c565b9450612b65565b8093505050505b919050565b60009392505050565b6000612c65826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612cff9092919063ffffffff16565b9050600081511115612cc55780806020019051810190612c859190613696565b612cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbb9061400d565b60405180910390fd5b5b505050565b600082612cd78584612d17565b1490509392505050565b612cfb828260405180602001604052806000815250612d6d565b5050565b6060612d0e8484600085612e0a565b90509392505050565b60008082905060005b8451811015612d6257612d4d82868381518110612d4057612d3f614503565b5b6020026020010151612f1e565b91508080612d5a906143d8565b915050612d20565b508091505092915050565b612d778383612f49565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612e0557600080549050600083820390505b612db760008683806001019450866128a7565b612ded576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612da4578160005414612e0257600080fd5b50505b505050565b606082471015612e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4690613eed565b60405180910390fd5b612e588561311d565b612e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8e90613fcd565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612ec09190613cc1565b60006040518083038185875af1925050503d8060008114612efd576040519150601f19603f3d011682016040523d82523d6000602084013e612f02565b606091505b5091509150612f12828286613140565b92505050949350505050565b6000818310612f3657612f3182846131a7565b612f41565b612f4083836131a7565b5b905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fb6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612ff1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ffe60008483856125a2565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506130758361306660008660006125a8565b61306f856131be565b176125d0565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106130995780600081905550505061311860008483856125fb565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608315613150578290506131a0565b6000835111156131635782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131979190613e0b565b60405180910390fd5b9392505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b8280546131da90614375565b90600052602060002090601f0160209004810192826131fc5760008555613243565b82601f1061321557805160ff1916838001178555613243565b82800160010185558215613243579182015b82811115613242578251825591602001919060010190613227565b5b5090506132509190613254565b5090565b5b8082111561326d576000816000905550600101613255565b5090565b600061328461327f84614096565b614071565b9050828152602081018484840111156132a05761329f614570565b5b6132ab848285614333565b509392505050565b60006132c66132c1846140c7565b614071565b9050828152602081018484840111156132e2576132e1614570565b5b6132ed848285614333565b509392505050565b6000813590506133048161493d565b92915050565b60008135905061331981614954565b92915050565b60008083601f84011261333557613334614566565b5b8235905067ffffffffffffffff81111561335257613351614561565b5b60208301915083602082028301111561336e5761336d61456b565b5b9250929050565b6000813590506133848161496b565b92915050565b6000815190506133998161496b565b92915050565b6000813590506133ae81614982565b92915050565b6000813590506133c381614999565b92915050565b6000815190506133d881614999565b92915050565b600082601f8301126133f3576133f2614566565b5b8135613403848260208601613271565b91505092915050565b60008135905061341b816149b0565b92915050565b600082601f83011261343657613435614566565b5b81356134468482602086016132b3565b91505092915050565b60008135905061345e816149c7565b92915050565b600081519050613473816149c7565b92915050565b60006020828403121561348f5761348e61457a565b5b600061349d848285016132f5565b91505092915050565b6000602082840312156134bc576134bb61457a565b5b60006134ca8482850161330a565b91505092915050565b600080604083850312156134ea576134e961457a565b5b60006134f8858286016132f5565b9250506020613509858286016132f5565b9150509250929050565b60008060006060848603121561352c5761352b61457a565b5b600061353a868287016132f5565b935050602061354b868287016132f5565b925050604061355c8682870161344f565b9150509250925092565b600080600080608085870312156135805761357f61457a565b5b600061358e878288016132f5565b945050602061359f878288016132f5565b93505060406135b08782880161344f565b925050606085013567ffffffffffffffff8111156135d1576135d0614575565b5b6135dd878288016133de565b91505092959194509250565b60008060408385031215613600576135ff61457a565b5b600061360e858286016132f5565b925050602061361f85828601613375565b9150509250929050565b600080604083850312156136405761363f61457a565b5b600061364e858286016132f5565b925050602061365f8582860161344f565b9150509250929050565b60006020828403121561367f5761367e61457a565b5b600061368d84828501613375565b91505092915050565b6000602082840312156136ac576136ab61457a565b5b60006136ba8482850161338a565b91505092915050565b6000602082840312156136d9576136d861457a565b5b60006136e78482850161339f565b91505092915050565b6000602082840312156137065761370561457a565b5b6000613714848285016133b4565b91505092915050565b6000602082840312156137335761373261457a565b5b6000613741848285016133c9565b91505092915050565b6000602082840312156137605761375f61457a565b5b600061376e8482850161340c565b91505092915050565b6000806040838503121561378e5761378d61457a565b5b600061379c8582860161340c565b92505060206137ad858286016132f5565b9150509250929050565b6000602082840312156137cd576137cc61457a565b5b600082013567ffffffffffffffff8111156137eb576137ea614575565b5b6137f784828501613421565b91505092915050565b6000602082840312156138165761381561457a565b5b60006138248482850161344f565b91505092915050565b6000602082840312156138435761384261457a565b5b600061385184828501613464565b91505092915050565b600080604083850312156138715761387061457a565b5b600061387f8582860161344f565b9250506020613890858286016132f5565b9150509250929050565b6000806000604084860312156138b3576138b261457a565b5b60006138c18682870161344f565b935050602084013567ffffffffffffffff8111156138e2576138e1614575565b5b6138ee8682870161331f565b92509250509250925092565b613903816142fd565b82525050565b6139128161425b565b82525050565b6139296139248261425b565b614421565b82525050565b6139388161427f565b82525050565b6139478161428b565b82525050565b6000613958826140f8565b613962818561410e565b9350613972818560208601614342565b61397b8161457f565b840191505092915050565b6000613991826140f8565b61399b818561411f565b93506139ab818560208601614342565b80840191505092915050565b60006139c282614103565b6139cc818561412a565b93506139dc818560208601614342565b6139e58161457f565b840191505092915050565b60006139fb82614103565b613a05818561413b565b9350613a15818560208601614342565b80840191505092915050565b6000613a2e601f8361412a565b9150613a398261459d565b602082019050919050565b6000613a51601a8361412a565b9150613a5c826145c6565b602082019050919050565b6000613a7460268361412a565b9150613a7f826145ef565b604082019050919050565b6000613a9760268361412a565b9150613aa28261463e565b604082019050919050565b6000613aba603a8361412a565b9150613ac58261468d565b604082019050919050565b6000613add601d8361412a565b9150613ae8826146dc565b602082019050919050565b6000613b0060268361412a565b9150613b0b82614705565b604082019050919050565b6000613b23602b8361412a565b9150613b2e82614754565b604082019050919050565b6000613b4660128361412a565b9150613b51826147a3565b602082019050919050565b6000613b6960138361412a565b9150613b74826147cc565b602082019050919050565b6000613b8c60128361412a565b9150613b97826147f5565b602082019050919050565b6000613baf60058361413b565b9150613bba8261481e565b600582019050919050565b6000613bd260208361412a565b9150613bdd82614847565b602082019050919050565b6000613bf560138361412a565b9150613c0082614870565b602082019050919050565b6000613c1860008361411f565b9150613c2382614899565b600082019050919050565b6000613c3b601d8361412a565b9150613c468261489c565b602082019050919050565b6000613c5e60128361412a565b9150613c69826148c5565b602082019050919050565b6000613c81602a8361412a565b9150613c8c826148ee565b604082019050919050565b613ca0816142f3565b82525050565b6000613cb28284613918565b60148201915081905092915050565b6000613ccd8284613986565b915081905092915050565b6000613ce482856139f0565b9150613cf082846139f0565b9150613cfb82613ba2565b91508190509392505050565b6000613d1282613c0b565b9150819050919050565b6000602082019050613d316000830184613909565b92915050565b6000604082019050613d4c60008301856138fa565b613d596020830184613c97565b9392505050565b6000608082019050613d756000830187613909565b613d826020830186613909565b613d8f6040830185613c97565b8181036060830152613da1818461394d565b905095945050505050565b6000604082019050613dc16000830185613909565b613dce6020830184613c97565b9392505050565b6000602082019050613dea600083018461392f565b92915050565b6000602082019050613e05600083018461393e565b92915050565b60006020820190508181036000830152613e2581846139b7565b905092915050565b60006020820190508181036000830152613e4681613a21565b9050919050565b60006020820190508181036000830152613e6681613a44565b9050919050565b60006020820190508181036000830152613e8681613a67565b9050919050565b60006020820190508181036000830152613ea681613a8a565b9050919050565b60006020820190508181036000830152613ec681613aad565b9050919050565b60006020820190508181036000830152613ee681613ad0565b9050919050565b60006020820190508181036000830152613f0681613af3565b9050919050565b60006020820190508181036000830152613f2681613b16565b9050919050565b60006020820190508181036000830152613f4681613b39565b9050919050565b60006020820190508181036000830152613f6681613b5c565b9050919050565b60006020820190508181036000830152613f8681613b7f565b9050919050565b60006020820190508181036000830152613fa681613bc5565b9050919050565b60006020820190508181036000830152613fc681613be8565b9050919050565b60006020820190508181036000830152613fe681613c2e565b9050919050565b6000602082019050818103600083015261400681613c51565b9050919050565b6000602082019050818103600083015261402681613c74565b9050919050565b60006020820190506140426000830184613c97565b92915050565b600060408201905061405d6000830185613c97565b61406a602083018461392f565b9392505050565b600061407b61408c565b905061408782826143a7565b919050565b6000604051905090565b600067ffffffffffffffff8211156140b1576140b0614532565b5b6140ba8261457f565b9050602081019050919050565b600067ffffffffffffffff8211156140e2576140e1614532565b5b6140eb8261457f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614151826142f3565b915061415c836142f3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561419157614190614476565b5b828201905092915050565b60006141a7826142f3565b91506141b2836142f3565b9250826141c2576141c16144a5565b5b828204905092915050565b60006141d8826142f3565b91506141e3836142f3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561421c5761421b614476565b5b828202905092915050565b6000614232826142f3565b915061423d836142f3565b9250828210156142505761424f614476565b5b828203905092915050565b6000614266826142d3565b9050919050565b6000614278826142d3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006142cc8261425b565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006143088261430f565b9050919050565b600061431a82614321565b9050919050565b600061432c826142d3565b9050919050565b82818337600083830152505050565b60005b83811015614360578082015181840152602081019050614345565b8381111561436f576000848401525b50505050565b6000600282049050600182168061438d57607f821691505b602082108114156143a1576143a06144d4565b5b50919050565b6143b08261457f565b810181811067ffffffffffffffff821117156143cf576143ce614532565b5b80604052505050565b60006143e3826142f3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561441657614415614476565b5b600182019050919050565b600061442c82614433565b9050919050565b600061443e82614590565b9050919050565b6000614450826142f3565b915061445b836142f3565b92508261446b5761446a6144a5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f496e76616c6964204d65726b6c6520547265652070726f6f662e000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820616d6f756e740000000000000000000000000000600082015250565b7f57686974656c6973742068617320656e64656400000000000000000000000000600082015250565b7f496e76616c69642045544820616d6f756e740000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b50565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f57686974656c697374206f6e676f696e672e0000000000000000000000000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6149468161425b565b811461495157600080fd5b50565b61495d8161426d565b811461496857600080fd5b50565b6149748161427f565b811461497f57600080fd5b50565b61498b8161428b565b811461499657600080fd5b50565b6149a281614295565b81146149ad57600080fd5b50565b6149b9816142c1565b81146149c457600080fd5b50565b6149d0816142f3565b81146149db57600080fd5b5056fea2646970667358221220b83e31f66dd6c2e2802ff2732557e97bbfef7a702d653c2c98a24e622e54ec0364736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000003000000000000000000000000c4dad95e7bc7c86391cd7e55df15f88bc38266a6000000000000000000000000c2e04319c9636ab1612f44e4a86cb05661033ef2000000000000000000000000ba4d26c586d1fd9a24249fbf63c8220e7c3d02df000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000001a900000000000000000000000000000000000000000000000000000000000001a900000000000000000000000000000000000000000000000000000000000000960000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d654b367662584a785471573257364c334576586741594563424a697378445661443264776b386545666167392f00000000000000000000

Deployed Bytecode

0x60806040526004361061024a5760003560e01c8063715018a611610139578063b88d4fde116100b6578063ce7c2ac21161007a578063ce7c2ac2146108d2578063d5abeb011461090f578063d79779b21461093a578063e33b7de314610977578063e985e9c5146109a2578063f2fde38b146109df57610291565b8063b88d4fde146107ef578063bd32fb6614610818578063c3b754dc14610841578063c87b56dd1461086a578063ccb22f09146108a757610291565b806395d89b41116100fd57806395d89b41146107045780639852595c1461072f5780639cee012c1461076c578063a0712d68146107aa578063a22cb465146107c657610291565b8063715018a61461062f57806380b17335146106465780638b83209b146106715780638da5cb5b146106ae5780638ecad721146106d957610291565b80633a98ef39116101c757806348b750441161018b57806348b750441461054757806355f804b3146105705780636352211e146105995780636bf7593a146105d657806370a08231146105f257610291565b80633a98ef3914610462578063406072a91461048d5780634146ed0a146104ca57806342842e0e146104f557806344a0d68a1461051e57610291565b806313faede61161020e57806313faede61461038f57806318160ddd146103ba57806319165587146103e557806323b872dd1461040e5780632eb4a7ab1461043757610291565b806301ffc9a71461029657806302ddb65b146102d357806306fdde03146102fe578063081812fc14610329578063095ea7b31461036657610291565b36610291577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770610278610a08565b34604051610287929190613dac565b60405180910390a1005b600080fd5b3480156102a257600080fd5b506102bd60048036038101906102b891906136f0565b610a10565b6040516102ca9190613dd5565b60405180910390f35b3480156102df57600080fd5b506102e8610aa2565b6040516102f5919061402d565b60405180910390f35b34801561030a57600080fd5b50610313610aa8565b6040516103209190613e0b565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190613800565b610b3a565b60405161035d9190613d1c565b60405180910390f35b34801561037257600080fd5b5061038d60048036038101906103889190613629565b610bb6565b005b34801561039b57600080fd5b506103a4610cf7565b6040516103b1919061402d565b60405180910390f35b3480156103c657600080fd5b506103cf610cfd565b6040516103dc919061402d565b60405180910390f35b3480156103f157600080fd5b5061040c600480360381019061040791906134a6565b610d14565b005b34801561041a57600080fd5b5061043560048036038101906104309190613513565b610ebf565b005b34801561044357600080fd5b5061044c6111e4565b6040516104599190613df0565b60405180910390f35b34801561046e57600080fd5b506104776111ea565b604051610484919061402d565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af9190613777565b6111f4565b6040516104c1919061402d565b60405180910390f35b3480156104d657600080fd5b506104df61127b565b6040516104ec9190613dd5565b60405180910390f35b34801561050157600080fd5b5061051c60048036038101906105179190613513565b61128e565b005b34801561052a57600080fd5b5061054560048036038101906105409190613800565b6112ae565b005b34801561055357600080fd5b5061056e60048036038101906105699190613777565b611334565b005b34801561057c57600080fd5b50610597600480360381019061059291906137b7565b6115fc565b005b3480156105a557600080fd5b506105c060048036038101906105bb9190613800565b611692565b6040516105cd9190613d1c565b60405180910390f35b6105f060048036038101906105eb919061389a565b6116a4565b005b3480156105fe57600080fd5b5061061960048036038101906106149190613479565b61181d565b604051610626919061402d565b60405180910390f35b34801561063b57600080fd5b506106446118d6565b005b34801561065257600080fd5b5061065b61195e565b604051610668919061402d565b60405180910390f35b34801561067d57600080fd5b5061069860048036038101906106939190613800565b611964565b6040516106a59190613d1c565b60405180910390f35b3480156106ba57600080fd5b506106c36119ac565b6040516106d09190613d1c565b60405180910390f35b3480156106e557600080fd5b506106ee6119d6565b6040516106fb919061402d565b60405180910390f35b34801561071057600080fd5b506107196119dc565b6040516107269190613e0b565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190613479565b611a6e565b604051610763919061402d565b60405180910390f35b34801561077857600080fd5b50610793600480360381019061078e919061385a565b611ab7565b6040516107a1929190614048565b60405180910390f35b6107c460048036038101906107bf9190613800565b611b1b565b005b3480156107d257600080fd5b506107ed60048036038101906107e891906135e9565b611beb565b005b3480156107fb57600080fd5b5061081660048036038101906108119190613566565b611d63565b005b34801561082457600080fd5b5061083f600480360381019061083a91906136c3565b611dd6565b005b34801561084d57600080fd5b5061086860048036038101906108639190613669565b611e5c565b005b34801561087657600080fd5b50610891600480360381019061088c9190613800565b611ef5565b60405161089e9190613e0b565b60405180910390f35b3480156108b357600080fd5b506108bc612068565b6040516108c9919061402d565b60405180910390f35b3480156108de57600080fd5b506108f960048036038101906108f49190613479565b61206e565b604051610906919061402d565b60405180910390f35b34801561091b57600080fd5b506109246120b7565b604051610931919061402d565b60405180910390f35b34801561094657600080fd5b50610961600480360381019061095c919061374a565b6120bd565b60405161096e919061402d565b60405180910390f35b34801561098357600080fd5b5061098c612106565b604051610999919061402d565b60405180910390f35b3480156109ae57600080fd5b506109c960048036038101906109c491906134d3565b612110565b6040516109d69190613dd5565b60405180910390f35b3480156109eb57600080fd5b50610a066004803603810190610a019190613479565b6121a4565b005b600033905090565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a9b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60135481565b606060028054610ab790614375565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae390614375565b8015610b305780601f10610b0557610100808354040283529160200191610b30565b820191906000526020600020905b815481529060010190602001808311610b1357829003601f168201915b5050505050905090565b6000610b458261229c565b610b7b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bc182611692565b90508073ffffffffffffffffffffffffffffffffffffffff16610be26122fb565b73ffffffffffffffffffffffffffffffffffffffff1614610c4557610c0e81610c096122fb565b612110565b610c44576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60115481565b6000610d07612303565b6001546000540303905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d90613e8d565b60405180910390fd5b6000610da0612106565b47610dab9190614146565b90506000610dc28383610dbd86611a6e565b61230c565b90506000811415610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff90613f0d565b60405180910390fd5b80600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e579190614146565b9250508190555080600a6000828254610e709190614146565b92505081905550610e81838261237a565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610eb2929190613d37565b60405180910390a1505050565b6000610eca8261246e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f31576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610f3d8461253c565b91509150610f538187610f4e6122fb565b61255e565b610f9f57610f6886610f636122fb565b612110565b610f9e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611006576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61101386868660016125a2565b801561101e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506110ec856110c88888876125a8565b7c0200000000000000000000000000000000000000000000000000000000176125d0565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611174576000600185019050600060046000838152602001908152602001600020541415611172576000548114611171578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111dc86868660016125fb565b505050505050565b60195481565b6000600954905090565b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601860009054906101000a900460ff1681565b6112a983838360405180602001604052806000815250611d63565b505050565b6112b6610a08565b73ffffffffffffffffffffffffffffffffffffffff166112d46119ac565b73ffffffffffffffffffffffffffffffffffffffff161461132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190613f8d565b60405180910390fd5b8060118190555050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad90613e8d565b60405180910390fd5b60006113c1836120bd565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016113fa9190613d1c565b60206040518083038186803b15801561141257600080fd5b505afa158015611426573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144a919061382d565b6114549190614146565b9050600061146c838361146787876111f4565b61230c565b905060008114156114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a990613f0d565b60405180910390fd5b80600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461153e9190614146565b9250508190555080600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115949190614146565b925050819055506115a6848483612601565b8373ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a84836040516115ee929190613dac565b60405180910390a250505050565b611604610a08565b73ffffffffffffffffffffffffffffffffffffffff166116226119ac565b73ffffffffffffffffffffffffffffffffffffffff1614611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90613f8d565b60405180910390fd5b806010908051906020019061168e9291906131ce565b5050565b600061169d8261246e565b9050919050565b601860009054906101000a900460ff166116f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ea90613f4d565b60405180910390fd5b601860009054906101000a900460ff161561179b5761175b61171433612687565b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506126b7565b61179a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179190613e4d565b60405180910390fd5b5b6000806117a88533611ab7565b915091508134146117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e590613f6d565b60405180910390fd5b801561180d5760146000815480929190611807906143d8565b91905055505b611816856126ce565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611885576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6118de610a08565b73ffffffffffffffffffffffffffffffffffffffff166118fc6119ac565b73ffffffffffffffffffffffffffffffffffffffff1614611952576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194990613f8d565b60405180910390fd5b61195c600061278a565b565b60145481565b6000600d828154811061197a57611979614503565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60165481565b6060600380546119eb90614375565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1790614375565b8015611a645780601f10611a3957610100808354040283529160200191611a64565b820191906000526020600020905b815481529060010190602001808311611a4757829003601f168201915b5050505050905090565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806000611ac584612850565b148015611ad55750601354601454105b15611aff57600184611ae79190614227565b601154611af491906141cd565b600191509150611b14565b83601154611b0d91906141cd565b6000915091505b9250929050565b601860009054906101000a900460ff1615611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290613fed565b60405180910390fd5b600080611b788333611ab7565b91509150813414611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb590613f6d565b60405180910390fd5b8015611bdd5760146000815480929190611bd7906143d8565b91905055505b611be6836126ce565b505050565b611bf36122fb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c58576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611c656122fb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d126122fb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d579190613dd5565b60405180910390a35050565b611d6e848484610ebf565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611dd057611d99848484846128a7565b611dcf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611dde610a08565b73ffffffffffffffffffffffffffffffffffffffff16611dfc6119ac565b73ffffffffffffffffffffffffffffffffffffffff1614611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4990613f8d565b60405180910390fd5b8060198190555050565b611e64610a08565b73ffffffffffffffffffffffffffffffffffffffff16611e826119ac565b73ffffffffffffffffffffffffffffffffffffffff1614611ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecf90613f8d565b60405180910390fd5b80601860006101000a81548160ff02191690831515021790555050565b6060611f008261229c565b611f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3690613e2d565b60405180910390fd5b6000601760008481526020019081526020016000208054611f5f90614375565b90501415611fc4576000611f71612a07565b90506000815111611f915760405180602001604052806000815250611fbc565b80611f9b84612a99565b604051602001611fac929190613cd8565b6040516020818303038152906040525b915050612063565b601760008381526020019081526020016000208054611fe290614375565b80601f016020809104026020016040519081016040528092919081815260200182805461200e90614375565b801561205b5780601f106120305761010080835404028352916020019161205b565b820191906000526020600020905b81548152906001019060200180831161203e57829003601f168201915b505050505090505b919050565b60155481565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60125481565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600a54905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121ac610a08565b73ffffffffffffffffffffffffffffffffffffffff166121ca6119ac565b73ffffffffffffffffffffffffffffffffffffffff1614612220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221790613f8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228790613e6d565b60405180910390fd5b6122998161278a565b50565b6000816122a7612303565b111580156122b6575060005482105b80156122f4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600081600954600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548561235d91906141cd565b612367919061419c565b6123719190614227565b90509392505050565b804710156123bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b490613ecd565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516123e390613d07565b60006040518083038185875af1925050503d8060008114612420576040519150601f19603f3d011682016040523d82523d6000602084013e612425565b606091505b5050905080612469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246090613ead565b60405180910390fd5b505050565b6000808290508061247d612303565b11612505576000548110156125045760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612502575b60008114156124f85760046000836001900393508381526020019081526020016000205490506124cd565b8092505050612537565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86125bf868684612bfa565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6126828363a9059cbb60e01b8484604051602401612620929190613dac565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612c03565b505050565b60008160405160200161269a9190613ca6565b604051602081830303815290604052805190602001209050919050565b60006126c68260195485612cca565b905092915050565b601254816126da610cfd565b6126e49190614146565b1115612725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271c90613fad565b60405180910390fd5b6016548161273233612850565b61273c9190614146565b111561277d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277490613f2d565b60405180910390fd5b6127873382612ce1565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128cd6122fb565b8786866040518563ffffffff1660e01b81526004016128ef9493929190613d60565b602060405180830381600087803b15801561290957600080fd5b505af192505050801561293a57506040513d601f19601f82011682018060405250810190612937919061371d565b60015b6129b4573d806000811461296a576040519150601f19603f3d011682016040523d82523d6000602084013e61296f565b606091505b506000815114156129ac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060108054612a1690614375565b80601f0160208091040260200160405190810160405280929190818152602001828054612a4290614375565b8015612a8f5780601f10612a6457610100808354040283529160200191612a8f565b820191906000526020600020905b815481529060010190602001808311612a7257829003601f168201915b5050505050905090565b60606000821415612ae1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bf5565b600082905060005b60008214612b13578080612afc906143d8565b915050600a82612b0c919061419c565b9150612ae9565b60008167ffffffffffffffff811115612b2f57612b2e614532565b5b6040519080825280601f01601f191660200182016040528015612b615781602001600182028036833780820191505090505b5090505b60008514612bee57600182612b7a9190614227565b9150600a85612b899190614445565b6030612b959190614146565b60f81b818381518110612bab57612baa614503565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612be7919061419c565b9450612b65565b8093505050505b919050565b60009392505050565b6000612c65826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612cff9092919063ffffffff16565b9050600081511115612cc55780806020019051810190612c859190613696565b612cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbb9061400d565b60405180910390fd5b5b505050565b600082612cd78584612d17565b1490509392505050565b612cfb828260405180602001604052806000815250612d6d565b5050565b6060612d0e8484600085612e0a565b90509392505050565b60008082905060005b8451811015612d6257612d4d82868381518110612d4057612d3f614503565b5b6020026020010151612f1e565b91508080612d5a906143d8565b915050612d20565b508091505092915050565b612d778383612f49565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612e0557600080549050600083820390505b612db760008683806001019450866128a7565b612ded576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612da4578160005414612e0257600080fd5b50505b505050565b606082471015612e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4690613eed565b60405180910390fd5b612e588561311d565b612e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8e90613fcd565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612ec09190613cc1565b60006040518083038185875af1925050503d8060008114612efd576040519150601f19603f3d011682016040523d82523d6000602084013e612f02565b606091505b5091509150612f12828286613140565b92505050949350505050565b6000818310612f3657612f3182846131a7565b612f41565b612f4083836131a7565b5b905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fb6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612ff1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ffe60008483856125a2565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506130758361306660008660006125a8565b61306f856131be565b176125d0565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106130995780600081905550505061311860008483856125fb565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60608315613150578290506131a0565b6000835111156131635782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131979190613e0b565b60405180910390fd5b9392505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b8280546131da90614375565b90600052602060002090601f0160209004810192826131fc5760008555613243565b82601f1061321557805160ff1916838001178555613243565b82800160010185558215613243579182015b82811115613242578251825591602001919060010190613227565b5b5090506132509190613254565b5090565b5b8082111561326d576000816000905550600101613255565b5090565b600061328461327f84614096565b614071565b9050828152602081018484840111156132a05761329f614570565b5b6132ab848285614333565b509392505050565b60006132c66132c1846140c7565b614071565b9050828152602081018484840111156132e2576132e1614570565b5b6132ed848285614333565b509392505050565b6000813590506133048161493d565b92915050565b60008135905061331981614954565b92915050565b60008083601f84011261333557613334614566565b5b8235905067ffffffffffffffff81111561335257613351614561565b5b60208301915083602082028301111561336e5761336d61456b565b5b9250929050565b6000813590506133848161496b565b92915050565b6000815190506133998161496b565b92915050565b6000813590506133ae81614982565b92915050565b6000813590506133c381614999565b92915050565b6000815190506133d881614999565b92915050565b600082601f8301126133f3576133f2614566565b5b8135613403848260208601613271565b91505092915050565b60008135905061341b816149b0565b92915050565b600082601f83011261343657613435614566565b5b81356134468482602086016132b3565b91505092915050565b60008135905061345e816149c7565b92915050565b600081519050613473816149c7565b92915050565b60006020828403121561348f5761348e61457a565b5b600061349d848285016132f5565b91505092915050565b6000602082840312156134bc576134bb61457a565b5b60006134ca8482850161330a565b91505092915050565b600080604083850312156134ea576134e961457a565b5b60006134f8858286016132f5565b9250506020613509858286016132f5565b9150509250929050565b60008060006060848603121561352c5761352b61457a565b5b600061353a868287016132f5565b935050602061354b868287016132f5565b925050604061355c8682870161344f565b9150509250925092565b600080600080608085870312156135805761357f61457a565b5b600061358e878288016132f5565b945050602061359f878288016132f5565b93505060406135b08782880161344f565b925050606085013567ffffffffffffffff8111156135d1576135d0614575565b5b6135dd878288016133de565b91505092959194509250565b60008060408385031215613600576135ff61457a565b5b600061360e858286016132f5565b925050602061361f85828601613375565b9150509250929050565b600080604083850312156136405761363f61457a565b5b600061364e858286016132f5565b925050602061365f8582860161344f565b9150509250929050565b60006020828403121561367f5761367e61457a565b5b600061368d84828501613375565b91505092915050565b6000602082840312156136ac576136ab61457a565b5b60006136ba8482850161338a565b91505092915050565b6000602082840312156136d9576136d861457a565b5b60006136e78482850161339f565b91505092915050565b6000602082840312156137065761370561457a565b5b6000613714848285016133b4565b91505092915050565b6000602082840312156137335761373261457a565b5b6000613741848285016133c9565b91505092915050565b6000602082840312156137605761375f61457a565b5b600061376e8482850161340c565b91505092915050565b6000806040838503121561378e5761378d61457a565b5b600061379c8582860161340c565b92505060206137ad858286016132f5565b9150509250929050565b6000602082840312156137cd576137cc61457a565b5b600082013567ffffffffffffffff8111156137eb576137ea614575565b5b6137f784828501613421565b91505092915050565b6000602082840312156138165761381561457a565b5b60006138248482850161344f565b91505092915050565b6000602082840312156138435761384261457a565b5b600061385184828501613464565b91505092915050565b600080604083850312156138715761387061457a565b5b600061387f8582860161344f565b9250506020613890858286016132f5565b9150509250929050565b6000806000604084860312156138b3576138b261457a565b5b60006138c18682870161344f565b935050602084013567ffffffffffffffff8111156138e2576138e1614575565b5b6138ee8682870161331f565b92509250509250925092565b613903816142fd565b82525050565b6139128161425b565b82525050565b6139296139248261425b565b614421565b82525050565b6139388161427f565b82525050565b6139478161428b565b82525050565b6000613958826140f8565b613962818561410e565b9350613972818560208601614342565b61397b8161457f565b840191505092915050565b6000613991826140f8565b61399b818561411f565b93506139ab818560208601614342565b80840191505092915050565b60006139c282614103565b6139cc818561412a565b93506139dc818560208601614342565b6139e58161457f565b840191505092915050565b60006139fb82614103565b613a05818561413b565b9350613a15818560208601614342565b80840191505092915050565b6000613a2e601f8361412a565b9150613a398261459d565b602082019050919050565b6000613a51601a8361412a565b9150613a5c826145c6565b602082019050919050565b6000613a7460268361412a565b9150613a7f826145ef565b604082019050919050565b6000613a9760268361412a565b9150613aa28261463e565b604082019050919050565b6000613aba603a8361412a565b9150613ac58261468d565b604082019050919050565b6000613add601d8361412a565b9150613ae8826146dc565b602082019050919050565b6000613b0060268361412a565b9150613b0b82614705565b604082019050919050565b6000613b23602b8361412a565b9150613b2e82614754565b604082019050919050565b6000613b4660128361412a565b9150613b51826147a3565b602082019050919050565b6000613b6960138361412a565b9150613b74826147cc565b602082019050919050565b6000613b8c60128361412a565b9150613b97826147f5565b602082019050919050565b6000613baf60058361413b565b9150613bba8261481e565b600582019050919050565b6000613bd260208361412a565b9150613bdd82614847565b602082019050919050565b6000613bf560138361412a565b9150613c0082614870565b602082019050919050565b6000613c1860008361411f565b9150613c2382614899565b600082019050919050565b6000613c3b601d8361412a565b9150613c468261489c565b602082019050919050565b6000613c5e60128361412a565b9150613c69826148c5565b602082019050919050565b6000613c81602a8361412a565b9150613c8c826148ee565b604082019050919050565b613ca0816142f3565b82525050565b6000613cb28284613918565b60148201915081905092915050565b6000613ccd8284613986565b915081905092915050565b6000613ce482856139f0565b9150613cf082846139f0565b9150613cfb82613ba2565b91508190509392505050565b6000613d1282613c0b565b9150819050919050565b6000602082019050613d316000830184613909565b92915050565b6000604082019050613d4c60008301856138fa565b613d596020830184613c97565b9392505050565b6000608082019050613d756000830187613909565b613d826020830186613909565b613d8f6040830185613c97565b8181036060830152613da1818461394d565b905095945050505050565b6000604082019050613dc16000830185613909565b613dce6020830184613c97565b9392505050565b6000602082019050613dea600083018461392f565b92915050565b6000602082019050613e05600083018461393e565b92915050565b60006020820190508181036000830152613e2581846139b7565b905092915050565b60006020820190508181036000830152613e4681613a21565b9050919050565b60006020820190508181036000830152613e6681613a44565b9050919050565b60006020820190508181036000830152613e8681613a67565b9050919050565b60006020820190508181036000830152613ea681613a8a565b9050919050565b60006020820190508181036000830152613ec681613aad565b9050919050565b60006020820190508181036000830152613ee681613ad0565b9050919050565b60006020820190508181036000830152613f0681613af3565b9050919050565b60006020820190508181036000830152613f2681613b16565b9050919050565b60006020820190508181036000830152613f4681613b39565b9050919050565b60006020820190508181036000830152613f6681613b5c565b9050919050565b60006020820190508181036000830152613f8681613b7f565b9050919050565b60006020820190508181036000830152613fa681613bc5565b9050919050565b60006020820190508181036000830152613fc681613be8565b9050919050565b60006020820190508181036000830152613fe681613c2e565b9050919050565b6000602082019050818103600083015261400681613c51565b9050919050565b6000602082019050818103600083015261402681613c74565b9050919050565b60006020820190506140426000830184613c97565b92915050565b600060408201905061405d6000830185613c97565b61406a602083018461392f565b9392505050565b600061407b61408c565b905061408782826143a7565b919050565b6000604051905090565b600067ffffffffffffffff8211156140b1576140b0614532565b5b6140ba8261457f565b9050602081019050919050565b600067ffffffffffffffff8211156140e2576140e1614532565b5b6140eb8261457f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614151826142f3565b915061415c836142f3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561419157614190614476565b5b828201905092915050565b60006141a7826142f3565b91506141b2836142f3565b9250826141c2576141c16144a5565b5b828204905092915050565b60006141d8826142f3565b91506141e3836142f3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561421c5761421b614476565b5b828202905092915050565b6000614232826142f3565b915061423d836142f3565b9250828210156142505761424f614476565b5b828203905092915050565b6000614266826142d3565b9050919050565b6000614278826142d3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006142cc8261425b565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006143088261430f565b9050919050565b600061431a82614321565b9050919050565b600061432c826142d3565b9050919050565b82818337600083830152505050565b60005b83811015614360578082015181840152602081019050614345565b8381111561436f576000848401525b50505050565b6000600282049050600182168061438d57607f821691505b602082108114156143a1576143a06144d4565b5b50919050565b6143b08261457f565b810181811067ffffffffffffffff821117156143cf576143ce614532565b5b80604052505050565b60006143e3826142f3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561441657614415614476565b5b600182019050919050565b600061442c82614433565b9050919050565b600061443e82614590565b9050919050565b6000614450826142f3565b915061445b836142f3565b92508261446b5761446a6144a5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f496e76616c6964204d65726b6c6520547265652070726f6f662e000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820616d6f756e740000000000000000000000000000600082015250565b7f57686974656c6973742068617320656e64656400000000000000000000000000600082015250565b7f496e76616c69642045544820616d6f756e740000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b50565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f57686974656c697374206f6e676f696e672e0000000000000000000000000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6149468161425b565b811461495157600080fd5b50565b61495d8161426d565b811461496857600080fd5b50565b6149748161427f565b811461497f57600080fd5b50565b61498b8161428b565b811461499657600080fd5b50565b6149a281614295565b81146149ad57600080fd5b50565b6149b9816142c1565b81146149c457600080fd5b50565b6149d0816142f3565b81146149db57600080fd5b5056fea2646970667358221220b83e31f66dd6c2e2802ff2732557e97bbfef7a702d653c2c98a24e622e54ec0364736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000003000000000000000000000000c4dad95e7bc7c86391cd7e55df15f88bc38266a6000000000000000000000000c2e04319c9636ab1612f44e4a86cb05661033ef2000000000000000000000000ba4d26c586d1fd9a24249fbf63c8220e7c3d02df000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000001a900000000000000000000000000000000000000000000000000000000000001a900000000000000000000000000000000000000000000000000000000000000960000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d654b367662584a785471573257364c334576586741594563424a697378445661443264776b386545666167392f00000000000000000000

-----Decoded View---------------
Arg [0] : _payees (address[]): 0xC4daD95e7Bc7C86391cD7e55dF15f88BC38266a6,0xC2e04319C9636aB1612f44e4A86Cb05661033Ef2,0xba4D26C586D1fd9a24249fBf63C8220E7c3D02dF
Arg [1] : _amount (uint256[]): 425,425,150
Arg [2] : _uri (string): ipfs://QmeK6vbXJxTqW2W6L3EvXgAYEcBJisxDVaD2dwk8eEfag9/

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [4] : 000000000000000000000000c4dad95e7bc7c86391cd7e55df15f88bc38266a6
Arg [5] : 000000000000000000000000c2e04319c9636ab1612f44e4a86cb05661033ef2
Arg [6] : 000000000000000000000000ba4d26c586d1fd9a24249fbf63c8220e7c3d02df
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 00000000000000000000000000000000000000000000000000000000000001a9
Arg [9] : 00000000000000000000000000000000000000000000000000000000000001a9
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000096
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [12] : 697066733a2f2f516d654b367662584a785471573257364c3345765867415945
Arg [13] : 63424a697378445661443264776b386545666167392f00000000000000000000


Deployed Bytecode Sourcemap

82421:4702:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30734:40;30750:12;:10;:12::i;:::-;30764:9;30734:40;;;;;;;:::i;:::-;;;;;;;;82421:4702;;;;;52215:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82636:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57862:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59808:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59356:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82558:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51269:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32520:566;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69073:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82881:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30865:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31994:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82844:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60698:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85630:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33354:641;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85825:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57651:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84592:567;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52894:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36806:103;;;;;;;;;;;;;:::i;:::-;;82677:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32220:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36155:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82750:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58031:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31716:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86865:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;84269:315;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60084:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60954:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83543:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83416:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86035:822;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82709:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31512:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82598:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31302:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31050:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60463:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37064:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27276:98;27329:7;27356:10;27349:17;;27276:98;:::o;52215:615::-;52300:4;52615:10;52600:25;;:11;:25;;;;:102;;;;52692:10;52677:25;;:11;:25;;;;52600:102;:179;;;;52769:10;52754:25;;:11;:25;;;;52600:179;52580:199;;52215:615;;;:::o;82636:34::-;;;;:::o;57862:100::-;57916:13;57949:5;57942:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57862:100;:::o;59808:204::-;59876:7;59901:16;59909:7;59901;:16::i;:::-;59896:64;;59926:34;;;;;;;;;;;;;;59896:64;59980:15;:24;59996:7;59980:24;;;;;;;;;;;;;;;;;;;;;59973:31;;59808:204;;;:::o;59356:386::-;59429:13;59445:16;59453:7;59445;:16::i;:::-;59429:32;;59501:5;59478:28;;:19;:17;:19::i;:::-;:28;;;59474:175;;59526:44;59543:5;59550:19;:17;:19::i;:::-;59526:16;:44::i;:::-;59521:128;;59598:35;;;;;;;;;;;;;;59521:128;59474:175;59688:2;59661:15;:24;59677:7;59661:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;59726:7;59722:2;59706:28;;59715:5;59706:28;;;;;;;;;;;;59418:324;59356:386;;:::o;82558:33::-;;;;:::o;51269:315::-;51322:7;51550:15;:13;:15::i;:::-;51535:12;;51519:13;;:28;:46;51512:53;;51269:315;:::o;32520:566::-;32615:1;32596:7;:16;32604:7;32596:16;;;;;;;;;;;;;;;;:20;32588:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;32672:21;32720:15;:13;:15::i;:::-;32696:21;:39;;;;:::i;:::-;32672:63;;32746:15;32764:58;32780:7;32789:13;32804:17;32813:7;32804:8;:17::i;:::-;32764:15;:58::i;:::-;32746:76;;32854:1;32843:7;:12;;32835:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32938:7;32916:9;:18;32926:7;32916:18;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;32974:7;32956:14;;:25;;;;;;;:::i;:::-;;;;;;;;32994:35;33012:7;33021;32994:17;:35::i;:::-;33045:33;33061:7;33070;33045:33;;;;;;;:::i;:::-;;;;;;;;32577:509;;32520:566;:::o;69073:2800::-;69207:27;69237;69256:7;69237:18;:27::i;:::-;69207:57;;69322:4;69281:45;;69297:19;69281:45;;;69277:86;;69335:28;;;;;;;;;;;;;;69277:86;69377:27;69406:23;69433:28;69453:7;69433:19;:28::i;:::-;69376:85;;;;69561:62;69580:15;69597:4;69603:19;:17;:19::i;:::-;69561:18;:62::i;:::-;69556:174;;69643:43;69660:4;69666:19;:17;:19::i;:::-;69643:16;:43::i;:::-;69638:92;;69695:35;;;;;;;;;;;;;;69638:92;69556:174;69761:1;69747:16;;:2;:16;;;69743:52;;;69772:23;;;;;;;;;;;;;;69743:52;69808:43;69830:4;69836:2;69840:7;69849:1;69808:21;:43::i;:::-;69944:15;69941:160;;;70084:1;70063:19;70056:30;69941:160;70479:18;:24;70498:4;70479:24;;;;;;;;;;;;;;;;70477:26;;;;;;;;;;;;70548:18;:22;70567:2;70548:22;;;;;;;;;;;;;;;;70546:24;;;;;;;;;;;70870:145;70907:2;70955:45;70970:4;70976:2;70980:19;70955:14;:45::i;:::-;48497:8;70928:72;70870:18;:145::i;:::-;70841:17;:26;70859:7;70841:26;;;;;;;;;;;:174;;;;71185:1;48497:8;71135:19;:46;:51;71131:626;;;71207:19;71239:1;71229:7;:11;71207:33;;71396:1;71362:17;:30;71380:11;71362:30;;;;;;;;;;;;:35;71358:384;;;71500:13;;71485:11;:28;71481:242;;71680:19;71647:17;:30;71665:11;71647:30;;;;;;;;;;;:52;;;;71481:242;71358:384;71188:569;71131:626;71804:7;71800:2;71785:27;;71794:4;71785:27;;;;;;;;;;;;71823:42;71844:4;71850:2;71854:7;71863:1;71823:20;:42::i;:::-;69196:2677;;;69073:2800;;;:::o;82881:25::-;;;;:::o;30865:91::-;30909:7;30936:12;;30929:19;;30865:91;:::o;31994:135::-;32064:7;32091:14;:21;32106:5;32091:21;;;;;;;;;;;;;;;:30;32113:7;32091:30;;;;;;;;;;;;;;;;32084:37;;31994:135;;;;:::o;82844:30::-;;;;;;;;;;;;;:::o;60698:185::-;60836:39;60853:4;60859:2;60863:7;60836:39;;;;;;;;;;;;:16;:39::i;:::-;60698:185;;;:::o;85630:88::-;36386:12;:10;:12::i;:::-;36375:23;;:7;:5;:7::i;:::-;:23;;;36367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;85702:8:::1;85695:4;:15;;;;85630:88:::0;:::o;33354:641::-;33455:1;33436:7;:16;33444:7;33436:16;;;;;;;;;;;;;;;;:20;33428:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33512:21;33569:20;33583:5;33569:13;:20::i;:::-;33536:5;:15;;;33560:4;33536:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;33512:77;;33600:15;33618:65;33634:7;33643:13;33658:24;33667:5;33674:7;33658:8;:24::i;:::-;33618:15;:65::i;:::-;33600:83;;33715:1;33704:7;:12;;33696:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33811:7;33777:14;:21;33792:5;33777:21;;;;;;;;;;;;;;;:30;33799:7;33777:30;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;33859:7;33829:19;:26;33849:5;33829:26;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;33879:47;33902:5;33909:7;33918;33879:22;:47::i;:::-;33963:5;33942:45;;;33970:7;33979;33942:45;;;;;;;:::i;:::-;;;;;;;;33417:578;;33354:641;;:::o;85825:106::-;36386:12;:10;:12::i;:::-;36375:23;;:7;:5;:7::i;:::-;:23;;;36367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;85912:11:::1;85902:7;:21;;;;;;;;;;;;:::i;:::-;;85825:106:::0;:::o;57651:144::-;57715:7;57758:27;57777:7;57758:18;:27::i;:::-;57735:52;;57651:144;;;:::o;84592:567::-;84783:11;;;;;;;;;;;84775:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;84832:11;;;;;;;;;;;84829:115;;;84867:34;84875:17;84881:10;84875:5;:17::i;:::-;84894:6;;84867:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:7;:34::i;:::-;84859:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;84829:115;84957:13;84972;84989:27;84997:6;85005:10;84989:7;:27::i;:::-;84956:60;;;;85048:8;85035:9;:21;85027:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;85093:8;85090:37;;;85116:9;;:11;;;;;;;;;:::i;:::-;;;;;;85090:37;85138:13;85144:6;85138:5;:13::i;:::-;84679:480;;84592:567;;;:::o;52894:224::-;52958:7;52999:1;52982:19;;:5;:19;;;52978:60;;;53010:28;;;;;;;;;;;;;;52978:60;47449:13;53056:18;:25;53075:5;53056:25;;;;;;;;;;;;;;;;:54;53049:61;;52894:224;;;:::o;36806:103::-;36386:12;:10;:12::i;:::-;36375:23;;:7;:5;:7::i;:::-;:23;;;36367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36871:30:::1;36898:1;36871:18;:30::i;:::-;36806:103::o:0;82677:25::-;;;;:::o;32220:100::-;32271:7;32298;32306:5;32298:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32291:21;;32220:100;;;:::o;36155:87::-;36201:7;36228:6;;;;;;;;;;;36221:13;;36155:87;:::o;82750:35::-;;;;:::o;58031:104::-;58087:13;58120:7;58113:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58031:104;:::o;31716:109::-;31772:7;31799:9;:18;31809:7;31799:18;;;;;;;;;;;;;;;;31792:25;;31716:109;;;:::o;86865:255::-;86932:4;86938;86984:1;86958:22;86972:7;86958:13;:22::i;:::-;:27;:58;;;;;87001:15;;86989:9;;:27;86958:58;86955:157;;;87056:1;87047:6;:10;;;;:::i;:::-;87039:4;;:20;;;;:::i;:::-;87061:4;87031:35;;;;;;86955:157;87098:6;87090:4;;:14;;;;:::i;:::-;87106:5;87082:30;;;;86865:255;;;;;;:::o;84269:315::-;84336:11;;;;;;;;;;;84335:12;84327:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;84382:13;84397;84414:27;84422:6;84430:10;84414:7;:27::i;:::-;84381:60;;;;84473:8;84460:9;:21;84452:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;84518:8;84515:37;;;84541:9;;:11;;;;;;;;;:::i;:::-;;;;;;84515:37;84563:13;84569:6;84563:5;:13::i;:::-;84316:268;;84269:315;:::o;60084:308::-;60195:19;:17;:19::i;:::-;60183:31;;:8;:31;;;60179:61;;;60223:17;;;;;;;;;;;;;;60179:61;60305:8;60253:18;:39;60272:19;:17;:19::i;:::-;60253:39;;;;;;;;;;;;;;;:49;60293:8;60253:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;60365:8;60329:55;;60344:19;:17;:19::i;:::-;60329:55;;;60375:8;60329:55;;;;;;:::i;:::-;;;;;;;;60084:308;;:::o;60954:399::-;61121:31;61134:4;61140:2;61144:7;61121:12;:31::i;:::-;61185:1;61167:2;:14;;;:19;61163:183;;61206:56;61237:4;61243:2;61247:7;61256:5;61206:30;:56::i;:::-;61201:145;;61290:40;;;;;;;;;;;;;;61201:145;61163:183;60954:399;;;;:::o;83543:133::-;36386:12;:10;:12::i;:::-;36375:23;;:7;:5;:7::i;:::-;:23;;;36367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;83648:20:::1;83635:10;:33;;;;83543:133:::0;:::o;83416:119::-;36386:12;:10;:12::i;:::-;36375:23;;:7;:5;:7::i;:::-;:23;;;36367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;83511:16:::1;83497:11;;:30;;;;;;;;;;;;;;;;;;83416:119:::0;:::o;86035:822::-;86153:13;86206:16;86214:7;86206;:16::i;:::-;86184:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;86339:1;86308:10;:19;86319:7;86308:19;;;;;;;;;;;86302:33;;;;;:::i;:::-;;;:38;86298:551;;;86361:28;86392:10;:8;:10::i;:::-;86361:41;;86480:1;86455:14;86449:28;:32;:352;;;;;;;;;;;;;;;;;86597:14;86646:25;86663:7;86646:16;:25::i;:::-;86546:198;;;;;;;;;:::i;:::-;;;;;;;;;;;;;86449:352;86421:380;;;;;86298:551;86830:10;:19;86841:7;86830:19;;;;;;;;;;;86823:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86035:822;;;;:::o;82709:34::-;;;;:::o;31512:105::-;31566:7;31593;:16;31601:7;31593:16;;;;;;;;;;;;;;;;31586:23;;31512:105;;;:::o;82598:31::-;;;;:::o;31302:119::-;31360:7;31387:19;:26;31407:5;31387:26;;;;;;;;;;;;;;;;31380:33;;31302:119;;;:::o;31050:95::-;31096:7;31123:14;;31116:21;;31050:95;:::o;60463:164::-;60560:4;60584:18;:25;60603:5;60584:25;;;;;;;;;;;;;;;:35;60610:8;60584:35;;;;;;;;;;;;;;;;;;;;;;;;;60577:42;;60463:164;;;;:::o;37064:201::-;36386:12;:10;:12::i;:::-;36375:23;;:7;:5;:7::i;:::-;:23;;;36367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37173:1:::1;37153:22;;:8;:22;;;;37145:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37229:28;37248:8;37229:18;:28::i;:::-;37064:201:::0;:::o;61608:273::-;61665:4;61721:7;61702:15;:13;:15::i;:::-;:26;;:66;;;;;61755:13;;61745:7;:23;61702:66;:152;;;;;61853:1;48219:8;61806:17;:26;61824:7;61806:26;;;;;;;;;;;;:43;:48;61702:152;61682:172;;61608:273;;;:::o;80169:105::-;80229:7;80256:10;80249:17;;80169:105;:::o;83979:101::-;84044:7;84071:1;84064:8;;83979:101;:::o;34173:248::-;34319:7;34398:15;34383:12;;34363:7;:16;34371:7;34363:16;;;;;;;;;;;;;;;;34347:13;:32;;;;:::i;:::-;34346:49;;;;:::i;:::-;:67;;;;:::i;:::-;34339:74;;34173:248;;;;;:::o;2494:317::-;2609:6;2584:21;:31;;2576:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2663:12;2681:9;:14;;2703:6;2681:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2662:52;;;2733:7;2725:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2565:246;2494:317;;:::o;54568:1129::-;54635:7;54655:12;54670:7;54655:22;;54738:4;54719:15;:13;:15::i;:::-;:23;54715:915;;54772:13;;54765:4;:20;54761:869;;;54810:14;54827:17;:23;54845:4;54827:23;;;;;;;;;;;;54810:40;;54943:1;48219:8;54916:6;:23;:28;54912:699;;;55435:113;55452:1;55442:6;:11;55435:113;;;55495:17;:25;55513:6;;;;;;;55495:25;;;;;;;;;;;;55486:34;;55435:113;;;55581:6;55574:13;;;;;;54912:699;54787:843;54761:869;54715:915;55658:31;;;;;;;;;;;;;;54568:1129;;;;:::o;67409:652::-;67504:27;67533:23;67574:53;67630:15;67574:71;;67816:7;67810:4;67803:21;67851:22;67845:4;67838:36;67927:4;67921;67911:21;67888:44;;68023:19;68017:26;67998:45;;67754:300;67409:652;;;:::o;68174:645::-;68316:11;68478:15;68472:4;68468:26;68460:34;;68637:15;68626:9;68622:31;68609:44;;68784:15;68773:9;68770:30;68763:4;68752:9;68749:19;68746:55;68736:65;;68174:645;;;;;:::o;79002:159::-;;;;;:::o;77314:309::-;77449:7;77469:16;48620:3;77495:19;:40;;77469:67;;48620:3;77562:31;77573:4;77579:2;77583:9;77562:10;:31::i;:::-;77554:40;;:61;;77547:68;;;77314:309;;;;;:::o;57142:447::-;57222:14;57390:15;57383:5;57379:27;57370:36;;57564:5;57550:11;57526:22;57522:40;57519:51;57512:5;57509:62;57499:72;;57142:447;;;;:::o;79820:158::-;;;;;:::o;12079:211::-;12196:86;12216:5;12246:23;;;12271:2;12275:5;12223:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12196:19;:86::i;:::-;12079:211;;;:::o;83684:126::-;83739:7;83793;83776:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;83766:36;;;;;;83759:43;;83684:126;;;:::o;83818:153::-;83896:4;83920:43;83939:5;83946:10;;83958:4;83920:18;:43::i;:::-;83913:50;;83818:153;;;;:::o;85167:358::-;85349:9;;85339:6;85323:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;85315:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;85439:15;;85429:6;85401:25;85415:10;85401:13;:25::i;:::-;:34;;;;:::i;:::-;:53;;85393:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;85488:29;85498:10;85510:6;85488:9;:29::i;:::-;85167:358;:::o;37425:191::-;37499:16;37518:6;;;;;;;;;;;37499:25;;37544:8;37535:6;;:17;;;;;;;;;;;;;;;;;;37599:8;37568:40;;37589:8;37568:40;;;;;;;;;;;;37488:128;37425:191;:::o;53200:176::-;53261:7;47449:13;47586:2;53289:18;:25;53308:5;53289:25;;;;;;;;;;;;;;;;:49;;53288:80;53281:87;;53200:176;;;:::o;75824:716::-;75987:4;76033:2;76008:45;;;76054:19;:17;:19::i;:::-;76075:4;76081:7;76090:5;76008:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;76004:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76308:1;76291:6;:13;:18;76287:235;;;76337:40;;;;;;;;;;;;;;76287:235;76480:6;76474:13;76465:6;76461:2;76457:15;76450:38;76004:529;76177:54;;;76167:64;;;:6;:64;;;;76160:71;;;75824:716;;;;;;:::o;84153:108::-;84213:13;84246:7;84239:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84153:108;:::o;15805:723::-;15861:13;16091:1;16082:5;:10;16078:53;;;16109:10;;;;;;;;;;;;;;;;;;;;;16078:53;16141:12;16156:5;16141:20;;16172:14;16197:78;16212:1;16204:4;:9;16197:78;;16230:8;;;;;:::i;:::-;;;;16261:2;16253:10;;;;;:::i;:::-;;;16197:78;;;16285:19;16317:6;16307:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16285:39;;16335:154;16351:1;16342:5;:10;16335:154;;16379:1;16369:11;;;;;:::i;:::-;;;16446:2;16438:5;:10;;;;:::i;:::-;16425:2;:24;;;;:::i;:::-;16412:39;;16395:6;16402;16395:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;16475:2;16466:11;;;;;:::i;:::-;;;16335:154;;;16513:6;16499:21;;;;;15805:723;;;;:::o;78199:147::-;78336:6;78199:147;;;;;:::o;14652:716::-;15076:23;15102:69;15130:4;15102:69;;;;;;;;;;;;;;;;;15110:5;15102:27;;;;:69;;;;;:::i;:::-;15076:95;;15206:1;15186:10;:17;:21;15182:179;;;15283:10;15272:30;;;;;;;;;;;;:::i;:::-;15264:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15182:179;14722:646;14652:716;;:::o;19091:190::-;19216:4;19269;19240:25;19253:5;19260:4;19240:12;:25::i;:::-;:33;19233:40;;19091:190;;;;;:::o;61965:104::-;62034:27;62044:2;62048:8;62034:27;;;;;;;;;;;;:9;:27::i;:::-;61965:104;;:::o;3978:229::-;4115:12;4147:52;4169:6;4177:4;4183:1;4186:12;4147:21;:52::i;:::-;4140:59;;3978:229;;;;;:::o;19958:296::-;20041:7;20061:20;20084:4;20061:27;;20104:9;20099:118;20123:5;:12;20119:1;:16;20099:118;;;20172:33;20182:12;20196:5;20202:1;20196:8;;;;;;;;:::i;:::-;;;;;;;;20172:9;:33::i;:::-;20157:48;;20137:3;;;;;:::i;:::-;;;;20099:118;;;;20234:12;20227:19;;;19958:296;;;;:::o;62485:681::-;62608:19;62614:2;62618:8;62608:5;:19::i;:::-;62687:1;62669:2;:14;;;:19;62665:483;;62709:11;62723:13;;62709:27;;62755:13;62777:8;62771:3;:14;62755:30;;62804:233;62835:62;62874:1;62878:2;62882:7;;;;;;62891:5;62835:30;:62::i;:::-;62830:167;;62933:40;;;;;;;;;;;;;;62830:167;63032:3;63024:5;:11;62804:233;;63119:3;63102:13;;:20;63098:34;;63124:8;;;63098:34;62690:458;;62665:483;62485:681;;;:::o;5098:510::-;5268:12;5326:5;5301:21;:30;;5293:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;5393:18;5404:6;5393:10;:18::i;:::-;5385:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;5459:12;5473:23;5500:6;:11;;5519:5;5526:4;5500:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5458:73;;;;5549:51;5566:7;5575:10;5587:12;5549:16;:51::i;:::-;5542:58;;;;5098:510;;;;;;:::o;26165:149::-;26228:7;26259:1;26255;:5;:51;;26286:20;26301:1;26304;26286:14;:20::i;:::-;26255:51;;;26263:20;26278:1;26281;26263:14;:20::i;:::-;26255:51;26248:58;;26165:149;;;;:::o;63439:1529::-;63504:20;63527:13;;63504:36;;63569:1;63555:16;;:2;:16;;;63551:48;;;63580:19;;;;;;;;;;;;;;63551:48;63626:1;63614:8;:13;63610:44;;;63636:18;;;;;;;;;;;;;;63610:44;63667:61;63697:1;63701:2;63705:12;63719:8;63667:21;:61::i;:::-;64210:1;47586:2;64181:1;:25;;64180:31;64168:8;:44;64142:18;:22;64161:2;64142:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;64489:139;64526:2;64580:33;64603:1;64607:2;64611:1;64580:14;:33::i;:::-;64547:30;64568:8;64547:20;:30::i;:::-;:66;64489:18;:139::i;:::-;64455:17;:31;64473:12;64455:31;;;;;;;;;;;:173;;;;64645:15;64663:12;64645:30;;64690:11;64719:8;64704:12;:23;64690:37;;64742:101;64794:9;;;;;;64790:2;64769:35;;64786:1;64769:35;;;;;;;;;;;;64838:3;64828:7;:13;64742:101;;64875:3;64859:13;:19;;;;63916:974;;64900:60;64929:1;64933:2;64937:12;64951:8;64900:20;:60::i;:::-;63493:1475;63439:1529;;:::o;1233:326::-;1293:4;1550:1;1528:7;:19;;;:23;1521:30;;1233:326;;;:::o;7784:712::-;7934:12;7963:7;7959:530;;;7994:10;7987:17;;;;7959:530;8128:1;8108:10;:17;:21;8104:374;;;8306:10;8300:17;8367:15;8354:10;8350:2;8346:19;8339:44;8104:374;8449:12;8442:20;;;;;;;;;;;:::i;:::-;;;;;;;;7784:712;;;;;;:::o;26322:268::-;26390:13;26497:1;26491:4;26484:15;26526:1;26520:4;26513:15;26567:4;26561;26551:21;26542:30;;26322:268;;;;:::o;58972:322::-;59042:14;59273:1;59263:8;59260:15;59235:23;59231:45;59221:55;;58972:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:155::-;1040:5;1078:6;1065:20;1056:29;;1094:41;1129:5;1094:41;:::i;:::-;986:155;;;;:::o;1164:568::-;1237:8;1247:6;1297:3;1290:4;1282:6;1278:17;1274:27;1264:122;;1305:79;;:::i;:::-;1264:122;1418:6;1405:20;1395:30;;1448:18;1440:6;1437:30;1434:117;;;1470:79;;:::i;:::-;1434:117;1584:4;1576:6;1572:17;1560:29;;1638:3;1630:4;1622:6;1618:17;1608:8;1604:32;1601:41;1598:128;;;1645:79;;:::i;:::-;1598:128;1164:568;;;;;:::o;1738:133::-;1781:5;1819:6;1806:20;1797:29;;1835:30;1859:5;1835:30;:::i;:::-;1738:133;;;;:::o;1877:137::-;1931:5;1962:6;1956:13;1947:22;;1978:30;2002:5;1978:30;:::i;:::-;1877:137;;;;:::o;2020:139::-;2066:5;2104:6;2091:20;2082:29;;2120:33;2147:5;2120:33;:::i;:::-;2020:139;;;;:::o;2165:137::-;2210:5;2248:6;2235:20;2226:29;;2264:32;2290:5;2264:32;:::i;:::-;2165:137;;;;:::o;2308:141::-;2364:5;2395:6;2389:13;2380:22;;2411:32;2437:5;2411:32;:::i;:::-;2308:141;;;;:::o;2468:338::-;2523:5;2572:3;2565:4;2557:6;2553:17;2549:27;2539:122;;2580:79;;:::i;:::-;2539:122;2697:6;2684:20;2722:78;2796:3;2788:6;2781:4;2773:6;2769:17;2722:78;:::i;:::-;2713:87;;2529:277;2468:338;;;;:::o;2812:167::-;2872:5;2910:6;2897:20;2888:29;;2926:47;2967:5;2926:47;:::i;:::-;2812:167;;;;:::o;2999:340::-;3055:5;3104:3;3097:4;3089:6;3085:17;3081:27;3071:122;;3112:79;;:::i;:::-;3071:122;3229:6;3216:20;3254:79;3329:3;3321:6;3314:4;3306:6;3302:17;3254:79;:::i;:::-;3245:88;;3061:278;2999:340;;;;:::o;3345:139::-;3391:5;3429:6;3416:20;3407:29;;3445:33;3472:5;3445:33;:::i;:::-;3345:139;;;;:::o;3490:143::-;3547:5;3578:6;3572:13;3563:22;;3594:33;3621:5;3594:33;:::i;:::-;3490:143;;;;:::o;3639:329::-;3698:6;3747:2;3735:9;3726:7;3722:23;3718:32;3715:119;;;3753:79;;:::i;:::-;3715:119;3873:1;3898:53;3943:7;3934:6;3923:9;3919:22;3898:53;:::i;:::-;3888:63;;3844:117;3639:329;;;;:::o;3974:345::-;4041:6;4090:2;4078:9;4069:7;4065:23;4061:32;4058:119;;;4096:79;;:::i;:::-;4058:119;4216:1;4241:61;4294:7;4285:6;4274:9;4270:22;4241:61;:::i;:::-;4231:71;;4187:125;3974:345;;;;:::o;4325:474::-;4393:6;4401;4450:2;4438:9;4429:7;4425:23;4421:32;4418:119;;;4456:79;;:::i;:::-;4418:119;4576:1;4601:53;4646:7;4637:6;4626:9;4622:22;4601:53;:::i;:::-;4591:63;;4547:117;4703:2;4729:53;4774:7;4765:6;4754:9;4750:22;4729:53;:::i;:::-;4719:63;;4674:118;4325:474;;;;;:::o;4805:619::-;4882:6;4890;4898;4947:2;4935:9;4926:7;4922:23;4918:32;4915:119;;;4953:79;;:::i;:::-;4915:119;5073:1;5098:53;5143:7;5134:6;5123:9;5119:22;5098:53;:::i;:::-;5088:63;;5044:117;5200:2;5226:53;5271:7;5262:6;5251:9;5247:22;5226:53;:::i;:::-;5216:63;;5171:118;5328:2;5354:53;5399:7;5390:6;5379:9;5375:22;5354:53;:::i;:::-;5344:63;;5299:118;4805:619;;;;;:::o;5430:943::-;5525:6;5533;5541;5549;5598:3;5586:9;5577:7;5573:23;5569:33;5566:120;;;5605:79;;:::i;:::-;5566:120;5725:1;5750:53;5795:7;5786:6;5775:9;5771:22;5750:53;:::i;:::-;5740:63;;5696:117;5852:2;5878:53;5923:7;5914:6;5903:9;5899:22;5878:53;:::i;:::-;5868:63;;5823:118;5980:2;6006:53;6051:7;6042:6;6031:9;6027:22;6006:53;:::i;:::-;5996:63;;5951:118;6136:2;6125:9;6121:18;6108:32;6167:18;6159:6;6156:30;6153:117;;;6189:79;;:::i;:::-;6153:117;6294:62;6348:7;6339:6;6328:9;6324:22;6294:62;:::i;:::-;6284:72;;6079:287;5430:943;;;;;;;:::o;6379:468::-;6444:6;6452;6501:2;6489:9;6480:7;6476:23;6472:32;6469:119;;;6507:79;;:::i;:::-;6469:119;6627:1;6652:53;6697:7;6688:6;6677:9;6673:22;6652:53;:::i;:::-;6642:63;;6598:117;6754:2;6780:50;6822:7;6813:6;6802:9;6798:22;6780:50;:::i;:::-;6770:60;;6725:115;6379:468;;;;;:::o;6853:474::-;6921:6;6929;6978:2;6966:9;6957:7;6953:23;6949:32;6946:119;;;6984:79;;:::i;:::-;6946:119;7104:1;7129:53;7174:7;7165:6;7154:9;7150:22;7129:53;:::i;:::-;7119:63;;7075:117;7231:2;7257:53;7302:7;7293:6;7282:9;7278:22;7257:53;:::i;:::-;7247:63;;7202:118;6853:474;;;;;:::o;7333:323::-;7389:6;7438:2;7426:9;7417:7;7413:23;7409:32;7406:119;;;7444:79;;:::i;:::-;7406:119;7564:1;7589:50;7631:7;7622:6;7611:9;7607:22;7589:50;:::i;:::-;7579:60;;7535:114;7333:323;;;;:::o;7662:345::-;7729:6;7778:2;7766:9;7757:7;7753:23;7749:32;7746:119;;;7784:79;;:::i;:::-;7746:119;7904:1;7929:61;7982:7;7973:6;7962:9;7958:22;7929:61;:::i;:::-;7919:71;;7875:125;7662:345;;;;:::o;8013:329::-;8072:6;8121:2;8109:9;8100:7;8096:23;8092:32;8089:119;;;8127:79;;:::i;:::-;8089:119;8247:1;8272:53;8317:7;8308:6;8297:9;8293:22;8272:53;:::i;:::-;8262:63;;8218:117;8013:329;;;;:::o;8348:327::-;8406:6;8455:2;8443:9;8434:7;8430:23;8426:32;8423:119;;;8461:79;;:::i;:::-;8423:119;8581:1;8606:52;8650:7;8641:6;8630:9;8626:22;8606:52;:::i;:::-;8596:62;;8552:116;8348:327;;;;:::o;8681:349::-;8750:6;8799:2;8787:9;8778:7;8774:23;8770:32;8767:119;;;8805:79;;:::i;:::-;8767:119;8925:1;8950:63;9005:7;8996:6;8985:9;8981:22;8950:63;:::i;:::-;8940:73;;8896:127;8681:349;;;;:::o;9036:357::-;9109:6;9158:2;9146:9;9137:7;9133:23;9129:32;9126:119;;;9164:79;;:::i;:::-;9126:119;9284:1;9309:67;9368:7;9359:6;9348:9;9344:22;9309:67;:::i;:::-;9299:77;;9255:131;9036:357;;;;:::o;9399:502::-;9481:6;9489;9538:2;9526:9;9517:7;9513:23;9509:32;9506:119;;;9544:79;;:::i;:::-;9506:119;9664:1;9689:67;9748:7;9739:6;9728:9;9724:22;9689:67;:::i;:::-;9679:77;;9635:131;9805:2;9831:53;9876:7;9867:6;9856:9;9852:22;9831:53;:::i;:::-;9821:63;;9776:118;9399:502;;;;;:::o;9907:509::-;9976:6;10025:2;10013:9;10004:7;10000:23;9996:32;9993:119;;;10031:79;;:::i;:::-;9993:119;10179:1;10168:9;10164:17;10151:31;10209:18;10201:6;10198:30;10195:117;;;10231:79;;:::i;:::-;10195:117;10336:63;10391:7;10382:6;10371:9;10367:22;10336:63;:::i;:::-;10326:73;;10122:287;9907:509;;;;:::o;10422:329::-;10481:6;10530:2;10518:9;10509:7;10505:23;10501:32;10498:119;;;10536:79;;:::i;:::-;10498:119;10656:1;10681:53;10726:7;10717:6;10706:9;10702:22;10681:53;:::i;:::-;10671:63;;10627:117;10422:329;;;;:::o;10757:351::-;10827:6;10876:2;10864:9;10855:7;10851:23;10847:32;10844:119;;;10882:79;;:::i;:::-;10844:119;11002:1;11027:64;11083:7;11074:6;11063:9;11059:22;11027:64;:::i;:::-;11017:74;;10973:128;10757:351;;;;:::o;11114:474::-;11182:6;11190;11239:2;11227:9;11218:7;11214:23;11210:32;11207:119;;;11245:79;;:::i;:::-;11207:119;11365:1;11390:53;11435:7;11426:6;11415:9;11411:22;11390:53;:::i;:::-;11380:63;;11336:117;11492:2;11518:53;11563:7;11554:6;11543:9;11539:22;11518:53;:::i;:::-;11508:63;;11463:118;11114:474;;;;;:::o;11594:704::-;11689:6;11697;11705;11754:2;11742:9;11733:7;11729:23;11725:32;11722:119;;;11760:79;;:::i;:::-;11722:119;11880:1;11905:53;11950:7;11941:6;11930:9;11926:22;11905:53;:::i;:::-;11895:63;;11851:117;12035:2;12024:9;12020:18;12007:32;12066:18;12058:6;12055:30;12052:117;;;12088:79;;:::i;:::-;12052:117;12201:80;12273:7;12264:6;12253:9;12249:22;12201:80;:::i;:::-;12183:98;;;;11978:313;11594:704;;;;;:::o;12304:147::-;12399:45;12438:5;12399:45;:::i;:::-;12394:3;12387:58;12304:147;;:::o;12457:118::-;12544:24;12562:5;12544:24;:::i;:::-;12539:3;12532:37;12457:118;;:::o;12581:157::-;12686:45;12706:24;12724:5;12706:24;:::i;:::-;12686:45;:::i;:::-;12681:3;12674:58;12581:157;;:::o;12744:109::-;12825:21;12840:5;12825:21;:::i;:::-;12820:3;12813:34;12744:109;;:::o;12859:118::-;12946:24;12964:5;12946:24;:::i;:::-;12941:3;12934:37;12859:118;;:::o;12983:360::-;13069:3;13097:38;13129:5;13097:38;:::i;:::-;13151:70;13214:6;13209:3;13151:70;:::i;:::-;13144:77;;13230:52;13275:6;13270:3;13263:4;13256:5;13252:16;13230:52;:::i;:::-;13307:29;13329:6;13307:29;:::i;:::-;13302:3;13298:39;13291:46;;13073:270;12983:360;;;;:::o;13349:373::-;13453:3;13481:38;13513:5;13481:38;:::i;:::-;13535:88;13616:6;13611:3;13535:88;:::i;:::-;13528:95;;13632:52;13677:6;13672:3;13665:4;13658:5;13654:16;13632:52;:::i;:::-;13709:6;13704:3;13700:16;13693:23;;13457:265;13349:373;;;;:::o;13728:364::-;13816:3;13844:39;13877:5;13844:39;:::i;:::-;13899:71;13963:6;13958:3;13899:71;:::i;:::-;13892:78;;13979:52;14024:6;14019:3;14012:4;14005:5;14001:16;13979:52;:::i;:::-;14056:29;14078:6;14056:29;:::i;:::-;14051:3;14047:39;14040:46;;13820:272;13728:364;;;;:::o;14098:377::-;14204:3;14232:39;14265:5;14232:39;:::i;:::-;14287:89;14369:6;14364:3;14287:89;:::i;:::-;14280:96;;14385:52;14430:6;14425:3;14418:4;14411:5;14407:16;14385:52;:::i;:::-;14462:6;14457:3;14453:16;14446:23;;14208:267;14098:377;;;;:::o;14481:366::-;14623:3;14644:67;14708:2;14703:3;14644:67;:::i;:::-;14637:74;;14720:93;14809:3;14720:93;:::i;:::-;14838:2;14833:3;14829:12;14822:19;;14481:366;;;:::o;14853:::-;14995:3;15016:67;15080:2;15075:3;15016:67;:::i;:::-;15009:74;;15092:93;15181:3;15092:93;:::i;:::-;15210:2;15205:3;15201:12;15194:19;;14853:366;;;:::o;15225:::-;15367:3;15388:67;15452:2;15447:3;15388:67;:::i;:::-;15381:74;;15464:93;15553:3;15464:93;:::i;:::-;15582:2;15577:3;15573:12;15566:19;;15225:366;;;:::o;15597:::-;15739:3;15760:67;15824:2;15819:3;15760:67;:::i;:::-;15753:74;;15836:93;15925:3;15836:93;:::i;:::-;15954:2;15949:3;15945:12;15938:19;;15597:366;;;:::o;15969:::-;16111:3;16132:67;16196:2;16191:3;16132:67;:::i;:::-;16125:74;;16208:93;16297:3;16208:93;:::i;:::-;16326:2;16321:3;16317:12;16310:19;;15969:366;;;:::o;16341:::-;16483:3;16504:67;16568:2;16563:3;16504:67;:::i;:::-;16497:74;;16580:93;16669:3;16580:93;:::i;:::-;16698:2;16693:3;16689:12;16682:19;;16341:366;;;:::o;16713:::-;16855:3;16876:67;16940:2;16935:3;16876:67;:::i;:::-;16869:74;;16952:93;17041:3;16952:93;:::i;:::-;17070:2;17065:3;17061:12;17054:19;;16713:366;;;:::o;17085:::-;17227:3;17248:67;17312:2;17307:3;17248:67;:::i;:::-;17241:74;;17324:93;17413:3;17324:93;:::i;:::-;17442:2;17437:3;17433:12;17426:19;;17085:366;;;:::o;17457:::-;17599:3;17620:67;17684:2;17679:3;17620:67;:::i;:::-;17613:74;;17696:93;17785:3;17696:93;:::i;:::-;17814:2;17809:3;17805:12;17798:19;;17457:366;;;:::o;17829:::-;17971:3;17992:67;18056:2;18051:3;17992:67;:::i;:::-;17985:74;;18068:93;18157:3;18068:93;:::i;:::-;18186:2;18181:3;18177:12;18170:19;;17829:366;;;:::o;18201:::-;18343:3;18364:67;18428:2;18423:3;18364:67;:::i;:::-;18357:74;;18440:93;18529:3;18440:93;:::i;:::-;18558:2;18553:3;18549:12;18542:19;;18201:366;;;:::o;18573:400::-;18733:3;18754:84;18836:1;18831:3;18754:84;:::i;:::-;18747:91;;18847:93;18936:3;18847:93;:::i;:::-;18965:1;18960:3;18956:11;18949:18;;18573:400;;;:::o;18979:366::-;19121:3;19142:67;19206:2;19201:3;19142:67;:::i;:::-;19135:74;;19218:93;19307:3;19218:93;:::i;:::-;19336:2;19331:3;19327:12;19320:19;;18979:366;;;:::o;19351:::-;19493:3;19514:67;19578:2;19573:3;19514:67;:::i;:::-;19507:74;;19590:93;19679:3;19590:93;:::i;:::-;19708:2;19703:3;19699:12;19692:19;;19351:366;;;:::o;19723:398::-;19882:3;19903:83;19984:1;19979:3;19903:83;:::i;:::-;19896:90;;19995:93;20084:3;19995:93;:::i;:::-;20113:1;20108:3;20104:11;20097:18;;19723:398;;;:::o;20127:366::-;20269:3;20290:67;20354:2;20349:3;20290:67;:::i;:::-;20283:74;;20366:93;20455:3;20366:93;:::i;:::-;20484:2;20479:3;20475:12;20468:19;;20127:366;;;:::o;20499:::-;20641:3;20662:67;20726:2;20721:3;20662:67;:::i;:::-;20655:74;;20738:93;20827:3;20738:93;:::i;:::-;20856:2;20851:3;20847:12;20840:19;;20499:366;;;:::o;20871:::-;21013:3;21034:67;21098:2;21093:3;21034:67;:::i;:::-;21027:74;;21110:93;21199:3;21110:93;:::i;:::-;21228:2;21223:3;21219:12;21212:19;;20871:366;;;:::o;21243:118::-;21330:24;21348:5;21330:24;:::i;:::-;21325:3;21318:37;21243:118;;:::o;21367:256::-;21479:3;21494:75;21565:3;21556:6;21494:75;:::i;:::-;21594:2;21589:3;21585:12;21578:19;;21614:3;21607:10;;21367:256;;;;:::o;21629:271::-;21759:3;21781:93;21870:3;21861:6;21781:93;:::i;:::-;21774:100;;21891:3;21884:10;;21629:271;;;;:::o;21906:701::-;22187:3;22209:95;22300:3;22291:6;22209:95;:::i;:::-;22202:102;;22321:95;22412:3;22403:6;22321:95;:::i;:::-;22314:102;;22433:148;22577:3;22433:148;:::i;:::-;22426:155;;22598:3;22591:10;;21906:701;;;;;:::o;22613:379::-;22797:3;22819:147;22962:3;22819:147;:::i;:::-;22812:154;;22983:3;22976:10;;22613:379;;;:::o;22998:222::-;23091:4;23129:2;23118:9;23114:18;23106:26;;23142:71;23210:1;23199:9;23195:17;23186:6;23142:71;:::i;:::-;22998:222;;;;:::o;23226:348::-;23355:4;23393:2;23382:9;23378:18;23370:26;;23406:79;23482:1;23471:9;23467:17;23458:6;23406:79;:::i;:::-;23495:72;23563:2;23552:9;23548:18;23539:6;23495:72;:::i;:::-;23226:348;;;;;:::o;23580:640::-;23775:4;23813:3;23802:9;23798:19;23790:27;;23827:71;23895:1;23884:9;23880:17;23871:6;23827:71;:::i;:::-;23908:72;23976:2;23965:9;23961:18;23952:6;23908:72;:::i;:::-;23990;24058:2;24047:9;24043:18;24034:6;23990:72;:::i;:::-;24109:9;24103:4;24099:20;24094:2;24083:9;24079:18;24072:48;24137:76;24208:4;24199:6;24137:76;:::i;:::-;24129:84;;23580:640;;;;;;;:::o;24226:332::-;24347:4;24385:2;24374:9;24370:18;24362:26;;24398:71;24466:1;24455:9;24451:17;24442:6;24398:71;:::i;:::-;24479:72;24547:2;24536:9;24532:18;24523:6;24479:72;:::i;:::-;24226:332;;;;;:::o;24564:210::-;24651:4;24689:2;24678:9;24674:18;24666:26;;24702:65;24764:1;24753:9;24749:17;24740:6;24702:65;:::i;:::-;24564:210;;;;:::o;24780:222::-;24873:4;24911:2;24900:9;24896:18;24888:26;;24924:71;24992:1;24981:9;24977:17;24968:6;24924:71;:::i;:::-;24780:222;;;;:::o;25008:313::-;25121:4;25159:2;25148:9;25144:18;25136:26;;25208:9;25202:4;25198:20;25194:1;25183:9;25179:17;25172:47;25236:78;25309:4;25300:6;25236:78;:::i;:::-;25228:86;;25008:313;;;;:::o;25327:419::-;25493:4;25531:2;25520:9;25516:18;25508:26;;25580:9;25574:4;25570:20;25566:1;25555:9;25551:17;25544:47;25608:131;25734:4;25608:131;:::i;:::-;25600:139;;25327:419;;;:::o;25752:::-;25918:4;25956:2;25945:9;25941:18;25933:26;;26005:9;25999:4;25995:20;25991:1;25980:9;25976:17;25969:47;26033:131;26159:4;26033:131;:::i;:::-;26025:139;;25752:419;;;:::o;26177:::-;26343:4;26381:2;26370:9;26366:18;26358:26;;26430:9;26424:4;26420:20;26416:1;26405:9;26401:17;26394:47;26458:131;26584:4;26458:131;:::i;:::-;26450:139;;26177:419;;;:::o;26602:::-;26768:4;26806:2;26795:9;26791:18;26783:26;;26855:9;26849:4;26845:20;26841:1;26830:9;26826:17;26819:47;26883:131;27009:4;26883:131;:::i;:::-;26875:139;;26602:419;;;:::o;27027:::-;27193:4;27231:2;27220:9;27216:18;27208:26;;27280:9;27274:4;27270:20;27266:1;27255:9;27251:17;27244:47;27308:131;27434:4;27308:131;:::i;:::-;27300:139;;27027:419;;;:::o;27452:::-;27618:4;27656:2;27645:9;27641:18;27633:26;;27705:9;27699:4;27695:20;27691:1;27680:9;27676:17;27669:47;27733:131;27859:4;27733:131;:::i;:::-;27725:139;;27452:419;;;:::o;27877:::-;28043:4;28081:2;28070:9;28066:18;28058:26;;28130:9;28124:4;28120:20;28116:1;28105:9;28101:17;28094:47;28158:131;28284:4;28158:131;:::i;:::-;28150:139;;27877:419;;;:::o;28302:::-;28468:4;28506:2;28495:9;28491:18;28483:26;;28555:9;28549:4;28545:20;28541:1;28530:9;28526:17;28519:47;28583:131;28709:4;28583:131;:::i;:::-;28575:139;;28302:419;;;:::o;28727:::-;28893:4;28931:2;28920:9;28916:18;28908:26;;28980:9;28974:4;28970:20;28966:1;28955:9;28951:17;28944:47;29008:131;29134:4;29008:131;:::i;:::-;29000:139;;28727:419;;;:::o;29152:::-;29318:4;29356:2;29345:9;29341:18;29333:26;;29405:9;29399:4;29395:20;29391:1;29380:9;29376:17;29369:47;29433:131;29559:4;29433:131;:::i;:::-;29425:139;;29152:419;;;:::o;29577:::-;29743:4;29781:2;29770:9;29766:18;29758:26;;29830:9;29824:4;29820:20;29816:1;29805:9;29801:17;29794:47;29858:131;29984:4;29858:131;:::i;:::-;29850:139;;29577:419;;;:::o;30002:::-;30168:4;30206:2;30195:9;30191:18;30183:26;;30255:9;30249:4;30245:20;30241:1;30230:9;30226:17;30219:47;30283:131;30409:4;30283:131;:::i;:::-;30275:139;;30002:419;;;:::o;30427:::-;30593:4;30631:2;30620:9;30616:18;30608:26;;30680:9;30674:4;30670:20;30666:1;30655:9;30651:17;30644:47;30708:131;30834:4;30708:131;:::i;:::-;30700:139;;30427:419;;;:::o;30852:::-;31018:4;31056:2;31045:9;31041:18;31033:26;;31105:9;31099:4;31095:20;31091:1;31080:9;31076:17;31069:47;31133:131;31259:4;31133:131;:::i;:::-;31125:139;;30852:419;;;:::o;31277:::-;31443:4;31481:2;31470:9;31466:18;31458:26;;31530:9;31524:4;31520:20;31516:1;31505:9;31501:17;31494:47;31558:131;31684:4;31558:131;:::i;:::-;31550:139;;31277:419;;;:::o;31702:::-;31868:4;31906:2;31895:9;31891:18;31883:26;;31955:9;31949:4;31945:20;31941:1;31930:9;31926:17;31919:47;31983:131;32109:4;31983:131;:::i;:::-;31975:139;;31702:419;;;:::o;32127:222::-;32220:4;32258:2;32247:9;32243:18;32235:26;;32271:71;32339:1;32328:9;32324:17;32315:6;32271:71;:::i;:::-;32127:222;;;;:::o;32355:320::-;32470:4;32508:2;32497:9;32493:18;32485:26;;32521:71;32589:1;32578:9;32574:17;32565:6;32521:71;:::i;:::-;32602:66;32664:2;32653:9;32649:18;32640:6;32602:66;:::i;:::-;32355:320;;;;;:::o;32681:129::-;32715:6;32742:20;;:::i;:::-;32732:30;;32771:33;32799:4;32791:6;32771:33;:::i;:::-;32681:129;;;:::o;32816:75::-;32849:6;32882:2;32876:9;32866:19;;32816:75;:::o;32897:307::-;32958:4;33048:18;33040:6;33037:30;33034:56;;;33070:18;;:::i;:::-;33034:56;33108:29;33130:6;33108:29;:::i;:::-;33100:37;;33192:4;33186;33182:15;33174:23;;32897:307;;;:::o;33210:308::-;33272:4;33362:18;33354:6;33351:30;33348:56;;;33384:18;;:::i;:::-;33348:56;33422:29;33444:6;33422:29;:::i;:::-;33414:37;;33506:4;33500;33496:15;33488:23;;33210:308;;;:::o;33524:98::-;33575:6;33609:5;33603:12;33593:22;;33524:98;;;:::o;33628:99::-;33680:6;33714:5;33708:12;33698:22;;33628:99;;;:::o;33733:168::-;33816:11;33850:6;33845:3;33838:19;33890:4;33885:3;33881:14;33866:29;;33733:168;;;;:::o;33907:147::-;34008:11;34045:3;34030:18;;33907:147;;;;:::o;34060:169::-;34144:11;34178:6;34173:3;34166:19;34218:4;34213:3;34209:14;34194:29;;34060:169;;;;:::o;34235:148::-;34337:11;34374:3;34359:18;;34235:148;;;;:::o;34389:305::-;34429:3;34448:20;34466:1;34448:20;:::i;:::-;34443:25;;34482:20;34500:1;34482:20;:::i;:::-;34477:25;;34636:1;34568:66;34564:74;34561:1;34558:81;34555:107;;;34642:18;;:::i;:::-;34555:107;34686:1;34683;34679:9;34672:16;;34389:305;;;;:::o;34700:185::-;34740:1;34757:20;34775:1;34757:20;:::i;:::-;34752:25;;34791:20;34809:1;34791:20;:::i;:::-;34786:25;;34830:1;34820:35;;34835:18;;:::i;:::-;34820:35;34877:1;34874;34870:9;34865:14;;34700:185;;;;:::o;34891:348::-;34931:7;34954:20;34972:1;34954:20;:::i;:::-;34949:25;;34988:20;35006:1;34988:20;:::i;:::-;34983:25;;35176:1;35108:66;35104:74;35101:1;35098:81;35093:1;35086:9;35079:17;35075:105;35072:131;;;35183:18;;:::i;:::-;35072:131;35231:1;35228;35224:9;35213:20;;34891:348;;;;:::o;35245:191::-;35285:4;35305:20;35323:1;35305:20;:::i;:::-;35300:25;;35339:20;35357:1;35339:20;:::i;:::-;35334:25;;35378:1;35375;35372:8;35369:34;;;35383:18;;:::i;:::-;35369:34;35428:1;35425;35421:9;35413:17;;35245:191;;;;:::o;35442:96::-;35479:7;35508:24;35526:5;35508:24;:::i;:::-;35497:35;;35442:96;;;:::o;35544:104::-;35589:7;35618:24;35636:5;35618:24;:::i;:::-;35607:35;;35544:104;;;:::o;35654:90::-;35688:7;35731:5;35724:13;35717:21;35706:32;;35654:90;;;:::o;35750:77::-;35787:7;35816:5;35805:16;;35750:77;;;:::o;35833:149::-;35869:7;35909:66;35902:5;35898:78;35887:89;;35833:149;;;:::o;35988:110::-;36039:7;36068:24;36086:5;36068:24;:::i;:::-;36057:35;;35988:110;;;:::o;36104:126::-;36141:7;36181:42;36174:5;36170:54;36159:65;;36104:126;;;:::o;36236:77::-;36273:7;36302:5;36291:16;;36236:77;;;:::o;36319:134::-;36377:9;36410:37;36441:5;36410:37;:::i;:::-;36397:50;;36319:134;;;:::o;36459:126::-;36509:9;36542:37;36573:5;36542:37;:::i;:::-;36529:50;;36459:126;;;:::o;36591:113::-;36641:9;36674:24;36692:5;36674:24;:::i;:::-;36661:37;;36591:113;;;:::o;36710:154::-;36794:6;36789:3;36784;36771:30;36856:1;36847:6;36842:3;36838:16;36831:27;36710:154;;;:::o;36870:307::-;36938:1;36948:113;36962:6;36959:1;36956:13;36948:113;;;37047:1;37042:3;37038:11;37032:18;37028:1;37023:3;37019:11;37012:39;36984:2;36981:1;36977:10;36972:15;;36948:113;;;37079:6;37076:1;37073:13;37070:101;;;37159:1;37150:6;37145:3;37141:16;37134:27;37070:101;36919:258;36870:307;;;:::o;37183:320::-;37227:6;37264:1;37258:4;37254:12;37244:22;;37311:1;37305:4;37301:12;37332:18;37322:81;;37388:4;37380:6;37376:17;37366:27;;37322:81;37450:2;37442:6;37439:14;37419:18;37416:38;37413:84;;;37469:18;;:::i;:::-;37413:84;37234:269;37183:320;;;:::o;37509:281::-;37592:27;37614:4;37592:27;:::i;:::-;37584:6;37580:40;37722:6;37710:10;37707:22;37686:18;37674:10;37671:34;37668:62;37665:88;;;37733:18;;:::i;:::-;37665:88;37773:10;37769:2;37762:22;37552:238;37509:281;;:::o;37796:233::-;37835:3;37858:24;37876:5;37858:24;:::i;:::-;37849:33;;37904:66;37897:5;37894:77;37891:103;;;37974:18;;:::i;:::-;37891:103;38021:1;38014:5;38010:13;38003:20;;37796:233;;;:::o;38035:100::-;38074:7;38103:26;38123:5;38103:26;:::i;:::-;38092:37;;38035:100;;;:::o;38141:94::-;38180:7;38209:20;38223:5;38209:20;:::i;:::-;38198:31;;38141:94;;;:::o;38241:176::-;38273:1;38290:20;38308:1;38290:20;:::i;:::-;38285:25;;38324:20;38342:1;38324:20;:::i;:::-;38319:25;;38363:1;38353:35;;38368:18;;:::i;:::-;38353:35;38409:1;38406;38402:9;38397:14;;38241:176;;;;:::o;38423:180::-;38471:77;38468:1;38461:88;38568:4;38565:1;38558:15;38592:4;38589:1;38582:15;38609:180;38657:77;38654:1;38647:88;38754:4;38751:1;38744:15;38778:4;38775:1;38768:15;38795:180;38843:77;38840:1;38833:88;38940:4;38937:1;38930:15;38964:4;38961:1;38954:15;38981:180;39029:77;39026:1;39019:88;39126:4;39123:1;39116:15;39150:4;39147:1;39140:15;39167:180;39215:77;39212:1;39205:88;39312:4;39309:1;39302:15;39336:4;39333:1;39326:15;39353:117;39462:1;39459;39452:12;39476:117;39585:1;39582;39575:12;39599:117;39708:1;39705;39698:12;39722:117;39831:1;39828;39821:12;39845:117;39954:1;39951;39944:12;39968:117;40077:1;40074;40067:12;40091:102;40132:6;40183:2;40179:7;40174:2;40167:5;40163:14;40159:28;40149:38;;40091:102;;;:::o;40199:94::-;40232:8;40280:5;40276:2;40272:14;40251:35;;40199:94;;;:::o;40299:181::-;40439:33;40435:1;40427:6;40423:14;40416:57;40299:181;:::o;40486:176::-;40626:28;40622:1;40614:6;40610:14;40603:52;40486:176;:::o;40668:225::-;40808:34;40804:1;40796:6;40792:14;40785:58;40877:8;40872:2;40864:6;40860:15;40853:33;40668:225;:::o;40899:::-;41039:34;41035:1;41027:6;41023:14;41016:58;41108:8;41103:2;41095:6;41091:15;41084:33;40899:225;:::o;41130:245::-;41270:34;41266:1;41258:6;41254:14;41247:58;41339:28;41334:2;41326:6;41322:15;41315:53;41130:245;:::o;41381:179::-;41521:31;41517:1;41509:6;41505:14;41498:55;41381:179;:::o;41566:225::-;41706:34;41702:1;41694:6;41690:14;41683:58;41775:8;41770:2;41762:6;41758:15;41751:33;41566:225;:::o;41797:230::-;41937:34;41933:1;41925:6;41921:14;41914:58;42006:13;42001:2;41993:6;41989:15;41982:38;41797:230;:::o;42033:168::-;42173:20;42169:1;42161:6;42157:14;42150:44;42033:168;:::o;42207:169::-;42347:21;42343:1;42335:6;42331:14;42324:45;42207:169;:::o;42382:168::-;42522:20;42518:1;42510:6;42506:14;42499:44;42382:168;:::o;42556:155::-;42696:7;42692:1;42684:6;42680:14;42673:31;42556:155;:::o;42717:182::-;42857:34;42853:1;42845:6;42841:14;42834:58;42717:182;:::o;42905:169::-;43045:21;43041:1;43033:6;43029:14;43022:45;42905:169;:::o;43080:114::-;;:::o;43200:179::-;43340:31;43336:1;43328:6;43324:14;43317:55;43200:179;:::o;43385:168::-;43525:20;43521:1;43513:6;43509:14;43502:44;43385:168;:::o;43559:229::-;43699:34;43695:1;43687:6;43683:14;43676:58;43768:12;43763:2;43755:6;43751:15;43744:37;43559:229;:::o;43794:122::-;43867:24;43885:5;43867:24;:::i;:::-;43860:5;43857:35;43847:63;;43906:1;43903;43896:12;43847:63;43794:122;:::o;43922:138::-;44003:32;44029:5;44003:32;:::i;:::-;43996:5;43993:43;43983:71;;44050:1;44047;44040:12;43983:71;43922:138;:::o;44066:116::-;44136:21;44151:5;44136:21;:::i;:::-;44129:5;44126:32;44116:60;;44172:1;44169;44162:12;44116:60;44066:116;:::o;44188:122::-;44261:24;44279:5;44261:24;:::i;:::-;44254:5;44251:35;44241:63;;44300:1;44297;44290:12;44241:63;44188:122;:::o;44316:120::-;44388:23;44405:5;44388:23;:::i;:::-;44381:5;44378:34;44368:62;;44426:1;44423;44416:12;44368:62;44316:120;:::o;44442:150::-;44529:38;44561:5;44529:38;:::i;:::-;44522:5;44519:49;44509:77;;44582:1;44579;44572:12;44509:77;44442:150;:::o;44598:122::-;44671:24;44689:5;44671:24;:::i;:::-;44664:5;44661:35;44651:63;;44710:1;44707;44700:12;44651:63;44598:122;:::o

Swarm Source

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