ETH Price: $3,394.64 (+1.72%)
Gas: 6 Gwei

Token

SaintRobotica (SR)
 

Overview

Max Total Supply

505 SR

Holders

231

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
omoka.eth
Balance
1 SR
0x5f3c2f785c6e180acc1ff0389c92eaab24c981b0
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:
SaintRobotica

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-14
*/

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


// OpenZeppelin Contracts (last updated v4.8.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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _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) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _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/ECDSA.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

// File: @openzeppelin/contracts/utils/cryptography/draft-EIP712.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;

// EIP-712 is Final as of 2022-08-11. This file is deprecated.


// 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/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _ownerOf(tokenId) != address(0);
    }

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

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

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

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

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

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

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

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256, /* firstTokenId */
        uint256 batchSize
    ) internal virtual {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: closedsea/OperatorFilterer.sol


pragma solidity ^0.8.4;

/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)
        internal
        virtual
    {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))

            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            if iszero(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04)) {
                // If the function selector has not been overwritten,
                // it is an out-of-gas error.
                if eq(shr(224, mload(0x00)), functionSelector) {
                    // To prevent gas under-estimation.
                    revert(0, 0)
                }
            }
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if the caller is a blocked operator.
    modifier onlyAllowedOperator(address from) virtual {
        if (from != msg.sender) {
            if (!_isPriorityOperator(msg.sender)) {
                if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator..
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        if (!_isPriorityOperator(operator)) {
            if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
        }
        _;
    }

    /// @dev Helper function that reverts if the `operator` is blocked by the registry.
    function _revertIfBlocked(address operator) private view {
        /// @solidity memory-safe-assembly
        assembly {
            // Store the function selector of `isOperatorAllowed(address,address)`,
            // shifted left by 6 bytes, which is enough for 8tb of memory.
            // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
            mstore(0x00, 0xc6171134001122334455)
            // Store the `address(this)`.
            mstore(0x1a, address())
            // Store the `operator`.
            mstore(0x3a, operator)

            // `isOperatorAllowed` always returns true if it does not revert.
            if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                // Bubble up the revert if the staticcall reverts.
                returndatacopy(0x00, 0x00, returndatasize())
                revert(0x00, returndatasize())
            }

            // We'll skip checking if `from` is inside the blacklist.
            // Even though that can block transferring out of wrapper contracts,
            // we don't want tokens to be stuck.

            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, if less than 8tb of memory is used.
            mstore(0x3a, 0)
        }
    }

    /// @dev For deriving contracts to override, so that operator filtering
    /// can be turned on / off.
    /// Returns true by default.
    function _operatorFilteringEnabled() internal view virtual returns (bool) {
        return true;
    }

    /// @dev For deriving contracts to override, so that preferred marketplaces can
    /// skip operator filtering, helping users save gas.
    /// Returns false for all inputs by default.
    function _isPriorityOperator(address) internal view virtual returns (bool) {
        return false;
    }
}
// File: SaintRobotica.sol


pragma solidity ^0.8.7;






