mirror of
http://10.0.2.1:3031/sauer/claude-code.git
synced 2026-06-30 13:46:59 +10:00
332 lines
47 KiB
TypeScript
332 lines
47 KiB
TypeScript
|
|
import { c as _c } from "react/compiler-runtime";
|
||
|
|
import { feature } from 'bun:bundle';
|
||
|
|
import * as React from 'react';
|
||
|
|
import { type ReactNode, useEffect, useMemo, useState } from 'react';
|
||
|
|
import { type Notification, useNotifications } from 'src/context/notifications.js';
|
||
|
|
import { logEvent } from 'src/services/analytics/index.js';
|
||
|
|
import { useAppState } from 'src/state/AppState.js';
|
||
|
|
import { useVoiceState } from '../../context/voice.js';
|
||
|
|
import type { VerificationStatus } from '../../hooks/useApiKeyVerification.js';
|
||
|
|
import { useIdeConnectionStatus } from '../../hooks/useIdeConnectionStatus.js';
|
||
|
|
import type { IDESelection } from '../../hooks/useIdeSelection.js';
|
||
|
|
import { useMainLoopModel } from '../../hooks/useMainLoopModel.js';
|
||
|
|
import { useVoiceEnabled } from '../../hooks/useVoiceEnabled.js';
|
||
|
|
import { Box, Text } from '../../ink.js';
|
||
|
|
import { useClaudeAiLimits } from '../../services/claudeAiLimitsHook.js';
|
||
|
|
import { calculateTokenWarningState } from '../../services/compact/autoCompact.js';
|
||
|
|
import type { MCPServerConnection } from '../../services/mcp/types.js';
|
||
|
|
import type { Message } from '../../types/message.js';
|
||
|
|
import { getApiKeyHelperElapsedMs, getConfiguredApiKeyHelper, getSubscriptionType } from '../../utils/auth.js';
|
||
|
|
import type { AutoUpdaterResult } from '../../utils/autoUpdater.js';
|
||
|
|
import { getExternalEditor } from '../../utils/editor.js';
|
||
|
|
import { isEnvTruthy } from '../../utils/envUtils.js';
|
||
|
|
import { formatDuration } from '../../utils/format.js';
|
||
|
|
import { setEnvHookNotifier } from '../../utils/hooks/fileChangedWatcher.js';
|
||
|
|
import { toIDEDisplayName } from '../../utils/ide.js';
|
||
|
|
import { getMessagesAfterCompactBoundary } from '../../utils/messages.js';
|
||
|
|
import { tokenCountFromLastAPIResponse } from '../../utils/tokens.js';
|
||
|
|
import { AutoUpdaterWrapper } from '../AutoUpdaterWrapper.js';
|
||
|
|
import { ConfigurableShortcutHint } from '../ConfigurableShortcutHint.js';
|
||
|
|
import { IdeStatusIndicator } from '../IdeStatusIndicator.js';
|
||
|
|
import { MemoryUsageIndicator } from '../MemoryUsageIndicator.js';
|
||
|
|
import { SentryErrorBoundary } from '../SentryErrorBoundary.js';
|
||
|
|
import { TokenWarning } from '../TokenWarning.js';
|
||
|
|
import { SandboxPromptFooterHint } from './SandboxPromptFooterHint.js';
|
||
|
|
|
||
|
|
/* eslint-disable @typescript-eslint/no-require-imports */
|
||
|
|
const VoiceIndicator: typeof import('./VoiceIndicator.js').VoiceIndicator = feature('VOICE_MODE') ? require('./VoiceIndicator.js').VoiceIndicator : () => null;
|
||
|
|
/* eslint-enable @typescript-eslint/no-require-imports */
|
||
|
|
|
||
|
|
export const FOOTER_TEMPORARY_STATUS_TIMEOUT = 5000;
|
||
|
|
type Props = {
|
||
|
|
apiKeyStatus: VerificationStatus;
|
||
|
|
autoUpdaterResult: AutoUpdaterResult | null;
|
||
|
|
isAutoUpdating: boolean;
|
||
|
|
debug: boolean;
|
||
|
|
verbose: boolean;
|
||
|
|
messages: Message[];
|
||
|
|
onAutoUpdaterResult: (result: AutoUpdaterResult) => void;
|
||
|
|
onChangeIsUpdating: (isUpdating: boolean) => void;
|
||
|
|
ideSelection: IDESelection | undefined;
|
||
|
|
mcpClients?: MCPServerConnection[];
|
||
|
|
isInputWrapped?: boolean;
|
||
|
|
isNarrow?: boolean;
|
||
|
|
};
|
||
|
|
export function Notifications(t0) {
|
||
|
|
const $ = _c(34);
|
||
|
|
const {
|
||
|
|
apiKeyStatus,
|
||
|
|
autoUpdaterResult,
|
||
|
|
debug,
|
||
|
|
isAutoUpdating,
|
||
|
|
verbose,
|
||
|
|
messages,
|
||
|
|
onAutoUpdaterResult,
|
||
|
|
onChangeIsUpdating,
|
||
|
|
ideSelection,
|
||
|
|
mcpClients,
|
||
|
|
isInputWrapped: t1,
|
||
|
|
isNarrow: t2
|
||
|
|
} = t0;
|
||
|
|
const isInputWrapped = t1 === undefined ? false : t1;
|
||
|
|
const isNarrow = t2 === undefined ? false : t2;
|
||
|
|
let t3;
|
||
|
|
if ($[0] !== messages) {
|
||
|
|
const messagesForTokenCount = getMessagesAfterCompactBoundary(messages);
|
||
|
|
t3 = tokenCountFromLastAPIResponse(messagesForTokenCount);
|
||
|
|
$[0] = messages;
|
||
|
|
$[1] = t3;
|
||
|
|
} else {
|
||
|
|
t3 = $[1];
|
||
|
|
}
|
||
|
|
const tokenUsage = t3;
|
||
|
|
const mainLoopModel = useMainLoopModel();
|
||
|
|
let t4;
|
||
|
|
if ($[2] !== mainLoopModel || $[3] !== tokenUsage) {
|
||
|
|
t4 = calculateTokenWarningState(tokenUsage, mainLoopModel);
|
||
|
|
$[2] = mainLoopModel;
|
||
|
|
$[3] = tokenUsage;
|
||
|
|
$[4] = t4;
|
||
|
|
} else {
|
||
|
|
t4 = $[4];
|
||
|
|
}
|
||
|
|
const isShowingCompactMessage = t4.isAboveWarningThreshold;
|
||
|
|
const {
|
||
|
|
status: ideStatus
|
||
|
|
} = useIdeConnectionStatus(mcpClients);
|
||
|
|
const notifications = useAppState(_temp);
|
||
|
|
const {
|
||
|
|
addNotification,
|
||
|
|
removeNotification
|
||
|
|
} = useNotifications();
|
||
|
|
const claudeAiLimits = useClaudeAiLimits();
|
||
|
|
let t5;
|
||
|
|
let t6;
|
||
|
|
if ($[5] !== addNotification) {
|
||
|
|
t5 = () => {
|
||
|
|
setEnvHookNotifier((text, isError) => {
|
||
|
|
addNotification({
|
||
|
|
key: "env-hook",
|
||
|
|
text,
|
||
|
|
color: isError ? "error" : undefined,
|
||
|
|
priority: isError ? "medium" : "low",
|
||
|
|
timeoutMs: isError ? 8000 : 5000
|
||
|
|
});
|
||
|
|
});
|
||
|
|
return _temp2;
|
||
|
|
};
|
||
|
|
t6 = [addNotification];
|
||
|
|
$[5] = addNotification;
|
||
|
|
$[6] = t5;
|
||
|
|
$[7] = t6;
|
||
|
|
} else {
|
||
|
|
t5 = $[6];
|
||
|
|
t6 = $[7];
|
||
|
|
}
|
||
|
|
useEffect(t5, t6);
|
||
|
|
const shouldShowIdeSelection = ideStatus === "connected" && (ideSelection?.filePath || ideSelection?.text && ideSelection.lineCount > 0);
|
||
|
|
const shouldShowAutoUpdater = !shouldShowIdeSelection || isAutoUpdating || autoUpdaterResult?.status !== "success";
|
||
|
|
const isInOverageMode = claudeAiLimits.isUsingOverage;
|
||
|
|
let t7;
|
||
|
|
if ($[8] === Symbol.for("react.memo_cache_sentinel")) {
|
||
|
|
t7 = getSubscriptionType();
|
||
|
|
$[8] = t7;
|
||
|
|
} else {
|
||
|
|
t7 = $[8];
|
||
|
|
}
|
||
|
|
const subscriptionType = t7;
|
||
|
|
const isTeamOrEnterprise = subscriptionType === "team" || subscriptionType === "enterprise";
|
||
|
|
let t8;
|
||
|
|
if ($[9] === Symbol.for("react.memo_cache_sentinel")) {
|
||
|
|
t8 = getExternalEditor();
|
||
|
|
$[9] = t8;
|
||
|
|
} else {
|
||
|
|
t8 = $[9];
|
||
|
|
}
|
||
|
|
const editor = t8;
|
||
|
|
const shouldShowExternalEditorHint = isInputWrapped && !isShowingCompactMessage && apiKeyStatus !== "invalid" && apiKeyStatus !== "missing" && editor !== undefined;
|
||
|
|
let t10;
|
||
|
|
let t9;
|
||
|
|
if ($[10] !== addNotification || $[11] !== removeNotification || $[12] !== shouldShowExternalEditorHint) {
|
||
|
|
t9 = () => {
|
||
|
|
if (shouldShowExternalEditorHint && editor) {
|
||
|
|
logEvent("tengu_external_editor_hint_shown", {});
|
||
|
|
addNotification({
|
||
|
|
key: "external-editor-hint",
|
||
|
|
jsx: <Text dimColor={true}><ConfigurableShortcutHint action="chat:externalEditor" context="Chat" fallback="ctrl+g" description={`edit in ${toIDEDisplayName(editor)}`} /></Text>,
|
||
|
|
priority: "immediate",
|
||
|
|
timeoutMs: 5000
|
||
|
|
});
|
||
|
|
} else {
|
||
|
|
removeNotification("external-editor-hint");
|
||
|
|
}
|
||
|
|
};
|
||
|
|
t10 = [shouldShowExternalEditorHint, editor, addNotification, removeNotification];
|
||
|
|
$[10] = addNotification;
|
||
|
|
$[11] = removeNotification;
|
||
|
|
$[12] = shouldShowExternalEditorHint;
|
||
|
|
$[13] = t10;
|
||
|
|
$[14] = t9;
|
||
|
|
} else {
|
||
|
|
t10 = $[13];
|
||
|
|
t9 = $[14];
|
||
|
|
}
|
||
|
|
useEffect(t9, t10);
|
||
|
|
const t11 = isNarrow ? "flex-start" : "flex-end";
|
||
|
|
const t12 = isInOverageMode ?? false;
|
||
|
|
let t13;
|
||
|
|
if ($[15] !== apiKeyStatus || $[16] !== autoUpdaterResult || $[17] !== debug || $[18] !== ideSelection || $[19] !== isAutoUpdating || $[20] !== isShowingCompactMessage || $[21] !== mainLoopModel || $[22] !== mcpClients || $[23] !== notifications || $[24] !== onAutoUpdaterResult || $[25] !== onChangeIsUpdating || $[26] !== shouldShowAutoUpdater || $[27] !== t12 || $[28] !== tokenUsage || $[29] !== verbose) {
|
||
|
|
t13 = <NotificationContent ideSelection={ideSelection} mcpClients={mcpClients} notifications={notifications} isInOverageMode={t12} isTeamOrEnterprise={isTeamOrEnterprise} apiKeyStatus={apiKeyStatus} debug={debug} verbose={verbose} tokenUsage={tokenUsage} mainLoopModel={mainLoopModel} shouldShowAutoUpdater={shouldShowAutoUpdater} autoUpdaterResult={autoUpdaterResult} isAutoUpdating={isAutoUpdating} isShowingCompactMessage={isShowingCompactMessage} onAutoUpdaterResult={onAutoUpdaterResult} onChangeIsUpdating={onChangeIsUpdating} />;
|
||
|
|
$[15] = apiKeyStatus;
|
||
|
|
$[16] = autoUpdaterResult;
|
||
|
|
$[17] = debug;
|
||
|
|
$[18] = ideSelection;
|
||
|
|
$[19] = isAutoUpdating;
|
||
|
|
$[20] = isShowingCompactMessage;
|
||
|
|
$[21] = mainLoopModel;
|
||
|
|
$[22] = mcpClients;
|
||
|
|
$[23] = notifications;
|
||
|
|
$[24] = onAutoUpdaterResult;
|
||
|
|
$[25] = onChangeIsUpdating;
|
||
|
|
$[26] = shouldShowAutoUpdater;
|
||
|
|
$[27] = t12;
|
||
|
|
$[28] = tokenUsage;
|
||
|
|
$[29] = verbose;
|
||
|
|
$[30] = t13;
|
||
|
|
} else {
|
||
|
|
t13 = $[30];
|
||
|
|
}
|
||
|
|
let t14;
|
||
|
|
if ($[31] !== t11 || $[32] !== t13) {
|
||
|
|
t14 = <SentryErrorBoundary><Box flexDirection="column" alignItems={t11} flexShrink={0} overflowX="hidden">{t13}</Box></SentryErrorBoundary>;
|
||
|
|
$[31] = t11;
|
||
|
|
$[32] = t13;
|
||
|
|
$[33] = t14;
|
||
|
|
} else {
|
||
|
|
t14 = $[33];
|
||
|
|
}
|
||
|
|
return t14;
|
||
|
|
}
|
||
|
|
function _temp2() {
|
||
|
|
return setEnvHookNotifier(null);
|
||
|
|
}
|
||
|
|
function _temp(s) {
|
||
|
|
return s.notifications;
|
||
|
|
}
|
||
|
|
function NotificationContent({
|
||
|
|
ideSelection,
|
||
|
|
mcpClients,
|
||
|
|
notifications,
|
||
|
|
isInOverageMode,
|
||
|
|
isTeamOrEnterprise,
|
||
|
|
apiKeyStatus,
|
||
|
|
debug,
|
||
|
|
verbose,
|
||
|
|
tokenUsage,
|
||
|
|
mainLoopModel,
|
||
|
|
shouldShowAutoUpdater,
|
||
|
|
autoUpdaterResult,
|
||
|
|
isAutoUpdating,
|
||
|
|
isShowingCompactMessage,
|
||
|
|
onAutoUpdaterResult,
|
||
|
|
onChangeIsUpdating
|
||
|
|
}: {
|
||
|
|
ideSelection: IDESelection | undefined;
|
||
|
|
mcpClients?: MCPServerConnection[];
|
||
|
|
notifications: {
|
||
|
|
current: Notification | null;
|
||
|
|
queue: Notification[];
|
||
|
|
};
|
||
|
|
isInOverageMode: boolean;
|
||
|
|
isTeamOrEnterprise: boolean;
|
||
|
|
apiKeyStatus: VerificationStatus;
|
||
|
|
debug: boolean;
|
||
|
|
verbose: boolean;
|
||
|
|
tokenUsage: number;
|
||
|
|
mainLoopModel: string;
|
||
|
|
shouldShowAutoUpdater: boolean;
|
||
|
|
autoUpdaterResult: AutoUpdaterResult | null;
|
||
|
|
isAutoUpdating: boolean;
|
||
|
|
isShowingCompactMessage: boolean;
|
||
|
|
onAutoUpdaterResult: (result: AutoUpdaterResult) => void;
|
||
|
|
onChangeIsUpdating: (isUpdating: boolean) => void;
|
||
|
|
}): ReactNode {
|
||
|
|
// Poll apiKeyHelper inflight state to show slow-helper notice.
|
||
|
|
// Gated on configuration — most users never set apiKeyHelper, so the
|
||
|
|
// effect is a no-op for them (no interval allocated).
|
||
|
|
const [apiKeyHelperSlow, setApiKeyHelperSlow] = useState<string | null>(null);
|
||
|
|
useEffect(() => {
|
||
|
|
if (!getConfiguredApiKeyHelper()) return;
|
||
|
|
const interval = setInterval((setSlow: React.Dispatch<React.SetStateAction<string | null>>) => {
|
||
|
|
const ms = getApiKeyHelperElapsedMs();
|
||
|
|
const next = ms >= 10_000 ? formatDuration(ms) : null;
|
||
|
|
setSlow(prev => next === prev ? prev : next);
|
||
|
|
}, 1000, setApiKeyHelperSlow);
|
||
|
|
return () => clearInterval(interval);
|
||
|
|
}, []);
|
||
|
|
|
||
|
|
// Voice state (VOICE_MODE builds only, runtime-gated by GrowthBook)
|
||
|
|
const voiceState = feature('VOICE_MODE') ?
|
||
|
|
// biome-ignore lint/correctness/useHookAtTopLevel: feature() is a compile-time constant
|
||
|
|
useVoiceState(s => s.voiceState) : 'idle' as const;
|
||
|
|
// biome-ignore lint/correctness/useHookAtTopLevel: feature() is a compile-time constant
|
||
|
|
const voiceEnabled = feature('VOICE_MODE') ? useVoiceEnabled() : false;
|
||
|
|
const voiceError = feature('VOICE_MODE') ?
|
||
|
|
// biome-ignore lint/correctness/useHookAtTopLevel: feature() is a compile-time constant
|
||
|
|
useVoiceState(s_0 => s_0.voiceError) : null;
|
||
|
|
const isBriefOnly = feature('KAIROS') || feature('KAIROS_BRIEF') ?
|
||
|
|
// biome-ignore lint/correctness/useHookAtTopLevel: feature() is a compile-time constant
|
||
|
|
useAppState(s_1 => s_1.isBriefOnly) : false;
|
||
|
|
|
||
|
|
// When voice is actively recording or processing, replace all
|
||
|
|
// notifications with just the voice indicator.
|
||
|
|
if (feature('VOICE_MODE') && voiceEnabled && (voiceState === 'recording' || voiceState === 'processing')) {
|
||
|
|
return <VoiceIndicator voiceState={voiceState} />;
|
||
|
|
}
|
||
|
|
return <>
|
||
|
|
<IdeStatusIndicator ideSelection={ideSelection} mcpClients={mcpClients} />
|
||
|
|
{notifications.current && ('jsx' in notifications.current ? <Text wrap="truncate" key={notifications.current.key}>
|
||
|
|
{notifications.current.jsx}
|
||
|
|
</Text> : <Text color={notifications.current.color} dimColor={!notifications.current.color} wrap="truncate">
|
||
|
|
{notifications.current.text}
|
||
|
|
</Text>)}
|
||
|
|
{isInOverageMode && !isTeamOrEnterprise && <Box>
|
||
|
|
<Text dimColor wrap="truncate">
|
||
|
|
Now using extra usage
|
||
|
|
</Text>
|
||
|
|
</Box>}
|
||
|
|
{apiKeyHelperSlow && <Box>
|
||
|
|
<Text color="warning" wrap="truncate">
|
||
|
|
apiKeyHelper is taking a while{' '}
|
||
|
|
</Text>
|
||
|
|
<Text dimColor wrap="truncate">
|
||
|
|
({apiKeyHelperSlow})
|
||
|
|
</Text>
|
||
|
|
</Box>}
|
||
|
|
{(apiKeyStatus === 'invalid' || apiKeyStatus === 'missing') && <Box>
|
||
|
|
<Text color="error" wrap="truncate">
|
||
|
|
{isEnvTruthy(process.env.CLAUDE_CODE_REMOTE) ? 'Authentication error · Try again' : 'Not logged in · Run /login'}
|
||
|
|
</Text>
|
||
|
|
</Box>}
|
||
|
|
{debug && <Box>
|
||
|
|
<Text color="warning" wrap="truncate">
|
||
|
|
Debug mode
|
||
|
|
</Text>
|
||
|
|
</Box>}
|
||
|
|
{apiKeyStatus !== 'invalid' && apiKeyStatus !== 'missing' && verbose && <Box>
|
||
|
|
<Text dimColor wrap="truncate">
|
||
|
|
{tokenUsage} tokens
|
||
|
|
</Text>
|
||
|
|
</Box>}
|
||
|
|
{!isBriefOnly && <TokenWarning tokenUsage={tokenUsage} model={mainLoopModel} />}
|
||
|
|
{shouldShowAutoUpdater && <AutoUpdaterWrapper verbose={verbose} onAutoUpdaterResult={onAutoUpdaterResult} autoUpdaterResult={autoUpdaterResult} isUpdating={isAutoUpdating} onChangeIsUpdating={onChangeIsUpdating} showSuccessMessage={!isShowingCompactMessage} />}
|
||
|
|
{feature('VOICE_MODE') ? voiceEnabled && voiceError && <Box>
|
||
|
|
<Text color="error" wrap="truncate">
|
||
|
|
{voiceError}
|
||
|
|
</Text>
|
||
|
|
</Box> : null}
|
||
|
|
<MemoryUsageIndicator />
|
||
|
|
<SandboxPromptFooterHint />
|
||
|
|
</>;
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6WyJmZWF0dXJlIiwiUmVhY3QiLCJSZWFjdE5vZGUiLCJ1c2VFZmZlY3QiLCJ1c2VNZW1vIiwidXNlU3RhdGUiLCJOb3RpZmljYXRpb24iLCJ1c2VOb3RpZmljYXRpb25zIiwibG9nRXZlbnQiLCJ1c2VBcHBTdGF0ZSIsInVzZVZvaWNlU3RhdGUiLCJWZXJpZmljYXRpb25TdGF0dXMiLCJ1c2VJZGVDb25uZWN0aW9uU3RhdHVzIiwiSURFU2VsZWN0aW9uIiwidXNlTWFpbkxvb3BNb2RlbCIsInVzZVZvaWNlRW5hYmxlZCIsIkJveCIsIlRleHQiLCJ1c2VDbGF1ZGVBaUxpbWl0cyIsImNhbGN1bGF0ZVRva2VuV2FybmluZ1N0YXRlIiwiTUNQU2VydmVyQ29ubmVjdGlvbiIsIk1lc3NhZ2UiLCJnZXRBcGlLZXlIZWxwZXJFbGFwc2VkTXMiLCJnZXRDb25maWd1cmVkQXBpS2V5SGVscGVyIiwiZ2V0U3Vic2NyaXB0aW9uVHlwZSIsIkF1dG9VcGRhdGVyUmVzdWx0IiwiZ2V0RXh0ZXJuYWxFZGl0b3IiLCJpc0VudlRydXRoeSIsImZvcm1hdER1cmF0aW9uIiwic2V0RW52SG9va05vdGlmaWVyIiwidG9JREVEaXNwbGF5TmFtZSIsImdldE1lc3NhZ2VzQWZ0ZXJDb21wYWN0Qm91bmRhcnkiLCJ0b2tlbkNvdW50RnJvbUxhc3RBUElSZXNwb25zZSIsIkF1dG9VcGRhdGVyV3JhcHBlciIsIkNvbmZpZ3VyYWJsZVNob3J0Y3V0SGludCIsIklkZVN0YXR1c0luZGljYXRvciIsIk1lbW9yeVVzYWdlSW5kaWNhdG9yIiwiU2VudHJ5RXJyb3JCb3VuZGFyeSIsIlRva2VuV2FybmluZyIsIlNhbmRib3hQcm9tcHRGb290ZXJIaW50IiwiVm9pY2VJbmRpY2F0b3IiLCJyZXF1aXJlIiwiRk9PVEVSX1RFTVBPUkFSWV9TVEFUVVNfVElNRU9VVCIsIlByb3BzIiwiYXBpS2V5U3RhdHVzIiwiYXV0b1VwZGF0ZXJSZXN1bHQiLCJpc0F1dG9VcGRhdGluZyIsImRlYnVnIiwidmVyYm9zZSIsIm1lc3NhZ2VzIiwib25BdXRvVXBkYXRlclJlc3VsdCIsInJlc3VsdCIsIm9uQ2hhbmdlSXNVcGRhdGluZyIsImlzVXBkYXRpbmciLCJpZGVTZWxlY3Rpb24iLCJtY3BDbGllbnRzIiwiaXNJbnB1dFdyYXBwZWQiLCJpc05hcnJvdyIsIk5vdGlmaWNhdGlvbnMiLCJ0MCIsIiQiLCJfYyIsInQxIiwidDIiLCJ1bmRlZmluZWQiLCJ0MyIsIm1lc3NhZ2VzRm9yVG9rZW5Db3VudCIsInRva2VuVXNhZ2UiLCJtYWluTG9vcE1vZGVsIiwidDQiLCJpc1Nob3dpbmdDb21wYWN0TWVzc2FnZSIsImlzQWJvdmVXYXJuaW5nVGhyZXNob2xkIiwic3RhdHVzIiwiaWRlU3RhdHVzIiwibm90aWZpY2F0aW9ucyIsIl90ZW1wIiwiYWRkTm90aWZpY2F0aW9uIiwicmVtb3ZlTm90aWZpY2F0aW9uIiwiY2xhdWRlQWlMaW1pdHMiLCJ0NSIsInQ2IiwidGV4dCIsImlzRXJyb3IiLCJrZXkiLCJjb2xvciIsInByaW9yaXR5IiwidGltZW91dE1zIiwiX3RlbXAyIiwic2hvdWxkU2hvd0lkZVNlbGVjdGlvbiIsImZpbGVQYXRoIiwibGluZUNvdW50Iiwic2hvdWxkU2hvd0F1dG9VcGRhdGVyIiwiaXNJbk92ZXJhZ2VNb2RlIiwiaXNVc2luZ092ZXJhZ2UiLCJ0NyIsIlN5bWJvbCIsImZvciIsInN1YnNjcmlwdGlvblR5cGUiLCJpc1RlYW1PckVudGVycHJpc2UiLCJ0OCIsImVkaXRvciIsInNob3VsZFNob3dFeHRlcm5hbEVkaXRvckhpbnQiLCJ0MTAiLCJ0OSIsImpzeCIsInQxMSIsInQxMiIsInQxMyIsInQxNCIsInMiLCJOb3RpZmljYXRpb25Db250ZW50IiwiY3VycmVudCIsInF1ZXVlIiwiYXBpS2V5SGVscGVyU2xvdyIsInNldEFwaUtleUhlbHBlclNsb3ciLCJpbnRlcnZhbCIsInNldEludGVydmFsIiwic2V0U2xvdyIsIkRpc3BhdGNoIiwiU2V0U3RhdGVBY3Rpb24iLCJtcyIsIm5leHQiLCJwcmV2IiwiY2xlYXJJbnRlcnZhbCIsInZvaWNlU3RhdGUiLCJjb25zdCIsInZvaWNlRW5hYmxlZCIsInZvaWNlRXJyb3IiLCJpc0JyaWVmT25seSIsInByb2Nlc3MiLCJlbnYiLCJDTEFVREVfQ09ERV9SRU1PVEUiXSwic291cmNlcyI6WyJOb3RpZmljYXRpb25zLnRzeCJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBmZWF0dXJlIH0gZnJvbSAnYnVuOmJ1bmRsZSdcbmltcG9ydCAqIGFzIFJlYWN0IGZyb20gJ3JlYWN0J1xuaW1wb3J0IHsgdHlwZSBSZWFjdE5vZGUsIHVzZUVmZmVjdCwgdXNlTWVtbywgdXNlU3RhdGUgfSBmcm9tICdyZWFjdCdcbmltcG9ydCB7XG4gIHR5cGUgTm90aWZpY2F0aW9uLFxuICB1c2VOb3RpZmljYXRpb25zLFxufSBmcm9tICdzcmMvY29udGV4dC9ub3RpZmljYXRpb25zLmpzJ1xuaW1wb3J0IHsgbG9nRXZlbnQgfSBmcm9tICdzcmMvc2VydmljZXMvYW5hbHl0aWNzL2luZGV4LmpzJ1xuaW1wb3J0IHsgdXNlQXBwU3RhdGUgfSBmcm9tICdzcmMvc3RhdGUvQXBwU3RhdGUuanMnXG5pbXBvcnQgeyB1c2VWb2ljZVN0YXRlIH0gZnJvbSAnLi4vLi4vY29udGV4dC92b2ljZS5qcydcbmltcG9ydCB0eXBlIHsgVmVyaWZpY2F0aW9uU3RhdHVzIH0gZnJvbSAnLi4vLi4vaG9va3MvdXNlQXBpS2V5VmVyaWZpY2F0aW9uLmpzJ1xuaW1wb3J0IHsgdXNlSWRlQ29ubmVjdGlvblN0YXR1cyB9IGZyb20gJy4uLy4uL2hvb2tzL3VzZUlkZUNvbm5lY3Rpb25TdGF0dXMuanMnXG5pbXBvcnQgdHlwZSB7IElERVNlbGVjdGlvbiB9IGZyb20gJy4uLy4uL2hvb2tzL3VzZUlkZVNlbGVjdGlvbi5qcydcbmltcG9ydCB7IHVzZU1haW5Mb29wTW9kZWwgfSBmcm9tICcuLi8uLi9ob29rcy91c2VNYWluTG9vcE1vZGVsLmpzJ1xuaW1wb3J0IHsgdXNlVm9pY2VFbmFibGVkIH0gZnJvbSAnLi4vLi4vaG9va3MvdXNlVm9pY2VFbmFibGVkLmpzJ1xuaW1wb3J0IHsgQm94LCBUZXh0IH0gZnJvbSAnLi4vLi4vaW5rLmpzJ1xuaW1wb3J0IHsgdXNlQ2xhdWRlQWlMaW1pdHMgfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9jbGF1ZGVBaUxpbWl0c0hvb2suanMnXG5pbXBvcnQgeyBjYWxjdWxhdGVUb2tlbldhcm5pbmdTdGF0ZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL2NvbXBhY3QvYXV0b0NvbXBhY3QuanMnXG5pbXBvcnQgdHlwZSB7IE1DUFNlcnZlckNvbm5lY3Rpb24gfSBmcm9tICcuLi8uLi9zZXJ2aWNlcy9tY3AvdHlwZXMuanMnXG5pbXBvcnQgdHlwZSB7IE1lc3NhZ2UgfSBmcm9
|