contract SaintRobotica is ERC721, EIP712, Ownable, OperatorFilterer {
    using Counters for Counters.Counter;

    Counters.Counter _teamTokenIdCounter;
    Counters.Counter _prepurchaseTokenIdCounter;
    Counters.Counter _tokenIdCounter;

    string _baseUri;
    string _contractURI;
    address _signerAddress;

    uint256 maxSaleCount;
    uint256 reservedCount;

    uint256 public price = 0.15 ether;

    uint256 public presaleStartTimestamp = 1671033600;
    uint256 public saleStartTimestamp = 1671035400;
    uint256 public saleEndTimestamp = 1702549232;

    uint256 public maxSupply = 3773;

    uint256 public reservedTeamMintCount = 100;
    uint256 public reservedPrepurchaseMintCount = 91;

    uint256 public presaleMintLimit = 3;
    uint256 public publicSaleMintLimit = 10;

    bool public operatorFilteringEnabled;

    mapping(address => uint256) public presaleMintCounter;
    mapping(address => uint256) public publicMintCounter;

    constructor()
        ERC721("SaintRobotica", "SR")
        EIP712("SaintRobotica", "1.0.0")
    {
        _registerForOperatorFiltering();
        operatorFilteringEnabled = true;
        _signerAddress = 0x105727Dc52481aBc7316EB29711F9Bcf1F18f7C6;

        _contractURI = "ipfs://QmTSiR9VAD3W1KCiAhsn6mtzSw8WuAf3qtnea5w6FVr1uP";
        _baseUri = "https://saintrobotica.com/api/token/";

        reservedCount = reservedTeamMintCount + reservedPrepurchaseMintCount;
        maxSaleCount = maxSupply - reservedCount;
    }

    function mint(uint256 quantity) external payable {
        require(isSaleActive(), "The sale is not active.");
        require(
            _tokenIdCounter.current() + quantity <= maxSaleCount,
            "The quantity exceeds the remaining amount of public sale capacity."
        );
        require(
            publicMintCounter[msg.sender] + quantity <= publicSaleMintLimit,
            "The quantity exceeds the remaining amount of mints available to your wallet. Try fewer mints."
        );
        require(msg.value >= price * quantity, "Not enough ETH.");

        publicMintCounter[msg.sender] += quantity;

        for (uint256 i = 0; i < quantity; i++) {
            safeMint(msg.sender);
        }
    }

    function presaleMint(
        uint256 quantity,
        bytes calldata signature
    ) external payable {
        require(isPresaleActive(), "The presale is not active.");
        require(
            recoverAddress(msg.sender, signature) == _signerAddress,
            "Invalid signature."
        );
        require(
            _tokenIdCounter.current() + quantity <= maxSaleCount,
            "The quantity exceeds the amount of remaining mints available."
        );
        require(
            presaleMintCounter[msg.sender] + quantity <= presaleMintLimit,
            "The quantity exceeds the remaining amount of mints available to your wallet. Try fewer mints."
        );
        require(msg.value >= quantity * price, "Not enough ETH.");

        presaleMintCounter[msg.sender] += quantity;

        for (uint256 i = 0; i < quantity; i++) {
            safeMint(msg.sender);
        }
    }

    function safeMint(address to) internal {
        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(to, tokenId + reservedCount);
    }

    function teamMint(uint256 quantity) external onlyOwner {
        require(
            _teamTokenIdCounter.current() + quantity <= reservedTeamMintCount,
            "The quantity exceeds the remaining amount of team mint capacity."
        );
        for (uint256 i = 0; i < quantity; i++) {
            uint256 tokenId = _teamTokenIdCounter.current();
            _teamTokenIdCounter.increment();
            _safeMint(msg.sender, tokenId);
        }
    }

    function prepurchaseMint(
        address account,
        uint256 quantity
    ) external onlyOwner {
        require(
            _prepurchaseTokenIdCounter.current() + quantity <=
                reservedPrepurchaseMintCount,
            "The quantity exceeds the remaining amount of prepurchase mint capacity."
        );
        for (uint256 i = 0; i < quantity; i++) {
            uint256 tokenId = _prepurchaseTokenIdCounter.current();
            _prepurchaseTokenIdCounter.increment();
            _safeMint(account, tokenId + reservedTeamMintCount);
        }
    }

    function isPresaleActive() public view returns (bool) {
        return
            block.timestamp >= presaleStartTimestamp &&
            block.timestamp < saleStartTimestamp;
    }

    function isSaleActive() public view returns (bool) {
        return
            block.timestamp >= saleStartTimestamp &&
            block.timestamp <= saleEndTimestamp;
    }

    function totalSupply() public view returns (uint256) {
        return
            _teamTokenIdCounter.current() +
            _prepurchaseTokenIdCounter.current() +
            _tokenIdCounter.current();
    }

    function setSaleDates(
        uint256 presale,
        uint256 start,
        uint256 end
    ) external onlyOwner {
        require(
            start >= presale,
            "The sale start date should be greater than or equal to the presale start date"
        );
        require(
            end > start,
            "The sale end date should be greater than the sale start date"
        );

        presaleStartTimestamp = presale;
        saleStartTimestamp = start;
        saleEndTimestamp = end;
    }

    function setBaseURI(string memory newBaseURI) external onlyOwner {
        _baseUri = newBaseURI;
    }

    function setContractURI(string memory newContractURI) external onlyOwner {
        _contractURI = newContractURI;
    }

    function setPrice(uint256 newPrice) external onlyOwner {
        price = newPrice;
    }

    function withdraw(uint256 amount) external onlyOwner {
        require(payable(msg.sender).send(amount));
    }

    function withdrawAll() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    function setSignerAddress(address signerAddress) public onlyOwner {
        _signerAddress = signerAddress;
    }

    function setOperatorFilteringEnabled(bool value) public onlyOwner {
        operatorFilteringEnabled = value;
    }

    function recoverAddress(
        address account,
        bytes calldata signature
    ) public view returns (address) {
        return
            ECDSA.recover(
                _hashTypedDataV4(
                    keccak256(
                        abi.encode(
                            keccak256("InnerCircle(address account)"),
                            account
                        )
                    )
                ),
                signature
            );
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

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

    function _operatorFilteringEnabled() internal view override returns (bool) {
        return operatorFilteringEnabled;
    }

    function _isPriorityOperator(
        address operator
    ) internal pure override returns (bool) {
        return operator == address(0x1E0049783F008A0085193E00003D00cd54003c71);
    }

    // @dev Operator Filterer overrides

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"prepurchaseMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleMintCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStartTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMintCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"recoverAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedPrepurchaseMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reservedTeamMintCount","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":"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":[],"name":"saleEndTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleStartTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"string","name":"newContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"presale","type":"uint256"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"name":"setSaleDates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signerAddress","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610140604052670214e8348c4f0000600f55636399f300601055636399fa0860115563657ad6f0601255610ebd6013556064601455605b6015556003601655600a6017553480156200005057600080fd5b506040518060400160405280600d81526020017f5361696e74526f626f74696361000000000000000000000000000000000000008152506040518060400160405280600581526020017f312e302e300000000000000000000000000000000000000000000000000000008152506040518060400160405280600d81526020017f5361696e74526f626f74696361000000000000000000000000000000000000008152506040518060400160405280600281526020017f5352000000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000141929190620004fa565b5080600190805190602001906200015a929190620004fa565b50505060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660a08181525050620001c68184846200034c60201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1660601b81525050806101208181525050505050505062000232620002266200038860201b60201c565b6200039060201b60201c565b620002426200045660201b60201c565b6001601860006101000a81548160ff02191690831515021790555073105727dc52481abc7316eb29711f9bcf1f18f7c6600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060600160405280603581526020016200583360359139600b9080519060200190620002e3929190620004fa565b506040518060600160405280602481526020016200580f60249139600a908051906020019062000315929190620004fa565b506015546014546200032891906200063a565b600e81905550600e5460135462000340919062000697565b600d81905550620007ae565b6000838383463060405160200162000369959493929190620005dd565b6040516020818303038152906040528051906020012090509392505050565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200047d733cc6cdda760b79bafa08df41ecfa224f810dceb660016200047f60201b60201c565b565b637d3e3dbe8260601b60601c925081620004ae5782620004a657634420e4869050620004ae565b63a0af290390505b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af1620004f0578060005160e01c1415620004ef57600080fd5b5b6000602452505050565b82805462000508906200071a565b90600052602060002090601f0160209004810192826200052c576000855562000578565b82601f106200054757805160ff191683800117855562000578565b8280016001018555821562000578579182015b82811115620005775782518255916020019190600101906200055a565b5b5090506200058791906200058b565b5090565b5b80821115620005a65760008160009055506001016200058c565b5090565b620005b581620006d2565b82525050565b620005c681620006e6565b82525050565b620005d78162000710565b82525050565b600060a082019050620005f46000830188620005bb565b620006036020830187620005bb565b620006126040830186620005bb565b620006216060830185620005cc565b620006306080830184620005aa565b9695505050505050565b6000620006478262000710565b9150620006548362000710565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200068c576200068b62000750565b5b828201905092915050565b6000620006a48262000710565b9150620006b18362000710565b925082821015620006c757620006c662000750565b5b828203905092915050565b6000620006df82620006f0565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200073357607f821691505b602082108114156200074a57620007496200077f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160a05160c05160601c60e051610100516101205161500e6200080160003960006127f80152600061283a015260006128190152600061274e015260006127a4015260006127cd015261500e6000f3fe6080604052600436106102725760003560e01c80638405c5191161014f578063b7c0b8e8116100c1578063e8a3d4851161007a578063e8a3d48514610941578063e985e9c51461096c578063ebf318a7146109a9578063f2fde38b146109d4578063fb796e6c146109fd578063fd24a85414610a2857610272565b8063b7c0b8e814610833578063b88d4fde1461085c578063c68deb7e14610885578063c87b56dd146108b0578063d3b4c5e3146108ed578063d5abeb011461091657610272565b8063938e3d7b11610113578063938e3d7b1461074457806395d89b411461076d578063a035b1fe14610798578063a0712d68146107c3578063a22cb465146107df578063af243f701461080857610272565b80638405c51914610671578063853828b6146106ae5780638bf7859b146106c55780638da5cb5b146106f057806391b7f5ed1461071b57610272565b80633c276d86116101e857806360d938dc116101ac57806360d938dc1461054d5780636352211e146105785780636c41bc36146105b557806370a08231146105f2578063715018a61461062f578063802e5cb31461064657610272565b80633c276d861461047a57806342842e0e146104a55780634ea37fec146104ce57806355f804b3146104f9578063564566a81461052257610272565b80630d48f0231161023a5780630d48f0231461036e57806318160ddd1461039757806323b872dd146103c25780632a3870e8146103eb5780632e1a7d4d146104285780632fbba1151461045157610272565b806301ffc9a714610277578063046dc166146102b457806306fdde03146102dd578063081812fc14610308578063095ea7b314610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613826565b610a44565b6040516102ab9190613f44565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d691906135d6565b610b26565b005b3480156102e957600080fd5b506102f2610b72565b6040516102ff9190614020565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a91906138c9565b610c04565b60405161033c9190613edd565b60405180910390f35b34801561035157600080fd5b5061036c600480360381019061036791906137b9565b610c4a565b005b34801561037a57600080fd5b50610395600480360381019061039091906137b9565b610c7f565b005b3480156103a357600080fd5b506103ac610d33565b6040516103b991906143a2565b60405180910390f35b3480156103ce57600080fd5b506103e960048036038101906103e49190613643565b610d6c565b005b3480156103f757600080fd5b50610412600480360381019061040d9190613759565b610dd7565b60405161041f9190613edd565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a91906138c9565b610e80565b005b34801561045d57600080fd5b50610478600480360381019061047391906138c9565b610ec9565b005b34801561048657600080fd5b5061048f610f6f565b60405161049c91906143a2565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c79190613643565b610f75565b005b3480156104da57600080fd5b506104e3610fe0565b6040516104f091906143a2565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190613880565b610fe6565b005b34801561052e57600080fd5b50610537611008565b6040516105449190613f44565b60405180910390f35b34801561055957600080fd5b50610562611023565b60405161056f9190613f44565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a91906138c9565b61103d565b6040516105ac9190613edd565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d791906135d6565b6110c4565b6040516105e991906143a2565b60405180910390f35b3480156105fe57600080fd5b50610619600480360381019061061491906135d6565b6110dc565b60405161062691906143a2565b60405180910390f35b34801561063b57600080fd5b50610644611194565b005b34801561065257600080fd5b5061065b6111a8565b60405161066891906143a2565b60405180910390f35b34801561067d57600080fd5b50610698600480360381019061069391906135d6565b6111ae565b6040516106a591906143a2565b60405180910390f35b3480156106ba57600080fd5b506106c36111c6565b005b3480156106d157600080fd5b506106da61120e565b6040516106e791906143a2565b60405180910390f35b3480156106fc57600080fd5b50610705611214565b6040516107129190613edd565b60405180910390f35b34801561072757600080fd5b50610742600480360381019061073d91906138c9565b61123e565b005b34801561075057600080fd5b5061076b60048036038101906107669190613880565b611250565b005b34801561077957600080fd5b50610782611272565b60405161078f9190614020565b60405180910390f35b3480156107a457600080fd5b506107ad611304565b6040516107ba91906143a2565b60405180910390f35b6107dd60048036038101906107d891906138c9565b61130a565b005b3480156107eb57600080fd5b5061080660048036038101906108019190613719565b61150a565b005b34801561081457600080fd5b5061081d61153f565b60405161082a91906143a2565b60405180910390f35b34801561083f57600080fd5b5061085a600480360381019061085591906137f9565b611545565b005b34801561086857600080fd5b50610883600480360381019061087e9190613696565b61156a565b005b34801561089157600080fd5b5061089a6115d7565b6040516108a791906143a2565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d291906138c9565b6115dd565b6040516108e49190614020565b60405180910390f35b3480156108f957600080fd5b50610914600480360381019061090f9190613956565b611645565b005b34801561092257600080fd5b5061092b6116ec565b60405161093891906143a2565b60405180910390f35b34801561094d57600080fd5b506109566116f2565b6040516109639190614020565b60405180910390f35b34801561097857600080fd5b50610993600480360381019061098e9190613603565b611784565b6040516109a09190613f44565b60405180910390f35b3480156109b557600080fd5b506109be611818565b6040516109cb91906143a2565b60405180910390f35b3480156109e057600080fd5b506109fb60048036038101906109f691906135d6565b61181e565b005b348015610a0957600080fd5b50610a126118a2565b604051610a1f9190613f44565b60405180910390f35b610a426004803603810190610a3d91906138f6565b6118b5565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1f5750610b1e82611b51565b5b9050919050565b610b2e611bbb565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008054610b8190614638565b80601f0160208091040260200160405190810160405280929190818152602001828054610bad90614638565b8015610bfa5780601f10610bcf57610100808354040283529160200191610bfa565b820191906000526020600020905b815481529060010190602001808311610bdd57829003601f168201915b5050505050905090565b6000610c0f82611c39565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610c5481611c84565b610c7057610c60611cd0565b15610c6f57610c6e81611ce7565b5b5b610c7a8383611d2b565b505050565b610c87611bbb565b60155481610c956008611e43565b610c9f9190614487565b1115610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd790614062565b60405180910390fd5b60005b81811015610d2e576000610cf76008611e43565b9050610d036008611e51565b610d1a8460145483610d159190614487565b611e67565b508080610d269061469b565b915050610ce3565b505050565b6000610d3f6009611e43565b610d496008611e43565b610d536007611e43565b610d5d9190614487565b610d679190614487565b905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dc657610da933611c84565b610dc557610db5611cd0565b15610dc457610dc333611ce7565b5b5b5b610dd1848484611e85565b50505050565b6000610e77610e2d7fdba3bac90908edbead0cfe95ec31e6cd8f1e9257d8d54e0f87de12cacc00acef86604051602001610e12929190613f5f565b60405160208183030381529060405280519060200120611ee5565b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611eff565b90509392505050565b610e88611bbb565b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610ec657600080fd5b50565b610ed1611bbb565b60145481610edf6007611e43565b610ee99190614487565b1115610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190614282565b60405180910390fd5b60005b81811015610f6b576000610f416007611e43565b9050610f4d6007611e51565b610f573382611e67565b508080610f639061469b565b915050610f2d565b5050565b60115481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fcf57610fb233611c84565b610fce57610fbe611cd0565b15610fcd57610fcc33611ce7565b5b5b5b610fda848484611f26565b50505050565b60105481565b610fee611bbb565b80600a9080519060200190611004929190613394565b5050565b6000601154421015801561101e57506012544211155b905090565b60006010544210158015611038575060115442105b905090565b60008061104983611f46565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b2906142e2565b60405180910390fd5b80915050919050565b60196020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561114d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114490614262565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61119c611bbb565b6111a66000611f83565b565b60165481565b601a6020528060005260406000206000915090505481565b6111ce611bbb565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061120c57600080fd5b565b60175481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611246611bbb565b80600f8190555050565b611258611bbb565b80600b908051906020019061126e929190613394565b5050565b60606001805461128190614638565b80601f01602080910402602001604051908101604052809291908181526020018280546112ad90614638565b80156112fa5780601f106112cf576101008083540402835291602001916112fa565b820191906000526020600020905b8154815290600101906020018083116112dd57829003601f168201915b5050505050905090565b600f5481565b611312611008565b611351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134890614382565b60405180910390fd5b600d548161135f6009611e43565b6113699190614487565b11156113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a190614202565b60405180910390fd5b60175481601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f89190614487565b1115611439576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611430906140e2565b60405180910390fd5b80600f5461144791906144dd565b341015611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090614302565b60405180910390fd5b80601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114d89190614487565b9250508190555060005b81811015611506576114f333612049565b80806114fe9061469b565b9150506114e2565b5050565b8161151481611c84565b61153057611520611cd0565b1561152f5761152e81611ce7565b5b5b61153a838361207c565b505050565b60145481565b61154d611bbb565b80601860006101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146115c4576115a733611c84565b6115c3576115b3611cd0565b156115c2576115c133611ce7565b5b5b5b6115d085858585612092565b5050505050565b60125481565b60606115e882611c39565b60006115f26120f4565b90506000815111611612576040518060200160405280600081525061163d565b8061161c84612186565b60405160200161162d929190613e82565b6040516020818303038152906040525b915050919050565b61164d611bbb565b82821015611690576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611687906141e2565b60405180910390fd5b8181116116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c990614182565b60405180910390fd5b826010819055508160118190555080601281905550505050565b60135481565b6060600b805461170190614638565b80601f016020809104026020016040519081016040528092919081815260200182805461172d90614638565b801561177a5780601f1061174f5761010080835404028352916020019161177a565b820191906000526020600020905b81548152906001019060200180831161175d57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60155481565b611826611bbb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188d90614102565b60405180910390fd5b61189f81611f83565b50565b601860009054906101000a900460ff1681565b6118bd611023565b6118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f390614162565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611940338484610dd7565b73ffffffffffffffffffffffffffffffffffffffff1614611996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198d90614362565b60405180910390fd5b600d54836119a46009611e43565b6119ae9190614487565b11156119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690614242565b60405180910390fd5b60165483601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a3d9190614487565b1115611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a75906140e2565b60405180910390fd5b600f5483611a8c91906144dd565b341015611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac590614302565b60405180910390fd5b82601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b1d9190614487565b9250508190555060005b83811015611b4b57611b3833612049565b8080611b439061469b565b915050611b27565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611bc361225e565b73ffffffffffffffffffffffffffffffffffffffff16611be1611214565b73ffffffffffffffffffffffffffffffffffffffff1614611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e906142c2565b60405180910390fd5b565b611c4281612266565b611c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c78906142e2565b60405180910390fd5b50565b6000731e0049783f008a0085193e00003d00cd54003c7173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050919050565b6000601860009054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611d23573d6000803e3d6000fd5b6000603a5250565b6000611d368261103d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9e90614322565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611dc661225e565b73ffffffffffffffffffffffffffffffffffffffff161480611df55750611df481611def61225e565b611784565b5b611e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2b90614342565b60405180910390fd5b611e3e83836122a7565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b611e81828260405180602001604052806000815250612360565b5050565b611e96611e9061225e565b826123bb565b611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc90614082565b60405180910390fd5b611ee0838383612450565b505050565b6000611ef8611ef261274a565b83612864565b9050919050565b6000806000611f0e8585612897565b91509150611f1b816128e9565b819250505092915050565b611f418383836040518060200160405280600081525061156a565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006120556009611e43565b90506120616009611e51565b61207882600e54836120739190614487565b611e67565b5050565b61208e61208761225e565b8383612a57565b5050565b6120a361209d61225e565b836123bb565b6120e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d990614082565b60405180910390fd5b6120ee84848484612bc4565b50505050565b6060600a805461210390614638565b80601f016020809104026020016040519081016040528092919081815260200182805461212f90614638565b801561217c5780601f106121515761010080835404028352916020019161217c565b820191906000526020600020905b81548152906001019060200180831161215f57829003601f168201915b5050505050905090565b60606000600161219584612c20565b01905060008167ffffffffffffffff8111156121b4576121b36147aa565b5b6040519080825280601f01601f1916602001820160405280156121e65781602001600182028036833780820191505090505b509050600082602001820190505b600115612253578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161223d5761223c61471d565b5b049450600085141561224e57612253565b6121f4565b819350505050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff1661228883611f46565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661231a8361103d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61236a8383612d73565b6123776000848484612f91565b6123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad906140c2565b60405180910390fd5b505050565b6000806123c78361103d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061240957506124088185611784565b5b8061244757508373ffffffffffffffffffffffffffffffffffffffff1661242f84610c04565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124708261103d565b73ffffffffffffffffffffffffffffffffffffffff16146124c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bd90614122565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252d906141a2565b60405180910390fd5b6125438383836001613128565b8273ffffffffffffffffffffffffffffffffffffffff166125638261103d565b73ffffffffffffffffffffffffffffffffffffffff16146125b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b090614122565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612745838383600161324e565b505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161480156127c657507f000000000000000000000000000000000000000000000000000000000000000046145b156127f3577f00000000000000000000000000000000000000000000000000000000000000009050612861565b61285e7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000613254565b90505b90565b60008282604051602001612879929190613ea6565b60405160208183030381529060405280519060200120905092915050565b6000806041835114156128d95760008060006020860151925060408601519150606086015160001a90506128cd8782858561328e565b945094505050506128e2565b60006002915091505b9250929050565b600060048111156128fd576128fc61474c565b5b8160048111156129105761290f61474c565b5b141561291b57612a54565b6001600481111561292f5761292e61474c565b5b8160048111156129425761294161474c565b5b1415612983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297a90614042565b60405180910390fd5b600260048111156129975761299661474c565b5b8160048111156129aa576129a961474c565b5b14156129eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e2906140a2565b60405180910390fd5b600360048111156129ff576129fe61474c565b5b816004811115612a1257612a1161474c565b5b1415612a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4a90614222565b60405180910390fd5b5b50565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abd906141c2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612bb79190613f44565b60405180910390a3505050565b612bcf848484612450565b612bdb84848484612f91565b612c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c11906140c2565b60405180910390fd5b50505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612c7e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612c7457612c7361471d565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612cbb576d04ee2d6d415b85acef81000000008381612cb157612cb061471d565b5b0492506020810190505b662386f26fc100008310612cea57662386f26fc100008381612ce057612cdf61471d565b5b0492506010810190505b6305f5e1008310612d13576305f5e1008381612d0957612d0861471d565b5b0492506008810190505b6127108310612d38576127108381612d2e57612d2d61471d565b5b0492506004810190505b60648310612d5b5760648381612d5157612d5061471d565b5b0492506002810190505b600a8310612d6a576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dda906142a2565b60405180910390fd5b612dec81612266565b15612e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2390614142565b60405180910390fd5b612e3a600083836001613128565b612e4381612266565b15612e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7a90614142565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f8d60008383600161324e565b5050565b6000612fb28473ffffffffffffffffffffffffffffffffffffffff16613371565b1561311b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fdb61225e565b8786866040518563ffffffff1660e01b8152600401612ffd9493929190613ef8565b602060405180830381600087803b15801561301757600080fd5b505af192505050801561304857506040513d601f19601f820116820180604052508101906130459190613853565b60015b6130cb573d8060008114613078576040519150601f19603f3d011682016040523d82523d6000602084013e61307d565b606091505b506000815114156130c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ba906140c2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613120565b600190505b949350505050565b600181111561324857600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146131bc5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131b49190614537565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132475780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461323f9190614487565b925050819055505b5b50505050565b50505050565b6000838383463060405160200161326f959493929190613f88565b6040516020818303038152906040528051906020012090509392505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156132c9576000600391509150613368565b6000600187878787604051600081526020016040526040516132ee9493929190613fdb565b6020604051602081039080840390855afa158015613310573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561335f57600060019250925050613368565b80600092509250505b94509492505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546133a090614638565b90600052602060002090601f0160209004810192826133c25760008555613409565b82601f106133db57805160ff1916838001178555613409565b82800160010185558215613409579182015b828111156134085782518255916020019190600101906133ed565b5b509050613416919061341a565b5090565b5b8082111561343357600081600090555060010161341b565b5090565b600061344a613445846143e2565b6143bd565b905082815260208101848484011115613466576134656147e8565b5b6134718482856145f6565b509392505050565b600061348c61348784614413565b6143bd565b9050828152602081018484840111156134a8576134a76147e8565b5b6134b38482856145f6565b509392505050565b6000813590506134ca81614f7c565b92915050565b6000813590506134df81614f93565b92915050565b6000813590506134f481614faa565b92915050565b60008151905061350981614faa565b92915050565b60008083601f840112613525576135246147de565b5b8235905067ffffffffffffffff811115613542576135416147d9565b5b60208301915083600182028301111561355e5761355d6147e3565b5b9250929050565b600082601f83011261357a576135796147de565b5b813561358a848260208601613437565b91505092915050565b600082601f8301126135a8576135a76147de565b5b81356135b8848260208601613479565b91505092915050565b6000813590506135d081614fc1565b92915050565b6000602082840312156135ec576135eb6147f2565b5b60006135fa848285016134bb565b91505092915050565b6000806040838503121561361a576136196147f2565b5b6000613628858286016134bb565b9250506020613639858286016134bb565b9150509250929050565b60008060006060848603121561365c5761365b6147f2565b5b600061366a868287016134bb565b935050602061367b868287016134bb565b925050604061368c868287016135c1565b9150509250925092565b600080600080608085870312156136b0576136af6147f2565b5b60006136be878288016134bb565b94505060206136cf878288016134bb565b93505060406136e0878288016135c1565b925050606085013567ffffffffffffffff811115613701576137006147ed565b5b61370d87828801613565565b91505092959194509250565b600080604083850312156137305761372f6147f2565b5b600061373e858286016134bb565b925050602061374f858286016134d0565b9150509250929050565b600080600060408486031215613772576137716147f2565b5b6000613780868287016134bb565b935050602084013567ffffffffffffffff8111156137a1576137a06147ed565b5b6137ad8682870161350f565b92509250509250925092565b600080604083850312156137d0576137cf6147f2565b5b60006137de858286016134bb565b92505060206137ef858286016135c1565b9150509250929050565b60006020828403121561380f5761380e6147f2565b5b600061381d848285016134d0565b91505092915050565b60006020828403121561383c5761383b6147f2565b5b600061384a848285016134e5565b91505092915050565b600060208284031215613869576138686147f2565b5b6000613877848285016134fa565b91505092915050565b600060208284031215613896576138956147f2565b5b600082013567ffffffffffffffff8111156138b4576138b36147ed565b5b6138c084828501613593565b91505092915050565b6000602082840312156138df576138de6147f2565b5b60006138ed848285016135c1565b91505092915050565b60008060006040848603121561390f5761390e6147f2565b5b600061391d868287016135c1565b935050602084013567ffffffffffffffff81111561393e5761393d6147ed565b5b61394a8682870161350f565b92509250509250925092565b60008060006060848603121561396f5761396e6147f2565b5b600061397d868287016135c1565b935050602061398e868287016135c1565b925050604061399f868287016135c1565b9150509250925092565b6139b28161456b565b82525050565b6139c18161457d565b82525050565b6139d081614589565b82525050565b6139e76139e282614589565b6146e4565b82525050565b60006139f882614444565b613a02818561445a565b9350613a12818560208601614605565b613a1b816147f7565b840191505092915050565b6000613a318261444f565b613a3b818561446b565b9350613a4b818560208601614605565b613a54816147f7565b840191505092915050565b6000613a6a8261444f565b613a74818561447c565b9350613a84818560208601614605565b80840191505092915050565b6000613a9d60188361446b565b9150613aa882614808565b602082019050919050565b6000613ac060478361446b565b9150613acb82614831565b606082019050919050565b6000613ae3602d8361446b565b9150613aee826148a6565b604082019050919050565b6000613b06601f8361446b565b9150613b11826148f5565b602082019050919050565b6000613b2960328361446b565b9150613b348261491e565b604082019050919050565b6000613b4c605d8361446b565b9150613b578261496d565b606082019050919050565b6000613b6f60268361446b565b9150613b7a826149e2565b604082019050919050565b6000613b9260258361446b565b9150613b9d82614a31565b604082019050919050565b6000613bb5601c8361446b565b9150613bc082614a80565b602082019050919050565b6000613bd8601a8361446b565b9150613be382614aa9565b602082019050919050565b6000613bfb60028361447c565b9150613c0682614ad2565b600282019050919050565b6000613c1e603c8361446b565b9150613c2982614afb565b604082019050919050565b6000613c4160248361446b565b9150613c4c82614b4a565b604082019050919050565b6000613c6460198361446b565b9150613c6f82614b99565b602082019050919050565b6000613c87604d8361446b565b9150613c9282614bc2565b606082019050919050565b6000613caa60428361446b565b9150613cb582614c37565b606082019050919050565b6000613ccd60228361446b565b9150613cd882614cac565b604082019050919050565b6000613cf0603d8361446b565b9150613cfb82614cfb565b604082019050919050565b6000613d1360298361446b565b9150613d1e82614d4a565b604082019050919050565b6000613d3660408361446b565b9150613d4182614d99565b604082019050919050565b6000613d5960208361446b565b9150613d6482614de8565b602082019050919050565b6000613d7c60208361446b565b9150613d8782614e11565b602082019050919050565b6000613d9f60188361446b565b9150613daa82614e3a565b602082019050919050565b6000613dc2600f8361446b565b9150613dcd82614e63565b602082019050919050565b6000613de560218361446b565b9150613df082614e8c565b604082019050919050565b6000613e08603d8361446b565b9150613e1382614edb565b604082019050919050565b6000613e2b60128361446b565b9150613e3682614f2a565b602082019050919050565b6000613e4e60178361446b565b9150613e5982614f53565b602082019050919050565b613e6d816145df565b82525050565b613e7c816145e9565b82525050565b6000613e8e8285613a5f565b9150613e9a8284613a5f565b91508190509392505050565b6000613eb182613bee565b9150613ebd82856139d6565b602082019150613ecd82846139d6565b6020820191508190509392505050565b6000602082019050613ef260008301846139a9565b92915050565b6000608082019050613f0d60008301876139a9565b613f1a60208301866139a9565b613f276040830185613e64565b8181036060830152613f3981846139ed565b905095945050505050565b6000602082019050613f5960008301846139b8565b92915050565b6000604082019050613f7460008301856139c7565b613f8160208301846139a9565b9392505050565b600060a082019050613f9d60008301886139c7565b613faa60208301876139c7565b613fb760408301866139c7565b613fc46060830185613e64565b613fd160808301846139a9565b9695505050505050565b6000608082019050613ff060008301876139c7565b613ffd6020830186613e73565b61400a60408301856139c7565b61401760608301846139c7565b95945050505050565b6000602082019050818103600083015261403a8184613a26565b905092915050565b6000602082019050818103600083015261405b81613a90565b9050919050565b6000602082019050818103600083015261407b81613ab3565b9050919050565b6000602082019050818103600083015261409b81613ad6565b9050919050565b600060208201905081810360008301526140bb81613af9565b9050919050565b600060208201905081810360008301526140db81613b1c565b9050919050565b600060208201905081810360008301526140fb81613b3f565b9050919050565b6000602082019050818103600083015261411b81613b62565b9050919050565b6000602082019050818103600083015261413b81613b85565b9050919050565b6000602082019050818103600083015261415b81613ba8565b9050919050565b6000602082019050818103600083015261417b81613bcb565b9050919050565b6000602082019050818103600083015261419b81613c11565b9050919050565b600060208201905081810360008301526141bb81613c34565b9050919050565b600060208201905081810360008301526141db81613c57565b9050919050565b600060208201905081810360008301526141fb81613c7a565b9050919050565b6000602082019050818103600083015261421b81613c9d565b9050919050565b6000602082019050818103600083015261423b81613cc0565b9050919050565b6000602082019050818103600083015261425b81613ce3565b9050919050565b6000602082019050818103600083015261427b81613d06565b9050919050565b6000602082019050818103600083015261429b81613d29565b9050919050565b600060208201905081810360008301526142bb81613d4c565b9050919050565b600060208201905081810360008301526142db81613d6f565b9050919050565b600060208201905081810360008301526142fb81613d92565b9050919050565b6000602082019050818103600083015261431b81613db5565b9050919050565b6000602082019050818103600083015261433b81613dd8565b9050919050565b6000602082019050818103600083015261435b81613dfb565b9050919050565b6000602082019050818103600083015261437b81613e1e565b9050919050565b6000602082019050818103600083015261439b81613e41565b9050919050565b60006020820190506143b76000830184613e64565b92915050565b60006143c76143d8565b90506143d3828261466a565b919050565b6000604051905090565b600067ffffffffffffffff8211156143fd576143fc6147aa565b5b614406826147f7565b9050602081019050919050565b600067ffffffffffffffff82111561442e5761442d6147aa565b5b614437826147f7565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614492826145df565b915061449d836145df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144d2576144d16146ee565b5b828201905092915050565b60006144e8826145df565b91506144f3836145df565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561452c5761452b6146ee565b5b828202905092915050565b6000614542826145df565b915061454d836145df565b9250828210156145605761455f6146ee565b5b828203905092915050565b6000614576826145bf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614623578082015181840152602081019050614608565b83811115614632576000848401525b50505050565b6000600282049050600182168061465057607f821691505b602082108114156146645761466361477b565b5b50919050565b614673826147f7565b810181811067ffffffffffffffff82111715614692576146916147aa565b5b80604052505050565b60006146a6826145df565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146d9576146d86146ee565b5b600182019050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f546865207175616e746974792065786365656473207468652072656d61696e6960008201527f6e6720616d6f756e74206f66207072657075726368617365206d696e7420636160208201527f7061636974792e00000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f546865207175616e746974792065786365656473207468652072656d61696e6960008201527f6e6720616d6f756e74206f66206d696e747320617661696c61626c6520746f2060208201527f796f75722077616c6c65742e20547279206665776572206d696e74732e000000604082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5468652070726573616c65206973206e6f74206163746976652e000000000000600082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f5468652073616c6520656e6420646174652073686f756c64206265206772656160008201527f746572207468616e207468652073616c65207374617274206461746500000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5468652073616c6520737461727420646174652073686f756c6420626520677260008201527f6561746572207468616e206f7220657175616c20746f2074686520707265736160208201527f6c65207374617274206461746500000000000000000000000000000000000000604082015250565b7f546865207175616e746974792065786365656473207468652072656d61696e6960008201527f6e6720616d6f756e74206f66207075626c69632073616c65206361706163697460208201527f792e000000000000000000000000000000000000000000000000000000000000604082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f546865207175616e7469747920657863656564732074686520616d6f756e742060008201527f6f662072656d61696e696e67206d696e747320617661696c61626c652e000000602082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f546865207175616e746974792065786365656473207468652072656d61696e6960008201527f6e6720616d6f756e74206f66207465616d206d696e742063617061636974792e602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4e6f7420656e6f756768204554482e0000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f496e76616c6964207369676e61747572652e0000000000000000000000000000600082015250565b7f5468652073616c65206973206e6f74206163746976652e000000000000000000600082015250565b614f858161456b565b8114614f9057600080fd5b50565b614f9c8161457d565b8114614fa757600080fd5b50565b614fb381614593565b8114614fbe57600080fd5b50565b614fca816145df565b8114614fd557600080fd5b5056fea26469706673582212209ebfa8021bb8132fe97c6d6fb24ed9553df688f909887c1d1ac6582718de1f8764736f6c6343000807003368747470733a2f2f7361696e74726f626f746963612e636f6d2f6170692f746f6b656e2f697066733a2f2f516d54536952395641443357314b43694168736e366d747a537738577541663371746e6561357736465672317550

Deployed Bytecode

0x6080604052600436106102725760003560e01c80638405c5191161014f578063b7c0b8e8116100c1578063e8a3d4851161007a578063e8a3d48514610941578063e985e9c51461096c578063ebf318a7146109a9578063f2fde38b146109d4578063fb796e6c146109fd578063fd24a85414610a2857610272565b8063b7c0b8e814610833578063b88d4fde1461085c578063c68deb7e14610885578063c87b56dd146108b0578063d3b4c5e3146108ed578063d5abeb011461091657610272565b8063938e3d7b11610113578063938e3d7b1461074457806395d89b411461076d578063a035b1fe14610798578063a0712d68146107c3578063a22cb465146107df578063af243f701461080857610272565b80638405c51914610671578063853828b6146106ae5780638bf7859b146106c55780638da5cb5b146106f057806391b7f5ed1461071b57610272565b80633c276d86116101e857806360d938dc116101ac57806360d938dc1461054d5780636352211e146105785780636c41bc36146105b557806370a08231146105f2578063715018a61461062f578063802e5cb31461064657610272565b80633c276d861461047a57806342842e0e146104a55780634ea37fec146104ce57806355f804b3146104f9578063564566a81461052257610272565b80630d48f0231161023a5780630d48f0231461036e57806318160ddd1461039757806323b872dd146103c25780632a3870e8146103eb5780632e1a7d4d146104285780632fbba1151461045157610272565b806301ffc9a714610277578063046dc166146102b457806306fdde03146102dd578063081812fc14610308578063095ea7b314610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613826565b610a44565b6040516102ab9190613f44565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d691906135d6565b610b26565b005b3480156102e957600080fd5b506102f2610b72565b6040516102ff9190614020565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a91906138c9565b610c04565b60405161033c9190613edd565b60405180910390f35b34801561035157600080fd5b5061036c600480360381019061036791906137b9565b610c4a565b005b34801561037a57600080fd5b50610395600480360381019061039091906137b9565b610c7f565b005b3480156103a357600080fd5b506103ac610d33565b6040516103b991906143a2565b60405180910390f35b3480156103ce57600080fd5b506103e960048036038101906103e49190613643565b610d6c565b005b3480156103f757600080fd5b50610412600480360381019061040d9190613759565b610dd7565b60405161041f9190613edd565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a91906138c9565b610e80565b005b34801561045d57600080fd5b50610478600480360381019061047391906138c9565b610ec9565b005b34801561048657600080fd5b5061048f610f6f565b60405161049c91906143a2565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c79190613643565b610f75565b005b3480156104da57600080fd5b506104e3610fe0565b6040516104f091906143a2565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190613880565b610fe6565b005b34801561052e57600080fd5b50610537611008565b6040516105449190613f44565b60405180910390f35b34801561055957600080fd5b50610562611023565b60405161056f9190613f44565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a91906138c9565b61103d565b6040516105ac9190613edd565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d791906135d6565b6110c4565b6040516105e991906143a2565b60405180910390f35b3480156105fe57600080fd5b50610619600480360381019061061491906135d6565b6110dc565b60405161062691906143a2565b60405180910390f35b34801561063b57600080fd5b50610644611194565b005b34801561065257600080fd5b5061065b6111a8565b60405161066891906143a2565b60405180910390f35b34801561067d57600080fd5b50610698600480360381019061069391906135d6565b6111ae565b6040516106a591906143a2565b60405180910390f35b3480156106ba57600080fd5b506106c36111c6565b005b3480156106d157600080fd5b506106da61120e565b6040516106e791906143a2565b60405180910390f35b3480156106fc57600080fd5b50610705611214565b6040516107129190613edd565b60405180910390f35b34801561072757600080fd5b50610742600480360381019061073d91906138c9565b61123e565b005b34801561075057600080fd5b5061076b60048036038101906107669190613880565b611250565b005b34801561077957600080fd5b50610782611272565b60405161078f9190614020565b60405180910390f35b3480156107a457600080fd5b506107ad611304565b6040516107ba91906143a2565b60405180910390f35b6107dd60048036038101906107d891906138c9565b61130a565b005b3480156107eb57600080fd5b5061080660048036038101906108019190613719565b61150a565b005b34801561081457600080fd5b5061081d61153f565b60405161082a91906143a2565b60405180910390f35b34801561083f57600080fd5b5061085a600480360381019061085591906137f9565b611545565b005b34801561086857600080fd5b50610883600480360381019061087e9190613696565b61156a565b005b34801561089157600080fd5b5061089a6115d7565b6040516108a791906143a2565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d291906138c9565b6115dd565b6040516108e49190614020565b60405180910390f35b3480156108f957600080fd5b50610914600480360381019061090f9190613956565b611645565b005b34801561092257600080fd5b5061092b6116ec565b60405161093891906143a2565b60405180910390f35b34801561094d57600080fd5b506109566116f2565b6040516109639190614020565b60405180910390f35b34801561097857600080fd5b50610993600480360381019061098e9190613603565b611784565b6040516109a09190613f44565b60405180910390f35b3480156109b557600080fd5b506109be611818565b6040516109cb91906143a2565b60405180910390f35b3480156109e057600080fd5b506109fb60048036038101906109f691906135d6565b61181e565b005b348015610a0957600080fd5b50610a126118a2565b604051610a1f9190613f44565b60405180910390f35b610a426004803603810190610a3d91906138f6565b6118b5565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1f5750610b1e82611b51565b5b9050919050565b610b2e611bbb565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008054610b8190614638565b80601f0160208091040260200160405190810160405280929190818152602001828054610bad90614638565b8015610bfa5780601f10610bcf57610100808354040283529160200191610bfa565b820191906000526020600020905b815481529060010190602001808311610bdd57829003601f168201915b5050505050905090565b6000610c0f82611c39565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610c5481611c84565b610c7057610c60611cd0565b15610c6f57610c6e81611ce7565b5b5b610c7a8383611d2b565b505050565b610c87611bbb565b60155481610c956008611e43565b610c9f9190614487565b1115610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd790614062565b60405180910390fd5b60005b81811015610d2e576000610cf76008611e43565b9050610d036008611e51565b610d1a8460145483610d159190614487565b611e67565b508080610d269061469b565b915050610ce3565b505050565b6000610d3f6009611e43565b610d496008611e43565b610d536007611e43565b610d5d9190614487565b610d679190614487565b905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dc657610da933611c84565b610dc557610db5611cd0565b15610dc457610dc333611ce7565b5b5b5b610dd1848484611e85565b50505050565b6000610e77610e2d7fdba3bac90908edbead0cfe95ec31e6cd8f1e9257d8d54e0f87de12cacc00acef86604051602001610e12929190613f5f565b60405160208183030381529060405280519060200120611ee5565b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611eff565b90509392505050565b610e88611bbb565b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610ec657600080fd5b50565b610ed1611bbb565b60145481610edf6007611e43565b610ee99190614487565b1115610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190614282565b60405180910390fd5b60005b81811015610f6b576000610f416007611e43565b9050610f4d6007611e51565b610f573382611e67565b508080610f639061469b565b915050610f2d565b5050565b60115481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fcf57610fb233611c84565b610fce57610fbe611cd0565b15610fcd57610fcc33611ce7565b5b5b5b610fda848484611f26565b50505050565b60105481565b610fee611bbb565b80600a9080519060200190611004929190613394565b5050565b6000601154421015801561101e57506012544211155b905090565b60006010544210158015611038575060115442105b905090565b60008061104983611f46565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b2906142e2565b60405180910390fd5b80915050919050565b60196020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561114d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114490614262565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61119c611bbb565b6111a66000611f83565b565b60165481565b601a6020528060005260406000206000915090505481565b6111ce611bbb565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061120c57600080fd5b565b60175481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611246611bbb565b80600f8190555050565b611258611bbb565b80600b908051906020019061126e929190613394565b5050565b60606001805461128190614638565b80601f01602080910402602001604051908101604052809291908181526020018280546112ad90614638565b80156112fa5780601f106112cf576101008083540402835291602001916112fa565b820191906000526020600020905b8154815290600101906020018083116112dd57829003601f168201915b5050505050905090565b600f5481565b611312611008565b611351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134890614382565b60405180910390fd5b600d548161135f6009611e43565b6113699190614487565b11156113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a190614202565b60405180910390fd5b60175481601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113f89190614487565b1115611439576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611430906140e2565b60405180910390fd5b80600f5461144791906144dd565b341015611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090614302565b60405180910390fd5b80601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114d89190614487565b9250508190555060005b81811015611506576114f333612049565b80806114fe9061469b565b9150506114e2565b5050565b8161151481611c84565b61153057611520611cd0565b1561152f5761152e81611ce7565b5b5b61153a838361207c565b505050565b60145481565b61154d611bbb565b80601860006101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146115c4576115a733611c84565b6115c3576115b3611cd0565b156115c2576115c133611ce7565b5b5b5b6115d085858585612092565b5050505050565b60125481565b60606115e882611c39565b60006115f26120f4565b90506000815111611612576040518060200160405280600081525061163d565b8061161c84612186565b60405160200161162d929190613e82565b6040516020818303038152906040525b915050919050565b61164d611bbb565b82821015611690576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611687906141e2565b60405180910390fd5b8181116116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c990614182565b60405180910390fd5b826010819055508160118190555080601281905550505050565b60135481565b6060600b805461170190614638565b80601f016020809104026020016040519081016040528092919081815260200182805461172d90614638565b801561177a5780601f1061174f5761010080835404028352916020019161177a565b820191906000526020600020905b81548152906001019060200180831161175d57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60155481565b611826611bbb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188d90614102565b60405180910390fd5b61189f81611f83565b50565b601860009054906101000a900460ff1681565b6118bd611023565b6118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f390614162565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611940338484610dd7565b73ffffffffffffffffffffffffffffffffffffffff1614611996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198d90614362565b60405180910390fd5b600d54836119a46009611e43565b6119ae9190614487565b11156119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690614242565b60405180910390fd5b60165483601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a3d9190614487565b1115611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a75906140e2565b60405180910390fd5b600f5483611a8c91906144dd565b341015611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac590614302565b60405180910390fd5b82601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b1d9190614487565b9250508190555060005b83811015611b4b57611b3833612049565b8080611b439061469b565b915050611b27565b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611bc361225e565b73ffffffffffffffffffffffffffffffffffffffff16611be1611214565b73ffffffffffffffffffffffffffffffffffffffff1614611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e906142c2565b60405180910390fd5b565b611c4281612266565b611c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c78906142e2565b60405180910390fd5b50565b6000731e0049783f008a0085193e00003d00cd54003c7173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050919050565b6000601860009054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611d23573d6000803e3d6000fd5b6000603a5250565b6000611d368261103d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9e90614322565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611dc661225e565b73ffffffffffffffffffffffffffffffffffffffff161480611df55750611df481611def61225e565b611784565b5b611e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2b90614342565b60405180910390fd5b611e3e83836122a7565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b611e81828260405180602001604052806000815250612360565b5050565b611e96611e9061225e565b826123bb565b611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc90614082565b60405180910390fd5b611ee0838383612450565b505050565b6000611ef8611ef261274a565b83612864565b9050919050565b6000806000611f0e8585612897565b91509150611f1b816128e9565b819250505092915050565b611f418383836040518060200160405280600081525061156a565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006120556009611e43565b90506120616009611e51565b61207882600e54836120739190614487565b611e67565b5050565b61208e61208761225e565b8383612a57565b5050565b6120a361209d61225e565b836123bb565b6120e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d990614082565b60405180910390fd5b6120ee84848484612bc4565b50505050565b6060600a805461210390614638565b80601f016020809104026020016040519081016040528092919081815260200182805461212f90614638565b801561217c5780601f106121515761010080835404028352916020019161217c565b820191906000526020600020905b81548152906001019060200180831161215f57829003601f168201915b5050505050905090565b60606000600161219584612c20565b01905060008167ffffffffffffffff8111156121b4576121b36147aa565b5b6040519080825280601f01601f1916602001820160405280156121e65781602001600182028036833780820191505090505b509050600082602001820190505b600115612253578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161223d5761223c61471d565b5b049450600085141561224e57612253565b6121f4565b819350505050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff1661228883611f46565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661231a8361103d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61236a8383612d73565b6123776000848484612f91565b6123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad906140c2565b60405180910390fd5b505050565b6000806123c78361103d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061240957506124088185611784565b5b8061244757508373ffffffffffffffffffffffffffffffffffffffff1661242f84610c04565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124708261103d565b73ffffffffffffffffffffffffffffffffffffffff16146124c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bd90614122565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252d906141a2565b60405180910390fd5b6125438383836001613128565b8273ffffffffffffffffffffffffffffffffffffffff166125638261103d565b73ffffffffffffffffffffffffffffffffffffffff16146125b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b090614122565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612745838383600161324e565b505050565b60007f000000000000000000000000329e850bf9be06b6e2452e98449a8af74d9e74dc73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161480156127c657507f000000000000000000000000000000000000000000000000000000000000000146145b156127f3577ff07d59941b14e7ada511a176b6a330a82842cae94edc984b6c35a4abaf11cf059050612861565b61285e7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f614d43a1e5180f6580e857d35f8090304f59c61b2f067a4542c8ce6085c9017c7f06c015bd22b4c69690933c1058878ebdfef31f9aaae40bbe86d8a09fe1b2972c613254565b90505b90565b60008282604051602001612879929190613ea6565b60405160208183030381529060405280519060200120905092915050565b6000806041835114156128d95760008060006020860151925060408601519150606086015160001a90506128cd8782858561328e565b945094505050506128e2565b60006002915091505b9250929050565b600060048111156128fd576128fc61474c565b5b8160048111156129105761290f61474c565b5b141561291b57612a54565b6001600481111561292f5761292e61474c565b5b8160048111156129425761294161474c565b5b1415612983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297a90614042565b60405180910390fd5b600260048111156129975761299661474c565b5b8160048111156129aa576129a961474c565b5b14156129eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e2906140a2565b60405180910390fd5b600360048111156129ff576129fe61474c565b5b816004811115612a1257612a1161474c565b5b1415612a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4a90614222565b60405180910390fd5b5b50565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abd906141c2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612bb79190613f44565b60405180910390a3505050565b612bcf848484612450565b612bdb84848484612f91565b612c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c11906140c2565b60405180910390fd5b50505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612c7e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612c7457612c7361471d565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612cbb576d04ee2d6d415b85acef81000000008381612cb157612cb061471d565b5b0492506020810190505b662386f26fc100008310612cea57662386f26fc100008381612ce057612cdf61471d565b5b0492506010810190505b6305f5e1008310612d13576305f5e1008381612d0957612d0861471d565b5b0492506008810190505b6127108310612d38576127108381612d2e57612d2d61471d565b5b0492506004810190505b60648310612d5b5760648381612d5157612d5061471d565b5b0492506002810190505b600a8310612d6a576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dda906142a2565b60405180910390fd5b612dec81612266565b15612e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2390614142565b60405180910390fd5b612e3a600083836001613128565b612e4381612266565b15612e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7a90614142565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f8d60008383600161324e565b5050565b6000612fb28473ffffffffffffffffffffffffffffffffffffffff16613371565b1561311b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fdb61225e565b8786866040518563ffffffff1660e01b8152600401612ffd9493929190613ef8565b602060405180830381600087803b15801561301757600080fd5b505af192505050801561304857506040513d601f19601f820116820180604052508101906130459190613853565b60015b6130cb573d8060008114613078576040519150601f19603f3d011682016040523d82523d6000602084013e61307d565b606091505b506000815114156130c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ba906140c2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613120565b600190505b949350505050565b600181111561324857600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146131bc5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131b49190614537565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132475780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461323f9190614487565b925050819055505b5b50505050565b50505050565b6000838383463060405160200161326f959493929190613f88565b6040516020818303038152906040528051906020012090509392505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156132c9576000600391509150613368565b6000600187878787604051600081526020016040526040516132ee9493929190613fdb565b6020604051602081039080840390855afa158015613310573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561335f57600060019250925050613368565b80600092509250505b94509492505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546133a090614638565b90600052602060002090601f0160209004810192826133c25760008555613409565b82601f106133db57805160ff1916838001178555613409565b82800160010185558215613409579182015b828111156134085782518255916020019190600101906133ed565b5b509050613416919061341a565b5090565b5b8082111561343357600081600090555060010161341b565b5090565b600061344a613445846143e2565b6143bd565b905082815260208101848484011115613466576134656147e8565b5b6134718482856145f6565b509392505050565b600061348c61348784614413565b6143bd565b9050828152602081018484840111156134a8576134a76147e8565b5b6134b38482856145f6565b509392505050565b6000813590506134ca81614f7c565b92915050565b6000813590506134df81614f93565b92915050565b6000813590506134f481614faa565b92915050565b60008151905061350981614faa565b92915050565b60008083601f840112613525576135246147de565b5b8235905067ffffffffffffffff811115613542576135416147d9565b5b60208301915083600182028301111561355e5761355d6147e3565b5b9250929050565b600082601f83011261357a576135796147de565b5b813561358a848260208601613437565b91505092915050565b600082601f8301126135a8576135a76147de565b5b81356135b8848260208601613479565b91505092915050565b6000813590506135d081614fc1565b92915050565b6000602082840312156135ec576135eb6147f2565b5b60006135fa848285016134bb565b91505092915050565b6000806040838503121561361a576136196147f2565b5b6000613628858286016134bb565b9250506020613639858286016134bb565b9150509250929050565b60008060006060848603121561365c5761365b6147f2565b5b600061366a868287016134bb565b935050602061367b868287016134bb565b925050604061368c868287016135c1565b9150509250925092565b600080600080608085870312156136b0576136af6147f2565b5b60006136be878288016134bb565b94505060206136cf878288016134bb565b93505060406136e0878288016135c1565b925050606085013567ffffffffffffffff811115613701576137006147ed565b5b61370d87828801613565565b91505092959194509250565b600080604083850312156137305761372f6147f2565b5b600061373e858286016134bb565b925050602061374f858286016134d0565b9150509250929050565b600080600060408486031215613772576137716147f2565b5b6000613780868287016134bb565b935050602084013567ffffffffffffffff8111156137a1576137a06147ed565b5b6137ad8682870161350f565b92509250509250925092565b600080604083850312156137d0576137cf6147f2565b5b60006137de858286016134bb565b92505060206137ef858286016135c1565b9150509250929050565b60006020828403121561380f5761380e6147f2565b5b600061381d848285016134d0565b91505092915050565b60006020828403121561383c5761383b6147f2565b5b600061384a848285016134e5565b91505092915050565b600060208284031215613869576138686147f2565b5b6000613877848285016134fa565b91505092915050565b600060208284031215613896576138956147f2565b5b600082013567ffffffffffffffff8111156138b4576138b36147ed565b5b6138c084828501613593565b91505092915050565b6000602082840312156138df576138de6147f2565b5b60006138ed848285016135c1565b91505092915050565b60008060006040848603121561390f5761390e6147f2565b5b600061391d868287016135c1565b935050602084013567ffffffffffffffff81111561393e5761393d6147ed565b5b61394a8682870161350f565b92509250509250925092565b60008060006060848603121561396f5761396e6147f2565b5b600061397d868287016135c1565b935050602061398e868287016135c1565b925050604061399f868287016135c1565b9150509250925092565b6139b28161456b565b82525050565b6139c18161457d565b82525050565b6139d081614589565b82525050565b6139e76139e282614589565b6146e4565b82525050565b60006139f882614444565b613a02818561445a565b9350613a12818560208601614605565b613a1b816147f7565b840191505092915050565b6000613a318261444f565b613a3b818561446b565b9350613a4b818560208601614605565b613a54816147f7565b840191505092915050565b6000613a6a8261444f565b613a74818561447c565b9350613a84818560208601614605565b80840191505092915050565b6000613a9d60188361446b565b9150613aa882614808565b602082019050919050565b6000613ac060478361446b565b9150613acb82614831565b606082019050919050565b6000613ae3602d8361446b565b9150613aee826148a6565b604082019050919050565b6000613b06601f8361446b565b9150613b11826148f5565b602082019050919050565b6000613b2960328361446b565b9150613b348261491e565b604082019050919050565b6000613b4c605d8361446b565b9150613b578261496d565b606082019050919050565b6000613b6f60268361446b565b9150613b7a826149e2565b604082019050919050565b6000613b9260258361446b565b9150613b9d82614a31565b604082019050919050565b6000613bb5601c8361446b565b9150613bc082614a80565b602082019050919050565b6000613bd8601a8361446b565b9150613be382614aa9565b602082019050919050565b6000613bfb60028361447c565b9150613c0682614ad2565b600282019050919050565b6000613c1e603c8361446b565b9150613c2982614afb565b604082019050919050565b6000613c4160248361446b565b9150613c4c82614b4a565b604082019050919050565b6000613c6460198361446b565b9150613c6f82614b99565b602082019050919050565b6000613c87604d8361446b565b9150613c9282614bc2565b606082019050919050565b6000613caa60428361446b565b9150613cb582614c37565b606082019050919050565b6000613ccd60228361446b565b9150613cd882614cac565b604082019050919050565b6000613cf0603d8361446b565b9150613cfb82614cfb565b604082019050919050565b6000613d1360298361446b565b9150613d1e82614d4a565b604082019050919050565b6000613d3660408361446b565b9150613d4182614d99565b604082019050919050565b6000613d5960208361446b565b9150613d6482614de8565b602082019050919050565b6000613d7c60208361446b565b9150613d8782614e11565b602082019050919050565b6000613d9f60188361446b565b9150613daa82614e3a565b602082019050919050565b6000613dc2600f8361446b565b9150613dcd82614e63565b602082019050919050565b6000613de560218361446b565b9150613df082614e8c565b604082019050919050565b6000613e08603d8361446b565b9150613e1382614edb565b604082019050919050565b6000613e2b60128361446b565b9150613e3682614f2a565b602082019050919050565b6000613e4e60178361446b565b9150613e5982614f53565b602082019050919050565b613e6d816145df565b82525050565b613e7c816145e9565b82525050565b6000613e8e8285613a5f565b9150613e9a8284613a5f565b91508190509392505050565b6000613eb182613bee565b9150613ebd82856139d6565b602082019150613ecd82846139d6565b6020820191508190509392505050565b6000602082019050613ef260008301846139a9565b92915050565b6000608082019050613f0d60008301876139a9565b613f1a60208301866139a9565b613f276040830185613e64565b8181036060830152613f3981846139ed565b905095945050505050565b6000602082019050613f5960008301846139b8565b92915050565b6000604082019050613f7460008301856139c7565b613f8160208301846139a9565b9392505050565b600060a082019050613f9d60008301886139c7565b613faa60208301876139c7565b613fb760408301866139c7565b613fc46060830185613e64565b613fd160808301846139a9565b9695505050505050565b6000608082019050613ff060008301876139c7565b613ffd6020830186613e73565b61400a60408301856139c7565b61401760608301846139c7565b95945050505050565b6000602082019050818103600083015261403a8184613a26565b905092915050565b6000602082019050818103600083015261405b81613a90565b9050919050565b6000602082019050818103600083015261407b81613ab3565b9050919050565b6000602082019050818103600083015261409b81613ad6565b9050919050565b600060208201905081810360008301526140bb81613af9565b9050919050565b600060208201905081810360008301526140db81613b1c565b9050919050565b600060208201905081810360008301526140fb81613b3f565b9050919050565b6000602082019050818103600083015261411b81613b62565b9050919050565b6000602082019050818103600083015261413b81613b85565b9050919050565b6000602082019050818103600083015261415b81613ba8565b9050919050565b6000602082019050818103600083015261417b81613bcb565b9050919050565b6000602082019050818103600083015261419b81613c11565b9050919050565b600060208201905081810360008301526141bb81613c34565b9050919050565b600060208201905081810360008301526141db81613c57565b9050919050565b600060208201905081810360008301526141fb81613c7a565b9050919050565b6000602082019050818103600083015261421b81613c9d565b9050919050565b6000602082019050818103600083015261423b81613cc0565b9050919050565b6000602082019050818103600083015261425b81613ce3565b9050919050565b6000602082019050818103600083015261427b81613d06565b9050919050565b6000602082019050818103600083015261429b81613d29565b9050919050565b600060208201905081810360008301526142bb81613d4c565b9050919050565b600060208201905081810360008301526142db81613d6f565b9050919050565b600060208201905081810360008301526142fb81613d92565b9050919050565b6000602082019050818103600083015261431b81613db5565b9050919050565b6000602082019050818103600083015261433b81613dd8565b9050919050565b6000602082019050818103600083015261435b81613dfb565b9050919050565b6000602082019050818103600083015261437b81613e1e565b9050919050565b6000602082019050818103600083015261439b81613e41565b9050919050565b60006020820190506143b76000830184613e64565b92915050565b60006143c76143d8565b90506143d3828261466a565b919050565b6000604051905090565b600067ffffffffffffffff8211156143fd576143fc6147aa565b5b614406826147f7565b9050602081019050919050565b600067ffffffffffffffff82111561442e5761442d6147aa565b5b614437826147f7565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614492826145df565b915061449d836145df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144d2576144d16146ee565b5b828201905092915050565b60006144e8826145df565b91506144f3836145df565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561452c5761452b6146ee565b5b828202905092915050565b6000614542826145df565b915061454d836145df565b9250828210156145605761455f6146ee565b5b828203905092915050565b6000614576826145bf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614623578082015181840152602081019050614608565b83811115614632576000848401525b50505050565b6000600282049050600182168061465057607f821691505b602082108114156146645761466361477b565b5b50919050565b614673826147f7565b810181811067ffffffffffffffff82111715614692576146916147aa565b5b80604052505050565b60006146a6826145df565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146d9576146d86146ee565b5b600182019050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f546865207175616e746974792065786365656473207468652072656d61696e6960008201527f6e6720616d6f756e74206f66207072657075726368617365206d696e7420636160208201527f7061636974792e00000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f546865207175616e746974792065786365656473207468652072656d61696e6960008201527f6e6720616d6f756e74206f66206d696e747320617661696c61626c6520746f2060208201527f796f75722077616c6c65742e20547279206665776572206d696e74732e000000604082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5468652070726573616c65206973206e6f74206163746976652e000000000000600082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f5468652073616c6520656e6420646174652073686f756c64206265206772656160008201527f746572207468616e207468652073616c65207374617274206461746500000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5468652073616c6520737461727420646174652073686f756c6420626520677260008201527f6561746572207468616e206f7220657175616c20746f2074686520707265736160208201527f6c65207374617274206461746500000000000000000000000000000000000000604082015250565b7f546865207175616e746974792065786365656473207468652072656d61696e6960008201527f6e6720616d6f756e74206f66207075626c69632073616c65206361706163697460208201527f792e000000000000000000000000000000000000000000000000000000000000604082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f546865207175616e7469747920657863656564732074686520616d6f756e742060008201527f6f662072656d61696e696e67206d696e747320617661696c61626c652e000000602082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f546865207175616e746974792065786365656473207468652072656d61696e6960008201527f6e6720616d6f756e74206f66207465616d206d696e742063617061636974792e602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4e6f7420656e6f756768204554482e0000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f496e76616c6964207369676e61747572652e0000000000000000000000000000600082015250565b7f5468652073616c65206973206e6f74206163746976652e000000000000000000600082015250565b614f858161456b565b8114614f9057600080fd5b50565b614f9c8161457d565b8114614fa757600080fd5b50565b614fb381614593565b8114614fbe57600080fd5b50565b614fca816145df565b8114614fd557600080fd5b5056fea26469706673582212209ebfa8021bb8132fe97c6d6fb24ed9553df688f909887c1d1ac6582718de1f8764736f6c63430008070033

Deployed Bytecode Sourcemap

75321:8612:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50962:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81530:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51890:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53402:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83083:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79208:589;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80186:214;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83273:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81778:500;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81284:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78733:467;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75808:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83478:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75752:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80944:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79999:179;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79805:186;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51600:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76195:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51331:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68685:103;;;;;;;;;;;;;:::i;:::-;;76060:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76255:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81405:117;;;;;;;;;;;;;:::i;:::-;;76102:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68037:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81186:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81057:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52059:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75710:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76861:734;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82874:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75954:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81653:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83691:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75861:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52234:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80408:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75914:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82286:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53871:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76003:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68943:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76150:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77603:926;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50962:305;51064:4;51116:25;51101:40;;;:11;:40;;;;:105;;;;51173:33;51158:48;;;:11;:48;;;;51101:105;:158;;;;51223:36;51247:11;51223:23;:36::i;:::-;51101:158;51081:178;;50962:305;;;:::o;81530:115::-;67923:13;:11;:13::i;:::-;81624::::1;81607:14;;:30;;;;;;;;;;;;;;;;;;81530:115:::0;:::o;51890:100::-;51944:13;51977:5;51970:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51890:100;:::o;53402:171::-;53478:7;53498:23;53513:7;53498:14;:23::i;:::-;53541:15;:24;53557:7;53541:24;;;;;;;;;;;;;;;;;;;;;53534:31;;53402:171;;;:::o;83083:182::-;83204:8;73092:29;73112:8;73092:19;:29::i;:::-;73087:122;;73142:27;:25;:27::i;:::-;73138:59;;;73171:26;73188:8;73171:16;:26::i;:::-;73138:59;73087:122;83225:32:::1;83239:8;83249:7;83225:13;:32::i;:::-;83083:182:::0;;;:::o;79208:589::-;67923:13;:11;:13::i;:::-;79413:28:::1;;79384:8;79345:36;:26;:34;:36::i;:::-;:47;;;;:::i;:::-;:96;;79323:217;;;;;;;;;;;;:::i;:::-;;;;;;;;;79556:9;79551:239;79575:8;79571:1;:12;79551:239;;;79605:15;79623:36;:26;:34;:36::i;:::-;79605:54;;79674:38;:26;:36;:38::i;:::-;79727:51;79737:7;79756:21;;79746:7;:31;;;;:::i;:::-;79727:9;:51::i;:::-;79590:200;79585:3;;;;;:::i;:::-;;;;79551:239;;;;79208:589:::0;;:::o;80186:214::-;80230:7;80367:25;:15;:23;:25::i;:::-;80315:36;:26;:34;:36::i;:::-;80270:29;:19;:27;:29::i;:::-;:81;;;;:::i;:::-;:122;;;;:::i;:::-;80250:142;;80186:214;:::o;83273:197::-;83408:4;72735:10;72727:18;;:4;:18;;;72723:184;;72767:31;72787:10;72767:19;:31::i;:::-;72762:134;;72823:27;:25;:27::i;:::-;72819:61;;;72852:28;72869:10;72852:16;:28::i;:::-;72819:61;72762:134;72723:184;83425:37:::1;83444:4;83450:2;83454:7;83425:18;:37::i;:::-;83273:197:::0;;;;:::o;81778:500::-;81891:7;81931:339;81963:264;82079:41;82151:7;82038:147;;;;;;;;;:::i;:::-;;;;;;;;;;;;;82002:206;;;;;;81963:16;:264::i;:::-;82246:9;;81931:339;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:13;:339::i;:::-;81911:359;;81778:500;;;;;:::o;81284:113::-;67923:13;:11;:13::i;:::-;81364:10:::1;81356:24;;:32;81381:6;81356:32;;;;;;;;;;;;;;;;;;;;;;;81348:41;;;::::0;::::1;;81284:113:::0;:::o;78733:467::-;67923:13;:11;:13::i;:::-;78865:21:::1;;78853:8;78821:29;:19;:27;:29::i;:::-;:40;;;;:::i;:::-;:65;;78799:179;;;;;;;;;;;;:::i;:::-;;;;;;;;;78994:9;78989:204;79013:8;79009:1;:12;78989:204;;;79043:15;79061:29;:19;:27;:29::i;:::-;79043:47;;79105:31;:19;:29;:31::i;:::-;79151:30;79161:10;79173:7;79151:9;:30::i;:::-;79028:165;79023:3;;;;;:::i;:::-;;;;78989:204;;;;78733:467:::0;:::o;75808:46::-;;;;:::o;83478:205::-;83617:4;72735:10;72727:18;;:4;:18;;;72723:184;;72767:31;72787:10;72767:19;:31::i;:::-;72762:134;;72823:27;:25;:27::i;:::-;72819:61;;;72852:28;72869:10;72852:16;:28::i;:::-;72819:61;72762:134;72723:184;83634:41:::1;83657:4;83663:2;83667:7;83634:22;:41::i;:::-;83478:205:::0;;;;:::o;75752:49::-;;;;:::o;80944:105::-;67923:13;:11;:13::i;:::-;81031:10:::1;81020:8;:21;;;;;;;;;;;;:::i;:::-;;80944:105:::0;:::o;79999:179::-;80044:4;80100:18;;80081:15;:37;;:89;;;;;80154:16;;80135:15;:35;;80081:89;80061:109;;79999:179;:::o;79805:186::-;79853:4;79909:21;;79890:15;:40;;:93;;;;;79965:18;;79947:15;:36;79890:93;79870:113;;79805:186;:::o;51600:223::-;51672:7;51692:13;51708:17;51717:7;51708:8;:17::i;:::-;51692:33;;51761:1;51744:19;;:5;:19;;;;51736:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;51810:5;51803:12;;;51600:223;;;:::o;76195:53::-;;;;;;;;;;;;;;;;;:::o;51331:207::-;51403:7;51448:1;51431:19;;:5;:19;;;;51423:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;51514:9;:16;51524:5;51514:16;;;;;;;;;;;;;;;;51507:23;;51331:207;;;:::o;68685:103::-;67923:13;:11;:13::i;:::-;68750:30:::1;68777:1;68750:18;:30::i;:::-;68685:103::o:0;76060:35::-;;;;:::o;76255:52::-;;;;;;;;;;;;;;;;;:::o;81405:117::-;67923:13;:11;:13::i;:::-;81474:10:::1;81466:24;;:47;81491:21;81466:47;;;;;;;;;;;;;;;;;;;;;;;81458:56;;;::::0;::::1;;81405:117::o:0;76102:39::-;;;;:::o;68037:87::-;68083:7;68110:6;;;;;;;;;;;68103:13;;68037:87;:::o;81186:90::-;67923:13;:11;:13::i;:::-;81260:8:::1;81252:5;:16;;;;81186:90:::0;:::o;81057:121::-;67923:13;:11;:13::i;:::-;81156:14:::1;81141:12;:29;;;;;;;;;;;;:::i;:::-;;81057:121:::0;:::o;52059:104::-;52115:13;52148:7;52141:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52059:104;:::o;75710:33::-;;;;:::o;76861:734::-;76929:14;:12;:14::i;:::-;76921:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;77044:12;;77032:8;77004:25;:15;:23;:25::i;:::-;:36;;;;:::i;:::-;:52;;76982:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;77227:19;;77215:8;77183:17;:29;77201:10;77183:29;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;:63;;77161:206;;;;;;;;;;;;:::i;:::-;;;;;;;;;77407:8;77399:5;;:16;;;;:::i;:::-;77386:9;:29;;77378:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;77481:8;77448:17;:29;77466:10;77448:29;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;77507:9;77502:86;77526:8;77522:1;:12;77502:86;;;77556:20;77565:10;77556:8;:20::i;:::-;77536:3;;;;;:::i;:::-;;;;77502:86;;;;76861:734;:::o;82874:201::-;83003:8;73092:29;73112:8;73092:19;:29::i;:::-;73087:122;;73142:27;:25;:27::i;:::-;73138:59;;;73171:26;73188:8;73171:16;:26::i;:::-;73138:59;73087:122;83024:43:::1;83048:8;83058;83024:23;:43::i;:::-;82874:201:::0;;;:::o;75954:42::-;;;;:::o;81653:117::-;67923:13;:11;:13::i;:::-;81757:5:::1;81730:24;;:32;;;;;;;;;;;;;;;;;;81653:117:::0;:::o;83691:239::-;83858:4;72735:10;72727:18;;:4;:18;;;72723:184;;72767:31;72787:10;72767:19;:31::i;:::-;72762:134;;72823:27;:25;:27::i;:::-;72819:61;;;72852:28;72869:10;72852:16;:28::i;:::-;72819:61;72762:134;72723:184;83875:47:::1;83898:4;83904:2;83908:7;83917:4;83875:22;:47::i;:::-;83691:239:::0;;;;;:::o;75861:44::-;;;;:::o;52234:281::-;52307:13;52333:23;52348:7;52333:14;:23::i;:::-;52369:21;52393:10;:8;:10::i;:::-;52369:34;;52445:1;52427:7;52421:21;:25;:86;;;;;;;;;;;;;;;;;52473:7;52482:18;:7;:16;:18::i;:::-;52456:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52421:86;52414:93;;;52234:281;;;:::o;80408:528::-;67923:13;:11;:13::i;:::-;80570:7:::1;80561:5;:16;;80539:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;80721:5;80715:3;:11;80693:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;80851:7;80827:21;:31;;;;80890:5;80869:18;:26;;;;80925:3;80906:16;:22;;;;80408:528:::0;;;:::o;75914:31::-;;;;:::o;82286:97::-;82330:13;82363:12;82356:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82286:97;:::o;53871:164::-;53968:4;53992:18;:25;54011:5;53992:25;;;;;;;;;;;;;;;:35;54018:8;53992:35;;;;;;;;;;;;;;;;;;;;;;;;;53985:42;;53871:164;;;;:::o;76003:48::-;;;;:::o;68943:201::-;67923:13;:11;:13::i;:::-;69052:1:::1;69032:22;;:8;:22;;;;69024:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;69108:28;69127:8;69108:18;:28::i;:::-;68943:201:::0;:::o;76150:36::-;;;;;;;;;;;;;:::o;77603:926::-;77729:17;:15;:17::i;:::-;77721:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;77851:14;;;;;;;;;;;77810:55;;:37;77825:10;77837:9;;77810:14;:37::i;:::-;:55;;;77788:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;77984:12;;77972:8;77944:25;:15;:23;:25::i;:::-;:36;;;;:::i;:::-;:52;;77922:163;;;;;;;;;;;;:::i;:::-;;;;;;;;;78163:16;;78151:8;78118:18;:30;78137:10;78118:30;;;;;;;;;;;;;;;;:41;;;;:::i;:::-;:61;;78096:204;;;;;;;;;;;;:::i;:::-;;;;;;;;;78343:5;;78332:8;:16;;;;:::i;:::-;78319:9;:29;;78311:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;78415:8;78381:18;:30;78400:10;78381:30;;;;;;;;;;;;;;;;:42;;;;;;;:::i;:::-;;;;;;;;78441:9;78436:86;78460:8;78456:1;:12;78436:86;;;78490:20;78499:10;78490:8;:20::i;:::-;78470:3;;;;;:::i;:::-;;;;78436:86;;;;77603:926;;;:::o;12264:157::-;12349:4;12388:25;12373:40;;;:11;:40;;;;12366:47;;12264:157;;;:::o;68202:132::-;68277:12;:10;:12::i;:::-;68266:23;;:7;:5;:7::i;:::-;:23;;;68258:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68202:132::o;63221:135::-;63303:16;63311:7;63303;:16::i;:::-;63295:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;63221:135;:::o;82633:190::-;82728:4;82772:42;82752:63;;:8;:63;;;82745:70;;82633:190;;;:::o;82500:125::-;82569:4;82593:24;;;;;;;;;;;82586:31;;82500:125;:::o;73325:1359::-;73718:22;73712:4;73705:36;73811:9;73805:4;73798:23;73886:8;73880:4;73873:22;74063:4;74057;74051;74045;74018:25;74011:5;74000:68;73990:274;;74184:16;74178:4;74172;74157:44;74232:16;74226:4;74219:30;73990:274;74664:1;74658:4;74651:15;73325:1359;:::o;52920:416::-;53001:13;53017:23;53032:7;53017:14;:23::i;:::-;53001:39;;53065:5;53059:11;;:2;:11;;;;53051:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;53159:5;53143:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;53168:37;53185:5;53192:12;:10;:12::i;:::-;53168:16;:37::i;:::-;53143:62;53121:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;53307:21;53316:2;53320:7;53307:8;:21::i;:::-;52990:346;52920:416;;:::o;19217:114::-;19282:7;19309;:14;;;19302:21;;19217:114;;;:::o;19339:127::-;19446:1;19428:7;:14;;;:19;;;;;;;;;;;19339:127;:::o;57725:110::-;57801:26;57811:2;57815:7;57801:26;;;;;;;;;;;;:9;:26::i;:::-;57725:110;;:::o;54102:335::-;54297:41;54316:12;:10;:12::i;:::-;54330:7;54297:18;:41::i;:::-;54289:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;54401:28;54411:4;54417:2;54421:7;54401:9;:28::i;:::-;54102:335;;;:::o;48230:167::-;48307:7;48334:55;48356:20;:18;:20::i;:::-;48378:10;48334:21;:55::i;:::-;48327:62;;48230:167;;;:::o;38765:231::-;38843:7;38864:17;38883:18;38905:27;38916:4;38922:9;38905:10;:27::i;:::-;38863:69;;;;38943:18;38955:5;38943:11;:18::i;:::-;38979:9;38972:16;;;;38765:231;;;;:::o;54508:185::-;54646:39;54663:4;54669:2;54673:7;54646:39;;;;;;;;;;;;:16;:39::i;:::-;54508:185;;;:::o;56394:117::-;56460:7;56487;:16;56495:7;56487:16;;;;;;;;;;;;;;;;;;;;;56480:23;;56394:117;;;:::o;69304:191::-;69378:16;69397:6;;;;;;;;;;;69378:25;;69423:8;69414:6;;:17;;;;;;;;;;;;;;;;;;69478:8;69447:40;;69468:8;69447:40;;;;;;;;;;;;69367:128;69304:191;:::o;78537:188::-;78587:15;78605:25;:15;:23;:25::i;:::-;78587:43;;78641:27;:15;:25;:27::i;:::-;78679:38;78689:2;78703:13;;78693:7;:23;;;;:::i;:::-;78679:9;:38::i;:::-;78576:149;78537:188;:::o;53645:155::-;53740:52;53759:12;:10;:12::i;:::-;53773:8;53783;53740:18;:52::i;:::-;53645:155;;:::o;54764:322::-;54938:41;54957:12;:10;:12::i;:::-;54971:7;54938:18;:41::i;:::-;54930:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;55040:38;55054:4;55060:2;55064:7;55073:4;55040:13;:38::i;:::-;54764:322;;;;:::o;82391:101::-;82443:13;82476:8;82469:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82391:101;:::o;33115:716::-;33171:13;33222:14;33259:1;33239:17;33250:5;33239:10;:17::i;:::-;:21;33222:38;;33275:20;33309:6;33298:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33275:41;;33331:11;33460:6;33456:2;33452:15;33444:6;33440:28;33433:35;;33497:288;33504:4;33497:288;;;33529:5;;;;;;;;33671:8;33666:2;33659:5;33655:14;33650:30;33645:3;33637:44;33727:2;33718:11;;;;;;:::i;:::-;;;;;33761:1;33752:5;:10;33748:21;;;33764:5;;33748:21;33497:288;;;33806:6;33799:13;;;;;33115:716;;;:::o;49341:98::-;49394:7;49421:10;49414:17;;49341:98;:::o;56824:128::-;56889:4;56942:1;56913:31;;:17;56922:7;56913:8;:17::i;:::-;:31;;;;56906:38;;56824:128;;;:::o;62500:174::-;62602:2;62575:15;:24;62591:7;62575:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;62658:7;62654:2;62620:46;;62629:23;62644:7;62629:14;:23::i;:::-;62620:46;;;;;;;;;;;;62500:174;;:::o;58062:319::-;58191:18;58197:2;58201:7;58191:5;:18::i;:::-;58242:53;58273:1;58277:2;58281:7;58290:4;58242:22;:53::i;:::-;58220:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;58062:319;;;:::o;57119:264::-;57212:4;57229:13;57245:23;57260:7;57245:14;:23::i;:::-;57229:39;;57298:5;57287:16;;:7;:16;;;:52;;;;57307:32;57324:5;57331:7;57307:16;:32::i;:::-;57287:52;:87;;;;57367:7;57343:31;;:20;57355:7;57343:11;:20::i;:::-;:31;;;57287:87;57279:96;;;57119:264;;;;:::o;61118:1263::-;61277:4;61250:31;;:23;61265:7;61250:14;:23::i;:::-;:31;;;61242:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;61356:1;61342:16;;:2;:16;;;;61334:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61412:42;61433:4;61439:2;61443:7;61452:1;61412:20;:42::i;:::-;61584:4;61557:31;;:23;61572:7;61557:14;:23::i;:::-;:31;;;61549:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;61702:15;:24;61718:7;61702:24;;;;;;;;;;;;61695:31;;;;;;;;;;;62197:1;62178:9;:15;62188:4;62178:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;62230:1;62213:9;:13;62223:2;62213:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;62272:2;62253:7;:16;62261:7;62253:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;62311:7;62307:2;62292:27;;62301:4;62292:27;;;;;;;;;;;;62332:41;62352:4;62358:2;62362:7;62371:1;62332:19;:41::i;:::-;61118:1263;;;:::o;47003:314::-;47056:7;47097:12;47080:29;;47088:4;47080:29;;;:66;;;;;47130:16;47113:13;:33;47080:66;47076:234;;;47170:24;47163:31;;;;47076:234;47234:64;47256:10;47268:12;47282:15;47234:21;:64::i;:::-;47227:71;;47003:314;;:::o;43567:196::-;43660:7;43726:15;43743:10;43697:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43687:68;;;;;;43680:75;;43567:196;;;;:::o;37216:747::-;37297:7;37306:12;37355:2;37335:9;:16;:22;37331:625;;;37374:9;37398;37422:7;37679:4;37668:9;37664:20;37658:27;37653:32;;37729:4;37718:9;37714:20;37708:27;37703:32;;37787:4;37776:9;37772:20;37766:27;37763:1;37758:36;37753:41;;37830:25;37841:4;37847:1;37850;37853;37830:10;:25::i;:::-;37823:32;;;;;;;;;37331:625;37904:1;37908:35;37888:56;;;;37216:747;;;;;;:::o;35609:521::-;35687:20;35678:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;35674:449;;;35724:7;;35674:449;35785:29;35776:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;35772:351;;;35831:34;;;;;;;;;;:::i;:::-;;;;;;;;35772:351;35896:35;35887:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;35883:240;;;35948:41;;;;;;;;;;:::i;:::-;;;;;;;;35883:240;36020:30;36011:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;36007:116;;;36067:44;;;;;;;;;;:::i;:::-;;;;;;;;36007:116;35609:521;;:::o;62817:315::-;62972:8;62963:17;;:5;:17;;;;62955:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;63059:8;63021:18;:25;63040:5;63021:25;;;;;;;;;;;;;;;:35;63047:8;63021:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;63105:8;63083:41;;63098:5;63083:41;;;63115:8;63083:41;;;;;;:::i;:::-;;;;;;;;62817:315;;;:::o;55967:313::-;56123:28;56133:4;56139:2;56143:7;56123:9;:28::i;:::-;56170:47;56193:4;56199:2;56203:7;56212:4;56170:22;:47::i;:::-;56162:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;55967:313;;;;:::o;29981:922::-;30034:7;30054:14;30071:1;30054:18;;30121:6;30112:5;:15;30108:102;;30157:6;30148:15;;;;;;:::i;:::-;;;;;30192:2;30182:12;;;;30108:102;30237:6;30228:5;:15;30224:102;;30273:6;30264:15;;;;;;:::i;:::-;;;;;30308:2;30298:12;;;;30224:102;30353:6;30344:5;:15;30340:102;;30389:6;30380:15;;;;;;:::i;:::-;;;;;30424:2;30414:12;;;;30340:102;30469:5;30460;:14;30456:99;;30504:5;30495:14;;;;;;:::i;:::-;;;;;30538:1;30528:11;;;;30456:99;30582:5;30573;:14;30569:99;;30617:5;30608:14;;;;;;:::i;:::-;;;;;30651:1;30641:11;;;;30569:99;30695:5;30686;:14;30682:99;;30730:5;30721:14;;;;;;:::i;:::-;;;;;30764:1;30754:11;;;;30682:99;30808:5;30799;:14;30795:66;;30844:1;30834:11;;;;30795:66;30889:6;30882:13;;;29981:922;;;:::o;58717:942::-;58811:1;58797:16;;:2;:16;;;;58789:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;58870:16;58878:7;58870;:16::i;:::-;58869:17;58861:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;58932:48;58961:1;58965:2;58969:7;58978:1;58932:20;:48::i;:::-;59079:16;59087:7;59079;:16::i;:::-;59078:17;59070:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59494:1;59477:9;:13;59487:2;59477:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;59538:2;59519:7;:16;59527:7;59519:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;59583:7;59579:2;59558:33;;59575:1;59558:33;;;;;;;;;;;;59604:47;59632:1;59636:2;59640:7;59649:1;59604:19;:47::i;:::-;58717:942;;:::o;63920:853::-;64074:4;64095:15;:2;:13;;;:15::i;:::-;64091:675;;;64147:2;64131:36;;;64168:12;:10;:12::i;:::-;64182:4;64188:7;64197:4;64131:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;64127:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64389:1;64372:6;:13;:18;64368:328;;;64415:60;;;;;;;;;;:::i;:::-;;;;;;;;64368:328;64646:6;64640:13;64631:6;64627:2;64623:15;64616:38;64127:584;64263:41;;;64253:51;;;:6;:51;;;;64246:58;;;;;64091:675;64750:4;64743:11;;63920:853;;;;;;;:::o;65505:410::-;65695:1;65683:9;:13;65679:229;;;65733:1;65717:18;;:4;:18;;;65713:87;;65775:9;65756;:15;65766:4;65756:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;65713:87;65832:1;65818:16;;:2;:16;;;65814:83;;65872:9;65855;:13;65865:2;65855:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;65814:83;65679:229;65505:410;;;;:::o;66637:158::-;;;;;:::o;47325:263::-;47469:7;47517:8;47527;47537:11;47550:13;47573:4;47506:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47496:84;;;;;;47489:91;;47325:263;;;;;:::o;40217:1520::-;40348:7;40357:12;41282:66;41277:1;41269:10;;:79;41265:163;;;41381:1;41385:30;41365:51;;;;;;41265:163;41525:14;41542:24;41552:4;41558:1;41561;41564;41542:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41525:41;;41599:1;41581:20;;:6;:20;;;41577:103;;;41634:1;41638:29;41618:50;;;;;;;41577:103;41700:6;41708:20;41692:37;;;;;40217:1520;;;;;;;;:::o;1233:326::-;1293:4;1550:1;1528:7;:19;;;:23;1521:30;;1233:326;;;:::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:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:552::-;1485:8;1495:6;1545:3;1538:4;1530:6;1526:17;1522:27;1512:122;;1553:79;;:::i;:::-;1512:122;1666:6;1653:20;1643:30;;1696:18;1688:6;1685:30;1682:117;;;1718:79;;:::i;:::-;1682:117;1832:4;1824:6;1820:17;1808:29;;1886:3;1878:4;1870:6;1866:17;1856:8;1852:32;1849:41;1846:128;;;1893:79;;:::i;:::-;1846:128;1428:552;;;;;:::o;1999:338::-;2054:5;2103:3;2096:4;2088:6;2084:17;2080:27;2070:122;;2111:79;;:::i;:::-;2070:122;2228:6;2215:20;2253:78;2327:3;2319:6;2312:4;2304:6;2300:17;2253:78;:::i;:::-;2244:87;;2060:277;1999:338;;;;:::o;2357:340::-;2413:5;2462:3;2455:4;2447:6;2443:17;2439:27;2429:122;;2470:79;;:::i;:::-;2429:122;2587:6;2574:20;2612:79;2687:3;2679:6;2672:4;2664:6;2660:17;2612:79;:::i;:::-;2603:88;;2419:278;2357:340;;;;:::o;2703:139::-;2749:5;2787:6;2774:20;2765:29;;2803:33;2830:5;2803:33;:::i;:::-;2703:139;;;;:::o;2848:329::-;2907:6;2956:2;2944:9;2935:7;2931:23;2927:32;2924:119;;;2962:79;;:::i;:::-;2924:119;3082:1;3107:53;3152:7;3143:6;3132:9;3128:22;3107:53;:::i;:::-;3097:63;;3053:117;2848:329;;;;:::o;3183:474::-;3251:6;3259;3308:2;3296:9;3287:7;3283:23;3279:32;3276:119;;;3314:79;;:::i;:::-;3276:119;3434:1;3459:53;3504:7;3495:6;3484:9;3480:22;3459:53;:::i;:::-;3449:63;;3405:117;3561:2;3587:53;3632:7;3623:6;3612:9;3608:22;3587:53;:::i;:::-;3577:63;;3532:118;3183:474;;;;;:::o;3663:619::-;3740:6;3748;3756;3805:2;3793:9;3784:7;3780:23;3776:32;3773:119;;;3811:79;;:::i;:::-;3773:119;3931:1;3956:53;4001:7;3992:6;3981:9;3977:22;3956:53;:::i;:::-;3946:63;;3902:117;4058:2;4084:53;4129:7;4120:6;4109:9;4105:22;4084:53;:::i;:::-;4074:63;;4029:118;4186:2;4212:53;4257:7;4248:6;4237:9;4233:22;4212:53;:::i;:::-;4202:63;;4157:118;3663:619;;;;;:::o;4288:943::-;4383:6;4391;4399;4407;4456:3;4444:9;4435:7;4431:23;4427:33;4424:120;;;4463:79;;:::i;:::-;4424:120;4583:1;4608:53;4653:7;4644:6;4633:9;4629:22;4608:53;:::i;:::-;4598:63;;4554:117;4710:2;4736:53;4781:7;4772:6;4761:9;4757:22;4736:53;:::i;:::-;4726:63;;4681:118;4838:2;4864:53;4909:7;4900:6;4889:9;4885:22;4864:53;:::i;:::-;4854:63;;4809:118;4994:2;4983:9;4979:18;4966:32;5025:18;5017:6;5014:30;5011:117;;;5047:79;;:::i;:::-;5011:117;5152:62;5206:7;5197:6;5186:9;5182:22;5152:62;:::i;:::-;5142:72;;4937:287;4288:943;;;;;;;:::o;5237:468::-;5302:6;5310;5359:2;5347:9;5338:7;5334:23;5330:32;5327:119;;;5365:79;;:::i;:::-;5327:119;5485:1;5510:53;5555:7;5546:6;5535:9;5531:22;5510:53;:::i;:::-;5500:63;;5456:117;5612:2;5638:50;5680:7;5671:6;5660:9;5656:22;5638:50;:::i;:::-;5628:60;;5583:115;5237:468;;;;;:::o;5711:672::-;5790:6;5798;5806;5855:2;5843:9;5834:7;5830:23;5826:32;5823:119;;;5861:79;;:::i;:::-;5823:119;5981:1;6006:53;6051:7;6042:6;6031:9;6027:22;6006:53;:::i;:::-;5996:63;;5952:117;6136:2;6125:9;6121:18;6108:32;6167:18;6159:6;6156:30;6153:117;;;6189:79;;:::i;:::-;6153:117;6302:64;6358:7;6349:6;6338:9;6334:22;6302:64;:::i;:::-;6284:82;;;;6079:297;5711:672;;;;;:::o;6389:474::-;6457:6;6465;6514:2;6502:9;6493:7;6489:23;6485:32;6482:119;;;6520:79;;:::i;:::-;6482:119;6640:1;6665:53;6710:7;6701:6;6690:9;6686:22;6665:53;:::i;:::-;6655:63;;6611:117;6767:2;6793:53;6838:7;6829:6;6818:9;6814:22;6793:53;:::i;:::-;6783:63;;6738:118;6389:474;;;;;:::o;6869:323::-;6925:6;6974:2;6962:9;6953:7;6949:23;6945:32;6942:119;;;6980:79;;:::i;:::-;6942:119;7100:1;7125:50;7167:7;7158:6;7147:9;7143:22;7125:50;:::i;:::-;7115:60;;7071:114;6869:323;;;;:::o;7198:327::-;7256:6;7305:2;7293:9;7284:7;7280:23;7276:32;7273:119;;;7311:79;;:::i;:::-;7273:119;7431:1;7456:52;7500:7;7491:6;7480:9;7476:22;7456:52;:::i;:::-;7446:62;;7402:116;7198:327;;;;:::o;7531:349::-;7600:6;7649:2;7637:9;7628:7;7624:23;7620:32;7617:119;;;7655:79;;:::i;:::-;7617:119;7775:1;7800:63;7855:7;7846:6;7835:9;7831:22;7800:63;:::i;:::-;7790:73;;7746:127;7531:349;;;;:::o;7886:509::-;7955:6;8004:2;7992:9;7983:7;7979:23;7975:32;7972:119;;;8010:79;;:::i;:::-;7972:119;8158:1;8147:9;8143:17;8130:31;8188:18;8180:6;8177:30;8174:117;;;8210:79;;:::i;:::-;8174:117;8315:63;8370:7;8361:6;8350:9;8346:22;8315:63;:::i;:::-;8305:73;;8101:287;7886:509;;;;:::o;8401:329::-;8460:6;8509:2;8497:9;8488:7;8484:23;8480:32;8477:119;;;8515:79;;:::i;:::-;8477:119;8635:1;8660:53;8705:7;8696:6;8685:9;8681:22;8660:53;:::i;:::-;8650:63;;8606:117;8401:329;;;;:::o;8736:672::-;8815:6;8823;8831;8880:2;8868:9;8859:7;8855:23;8851:32;8848:119;;;8886:79;;:::i;:::-;8848:119;9006:1;9031:53;9076:7;9067:6;9056:9;9052:22;9031:53;:::i;:::-;9021:63;;8977:117;9161:2;9150:9;9146:18;9133:32;9192:18;9184:6;9181:30;9178:117;;;9214:79;;:::i;:::-;9178:117;9327:64;9383:7;9374:6;9363:9;9359:22;9327:64;:::i;:::-;9309:82;;;;9104:297;8736:672;;;;;:::o;9414:619::-;9491:6;9499;9507;9556:2;9544:9;9535:7;9531:23;9527:32;9524:119;;;9562:79;;:::i;:::-;9524:119;9682:1;9707:53;9752:7;9743:6;9732:9;9728:22;9707:53;:::i;:::-;9697:63;;9653:117;9809:2;9835:53;9880:7;9871:6;9860:9;9856:22;9835:53;:::i;:::-;9825:63;;9780:118;9937:2;9963:53;10008:7;9999:6;9988:9;9984:22;9963:53;:::i;:::-;9953:63;;9908:118;9414:619;;;;;:::o;10039:118::-;10126:24;10144:5;10126:24;:::i;:::-;10121:3;10114:37;10039:118;;:::o;10163:109::-;10244:21;10259:5;10244:21;:::i;:::-;10239:3;10232:34;10163:109;;:::o;10278:118::-;10365:24;10383:5;10365:24;:::i;:::-;10360:3;10353:37;10278:118;;:::o;10402:157::-;10507:45;10527:24;10545:5;10527:24;:::i;:::-;10507:45;:::i;:::-;10502:3;10495:58;10402:157;;:::o;10565:360::-;10651:3;10679:38;10711:5;10679:38;:::i;:::-;10733:70;10796:6;10791:3;10733:70;:::i;:::-;10726:77;;10812:52;10857:6;10852:3;10845:4;10838:5;10834:16;10812:52;:::i;:::-;10889:29;10911:6;10889:29;:::i;:::-;10884:3;10880:39;10873:46;;10655:270;10565:360;;;;:::o;10931:364::-;11019:3;11047:39;11080:5;11047:39;:::i;:::-;11102:71;11166:6;11161:3;11102:71;:::i;:::-;11095:78;;11182:52;11227:6;11222:3;11215:4;11208:5;11204:16;11182:52;:::i;:::-;11259:29;11281:6;11259:29;:::i;:::-;11254:3;11250:39;11243:46;;11023:272;10931:364;;;;:::o;11301:377::-;11407:3;11435:39;11468:5;11435:39;:::i;:::-;11490:89;11572:6;11567:3;11490:89;:::i;:::-;11483:96;;11588:52;11633:6;11628:3;11621:4;11614:5;11610:16;11588:52;:::i;:::-;11665:6;11660:3;11656:16;11649:23;;11411:267;11301:377;;;;:::o;11684:366::-;11826:3;11847:67;11911:2;11906:3;11847:67;:::i;:::-;11840:74;;11923:93;12012:3;11923:93;:::i;:::-;12041:2;12036:3;12032:12;12025:19;;11684:366;;;:::o;12056:::-;12198:3;12219:67;12283:2;12278:3;12219:67;:::i;:::-;12212:74;;12295:93;12384:3;12295:93;:::i;:::-;12413:2;12408:3;12404:12;12397:19;;12056:366;;;:::o;12428:::-;12570:3;12591:67;12655:2;12650:3;12591:67;:::i;:::-;12584:74;;12667:93;12756:3;12667:93;:::i;:::-;12785:2;12780:3;12776:12;12769:19;;12428:366;;;:::o;12800:::-;12942:3;12963:67;13027:2;13022:3;12963:67;:::i;:::-;12956:74;;13039:93;13128:3;13039:93;:::i;:::-;13157:2;13152:3;13148:12;13141:19;;12800:366;;;:::o;13172:::-;13314:3;13335:67;13399:2;13394:3;13335:67;:::i;:::-;13328:74;;13411:93;13500:3;13411:93;:::i;:::-;13529:2;13524:3;13520:12;13513:19;;13172:366;;;:::o;13544:::-;13686:3;13707:67;13771:2;13766:3;13707:67;:::i;:::-;13700:74;;13783:93;13872:3;13783:93;:::i;:::-;13901:2;13896:3;13892:12;13885:19;;13544:366;;;:::o;13916:::-;14058:3;14079:67;14143:2;14138:3;14079:67;:::i;:::-;14072:74;;14155:93;14244:3;14155:93;:::i;:::-;14273:2;14268:3;14264:12;14257:19;;13916:366;;;:::o;14288:::-;14430:3;14451:67;14515:2;14510:3;14451:67;:::i;:::-;14444:74;;14527:93;14616:3;14527:93;:::i;:::-;14645:2;14640:3;14636:12;14629:19;;14288:366;;;:::o;14660:::-;14802:3;14823:67;14887:2;14882:3;14823:67;:::i;:::-;14816:74;;14899:93;14988:3;14899:93;:::i;:::-;15017:2;15012:3;15008:12;15001:19;;14660:366;;;:::o;15032:::-;15174:3;15195:67;15259:2;15254:3;15195:67;:::i;:::-;15188:74;;15271:93;15360:3;15271:93;:::i;:::-;15389:2;15384:3;15380:12;15373:19;;15032:366;;;:::o;15404:400::-;15564:3;15585:84;15667:1;15662:3;15585:84;:::i;:::-;15578:91;;15678:93;15767:3;15678:93;:::i;:::-;15796:1;15791:3;15787:11;15780:18;;15404:400;;;:::o;15810:366::-;15952:3;15973:67;16037:2;16032:3;15973:67;:::i;:::-;15966:74;;16049:93;16138:3;16049:93;:::i;:::-;16167:2;16162:3;16158:12;16151:19;;15810:366;;;:::o;16182:::-;16324:3;16345:67;16409:2;16404:3;16345:67;:::i;:::-;16338:74;;16421:93;16510:3;16421:93;:::i;:::-;16539:2;16534:3;16530:12;16523:19;;16182:366;;;:::o;16554:::-;16696:3;16717:67;16781:2;16776:3;16717:67;:::i;:::-;16710:74;;16793:93;16882:3;16793:93;:::i;:::-;16911:2;16906:3;16902:12;16895:19;;16554:366;;;:::o;16926:::-;17068:3;17089:67;17153:2;17148:3;17089:67;:::i;:::-;17082:74;;17165:93;17254:3;17165:93;:::i;:::-;17283:2;17278:3;17274:12;17267:19;;16926:366;;;:::o;17298:::-;17440:3;17461:67;17525:2;17520:3;17461:67;:::i;:::-;17454:74;;17537:93;17626:3;17537:93;:::i;:::-;17655:2;17650:3;17646:12;17639:19;;17298:366;;;:::o;17670:::-;17812:3;17833:67;17897:2;17892:3;17833:67;:::i;:::-;17826:74;;17909:93;17998:3;17909:93;:::i;:::-;18027:2;18022:3;18018:12;18011:19;;17670:366;;;:::o;18042:::-;18184:3;18205:67;18269:2;18264:3;18205:67;:::i;:::-;18198:74;;18281:93;18370:3;18281:93;:::i;:::-;18399:2;18394:3;18390:12;18383:19;;18042:366;;;:::o;18414:::-;18556:3;18577:67;18641:2;18636:3;18577:67;:::i;:::-;18570:74;;18653:93;18742:3;18653:93;:::i;:::-;18771:2;18766:3;18762:12;18755:19;;18414:366;;;:::o;18786:::-;18928:3;18949:67;19013:2;19008:3;18949:67;:::i;:::-;18942:74;;19025:93;19114:3;19025:93;:::i;:::-;19143:2;19138:3;19134:12;19127:19;;18786:366;;;:::o;19158:::-;19300:3;19321:67;19385:2;19380:3;19321:67;:::i;:::-;19314:74;;19397:93;19486:3;19397:93;:::i;:::-;19515:2;19510:3;19506:12;19499:19;;19158:366;;;:::o;19530:::-;19672:3;19693:67;19757:2;19752:3;19693:67;:::i;:::-;19686:74;;19769:93;19858:3;19769:93;:::i;:::-;19887:2;19882:3;19878:12;19871:19;;19530:366;;;:::o;19902:::-;20044:3;20065:67;20129:2;20124:3;20065:67;:::i;:::-;20058:74;;20141:93;20230:3;20141:93;:::i;:::-;20259:2;20254:3;20250:12;20243:19;;19902:366;;;:::o;20274:::-;20416:3;20437:67;20501:2;20496:3;20437:67;:::i;:::-;20430:74;;20513:93;20602:3;20513:93;:::i;:::-;20631:2;20626:3;20622:12;20615:19;;20274:366;;;:::o;20646:::-;20788:3;20809:67;20873:2;20868:3;20809:67;:::i;:::-;20802:74;;20885:93;20974:3;20885:93;:::i;:::-;21003:2;20998:3;20994:12;20987:19;;20646:366;;;:::o;21018:::-;21160:3;21181:67;21245:2;21240:3;21181:67;:::i;:::-;21174:74;;21257:93;21346:3;21257:93;:::i;:::-;21375:2;21370:3;21366:12;21359:19;;21018:366;;;:::o;21390:::-;21532:3;21553:67;21617:2;21612:3;21553:67;:::i;:::-;21546:74;;21629:93;21718:3;21629:93;:::i;:::-;21747:2;21742:3;21738:12;21731:19;;21390:366;;;:::o;21762:::-;21904:3;21925:67;21989:2;21984:3;21925:67;:::i;:::-;21918:74;;22001:93;22090:3;22001:93;:::i;:::-;22119:2;22114:3;22110:12;22103:19;;21762:366;;;:::o;22134:118::-;22221:24;22239:5;22221:24;:::i;:::-;22216:3;22209:37;22134:118;;:::o;22258:112::-;22341:22;22357:5;22341:22;:::i;:::-;22336:3;22329:35;22258:112;;:::o;22376:435::-;22556:3;22578:95;22669:3;22660:6;22578:95;:::i;:::-;22571:102;;22690:95;22781:3;22772:6;22690:95;:::i;:::-;22683:102;;22802:3;22795:10;;22376:435;;;;;:::o;22817:663::-;23058:3;23080:148;23224:3;23080:148;:::i;:::-;23073:155;;23238:75;23309:3;23300:6;23238:75;:::i;:::-;23338:2;23333:3;23329:12;23322:19;;23351:75;23422:3;23413:6;23351:75;:::i;:::-;23451:2;23446:3;23442:12;23435:19;;23471:3;23464:10;;22817:663;;;;;:::o;23486:222::-;23579:4;23617:2;23606:9;23602:18;23594:26;;23630:71;23698:1;23687:9;23683:17;23674:6;23630:71;:::i;:::-;23486:222;;;;:::o;23714:640::-;23909:4;23947:3;23936:9;23932:19;23924:27;;23961:71;24029:1;24018:9;24014:17;24005:6;23961:71;:::i;:::-;24042:72;24110:2;24099:9;24095:18;24086:6;24042:72;:::i;:::-;24124;24192:2;24181:9;24177:18;24168:6;24124:72;:::i;:::-;24243:9;24237:4;24233:20;24228:2;24217:9;24213:18;24206:48;24271:76;24342:4;24333:6;24271:76;:::i;:::-;24263:84;;23714:640;;;;;;;:::o;24360:210::-;24447:4;24485:2;24474:9;24470:18;24462:26;;24498:65;24560:1;24549:9;24545:17;24536:6;24498:65;:::i;:::-;24360:210;;;;:::o;24576:332::-;24697:4;24735:2;24724:9;24720:18;24712:26;;24748:71;24816:1;24805:9;24801:17;24792:6;24748:71;:::i;:::-;24829:72;24897:2;24886:9;24882:18;24873:6;24829:72;:::i;:::-;24576:332;;;;;:::o;24914:664::-;25119:4;25157:3;25146:9;25142:19;25134:27;;25171:71;25239:1;25228:9;25224:17;25215:6;25171:71;:::i;:::-;25252:72;25320:2;25309:9;25305:18;25296:6;25252:72;:::i;:::-;25334;25402:2;25391:9;25387:18;25378:6;25334:72;:::i;:::-;25416;25484:2;25473:9;25469:18;25460:6;25416:72;:::i;:::-;25498:73;25566:3;25555:9;25551:19;25542:6;25498:73;:::i;:::-;24914:664;;;;;;;;:::o;25584:545::-;25757:4;25795:3;25784:9;25780:19;25772:27;;25809:71;25877:1;25866:9;25862:17;25853:6;25809:71;:::i;:::-;25890:68;25954:2;25943:9;25939:18;25930:6;25890:68;:::i;:::-;25968:72;26036:2;26025:9;26021:18;26012:6;25968:72;:::i;:::-;26050;26118:2;26107:9;26103:18;26094:6;26050:72;:::i;:::-;25584:545;;;;;;;:::o;26135:313::-;26248:4;26286:2;26275:9;26271:18;26263:26;;26335:9;26329:4;26325:20;26321:1;26310:9;26306:17;26299:47;26363:78;26436:4;26427:6;26363:78;:::i;:::-;26355:86;;26135:313;;;;:::o;26454:419::-;26620:4;26658:2;26647:9;26643:18;26635:26;;26707:9;26701:4;26697:20;26693:1;26682:9;26678:17;26671:47;26735:131;26861:4;26735:131;:::i;:::-;26727:139;;26454:419;;;:::o;26879:::-;27045:4;27083:2;27072:9;27068:18;27060:26;;27132:9;27126:4;27122:20;27118:1;27107:9;27103:17;27096:47;27160:131;27286:4;27160:131;:::i;:::-;27152:139;;26879:419;;;:::o;27304:::-;27470:4;27508:2;27497:9;27493:18;27485:26;;27557:9;27551:4;27547:20;27543:1;27532:9;27528:17;27521:47;27585:131;27711:4;27585:131;:::i;:::-;27577:139;;27304:419;;;:::o;27729:::-;27895:4;27933:2;27922:9;27918:18;27910:26;;27982:9;27976:4;27972:20;27968:1;27957:9;27953:17;27946:47;28010:131;28136:4;28010:131;:::i;:::-;28002:139;;27729:419;;;:::o;28154:::-;28320:4;28358:2;28347:9;28343:18;28335:26;;28407:9;28401:4;28397:20;28393:1;28382:9;28378:17;28371:47;28435:131;28561:4;28435:131;:::i;:::-;28427:139;;28154:419;;;:::o;28579:::-;28745:4;28783:2;28772:9;28768:18;28760:26;;28832:9;28826:4;28822:20;28818:1;28807:9;28803:17;28796:47;28860:131;28986:4;28860:131;:::i;:::-;28852:139;;28579:419;;;:::o;29004:::-;29170:4;29208:2;29197:9;29193:18;29185:26;;29257:9;29251:4;29247:20;29243:1;29232:9;29228:17;29221:47;29285:131;29411:4;29285:131;:::i;:::-;29277:139;;29004:419;;;:::o;29429:::-;29595:4;29633:2;29622:9;29618:18;29610:26;;29682:9;29676:4;29672:20;29668:1;29657:9;29653:17;29646:47;29710:131;29836:4;29710:131;:::i;:::-;29702:139;;29429:419;;;:::o;29854:::-;30020:4;30058:2;30047:9;30043:18;30035:26;;30107:9;30101:4;30097:20;30093:1;30082:9;30078:17;30071:47;30135:131;30261:4;30135:131;:::i;:::-;30127:139;;29854:419;;;:::o;30279:::-;30445:4;30483:2;30472:9;30468:18;30460:26;;30532:9;30526:4;30522:20;30518:1;30507:9;30503:17;30496:47;30560:131;30686:4;30560:131;:::i;:::-;30552:139;;30279:419;;;:::o;30704:::-;30870:4;30908:2;30897:9;30893:18;30885:26;;30957:9;30951:4;30947:20;30943:1;30932:9;30928:17;30921:47;30985:131;31111:4;30985:131;:::i;:::-;30977:139;;30704:419;;;:::o;31129:::-;31295:4;31333:2;31322:9;31318:18;31310:26;;31382:9;31376:4;31372:20;31368:1;31357:9;31353:17;31346:47;31410:131;31536:4;31410:131;:::i;:::-;31402:139;;31129:419;;;:::o;31554:::-;31720:4;31758:2;31747:9;31743:18;31735:26;;31807:9;31801:4;31797:20;31793:1;31782:9;31778:17;31771:47;31835:131;31961:4;31835:131;:::i;:::-;31827:139;;31554:419;;;:::o;31979:::-;32145:4;32183:2;32172:9;32168:18;32160:26;;32232:9;32226:4;32222:20;32218:1;32207:9;32203:17;32196:47;32260:131;32386:4;32260:131;:::i;:::-;32252:139;;31979:419;;;:::o;32404:::-;32570:4;32608:2;32597:9;32593:18;32585:26;;32657:9;32651:4;32647:20;32643:1;32632:9;32628:17;32621:47;32685:131;32811:4;32685:131;:::i;:::-;32677:139;;32404:419;;;:::o;32829:::-;32995:4;33033:2;33022:9;33018:18;33010:26;;33082:9;33076:4;33072:20;33068:1;33057:9;33053:17;33046:47;33110:131;33236:4;33110:131;:::i;:::-;33102:139;;32829:419;;;:::o;33254:::-;33420:4;33458:2;33447:9;33443:18;33435:26;;33507:9;33501:4;33497:20;33493:1;33482:9;33478:17;33471:47;33535:131;33661:4;33535:131;:::i;:::-;33527:139;;33254:419;;;:::o;33679:::-;33845:4;33883:2;33872:9;33868:18;33860:26;;33932:9;33926:4;33922:20;33918:1;33907:9;33903:17;33896:47;33960:131;34086:4;33960:131;:::i;:::-;33952:139;;33679:419;;;:::o;34104:::-;34270:4;34308:2;34297:9;34293:18;34285:26;;34357:9;34351:4;34347:20;34343:1;34332:9;34328:17;34321:47;34385:131;34511:4;34385:131;:::i;:::-;34377:139;;34104:419;;;:::o;34529:::-;34695:4;34733:2;34722:9;34718:18;34710:26;;34782:9;34776:4;34772:20;34768:1;34757:9;34753:17;34746:47;34810:131;34936:4;34810:131;:::i;:::-;34802:139;;34529:419;;;:::o;34954:::-;35120:4;35158:2;35147:9;35143:18;35135:26;;35207:9;35201:4;35197:20;35193:1;35182:9;35178:17;35171:47;35235:131;35361:4;35235:131;:::i;:::-;35227:139;;34954:419;;;:::o;35379:::-;35545:4;35583:2;35572:9;35568:18;35560:26;;35632:9;35626:4;35622:20;35618:1;35607:9;35603:17;35596:47;35660:131;35786:4;35660:131;:::i;:::-;35652:139;;35379:419;;;:::o;35804:::-;35970:4;36008:2;35997:9;35993:18;35985:26;;36057:9;36051:4;36047:20;36043:1;36032:9;36028:17;36021:47;36085:131;36211:4;36085:131;:::i;:::-;36077:139;;35804:419;;;:::o;36229:::-;36395:4;36433:2;36422:9;36418:18;36410:26;;36482:9;36476:4;36472:20;36468:1;36457:9;36453:17;36446:47;36510:131;36636:4;36510:131;:::i;:::-;36502:139;;36229:419;;;:::o;36654:::-;36820:4;36858:2;36847:9;36843:18;36835:26;;36907:9;36901:4;36897:20;36893:1;36882:9;36878:17;36871:47;36935:131;37061:4;36935:131;:::i;:::-;36927:139;;36654:419;;;:::o;37079:::-;37245:4;37283:2;37272:9;37268:18;37260:26;;37332:9;37326:4;37322:20;37318:1;37307:9;37303:17;37296:47;37360:131;37486:4;37360:131;:::i;:::-;37352:139;;37079:419;;;:::o;37504:::-;37670:4;37708:2;37697:9;37693:18;37685:26;;37757:9;37751:4;37747:20;37743:1;37732:9;37728:17;37721:47;37785:131;37911:4;37785:131;:::i;:::-;37777:139;;37504:419;;;:::o;37929:222::-;38022:4;38060:2;38049:9;38045:18;38037:26;;38073:71;38141:1;38130:9;38126:17;38117:6;38073:71;:::i;:::-;37929:222;;;;:::o;38157:129::-;38191:6;38218:20;;:::i;:::-;38208:30;;38247:33;38275:4;38267:6;38247:33;:::i;:::-;38157:129;;;:::o;38292:75::-;38325:6;38358:2;38352:9;38342:19;;38292:75;:::o;38373:307::-;38434:4;38524:18;38516:6;38513:30;38510:56;;;38546:18;;:::i;:::-;38510:56;38584:29;38606:6;38584:29;:::i;:::-;38576:37;;38668:4;38662;38658:15;38650:23;;38373:307;;;:::o;38686:308::-;38748:4;38838:18;38830:6;38827:30;38824:56;;;38860:18;;:::i;:::-;38824:56;38898:29;38920:6;38898:29;:::i;:::-;38890:37;;38982:4;38976;38972:15;38964:23;;38686:308;;;:::o;39000:98::-;39051:6;39085:5;39079:12;39069:22;;39000:98;;;:::o;39104:99::-;39156:6;39190:5;39184:12;39174:22;;39104:99;;;:::o;39209:168::-;39292:11;39326:6;39321:3;39314:19;39366:4;39361:3;39357:14;39342:29;;39209:168;;;;:::o;39383:169::-;39467:11;39501:6;39496:3;39489:19;39541:4;39536:3;39532:14;39517:29;;39383:169;;;;:::o;39558:148::-;39660:11;39697:3;39682:18;;39558:148;;;;:::o;39712:305::-;39752:3;39771:20;39789:1;39771:20;:::i;:::-;39766:25;;39805:20;39823:1;39805:20;:::i;:::-;39800:25;;39959:1;39891:66;39887:74;39884:1;39881:81;39878:107;;;39965:18;;:::i;:::-;39878:107;40009:1;40006;40002:9;39995:16;;39712:305;;;;:::o;40023:348::-;40063:7;40086:20;40104:1;40086:20;:::i;:::-;40081:25;;40120:20;40138:1;40120:20;:::i;:::-;40115:25;;40308:1;40240:66;40236:74;40233:1;40230:81;40225:1;40218:9;40211:17;40207:105;40204:131;;;40315:18;;:::i;:::-;40204:131;40363:1;40360;40356:9;40345:20;;40023:348;;;;:::o;40377:191::-;40417:4;40437:20;40455:1;40437:20;:::i;:::-;40432:25;;40471:20;40489:1;40471:20;:::i;:::-;40466:25;;40510:1;40507;40504:8;40501:34;;;40515:18;;:::i;:::-;40501:34;40560:1;40557;40553:9;40545:17;;40377:191;;;;:::o;40574:96::-;40611:7;40640:24;40658:5;40640:24;:::i;:::-;40629:35;;40574:96;;;:::o;40676:90::-;40710:7;40753:5;40746:13;40739:21;40728:32;;40676:90;;;:::o;40772:77::-;40809:7;40838:5;40827:16;;40772:77;;;:::o;40855:149::-;40891:7;40931:66;40924:5;40920:78;40909:89;;40855:149;;;:::o;41010:126::-;41047:7;41087:42;41080:5;41076:54;41065:65;;41010:126;;;:::o;41142:77::-;41179:7;41208:5;41197:16;;41142:77;;;:::o;41225:86::-;41260:7;41300:4;41293:5;41289:16;41278:27;;41225:86;;;:::o;41317:154::-;41401:6;41396:3;41391;41378:30;41463:1;41454:6;41449:3;41445:16;41438:27;41317:154;;;:::o;41477:307::-;41545:1;41555:113;41569:6;41566:1;41563:13;41555:113;;;41654:1;41649:3;41645:11;41639:18;41635:1;41630:3;41626:11;41619:39;41591:2;41588:1;41584:10;41579:15;;41555:113;;;41686:6;41683:1;41680:13;41677:101;;;41766:1;41757:6;41752:3;41748:16;41741:27;41677:101;41526:258;41477:307;;;:::o;41790:320::-;41834:6;41871:1;41865:4;41861:12;41851:22;;41918:1;41912:4;41908:12;41939:18;41929:81;;41995:4;41987:6;41983:17;41973:27;;41929:81;42057:2;42049:6;42046:14;42026:18;42023:38;42020:84;;;42076:18;;:::i;:::-;42020:84;41841:269;41790:320;;;:::o;42116:281::-;42199:27;42221:4;42199:27;:::i;:::-;42191:6;42187:40;42329:6;42317:10;42314:22;42293:18;42281:10;42278:34;42275:62;42272:88;;;42340:18;;:::i;:::-;42272:88;42380:10;42376:2;42369:22;42159:238;42116:281;;:::o;42403:233::-;42442:3;42465:24;42483:5;42465:24;:::i;:::-;42456:33;;42511:66;42504:5;42501:77;42498:103;;;42581:18;;:::i;:::-;42498:103;42628:1;42621:5;42617:13;42610:20;;42403:233;;;:::o;42642:79::-;42681:7;42710:5;42699:16;;42642:79;;;:::o;42727:180::-;42775:77;42772:1;42765:88;42872:4;42869:1;42862:15;42896:4;42893:1;42886:15;42913:180;42961:77;42958:1;42951:88;43058:4;43055:1;43048:15;43082:4;43079:1;43072:15;43099:180;43147:77;43144:1;43137:88;43244:4;43241:1;43234:15;43268:4;43265:1;43258:15;43285:180;43333:77;43330:1;43323:88;43430:4;43427:1;43420:15;43454:4;43451:1;43444:15;43471:180;43519:77;43516:1;43509:88;43616:4;43613:1;43606:15;43640:4;43637:1;43630:15;43657:117;43766:1;43763;43756:12;43780:117;43889:1;43886;43879:12;43903:117;44012:1;44009;44002:12;44026:117;44135:1;44132;44125:12;44149:117;44258:1;44255;44248:12;44272:117;44381:1;44378;44371:12;44395:102;44436:6;44487:2;44483:7;44478:2;44471:5;44467:14;44463:28;44453:38;;44395:102;;;:::o;44503:174::-;44643:26;44639:1;44631:6;44627:14;44620:50;44503:174;:::o;44683:295::-;44823:34;44819:1;44811:6;44807:14;44800:58;44892:34;44887:2;44879:6;44875:15;44868:59;44961:9;44956:2;44948:6;44944:15;44937:34;44683:295;:::o;44984:232::-;45124:34;45120:1;45112:6;45108:14;45101:58;45193:15;45188:2;45180:6;45176:15;45169:40;44984:232;:::o;45222:181::-;45362:33;45358:1;45350:6;45346:14;45339:57;45222:181;:::o;45409:237::-;45549:34;45545:1;45537:6;45533:14;45526:58;45618:20;45613:2;45605:6;45601:15;45594:45;45409:237;:::o;45652:317::-;45792:34;45788:1;45780:6;45776:14;45769:58;45861:34;45856:2;45848:6;45844:15;45837:59;45930:31;45925:2;45917:6;45913:15;45906:56;45652:317;:::o;45975:225::-;46115:34;46111:1;46103:6;46099:14;46092:58;46184:8;46179:2;46171:6;46167:15;46160:33;45975:225;:::o;46206:224::-;46346:34;46342:1;46334:6;46330:14;46323:58;46415:7;46410:2;46402:6;46398:15;46391:32;46206:224;:::o;46436:178::-;46576:30;46572:1;46564:6;46560:14;46553:54;46436:178;:::o;46620:176::-;46760:28;46756:1;46748:6;46744:14;46737:52;46620:176;:::o;46802:214::-;46942:66;46938:1;46930:6;46926:14;46919:90;46802:214;:::o;47022:247::-;47162:34;47158:1;47150:6;47146:14;47139:58;47231:30;47226:2;47218:6;47214:15;47207:55;47022:247;:::o;47275:223::-;47415:34;47411:1;47403:6;47399:14;47392:58;47484:6;47479:2;47471:6;47467:15;47460:31;47275:223;:::o;47504:175::-;47644:27;47640:1;47632:6;47628:14;47621:51;47504:175;:::o;47685:301::-;47825:34;47821:1;47813:6;47809:14;47802:58;47894:34;47889:2;47881:6;47877:15;47870:59;47963:15;47958:2;47950:6;47946:15;47939:40;47685:301;:::o;47992:290::-;48132:34;48128:1;48120:6;48116:14;48109:58;48201:34;48196:2;48188:6;48184:15;48177:59;48270:4;48265:2;48257:6;48253:15;48246:29;47992:290;:::o;48288:221::-;48428:34;48424:1;48416:6;48412:14;48405:58;48497:4;48492:2;48484:6;48480:15;48473:29;48288:221;:::o;48515:248::-;48655:34;48651:1;48643:6;48639:14;48632:58;48724:31;48719:2;48711:6;48707:15;48700:56;48515:248;:::o;48769:228::-;48909:34;48905:1;48897:6;48893:14;48886:58;48978:11;48973:2;48965:6;48961:15;48954:36;48769:228;:::o;49003:251::-;49143:34;49139:1;49131:6;49127:14;49120:58;49212:34;49207:2;49199:6;49195:15;49188:59;49003:251;:::o;49260:182::-;49400:34;49396:1;49388:6;49384:14;49377:58;49260:182;:::o;49448:::-;49588:34;49584:1;49576:6;49572:14;49565:58;49448:182;:::o;49636:174::-;49776:26;49772:1;49764:6;49760:14;49753:50;49636:174;:::o;49816:165::-;49956:17;49952:1;49944:6;49940:14;49933:41;49816:165;:::o;49987:220::-;50127:34;50123:1;50115:6;50111:14;50104:58;50196:3;50191:2;50183:6;50179:15;50172:28;49987:220;:::o;50213:248::-;50353:34;50349:1;50341:6;50337:14;50330:58;50422:31;50417:2;50409:6;50405:15;50398:56;50213:248;:::o;50467:168::-;50607:20;50603:1;50595:6;50591:14;50584:44;50467:168;:::o;50641:173::-;50781:25;50777:1;50769:6;50765:14;50758:49;50641:173;:::o;50820:122::-;50893:24;50911:5;50893:24;:::i;:::-;50886:5;50883:35;50873:63;;50932:1;50929;50922:12;50873:63;50820:122;:::o;50948:116::-;51018:21;51033:5;51018:21;:::i;:::-;51011:5;51008:32;50998:60;;51054:1;51051;51044:12;50998:60;50948:116;:::o;51070:120::-;51142:23;51159:5;51142:23;:::i;:::-;51135:5;51132:34;51122:62;;51180:1;51177;51170:12;51122:62;51070:120;:::o;51196:122::-;51269:24;51287:5;51269:24;:::i;:::-;51262:5;51259:35;51249:63;;51308:1;51305;51298:12;51249:63;51196:122;:::o

Swarm Source

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