{"_id":"q-en-vscode-0005f7662b50a0376687cf82b2c38eef3d15c114c08d782dd04ae8edf5c16235","text":".interactive-session .interactive-input-part .interactive-execute-toolbar { height: 22px; /* It's bottom-aligned, make it appear centered within the container */ margin-bottom: 7px; } .interactive-session .interactive-input-part .interactive-execute-toolbar .codicon-debug-stop {"}
{"_id":"q-en-vscode-002a0129d70f2b1c829022e7767213e73ad3a1122394013575d05b0b390bca18","text":"@IConfigurationService configurationService: IConfigurationService, @IEditorService editorService: IEditorService, @IBackupFileService backupFileService: IBackupFileService, @IWorkspaceContextService contextService: IWorkspaceContextService, @ILifecycleService lifecycleService: ILifecycleService, ) { const enabled = isWelcomePageEnabled(configurationService); const enabled = isWelcomePageEnabled(configurationService, contextService); if (enabled && lifecycleService.startupKind !== StartupKind.ReloadedWindow) { backupFileService.hasBackups().then(hasBackups => { const activeEditor = editorService.activeEditor;"}
{"_id":"q-en-vscode-00f2ddb026b1ecb9d5cd18157679e1490add6873d4b8cda610bf6ddb9ad0dc26","text":"import { mainWindow } from 'vs/base/browser/window'; import { IKeybindingService } from 'vs/platform/keybinding/common/keybinding'; import { TitlebarStyle } from 'vs/platform/window/common/window'; import { IPreferencesService } from 'vs/workbench/services/preferences/common/preferences'; // Register Icons const menubarIcon = registerIcon('menuBar', Codicon.layoutMenubar, localize('menuBarIcon', \"Represents the menu bar\"));"}
{"_id":"q-en-vscode-010f099e7dfbb3967567683060469b91daf246c5e08c845c70fcf441db3e4b33","text":"* Search text in files across all {@link workspace.workspaceFolders workspace folders} in the workspace. * @param query The query parameters for the search - the search string, whether it's case-sensitive, or a regex, or matches whole words. * @param options An optional set of query options. * @param callback A callback, called for each result * @param callback A callback, called for each {@link TextSearchResultNew result}. This can be a direct match, or context that surrounds a match. * @param token A token that can be used to signal cancellation to the underlying search engine. * @return A thenable that resolves when the search is complete. */"}
{"_id":"q-en-vscode-0118275d4ce88f87607abc00cc0ff89feda4f17907980da1e4bf69367c256dd9","text":"if (this._preLaunchInputQueue.length > 0) { this._process.send({ event: 'input', data: this._sanitizeInput(this._preLaunchInputQueue) data: this._preLaunchInputQueue }); this._preLaunchInputQueue = null; }"}
{"_id":"q-en-vscode-015f61cf8d5914779a174ceb5c07f8db0c8363d5cdc0a27048ee8f98d8e5e452","text":"private getResourcePath(webviewEditor: vscode.WebviewPanel, resource: vscode.Uri, version: string) { switch (resource.scheme) { case 'data': return encodeURI(resource.toString(true)); return resource.toString(true); case 'git': // Show blank image return encodeURI('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAEElEQVR42gEFAPr/AP///wAI/AL+Sr4t6gAAAABJRU5ErkJggg=='); return 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAEElEQVR42gEFAPr/AP///wAI/AL+Sr4t6gAAAABJRU5ErkJggg=='; default: // Avoid adding cache busting if there is already a query string if (resource.query) { return encodeURI(webviewEditor.webview.asWebviewUri(resource).toString(true)); return encodeURI(webviewEditor.webview.asWebviewUri(resource).toString()); } return encodeURI(webviewEditor.webview.asWebviewUri(resource).toString(true) + `?version=${version}`); return encodeURI(webviewEditor.webview.asWebviewUri(resource).toString() + `?version=${version}`); } }"}
{"_id":"q-en-vscode-01769304335197bac0cf85d7dc94b932fefd6c26f0631a38ff5ed1183e99efa7","text":"import * as nls from 'vs/nls'; import { IContextKey, IContextKeyService, RawContextKey } from 'vs/platform/contextkey/common/contextkey'; import { KeybindingWeight } from 'vs/platform/keybinding/common/keybindingsRegistry'; import { editorSelectionBackground, iconForeground, registerColor, transparent } from 'vs/platform/theme/common/colorRegistry'; import { FoldingDecorationProvider } from './foldingDecorations'; import { FoldingRegion, FoldingRegions, FoldRange, FoldSource, ILineRange } from './foldingRanges'; import { SyntaxRangeProvider } from './syntaxRangeProvider';"}
{"_id":"q-en-vscode-018634f484874cc5f10e6fbd05598e7236b7fc93a96eff1a83af79e4fc90cb90","text":"@ILabelService private readonly labelService: ILabelService, @IProductService private readonly productService: IProductService, @IBrowserWorkbenchEnvironmentService private readonly environmentService: IBrowserWorkbenchEnvironmentService, @IWorkbenchLayoutService private readonly layoutService: IWorkbenchLayoutService @IWorkbenchLayoutService private readonly layoutService: IWorkbenchLayoutService, @IHostService private readonly hostService: IHostService ) { super();"}
{"_id":"q-en-vscode-01ecb5e7f4edab783a20c8411ec0cbbdce358d58a86c94dbe4d8c6eca863d72c","text":"const scrollTop = scrollTopObservable.read(reader); const scrollHeight = scrollHeightObservable.read(reader); const computedAvailableSize = Math.max(0, layoutInfo.height); const computedRepresentableSize = Math.max(0, computedAvailableSize - 2 * 0); const computedRatio = scrollHeight > 0 ? (computedRepresentableSize / scrollHeight) : 0; const computedSliderSize = Math.max(0, Math.floor(layoutInfo.height * computedRatio)); const computedSliderPosition = Math.floor(scrollTop * computedRatio); viewportDomElement.setTop(computedSliderPosition); viewportDomElement.setHeight(computedSliderSize); const scrollBarOptions = this._editors.modified.getOption(EditorOption.scrollbar); const state = new ScrollbarState( scrollBarOptions.verticalHasArrows ? scrollBarOptions.arrowSize : 0, scrollBarOptions.verticalScrollbarSize, 0, layoutInfo.height, scrollHeight, scrollTop ); viewportDomElement.setTop(state.getSliderPosition()); viewportDomElement.setHeight(state.getSliderSize()); } else { viewportDomElement.setTop(0); viewportDomElement.setHeight(0);"}
{"_id":"q-en-vscode-0207696b06c3b08601d97b3f9af9422b40c96e5e4f6f26ce9790683ebc6f0363","text":"// Get All types of recommendations, trimmed to show a max of 8 at any given time private async getAllRecommendationsModel(options: IQueryOptions, token: CancellationToken): Promise> { const local = (await this.extensionsWorkbenchService.queryLocal(this.options.server)).map(e => e.identifier.id.toLowerCase()); const localExtensions = await this.extensionsWorkbenchService.queryLocal(this.options.server); const localExtensionIds = localExtensions.map(e => e.identifier.id.toLowerCase()); const allRecommendations = distinct( flatten(await Promise.all(["}
{"_id":"q-en-vscode-0216ba0974b9b52c8b1b1499dd0eb670c32cc172a56fa855a0ee15b8be51f1e4","text":"'use strict'; import * as assert from 'assert'; import { IFilter, or, matchesPrefix, matchesStrictPrefix, matchesCamelCase, matchesSubString, matchesContiguousSubString, matchesWords } from 'vs/base/common/filters'; import { IFilter, or, matchesPrefix, matchesStrictPrefix, matchesCamelCase, matchesSubString, matchesContiguousSubString, matchesWords, fuzzyMatchAndScore } from 'vs/base/common/filters'; function filterOk(filter: IFilter, word: string, wordToMatchAgainst: string, highlights?: { start: number; end: number; }[]) { let r = filter(word, wordToMatchAgainst);"}
{"_id":"q-en-vscode-0228446eb58de34634f34167f6b1b34f1facac1f2dd40c2aea3b994a2145d80b","text":"interface UriState extends UriComponents { $mid: number; fsPath: string; external: string; fsPath: string; _sep: 1 | undefined; } const _pathSepMarker = isWindows ? 1 : undefined; // tslint:disable-next-line:class-name class _URI extends URI {"}
{"_id":"q-en-vscode-02438cd731d9ab41e721cd4608cc25b15679656f1dd21d74ee0f48d0fbb7550e","text":"const workingCopyAdapter = new class implements IWorkingCopy { readonly resource = input.modelUri; get name() { return input.getName(); } readonly capabilities = input.isUntitled() ? WorkingCopyCapabilities.Untitled : 0; readonly capabilities = input.isUntitled() ? WorkingCopyCapabilities.Untitled : WorkingCopyCapabilities.None; readonly onDidChangeDirty = input.onDidChangeDirty; readonly onDidChangeContent = input.onDidChangeContent; isDirty(): boolean { return input.isDirty(); }"}
{"_id":"q-en-vscode-025091113d0d7f6eb62090717d56991116af6a61df24ec8b0054de0aacd5ab86","text":"minimap: { enabled: false }, wordWrap: 'on', }; const diffEditorOptions: IDiffEditorConstructionOptions = {"}
{"_id":"q-en-vscode-026514efcb130d82d15e2b122664eda70c5dbd18d7298e91a99409bfb4e7538e","text":"moveTo(thisCursor, 1, 8); moveTo(thisCursor, 3, 9, true); moveToBeginningOfLine(thisCursor, false); assertCursor(thisCursor, new Selection(1, 6, 1, 6)); assertCursor(thisCursor, new Selection(3, 5, 3, 5)); }); test('move to beginning of line with selection multiline backward', () => {"}
{"_id":"q-en-vscode-026ea3a6fd454023e5bb80b19443129b0b2c5b08993087a0cbb3d2bd92bb18df","text":"this._slider.setHeight(layout.sliderHeight); // Compute horizontal slider coordinates const scrollLeftChars = renderingCtx.scrollLeft / this._model.options.typicalHalfwidthCharacterWidth; const horizontalSliderLeft = Math.min(this._model.options.minimapWidth, Math.round(scrollLeftChars * this._model.options.minimapCharWidth / this._model.options.pixelRatio)); this._sliderHorizontal.setLeft(horizontalSliderLeft); this._sliderHorizontal.setWidth(this._model.options.minimapWidth - horizontalSliderLeft); this._sliderHorizontal.setLeft(0); this._sliderHorizontal.setWidth(this._model.options.minimapWidth); this._sliderHorizontal.setTop(0); this._sliderHorizontal.setHeight(layout.sliderHeight);"}
{"_id":"q-en-vscode-0286870667bcf40e942e626f1bd2d8a9ae9b7672bacb1d76b8510a2f95b84324","text":"return []; } return [currentHistoryItemGroup.name, currentHistoryItemGroup.remote?.name ?? '', currentHistoryItemGroup.base?.name ?? '']; return [ currentHistoryItemGroup.name, currentHistoryItemGroup.remote?.name, currentHistoryItemGroup.base?.name] .filter(l => l !== undefined); } private getTooltip(element: SCMHistoryItemViewModelTreeElement): IManagedHoverTooltipMarkdownString {"}
{"_id":"q-en-vscode-02a4b0f5d203113c6d6cda6f76869c5e9a3df4049b473e70cad689161c918fb5","text":"resolved \"https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-7.0.1.tgz#8118a32b02735dccd14f893b495fa5389ad7de79\" integrity sha512-zQ5U/nuXAAMsh691FtV0wPz89nSkHbs+IQV8FDk+wew9BlSDhf4UmWGlWJfTR2Ti6xZv87Tj5fENzKf6Qk7aLw== xterm-addon-canvas@0.2.0-beta.15: version \"0.2.0-beta.15\" resolved \"https://registry.yarnpkg.com/xterm-addon-canvas/-/xterm-addon-canvas-0.2.0-beta.15.tgz#de863e46410b1de357b153abf1984227777760e4\" integrity sha512-E1pNCDSVTINchwWLysZ9ZD/BPv1WLGV52xRHB00US1PHHELbhtvms+6dZ44WZEDXhtfpptRZ1VBx+QpvfJIuvw== xterm-addon-search@0.10.0-beta.3: version \"0.10.0-beta.3\" resolved \"https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.10.0-beta.3.tgz#5194434d86105637c71f6f20139a9d0b5c1a956a\" integrity sha512-UeGm/ymnp7HUYJJtsP0D+bljOWbdk3MctcLJ+0jv8AmU6YlAzJFtouvYSQrD5SAMyht5CRsvjzFgqic9X02JYg== xterm-addon-unicode11@0.4.0-beta.3: version \"0.4.0-beta.3\" resolved \"https://registry.yarnpkg.com/xterm-addon-unicode11/-/xterm-addon-unicode11-0.4.0-beta.3.tgz#f350184155fafd5ad0d6fbf31d13e6ca7dea1efa\" integrity sha512-FryZAVwbUjKTmwXnm1trch/2XO60F5JsDvOkZhzobV1hm10sFLVuZpFyHXiUx7TFeeFsvNP+S77LAtWoeT5z+Q== xterm-addon-webgl@0.13.0-beta.32: version \"0.13.0-beta.32\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.13.0-beta.32.tgz#ae7335f788ae611733e03f6ca38280ab7b86d212\" integrity sha512-xOudNzYXaRh9QZ+IigXM5EB3bM8l3/F8F35EpJRYvvsylVxiB6Km8X8l7+nxlWt+uYdnHZs0ka2rvtL8kOP/uw== xterm@5.0.0-beta.32: version \"5.0.0-beta.32\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-5.0.0-beta.32.tgz#62bb9902429c0055fd2fd85c9eecfbf1756ed31c\" integrity sha512-OAM1GaBs/chK63Cr86XbVhfVCLLXLpNxxFrv3RK9xoyb9dwiY3gaMxK9jeGzTnrbGLWJb+k5nxaC0rx2YsHvUA== xterm-addon-canvas@0.2.0-beta.17: version \"0.2.0-beta.17\" resolved \"https://registry.yarnpkg.com/xterm-addon-canvas/-/xterm-addon-canvas-0.2.0-beta.17.tgz#e84a86530b20bd3edcce16b4566f346cd186ab4d\" integrity sha512-2ukPdCA92VTFYQRE56ylzvI3cfaQYDWd/Mc4jlEItI6sV/EA5RnUbbP+2sFIx0JlmHK6nVYXXNY2p6QRB7MRew== xterm-addon-search@0.10.0-beta.5: version \"0.10.0-beta.5\" resolved \"https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.10.0-beta.5.tgz#a2cb16bda4ddf8783b80433155ad94f5822271f8\" integrity sha512-kjog7cm1iEZ2XyQFVs3KAvoI2pKoX0cq2WWjL0FuXYXpKQ9vXmfrWSR7PiJ6zpTIRvr6UtaSGKhmZVHLNA79WA== xterm-addon-unicode11@0.4.0-beta.5: version \"0.4.0-beta.5\" resolved \"https://registry.yarnpkg.com/xterm-addon-unicode11/-/xterm-addon-unicode11-0.4.0-beta.5.tgz#3900e66f10d2e506133b61d7421aab6878d32665\" integrity sha512-+g+fuxAd/tkCEJ/jhdnebXKtdPrhsu4VKWNnB/3qM35GbuGQOasmYFYnKL+HYZMpbQ6YqeZcXTVg/wnCTttz0g== xterm-addon-webgl@0.13.0-beta.35: version \"0.13.0-beta.35\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.13.0-beta.35.tgz#98b5dc102583120de25c7c6e0f35cd34ab6bef98\" integrity sha512-powgeb3ifEZK7zWwLJuE8YRz/Z0UzDrrVA9NTx9mH7+vWxrGt9ZgroychoeCqZBvKMofiUM5vlf1oWdSmsMfzw== xterm@5.0.0-beta.35: version \"5.0.0-beta.35\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-5.0.0-beta.35.tgz#3bbf5780c98aaaa6476e7590dff1d8f5014fce9d\" integrity sha512-tzJTel1E/FmB0VQDb44xApVB+ln+BifIbHD4V9x9Z3D9m1cMmPHy8J8efdILkn1TxXGlCl7VC35nG122Qq5exw== "}
{"_id":"q-en-vscode-02c7b9348337d919c883688592a43324b9409d3e83feb7b69dc39bd2375948c4","text":"} while(m); return counter; } } No newline at end of file } "}
{"_id":"q-en-vscode-02d456e7ce69cc5f1ea48c02ac57ea1bfc074566fb9dd8dedf6ee452c1c2df8f","text":"public setInput(input: FileEditorInput, options?: EditorOptions): TPromise { // We have a current input in this editor and are about to either open a new editor or jump to a different // selection inside the editor. Thus we store the current selection into the navigation history so that // a user can navigate back to the exact position he left off. if (this.input) { const selection = this.getControl().getSelection(); if (selection) { this.historyService.add(this.input, { startLineNumber: selection.startLineNumber, startColumn: selection.startColumn }); } } // Return early for same input unless we force to open const forceOpen = options && options.forceOpen; if (!forceOpen && input.matches(this.input)) {"}
{"_id":"q-en-vscode-02e80e61cbe59ad1ecc375fc324d9f40772a7a2ab9ec7ffe58d5f50293f3094d","text":"\"cssnano\": \"^4.1.11\", \"debounce\": \"^1.0.0\", \"deemon\": \"^1.8.0\", \"electron\": \"25.8.0\", \"electron\": \"25.8.1\", \"eslint\": \"8.36.0\", \"eslint-plugin-header\": \"3.1.1\", \"eslint-plugin-jsdoc\": \"^46.5.0\","}
{"_id":"q-en-vscode-034b03ecb22a659f1df469d8ba8072354084f69b9b3377cb1131d85a05545974","text":"private gotoDefinition(position: Position, openToSide: boolean): Promise { this.editor.setPosition(position); const action = new DefinitionAction({ openToSide, openInPeek: false, muteMessage: true }, { alias: '', label: '', id: '', precondition: undefined }); const openInPeek = this.editor.getOption(EditorOption.definitionLinkOpensInPeek); const action = new DefinitionAction({ openToSide, openInPeek: openInPeek, muteMessage: true }, { alias: '', label: '', id: '', precondition: undefined }); return this.editor.invokeWithinContext(accessor => action.run(accessor, this.editor)); }"}
{"_id":"q-en-vscode-03519048c48bfbd1e56917d64af68be1ad6e1e715a9987e253e3c62b46111bf6","text":" No newline at end of file "}
{"_id":"q-en-vscode-036e392f1a7c4bede131f9573791aabb2df898bab7c14b413aab18b317508d53","text":"} const browserPlugins = [ new optimize.LimitChunkCountPlugin({ maxChunks: 1 }), new CopyWebpackPlugin({ patterns: [ { from: 'src', to: '.', globOptions: { ignore: ['**/test/**', '**/*.ts'] }, noErrorOnMissing: true }"}
{"_id":"q-en-vscode-036f8b092fa462a1eb64d793b7a029d975ecd9cbc7b0fcf75044a8a425ea3751","text":"focusNextNotebookCell(cell: IGenericCellViewModel, focus: 'editor' | 'container' | 'output'): Promise; updateOutputHeight(cellInfo: ICommonCellInfo, output: ICellOutputViewModel, height: number, isInit: boolean): void; deltaCellOutputContainerClassNames(diffSide: DiffSide, cellId: string, added: string[], removed: string[]): void; previousChange(): void; nextChange(): void; } export interface IDiffNestedCellViewModel {"}
{"_id":"q-en-vscode-037e40508ccac6f329664e7f6e3f8f0646e5a55f3b0afad05522e1cfa944c569","text":"const storedRecents = data as ISerializedRecentlyOpened; if (Array.isArray(storedRecents.entries)) { restoreGracefully(storedRecents.entries, (entry) => { restoreGracefully(storedRecents.entries, entry => { const label = entry.label; const remoteAuthority = entry.remoteAuthority;"}
{"_id":"q-en-vscode-0430d88e31c3c72621c1d7ba75dbc1636ae85f6fd6075fd3c1d63c7eca4e1930","text":"position: absolute; width: 100%; height: 100%; background: transparent; background: red; } .monaco-workbench:not(.reduce-motion) .monaco-sash:before {"}
{"_id":"q-en-vscode-04937904082fa2a0f4cad504b1ff385d8b225dda2129efc623824298f8449051","text":"return this._textModel.object.isDirty(); } isUntitled(): boolean { return this.textModel?.isUntitled() || false; } isReadonly() { return false; }"}
{"_id":"q-en-vscode-049ba039d81f675122ce9994ed403218d61834e73a7106cbce76f7113a3e1c42","text":"private _createBody(parent: HTMLElement): void { this._notebookTopToolbarContainer = document.createElement('div'); this._notebookTopToolbarContainer.classList.add('notebook-toolbar-container'); this._notebookTopToolbarContainer.tabIndex = 0; this._notebookTopToolbarContainer.style.display = 'none'; DOM.append(parent, this._notebookTopToolbarContainer); this._body = document.createElement('div');"}
{"_id":"q-en-vscode-04a3b48fe58325c12379c91d75daa89aba7be86c2a6d3bdee716c91276160785","text":"import { isWindows } from 'vs/base/common/platform'; import URI from 'vs/base/common/uri'; import { ltrim } from 'vs/base/common/strings'; import { RunOnceScheduler } from 'vs/base/common/async'; import { memoize } from 'vs/base/common/decorators'; const SMART = true;"}
{"_id":"q-en-vscode-04d32f21f1be86ec52dc1ce3e7bc39508e372e1a8b258ba95485d439f7123275","text":"sendText(text: string, addNewLine: boolean): void; /** * Takes a path and returns the properly escaped path to send to the terminal. * On Windows, this included trying to prepare the path for WSL if needed. * * @param path The path to be escaped and formatted. * @returns An escaped version of the path to be execuded in the terminal. */ preparePathForTerminalAsync(path: string): Promise; /** * Write text directly to the terminal, skipping the process if it exists. * @param text The text to write. */"}
{"_id":"q-en-vscode-05218e096cffdba3c55cc1230b297e4584ba31eb390948779a8d061f41799627","text":"}); }); // Support resolve keybindings event ipc.on('vscode:resolveKeybindings', (event: any, rawActionIds: string) => { let actionIds: string[] = []; try { actionIds = JSON.parse(rawActionIds); } catch (error) { // should not happen } // Resolve keys using the keybinding service and send back to browser process this.resolveKeybindings(actionIds).done(keybindings => { if (keybindings.length) { ipc.send('vscode:keybindingsResolved', JSON.stringify(keybindings)); } }, () => errors.onUnexpectedError); }); ipc.on('vscode:reportError', (event: any, error: string) => { if (error) { const errorParsed = JSON.parse(error);"}
{"_id":"q-en-vscode-05321415aa76d63d7a1209a3f777062a155d05c4ae876541b7ae44a632245f57","text":"import { MenuId, registerAction2, Action2 } from 'vs/platform/actions/common/actions'; import { IInstantiationService, ServicesAccessor } from 'vs/platform/instantiation/common/instantiation'; import { ContextKeyExpr, IContextKeyService, RawContextKey } from 'vs/platform/contextkey/common/contextkey'; import { IEditorService } from 'vs/workbench/services/editor/common/editorService'; import { IEditorService, SIDE_GROUP } from 'vs/workbench/services/editor/common/editorService'; import { KeybindingWeight } from 'vs/platform/keybinding/common/keybindingsRegistry'; import { KeyCode } from 'vs/base/common/keyCodes'; import { EditorPaneDescriptor, IEditorPaneRegistry } from 'vs/workbench/browser/editor';"}
{"_id":"q-en-vscode-05427914021d2a4b448765a04ea49ae147e41249469104551fea957b29e7761a","text":"this.commentTheadDisposables.add(this._commentThreadWidget.onDidResize(() => { if (this.currentElement?.cellKind === CellKind.Code && this._commentThreadWidget) { this.currentElement.commentHeight = dom.getClientArea(this._commentThreadWidget.container).height; this.currentElement.commentHeight = this._calculateCommentThreadHeight(this._commentThreadWidget.getDimensions().height); } })); }"}
{"_id":"q-en-vscode-057059b45e0ae1363c5ebee8fad0632d685bed99cf430db49bb11c84749814e8","text":"\"@microsoft/1ds-core-js\": \"^3.2.13\", \"@microsoft/1ds-post-js\": \"^3.2.13\", \"@parcel/watcher\": \"2.1.0\", \"@vscode/deviceid\": \"^0.1.1\", \"@vscode/iconv-lite-umd\": \"0.7.0\", \"@vscode/proxy-agent\": \"^0.19.0\", \"@vscode/ripgrep\": \"^1.15.9\","}
{"_id":"q-en-vscode-059be05ad3c14baa77e50d127fd4b7f8e7a6eeee8a25902a8e38a62e5d035554","text":"import { Promises } from 'vs/base/common/async'; import { EditorGroupColumn } from 'vs/workbench/services/editor/common/editorGroupColumn'; import { ViewColumn } from 'vs/workbench/api/common/extHostTypeConverters'; import { isProposedApiEnabled } from 'vs/workbench/services/extensions/common/extensions'; import { checkProposedApiEnabled } from 'vs/workbench/services/extensions/common/extensions'; export interface IExtHostTerminalService extends ExtHostTerminalServiceShape, IDisposable {"}
{"_id":"q-en-vscode-05c3fa803efe01b28bc5c316f998b9657cb785f11bd1380d9e80f776d5d4f0b6","text":"assert.ok(matchesWords('gipu', 'Category: Git: Pull', true) === null); assert.deepEqual(matchesWords('pu', 'Category: Git: Pull', true), [{ start: 15, end: 17 }]); }); test('fuzzyMatchAndScore', function () { function assertMatches(pattern: string, word: string, decoratedWord?: string) { let r = fuzzyMatchAndScore(pattern, word); assert.ok(Boolean(r) === Boolean(decoratedWord)); if (r) { const [, matches] = r; let pos = 0; for (let i = 0; i < matches.length; i++) { let actual = matches[i]; let expected = decoratedWord.indexOf('^', pos) - i; assert.equal(actual, expected); pos = expected + 1 + i; } } } assertMatches('no', 'match'); assertMatches('no', ''); assertMatches('', 'match'); assertMatches('BK', 'the_black_knight', 'the_^black_^knight'); assertMatches('bkn', 'the_black_knight', 'the_^black_^k^night'); assertMatches('bt', 'the_black_knight', 'the_^black_knigh^t'); assertMatches('bti', 'the_black_knight'); assertMatches('LLL', 'SVisualLoggerLogsList', 'SVisual^Logger^Logs^List'); assertMatches('LLLL', 'SVisualLoggerLogsList'); assertMatches('sllll', 'SVisualLoggerLogsList', '^SVisua^l^Logger^Logs^List'); assertMatches('sl', 'SVisualLoggerLogsList', '^SVisual^LoggerLogsList'); assertMatches('foobar', 'foobar', '^f^o^o^b^a^r'); assertMatches('fob', 'foobar', '^f^oo^bar'); assertMatches('ob', 'foobar'); assertMatches('gp', 'Git: Pull', '^Git: ^Pull'); assertMatches('gp', 'Git_Git_Pull', '^Git_Git_^Pull'); assertMatches('g p', 'Git: Pull', '^Git:^ ^Pull'); assertMatches('gip', 'Git: Pull', '^G^it: ^Pull'); assertMatches('is', 'isValid', '^i^sValid'); assertMatches('is', 'ImportStatement', '^Import^Statement'); assertMatches('lowrd', 'lowWord', '^l^o^wWo^r^d'); assertMatches('ccm', 'cacmelCase', '^ca^c^melCase'); assertMatches('ccm', 'camelCase'); assertMatches('ccm', 'camelCasecm', '^camel^Casec^m'); }); test('topScore', function () { function assertTopScore(pattern: string, expected: number, ...words: string[]) { let topScore = -1; let topIdx = 0; for (let i = 0; i < words.length; i++) { const word = words[i]; const m = fuzzyMatchAndScore(pattern, word); if (m) { const [score] = m; if (score > topScore) { topScore = score; topIdx = i; } } } assert.equal(topIdx, expected); } assertTopScore('Foo', 1, 'foo', 'Foo', 'foo'); assertTopScore('CC', 1, 'camelCase', 'CamelCase'); assertTopScore('cC', 0, 'camelCase', 'CamelCase'); assertTopScore('cC', 1, 'ccfoo', 'camelCase'); assertTopScore('cC', 1, 'ccfoo', 'camelCase', 'foo-cC-bar'); // issue #17836 assertTopScore('p', 0, 'parse', 'posix', 'pafdsa', 'path', 'p'); assertTopScore('pa', 0, 'parse', 'pafdsa', 'path'); // issue #14583 assertTopScore('log', 3, 'HTMLOptGroupElement', 'ScrollLogicalPosition', 'SVGFEMorphologyElement', 'log'); assertTopScore('e', 2, 'AbstractWorker', 'ActiveXObject', 'else'); // issue #14446 assertTopScore('workbench.sideb', 1, 'workbench.editor.defaultSideBySideLayout', 'workbench.sideBar.location'); // issue #11423 assertTopScore('editor.r', 2, 'diffEditor.renderSideBySide', 'editor.overviewRulerlanes', 'editor.renderControlCharacter', 'editor.renderWhitespace'); // assertTopScore('editor.R', 1, 'diffEditor.renderSideBySide', 'editor.overviewRulerlanes', 'editor.renderControlCharacter', 'editor.renderWhitespace'); // assertTopScore('Editor.r', 0, 'diffEditor.renderSideBySide', 'editor.overviewRulerlanes', 'editor.renderControlCharacter', 'editor.renderWhitespace'); assertTopScore('-mo', 1, '-ms-ime-mode', '-moz-columns'); // // dupe, issue #14861 assertTopScore('convertModelPosition', 0, 'convertModelPositionToViewPosition', 'convertViewToModelPosition'); // // dupe, issue #14942 assertTopScore('is', 0, 'isValidViewletId', 'import statement'); }); });"}
{"_id":"q-en-vscode-05d88f77263075663703f4d7e2c1ce34f5f192a732dc8b6fe999972ba39cd4a7","text":"@INotificationService private readonly notificationService: INotificationService, @IStatusbarService private readonly statusbarService: IStatusbarService, @ILayoutService private readonly layoutService: ILayoutService, @IKeybindingService private readonly keybindingService: IKeybindingService @IKeybindingService private readonly keybindingService: IKeybindingService, @IUserActivityService private readonly userActivityService: IUserActivityService, ) { super(); } async withProgress(options: IProgressOptions, task: (progress: IProgress) => Promise, onDidCancel?: (choice?: number) => void): Promise { async withProgress(options: IProgressOptions, originalTask: (progress: IProgress) => Promise, onDidCancel?: (choice?: number) => void): Promise { const { location } = options; const task = (progress: IProgress) => { const activeLock = this.userActivityService.markActive(); return originalTask(progress).finally(() => activeLock.dispose()); }; const handleStringLocation = (location: string) => { const viewContainer = this.viewDescriptorService.getViewContainerById(location); if (viewContainer) {"}
{"_id":"q-en-vscode-05dda4954a8629d2e94c8d2d02b8277c2b3bf923d68e4e7953ae7c4f8e8405d3","text":"this.updateIsNew(this.applicationStorage); this.applicationStoragePromise.complete({ indededDb: applicationStorageIndexedDB, storage: this.applicationStorage }); this.applicationStoragePromise.complete({ indexedDb: applicationStorageIndexedDB, storage: this.applicationStorage }); } private async createProfileStorage(profile: IUserDataProfile): Promise {"}
{"_id":"q-en-vscode-05e9419c04342addb725370e6be1c1fae7f24629415d596e81abd679ceb78355","text":"'~/foo', 'c:/foo/bar', 'c:foobar', 'c:foobar+more', 'c:foo/barbaz', 'foo/bar', 'foo/bar', 'foobar' 'foobar', 'foobar+more', ]; interface LinkFormatInfo {"}
{"_id":"q-en-vscode-05f222f5becaf55a5b8b6448a66ee591111b249e99cc96169bf9b917f1b94708","text":"} private getMarkersTooltip(stats: MarkerStatistics): string { const errorTitle = (n: number) => localize('totalErrors', \"{0} Errors\", n); const warningTitle = (n: number) => localize('totalWarnings', \"{0} Warnings\", n); const infoTitle = (n: number) => localize('totalInfos', \"{0} Infos\", n); const errorTitle = (n: number) => localize('totalErrors', \"Errors: {0}\", n); const warningTitle = (n: number) => localize('totalWarnings', \"Warnings: {0}\", n); const infoTitle = (n: number) => localize('totalInfos', \"Infos: {0}\", n); const titles: string[] = [];"}
{"_id":"q-en-vscode-0609121297c6e48c509c6c53e2a9441097046880cbb0ef99282309f524e41ffc","text":"super(); const cellEditorOptions = this._register(new CellEditorOptions(this.notebookEditor, this.notebookEditor.notebookOptions, this.configurationService, this.viewCell.language)); this._outputContainerRenderer = this.instantiationService.createInstance(CellOutputContainer, notebookEditor, viewCell, templateData, { limit: 2 }); this._outputContainerRenderer = this.instantiationService.createInstance(CellOutputContainer, notebookEditor, viewCell, templateData, { limit: 500 }); this.cellParts = [...templateData.cellParts, cellEditorOptions, this._outputContainerRenderer]; const editorHeight = this.calculateInitEditorHeight();"}
{"_id":"q-en-vscode-067a078c7f72482d3d4424716f74e430c729a8e6b260f1fefdaf2ce221f88a18","text":"} function renderError(outputInfo: OutputItem, container: HTMLElement, ctx: RendererContext & { readonly settings: RenderOptions }): void { clearContainer(container); const element = document.createElement('div'); container.appendChild(element); type ErrorLike = Partial;"}
{"_id":"q-en-vscode-073e8c7afdb57f1591c1a9a96daff19f2636c8d93cb5486e43483dec8a054cb1","text":"}; // Update group contexts based on group changes this._register(this.onDidModelChange(e => { const updateGroupContextKeys = (e: IGroupModelChangeEvent) => { switch (e.kind) { case GroupModelChangeKind.GROUP_LOCKED: groupLockedContext.set(this.isLocked);"}
{"_id":"q-en-vscode-074f62fd8f9d11a292ed48c8db9be17224a0d23d30548821c55f7bb491542a08","text":"*--------------------------------------------------------------------------------------------*/ import { $, addDisposableListener, append, scheduleAtNextAnimationFrame } from 'vs/base/browser/dom'; import { DomEmitter } from 'vs/base/browser/event'; import { ISashEvent as IBaseSashEvent, Orientation, Sash, SashState } from 'vs/base/browser/ui/sash/sash'; import { SmoothScrollableElement } from 'vs/base/browser/ui/scrollbar/scrollableElement'; import { pushToEnd, pushToStart, range } from 'vs/base/common/arrays';"}
{"_id":"q-en-vscode-077a0446e93ecbf7127961da3814905dff1e5ef47f375a479b0c3b497ce0e679","text":"private readonly _wrapLinkHandler: (handler: (event: MouseEvent | undefined, link: string) => void) => XtermLinkMatcherHandler, private readonly _tooltipCallback: (link: TerminalLink, viewportRange: IViewportRange, modifierDownCallback?: () => void, modifierUpCallback?: () => void) => void, private readonly _validationCallback: (link: string[], callback: (result: { uri: URI, link: string, isDirectory: boolean } | undefined) => void) => void, private readonly _testing: boolean, @IInstantiationService private readonly _instantiationService: IInstantiationService, @ICommandService private readonly _commandService: ICommandService, @IWorkspaceContextService private readonly _workspaceContextService: IWorkspaceContextService,"}
{"_id":"q-en-vscode-07a4c6bd6355236140b8b61e0d8f6107afc8b9c3bb14f815cf179d9f458cd26c","text":"return super.getActionViewItem(action, options); } override focus(): void { super.focus(); const fakeKeyboardEvent = new KeyboardEvent('keydown'); this._tree.focusFirst(fakeKeyboardEvent); this._tree.domFocus(); } async refresh(): Promise { this._treeViewModel.clearRepositoryState(); await this._updateChildren();"}
{"_id":"q-en-vscode-07b1aacb5fbfd847d711ecb56d0e38dd24fa00b8c1c1ec68caa9acb73b7e1610","text":"return welcomeEnabled.value; } } return startupEditor.value === 'welcomePage'; return startupEditor.value === 'welcomePage' || startupEditor.value === 'welcomePageInEmptyWorkbench' && contextService.getWorkbenchState() === WorkbenchState.EMPTY; } export class WelcomePageAction extends Action {"}
{"_id":"q-en-vscode-07bcf5614bd1fcaf5f4b8ee3ad7ac36f0e558b5c520bacfb17b7bfddd9917422","text":"} } }); this.registerExtensionAction({ id: ClearLanguageAction.ID, title: ClearLanguageAction.TITLE,"}
{"_id":"q-en-vscode-087d2a36dd8f8a4aa95df44b292eec0c5b5e932544485bf7a973a11ec346c14a","text":" { \"comments\": { \"lineComment\": \";\", \"blockComment\": [ \";\", \" \" ] }, \"brackets\": [ [\"{\", \"}\"], [\"[\", \"]\"], [\"(\", \")\"] ], \"autoClosingPairs\": [ [\"{\", \"}\"], [\"[\", \"]\"], [\"(\", \")\"], [\"\"\", \"\"\"], [\"'\", \"'\"] ], \"surroundingPairs\": [ [\"{\", \"}\"], [\"[\", \"]\"], [\"(\", \")\"], [\"\"\", \"\"\"], [\"'\", \"'\"] ] } No newline at end of file"}
{"_id":"q-en-vscode-092a685e64a6c618d34e91c3d67f8e27fc79711ba633f9b4d9c95740dc2e959a","text":"return args.join(' '); }; if (needsFolderQualification && workspaceFolder) { shellLaunchConfig.initialText = taskShellIntegrationStartSequence + formatMessageForTerminal(nls.localize({ shellLaunchConfig.initialText = this.taskShellIntegrationStartSequence + formatMessageForTerminal(nls.localize({ key: 'task.executingInFolder', comment: ['The workspace folder the task is running in', 'The task command line or label'] }, 'Executing task in folder {0}: {1}', workspaceFolder.name, `${shellLaunchConfig.executable} ${getArgsToEcho(shellLaunchConfig.args)}`), { excludeLeadingNewLine: true }) + taskShellIntegrationOutputSequence; }, 'Executing task in folder {0}: {1}', workspaceFolder.name, `${shellLaunchConfig.executable} ${getArgsToEcho(shellLaunchConfig.args)}`), { excludeLeadingNewLine: true }) + this.taskShellIntegrationOutputSequence; } else { shellLaunchConfig.initialText = taskShellIntegrationStartSequence + formatMessageForTerminal(nls.localize({ shellLaunchConfig.initialText = this.taskShellIntegrationStartSequence + formatMessageForTerminal(nls.localize({ key: 'task.executing', comment: ['The task command line or label'] }, 'Executing task: {0}', `${shellLaunchConfig.executable} ${getArgsToEcho(shellLaunchConfig.args)}`), { excludeLeadingNewLine: true }) + taskShellIntegrationOutputSequence; }, 'Executing task: {0}', `${shellLaunchConfig.executable} ${getArgsToEcho(shellLaunchConfig.args)}`), { excludeLeadingNewLine: true }) + this.taskShellIntegrationOutputSequence; } } else { shellLaunchConfig.initialText = taskShellIntegrationStartSequence + taskShellIntegrationOutputSequence; shellLaunchConfig.initialText = this.taskShellIntegrationStartSequence + this.taskShellIntegrationOutputSequence; } }"}
{"_id":"q-en-vscode-092e05157a3abcca3c6dbbfe53dde4efd1e65e0a6915f435b7a6109de6a04f0e","text":"private registered = false; private continueEditSessionOptions: ContinueEditSessionItem[] = []; private readonly shouldShowViewsContext: IContextKey; constructor( @IEditSessionsWorkbenchService private readonly editSessionsWorkbenchService: IEditSessionsWorkbenchService, @IFileService private readonly fileService: IFileService,"}
{"_id":"q-en-vscode-094cf59feea21fd3545702c34043b095cff3e4c9a9269fe0ec3eba203ff51261","text":"test('* star', () => { linkAllowedByRules('https://a.x.org', ['https://*.x.org']); linkAllowedByRules('https://a.b.x.org', ['https://*.x.org']); linkAllowedByRules('https://a.x.org', ['https://a.x.*']); linkAllowedByRules('https://a.x.org', ['https://a.*.org']); linkAllowedByRules('https://a.x.org', ['https://*.*.org']); linkAllowedByRules('https://a.b.x.org', ['https://*.b.*.org']); linkAllowedByRules('https://a.a.b.x.org', ['https://*.b.*.org']); }); test('no scheme', () => {"}
{"_id":"q-en-vscode-096274714e91fbbc6b072daa91cfcb0769e19343dd5e0d951995b03c74b317d4","text":"@IInstantiationService private readonly _instantiationService: IInstantiationService, @IConfigurationService private readonly _configurationService: IConfigurationService, @ILifecycleService private readonly _lifecycleService: ILifecycleService, @IContextKeyService _contextKeyService: IContextKeyService, @IContextKeyService private _contextKeyService: IContextKeyService, @IDialogService private readonly _dialogService: IDialogService ) { super();"}
{"_id":"q-en-vscode-096833e0f6ad71628128c447aa3c0f55ef3f45e95dce0ad6aff36a5d3a5d0a6e","text":"scheme: 'file', path: '/path/test.file', fsPath: '/path/test.file'.replace(///g, isWindows ? '' : '/'), _sep: isWindows ? 1 : undefined, }); assert.ok(uri.toString());"}
{"_id":"q-en-vscode-09ac1570a73b333392bd53e13e9d529ab8c457f3f62398abfb8962ab4fc58661","text":"import { generateUuid } from 'vs/base/common/uuid'; import { getActiveWindow, runWhenWindowIdle } from 'vs/base/browser/dom'; import { mainWindow } from 'vs/base/browser/window'; import { shouldUseEnvironmentVariableCollection } from 'vs/platform/terminal/common/terminalEnvironment'; const enum ProcessConstants { /**"}
{"_id":"q-en-vscode-09c90cd730ef1a84708b11e93e0cab810fc6cb840e9923443c13ca7da802e862","text":"overviewRulerLanes = 63, parameterHints = 64, peekWidgetDefaultFocus = 65, quickSuggestions = 66, quickSuggestionsDelay = 67, readOnly = 68, renderControlCharacters = 69, renderIndentGuides = 70, renderFinalNewline = 71, renderLineHighlight = 72, renderValidationDecorations = 73, renderWhitespace = 74, revealHorizontalRightPadding = 75, roundedSelection = 76, rulers = 77, scrollbar = 78, scrollBeyondLastColumn = 79, scrollBeyondLastLine = 80, selectionClipboard = 81, selectionHighlight = 82, selectOnLineNumbers = 83, semanticHighlighting = 84, showFoldingControls = 85, showUnused = 86, snippetSuggestions = 87, smoothScrolling = 88, stopRenderingLineAfter = 89, suggest = 90, suggestFontSize = 91, suggestLineHeight = 92, suggestOnTriggerCharacters = 93, suggestSelection = 94, tabCompletion = 95, useTabStops = 96, wordSeparators = 97, wordWrap = 98, wordWrapBreakAfterCharacters = 99, wordWrapBreakBeforeCharacters = 100, wordWrapColumn = 101, wordWrapMinified = 102, wrappingIndent = 103, wrappingStrategy = 104, editorClassName = 105, pixelRatio = 106, tabFocusMode = 107, layoutInfo = 108, wrappingInfo = 109 definitionLinkOpensInPeek = 66, quickSuggestions = 67, quickSuggestionsDelay = 68, readOnly = 69, renderControlCharacters = 70, renderIndentGuides = 71, renderFinalNewline = 72, renderLineHighlight = 73, renderValidationDecorations = 74, renderWhitespace = 75, revealHorizontalRightPadding = 76, roundedSelection = 77, rulers = 78, scrollbar = 79, scrollBeyondLastColumn = 80, scrollBeyondLastLine = 81, selectionClipboard = 82, selectionHighlight = 83, selectOnLineNumbers = 84, semanticHighlighting = 85, showFoldingControls = 86, showUnused = 87, snippetSuggestions = 88, smoothScrolling = 89, stopRenderingLineAfter = 90, suggest = 91, suggestFontSize = 92, suggestLineHeight = 93, suggestOnTriggerCharacters = 94, suggestSelection = 95, tabCompletion = 96, useTabStops = 97, wordSeparators = 98, wordWrap = 99, wordWrapBreakAfterCharacters = 100, wordWrapBreakBeforeCharacters = 101, wordWrapColumn = 102, wordWrapMinified = 103, wrappingIndent = 104, wrappingStrategy = 105, editorClassName = 106, pixelRatio = 107, tabFocusMode = 108, layoutInfo = 109, wrappingInfo = 110 } export const EditorOptions: { acceptSuggestionOnCommitCharacter: IEditorOption;"}
{"_id":"q-en-vscode-09ee8be29094964158f7accc194f42e0aaee4ea4c03e17d091cd5c35bd622c11","text":"return ''; } }, expandOnlyOnTwistieClick: (element: any) => { if (element instanceof CommentsModel || element instanceof ResourceWithCommentThreads) { return false; } return true; }, expandOnlyOnTwistieClick: true, collapseByDefault: false, overrideStyles: options.overrideStyles, filter: options.filter,"}
{"_id":"q-en-vscode-09fbfe5a7418850bee125d8d256d752e0ac11653d40e66fb2b1d36dd05c16405","text":"this._onDidCustomEvent = new Emitter(); this.sessionStates = new Map(); this.allProcesses = new Map(); this.fetchThreadsSchedulers = new Map(); this.configurationManager = this.instantiationService.createInstance(ConfigurationManager); this.toDispose.push(this.configurationManager);"}
{"_id":"q-en-vscode-0a02e148e08b4dc94f0a9244ed0633e78d5bc9caaec7c88394c8bd8dec3fc0b8","text":"assert.deepStrictEqual(actual, EXPECTED); }); test('cursorWordAccessibilityLeft', () => { const EXPECTED = ['| /* |Just |some |more |text |a+= |3 +|5-|3 + |7 */ '].join('n'); const [text,] = deserializePipePositions(EXPECTED); const actualStops = testRepeatedActionAndExtractPositions( text, new Position(1000, 1000), ed => cursorWordAccessibilityLeft(ed), ed => ed.getPosition()!, ed => ed.getPosition()!.equals(new Position(1, 1)) ); const actual = serializePipePositions(text, actualStops); assert.deepStrictEqual(actual, EXPECTED); }); test('cursorWordAccessibilityRight', () => { const EXPECTED = [' /* |Just |some |more |text |a+= |3 +|5-|3 + |7 */ |'].join('n'); const [text,] = deserializePipePositions(EXPECTED); const actualStops = testRepeatedActionAndExtractPositions( text, new Position(1, 1), ed => cursorWordAccessibilityRight(ed), ed => ed.getPosition()!, ed => ed.getPosition()!.equals(new Position(1, 50)) ); const actual = serializePipePositions(text, actualStops); assert.deepStrictEqual(actual, EXPECTED); }); test('deleteWordLeft for non-empty selection', () => { withTestCodeEditor([ ' tMy First Linet ',"}
{"_id":"q-en-vscode-0a3a8b72a7de640d71a93b2d6bb36fefb6df520f5b1a2b2f955411c68cbf728a","text":"}); } public toggleShowBaseAtTop(): void { public toggleShowBaseTop(): void { const showBaseTop = this._layoutMode.value.showBase && this._layoutMode.value.showBaseAtTop; this.setLayout({ ...this._layoutMode.value, showBaseAtTop: !this._layoutMode.value.showBaseAtTop, showBaseAtTop: true, showBase: !showBaseTop, }); } public toggleShowBaseCenter(): void { const showBaseCenter = this._layoutMode.value.showBase && !this._layoutMode.value.showBaseAtTop; this.setLayout({ ...this._layoutMode.value, showBaseAtTop: false, showBase: !showBaseCenter, }); }"}
{"_id":"q-en-vscode-0a4cc7c13cf29645da64641a1720f400bf1fc66e0c496252c067c4498eb7aec7","text":"@IClipboardService private readonly _clipboardService: IClipboardService, @IThemeService private readonly _themeService: IThemeService, @IConfigurationService private readonly _configurationService: IConfigurationService, @ILogService private _logService: ILogService @ILogService private _logService: ILogService, @IStorageService private readonly _storageService: IStorageService, ) { this._disposables = []; this._skipTerminalCommands = [];"}
{"_id":"q-en-vscode-0a574876194afdd586e6c34621bc5e3c2016d1430599b98fc959c41e28b9775c","text":"} export class TerminalInstance implements ITerminalInstance { private static readonly WINDOWS_EOL_REGEX = /r?n/g; private static readonly EOL_REGEX = /r?n/g; private static _terminalProcessFactory: ITerminalProcessFactory = new StandardTerminalProcessFactory(); private static _lastKnownDimensions: Dimension = null;"}
{"_id":"q-en-vscode-0a71d8e29710a9d048619c94dce2ea4bcb7e79ebf713393993906b98124f6edf","text":"// never wrap hidden editor result.wordWrapOverride1 = 'off'; result.wordWrapOverride2 = 'off'; result.stickyScroll = { enabled: false }; } else { result.wordWrapOverride1 = this._options.diffWordWrap; }"}
{"_id":"q-en-vscode-0aeab5c39401c4f4944d70e7f898060d77db095cd8dbbec096e0977237540ba6","text":"KeybindingsRegistry.registerCommandAndKeybindingRule({ id: 'scm.clearInput', weight: KeybindingWeight.WorkbenchContrib, when: ContextKeyExpr.has('scmRepository'), when: ContextKeyExpr.and(ContextKeyExpr.has('scmRepository'), SuggestContext.Visible.toNegated()), primary: KeyCode.Escape, handler: async (accessor) => { const scmService = accessor.get(ISCMService);"}
{"_id":"q-en-vscode-0b5e1012e696cc3f1faaa1576e2e156226577b9232c4df1f1e52e2bc5863e2ed","text":"this.compressedFocusFirstContext = ExplorerCompressedFirstFocusContext.bindTo(contextKeyService); this.compressedFocusLastContext = ExplorerCompressedLastFocusContext.bindTo(contextKeyService); this.viewHasSomeCollapsibleRootItem = ViewHasSomeCollapsibleRootItemContext.bindTo(contextKeyService); this.viewVisibleContextKey = ExplorerViewletVisibleContext.bindTo(contextKeyService); this.explorerService.registerView(this); }"}
{"_id":"q-en-vscode-0b74b36bf35893ffaedf963128abf2bd8935dd6c3405530946283bd28860e99a","text":"\"statusBarItem.remoteBackground\": \"#16825D\", \"sideBarSectionHeader.background\": \"#0000\", \"sideBarSectionHeader.border\": \"#61616130\", \"notebook.cellFocusBackground\": \"#c8ddf150\", \"notebook.focusedCellBackground\": \"#c8ddf150\", \"notebook.cellBorderColor\": \"#dae3e9\", \"notebook.outputContainerBackgroundColor\": \"#c8ddf150\", \"notebook.focusedCellShadow\": \"#00315040\""}
{"_id":"q-en-vscode-0b94c53fadd416de2d7f67d36c4087223ae2128c704ecbc80dde5f153aaa1aea","text":".extensions-viewlet > .extensions .extension-list-item.loading > .icon-container { display: none; } .extensions-viewlet.narrow > .extensions .extension-list-item > .icon-container { display: flex; align-items: flex-start; padding-top: 10px; } .extensions-viewlet.narrow > .extensions .extension-list-item > .icon-container > .icon { width: 24px; height: 24px; padding-top: 8px; padding-right: 6px; padding-right: 8px; } .extensions-viewlet:not(.narrow) > .extensions .extension-list-item > .details > .header-container > .header > .extension-remote-badge-container,"}
{"_id":"q-en-vscode-0c0a70890751839b230b60d3688683e3918f0d4a88daf4b1816100bd1ec99706","text":"} } }); this.registerExtensionAction({ id: SwitchToReleasedVersionAction.ID, title: SwitchToReleasedVersionAction.TITLE,"}
{"_id":"q-en-vscode-0c115a12a19c17f5a5d8b199250201f2e4ac8a10cc346da45181d7fc720f8eee","text":"'type': 'object', 'properties': { 'problems.decorations.enabled': { 'markdownDescription': localize('markers.showOnFile', \"Show Errors & Warnings on files and folder. Overwritten by `#problems.visibility#` when `{0}` is off.\", `problems.visibility`), 'markdownDescription': localize('markers.showOnFile', \"Show Errors & Warnings on files and folder. Overwritten by `#problems.visibility#` when it is off.\"), 'type': 'boolean', 'default': true }"}
{"_id":"q-en-vscode-0c15236434ab6523c9ef8fa66be7563758d2f9d956538125f3ad3f770c2e0f88","text":"Range.fromPositions(primaryPosition, primaryEditEndPosition) ); const positionWithinTextEdit = subtractPositions(primaryPosition, primaryEditStartPosition); if (positionWithinTextEdit.lineNumber < 1) { onUnexpectedError(new BugIndicatingError( `positionWithinTextEdit line number should be bigger than 0. Invalid subtraction between ${primaryPosition.toString()} and ${primaryEditStartPosition.toString()}` )); return []; } const secondaryEditText = substringPos(primaryEdit.text, positionWithinTextEdit); return secondaryPositions.map(pos => { const posEnd = addPositions(subtractPositions(pos, primaryEditStartPosition), primaryEditEndPosition);"}
{"_id":"q-en-vscode-0c1bad2c264b2245d3c6837c9072a51df7961b2c4eda87d9fa2092386be85a96","text":"dependencies: object-keys \"~0.4.0\" xterm-addon-search@0.9.0-beta.39: version \"0.9.0-beta.39\" resolved \"https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.9.0-beta.39.tgz#e8376e1485ee7d763c07d1a8f1354114f65b3e3e\" integrity sha512-h45wkecgfqXXoAUqgNytAfSd6g0xNT6rZy/enVaEU0aes7QoL9pxHUKkCry8PP6hs03Slk0VxQ4AGsbSZGvK/w== xterm-addon-search@0.9.0-beta.41: version \"0.9.0-beta.41\" resolved \"https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.9.0-beta.41.tgz#0992da36fe01ff6d71449265a9dabeef7f9d0a3f\" integrity sha512-b1vuWR5JZ8QIiObbKkwSzpzf4x0B9hdzGCHJG+PXWT/xbxk65DOe/X9rgrRyOnCWe5ylQGG4DIHTiREigTp0lg== xterm-addon-serialize@0.7.0-beta.13: version \"0.7.0-beta.13\" resolved \"https://registry.yarnpkg.com/xterm-addon-serialize/-/xterm-addon-serialize-0.7.0-beta.13.tgz#5c859c8657cab7f28405aab1a0715daf54bc7714\" integrity sha512-TYFlm/gds0pOmpzXw7ZWx8Cy48lMaOZZqZgfm5pWU37HPvzfKxXSVdYL1biWpRCH2zCH+3cWmOma8W1pBRr+Eg== xterm-addon-serialize@0.7.0-beta.15: version \"0.7.0-beta.15\" resolved \"https://registry.yarnpkg.com/xterm-addon-serialize/-/xterm-addon-serialize-0.7.0-beta.15.tgz#0f7d5f9b423802ac67c2a891d74de530a4fe6a65\" integrity sha512-gO/dxqGgOAuj7DN2ETTeCHyalkb655XogZh5408CmH5D6mjI1lxqVLGUdiFeBVU/OHfWZT2PZ95k06VXqLU5kA== xterm-addon-unicode11@0.4.0-beta.3: version \"0.4.0-beta.3\" resolved \"https://registry.yarnpkg.com/xterm-addon-unicode11/-/xterm-addon-unicode11-0.4.0-beta.3.tgz#f350184155fafd5ad0d6fbf31d13e6ca7dea1efa\" integrity sha512-FryZAVwbUjKTmwXnm1trch/2XO60F5JsDvOkZhzobV1hm10sFLVuZpFyHXiUx7TFeeFsvNP+S77LAtWoeT5z+Q== xterm-addon-webgl@0.12.0-beta.41: version \"0.12.0-beta.41\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.12.0-beta.41.tgz#17dbca975b6e9b34526ebc57f4de59ee295da1b6\" integrity sha512-wvQxC5diMYEJEMaILfz+4CWB2GgtzjzNQRNDnK7R7Y9wDI+P4idDlQKgyH0nA93sl9R4zgqlBVha//wuq4vfZg== xterm-addon-webgl@0.12.0-beta.43: version \"0.12.0-beta.43\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.12.0-beta.43.tgz#916ed4e390371403aab0d277097cd8a61be436e8\" integrity sha512-hGXfwT6TOmp0tBDiS/iF8s0SLHLd3shJ5zQyS4HNtq99B5cEhHhwaUAZAfjLt5rnUt0kvqR9YWtGsDux5dWVLA== xterm-headless@4.19.0-beta.60: version \"4.19.0-beta.60\" resolved \"https://registry.yarnpkg.com/xterm-headless/-/xterm-headless-4.19.0-beta.60.tgz#ccd09a7c69ba487d3fd87d6a8d159f1a6a10e9b2\" integrity sha512-mJ24BRnEDCASJDTGFZysZxiXkCmed3eMFiWCPvIF48LVrqxt1cImoVKBlxqkdgUkHKjfF2c92S1TTBL5aT1I0w== xterm-headless@4.19.0-beta.67: version \"4.19.0-beta.67\" resolved \"https://registry.yarnpkg.com/xterm-headless/-/xterm-headless-4.19.0-beta.67.tgz#fe44a243974bf307c9a0694114ab45289734c7f9\" integrity sha512-rpxUsE/te2LN4B/erI108uaAhuLTUsnRl9zIZgcqMqZGFRqDUTtyVM05jIA/8A32g06wFd3WioTkeKc6ow+sLg== xterm@4.19.0-beta.60: version \"4.19.0-beta.60\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-4.19.0-beta.60.tgz#de89d93153ae3ec17b53f3e5d03b8ea859126081\" integrity sha512-YQjvp4xtSAyNm9+gF4OA5+QzkSWdKMCy4WABETpe7CsrEGx+mJVoXCZ9wgopmvwRXz7DeJvKM5dWz1HPjVLDtA== xterm@4.19.0-beta.67: version \"4.19.0-beta.67\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-4.19.0-beta.67.tgz#9a7d79be64469c91bb693b9f5a50b5a22e921cd3\" integrity sha512-4bYTnT6g91N5QId1qPaiSvkpsxMQYpuPdPJItvBZFOcQLTuFSX85x5NeFuDvhNqi33eMFPimyGhzH/JvAV1v/Q== y18n@^3.2.1: version \"3.2.2\""}
{"_id":"q-en-vscode-0c5cd6e31fbd51379613a840b1c2de90bc62edf667a5b0d443a6e537d30ebcf3","text":"}); try { const result = await this._proxy.$executeCommand(id, toArgs, retry); const result = await this._proxy.$executeCommand(id, hasBuffers ? new SerializableObjectWithBuffers(toArgs) : toArgs, retry); return revive(result); } catch (e) { // Rerun the command when it wasn't known, had arguments, and when retry"}
{"_id":"q-en-vscode-0c75b7e2f66157dba26ea3b5a9f4fad96ea2e2a4981acfaf4d7c1b5f18b7c729","text":"@memoize get onDidChangeFocus() { return Event.map( this._tree.onDidChangeFocus, Event.any(this._tree.onDidChangeFocus, this._onTriggerEmptySelectionOrFocus.event), e => e.elements.filter((e): e is QuickPickItemElement => e instanceof QuickPickItemElement).map(e => e.item) ); }"}
{"_id":"q-en-vscode-0cb78a4e7ebf448a7be83beb97f35b1bc61ab54e8d37237671c3862cb47db1c4","text":"group: '', title: nls.localize('actions.clipboard.cutLabel', \"Cut\"), order: 1 }, { menuId: MenuId.SimpleEditorContext, group: CLIPBOARD_CONTEXT_MENU_GROUP, title: nls.localize('actions.clipboard.cutLabel', \"Cut\"), when: EditorContextKeys.writable, order: 1, }] })) : undefined;"}
{"_id":"q-en-vscode-0ce672e48279f2ff2215c9cebda2b00efbcaf5fdc6c4dc2d64cd4389cddca4ff","text":"\"type\": \"array\", \"markdownDescription\": \"%config.branchRandomNameDictionary%\", \"items\": { \"type\": \"string\" \"type\": \"string\", \"enum\": [ \"adjectives\", \"animals\", \"colors\", \"numbers\" ], \"enumDescriptions\": [ \"%config.branchRandomNameDictionary.adjectives%\", \"%config.branchRandomNameDictionary.animals%\", \"%config.branchRandomNameDictionary.colors%\", \"%config.branchRandomNameDictionary.numbers%\" ] }, \"default\": [ \"adjectives\","}
{"_id":"q-en-vscode-0cefa6152293f5bb16428c93530f613283a88f33b6deb9398c68c6f3b355b7e6","text":"return DOM.isAncestorOfActiveElement(this.container); } getFocus(): ExplorerItem[] { return this.tree.getFocus(); } focusNext(): void { this.tree.focusNext(); } focusLast(): void { this.tree.focusLast(); } getContext(respectMultiSelection: boolean): ExplorerItem[] { return getContext(this.tree.getFocus(), this.tree.getSelection(), respectMultiSelection, this.renderer); }"}
{"_id":"q-en-vscode-0d51894f3f941b30596a6d26d5e2a6c07ff4425dbc7d153a0cd33f98175ae777","text":"menu: [{ id: MenuId.ViewTitle, group: 'navigation', order: 3, order: 2, when: ContextKeyExpr.and(ContextKeyExpr.equals('view', VIEW_ID), Constants.InTreeViewKey.toNegated()), }] });"}
{"_id":"q-en-vscode-0d993259ad803ec2632abed3c545564719503ecb4d5322bf546ca9b29bf9d73d","text":"}); this.htmlElements.gutterDiv.style.width = '5px'; this.htmlElements.root.classList.add(`result`); this._register( autorunWithStore((reader, store) => {"}
{"_id":"q-en-vscode-0d99f85e7ffad93ec688728c0c535c4dadb937c480883cbd8b9b148d94189e29","text":"} picker.contextKey = descriptor?.contextKey; picker.filterValue = (value: string) => value.substring(descriptor ? descriptor.prefix.length : 0); if (descriptor?.placeholder) { picker.ariaLabel = descriptor?.placeholder; } // Pick mode: setup a promise that can be resolved // with the selected items and prevent execution"}
{"_id":"q-en-vscode-0da10ffef4e5f9f5c21f086278b7c6b5e7af00db7f48113dbd4d0e81235d84d1","text":"if (configuration.enableTsServerTracing) { if (tsServerTraceDirectory) { this._logger.info(`<${kind}> Trace directory: ${tsServerTraceDirectory}`); this._logger.info(`<${kind}> Trace directory: ${tsServerTraceDirectory.fsPath}`); } else { this._logger.error(`<${kind}> Could not create trace directory`); }"}
{"_id":"q-en-vscode-0de42cf19eaee5629794454c165239950e8c581da36519c368d0fca21699f10f","text":"VSCODE_CLI_TARGET: aarch64-unknown-linux-gnu VSCODE_CLI_ARTIFACT: vscode_cli_linux_arm64_cli VSCODE_CLI_ENV: CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc OPENSSL_LIB_DIR: $(Build.ArtifactStagingDirectory)/openssl/arm64-linux/lib OPENSSL_INCLUDE_DIR: $(Build.ArtifactStagingDirectory)/openssl/arm64-linux/include"}
{"_id":"q-en-vscode-0de9ea82e7f91fcfab96a58b411c84ed59183b82acdea32c30b4ddaeafc01bbe","text":"}); } async withNotebookDataProvider(resource: URI): Promise { const [first] = this._notebookProviderInfoStore.getContributedNotebook(resource); if (!first) { async withNotebookDataProvider(resource: URI, viewType?: string): Promise { const providers = this._notebookProviderInfoStore.getContributedNotebook(resource); // If we have a viewtype specified we want that data provider, as the resource won't always map correctly const selected = viewType ? providers.find(p => p.id === viewType) : providers[0]; if (!selected) { throw new Error(`NO contribution for resource: '${resource.toString()}'`); } await this.canResolve(first.id); const result = this._notebookProviders.get(first.id); await this.canResolve(selected.id); const result = this._notebookProviders.get(selected.id); if (!result) { throw new Error(`NO provider registered for view type: '${first.id}'`); throw new Error(`NO provider registered for view type: '${selected.id}'`); } return result; }"}
{"_id":"q-en-vscode-0deeb09a2fa7f11fef53e84e516329a270f0cd923dc2209b8fb014f0051aa7ad","text":"const icon = alwaysPrompt ? '$(lock)' : alwaysCommitToNewBranch ? '$(git-branch)' : undefined; // Tooltip (default) let tooltip = !alwaysCommitToNewBranch ? l10n.t('Commit Changes') : l10n.t('Commit Changes to New Branch'); const branch = this.repository.HEAD?.name; let tooltip = alwaysCommitToNewBranch ? l10n.t('Commit Changes to New Branch') : branch ? l10n.t('Commit Changes on '{0}'', branch) : l10n.t('Commit Changes'); // Tooltip (in progress) if (this.repository.operations.isRunning(OperationKind.Commit)) {"}
{"_id":"q-en-vscode-0df8414eec05bf35fe7e16475a4e01ce514e996ac16186cb75427a90b2fe4321","text":"} export function regExpLeadsToEndlessLoop(regexp: RegExp): boolean { // Exit early if it's one of these special cases which are meant to match // against an empty string if (regexp.source === \"^\" || regexp.source === \"^$\" || regexp.source === \"$\") { return false; } // We check against an empty string. If the regular expression doesn't advance // (e.g. ends in an endless loop) it will match an empty string. var match = regexp.exec(''); return (match && regexp.lastIndex === 0); }"}
{"_id":"q-en-vscode-0e1fd5fd759146a9aeafdec23c5effca824c72cf93a60872960773b40eff7a7a","text":"this.extensionRecommendationsService.getImportantRecommendations(), this.extensionRecommendationsService.getFileBasedRecommendations(), this.extensionRecommendationsService.getOtherRecommendations() ])).filter(extensionId => !isString(extensionId) || !local.includes(extensionId.toLowerCase()))); ])).filter(extensionId => { if (isString(extensionId)) { return !localExtensionIds.includes(extensionId.toLowerCase()); } return !localExtensions.some(localExtension => localExtension.local && this.uriIdentityService.extUri.isEqual(localExtension.local.location, extensionId)); })); const installableRecommendations = await this.getInstallableRecommendations(allRecommendations, { ...options, source: 'recommendations-all', sortBy: undefined }, token); return new PagedModel(installableRecommendations.slice(0, 8)); const result: IExtension[] = []; for (let i = 0; i < installableRecommendations.length && result.length < 8; i++) { const recommendation = allRecommendations[i]; if (isString(recommendation)) { const extension = installableRecommendations.find(extension => areSameExtensions(extension.identifier, { id: recommendation })); if (extension) { result.push(extension); } } else { const extension = installableRecommendations.find(extension => extension.resourceExtension && this.uriIdentityService.extUri.isEqual(extension.resourceExtension.location, recommendation)); if (extension) { result.push(extension); } } } return new PagedModel(result); } private async searchRecommendations(query: Query, options: IQueryOptions, token: CancellationToken): Promise> {"}
{"_id":"q-en-vscode-0e2ba53161700f18037d863b906d9a75fe689d73827505eb1d6affdc35e9fdc3","text":"import { isWeb } from 'vs/base/common/platform'; import { ICommandService } from 'vs/platform/commands/common/commands'; import { Codicon } from 'vs/base/common/codicons'; import { IUserDataSyncMachinesService, UserDataSyncMachinesService } from 'vs/platform/userDataSync/common/userDataSyncMachines'; type ExistingSession = IQuickPickItem & { session: AuthenticationSession & { providerId: string } }; type AuthenticationProviderOption = IQuickPickItem & { provider: IAuthenticationProvider };"}
{"_id":"q-en-vscode-0e744a441e6e383a8a062a3d23bb7301c9f7867e596d874280d9ee868a051363","text":"export interface UriComponents { scheme: string; authority: string; path: string; query: string; fragment: string; authority?: string; path?: string; query?: string; fragment?: string; } /** * Virtual Key Codes, the value does not hold any inherent meaning."}
{"_id":"q-en-vscode-0e78057ffe75beb38a5a66801aa08c7e897ddfd57889d95d995acb9ba1ad5eb4","text":"'activityBar.background': '#181818', 'statusBar.background': '#181818', 'statusBar.noFolderBackground': '#1f1f1f', 'titleBar.border': '#2B2B2B', 'titleBar.inactiveBackground': '#ff0000', 'titleBar.inactiveForeground': '#9D9D9D' }; export const COLOR_THEME_LIGHT_INITIAL_COLORS = { 'activityBar.background': '#f8f8f8', 'statusBar.background': '#f8f8f8', 'statusBar.noFolderBackground': '#f8f8f8' 'statusBar.noFolderBackground': '#f8f8f8', 'titleBar.border': '#E5E5E5', 'titleBar.inactiveBackground': '#F8F8F8', 'titleBar.inactiveForeground': '#8B949E', }; export interface IWorkbenchTheme {"}
{"_id":"q-en-vscode-0eb27a643a7ba2bdfcb5e531a2344bf2d64e3f9dcc7a352fb381459b9a732379","text":"const _cursorWordStartRightSelect = new CursorWordStartRightSelect(); const _cursorWordEndRightSelect = new CursorWordEndRightSelect(); const _cursorWordRightSelect = new CursorWordRightSelect(); const _cursorWordAccessibilityLeft = new CursorWordAccessibilityLeft(); const _cursorWordAccessibilityLeftSelect = new CursorWordAccessibilityLeftSelect(); const _cursorWordAccessibilityRight = new CursorWordAccessibilityRight(); const _cursorWordAccessibilityRightSelect = new CursorWordAccessibilityRightSelect(); const _deleteWordLeft = new DeleteWordLeft(); const _deleteWordStartLeft = new DeleteWordStartLeft(); const _deleteWordEndLeft = new DeleteWordEndLeft();"}
{"_id":"q-en-vscode-0ec6a43e7fa4d897eca50871c393742a81cf283a9b81b2df32c07865d444833f","text":"display: inline-block; } .monaco-editor .suggest-widget .monaco-list .monaco-list-row:hover>.contents>.main>.right>.readMore { .monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused:hover>.contents>.main>.right>.readMore { visibility: visible; }"}
{"_id":"q-en-vscode-0f240f9e9c659da486ae0b50c8baf19d48d1252c3ba0ab42e88365e58e4d943c","text":"begin(?x) (*|_)(?=S)\t\t\t\t\t\t\t\t# Open b(*|_)(?=S)\t\t\t\t\t\t\t\t# Open (?= ( <[^>]*+>\t\t\t\t\t\t\t# HTML tags"}
{"_id":"q-en-vscode-0f3e851d5ab32220f6308e28ffd733c623973869b6bf2fea297b01def6be3639","text":"} } async $executeCommand(id: string, args: any[], retry: boolean): Promise { async $executeCommand(id: string, args: any[] | SerializableObjectWithBuffers, retry: boolean): Promise { if (args instanceof SerializableObjectWithBuffers) { args = args.value; } for (let i = 0; i < args.length; i++) { args[i] = revive(args[i]); }"}
{"_id":"q-en-vscode-0f42ee47e3a04adb33590617146c9d7765e06ccb6971e00294b9ef8da83dc89b","text":" fileTypesiniconfkeyEquivalent^~InameInipatternsbegin(^[ t]+)?(?=#)beginCaptures1namepunctuation.whitespace.comment.leading.iniend(?!G)patternsbegin#beginCaptures0namepunctuation.definition.comment.iniendnnamecomment.line.number-sign.inibegin(^[ t]+)?(?=;)beginCaptures1namepunctuation.whitespace.comment.leading.iniend(?!G)patternsbegin;beginCaptures0namepunctuation.definition.comment.iniendnnamecomment.line.semicolon.inicaptures1namekeyword.other.definition.ini2namepunctuation.separator.key-value.inimatchb([a-zA-Z0-9_.-]+)bs*(=)captures1namepunctuation.definition.entity.ini3namepunctuation.definition.entity.inimatch^([)(.*?)(])nameentity.name.section.group-title.inibegin'beginCaptures0namepunctuation.definition.string.begin.iniend'endCaptures0namepunctuation.definition.string.end.ininamestring.quoted.single.inipatternsmatch.nameconstant.character.escape.inibegin\"beginCaptures0namepunctuation.definition.string.begin.iniend\"endCaptures0namepunctuation.definition.string.end.ininamestring.quoted.double.iniscopeNamesource.propertiesuuid77DC23B6-8A90-11D9-BAA4-000A9584EC8C No newline at end of file"}
{"_id":"q-en-vscode-0f6332c2095dcc3cc7221f0d84adc0be0cc87c723fcbe9d6d4fa323fabe18e26","text":"registerThemingParticipant((theme: IColorTheme, collector: ICssStyleCollector) => { const editorBackgroundColor = theme.getColor(editorBackground)?.transparent(0.7); // Lightbulb Icon const editorLightBulbForegroundColor = theme.getColor(editorLightBulbForeground); if (editorLightBulbForegroundColor) { collector.addRule(` .monaco-editor .contentWidgets ${Codicon.lightBulb.cssSelector} { color: ${editorLightBulbForegroundColor}; background-color: ${editorBackgroundColor}; }`); }"}
{"_id":"q-en-vscode-0fafc02937170e70699bfb2d4d9ee2ef8e0b58b2c25e26e6173989b44c0a15d2","text":"autoFindInSelection?: 'never' | 'always' | 'multiline'; addExtraSpaceOnTop?: boolean; /** * Controls whether the search automatically restarts from the beginning (or the end) when no further matches can be found * Controls whether the search result and diff result automatically restarts from the beginning (or the end) when no further matches can be found */ loop?: boolean; }"}
{"_id":"q-en-vscode-102a6e8adcc10e2595bf2de275f942b97adaf413f323f2fa39a844c2aae718f0","text":"const lineNumber = this.inputModel.getLineCount(); this._inputEditor.setPosition({ lineNumber, column: this.inputModel.getLineMaxColumn(lineNumber) }); } const onDidChangeCursorPosition = () => { const model = this._inputEditor.getModel(); if (!model) { return; } const position = this._inputEditor.getPosition(); if (!position) { return; } const atTop = position.column === 1 && position.lineNumber === 1; this.chatCursorAtTop.set(atTop); this.historyNavigationBackwardsEnablement.set(atTop); this.historyNavigationForewardsEnablement.set(position.equals(getLastPosition(model))); }; this._register(this._inputEditor.onDidChangeCursorPosition(e => onDidChangeCursorPosition())); onDidChangeCursorPosition(); } private initAttachedContext(container: HTMLElement) {"}
{"_id":"q-en-vscode-1051fb5ebf0203227eb8222701d8b61980159790916d9e54ab2fdc665f0d1bf8","text":"hasFocus(): boolean { return this._zone.widget.hasFocus(); } needsMargin(): boolean { return true; } }"}
{"_id":"q-en-vscode-1068e4b9c0fdfb97eefb9b13bd5b7c005b372ad12524b579df0cd749f2ddda6c","text":"}, menu: [ { id: MenuId.CommandPalette }, { id: MenuId.MenubarViewMenu, group: '5_editor', order: 2 }, { id: MenuId.MenubarAppearanceMenu, group: '4_editor', order: 3 }, { id: MenuId.StickyScrollContext } ] });"}
{"_id":"q-en-vscode-107f781f801b0600d40848807b27d42d7655520fee60200bc75ca9083bcf961f","text":"'preview.showPreviewSecuritySelector.title', 'Select security settings for Markdown previews in this workspace'), }); if (!selection) { return; }"}
{"_id":"q-en-vscode-10a1c63d42493a53b819cc48c05df9ff82cc3587b4e63cb8f0d2efeb9f9de355","text":" No newline at end of file No newline at end of file"}
{"_id":"q-en-vscode-10a8ea6bef9a4ea1c5678a1340cef4077228a3a67c5549fd41e598bdc9aff606","text":"# Install the desktop entry if hash desktop-file-install 2>/dev/null; then desktop-file-install /usr/share/applications/@@NAME@@.desktop desktop-file-install /usr/share/applications/@@NAME@@-url-handler.desktop fi if [ \"@@NAME@@\" != \"code-oss\" ]; then"}
{"_id":"q-en-vscode-10ab7cd4fdad0354ee2e8bbf8ccad4695d5f034c5e92e7044f5b03100bf51cca","text":"import { IMarkerData, IMarkerService } from 'vs/platform/markers/common/markers'; import { IRange } from 'vs/editor/common/core/range'; import { ICellExecutionError, ICellExecutionStateChangedEvent, IExecutionStateChangedEvent, INotebookExecutionStateService, NotebookExecutionType } from 'vs/workbench/contrib/notebook/common/notebookExecutionStateService'; import { IInlineChatService } from 'vs/workbench/contrib/inlineChat/common/inlineChat'; import { IConfigurationService } from 'vs/platform/configuration/common/configuration'; import { CellKind, NotebookSetting } from 'vs/workbench/contrib/notebook/common/notebookCommon'; import { INotebookEditor, INotebookEditorContribution } from 'vs/workbench/contrib/notebook/browser/notebookBrowser';"}
{"_id":"q-en-vscode-10b760217dbfcd26525468539e260769aafa09ae447067da6f47b1147fa98b28","text":"const is32ProcessOn64Windows = process.env.hasOwnProperty('PROCESSOR_ARCHITEW6432'); const system32Path = `${process.env['windir']}${is32ProcessOn64Windows ? 'Sysnative' : 'System32'}`; const osVersion = (/(d+).(d+).(d+)/g).exec(os.release()); let useWSLexe = false; if (osVersion && osVersion.length === 4) { const buildNumber = parseInt(osVersion[3]); if (buildNumber >= 16299) { useWSLexe = true; } if (TerminalInstance.getWindowsBuildNumber() >= 16299) { useWSLexe = true; } const expectedLocations = {"}
{"_id":"q-en-vscode-10bb6b6518e99ee26cfa0eb5f58917469bb21be85d310f0bf684183e883fa330","text":"} public static moveToBeginningOfLine(config: CursorConfiguration, model: ICursorSimpleModel, cursor: SingleCursorState, inSelectionMode: boolean): SingleMoveOperationResult { let lineNumber = cursor.selection.startLineNumber; let lineNumber = cursor.position.lineNumber; let minColumn = model.getLineMinColumn(lineNumber); let firstNonBlankColumn = model.getLineFirstNonWhitespaceColumn(lineNumber) || minColumn; let column: number; if (cursor.selection.startColumn === firstNonBlankColumn) { let relevantColumnNumber = cursor.position.column; if (relevantColumnNumber === firstNonBlankColumn) { column = minColumn; } else { column = firstNonBlankColumn;"}
{"_id":"q-en-vscode-10be038e37447b9838f25e4d409b60c947fbffff5e8a0fe27af0fe9b635a1627","text":"@ILogService logService: ILogService ) { super(lifecycleMainService, configurationService, environmentService, requestService, logService); } initialize(): void { super.initialize(); this.onRawError(this.onError, this, this.disposables); this.onRawUpdateAvailable(this.onUpdateAvailable, this, this.disposables); this.onRawUpdateDownloaded(this.onUpdateDownloaded, this, this.disposables);"}
{"_id":"q-en-vscode-10c607a6c28723f4f9bbb772511694cfdba33f87f75f8b2a8fea77deba9f017d","text":"// this._logService.debug('match found without corresponding matchIndex', match, matcher); break; } const originalLink = link; const cachedLinkResult = map.get(originalLink); if (cachedLinkResult && !this._testing) { if (typeof cachedLinkResult !== 'string') { result.push(cachedLinkResult); } break; } // Get index, match.index is for the outer match which includes negated chars // therefore we cannot use match.index directly, instead we search the position"}
{"_id":"q-en-vscode-113c03acbc46f94b8902912d164434f57cc9ed3f2af43b2f0dc137964e5fe5b9","text":"return localize('trustedFolderWithHostAriaLabel', \"{0} on {1}, trusted\", this.labelService.getUriLabel(item.uri), hostLabel); }, getWidgetAriaLabel: () => localize('trustedFoldersAndWorkspaces', \"Trusted Folders & Workspaces\") }, identityProvider: { getId(element: ITrustedUriItem) { return element.uri.toString(); }, } } ) as WorkbenchTable;"}
{"_id":"q-en-vscode-115b1e209905a3aa78d6ee9f8c078dd2dc5a6b9913687d4592d74804cf3e42ca","text":"private globalExcludePattern?: glob.ParsedExpression; constructor(private config: IFileQuery, private provider: FileSearchProviderNew, private sessionToken?: unknown) { constructor(private config: IFileQuery, private provider: FileSearchProviderNew, private sessionLifecycle?: SessionLifecycle) { this.filePattern = config.filePattern; this.includePattern = config.includePattern && glob.parse(config.includePattern); this.maxResults = config.maxResults || undefined;"}
{"_id":"q-en-vscode-11652dad63d20c8cd7d554cc5d79ee90753267a7285b216e03d636d0ea9e3de1","text":"pull(): Promise { return this._repository.pull(); } push(head: Branch): Promise { return this._repository.push(head); } pushTo(remote?: string, name?: string, setUpstream: boolean = false): Promise { return this._repository.pushTo(remote, name, setUpstream); } } export class ApiGit implements Git {"}
{"_id":"q-en-vscode-11fac228db232e175c9d188e215fbcac559165d137906f9ef4e563ae976902a0","text":"static readonly DebugWatchContext = new MenuId('DebugWatchContext'); static readonly DebugToolBar = new MenuId('DebugToolBar'); static readonly EditorContext = new MenuId('EditorContext'); static readonly SimpleEditorContext = new MenuId('SimpleEditorContext'); static readonly EditorContextCopy = new MenuId('EditorContextCopy'); static readonly EditorContextPeek = new MenuId('EditorContextPeek'); static readonly EditorTitle = new MenuId('EditorTitle');"}
{"_id":"q-en-vscode-12195cf00d15cf9a894ad225b33dde99f8eedbd88d4bbc4a390ce7029f6a8aa6","text":"return this.input.selectionEnd === this.input.value.length && this.input.selectionStart === this.input.selectionEnd; } public getSelection(): IRange | null { const selectionStart = this.input.selectionStart; if (selectionStart === null) { return null; } const selectionEnd = this.input.selectionEnd ?? selectionStart; return { start: selectionStart, end: selectionEnd, }; } public enable(): void { this.input.removeAttribute('disabled'); }"}
{"_id":"q-en-vscode-123595fd490b35517c46bb9e4d40dca23f357745a43f2f509951740071ff1731","text":"widgetPosition = this._editor.getSelection().getStartPosition().delta(-1); } let needsMargin = false; if (initialRender) { this._zone.value.setContainerMargins(); }"}
{"_id":"q-en-vscode-12799a8f1309ccc1abc79bc16b9bbf7617fcd280af4954d0eb88e2abc83755a5","text":"if (!this.url) { return Promise.resolve(undefined); } return this.requestService.request({ url: this.url }, CancellationToken.None).then(context => { // The update server replies with 204 (No Content) when no // update is available - that's all we want to know."}
{"_id":"q-en-vscode-1303a9cc2ec7bc3311649e3768531b29700fb22a49f668f130dac9e08b331075","text":"}); } disposeElement(element: ActionBarCell, index: number, templateData: IActionBarTemplateData, height: number | undefined) { templateData.elementDisposable.dispose(); } disposeTemplate(templateData: IActionBarTemplateData): void { templateData.label.dispose(); templateData.actionBar.dispose(); templateData.elementDisposable.dispose(); templateData.button?.dispose(); } }"}
{"_id":"q-en-vscode-133e39753973de07a9696f5e4012a6ffc6488cb68bf454cd6d8967b54f7f647e","text":"private _getAccessibleViewHelpDialogContent(providerHasSymbols?: boolean): string { const navigationHint = this._getNavigationHint(); const goToSymbolHint = this._getGoToSymbolHint(providerHasSymbols); const toolbarHint = localize('toolbar', \"Navigate to the toolbar (Shift+Tab)).\"); const toolbarHint = localize('toolbar', \"Navigate to the toolbar (Shift+Tab).\"); const chatHints = this._getChatHints(); let hint = localize('intro', \"In the accessible view, you can:n\");"}
{"_id":"q-en-vscode-1345988b63c3a9e0995167531c9215323d7c1e130143e146af023a110aa63fa0","text":"} @command('git.clone') async clone(url?: string): Promise { async clone(url?: string, parentPath?: string): Promise { if (!url) { url = await window.showInputBox({ prompt: localize('repourl', \"Repository URL\"),"}
{"_id":"q-en-vscode-1379b2c7fb048cbc569f0052612eb4a643ade7948327a86a53b5437617bfeae4","text":"import { CATEGORIES } from 'vs/workbench/common/actions'; import { ActiveGroupEditorsByMostRecentlyUsedQuickAccess } from 'vs/workbench/browser/parts/editor/editorQuickAccess'; import { IOpenerService } from 'vs/platform/opener/common/opener'; import { EditorResolution, IEditorOptions, ITextEditorOptions } from 'vs/platform/editor/common/editor'; import { EditorResolution, IEditorOptions, IResourceEditorInput, ITextEditorOptions } from 'vs/platform/editor/common/editor'; import { Schemas } from 'vs/base/common/network'; import { SideBySideEditorInput } from 'vs/workbench/common/editor/sideBySideEditorInput'; import { SideBySideEditor } from 'vs/workbench/browser/parts/editor/sideBySideEditor'; import { IJSONSchema } from 'vs/base/common/jsonSchema'; import { IEditorResolverService } from 'vs/workbench/services/editor/common/editorResolverService'; import { IPathService } from 'vs/workbench/services/path/common/pathService'; export const CLOSE_SAVED_EDITORS_COMMAND_ID = 'workbench.action.closeUnmodifiedEditors'; export const CLOSE_EDITORS_IN_GROUP_COMMAND_ID = 'workbench.action.closeEditorsInGroup';"}
{"_id":"q-en-vscode-137c31ce60198319a15758b76663d5cbbe577950bb498fd4c112ed54908aa66a","text":" 88cafda8394985e59d3d84cb4a6692ad04d8e32db9ecd6429e748e41526ddad7 *electron-v25.8.0-darwin-arm64-symbols.zip 6e33d3b8041561722ed41777e055a8c15d3f4e61b67367b2618918bcf0cfea76 *electron-v25.8.0-darwin-arm64.zip 438ac9915e062a239fb6d2595323c4783d2c820efc9cbcf3d2c1253d0e057e83 *electron-v25.8.0-darwin-x64-symbols.zip 798907d2a66bc79202c8213c61e7fd147ae2a8c31c485d814950b11d43bbbba8 *electron-v25.8.0-darwin-x64.zip 3243f3764319cff6c942d9f90a86323c36ec05ec51ef01e782c4e9a7194187e1 *electron-v25.8.0-linux-arm64-symbols.zip f24f858b76bf8a2e18419f62e0f891712b2fa541089123e9caa8d5cd67fc3276 *electron-v25.8.0-linux-arm64.zip dc3ff0489a0ebeda56d06b31eeae75dd7321a52bb601069c4475c56462b4814a *electron-v25.8.0-linux-armv7l-symbols.zip 3b7a0c3899f828a5cf30043b73992e90231400b90c1afa700a44f892a55e326b *electron-v25.8.0-linux-armv7l.zip 44803b2487406eca8fff9cec405e9e50bd92a911808dfaaa523b9ef52a0e72d8 *electron-v25.8.0-linux-x64-symbols.zip d54fb2df0ad7318240220aa26327171ed1e891fb296f3c27c58b8b487c4df8eb *electron-v25.8.0-linux-x64.zip bf7be6c0c8d0df06f0ce22e16c97aea823415d7f5cbf0ffdadf65d75feaf3cd8 *electron-v25.8.0-win32-arm64-pdb.zip 5d91757660b44bf30907f9c2b52225ade4d127d0fe48dc83dec134cc06c949f0 *electron-v25.8.0-win32-arm64-symbols.zip d1e6f30a8d8c7aed28d08ddf915d79de6b16b3a0a7c84c45fd3cc0d47f2b7f53 *electron-v25.8.0-win32-arm64.zip e389fef61c14ea0eefad91a9725aa0afd4dbdc982f7b30aba97bd9c2871c2061 *electron-v25.8.0-win32-ia32-pdb.zip 374d6c8897f97fab04e990ecf928e05f643ae33801546bf7d39bf4045b9d8b52 *electron-v25.8.0-win32-ia32-symbols.zip 73fc3382202b70dcaf7928f09a791662de82c701b8f403ed72cc5aa9b1401593 *electron-v25.8.0-win32-ia32.zip 010d248bd2e77585e1fa977e58b016659566de5a91c1e6845c85a7e6e1851bb9 *electron-v25.8.0-win32-x64-pdb.zip 72adb74fd92edff35c177c3c5d96765f230bc7adb8af11b30d5122b9e54c26e1 *electron-v25.8.0-win32-x64-symbols.zip 0051d0f241aedc6cdab4751c60f48758936122796f06c9e3033c7710a531686c *electron-v25.8.0-win32-x64.zip 2956915642c45eb0099228368d0af50e891e4c10014fa4d3d3bcfb135fbb89a7 *ffmpeg-v25.8.0-darwin-arm64.zip 099ee69d44f8ac3802cdd612895f279f7adb043a5b9c9d123479b0f96514a44c *ffmpeg-v25.8.0-darwin-x64.zip bd52d57ff97fb56ac01a3482af905d04f0d4e9c13c53858c6d9f99957eca82da *ffmpeg-v25.8.0-linux-arm64.zip 9b3d09177fa1e63e2a6beecfa70aeec30aeb5c1873ff21128a68051c4e23f95d *ffmpeg-v25.8.0-linux-armv7l.zip edc7b1c9f1a0733f109a2c0375a4e40c5bfe0bf28b7f06dcc76e1ada0aa2f125 *ffmpeg-v25.8.0-linux-x64.zip a58e9480dab981ff973749e9d1e08936b2dd63a4b7f9523c030b1833387a4eb5 *ffmpeg-v25.8.0-win32-arm64.zip 6866b23a4d561c0322aeb7690aae646718c54398739946e352bf80d0dd721bfd *ffmpeg-v25.8.0-win32-ia32.zip 7b906df4ad6252881cf1e58619285b624f74d593379fbc6728e238b852d6abad *ffmpeg-v25.8.0-win32-x64.zip 197a62bdc616148537af5c8f1256563a27a733cae0d41b9a42e9e9f2901cc9ae *electron-v25.8.1-darwin-arm64-symbols.zip 985f4beee009ef6dbe7af75009a1b281aff591b989ee544bd4d2c814f9c4428d *electron-v25.8.1-darwin-arm64.zip 56209b302eb30bff3727dbb74467cb2e6e93e5a99d6939d1c3a7c8320fa26d72 *electron-v25.8.1-darwin-x64-symbols.zip fe61a3221d4c5dc9415dc2cce81010db61bb4a5ab5021d1023f48786dbaf0b28 *electron-v25.8.1-darwin-x64.zip 1b52beba5b1b133cccd253c32648cdfa51659e5db2f20441baafd6a3c8fcb56a *electron-v25.8.1-linux-arm64-symbols.zip 931208419f859f528e19805ae14b5b075213bc40dd20da9e03d8b71d849c147d *electron-v25.8.1-linux-arm64.zip 61929b61541f23b75cca6b1a6764c219499a9799376298cc9061fc1a8716d1e1 *electron-v25.8.1-linux-armv7l-symbols.zip dd3390de2426a1cea9d3176e404b8fb250844a9b0e48cf01822fa66f3c3c4a48 *electron-v25.8.1-linux-armv7l.zip 1812459d2bd0440e35134ddb3f56e8e173a8791db888756d22080ace244248ba *electron-v25.8.1-linux-x64-symbols.zip de556aef0a80a8fe7b2b39d74ab0bdecc65d72bba3b7349460d18ef2a22fa323 *electron-v25.8.1-linux-x64.zip baa1bb8985b09100b1b2b710cea2c3f8e72a7f5d0e3421cbf675c25e732b0d9f *electron-v25.8.1-win32-arm64-pdb.zip 4a22945c2584677a822d8f9eb6cb23e5607b985f85ec7523ab977b73dd6487c2 *electron-v25.8.1-win32-arm64-symbols.zip 567d3188f86176a875fb6562040a3767c638814cf06073e7131495ec681b3957 *electron-v25.8.1-win32-arm64.zip 148589f41cd4175b85138450a0a0e32eef1a519d5cb5f471374e167518a2ed47 *electron-v25.8.1-win32-ia32-pdb.zip f284ac337a8d5e564081fee6d26c2b2f782feed0bcbe29b7507f749da36b6e5c *electron-v25.8.1-win32-ia32-symbols.zip 6737e56588a2707534979e5dcfbf68399971a5e98d4848fa29fb43b7ae1dc378 *electron-v25.8.1-win32-ia32.zip 23c6ef26f7e1914149def7525b728212340fc6befa6bac30eafec8f8229f9e67 *electron-v25.8.1-win32-x64-pdb.zip 3eb3b87587b136e636d82fa4d28015d8ef6709468b3bb33eddae80d83076a053 *electron-v25.8.1-win32-x64-symbols.zip 963c05266bf83bc77f690b75a76855d7b7bc0be9bac4973292f3e7d506fd2c94 *electron-v25.8.1-win32-x64.zip ab608119c4bb4ebcefede6afdd911ef8ea007465ab7d2093a091bdb9ff466236 *ffmpeg-v25.8.1-darwin-arm64.zip 5abaf6356bb40fdfcaf88177e13c50447a48fe7fc6c1c3869cf4536148eb60d4 *ffmpeg-v25.8.1-darwin-x64.zip bd52d57ff97fb56ac01a3482af905d04f0d4e9c13c53858c6d9f99957eca82da *ffmpeg-v25.8.1-linux-arm64.zip 9b3d09177fa1e63e2a6beecfa70aeec30aeb5c1873ff21128a68051c4e23f95d *ffmpeg-v25.8.1-linux-armv7l.zip edc7b1c9f1a0733f109a2c0375a4e40c5bfe0bf28b7f06dcc76e1ada0aa2f125 *ffmpeg-v25.8.1-linux-x64.zip 6b2494dd5bf7f17eec800f41d232506007b36c7cae6f885565e035d3168a0c64 *ffmpeg-v25.8.1-win32-arm64.zip 8b57594cd2065437cf3378e845bae4de3501ebff7f1f1f516fc0aaf09c311c2b *ffmpeg-v25.8.1-win32-ia32.zip 95bb8e167e96bb4f902e6238312e245ed0acfae45eeda471e0f8ad0f0baaac2f *ffmpeg-v25.8.1-win32-x64.zip "}
{"_id":"q-en-vscode-137c9b43f03a6f4d98a93ead9b35d8143abb68734a6733fd406f9fc527004460","text":"VSCODE_BUILD_LINUX: ${{ parameters.VSCODE_BUILD_LINUX }} VSCODE_BUILD_LINUX_ALPINE: ${{ parameters.VSCODE_BUILD_LINUX_ALPINE }} - ${{ if or(eq(parameters.VSCODE_BUILD_LINUX_ALPINE_ARM64, true), eq(parameters.VSCODE_BUILD_LINUX_ARM64, true), eq(parameters.VSCODE_BUILD_LINUX_ARMHF, true)) }}: - job: LinuxArm64 - ${{ if or(eq(parameters.VSCODE_BUILD_LINUX_ARMHF, true), eq(parameters.VSCODE_BUILD_LINUX_ARM64, true)) }}: - job: LinuxGnuARM pool: vscode-1es-linux steps: - template: ./linux/cli-build-linux.yml parameters: VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }} VSCODE_BUILD_LINUX_ARMHF: ${{ parameters.VSCODE_BUILD_LINUX_ARMHF }} VSCODE_BUILD_LINUX_ARM64: ${{ parameters.VSCODE_BUILD_LINUX_ARM64 }} - ${{ if eq(parameters.VSCODE_BUILD_LINUX_ALPINE_ARM64, true) }}: - job: LinuxAlpineARM64 pool: vscode-1es-linux-20.04-arm64 variables: VSCODE_ARCH: arm64 steps: - task: NodeTool@0 displayName: Install Node.js"}
{"_id":"q-en-vscode-1392dc841a744cc598ed08077a26e3c4212604cf84537fed0e0dc9e532243635","text":"import { WorkbenchState, IWorkspaceContextService } from 'vs/platform/workspace/common/workspace'; import { coalesce } from 'vs/base/common/arrays'; import { IConfigurationService } from 'vs/platform/configuration/common/configuration'; import { ITextFileService } from 'vs/workbench/services/textfile/common/textfiles'; import { isEqual } from 'vs/base/common/resources'; const TextInputActions: IAction[] = [ new Action('undo', nls.localize('undo', \"Undo\"), undefined, true, () => Promise.resolve(document.execCommand('undo'))),"}
{"_id":"q-en-vscode-13a87e642f8c635ba38593d887de682fdf8c7f174e76c5f26a51c201cb2da504","text":"const CONFIG_HELP_TEXT_PRE = `// Links matching one or more entries in the list below can be opened without link protection. // The following examples show what entries can look like: // - \"https://microsoft.com\": Matches this specific domain using https // - \"https://microsoft.com:8080\": Matches this specific domain on this port using https // - \"https://microsoft.com:*\": Matches this specific domain on any port using https // - \"https://microsoft.com/foo\": Matches https://microsoft.com/foo and https://microsoft.com/foo/bar, // but not https://microsoft.com/foobar or https://microsoft.com/bar // - \"https://*.microsoft.com\": Match all domains ending in \"microsoft.com\" using https // - \"microsoft.com\": Match this specific domain using either http or https // - \"*.microsoft.com\": Match all domains ending in \"microsoft.com\" using either http or https // - \"http://192.168.0.1: Matches this specific IP using http // - \"http://192.168.0.*: Matches all IP's with this prefix using http // - \"*\": Match all domains using either http or https // `;"}
{"_id":"q-en-vscode-1403581b0267ced33ea5fa09545c714d942506a54ee36a31d4a1094e3d838329","text":"} getScopedEnvironmentVariableCollection(scope: vscode.EnvironmentVariableScope | undefined): IEnvironmentVariableCollection { if (this._extension && scope) { // TODO: This should be removed when the env var extension API(s) are stabilized checkProposedApiEnabled(this._extension, 'envCollectionWorkspace'); } const scopedCollectionKey = this.getScopeKey(scope); let scopedCollection = this.scopedCollections.get(scopedCollectionKey); if (!scopedCollection) {"}
{"_id":"q-en-vscode-141fb8918348d4e7defcaa1506088af927add37e588d3a27dea59052fb13ba12","text":"}); } await this.storeForwarded(); this.checkExtensionActivationEvents(); this.remoteTunnels.set(key, tunnel); this._onForwardPort.fire(this.forwarded.get(key)!); })); this._register(this.tunnelService.onTunnelClosed(address => { return this.onTunnelClosed(address, TunnelCloseReason.Other); })); this.checkExtensionActivationEvents(); } private extensionHasActivationEvent() {"}
{"_id":"q-en-vscode-143eba9da8e65bd001a29f351bd29ba95ee21040a975731a6752f2a000f0a1e9","text":"*/ app.commandLine.appendSwitch('disable-features', 'CalculateNativeWinOcclusion'); /* Following features are enabled from the runtime. * `AutoDisableAccessibility` - https://github.com/microsoft/vscode/issues/162331#issue-1390744354 */ app.commandLine.appendSwitch('enable-features', 'AutoDisableAccessibility'); // Support JS Flags const jsFlags = getJSFlags(cliArgs); if (jsFlags) {"}
{"_id":"q-en-vscode-144aa60c92f0976472f3540f04032d75451c152f01cce2742e625e64a7628af5","text":".search-view .monaco-tree .monaco-tree-row:hover:not(.highlighted) .monaco-action-bar, .search-view .monaco-tree .monaco-tree-row.focused .monaco-action-bar { display: inline-block; } .search-view:not(.wide) .monaco-tree .monaco-tree-row .linematch .actionBarContainer { flex: 1; display: block; } .search-view:not(.wide) .monaco-tree .monaco-tree-row .monaco-action-bar { float: right; flex: 1 0 auto; } .search-view .monaco-tree .monaco-tree-row .monaco-action-bar .action-label {"}
{"_id":"q-en-vscode-148b77f7ef29f8fcbcaaa12da71ee6324dffd3142c8cb224b09c3b1b472e7bb8","text":"* Provide results that match the given text pattern. * @param query The parameters for this query. * @param options A set of options to consider while searching. * @param progress A progress callback that must be invoked for all results. * @param progress A progress callback that must be invoked for all {@link TextSearchResultNew results}. * These results can be direct matches, or context that surrounds matches. * @param token A cancellation token. */ provideTextSearchResults(query: TextSearchQueryNew, options: TextSearchProviderOptions, progress: Progress, token: CancellationToken): ProviderResult;"}
{"_id":"q-en-vscode-14a108cccbe29afbbe8dcd0562975b0977c2a30352cc2de24ebea63f11ef7da8","text":"const replace = DOM.append(parent, DOM.$('span.replaceMatch')); const after = DOM.append(parent, DOM.$('span')); const lineNumber = DOM.append(container, DOM.$('span.matchLineNum')); const actionBarContainer = DOM.append(container, DOM.$('span.actionBarContainer')); const actions = new ActionBar(actionBarContainer, { animated: false }); const actions = new ActionBar(container, { animated: false }); return { parent,"}
{"_id":"q-en-vscode-14caf49074ab437040921f37124f3f8542d40a07f5ebb21751ae5d74af30467a","text":"export class WelcomeDialogService implements IWelcomeDialogService { declare readonly _serviceBrand: undefined; private dialog: Dialog | undefined; private disposableStore: DisposableStore = new DisposableStore(); constructor( @ILayoutService private readonly layoutService: ILayoutService, @IInstantiationService private readonly instantiationService: IInstantiationService) { } private static iconWidgetFor(icon: string) { const themeIcon = ThemeIcon.fromId(icon); if (themeIcon) { const widget = $(ThemeIcon.asCSSSelector(themeIcon)); widget.classList.add('icon-widget'); return widget; } return ''; @IDialogService private readonly dialogService: IDialogService) { } async show(welcomeDialogItem: IWelcomeDialogItem): Promise { this.disposableStore.clear(); const renderBody = (parent: HTMLElement) => { parent.classList.add(...('dialog-items')); parent.appendChild(document.createElement('hr')); const renderBody = (icon: string, message: string): MarkdownString => { const mds = new MarkdownString(undefined, { supportThemeIcons: true, supportHtml: true }); mds.appendMarkdown(`$(${icon})`); mds.appendMarkdown(message); return mds; }; for (const message of welcomeDialogItem.messages) { const descriptorComponent = $('.dialog-message', {}, WelcomeDialogService.iconWidgetFor(message.icon), $('.description-container', {}, $('.description.description.max-lines-3', { 'x-description-for': 'description' }, ...renderLabelWithIcons(message.message)))); parent.appendChild(descriptorComponent); } const hr = new MarkdownString(undefined, { supportThemeIcons: true, supportHtml: true }); hr.appendMarkdown(''); const actionsContainer = $('div.dialog-action-container'); parent.appendChild(actionsContainer); if (welcomeDialogItem.action) { this.disposableStore.add(this.instantiationService.createInstance(Link, actionsContainer, welcomeDialogItem.action, {})); } }; const link = new MarkdownString(undefined, { supportThemeIcons: true, supportHtml: true }); if (welcomeDialogItem.action) { link.appendLink(welcomeDialogItem.action.href, welcomeDialogItem.action.label as string); } this.dialog = new Dialog( this.layoutService.container, welcomeDialogItem.title, [welcomeDialogItem.buttonText], { detail: '', type: 'none', renderBody: renderBody, await this.dialogService.prompt({ type: 'none', message: welcomeDialogItem.title, cancelButton: welcomeDialogItem.buttonText, custom: { disableCloseAction: true, buttonStyles: defaultButtonStyles, checkboxStyles: defaultCheckboxStyles, inputBoxStyles: defaultInputBoxStyles, dialogStyles: defaultDialogStyles }); markdownDetails: [ { markdown: hr, classes: ['hr'] }, ...welcomeDialogItem.messages.map(value => { return { markdown: renderBody(value.icon, value.message), classes: ['message-body'] }; }), { markdown: link, classes: ['link'] } ] } }); this.disposableStore.add(this.dialog); await this.dialog.show(); welcomeDialogItem.onClose?.(); this.disposableStore.dispose(); } }"}
{"_id":"q-en-vscode-14f7b8baa52cd63cba5724cde2d48fdf53b6ff25d7e478bf495f36f10bcdf79b","text":"export const INotebookCellOutlineProviderFactory = createDecorator('INotebookCellOutlineProviderFactory'); export interface INotebookCellOutlineProviderFactory { getOrCreate(editor: INotebookEditor, target: OutlineTarget): IReference getOrCreate(editor: INotebookEditor, target: OutlineTarget): IReference; } export class NotebookCellOutlineProviderFactory implements INotebookCellOutlineProviderFactory {"}
{"_id":"q-en-vscode-15734889420ff3645dd0854db443e788e149af48e6940dc0ac4564b12d4050d8","text":"} function renderText(outputInfo: OutputItem, container: HTMLElement, ctx: RendererContext & { readonly settings: { readonly lineLimit: number } }): void { clearContainer(container); const contentNode = document.createElement('div'); contentNode.classList.add('output-plaintext'); const text = outputInfo.text();"}
{"_id":"q-en-vscode-15b5c8d1ffc28e54355faacc7acd4ea3ee7d18f753862d026d72ccda99265513","text":"for (const panel of this.getPanels()) { this.compositeBar.addComposite(panel, false); } this.activePanelContextKey = ActivePanelContext.bindTo(contextKeyService); this.onDidPanelOpen(this._onDidPanelOpen, this, this.disposables); this.onDidPanelClose(this._onDidPanelClose, this, this.disposables); this.registerListeners(); }"}
{"_id":"q-en-vscode-15e61865782abadddc831febfb87ce4bb49466c6069f0b9e3a89fab07329d84a","text":"import * as nls from 'vs/nls'; import { IDisposable, dispose } from 'vs/base/common/lifecycle'; import Event, { Emitter, chain } from 'vs/base/common/event'; import { KeyCode } from 'vs/base/common/keyCodes'; import { KeyCode, KeyCodeUtils } from 'vs/base/common/keyCodes'; import { StandardKeyboardEvent } from 'vs/base/browser/keyboardEvent'; import * as dom from 'vs/base/browser/dom'; import * as arrays from 'vs/base/common/arrays';"}
{"_id":"q-en-vscode-15f9aa125757aba6286e718302e8a6ee9326998a48e68bfc0f001a820cf5dad4","text":"private updateEnabled() { const settingEnabled = this.configurationService.getValue(NotebookSetting.cellFailureDiagnostics); if (this.enabled && (!settingEnabled || Iterable.isEmpty(this.inlineChatService.getAllProvider()))) { if (this.enabled && (!settingEnabled || Iterable.isEmpty(this.chatAgentService.getAgents()))) { this.enabled = false; this.clearAll(); } else if (!this.enabled && settingEnabled && !Iterable.isEmpty(this.inlineChatService.getAllProvider())) { } else if (!this.enabled && settingEnabled && !Iterable.isEmpty(this.chatAgentService.getAgents())) { this.enabled = true; if (!this.listening) { this.listening = true;"}
{"_id":"q-en-vscode-160946255917fa110f344a58a969c76f257f9b948677d88563740f73278c4bd8","text":"private _usedShellIntegrationInjection: boolean = false; get usedShellIntegrationInjection(): boolean { return this._usedShellIntegrationInjection; } private _lineDataEventAddon: LineDataEventAddon | undefined; private readonly _scopedContextKeyService: IContextKeyService; readonly capabilities = new TerminalCapabilityStoreMultiplexer(); readonly statusList: ITerminalStatusList;"}
{"_id":"q-en-vscode-161509646240eac214296d9996787181c3a39ed1bf5a845a3410d652f08ada58","text":".pipe(replace('@@ICON@@', product.applicationName)) .pipe(rename('BUILD/usr/share/applications/' + product.applicationName + '.desktop')); const desktopUrlHandler = gulp.src('resources/linux/code-url-handler.desktop', { base: '.' }) .pipe(replace('@@NAME_LONG@@', product.nameLong)) .pipe(replace('@@NAME_SHORT@@', product.nameShort)) .pipe(replace('@@NAME@@', product.applicationName)) .pipe(replace('@@ICON@@', product.applicationName)) .pipe(rename('BUILD/usr/share/applications/' + product.applicationName + '-url-handler.desktop')); const appdata = gulp.src('resources/linux/code.appdata.xml', { base: '.' }) .pipe(replace('@@NAME_LONG@@', product.nameLong)) .pipe(replace('@@NAME@@', product.applicationName))"}
{"_id":"q-en-vscode-16aea7002d9e102374e2f660560c3fb1306cbdec6bac2fe3901f24064a9d90a9","text":"resolved \"https://registry.yarnpkg.com/xterm-addon-unicode11/-/xterm-addon-unicode11-0.5.0.tgz#41c0d96acc1e3bb6c6596eee64e163b6bca74be7\" integrity sha512-Jm4/g4QiTxiKiTbYICQgC791ubhIZyoIwxAIgOW8z8HWFNY+lwk+dwaKEaEeGBfM48Vk8fklsUW9u/PlenYEBg== xterm-addon-webgl@0.15.0-beta.7: version \"0.15.0-beta.7\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.15.0-beta.7.tgz#ab247b499f61e8eebff92e08ec5ca999d87e06af\" integrity sha512-7WCI/D6uFNp3y9TeTsbSo1h7gCy4h/yP2lWn8ZEjCaiGvO11DbKMq17fbiwaR3YmGWXoRKkcLaNIiqxFnjKO4w== xterm-addon-webgl@0.15.0-beta.8: version \"0.15.0-beta.8\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.15.0-beta.8.tgz#2005198582f6f1f4a9b2612b9354c0bcc9f148d8\" integrity sha512-HjTr9bi3FvdOIPaaIpih6qdHX2z+H7sQPluLj5KzwCqRiEVUVRi19dl8SdHjf6dCmN3GahMhjV7D+zxHi2pLTw== xterm-headless@5.2.0-beta.30: version \"5.2.0-beta.30\" resolved \"https://registry.yarnpkg.com/xterm-headless/-/xterm-headless-5.2.0-beta.30.tgz#f40b950f744111537a6403d33782669b1149fabb\" integrity sha512-aW6yljrcuu74kxg3w1DG1CZJSz38nKY/HOX3YOOE7cqxlkVXM7lltXZFEiF0xXDR0GHcmnEwnFWqA2rDmdhoDA== xterm-headless@5.2.0-beta.33: version \"5.2.0-beta.33\" resolved \"https://registry.yarnpkg.com/xterm-headless/-/xterm-headless-5.2.0-beta.33.tgz#a1fbed45b0afbd73fbd6bdd22f1f8f7644244f7c\" integrity sha512-h9gdzCl3jGSrq7FoZ+e0qWdSYhhKA3hkyuIMelYWIMz8HihxbLAZHErYKtYyDhgXRLNM2ZpS1sjeXLrDC7m2dA== xterm@5.2.0-beta.30: version \"5.2.0-beta.30\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-5.2.0-beta.30.tgz#6f50796d1652a61b30eeed7fa2bdd9c485a7d8ee\" integrity sha512-l1YBwMnakKXd638oxbzEg9Y1sWqxcrm/q7i5gBuWaK8N7Tq1NvF51FCamxXtfdL4dostgw8WoM+/6KRlL53t6A== xterm@5.2.0-beta.33: version \"5.2.0-beta.33\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-5.2.0-beta.33.tgz#584fb261ec283573ddb9d3ef4b3ea63a9a359f81\" integrity sha512-HIkQgn0/akWLWLzUJquAeVF1/nqPgqL6KzmhkAOJbOtNHftNZbEK+lDGfzz1dUC/smpXQkKm7X2nn92h3i1tgQ== y18n@^3.2.1: version \"3.2.2\""}
{"_id":"q-en-vscode-16afe64d4cd55ec2884390fe89114d869ffd6077117f5cab81a830465770c1a8","text":"import { IFileMatch, IFileSearchProviderStats, IFolderQuery, ISearchCompleteStats, IFileQuery, QueryGlobTester, resolvePatternsForProvider, hasSiblingFn, excludeToGlobPattern, DEFAULT_MAX_SEARCH_RESULTS } from 'vs/workbench/services/search/common/search'; import { FileSearchProviderFolderOptions, FileSearchProviderNew, FileSearchProviderOptions } from 'vs/workbench/services/search/common/searchExtTypes'; import { TernarySearchTree } from 'vs/base/common/ternarySearchTree'; import { Disposable } from 'vs/base/common/lifecycle'; import { OldFileSearchProviderConverter } from 'vs/workbench/services/search/common/searchExtConversionTypes'; interface IInternalFileMatch { base: URI;"}
{"_id":"q-en-vscode-16ec75c72dc505571d0a72d501ec83dbcf0dbc61f2b917bf853c367cb4949892","text":"import * as vscode from 'vscode'; import * as nls from 'vscode-nls'; import { Utils } from 'vscode-uri'; import { Command } from '../commandManager'; import { createUriListSnippet, getParentDocumentUri, imageFileExtensions } from '../languageFeatures/dropIntoEditor'; import { coalesce } from '../util/arrays';"}
{"_id":"q-en-vscode-16feb4a9601a806d4143501edac795686b28c32d0ca9f3b575c726f64b79cd90","text":"import { Registry } from 'vs/platform/registry/common/platform'; import { TreeView, TreeViewPane } from 'vs/workbench/browser/parts/views/treeView'; import { Extensions, ITreeItem, ITreeViewDataProvider, ITreeViewDescriptor, IViewsRegistry, TreeItemCollapsibleState, TreeViewItemHandleArg, ViewContainer } from 'vs/workbench/common/views'; import { EDIT_SESSIONS_SCHEME, EDIT_SESSIONS_TITLE, IEditSessionsWorkbenchService } from 'vs/workbench/contrib/editSessions/common/editSessions'; import { EDIT_SESSIONS_SCHEME, EDIT_SESSIONS_SHOW_VIEW, EDIT_SESSIONS_SIGNED_IN, EDIT_SESSIONS_TITLE, IEditSessionsWorkbenchService } from 'vs/workbench/contrib/editSessions/common/editSessions'; import { URI } from 'vs/base/common/uri'; import { fromNow } from 'vs/base/common/date'; import { Codicon } from 'vs/base/common/codicons';"}
{"_id":"q-en-vscode-171ce414ff754376d8adbd656734ba3858b7e9840635231cee3237056f876cac","text":" [{\"id\":\"AI_ClearCaptureImportanceBonus\",\"kind\":2,\"label\":\"AI_ClearCaptureImportanceBonus\",\"documentation\":\"This clears the importance bonus on this capture point \"},{\"id\":\"AI_ClearImportance\",\"kind\":2,\"label\":\"AI_ClearImportance\",\"documentation\":\"This clears the importance override on this military point \"},{\"id\":\"AI_CreateObjective\",\"kind\":2,\"label\":\"AI_CreateObjective\",\"documentation\":\"Create a new objective for player \"},{\"id\":\"AI_DebugAttackEncounterPositionScoringEnable\",\"kind\":2,\"label\":\"AI_DebugAttackEncounterPositionScoringEnable\",\"documentation\":\"Enables/disables debugging of AI Attack Objective Encounter Position Scoring \"},{\"id\":\"AI_DebugAttackEncounterPositionScoringIsEnabled\",\"kind\":2,\"label\":\"AI_DebugAttackEncounterPositionScoringIsEnabled\",\"documentation\":\"Returns true if AI Attack Objective Encounter Position Scoring is enabled \"},{\"id\":\"AI_DebugLuaEnable\",\"kind\":2,\"label\":\"AI_DebugLuaEnable\",\"documentation\":\"Enables/disables AI Lua Debugging \"},{\"id\":\"AI_DebugLuaIsEnabled\",\"kind\":2,\"label\":\"AI_DebugLuaIsEnabled\",\"documentation\":\"Returns true if AI Lua Debugging is enabled \"},{\"id\":\"AI_DebugRatingEnable\",\"kind\":2,\"label\":\"AI_DebugRatingEnable\",\"documentation\":\"Enables/disables AI Construction Debugging \"},{\"id\":\"AI_DebugRatingIsEnabled\",\"kind\":2,\"label\":\"AI_DebugRatingIsEnabled\",\"documentation\":\"Returns true if AI Construction Debugging is enabled \"},{\"id\":\"AI_DebugRenderAllTaskChildrenEnable\",\"kind\":2,\"label\":\"AI_DebugRenderAllTaskChildrenEnable\",\"documentation\":\"Enables/disables AI Rendering of All Task Children \"},{\"id\":\"AI_DebugRenderAllTaskChildrenIsEnabled\",\"kind\":2,\"label\":\"AI_DebugRenderAllTaskChildrenIsEnabled\",\"documentation\":\"Returns true if AI Rendering of All Task Children is enabled \"},{\"id\":\"AI_DebugSkirmishCaptureEnable\",\"kind\":2,\"label\":\"AI_DebugSkirmishCaptureEnable\",\"documentation\":\"Enables/disables AI Skirmish Capture Debugging \"},{\"id\":\"AI_DebugSkirmishCaptureIsEnabled\",\"kind\":2,\"label\":\"AI_DebugSkirmishCaptureIsEnabled\",\"documentation\":\"Returns true if AI Skirmish Capture Debugging is enabled \"},{\"id\":\"AI_DebugSkirmishCombatTargetEnable\",\"kind\":2,\"label\":\"AI_DebugSkirmishCombatTargetEnable\",\"documentation\":\"Enables/disables AI Skirmish Combat Target Debugging \"},{\"id\":\"AI_DebugSkirmishCombatTargetIsEnabled\",\"kind\":2,\"label\":\"AI_DebugSkirmishCombatTargetIsEnabled\",\"documentation\":\"Returns true if AI Skirmish Combat Target Debugging is enabled \"},{\"id\":\"AI_DebugSkirmishObjectiveEnable\",\"kind\":2,\"label\":\"AI_DebugSkirmishObjectiveEnable\",\"documentation\":\"Enables/disables AI Skirmish Objective Debugging \"},{\"id\":\"AI_DebugSkirmishObjectiveIsEnabled\",\"kind\":2,\"label\":\"AI_DebugSkirmishObjectiveIsEnabled\",\"documentation\":\"Returns true if AI Skirmish Objective Debugging is enabled \"},{\"id\":\"AI_DisableAllEconomyOverrides\",\"kind\":2,\"label\":\"AI_DisableAllEconomyOverrides\",\"documentation\":\"Disable all of the economy overrides for the AI player \"},{\"id\":\"AI_Enable\",\"kind\":2,\"label\":\"AI_Enable\",\"documentation\":\"Enables or Disables an AI player \"},{\"id\":\"AI_EnableAll\",\"kind\":2,\"label\":\"AI_EnableAll\",\"documentation\":\"Enables or Disables all AI players \"},{\"id\":\"AI_EnableEconomyOverride\",\"kind\":2,\"label\":\"AI_EnableEconomyOverride\",\"documentation\":\"Enable or disable the economy override for the AI player \"},{\"id\":\"AI_GetDifficulty\",\"kind\":2,\"label\":\"AI_GetDifficulty\",\"documentation\":\"Gets the difficulty level of this AI player nLevels can be one of: AD_Easy, AD_Standard, AD_Hard, AD_Hardest\"},{\"id\":\"AI_GetPersonality\",\"kind\":2,\"label\":\"AI_GetPersonality\",\"documentation\":\"Get the personality name of this AI player \"},{\"id\":\"AI_GetPersonalityLuaFileName\",\"kind\":2,\"label\":\"AI_GetPersonalityLuaFileName\",\"documentation\":\"Get the personality lua file name of this AI player \"},{\"id\":\"AI_IsAIPlayer\",\"kind\":2,\"label\":\"AI_IsAIPlayer\",\"documentation\":\"Returns true if player is an AI player \"},{\"id\":\"AI_IsEnabled\",\"kind\":2,\"label\":\"AI_IsEnabled\",\"documentation\":\"Returns true if player is a AIPlayer and is enabled \"},{\"id\":\"AI_LockEntity\",\"kind\":2,\"label\":\"AI_LockEntity\",\"documentation\":\"Locks the entity and disables its tactics (if any) and the AI will no longer use this object \"},{\"id\":\"AI_LockSquad\",\"kind\":2,\"label\":\"AI_LockSquad\",\"documentation\":\"Locks the squad and disables its tactics (if any) and the AI will no longer use this object \"},{\"id\":\"AI_LockSquads\",\"kind\":2,\"label\":\"AI_LockSquads\",\"documentation\":\"Locks the squads and disables its tactics (if any) and the AI will no longer use these objects \"},{\"id\":\"AI_RestoreDefaultPersonalitySettings\",\"kind\":2,\"label\":\"AI_RestoreDefaultPersonalitySettings\",\"documentation\":\"Restores the default personality and difficulty settings of this AI player \"},{\"id\":\"AI_SetCaptureImportanceBonus\",\"kind\":2,\"label\":\"AI_SetCaptureImportanceBonus\",\"documentation\":\"This sets importance bonus of the given capture point \"},{\"id\":\"AI_SetDifficulty\",\"kind\":2,\"label\":\"AI_SetDifficulty\",\"documentation\":\"Set the difficulty level of this AI player nLevels can be one of: AD_Easy, AD_Standard, AD_Hard, AD_Hardest\"},{\"id\":\"AI_SetImportance\",\"kind\":2,\"label\":\"AI_SetImportance\",\"documentation\":\"This overrides the default importance of the given military point \"},{\"id\":\"AI_SetPersonality\",\"kind\":2,\"label\":\"AI_SetPersonality\",\"documentation\":\"Set the personality name of this AI player \"},{\"id\":\"AI_UnlockAll\",\"kind\":2,\"label\":\"AI_UnlockAll\",\"documentation\":\"Unlocks all designer locked squads for player \"},{\"id\":\"AI_UnlockEntity\",\"kind\":2,\"label\":\"AI_UnlockEntity\",\"documentation\":\"Unlocks this entity so that AI can use it again \"},{\"id\":\"AI_UnlockSquad\",\"kind\":2,\"label\":\"AI_UnlockSquad\",\"documentation\":\"Unlocks the given squad so the AI can use it again \"},{\"id\":\"AI_UnlockSquads\",\"kind\":2,\"label\":\"AI_UnlockSquads\",\"documentation\":\"Locks the squads and disables its tactics (if any) and the AI will no longer use these objects \"},{\"id\":\"AI_UpdateStatics\",\"kind\":2,\"label\":\"AI_UpdateStatics\",\"documentation\":\"Re-updates the AI in regards to all the static objects in the world (if SCAR creates new strategic points dynamically this will need to be called) \"},{\"id\":\"AIAbilityObjective_AbilityGuidance_SetAbilityPBG\",\"kind\":2,\"label\":\"AIAbilityObjective_AbilityGuidance_SetAbilityPBG\",\"documentation\":\"Set ability for ability objective \"},{\"id\":\"AIObjective_Cancel\",\"kind\":2,\"label\":\"AIObjective_Cancel\",\"documentation\":\"Ends the objective and deletes it. \"},{\"id\":\"AIObjective_CombatGuidance_EnableCombatGarrison\",\"kind\":2,\"label\":\"AIObjective_CombatGuidance_EnableCombatGarrison\",\"documentation\":\"Enables/disables squads in combat garrisoning. \"},{\"id\":\"AIObjective_CombatGuidance_EnableRetaliateAttacks\",\"kind\":2,\"label\":\"AIObjective_CombatGuidance_EnableRetaliateAttacks\",\"documentation\":\"Enables/disables allowing squads to retaliate against attacking enemies outside the allowed leash area \"},{\"id\":\"AIObjective_CombatGuidance_SetRetaliateAttackTargetAreaRadius\",\"kind\":2,\"label\":\"AIObjective_CombatGuidance_SetRetaliateAttackTargetAreaRadius\",\"documentation\":\"Sets the target area radius for the maximum range an enemy can be for a retaliate attack \"},{\"id\":\"AIObjective_DefenseGuidance_AddFacingPosition\",\"kind\":2,\"label\":\"AIObjective_DefenseGuidance_AddFacingPosition\",\"documentation\":\"Add facing position to objective; used to determine good defensive setup positions. \"},{\"id\":\"AIObjective_DefenseGuidance_EnableIdleGarrison\",\"kind\":2,\"label\":\"AIObjective_DefenseGuidance_EnableIdleGarrison\",\"documentation\":\"Enables/disables idle squads garrisoning. \"},{\"id\":\"AIObjective_DefenseGuidance_ResetFacingPositions\",\"kind\":2,\"label\":\"AIObjective_DefenseGuidance_ResetFacingPositions\",\"documentation\":\"Remove all facing positions from objective. \"},{\"id\":\"AIObjective_EngagementGuidance_EnableAggressiveEngagementMove\",\"kind\":2,\"label\":\"AIObjective_EngagementGuidance_EnableAggressiveEngagementMove\",\"documentation\":\"Enable / disable aggressive move into engagement area \"},{\"id\":\"AIObjective_EngagementGuidance_SetAllowReturnToPreviousStages\",\"kind\":2,\"label\":\"AIObjective_EngagementGuidance_SetAllowReturnToPreviousStages\",\"documentation\":\"Enable objective to return to previous stages if they fail to meet conditions for current stage. \"},{\"id\":\"AIObjective_EngagementGuidance_SetCoordinatedSetup\",\"kind\":2,\"label\":\"AIObjective_EngagementGuidance_SetCoordinatedSetup\",\"documentation\":\"Enable coordinated arrival or setup of squads at engagement area. \"},{\"id\":\"AIObjective_EngagementGuidance_SetMaxEngagementTime\",\"kind\":2,\"label\":\"AIObjective_EngagementGuidance_SetMaxEngagementTime\",\"documentation\":\"Sets max time, in seconds, to accomplish objective, once the target is engaged. \"},{\"id\":\"AIObjective_EngagementGuidance_SetMaxIdleTime\",\"kind\":2,\"label\":\"AIObjective_EngagementGuidance_SetMaxIdleTime\",\"documentation\":\"Sets max time, in seconds, to remain idle at objective target, once engaged. \"},{\"id\":\"AIObjective_FallbackGuidance_EnableRetreatOnPinned\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_EnableRetreatOnPinned\",\"documentation\":\"Enable retreat to break supression. \"},{\"id\":\"AIObjective_FallbackGuidance_EnableRetreatOnSuppression\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_EnableRetreatOnSuppression\",\"documentation\":\"Enable retreat to break supression. \"},{\"id\":\"AIObjective_FallbackGuidance_SetEntitiesRemainingThreshold\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_SetEntitiesRemainingThreshold\",\"documentation\":\"Set entities remaining threshold of encounter [0-N] to fallback at. \"},{\"id\":\"AIObjective_FallbackGuidance_SetFallbackCapacityPercentage\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_SetFallbackCapacityPercentage\",\"documentation\":\"Set health threshold [0-1] to fallback at. \"},{\"id\":\"AIObjective_FallbackGuidance_SetFallbackCombatRatingPercentage\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_SetFallbackCombatRatingPercentage\",\"documentation\":\"Set health threshold [0-1] to fallback at. \"},{\"id\":\"AIObjective_FallbackGuidance_SetFallbackSquadHealthPercentage\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_SetFallbackSquadHealthPercentage\",\"documentation\":\"Set combat rating threshold of area [0-1] to fallback at. \"},{\"id\":\"AIObjective_FallbackGuidance_SetFallbackVehicleHealthPercentage\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_SetFallbackVehicleHealthPercentage\",\"documentation\":\"Set health threshold [0-1] to fallback at. \"},{\"id\":\"AIObjective_FallbackGuidance_SetGlobalFallbackPercentage\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_SetGlobalFallbackPercentage\",\"documentation\":\"Set global fallback threshold (0.0f for individual squad). \"},{\"id\":\"AIObjective_FallbackGuidance_SetGlobalFallbackRetreat\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_SetGlobalFallbackRetreat\",\"documentation\":\"Set global retreat type (true for retreat; false for fallback). \"},{\"id\":\"AIObjective_FallbackGuidance_SetRetreatCapacityPercentage\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_SetRetreatCapacityPercentage\",\"documentation\":\"Set combat rating threshold of area [0-1] to fallback at. \"},{\"id\":\"AIObjective_FallbackGuidance_SetRetreatCombatRatingPercentage\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_SetRetreatCombatRatingPercentage\",\"documentation\":\"Set combat rating threshold of area [0-1] to fallback at. \"},{\"id\":\"AIObjective_FallbackGuidance_SetRetreatHealthPercentage\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_SetRetreatHealthPercentage\",\"documentation\":\"Set combat rating threshold of area [0-1] to fallback at. \"},{\"id\":\"AIObjective_FallbackGuidance_SetTargetPosition\",\"kind\":2,\"label\":\"AIObjective_FallbackGuidance_SetTargetPosition\",\"documentation\":\"Set fallback target. \"},{\"id\":\"AIObjective_IsValid\",\"kind\":2,\"label\":\"AIObjective_IsValid\",\"documentation\":\"Determines if objective is still valid. Must be true before calling any other of the AIObjective_* function. Return true if valid, false otherwise. \"},{\"id\":\"AIObjective_MoveGuidance_EnableAggressiveMove\",\"kind\":2,\"label\":\"AIObjective_MoveGuidance_EnableAggressiveMove\",\"documentation\":\"Enable / disable aggressive movements on way to engagement targets \"},{\"id\":\"AIObjective_MoveGuidance_ResetPathingLengthFactor\",\"kind\":2,\"label\":\"AIObjective_MoveGuidance_ResetPathingLengthFactor\",\"documentation\":\"Reset preference for shorter paths on way to engagement targets, to defaults \"},{\"id\":\"AIObjective_MoveGuidance_ResetSafePathingWeight\",\"kind\":2,\"label\":\"AIObjective_MoveGuidance_ResetSafePathingWeight\",\"documentation\":\"Reset preference for safe movements on way to engagement targets, to defaults \"},{\"id\":\"AIObjective_MoveGuidance_SetPathingLengthFactor\",\"kind\":2,\"label\":\"AIObjective_MoveGuidance_SetPathingLengthFactor\",\"documentation\":\"Set preference for shorter paths on way to engagement targets \"},{\"id\":\"AIObjective_MoveGuidance_SetSafePathingWeight\",\"kind\":2,\"label\":\"AIObjective_MoveGuidance_SetSafePathingWeight\",\"documentation\":\"Set preference for safe movements on way to engagement targets \"},{\"id\":\"AIObjective_MoveGuidance_SetSquadCoherenceRadius\",\"kind\":2,\"label\":\"AIObjective_MoveGuidance_SetSquadCoherenceRadius\",\"documentation\":\"Set radius (follow distance) for coordinated move phase (<= 0 disables coordinated movement) \"},{\"id\":\"AIObjective_Notify_ClearCallbacks\",\"kind\":2,\"label\":\"AIObjective_Notify_ClearCallbacks\",\"documentation\":\"Clears all notification callbacks for objective \"},{\"id\":\"AIObjective_Notify_SetPlayerEventObjectiveID\",\"kind\":2,\"label\":\"AIObjective_Notify_SetPlayerEventObjectiveID\",\"documentation\":\"Sets the ID for the notification event sent out by objective \"},{\"id\":\"AIObjective_ResourceGuidance_ClearSquads\",\"kind\":2,\"label\":\"AIObjective_ResourceGuidance_ClearSquads\",\"documentation\":\"Removes all resource squads from objective. \"},{\"id\":\"AIObjective_ResourceGuidance_SquadGroup\",\"kind\":2,\"label\":\"AIObjective_ResourceGuidance_SquadGroup\",\"documentation\":\"Sets the resource squads for objective. \"},{\"id\":\"AIObjective_SetName\",\"kind\":2,\"label\":\"AIObjective_SetName\",\"documentation\":\"Set objective name for debugging. \"},{\"id\":\"AIObjective_TacticFilter_DisableAbility\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_DisableAbility\",\"documentation\":\"Disable ability for all squads in objective \"},{\"id\":\"AIObjective_TacticFilter_DisableAbilityForSquadGroup\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_DisableAbilityForSquadGroup\",\"documentation\":\"Disable ability for squads in objective \"},{\"id\":\"AIObjective_TacticFilter_EnableCloseGround\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_EnableCloseGround\",\"documentation\":\"Enable close ground behaviour (3-stage TACTIC_RushAtTarget) for all squads in objective, running at priority (1..1000) \"},{\"id\":\"AIObjective_TacticFilter_Reset\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_Reset\",\"documentation\":\"Reset all tactic filters for objective \"},{\"id\":\"AIObjective_TacticFilter_ResetAbilityGuidance\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_ResetAbilityGuidance\",\"documentation\":\"Reset all tactic ability constraints for objective \"},{\"id\":\"AIObjective_TacticFilter_ResetPriority\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_ResetPriority\",\"documentation\":\"Reset tactic priority for all squads in objective \"},{\"id\":\"AIObjective_TacticFilter_ResetTacticGuidance\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_ResetTacticGuidance\",\"documentation\":\"Reset all tactic constraints for objective \"},{\"id\":\"AIObjective_TacticFilter_ResetTargetGuidance\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_ResetTargetGuidance\",\"documentation\":\"Reset all tactic target constraints for objective \"},{\"id\":\"AIObjective_TacticFilter_SetAbilityGuidance\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_SetAbilityGuidance\",\"documentation\":\"Set tactic ability constraints for objective \"},{\"id\":\"AIObjective_TacticFilter_SetDefaultAbilityGuidance\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_SetDefaultAbilityGuidance\",\"documentation\":\"Set default tactic ability constraints for objective (ability specific guidance takes priority over defaults) \"},{\"id\":\"AIObjective_TacticFilter_SetDefaultTacticGuidance\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_SetDefaultTacticGuidance\",\"documentation\":\"Set default tactic constraints for objective (tactic specific guidance takes priority over defaults) \"},{\"id\":\"AIObjective_TacticFilter_SetDefaultTargetGuidance\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_SetDefaultTargetGuidance\",\"documentation\":\"Set default target constraints for objective (target specific guidance takes priority over defaults) \"},{\"id\":\"AIObjective_TacticFilter_SetPriority\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_SetPriority\",\"documentation\":\"Set tactic priority for all squads in objective; negative priority disables \"},{\"id\":\"AIObjective_TacticFilter_SetPriorityForSquadGroup\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_SetPriorityForSquadGroup\",\"documentation\":\"Set tactic priority for squads in objective \"},{\"id\":\"AIObjective_TacticFilter_SetTacticGuidance\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_SetTacticGuidance\",\"documentation\":\"Set tactic constraints for objective \"},{\"id\":\"AIObjective_TacticFilter_SetTargetPolicy\",\"kind\":2,\"label\":\"AIObjective_TacticFilter_SetTargetPolicy\",\"documentation\":\"Set tactic target priority for objective \"},{\"id\":\"AIObjective_TargetGuidance_SetTargetArea\",\"kind\":2,\"label\":\"AIObjective_TargetGuidance_SetTargetArea\",\"documentation\":\"Sets engagement area radius around the target. \"},{\"id\":\"AIObjective_TargetGuidance_SetTargetEntity\",\"kind\":2,\"label\":\"AIObjective_TargetGuidance_SetTargetEntity\",\"documentation\":\"Sets target Entity for objective \"},{\"id\":\"AIObjective_TargetGuidance_SetTargetLeash\",\"kind\":2,\"label\":\"AIObjective_TargetGuidance_SetTargetLeash\",\"documentation\":\"Sets leash radius around target where squads should stay within. \"},{\"id\":\"AIObjective_TargetGuidance_SetTargetPathByName\",\"kind\":2,\"label\":\"AIObjective_TargetGuidance_SetTargetPathByName\",\"documentation\":\"Sets target patrol path for objective \"},{\"id\":\"AIObjective_TargetGuidance_SetTargetPathWander\",\"kind\":2,\"label\":\"AIObjective_TargetGuidance_SetTargetPathWander\",\"documentation\":\"Sets random wander target patrol for objective; delaySecs is the time in secs to pause at each random point \"},{\"id\":\"AIObjective_TargetGuidance_SetTargetPosition\",\"kind\":2,\"label\":\"AIObjective_TargetGuidance_SetTargetPosition\",\"documentation\":\"Sets target position for objective \"},{\"id\":\"AIObjective_TargetGuidance_SetTargetSquad\",\"kind\":2,\"label\":\"AIObjective_TargetGuidance_SetTargetSquad\",\"documentation\":\"Sets target Squad for objective \"},{\"id\":\"BeginnerHint_AddOpportunity\",\"kind\":2,\"label\":\"BeginnerHint_AddOpportunity\",\"documentation\":\"Add an opportunity that may get highlighted by the hint manager system on easier difficulty modes. THIS IS NOT MP-SAFE! \"},{\"id\":\"BeginnerHint_RemoveAllOpportunities\",\"kind\":2,\"label\":\"BeginnerHint_RemoveAllOpportunities\",\"documentation\":\"Remove all opportunities in one fell swoop! \"},{\"id\":\"BeginnerHint_RemoveOpportunity\",\"kind\":2,\"label\":\"BeginnerHint_RemoveOpportunity\",\"documentation\":\"Remove an opportunity, either by ID or all opportunities at a location \"},{\"id\":\"BP_GetAbilityBlueprint\",\"kind\":2,\"label\":\"BP_GetAbilityBlueprint\",\"documentation\":\"Returns an ability property bag group. \"},{\"id\":\"BP_GetCamouflageStanceBlueprint\",\"kind\":2,\"label\":\"BP_GetCamouflageStanceBlueprint\",\"documentation\":\"Returns a camouflage stance property bag group. \"},{\"id\":\"BP_GetCriticalBlueprint\",\"kind\":2,\"label\":\"BP_GetCriticalBlueprint\",\"documentation\":\"Returns a critical property bag group. \"},{\"id\":\"BP_GetEntityBlueprint\",\"kind\":2,\"label\":\"BP_GetEntityBlueprint\",\"documentation\":\"Returns an entity property bag group. \"},{\"id\":\"BP_GetID\",\"kind\":2,\"label\":\"BP_GetID\",\"documentation\":\"Returns an ID that uniquely identifies this pbg \"},{\"id\":\"BP_GetMoveTypeBlueprint\",\"kind\":2,\"label\":\"BP_GetMoveTypeBlueprint\",\"documentation\":\"Returns a move type property bag group. \"},{\"id\":\"BP_GetName\",\"kind\":2,\"label\":\"BP_GetName\",\"documentation\":\"Return the short name of the group nExample name would be \"ally_mad_minute_ability\"\"},{\"id\":\"BP_GetPropertyBagGroupCount\",\"kind\":2,\"label\":\"BP_GetPropertyBagGroupCount\",\"documentation\":\"Return the number of property bag groups of the same type nExample type would be PBG_Critical\"},{\"id\":\"BP_GetPropertyBagGroupPathName\",\"kind\":2,\"label\":\"BP_GetPropertyBagGroupPathName\",\"documentation\":\"Return the path name of the group at the specified index nExample name would be \"abilitiesally_mad_minute_ability\"\"},{\"id\":\"BP_GetSlotItemBlueprint\",\"kind\":2,\"label\":\"BP_GetSlotItemBlueprint\",\"documentation\":\"Returns a slot item property bag group. \"},{\"id\":\"BP_GetSquadBlueprint\",\"kind\":2,\"label\":\"BP_GetSquadBlueprint\",\"documentation\":\"Returns a squad property bag group. \"},{\"id\":\"BP_GetUpgradeBlueprint\",\"kind\":2,\"label\":\"BP_GetUpgradeBlueprint\",\"documentation\":\"Returns an upgrade property bag group. \"},{\"id\":\"BP_GetWeaponBlueprint\",\"kind\":2,\"label\":\"BP_GetWeaponBlueprint\",\"documentation\":\"Returns a weapon property bag group. \"},{\"id\":\"EBP_Exists\",\"kind\":2,\"label\":\"EBP_Exists\",\"documentation\":\"Returns true if an entity blueprint exists with the given name. \"},{\"id\":\"SBP_Exists\",\"kind\":2,\"label\":\"SBP_Exists\",\"documentation\":\"Returns true if a squad blueprint exists with the given name. \"},{\"id\":\"Camera_CyclePositions\",\"kind\":2,\"label\":\"Camera_CyclePositions\",\"documentation\":\"Moves the camera through a list of positions. \"},{\"id\":\"Camera_Follow\",\"kind\":2,\"label\":\"Camera_Follow\",\"documentation\":\"Set the camera to follow an sgroup/squad/egroup/entity. nThe camera will follow them until the player takes control again.\"},{\"id\":\"Camera_MoveTo\",\"kind\":2,\"label\":\"Camera_MoveTo\",\"documentation\":\"Move the camera to an entity/marker/pos/egroup/sgroup/squad nThis function canNOT be called through a CTRL object in NISlets.\"},{\"id\":\"Camera_MoveToIfClose\",\"kind\":2,\"label\":\"Camera_MoveToIfClose\",\"documentation\":\"Slightly refocus the camera to rest on an entity/squad/squad/sgroup/egroup/pos/marker if it's close by. nThis function can be called through a CTRL object in NISlets.\"},{\"id\":\"Camera_SetDefault\",\"kind\":2,\"label\":\"Camera_SetDefault\",\"documentation\":\"Helper function to set the default camera parameters nIf the parameter is nil, the particular property is not modified\"},{\"id\":\"Cmd_AbandonTeamWeapon\",\"kind\":2,\"label\":\"Cmd_AbandonTeamWeapon\",\"documentation\":\"Order a squad group to abandon their current team weapon if they have it and they could (tuning value in attribute editor) \"},{\"id\":\"Cmd_Ability\",\"kind\":2,\"label\":\"Cmd_Ability\",\"documentation\":\"Sends an ability command to a player, egroup or sgroup. extra parameters are provided if the ability requires them. \"},{\"id\":\"Cmd_AttachSquads\",\"kind\":2,\"label\":\"Cmd_AttachSquads\",\"documentation\":\"Attach the squad from sgroupnameAttachee to sgroupname. Both SGroups must contain only one squad. \"},{\"id\":\"Cmd_Attack\",\"kind\":2,\"label\":\"Cmd_Attack\",\"documentation\":\"Issues an attack command to an SGroup \"},{\"id\":\"Cmd_AttackMove\",\"kind\":2,\"label\":\"Cmd_AttackMove\",\"documentation\":\"Order a squad group to attack move to a position (anything whose position can be queried). can be queued, can follow a plan, can search for cover within a radius \"},{\"id\":\"Cmd_AttackMoveThenCapture\",\"kind\":2,\"label\":\"Cmd_AttackMoveThenCapture\",\"documentation\":\"Command attacker sgroup to attack move to strategic point target; when it is capturable, the sgroup would capture it \"},{\"id\":\"Cmd_CaptureTeamWeapon\",\"kind\":2,\"label\":\"Cmd_CaptureTeamWeapon\",\"documentation\":\"Order a squad group to capture team weapon entity group. \"},{\"id\":\"Cmd_Construct\",\"kind\":2,\"label\":\"Cmd_Construct\",\"documentation\":\"Orders a squad to contruct a building at specified position, or to continue construction on an existing building. nThe command also checks to see if a building already exists at the location, and the squad will continue building it, if it is of the correct type.\"},{\"id\":\"Cmd_CriticalHit\",\"kind\":2,\"label\":\"Cmd_CriticalHit\",\"documentation\":\"Applies critical hit to entity/squad/sgroup/egroup nPlayer id doesn't have to be the owner as the applied entities but need to make sure the player is still alive\"},{\"id\":\"Cmd_DetonateDemolitions\",\"kind\":2,\"label\":\"Cmd_DetonateDemolitions\",\"documentation\":\"Detonates a building's demolitions \"},{\"id\":\"Cmd_EjectOccupants\",\"kind\":2,\"label\":\"Cmd_EjectOccupants\",\"documentation\":\"Orders an EGroup or SGroup to kick out its occupants. If no position is specified, the occupants stay at the exit. \"},{\"id\":\"Cmd_Garrison\",\"kind\":2,\"label\":\"Cmd_Garrison\",\"documentation\":\"Order a squad group to load at a random entity or squad of the group noverload is a flag that will allow the hold entity to ignore maximum slot check\"},{\"id\":\"Cmd_InstantReinforceUnit\",\"kind\":2,\"label\":\"Cmd_InstantReinforceUnit\",\"documentation\":\"Sends a instant reinforce command to all squads in a group. count represents the number of commands to send. nNote: This function bypasses pre-reqs, costs and the production queue\"},{\"id\":\"Cmd_InstantReinforceUnitPos\",\"kind\":2,\"label\":\"Cmd_InstantReinforceUnitPos\",\"documentation\":\"Sends a instant reinforce command to all squads in a group. count represents the number of commands to send. spawnlocation is where the reinforced unit will spawn. You can optionally find a hidden position by specifying a checktype (CHECK_OFFCAMERA, CHECK_IN_FOW or CHECK_BOTH), and what to do if a hidden position can't be found (SPAWN_ATMARKER, SPAWN_ATSQUAD, or DO_NOTHING) - SPAWN_ATMARKER is the default. nNote: This function bypasses pre-reqs and costs and the production queue\"},{\"id\":\"Cmd_InstantSetupTeamWeapon\",\"kind\":2,\"label\":\"Cmd_InstantSetupTeamWeapon\",\"documentation\":\"Order a squad group to instant setup their team weapon \"},{\"id\":\"Cmd_InstantUpgrade\",\"kind\":2,\"label\":\"Cmd_InstantUpgrade\",\"documentation\":\"Sends an instant upgrade command to a player, egroup or sgroup. accepts a single upgrade or table of upgrades. \"},{\"id\":\"Cmd_Move\",\"kind\":2,\"label\":\"Cmd_Move\",\"documentation\":\"Move a squad group to a given position. nSupports facing, 'offset' movement, and can find cover. The sgroup can be deleted when in proximity of a marker (it assumes a proximity of 5 if you forget to set one on the marker)\"},{\"id\":\"Cmd_MoveAwayFromPos\",\"kind\":2,\"label\":\"Cmd_MoveAwayFromPos\",\"documentation\":\"Move a squad group out of a position to a certain radius nAll squads in the group will move away from the centre position from its current position\"},{\"id\":\"Cmd_MoveToAndDespawn\",\"kind\":2,\"label\":\"Cmd_MoveToAndDespawn\",\"documentation\":\"Moves a squad group to the indicated Marker and destroys it. \"},{\"id\":\"Cmd_MoveToClosestMarker\",\"kind\":2,\"label\":\"Cmd_MoveToClosestMarker\",\"documentation\":\"Moves a squad group to the closest marker in a list/table of MarkerIDs. \"},{\"id\":\"Cmd_MoveToThenCapture\",\"kind\":2,\"label\":\"Cmd_MoveToThenCapture\",\"documentation\":\"Command attacker sgroup to attack move to strategic point target; when it is capturable, the sgroup would capture it \"},{\"id\":\"Cmd_RecrewVehicle\",\"kind\":2,\"label\":\"Cmd_RecrewVehicle\",\"documentation\":\"Order a squad group to recrew an abandoned vehicle. \"},{\"id\":\"Cmd_ReinforceUnit\",\"kind\":2,\"label\":\"Cmd_ReinforceUnit\",\"documentation\":\"Sends a reinforce command to all squads in a group. count represents the number of commands to send. nNote: To reinforce squad bypassing the pre-reqs and costs use Cmd_InstantReinforceUnit.\"},{\"id\":\"Cmd_ReinforceUnitPos\",\"kind\":2,\"label\":\"Cmd_ReinforceUnitPos\",\"documentation\":\"Sends a reinforce command to all squads in a group. count represents the number of commands to send. spawnlocation is where the reinforced unit will spawn. You can optionally find a hidden position by specifying a checktype (CHECK_OFFCAMERA, CHECK_IN_FOW or CHECK_BOTH), and what to do if a hidden position can't be found (SPAWN_ATMARKER, SPAWN_ATSQUAD, or DO_NOTHING) - SPAWN_ATMARKER is the default. nTo reinforce squads bypassing the pre-reqs and costs use Cmd_InstantReinforceUnit \"},{\"id\":\"Cmd_Retreat\",\"kind\":2,\"label\":\"Cmd_Retreat\",\"documentation\":\"Order a squad group to retreat, optionally to a specific location. The sgroup can be deleted when in proximity of a marker (it assumes a proximity of 5 if you forget to set one on the marker) nvulnerableRetreat will make retreating squads take more damage\"},{\"id\":\"Cmd_RevertOccupiedBuilding\",\"kind\":2,\"label\":\"Cmd_RevertOccupiedBuilding\",\"documentation\":\"Order a squad group to revert occupied building \"},{\"id\":\"Cmd_SetDemolitions\",\"kind\":2,\"label\":\"Cmd_SetDemolitions\",\"documentation\":\"Orders a squad group to place demolition charges on a building (egroup). Function does nothing if egroup cannot be detonated, or player can't afford the demolitions \"},{\"id\":\"Cmd_SquadCamouflageStance\",\"kind\":2,\"label\":\"Cmd_SquadCamouflageStance\",\"documentation\":\"Sends an camouflage stance command to all squads in a group. stanceid should be the number returned by Util_GetCamouflageStanceID( stancename ) \"},{\"id\":\"Cmd_SquadPath\",\"kind\":2,\"label\":\"Cmd_SquadPath\",\"documentation\":\"Send a command to the squad to follow a path. Can wait at each waypoint. The sgroup can be deleted when in proximity of a marker if you pass in the marker as the 7th argument (it assumes a proximity of 5 if you forget to set one on the marker) nloop can be: LOOP_NONE, LOOP_NORMAL, LOOP_TOGGLE_DIRECTION\"},{\"id\":\"Cmd_SquadPatrolMarker\",\"kind\":2,\"label\":\"Cmd_SquadPatrolMarker\",\"documentation\":\"Causes a squad to patrol a marker attacking any enemies that come within its radius. If used on circular markers, the radius must be at least 5. To stop the squad from patrolling the marker, use Cmd_Stop. \"},{\"id\":\"Cmd_StaggeredRetreat\",\"kind\":2,\"label\":\"Cmd_StaggeredRetreat\",\"documentation\":\"Retreats large numbers of units in a staggered, realistic manner. nvulnerableRetreat will make retreating squads take more damage\"},{\"id\":\"Cmd_Stop\",\"kind\":2,\"label\":\"Cmd_Stop\",\"documentation\":\"Sends a stop command to egroup or sgroup. \"},{\"id\":\"Cmd_Surrender\",\"kind\":2,\"label\":\"Cmd_Surrender\",\"documentation\":\"Orders a squad to surrender and awards the local player with an appropriate number of action points nThe command will also overwrite the exit position as well, if you do not want the squads to exit at the map entry point.\"},{\"id\":\"Cmd_UngarrisonSquad\",\"kind\":2,\"label\":\"Cmd_UngarrisonSquad\",\"documentation\":\"Orders an sgroup to exit the building or vehicle that it's in. If no position is specified, the sgroup stays at the exit. \"},{\"id\":\"Cmd_Upgrade\",\"kind\":2,\"label\":\"Cmd_Upgrade\",\"documentation\":\"Sends an upgrade command to a player, egroup or sgroup. accepts a single upgrade or table of upgrades. \"},{\"id\":\"Command_Entity\",\"kind\":2,\"label\":\"Command_Entity\",\"documentation\":\" Send a entity command to a entity group(CMD_DefaultAction, CMD_Stop, CMD_Destroy, CMD_BuildSquad, CMD_CancelProduction, CMD_RallyPoint, CMD_AttackForced) n Entity commands are mostly used for buildings etc. If you need to issue commands to units, use the Squad_Command function.\"},{\"id\":\"Command_EntityAbility\",\"kind\":2,\"label\":\"Command_EntityAbility\",\"documentation\":\"Send an entity ability command (CMD_Ability) to an entity \"},{\"id\":\"Command_EntityBuildSquad\",\"kind\":2,\"label\":\"Command_EntityBuildSquad\",\"documentation\":\" Send a squad command to a entity group with custom data \"},{\"id\":\"Command_EntityEntity\",\"kind\":2,\"label\":\"Command_EntityEntity\",\"documentation\":\"Send a entity-based command to an entity group. n Use this function to issue orders that require a entity to an entity group (eg. order a building to attack another building)<BR/> See Command_Entity for a list of all the possible entityCommands.\"},{\"id\":\"Command_EntityExt\",\"kind\":2,\"label\":\"Command_EntityExt\",\"documentation\":\" Send a squad command to a squad group with custom data \"},{\"id\":\"Command_EntityPos\",\"kind\":2,\"label\":\"Command_EntityPos\",\"documentation\":\"Send a position command to an entity group. n Use this function to issue orders that require a position to an entity group (eg. set a rally point for a building)<BR/> See Command_Entity for a list of all the possible entityCommands.\"},{\"id\":\"Command_EntityPosAbility\",\"kind\":2,\"label\":\"Command_EntityPosAbility\",\"documentation\":\"Send a positional ability command (CMD_Ability) to an entity n Use this function to issue ability orders that require a position to player\"},{\"id\":\"Command_EntityPosDirAbility\",\"kind\":2,\"label\":\"Command_EntityPosDirAbility\",\"documentation\":\"Send a positional/directional ability command (CMD_Ability) to an entity n Use this function to issue ability orders that require a position and a direction to player\"},{\"id\":\"Command_EntityPosSquad\",\"kind\":2,\"label\":\"Command_EntityPosSquad\",\"documentation\":\"Send a dual target (position and squad) command to an entity group. n Use this function to issue orders that require a position and a squad to an entity group (eg. unloading squad from hold)<BR/> See Command_Entity for a list of all the possible entityCommands.\"},{\"id\":\"Command_EntitySquad\",\"kind\":2,\"label\":\"Command_EntitySquad\",\"documentation\":\"Send a squad-based command to an entity group. n Use this function to issue orders that require a squad to an entity group (eg. order a building to attack a squad)<BR/> See Command_Entity for a list of all the possible entityCommands.\"},{\"id\":\"Command_EntityTargetEntityAbility\",\"kind\":2,\"label\":\"Command_EntityTargetEntityAbility\",\"documentation\":\"Send an entity-targeting ability command (CMD_Ability) to an entity n Use this function to issue ability orders that require an entity target to an entity\"},{\"id\":\"Command_EntityTargetSquadAbility\",\"kind\":2,\"label\":\"Command_EntityTargetSquadAbility\",\"documentation\":\"Send an squad-targeting ability command (CMD_Ability) to an entity n Use this function to issue ability orders that require an entity target to an entity\"},{\"id\":\"Command_EntityUpgrade\",\"kind\":2,\"label\":\"Command_EntityUpgrade\",\"documentation\":\" Send a squad command to a entity group with custom data \"},{\"id\":\"Command_Player\",\"kind\":2,\"label\":\"Command_Player\",\"documentation\":\" Send a player command to a player n PCMD_Ability\"},{\"id\":\"Command_PlayerAbility\",\"kind\":2,\"label\":\"Command_PlayerAbility\",\"documentation\":\"Send a player ability command (PCMD_Ability) to a player \"},{\"id\":\"Command_PlayerEntity\",\"kind\":2,\"label\":\"Command_PlayerEntity\",\"documentation\":\"Send an entity command to a player. \"},{\"id\":\"Command_PlayerEntityCriticalHit\",\"kind\":2,\"label\":\"Command_PlayerEntityCriticalHit\",\"documentation\":\" Send a player command to itself to act upon single with custom parameter and index data (PCMD_CriticalHit) n This is a special command for SCAR and debug feature\"},{\"id\":\"Command_PlayerExt\",\"kind\":2,\"label\":\"Command_PlayerExt\",\"documentation\":\" Send a player command to a player with a custom flag \"},{\"id\":\"Command_PlayerPos\",\"kind\":2,\"label\":\"Command_PlayerPos\",\"documentation\":\"Send a position command to a player. n Use this function to issue orders that require a position to player)<BR/> See Command_Player for a list of all the possible playerCommands.\"},{\"id\":\"Command_PlayerPosAbility\",\"kind\":2,\"label\":\"Command_PlayerPosAbility\",\"documentation\":\"Send a positional ability command (PCMD_Ability) to a player n Use this function to issue ability orders that require a position to player\"},{\"id\":\"Command_PlayerPosDirAbility\",\"kind\":2,\"label\":\"Command_PlayerPosDirAbility\",\"documentation\":\"Send a positional/directional ability command (PCMD_Ability) to a player n Use this function to issue ability orders that require a position and a direction to player\"},{\"id\":\"Command_PlayerPosExt\",\"kind\":2,\"label\":\"Command_PlayerPosExt\",\"documentation\":\"Send a position command to a player with extra info n Use this function to issue orders that require a position to player<BR/> See Command_Player for a list of all the possible playerCommands.\"},{\"id\":\"Command_PlayerSquadConstructBuilding\",\"kind\":2,\"label\":\"Command_PlayerSquadConstructBuilding\",\"documentation\":\" Send a player command to itself to order squads in the sgroup to construct the building at specific position and facing nstructureBlueprint must be a valid building that can be constructed by the sgroup. This building would cost nothing and does not effect population and availability This is a special command for SCAR use\"},{\"id\":\"Command_PlayerSquadConstructFence\",\"kind\":2,\"label\":\"Command_PlayerSquadConstructFence\",\"documentation\":\" Send a player command to itself to order squads in the sgroup to construct fences from posStart to posEnd nstructureBlueprint must be a valid building that can be constructed by the sgroup. This building would cost nothing and does not effect population and availability This is a special command for SCAR use\"},{\"id\":\"Command_PlayerSquadConstructField\",\"kind\":2,\"label\":\"Command_PlayerSquadConstructField\",\"documentation\":\" Send a player command to itself to order squads in the sgroup to construct a field ranging from posStart to posEnd nstructureBlueprint must be a valid building that can be constructed by the sgroup. This building would cost nothing and does not effect population and availability This is a special command for SCAR use\"},{\"id\":\"Command_PlayerSquadCriticalHit\",\"kind\":2,\"label\":\"Command_PlayerSquadCriticalHit\",\"documentation\":\" Send a player command to itself to act upon all entities in the sgroup with custom parameter and index data (PCMD_CriticalHit) n This is a special command for SCAR & debug use\"},{\"id\":\"Command_PlayerUpgrade\",\"kind\":2,\"label\":\"Command_PlayerUpgrade\",\"documentation\":\"Sends an upgrade command to a player \"},{\"id\":\"Command_Squad\",\"kind\":2,\"label\":\"Command_Squad\",\"documentation\":\" Send a squad command to a squad group n SCMD_DefaultAction, SCMD_Move, SCMD_Stop, SCMD_Destroy, SCMD_BuildStructure, SCMD_Capture, SCMD_Attack, SCMD_ReinforceUnit, SCMD_Upgrade, SCMD_CancelProduction SCMD_AttackMove, SCMD_Ability SCMD_Load,SCMD_UnloadSquads, SCMD_DoPlan SCMD_SlotItemRemove, SCMD_InstantReinforceUnit, SCMD_InstantUpgrade\"},{\"id\":\"Command_SquadAbility\",\"kind\":2,\"label\":\"Command_SquadAbility\",\"documentation\":\"Send a ability command (SCMD_Ability) to a squad \"},{\"id\":\"Command_SquadAttackMovePos\",\"kind\":2,\"label\":\"Command_SquadAttackMovePos\",\"documentation\":\"Send a position ATTACK MOVE command to a squad group with custom data \"},{\"id\":\"Command_SquadDoCustomPlan\",\"kind\":2,\"label\":\"Command_SquadDoCustomPlan\",\"documentation\":\"Send a custom squad AI plan command to the squad to execute the plan specified towards the position \"},{\"id\":\"Command_SquadDoCustomPlanTarget\",\"kind\":2,\"label\":\"Command_SquadDoCustomPlanTarget\",\"documentation\":\"Send a custom squad AI plan command to the squad to execute the plan specified towards the position \"},{\"id\":\"Command_SquadEntity\",\"kind\":2,\"label\":\"Command_SquadEntity\",\"documentation\":\"Send an entity command to a squad group. n Use this function to isssue an entity-based command to a squad group.<BR/> See Command_Squad for a list of all the possible squadCommands\"},{\"id\":\"Command_SquadEntityAbility\",\"kind\":2,\"label\":\"Command_SquadEntityAbility\",\"documentation\":\"Send a entity ability command (SCMD_Ability) to a squad \"},{\"id\":\"Command_SquadEntityAttack\",\"kind\":2,\"label\":\"Command_SquadEntityAttack\",\"documentation\":\"Send an entity command ATTACK to a squad group. n Use this function to issue an entity-based command to a squad group with custom FOW check flag. (eg. order a squad to attack a building)<BR/> planName is the name of the custom plan file to execute. Pass in empty string to use the default<BR/> stationary flag uses SCMD_StationaryAttack instead where plan file is ignored and squad does not pursue its target See Command_Squad for a list of all the possible squadCommands\"},{\"id\":\"Command_SquadEntityBool\",\"kind\":2,\"label\":\"Command_SquadEntityBool\",\"documentation\":\"Send a entity command to a squad group with custom BOOLEAN data \"},{\"id\":\"Command_SquadEntityExt\",\"kind\":2,\"label\":\"Command_SquadEntityExt\",\"documentation\":\"Send a entity command to a squad group with custom data \"},{\"id\":\"Command_SquadEntityLoad\",\"kind\":2,\"label\":\"Command_SquadEntityLoad\",\"documentation\":\"Send special squad command to a squad group with squad load parameters n This is a special command for loading squads into building (entity) holds (SCMD_Load, SCMD_InstantLoad)\"},{\"id\":\"Command_SquadExt\",\"kind\":2,\"label\":\"Command_SquadExt\",\"documentation\":\" Send a squad command to a squad group with custom data \"},{\"id\":\"Command_SquadMovePos\",\"kind\":2,\"label\":\"Command_SquadMovePos\",\"documentation\":\"Send a move to position command for a squad group. n Use this function to issue move orders that require a position to a squad group\"},{\"id\":\"Command_SquadMovePosFacing\",\"kind\":2,\"label\":\"Command_SquadMovePosFacing\",\"documentation\":\"Send a move-facing command to a squad group \"},{\"id\":\"Command_SquadPos\",\"kind\":2,\"label\":\"Command_SquadPos\",\"documentation\":\"Send a position command to a squad group. n Use this function to issue orders that require a position to a squad group (eg. order a squad to move to position, or attack position)<BR/> See Command_Squad for a list of all the possible squadCommands.\"},{\"id\":\"Command_SquadPosAbility\",\"kind\":2,\"label\":\"Command_SquadPosAbility\",\"documentation\":\"Send a positional ability command (SCMD_Ability) to a squad \"},{\"id\":\"Command_SquadPosExt\",\"kind\":2,\"label\":\"Command_SquadPosExt\",\"documentation\":\"Send a position command to a squad group with custom data \"},{\"id\":\"Command_SquadPositionAttack\",\"kind\":2,\"label\":\"Command_SquadPositionAttack\",\"documentation\":\"Send an position command ATTACK to a squad group. n Use this function to issue an position-based command to a squad group with custom FOW check flag. (eg. order a squad to attack a building)<BR/> planName is the name of the custom plan file to execute. Pass in empty string to use the default<BR/> stationary flag uses SCMD_StationaryAttack instead where plan file is ignored and squad does not pursue its target See Command_Squad for a list of all the possible squadCommands\"},{\"id\":\"Command_SquadSquad\",\"kind\":2,\"label\":\"Command_SquadSquad\",\"documentation\":\"Send an squad-based command to a squad group. n Use this function to issue a squad-based command to a squad group. <BR/> See Command_Squad for a list of all the possible squadCommands\"},{\"id\":\"Command_SquadSquadAbility\",\"kind\":2,\"label\":\"Command_SquadSquadAbility\",\"documentation\":\"Send a squad ability command (SCMD_Ability) to a squad \"},{\"id\":\"Command_SquadSquadAttack\",\"kind\":2,\"label\":\"Command_SquadSquadAttack\",\"documentation\":\"Send an squad-based command to a squad group. n Use this function to issue a squad-based command to a squad group with special boolean flag. (eg. order a squad to attack another squad)<BR/> If bCheckFOW is set to false, the squad would be able to attack other squads hidden in FOW <BR/> planName is the name of the custom plan file to execute. Pass in empty string to use the default<BR/> stationary flag uses SCMD_StationaryAttack instead where plan file is ignored and squad does not pursue its target See Command_Squad for a list of all the possible squadCommands\"},{\"id\":\"Command_SquadSquadExt\",\"kind\":2,\"label\":\"Command_SquadSquadExt\",\"documentation\":\"Send a squad command to a squad group with custom data \"},{\"id\":\"Command_SquadSquadLoad\",\"kind\":2,\"label\":\"Command_SquadSquadLoad\",\"documentation\":\"Send special squad command to a squad group with squad load parameters n This is a special command for loading squads into vehicle (squad) holds (SCMD_Load, SCMD_InstantLoad)\"},{\"id\":\"Command_SquadUpgrade\",\"kind\":2,\"label\":\"Command_SquadUpgrade\",\"documentation\":\"Sends an upgrade command to a squad group. \"},{\"id\":\"AutoCinematic\",\"kind\":2,\"label\":\"AutoCinematic\",\"documentation\":\"Toggles all cinematic related settings. true = go to cinematic, false = go back to normal \"},{\"id\":\"AutoReinforce_AddSGroup\",\"kind\":2,\"label\":\"AutoReinforce_AddSGroup\",\"documentation\":\"Adds an SGroup to the auto-reinforce functions \"},{\"id\":\"AutoReinforce_RemoveAll\",\"kind\":2,\"label\":\"AutoReinforce_RemoveAll\",\"documentation\":\"Stops monitoring all squads from the auto-reinforce functions \"},{\"id\":\"AutoReinforce_RemoveSGroup\",\"kind\":2,\"label\":\"AutoReinforce_RemoveSGroup\",\"documentation\":\"Removes an SGroup from the auto-reinforce functions \"},{\"id\":\"AutoRetreat_AddSGroup\",\"kind\":2,\"label\":\"AutoRetreat_AddSGroup\",\"documentation\":\"Sets an sgroup to retreat to the given destination or building once pinned for a certain duration, or reduced to a third of it's original size nThe optional threshold value should be a percentage (between 0.0 and 1.0) - when the member count drops below this, they retreat\"},{\"id\":\"AutoRetreat_RemoveAll\",\"kind\":2,\"label\":\"AutoRetreat_RemoveAll\",\"documentation\":\"Stops monitoring all squads from the auto-retreat functions \"},{\"id\":\"AutoRetreat_RemoveSGroup\",\"kind\":2,\"label\":\"AutoRetreat_RemoveSGroup\",\"documentation\":\"Removes a squad from being monitored by the auto-retreat functions \"},{\"id\":\"BridgeTerritory_Add\",\"kind\":2,\"label\":\"BridgeTerritory_Add\",\"documentation\":\"Add a bridge to the Bridge Territory Manager. nbridgepoint, bank1point and bank2point should be egroups each containing one territory flagnReferences: [Bridge+Territory+Manager]\"},{\"id\":\"Ceasefire_AddSGroup\",\"kind\":2,\"label\":\"Ceasefire_AddSGroup\",\"documentation\":\"Stops an SGroup from auto-targetting, until one of their members is explicity given an attack order or Ceasefire_RemoveSGroup() is called (at which point they all start firing again) nYou can optionally specify a function that will be called when the ceasefire is broken by the game (rather than by calling Ceasefire_RemoveSGroup)\"},{\"id\":\"Ceasefire_RemoveSGroup\",\"kind\":2,\"label\":\"Ceasefire_RemoveSGroup\",\"documentation\":\"Removes the ceasefire effect from an sgroup. This may already have been removed by issuing an attack order directly to the group. \"},{\"id\":\"FireTargettingArtillery\",\"kind\":2,\"label\":\"FireTargettingArtillery\",\"documentation\":\"Uses targettingData to determine if a target has moved or not and progressively homes-in on it. nSee DesignerLib.scar for details on targettingData values.\"},{\"id\":\"Game_DefaultGameRestore\",\"kind\":2,\"label\":\"Game_DefaultGameRestore\",\"documentation\":\"Restores various aspects of the single player game after loading a mission from a save game \"},{\"id\":\"Game_GetGameRestoreCallbackExists\",\"kind\":2,\"label\":\"Game_GetGameRestoreCallbackExists\",\"documentation\":\"Checks whether a callback \"},{\"id\":\"Game_RemoveGameRestoreCallback\",\"kind\":2,\"label\":\"Game_RemoveGameRestoreCallback\",\"documentation\":\"Removes a callback from being called on game restore \"},{\"id\":\"Game_SetGameRestoreCallback\",\"kind\":2,\"label\":\"Game_SetGameRestoreCallback\",\"documentation\":\"Adds a function and set of arguments to be automatically called during restore from a saved game. Maxiumum of 9 parameters. Callback will be called like this: Callback(arg[1], arg[2], ...) \"},{\"id\":\"Resources_Disable\",\"kind\":2,\"label\":\"Resources_Disable\",\"documentation\":\"Disables any resource income - useful to stop resources accruing during the opening movie \"},{\"id\":\"Resources_Enable\",\"kind\":2,\"label\":\"Resources_Enable\",\"documentation\":\"Re-enables resource income. \"},{\"id\":\"ShootTheSky_AddSyncWeapon\",\"kind\":2,\"label\":\"ShootTheSky_AddSyncWeapon\",\"documentation\":\"Forces a sync weapon to shoot at the sky, so long as it's manned by a given player. \"},{\"id\":\"ShootTheSky_RemoveAll\",\"kind\":2,\"label\":\"ShootTheSky_RemoveAll\",\"documentation\":\"Stops all sync weapons from going through their \"shooting at the sky\" routine. \"},{\"id\":\"ShootTheSky_RemoveSyncWeapon\",\"kind\":2,\"label\":\"ShootTheSky_RemoveSyncWeapon\",\"documentation\":\"Removes a sync weapon from the \"shoot at the sky\" system. It can then target people again. \"},{\"id\":\"SmokeEntrance_Do\",\"kind\":2,\"label\":\"SmokeEntrance_Do\",\"documentation\":\"Triggers smoke to come in from the map edge, at the position and direction of the given marker \"},{\"id\":\"Table_Contains\",\"kind\":2,\"label\":\"Table_Contains\",\"documentation\":\"Checks if a table contains the specified item \"},{\"id\":\"Table_Copy\",\"kind\":2,\"label\":\"Table_Copy\",\"documentation\":\"Copies the contents of the original table returns a new table with the contents of that table \"},{\"id\":\"Table_GetRandomItem\",\"kind\":2,\"label\":\"Table_GetRandomItem\",\"documentation\":\"Returns a random item from a table. You can return multiple items (without duplicates) by passing in an optional number parameter. \"},{\"id\":\"TeamWeapon_AddGroup\",\"kind\":2,\"label\":\"TeamWeapon_AddGroup\",\"documentation\":\"Add a gun to the gun manager. The manager will take care of turning it around to attack units. Turntime is how often the weapon can turn (default 10 seconds), Total Responses is how many times he will adjust before stopping. nIf you pass in an EGroup, it will automatically find or create a corresponding SGroup with sg_ instead of the eg_ prefix.nReferences: [AT+Gun+Manager]\"},{\"id\":\"TeamWeapon_RemoveDirections\",\"kind\":2,\"label\":\"TeamWeapon_RemoveDirections\",\"documentation\":\"Remove's the direction settings for a gun, turning it into a fire-at-anything type. nUse this if you are relocating a gun. Also removes any special first-trigger speech if you have any hooked up, as it may no longer be suitable if you're moving it.nReferences: [AT+Gun+Manager]\"},{\"id\":\"TeamWeapon_RemoveGroup\",\"kind\":2,\"label\":\"TeamWeapon_RemoveGroup\",\"documentation\":\"Remove a gun from the gun manager. nReferences: [AT+Gun+Manager]\"},{\"id\":\"EGroup_Add\",\"kind\":2,\"label\":\"EGroup_Add\",\"documentation\":\"Adds an entity to the end of a group if the group doesnt already have it. \"},{\"id\":\"EGroup_AddEGroup\",\"kind\":2,\"label\":\"EGroup_AddEGroup\",\"documentation\":\"Appends the entities in one group to another group. n All entities from 'grouptoadd' will be added to 'group'.<BR/> If 'group' already contains an entity from 'grouptoadd' it will not be added.<BR/> This function does not clear the contents of 'grouptoadd'.<BR/> Example: Add group2 (0, 10, 11, 22) to group1 (1, 11, 20) --> group1 would now be (1, 11, 20, 0, 10, 22)<BR/>\"},{\"id\":\"EGroup_CanSeeEGroup\",\"kind\":2,\"label\":\"EGroup_CanSeeEGroup\",\"documentation\":\"Returns true if ALL or ANY entities in a group can see ALL or ANY entities in a given egroup. \"},{\"id\":\"EGroup_CanSeeSGroup\",\"kind\":2,\"label\":\"EGroup_CanSeeSGroup\",\"documentation\":\"Returns true if ALL or ANY entities in a group can see ALL or ANY squads in a given sgroup. \"},{\"id\":\"EGroup_Clear\",\"kind\":2,\"label\":\"EGroup_Clear\",\"documentation\":\"Removes all entities from a group \"},{\"id\":\"EGroup_Compare\",\"kind\":2,\"label\":\"EGroup_Compare\",\"documentation\":\"Returns true if the contents of the two groups are equal. Order of the entities does not matter. \"},{\"id\":\"EGroup_ContainsBlueprints\",\"kind\":2,\"label\":\"EGroup_ContainsBlueprints\",\"documentation\":\"Check if a group contains ALL or ANY of the blueprints. \"},{\"id\":\"EGroup_ContainsEGroup\",\"kind\":2,\"label\":\"EGroup_ContainsEGroup\",\"documentation\":\"Returns true if EGroup1 contains ANY or ALL of EGroup2 \"},{\"id\":\"EGroup_ContainsEntity\",\"kind\":2,\"label\":\"EGroup_ContainsEntity\",\"documentation\":\"Returns true if EGroup contains a particular EntityID \"},{\"id\":\"EGroup_Count\",\"kind\":2,\"label\":\"EGroup_Count\",\"documentation\":\"Returns the total number of spawned and despawned entities in a group. \"},{\"id\":\"EGroup_CountAlive\",\"kind\":2,\"label\":\"EGroup_CountAlive\",\"documentation\":\"Get the number of alive entities (both spawned and despawned) \"},{\"id\":\"EGroup_CountDeSpawned\",\"kind\":2,\"label\":\"EGroup_CountDeSpawned\",\"documentation\":\"Returns the number of despawned entities in a group. \"},{\"id\":\"EGroup_CountSpawned\",\"kind\":2,\"label\":\"EGroup_CountSpawned\",\"documentation\":\"Returns the number of spawned entities in a group. \"},{\"id\":\"EGroup_Create\",\"kind\":2,\"label\":\"EGroup_Create\",\"documentation\":\"Returns a new entity group with the given name. n Entity groups are used for buildings and objects such as rocks and trees.<BR/> If you need to issue orders to a group vehicles or units you must use a SquadGroupObs.\"},{\"id\":\"EGroup_CreateIfNotFound\",\"kind\":2,\"label\":\"EGroup_CreateIfNotFound\",\"documentation\":\"Find a entity group from name. Creates a new one with given name if it doesnt exist. \"},{\"id\":\"EGroup_CreateKickerMessage\",\"kind\":2,\"label\":\"EGroup_CreateKickerMessage\",\"documentation\":\"Create and display kicker message on the each entity in the egroup to the player \"},{\"id\":\"EGroup_DeSpawn\",\"kind\":2,\"label\":\"EGroup_DeSpawn\",\"documentation\":\"Despawn all spawned entities in a group. \"},{\"id\":\"EGroup_Destroy\",\"kind\":2,\"label\":\"EGroup_Destroy\",\"documentation\":\"Manually destroy a group that you dont need anymore. \"},{\"id\":\"EGroup_DestroyAllEntities\",\"kind\":2,\"label\":\"EGroup_DestroyAllEntities\",\"documentation\":\"Destroys all spawned and despawned entities in a group. n Be careful not to confuse this with EGroup_Destroy which destroys the group and NOT the items it contains. This function will destroy spawned and despawned items in a group\"},{\"id\":\"EGroup_Duplicate\",\"kind\":2,\"label\":\"EGroup_Duplicate\",\"documentation\":\"Duplicates an EGroup n Creates a copy of egroup1 in egroup2. The function will clear egroup2 beforehand if necessary.\"},{\"id\":\"EGroup_EnableMinimapIndicator\",\"kind\":2,\"label\":\"EGroup_EnableMinimapIndicator\",\"documentation\":\"Enables or disables the minimap indicator for all entities in a group \"},{\"id\":\"EGroup_EnableUIDecorator\",\"kind\":2,\"label\":\"EGroup_EnableUIDecorator\",\"documentation\":\"Enable or disable decorators on all entities in the egroup. Sets selection visuals as well unless enableSelection is specified. \"},{\"id\":\"EGroup_Exists\",\"kind\":2,\"label\":\"EGroup_Exists\",\"documentation\":\"Returns true if the entity group with the given name exists \"},{\"id\":\"EGroup_Filter\",\"kind\":2,\"label\":\"EGroup_Filter\",\"documentation\":\"Filters an EGroup by blueprint. n Blueprints can be provided by name or by ID, and in a table if you want to filter on more than one type. Setting filtertype to FILTER_KEEP results in the group only containing entities of the types listed in the blueprint table. Setting filtertype to FILTER_REMOVE will strip those same entities out and leave those that aren't of the types listed.\"},{\"id\":\"EGroup_FilterUnderConstruction\",\"kind\":2,\"label\":\"EGroup_FilterUnderConstruction\",\"documentation\":\"Filters an EGroup by construction status. n Setting filtertype to FILTER_KEEP results in the group only containing those entities that are in the process of being built. Setting filtertype to FILTER_REMOVE will strip those same entities out and leave those that are complete.\"},{\"id\":\"EGroup_ForEach\",\"kind\":2,\"label\":\"EGroup_ForEach\",\"documentation\":\"Call a lua function for each item in a group. Function will recieve (groupid, itemindex, itemid) and should return true to break or false to continue. n function Rule_Test( )<BR/> <TAB/>local DespawnEntity = function( egroupid, itemindex, entityID )<BR/> <TAB/><TAB/>Entity_Despawn( entityID )<BR/> <TAB/>end<BR/><BR/> <TAB/>EGroup_ForEach( EGroup_FromName(\"eg_PlayersHQ\"), DespawnEntity )<BR/> end<BR/> Note: This function iterates over SPAWNED ENTITIES ONLY.\"},{\"id\":\"EGroup_ForEachAllOrAny\",\"kind\":2,\"label\":\"EGroup_ForEachAllOrAny\",\"documentation\":\"Call a lua function for each item in a group. Function will receive (groupid, itemindex, itemid) and should return a bool. n Only use this to TEST conditions on entities. DO NOT use this to perform operations on all entities, since it may not call your function on all entities (due to short circuit evaluation). This is used for checking if ALL or ANY items in a group match a given predicate. (eg. Are all items in a group chaos marines)<BR/> Note: This function iterates over SPAWNED ENTITIES ONLY.\"},{\"id\":\"EGroup_ForEachAllOrAnyEx\",\"kind\":2,\"label\":\"EGroup_ForEachAllOrAnyEx\",\"documentation\":\"Same as EGroup_ForEachAllOrAny except you have a choice to iterate over spawned entities, despawned entities, or both. \"},{\"id\":\"EGroup_ForEachEx\",\"kind\":2,\"label\":\"EGroup_ForEachEx\",\"documentation\":\"Same as EGroup_ForEach except you have a choice to iterate over spawned entities, despawned entities, or both. \"},{\"id\":\"EGroup_FromName\",\"kind\":2,\"label\":\"EGroup_FromName\",\"documentation\":\"Find an entity group with a given name. \"},{\"id\":\"EGroup_GetAvgHealth\",\"kind\":2,\"label\":\"EGroup_GetAvgHealth\",\"documentation\":\"Returns the average health of all units in a entity group. nThis uses the \"proper\" measure of health for panel buildings, so should accurately reflect what the user sees.\"},{\"id\":\"EGroup_GetDeSpawnedEntityAt\",\"kind\":2,\"label\":\"EGroup_GetDeSpawnedEntityAt\",\"documentation\":\"Returns the despawned entity at the given index. n Use EGroup_GetSpawnedEntityAt if you want the spawned items in the group<BR/> Use index 1 to get the first entity in the group.<BR/> It is an error if index > EGroup_GetCountDeSpawned()<BR/>\"},{\"id\":\"EGroup_GetInvulnerable\",\"kind\":2,\"label\":\"EGroup_GetInvulnerable\",\"documentation\":\"Check invulnerablity state for ALL or ANY entity in an entity group. n Set all param to true to check for ALL or set to false to check for ANY.\"},{\"id\":\"EGroup_GetLastAttacker\",\"kind\":2,\"label\":\"EGroup_GetLastAttacker\",\"documentation\":\"Gets the last attacker(s) for all the entities in an EGroup Gets the last attacker for all the squads in an SGroup and stores that in SGroupAttacker \"},{\"id\":\"EGroup_GetName\",\"kind\":2,\"label\":\"EGroup_GetName\",\"documentation\":\"Returns the name of a given entity group. \"},{\"id\":\"EGroup_GetOffsetPosition\",\"kind\":2,\"label\":\"EGroup_GetOffsetPosition\",\"documentation\":\"Returns a position (a certain distance away) relative to an entity's current position/orientation. see LuaConsts.scar for explanation of 'offset' parameter \"},{\"id\":\"EGroup_GetPosition\",\"kind\":2,\"label\":\"EGroup_GetPosition\",\"documentation\":\"Returns the center position of an entity group. \"},{\"id\":\"EGroup_GetRandomSpawnedEntity\",\"kind\":2,\"label\":\"EGroup_GetRandomSpawnedEntity\",\"documentation\":\"Get a random spawned entity from egroup \"},{\"id\":\"EGroup_GetSequence\",\"kind\":2,\"label\":\"EGroup_GetSequence\",\"documentation\":\"Builds a table of EGroupIDs that are named in a sequence. i.e. a name of \"eg_building\" will find groups \"eg_building1\", \"eg_building2\" and so on, up until it looks for a group that isn't there. \"},{\"id\":\"EGroup_GetSpawnedEntityAt\",\"kind\":2,\"label\":\"EGroup_GetSpawnedEntityAt\",\"documentation\":\"Returns the spawned entity at the given index. n Use EGroup_GetDeSpawnedEntityAt if you want the despawned items in the group<BR/> Use index 1 to get the first entity in the group.<BR/> It is an error if index > EGroup_GetCountSpawned()<BR/>\"},{\"id\":\"EGroup_GetSpawnedEntityFilter\",\"kind\":2,\"label\":\"EGroup_GetSpawnedEntityFilter\",\"documentation\":\"Get the first spawned entity from egroup that meets the condition (a function that takes an entity) \"},{\"id\":\"EGroup_GetSpread\",\"kind\":2,\"label\":\"EGroup_GetSpread\",\"documentation\":\"Returns the distance from the centre of the group of the entity that furthest out. \"},{\"id\":\"EGroup_GetSquadsHeld\",\"kind\":2,\"label\":\"EGroup_GetSquadsHeld\",\"documentation\":\"Returns an sgroup containing all squads held by any entities in an egroup \"},{\"id\":\"EGroup_HasUpgrade\",\"kind\":2,\"label\":\"EGroup_HasUpgrade\",\"documentation\":\"Returns whether ANY or ALL entities in an EGroup have the specified upgrade \"},{\"id\":\"EGroup_Hide\",\"kind\":2,\"label\":\"EGroup_Hide\",\"documentation\":\"Hide or show all entities in an EGroup nBool should be true to hide, false to show\"},{\"id\":\"EGroup_InstantCaptureStrategicPoint\",\"kind\":2,\"label\":\"EGroup_InstantCaptureStrategicPoint\",\"documentation\":\"Change the ownership of a Strategic Point \"},{\"id\":\"EGroup_InstantRevertOccupiedBuilding\",\"kind\":2,\"label\":\"EGroup_InstantRevertOccupiedBuilding\",\"documentation\":\"Reverts an occupied building \"},{\"id\":\"EGroup_Intersection\",\"kind\":2,\"label\":\"EGroup_Intersection\",\"documentation\":\"Performs a group intersection. n Only entities that are in both groups will be added to 'group'.<BR/> The contents of 'grouptointersect' will not be changed.<BR/> Example: group = (1,2,3,4,5,6) grouptointersect = (2,4,6,8,10) --> group will now equal (2,4,6)\"},{\"id\":\"EGroup_IsBurning\",\"kind\":2,\"label\":\"EGroup_IsBurning\",\"documentation\":\"Checks if ANY or ALL entities in an egroup are on fire (ignition threshold exceeded) \"},{\"id\":\"EGroup_IsCapturedByPlayer\",\"kind\":2,\"label\":\"EGroup_IsCapturedByPlayer\",\"documentation\":\"Returns true if all or any strategic points in a group have been captured. Use ANY or ALL. nThis function will ignore all entities that cannot be captured and will return false if no entities in the group can be captured.\"},{\"id\":\"EGroup_IsCapturedByTeam\",\"kind\":2,\"label\":\"EGroup_IsCapturedByTeam\",\"documentation\":\"Returns true if all or any strategic points in a group have been captured. Use ANY or ALL. nThis function will ignore all entities that cannot be captured and will return false if no entities in the group can be captured.\"},{\"id\":\"EGroup_IsDoingAttack\",\"kind\":2,\"label\":\"EGroup_IsDoingAttack\",\"documentation\":\"Returns true if ALL or ANY entities are attacking within the time \"},{\"id\":\"EGroup_IsEmpty\",\"kind\":2,\"label\":\"EGroup_IsEmpty\",\"documentation\":\"Returns true if a named entity group contains no spawned or despawned entities \"},{\"id\":\"EGroup_IsHoldingAny\",\"kind\":2,\"label\":\"EGroup_IsHoldingAny\",\"documentation\":\"Returns whether any entity in an EGroup has a hold on anything \"},{\"id\":\"EGroup_IsInCover\",\"kind\":2,\"label\":\"EGroup_IsInCover\",\"documentation\":\"Returns true if ALL or ANY entities are in cover. \"},{\"id\":\"EGroup_IsMoving\",\"kind\":2,\"label\":\"EGroup_IsMoving\",\"documentation\":\"Returns true if ANY or ALL entities in an EGroup are moving. \"},{\"id\":\"EGroup_IsOnScreen\",\"kind\":2,\"label\":\"EGroup_IsOnScreen\",\"documentation\":\"Returns true if ANY or ALL (use those keywords) of the enities in the group are present onscreen. You can pass in a percentage of the screen to check, so 0.8 would be a centered rectangle occupying 80% of the screen. \"},{\"id\":\"EGroup_IsProducingSquads\",\"kind\":2,\"label\":\"EGroup_IsProducingSquads\",\"documentation\":\"Returns true if ALL or ANY entities in a group are currently producing squads nSet all to true to check for ALL or set to false to check for ANY\"},{\"id\":\"EGroup_IsSpawned\",\"kind\":2,\"label\":\"EGroup_IsSpawned\",\"documentation\":\"Checks if ANY or ALL entities in an group are currently spawned or not. \"},{\"id\":\"EGroup_IsUnderAttack\",\"kind\":2,\"label\":\"EGroup_IsUnderAttack\",\"documentation\":\"Returns true if ALL or ANY entities are under attack within the time \"},{\"id\":\"EGroup_IsUnderAttackByPlayer\",\"kind\":2,\"label\":\"EGroup_IsUnderAttackByPlayer\",\"documentation\":\"Check if the entities are attacked by the player \"},{\"id\":\"EGroup_IsUnderAttackFromDirection\",\"kind\":2,\"label\":\"EGroup_IsUnderAttackFromDirection\",\"documentation\":\"Returns true if ALL or ANY entities are under attack from a direction within the time. see LuaConsts.scar for types of directions. you can pass in a table of offsets \"},{\"id\":\"EGroup_IsUsingAbility\",\"kind\":2,\"label\":\"EGroup_IsUsingAbility\",\"documentation\":\"Checks if ANY or ALL squads within an EGroup are using an ability nalso used for emplacements/entities that are built but function through the use of squads. Does not check WHAT ability a squad is using. \"},{\"id\":\"EGroup_Kill\",\"kind\":2,\"label\":\"EGroup_Kill\",\"documentation\":\"Kill all entities in an EGroup \"},{\"id\":\"EGroup_NotifyOnPlayerDemolition\",\"kind\":2,\"label\":\"EGroup_NotifyOnPlayerDemolition\",\"documentation\":\"Calls a function when any entity in an EGroup gets destroyed by the player clicking the \"Detonate me\" button \"},{\"id\":\"EGroup_Remove\",\"kind\":2,\"label\":\"EGroup_Remove\",\"documentation\":\"Removes an entity from a group. \"},{\"id\":\"EGroup_RemoveDemolitions\",\"kind\":2,\"label\":\"EGroup_RemoveDemolitions\",\"documentation\":\"Removes all demolition charges on an egroup \"},{\"id\":\"EGroup_RemoveGroup\",\"kind\":2,\"label\":\"EGroup_RemoveGroup\",\"documentation\":\"Remove from the first SGroup all squads contained in the second SGroup. SGroup2 remains untouched. \"},{\"id\":\"EGroup_RemoveUpgrade\",\"kind\":2,\"label\":\"EGroup_RemoveUpgrade\",\"documentation\":\"Removes upgrade(s) from an egroup \"},{\"id\":\"EGroup_ReSpawn\",\"kind\":2,\"label\":\"EGroup_ReSpawn\",\"documentation\":\"Respawn all despawned entities in a group. \"},{\"id\":\"EGroup_SetAnimatorAction\",\"kind\":2,\"label\":\"EGroup_SetAnimatorAction\",\"documentation\":\"Trigger animation action for an EGroup. Please only use this for simple animations \"},{\"id\":\"EGroup_SetAnimatorEvent\",\"kind\":2,\"label\":\"EGroup_SetAnimatorEvent\",\"documentation\":\"Set animation event for an EGroup. Please only use this for simple animations \"},{\"id\":\"EGroup_SetAnimatorState\",\"kind\":2,\"label\":\"EGroup_SetAnimatorState\",\"documentation\":\"Set animation state of a state machine for an EGroup. Please only use this for simple animations \"},{\"id\":\"EGroup_SetAnimatorVariable\",\"kind\":2,\"label\":\"EGroup_SetAnimatorVariable\",\"documentation\":\"Set animation variable value for an EGroup. Please only use this for simple animations \"},{\"id\":\"EGroup_SetAutoTargetting\",\"kind\":2,\"label\":\"EGroup_SetAutoTargetting\",\"documentation\":\"Sets whether a weapon to auto-target things or not \"},{\"id\":\"EGroup_SetAvgHealth\",\"kind\":2,\"label\":\"EGroup_SetAvgHealth\",\"documentation\":\"Sets the health of each unit in an entity group to a given percent [0.0, 1.0]. \"},{\"id\":\"EGroup_SetCrushable\",\"kind\":2,\"label\":\"EGroup_SetCrushable\",\"documentation\":\"Overrides crushable behavior for an egroup \"},{\"id\":\"EGroup_SetDemolitions\",\"kind\":2,\"label\":\"EGroup_SetDemolitions\",\"documentation\":\"Instantly wires a building for demolitions \"},{\"id\":\"EGroup_SetHealthMinCap\",\"kind\":2,\"label\":\"EGroup_SetHealthMinCap\",\"documentation\":\"Set the minimum health for this entity nThis is usually set to zero, any higher value prevents the entity from having its health reduced below this given value\"},{\"id\":\"EGroup_SetInvulnerable\",\"kind\":2,\"label\":\"EGroup_SetInvulnerable\",\"documentation\":\"Enable/Disable invulnerablity for an entire entity group. Use true and false for simple on/off, or use a number between 0.0 and 1.0 for more precise control on how much damage an entity can take before it takes no more. nThe optional reset_time is used to automatically remove invulnerability after a set time. If invulnerable, both health and critical damage are disabled.\"},{\"id\":\"EGroup_SetPlayerOwner\",\"kind\":2,\"label\":\"EGroup_SetPlayerOwner\",\"documentation\":\"Changes the player owner for all spawned and despawned entities of an EGroup. nStrategic/capturable point does not support setting player owner directly\"},{\"id\":\"EGroup_SetRallyPoint\",\"kind\":2,\"label\":\"EGroup_SetRallyPoint\",\"documentation\":\"Set the rally point for this entity nThis is usually set to zero, any higher value prevents the entity from having its health reduced below this given value\"},{\"id\":\"EGroup_SetRecrewable\",\"kind\":2,\"label\":\"EGroup_SetRecrewable\",\"documentation\":\"Sets all entities in an egroup to be recrewable or not when abandoned \"},{\"id\":\"EGroup_SetSelectable\",\"kind\":2,\"label\":\"EGroup_SetSelectable\",\"documentation\":\"Set player selectable state of entities in the egroup \"},{\"id\":\"EGroup_SetSharedProductionQueue\",\"kind\":2,\"label\":\"EGroup_SetSharedProductionQueue\",\"documentation\":\"Enables shared team production on a building (teammates can build using THEIR resources) \"},{\"id\":\"EGroup_SetStrategicPointNeutral\",\"kind\":2,\"label\":\"EGroup_SetStrategicPointNeutral\",\"documentation\":\"Sets a strategic point to neutral (not owned by any team) \"},{\"id\":\"EGroup_SetWorldOwned\",\"kind\":2,\"label\":\"EGroup_SetWorldOwned\",\"documentation\":\"Makes an egroup neutral \"},{\"id\":\"EGroup_Single\",\"kind\":2,\"label\":\"EGroup_Single\",\"documentation\":\"Creates an entity group containing a single entity n Creates an EGroup containing just one entity, creating the group if it doesn't exist and clearing it if it does. It returns the name of the EGroup.\"},{\"id\":\"SGroup_HasEntityUpgrade\",\"kind\":2,\"label\":\"SGroup_HasEntityUpgrade\",\"documentation\":\"Returns true if ANY or ALL of the squad's entities have the specified upgrade \"},{\"id\":\"Ai:GetEncountersBySGroup\",\"kind\":2,\"label\":\"Ai:GetEncountersBySGroup\",\"documentation\":\"Finds all encounters that contain ANY or ALL squads within the given sgroup. \"},{\"id\":\"Ai:GetEncountersBySquad\",\"kind\":2,\"label\":\"Ai:GetEncountersBySquad\",\"documentation\":\"Finds all encounters that contain ANY or ALL squads within the given sgroup. \"},{\"id\":\"AI_DisableAllEncounters\",\"kind\":2,\"label\":\"AI_DisableAllEncounters\",\"documentation\":\"Disables all encounters \"},{\"id\":\"AI_EnableAllEncounters\",\"kind\":2,\"label\":\"AI_EnableAllEncounters\",\"documentation\":\"Enables all encounters \"},{\"id\":\"AI_GetActiveEncounters\",\"kind\":2,\"label\":\"AI_GetActiveEncounters\",\"documentation\":\"Returns a table with all active (not dead) encounters. \"},{\"id\":\"AI_GetNumEncounters\",\"kind\":2,\"label\":\"AI_GetNumEncounters\",\"documentation\":\"Returns the number of alive encounters currently managed by the AI manager. \"},{\"id\":\"AI_IsMatchingDifficulty\",\"kind\":2,\"label\":\"AI_IsMatchingDifficulty\",\"documentation\":\"Returns True if the current AI_Manager difficulty matches any in a given list. \"},{\"id\":\"AI_OverrideDifficulty\",\"kind\":2,\"label\":\"AI_OverrideDifficulty\",\"documentation\":\"Overrides the current difficulty setting (only for the AI Manager). Pass 'nil' to reset to Game_GetSPDifficulty() value \"},{\"id\":\"AI_RemoveAllEncounters\",\"kind\":2,\"label\":\"AI_RemoveAllEncounters\",\"documentation\":\"Disables all encounters, then clears out the encounter list \"},{\"id\":\"AI_SetDebugLevel\",\"kind\":2,\"label\":\"AI_SetDebugLevel\",\"documentation\":\"Set the level of debug information shown but Ai:Print(). \"},{\"id\":\"AI_SetStaggeredSpawnDelay\",\"kind\":2,\"label\":\"AI_SetStaggeredSpawnDelay\",\"documentation\":\"Sets the delay to use when using staggeredSpawn for encounters. The new interval will take effect immediately. \"},{\"id\":\"AI_ToggleDebugData\",\"kind\":2,\"label\":\"AI_ToggleDebugData\",\"documentation\":\"Toggle encounter/goal debug information on screen. \"},{\"id\":\"AI_ToggleDebugPrint\",\"kind\":2,\"label\":\"AI_ToggleDebugPrint\",\"documentation\":\"Toggle printing console debug information for encounters. \"},{\"id\":\"AIAbilityGoal_AdjustDefaultGoalData\",\"kind\":2,\"label\":\"AIAbilityGoal_AdjustDefaultGoalData\",\"documentation\":\"Adjust default goal data for ability goals. Sets the default GoalData to the current defaults plus additionalDefaultGoalData; any values specified are used for unspecified encounter ability goal values. \"},{\"id\":\"AIAbilityGoal_SetDefaultGoalData\",\"kind\":2,\"label\":\"AIAbilityGoal_SetDefaultGoalData\",\"documentation\":\"Set default goal data for ability goals. defaultGoalData is cloned; any values specified are used for unspecified encounter ability goal values. \"},{\"id\":\"AIAbilityGoal_SetModifyGoalData\",\"kind\":2,\"label\":\"AIAbilityGoal_SetModifyGoalData\",\"documentation\":\"Set modify goal data for ability goals. modifyGoalData is cloned; values specified via keyname_Multiplier are used for the numeric keyname encounter ability goal value. \"},{\"id\":\"AIAbilityGoal_SetOverrideGoalData\",\"kind\":2,\"label\":\"AIAbilityGoal_SetOverrideGoalData\",\"documentation\":\"Set override goal data for ability goals. overrideGoalData is cloned; any values specified are used for encounter ability goal values. \"},{\"id\":\"AIAttackGoal_AdjustDefaultGoalData\",\"kind\":2,\"label\":\"AIAttackGoal_AdjustDefaultGoalData\",\"documentation\":\"Adjust default goal data for attack goals. Sets the default GoalData to the current defaults plus additionalDefaultGoalData; any values specified are used for unspecified encounter attack goal values. \"},{\"id\":\"AIAttackGoal_SetDefaultGoalData\",\"kind\":2,\"label\":\"AIAttackGoal_SetDefaultGoalData\",\"documentation\":\"Set default goal data for attack goals. defaultGoalData is cloned; any values specified are used for unspecified encounter attack goal values. \"},{\"id\":\"AIAttackGoal_SetModifyGoalData\",\"kind\":2,\"label\":\"AIAttackGoal_SetModifyGoalData\",\"documentation\":\"Set modify goal data for attack goals. modifyGoalData is cloned; values specified via keyname_Multiplier are used for the numeric keyname encounter attack goal value. \"},{\"id\":\"AIAttackGoal_SetOverrideGoalData\",\"kind\":2,\"label\":\"AIAttackGoal_SetOverrideGoalData\",\"documentation\":\"Set override goal data for attack goals. overrideGoalData is cloned; any values specified are used for encounter attack goal values. \"},{\"id\":\"AIBaseGoal_AdjustDefaultGoalData\",\"kind\":2,\"label\":\"AIBaseGoal_AdjustDefaultGoalData\",\"documentation\":\"Adjust default goal data. Sets the default GoalData to the current defaults plus additionalDefaultGoalData; any values specified are used for unspecified encounter goal values. \"},{\"id\":\"AIBaseGoal_SetDefaultGoalData\",\"kind\":2,\"label\":\"AIBaseGoal_SetDefaultGoalData\",\"documentation\":\"Set default goal data. defaultGoalData is cloned; any values specified are used for unspecified encounter goal values. \"},{\"id\":\"AIBaseGoal_SetModifyGoalData\",\"kind\":2,\"label\":\"AIBaseGoal_SetModifyGoalData\",\"documentation\":\"Set modify goal data. modifyGoalData is cloned; values specified via keyname_Multiplier are used for the numeric keyname encounter goal value. \"},{\"id\":\"AIBaseGoal_SetOverrideGoalData\",\"kind\":2,\"label\":\"AIBaseGoal_SetOverrideGoalData\",\"documentation\":\"Set override goal data. overrideGoalData is cloned; any values specified are used for encounter goal values. \"},{\"id\":\"AIDefendGoal_AdjustDefaultGoalData\",\"kind\":2,\"label\":\"AIDefendGoal_AdjustDefaultGoalData\",\"documentation\":\"Adjust default goal data for defend goals. Sets the default GoalData to the current defaults plus additionalDefaultGoalData; any values specified are used for unspecified encounter defend goal values. \"},{\"id\":\"AIDefendGoal_SetDefaultGoalData\",\"kind\":2,\"label\":\"AIDefendGoal_SetDefaultGoalData\",\"documentation\":\"Set default goal data for defend goals. defaultGoalData is cloned; any values specified are used for unspecified encounter defend goal values. \"},{\"id\":\"AIDefendGoal_SetModifyGoalData\",\"kind\":2,\"label\":\"AIDefendGoal_SetModifyGoalData\",\"documentation\":\"Set modify goal data for defend goals. modifyGoalData is cloned; values specified via keyname_Multiply are used for the numeric keyname encounter defend goal value. \"},{\"id\":\"AIDefendGoal_SetOverrideGoalData\",\"kind\":2,\"label\":\"AIDefendGoal_SetOverrideGoalData\",\"documentation\":\"Set override goal data for defend goals. overrideGoalData is cloned; any values specified are used for encounter defend goal values. \"},{\"id\":\"AIMoveGoal_AdjustDefaultGoalData\",\"kind\":2,\"label\":\"AIMoveGoal_AdjustDefaultGoalData\",\"documentation\":\"Adjust default goal data for move goals. Sets the default GoalData to the current defaults plus additionalDefaultGoalData; any values specified are used for unspecified encounter move goal values. \"},{\"id\":\"AIMoveGoal_SetDefaultGoalData\",\"kind\":2,\"label\":\"AIMoveGoal_SetDefaultGoalData\",\"documentation\":\"Set default goal data for move goals. defaultGoalData is cloned; any values specified are used for unspecified encounter move goal values. \"},{\"id\":\"AIMoveGoal_SetModifyGoalData\",\"kind\":2,\"label\":\"AIMoveGoal_SetModifyGoalData\",\"documentation\":\"Set modify goal data for move goals. modifyGoalData is cloned; values specified via keyname_Multiply are used for the numeric keyname encounter move goal value. \"},{\"id\":\"AIMoveGoal_SetOverrideGoalData\",\"kind\":2,\"label\":\"AIMoveGoal_SetOverrideGoalData\",\"documentation\":\"Set override goal data for move goals. overrideGoalData is cloned; any values specified are used for encounter move goal values. \"},{\"id\":\"Encounter:AddSgroup\",\"kind\":2,\"label\":\"Encounter:AddSgroup\",\"documentation\":\"Adds an sgroup to an encounter \"},{\"id\":\"Encounter:ClearGoal\",\"kind\":2,\"label\":\"Encounter:ClearGoal\",\"documentation\":\"Clears the current goal. \"},{\"id\":\"Encounter:ConvertSgroup\",\"kind\":2,\"label\":\"Encounter:ConvertSgroup\",\"documentation\":\"Create a new encounter from an SGroup, with default encounter data nEncounter player is derived from sgroup; all squads in sgroup must be owned by same player.\"},{\"id\":\"Encounter:Create\",\"kind\":2,\"label\":\"Encounter:Create\",\"documentation\":\"Create a new encounter from encounter data. If spawnNow is true, spawns specified units immediately. nSee: http://relicwiki/display/REL/Ai+Encounters\"},{\"id\":\"Encounter:CreateAbility\",\"kind\":2,\"label\":\"Encounter:CreateAbility\",\"documentation\":\"Create a new encounter with a generic Ability goal. \"},{\"id\":\"Encounter:CreateAttack\",\"kind\":2,\"label\":\"Encounter:CreateAttack\",\"documentation\":\"Create a new encounter with a generic Attack goal. \"},{\"id\":\"Encounter:CreateBasic\",\"kind\":2,\"label\":\"Encounter:CreateBasic\",\"documentation\":\"Create a new basic encounter. \"},{\"id\":\"Encounter:CreateDefend\",\"kind\":2,\"label\":\"Encounter:CreateDefend\",\"documentation\":\"Create a new encounter with a generic Defend goal. \"},{\"id\":\"Encounter:CreateMove\",\"kind\":2,\"label\":\"Encounter:CreateMove\",\"documentation\":\"Create a new encounter with a generic Move goal. \"},{\"id\":\"Encounter:CreatePatrol\",\"kind\":2,\"label\":\"Encounter:CreatePatrol\",\"documentation\":\"Create a new encounter with a generic Patrol goal. npathLoop can be: LOOP_NONE, LOOP_NORMAL, LOOP_TOGGLE_DIRECTION\"},{\"id\":\"Encounter:Disable\",\"kind\":2,\"label\":\"Encounter:Disable\",\"documentation\":\"Stops running the encounter and clears the current goal. \"},{\"id\":\"Encounter:Enable\",\"kind\":2,\"label\":\"Encounter:Enable\",\"documentation\":\"Starts encounter running (encounters are enabled by default) if it was disabled previously. \"},{\"id\":\"Encounter:GetGoalData\",\"kind\":2,\"label\":\"Encounter:GetGoalData\",\"documentation\":\"Gets clone of current goal data. May be nil. \"},{\"id\":\"Encounter:GetSgroup\",\"kind\":2,\"label\":\"Encounter:GetSgroup\",\"documentation\":\"Gets the encounter's sgroup. Caution: sgroup may be empty \"},{\"id\":\"Encounter:RemoveOnDeath\",\"kind\":2,\"label\":\"Encounter:RemoveOnDeath\",\"documentation\":\"Clears the encounter's onDeath callback. If includeUnits is set to true, it clears onDeath callbacks for units as well. \"},{\"id\":\"Encounter:RestartGoal\",\"kind\":2,\"label\":\"Encounter:RestartGoal\",\"documentation\":\"If encounter has a goal, but no currently running objective, restarts the goal. nReturns true if goal was restarted, false otherwise.\"},{\"id\":\"Encounter:SetGoal\",\"kind\":2,\"label\":\"Encounter:SetGoal\",\"documentation\":\"Creates encounter goal from goal data; goals determine unit objectives and behaviours. nSee: http://relicwiki/display/REL/Ai+Goal\"},{\"id\":\"Encounter:SetGoalOnSuccess\",\"kind\":2,\"label\":\"Encounter:SetGoalOnSuccess\",\"documentation\":\"Set the goal's OnSuccess callback. \"},{\"id\":\"Encounter:SetOnDeath\",\"kind\":2,\"label\":\"Encounter:SetOnDeath\",\"documentation\":\"Sets a new onDeath callback for the encounter \"},{\"id\":\"Encounter:Spawn\",\"kind\":2,\"label\":\"Encounter:Spawn\",\"documentation\":\"Spawns the units within an. Does nothing if the encounter has already been spawned. \"},{\"id\":\"Encounter:UpdateGoal\",\"kind\":2,\"label\":\"Encounter:UpdateGoal\",\"documentation\":\"Sets the goal data for the encounter. If encounter has a goal with a running objective, updates the goal. nUse GetGoalData() to get \"},{\"id\":\"MergeClone\",\"kind\":2,\"label\":\"MergeClone\",\"documentation\":\"Merge clones two table (recursively) into a single table combining into a new table allowing for unadulterated use of the data \"},{\"id\":\"Entity_ApplyCritical\",\"kind\":2,\"label\":\"Entity_ApplyCritical\",\"documentation\":\"Trigger a critical hit on an entity \"},{\"id\":\"Entity_BuildingPanelInfo\",\"kind\":2,\"label\":\"Entity_BuildingPanelInfo\",\"documentation\":\"Displays info about the panel that is intersected by the passed in ray \"},{\"id\":\"Entity_CanAttackNow\",\"kind\":2,\"label\":\"Entity_CanAttackNow\",\"documentation\":\"Returns whether an entity can attack a target without moving or turning. \"},{\"id\":\"Entity_CancelProductionQueueItem\",\"kind\":2,\"label\":\"Entity_CancelProductionQueueItem\",\"documentation\":\"Cancels an item in a production queue. Index 0 is the currently producing item. \"},{\"id\":\"Entity_CanLoadSquad\",\"kind\":2,\"label\":\"Entity_CanLoadSquad\",\"documentation\":\"Check if the entity can load squad or not \"},{\"id\":\"Entity_CanLoadSquadAndAttackCurrentTarget\",\"kind\":2,\"label\":\"Entity_CanLoadSquadAndAttackCurrentTarget\",\"documentation\":\"Check if the entity can load squad and shoot its target after loading (This function should only be called by AI) \"},{\"id\":\"Entity_CanSeeEntity\",\"kind\":2,\"label\":\"Entity_CanSeeEntity\",\"documentation\":\"Returns true if the distance between a target entity and the source entity is less than it entity's sight distance. There is no LOS or FOW check. nTry Player_CanSeeEntity() if you care about LOS or FOW.\"},{\"id\":\"Entity_CanSeeSquad\",\"kind\":2,\"label\":\"Entity_CanSeeSquad\",\"documentation\":\"Returns true if the distance between a target squad and the source entity is less than it entity's sight distance. There is no LOS or FOW check. nTry Player_CanSeeSquad() if you care about LOS or FOW.\"},{\"id\":\"Entity_ClearPostureSuggestion\",\"kind\":2,\"label\":\"Entity_ClearPostureSuggestion\",\"documentation\":\"Clears any previous posture suggestions made to an entity \"},{\"id\":\"Entity_ClearTagDebug\",\"kind\":2,\"label\":\"Entity_ClearTagDebug\",\"documentation\":\"Clears the tagged entity used for debugging \"},{\"id\":\"Entity_CompleteUpgrade\",\"kind\":2,\"label\":\"Entity_CompleteUpgrade\",\"documentation\":\"Instantly adds an upgrade to a given entity \"},{\"id\":\"Entity_Create\",\"kind\":2,\"label\":\"Entity_Create\",\"documentation\":\"Creates an entity at a given position and assigns it to a given player. 'blueprint' is a string value containing the name of the entity blueprint. This function does not spawn the entity so you will need to call Entity_Spawn to see this entity \"},{\"id\":\"Entity_CreateENV\",\"kind\":2,\"label\":\"Entity_CreateENV\",\"documentation\":\"Creates an entity at a given position and assigns it to a given player. 'blueprint' is a string value containing the name of the entity blueprint. This function spawns the entity so there is no need to call Entity_Spawn \"},{\"id\":\"Entity_DeSpawn\",\"kind\":2,\"label\":\"Entity_DeSpawn\",\"documentation\":\"DeSpawn the entity at its current position \"},{\"id\":\"Entity_Destroy\",\"kind\":2,\"label\":\"Entity_Destroy\",\"documentation\":\"Remove an entity from the world and destroy it. \"},{\"id\":\"Entity_DisableBuildingDeath\",\"kind\":2,\"label\":\"Entity_DisableBuildingDeath\",\"documentation\":\"Disables the death of the given entity building, only works for panel based destructible buldings n\"},{\"id\":\"Entity_DoBuildingDamageRay\",\"kind\":2,\"label\":\"Entity_DoBuildingDamageRay\",\"documentation\":\"Damages this entity but only if its a destructible building ndmgType of 0 is damage accessory, 1 is damage panel, 2 is destroy panel and 3 is destroy radius\"},{\"id\":\"Entity_EnableAttention\",\"kind\":2,\"label\":\"Entity_EnableAttention\",\"documentation\":\"Sets whether an entity pays attention to its surroundings \"},{\"id\":\"Entity_EnableProductionQueue\",\"kind\":2,\"label\":\"Entity_EnableProductionQueue\",\"documentation\":\"Sets whether an entity can produce anything (including upgrades) \"},{\"id\":\"Entity_EnableStrategicPoint\",\"kind\":2,\"label\":\"Entity_EnableStrategicPoint\",\"documentation\":\"Sets whether an strategic point is active \"},{\"id\":\"Entity_ForceConstruct\",\"kind\":2,\"label\":\"Entity_ForceConstruct\",\"documentation\":\"Force constructs this entity but only if its a building \"},{\"id\":\"Entity_FromWorldID\",\"kind\":2,\"label\":\"Entity_FromWorldID\",\"documentation\":\"Get an entity from a mission editor ID. \"},{\"id\":\"Entity_GetActiveCommand\",\"kind\":2,\"label\":\"Entity_GetActiveCommand\",\"documentation\":\"Returns the active entity command. \"},{\"id\":\"Entity_GetBlueprint\",\"kind\":2,\"label\":\"Entity_GetBlueprint\",\"documentation\":\"Returns the entity's blueprint \"},{\"id\":\"Entity_GetBuildingProgress\",\"kind\":2,\"label\":\"Entity_GetBuildingProgress\",\"documentation\":\"Returns the construction progress (with range [0.0, 1.0] for a given entity. Returns 0.0 if the entity is not a building. \"},{\"id\":\"Entity_GetCoverValue\",\"kind\":2,\"label\":\"Entity_GetCoverValue\",\"documentation\":\"Get cover safety value from the where the entity is standing. The safety value is number from -.5 to .5. nHigher value means better cover. If the entity doesn't have cover_ext, value of 0 would be returned\"},{\"id\":\"Entity_GetGameID\",\"kind\":2,\"label\":\"Entity_GetGameID\",\"documentation\":\"Returns the entities unique id in the world \"},{\"id\":\"Entity_GetHeading\",\"kind\":2,\"label\":\"Entity_GetHeading\",\"documentation\":\"Returns the heading of the entity. The heading is currently a lua table with three entries (x, y, z) \"},{\"id\":\"Entity_GetHealth\",\"kind\":2,\"label\":\"Entity_GetHealth\",\"documentation\":\"Returns the health of an entity. nHealth will be zero for entities with no health extension.\"},{\"id\":\"Entity_GetHealthMax\",\"kind\":2,\"label\":\"Entity_GetHealthMax\",\"documentation\":\"Returns the max health of an entity. nMax health will be zero for entities with no health extension.\"},{\"id\":\"Entity_GetHealthPercentage\",\"kind\":2,\"label\":\"Entity_GetHealthPercentage\",\"documentation\":\"Returns the percentage health, taking into account destructible buildings nHealth will be zero for entities with no health extension nor building destruction\"},{\"id\":\"Entity_GetInvulnerable\",\"kind\":2,\"label\":\"Entity_GetInvulnerable\",\"documentation\":\"Check if the entity is invulnerable or not \"},{\"id\":\"Entity_GetInvulnerableMinCap\",\"kind\":2,\"label\":\"Entity_GetInvulnerableMinCap\",\"documentation\":\"Returns the invulnerable point in terms of percentage nFor buildings, retrieve the percentage value of healthy below which no more panels could be destroyed\"},{\"id\":\"Entity_GetInvulnerableToCritical\",\"kind\":2,\"label\":\"Entity_GetInvulnerableToCritical\",\"documentation\":\"get if an entity is invulnerable to critical effects \"},{\"id\":\"Entity_GetLastAttacker\",\"kind\":2,\"label\":\"Entity_GetLastAttacker\",\"documentation\":\"Find the last squad attacker on this entity. If found, the squad is added to the sgroup \"},{\"id\":\"Entity_GetLastAttackers\",\"kind\":2,\"label\":\"Entity_GetLastAttackers\",\"documentation\":\"Find the squad attackers on this entity from the last seconds specified. If found, the squads are added to the sgroup. Building attackers are ignored \"},{\"id\":\"Entity_GetMaxCaptureCrewSize\",\"kind\":2,\"label\":\"Entity_GetMaxCaptureCrewSize\",\"documentation\":\"Gets the maximum capture crew size from a recrewable entity \"},{\"id\":\"Entity_GetOffsetPosition\",\"kind\":2,\"label\":\"Entity_GetOffsetPosition\",\"documentation\":\"Returns a position relative to an entity's current position and orientation. see LuaConsts.scar for explanation of 'offset' parameter. \"},{\"id\":\"Entity_GetPlayerOwner\",\"kind\":2,\"label\":\"Entity_GetPlayerOwner\",\"documentation\":\"Returns the Player owner of the given entity. Entity MUST NOT be owned by the world. nUse World_OwnsEntity to make sure entity is not owned by the world before calling this function\"},{\"id\":\"Entity_GetPosition\",\"kind\":2,\"label\":\"Entity_GetPosition\",\"documentation\":\"Returns the position of the entity. The position is currently a lua table with three entries (x, y, z) \"},{\"id\":\"Entity_GetProductionQueueItem\",\"kind\":2,\"label\":\"Entity_GetProductionQueueItem\",\"documentation\":\"Returns the blueprint for a production queue item with index. \"},{\"id\":\"Entity_GetProductionQueueItemType\",\"kind\":2,\"label\":\"Entity_GetProductionQueueItemType\",\"documentation\":\"Returns the production type (PITEM_Upgrade, PITEM_Spawn, PITEM_SquadUpgrade, PITEM_SquadReinforce, PITEM_PlayerUpgrade) for a production queue item with index. \"},{\"id\":\"Entity_GetProductionQueueSize\",\"kind\":2,\"label\":\"Entity_GetProductionQueueSize\",\"documentation\":\"Returns the number of items in the entities production queue. nIt is an error to call this function on an entity that does not have a production queue.<BR/> Use Entity_HasProductionQueue to check that the entity has a queue.\"},{\"id\":\"Entity_GetResourceType\",\"kind\":2,\"label\":\"Entity_GetResourceType\",\"documentation\":\"Returns the resource type of this point nreturns RT_Fuel, RT_Munition, RT_Action, RT_Command, RT_Popcap, RT_Invalid. NOTE: only works on player owned points\"},{\"id\":\"Entity_GetSightInnerHeight\",\"kind\":2,\"label\":\"Entity_GetSightInnerHeight\",\"documentation\":\"Returns the inner sight radius for this entity nRadius will be zero for entities without a sight extension\"},{\"id\":\"Entity_GetSightInnerRadius\",\"kind\":2,\"label\":\"Entity_GetSightInnerRadius\",\"documentation\":\"Returns the inner sight radius for this entity nRadius will be zero for entities without a sight extension\"},{\"id\":\"Entity_GetSightOuterHeight\",\"kind\":2,\"label\":\"Entity_GetSightOuterHeight\",\"documentation\":\"Returns the outer sight radius for this entity nRadius will be zero for entities without a sight extension\"},{\"id\":\"Entity_GetSightOuterRadius\",\"kind\":2,\"label\":\"Entity_GetSightOuterRadius\",\"documentation\":\"Returns the outer sight radius for this entity nRadius will be zero for entities without a sight extension\"},{\"id\":\"Entity_GetSquad\",\"kind\":2,\"label\":\"Entity_GetSquad\",\"documentation\":\"Returns the Squad for the passed Entity. (May be nullptr) \"},{\"id\":\"Entity_GetSquadsHeld\",\"kind\":2,\"label\":\"Entity_GetSquadsHeld\",\"documentation\":\"Adds squads held by an entity to an SGroup \"},{\"id\":\"Entity_GetTotalPanelCount\",\"kind\":2,\"label\":\"Entity_GetTotalPanelCount\",\"documentation\":\"Gets the total number of panels in a building (returns 0 for anything but panel based destructible buldings) \"},{\"id\":\"Entity_GetUndestroyedPanelCount\",\"kind\":2,\"label\":\"Entity_GetUndestroyedPanelCount\",\"documentation\":\"Gets the current number of undestroyed panels in a building (returns 0 for anything but panel based destructible buldings) \"},{\"id\":\"Entity_GetWeaponBlueprint\",\"kind\":2,\"label\":\"Entity_GetWeaponBlueprint\",\"documentation\":\"Returns a weapon hardpoint ( 0 indexed ) \"},{\"id\":\"Entity_GetWeaponHardpointCount\",\"kind\":2,\"label\":\"Entity_GetWeaponHardpointCount\",\"documentation\":\"Returns how many hardpoints an entity has \"},{\"id\":\"Entity_HasAnyCritical\",\"kind\":2,\"label\":\"Entity_HasAnyCritical\",\"documentation\":\"Return true if the entity has any critical applied to it \"},{\"id\":\"Entity_HasCritical\",\"kind\":2,\"label\":\"Entity_HasCritical\",\"documentation\":\"Return true if the entity has the given criticalID applied to it \"},{\"id\":\"Entity_HasProductionQueue\",\"kind\":2,\"label\":\"Entity_HasProductionQueue\",\"documentation\":\"Returns true if an entity has a production queue. \"},{\"id\":\"Entity_HasUpgrade\",\"kind\":2,\"label\":\"Entity_HasUpgrade\",\"documentation\":\"Return true if the entity has purchased the specified upgrade. \"},{\"id\":\"Entity_InstantCaptureStrategicPoint\",\"kind\":2,\"label\":\"Entity_InstantCaptureStrategicPoint\",\"documentation\":\"Strategic point will be captured instantly by the team of the supplied player \"},{\"id\":\"Entity_InstantRevertOccupiedBuilding\",\"kind\":2,\"label\":\"Entity_InstantRevertOccupiedBuilding\",\"documentation\":\"Reverts an occupied building \"},{\"id\":\"Entity_IsAlive\",\"kind\":2,\"label\":\"Entity_IsAlive\",\"documentation\":\"Returns true if entity is still alive \"},{\"id\":\"Entity_IsAttacking\",\"kind\":2,\"label\":\"Entity_IsAttacking\",\"documentation\":\"Returns true if the entity is attacking within the time nTime is in seconds\"},{\"id\":\"Entity_IsBuilding\",\"kind\":2,\"label\":\"Entity_IsBuilding\",\"documentation\":\"Returns true if the given entity is a building \"},{\"id\":\"Entity_IsBurning\",\"kind\":2,\"label\":\"Entity_IsBurning\",\"documentation\":\"Returns true if the given entity is burning (buildings on fire or non-buildings with burn_exts) \"},{\"id\":\"Entity_IsCamouflaged\",\"kind\":2,\"label\":\"Entity_IsCamouflaged\",\"documentation\":\"Returns whether the entity is camouflaged. \"},{\"id\":\"Entity_IsCapturableBuilding\",\"kind\":2,\"label\":\"Entity_IsCapturableBuilding\",\"documentation\":\"Returns true if the entity is a capturable building \"},{\"id\":\"Entity_IsCasualty\",\"kind\":2,\"label\":\"Entity_IsCasualty\",\"documentation\":\"Returns true if entity is a casualty else false \"},{\"id\":\"Entity_IsCuttable\",\"kind\":2,\"label\":\"Entity_IsCuttable\",\"documentation\":\"Returns whether this entity is cuttable \"},{\"id\":\"Entity_IsDemolitionReady\",\"kind\":2,\"label\":\"Entity_IsDemolitionReady\",\"documentation\":\"Returns whether this entity's demolition charges are ready to be detonated \"},{\"id\":\"Entity_IsEBPBuilding\",\"kind\":2,\"label\":\"Entity_IsEBPBuilding\",\"documentation\":\"Returns true if the given blueprint is a building \"},{\"id\":\"Entity_IsEBPObjCover\",\"kind\":2,\"label\":\"Entity_IsEBPObjCover\",\"documentation\":\"Returns true if the given blueprint is objcover \"},{\"id\":\"Entity_IsHardpointActive\",\"kind\":2,\"label\":\"Entity_IsHardpointActive\",\"documentation\":\"Returns whether a hardpoint is active ( 0 indexed ) \"},{\"id\":\"Entity_IsHoldingAny\",\"kind\":2,\"label\":\"Entity_IsHoldingAny\",\"documentation\":\"Check if the entity has a hold on anything \"},{\"id\":\"Entity_IsInCover\",\"kind\":2,\"label\":\"Entity_IsInCover\",\"documentation\":\"Returns true if entity is in cover. \"},{\"id\":\"Entity_IsMoving\",\"kind\":2,\"label\":\"Entity_IsMoving\",\"documentation\":\"Returns whether an entity is moving. \"},{\"id\":\"Entity_IsOfType\",\"kind\":2,\"label\":\"Entity_IsOfType\",\"documentation\":\"Determines if this entity is of the given type. Types are defined in type_ext/unit_type_list \"},{\"id\":\"Entity_IsPartOfSquad\",\"kind\":2,\"label\":\"Entity_IsPartOfSquad\",\"documentation\":\"Returns true if the entity is part of a squad \"},{\"id\":\"Entity_IsPlane\",\"kind\":2,\"label\":\"Entity_IsPlane\",\"documentation\":\"Returns whether an entity is a plane (has a flight extension) \"},{\"id\":\"Entity_IsSlotItem\",\"kind\":2,\"label\":\"Entity_IsSlotItem\",\"documentation\":\"Return true if the entity is a slot item \"},{\"id\":\"Entity_IsSoldier\",\"kind\":2,\"label\":\"Entity_IsSoldier\",\"documentation\":\"Returns whether an entity is a soldier \"},{\"id\":\"Entity_IsSpawned\",\"kind\":2,\"label\":\"Entity_IsSpawned\",\"documentation\":\"if entity is spawned return true \"},{\"id\":\"Entity_IsStartingPosition\",\"kind\":2,\"label\":\"Entity_IsStartingPosition\",\"documentation\":\"Returns true if the entity is a starting position \"},{\"id\":\"Entity_IsStrategicPoint\",\"kind\":2,\"label\":\"Entity_IsStrategicPoint\",\"documentation\":\"Returns true if the entity is a strategic point. \"},{\"id\":\"Entity_IsStrategicPointCapturedBy\",\"kind\":2,\"label\":\"Entity_IsStrategicPointCapturedBy\",\"documentation\":\"Returns true if strategic point is captured by the team of the player provided. \"},{\"id\":\"Entity_IsSyncWeapon\",\"kind\":2,\"label\":\"Entity_IsSyncWeapon\",\"documentation\":\"Return true if the entity is a team weapon \"},{\"id\":\"Entity_IsUnderAttack\",\"kind\":2,\"label\":\"Entity_IsUnderAttack\",\"documentation\":\"Returns true if the entity is under attack. \"},{\"id\":\"Entity_IsUnderAttackByPlayer\",\"kind\":2,\"label\":\"Entity_IsUnderAttackByPlayer\",\"documentation\":\"Returns true if the entity is under attack by a certain player \"},{\"id\":\"Entity_IsUnderAttackFromDirection\",\"kind\":2,\"label\":\"Entity_IsUnderAttackFromDirection\",\"documentation\":\"Returns true if the entity was under attack from a certain direction (8 offset types, see LuaConsts.scar) \"},{\"id\":\"Entity_IsValid\",\"kind\":2,\"label\":\"Entity_IsValid\",\"documentation\":\"Check if an entity with the given ID can be found in the world \"},{\"id\":\"Entity_IsVaultable\",\"kind\":2,\"label\":\"Entity_IsVaultable\",\"documentation\":\"Returns whether an entity can be vaulted \"},{\"id\":\"Entity_IsVehicle\",\"kind\":2,\"label\":\"Entity_IsVehicle\",\"documentation\":\"Returns whether an entity is a vehicle \"},{\"id\":\"Entity_IsVictoryPoint\",\"kind\":2,\"label\":\"Entity_IsVictoryPoint\",\"documentation\":\"Returns true if entityID is a victory point \"},{\"id\":\"Entity_Kill\",\"kind\":2,\"label\":\"Entity_Kill\",\"documentation\":\"Kill the entity. Sets health to 0, and triggers death effects. \"},{\"id\":\"Entity_NotifyOnPlayerDemolition\",\"kind\":2,\"label\":\"Entity_NotifyOnPlayerDemolition\",\"documentation\":\"Calls a function when an entity gets destroyed by the player clicking the \"Detonate me\" button next to an entity. \"},{\"id\":\"Entity_RemoveBoobyTraps\",\"kind\":2,\"label\":\"Entity_RemoveBoobyTraps\",\"documentation\":\"Removes all booby-traps on this entity \"},{\"id\":\"Entity_RemoveCritical\",\"kind\":2,\"label\":\"Entity_RemoveCritical\",\"documentation\":\"Remove a critical from a given entity \"},{\"id\":\"Entity_RemoveDemolitions\",\"kind\":2,\"label\":\"Entity_RemoveDemolitions\",\"documentation\":\"Removes all demolition charges on an entity \"},{\"id\":\"Entity_RemoveUpgrade\",\"kind\":2,\"label\":\"Entity_RemoveUpgrade\",\"documentation\":\"Removes an upgrade from an entity \"},{\"id\":\"Entity_SetAnimatorAction\",\"kind\":2,\"label\":\"Entity_SetAnimatorAction\",\"documentation\":\"Trigger animation action for an entity. Please only use this for simple animations \"},{\"id\":\"Entity_SetAnimatorActionParameter\",\"kind\":2,\"label\":\"Entity_SetAnimatorActionParameter\",\"documentation\":\"Set animation action parameter for an entity. Please only use this for simple animations \"},{\"id\":\"Entity_SetAnimatorEvent\",\"kind\":2,\"label\":\"Entity_SetAnimatorEvent\",\"documentation\":\"Set animation event for an entity. Please only use this for simple animations \"},{\"id\":\"Entity_SetAnimatorState\",\"kind\":2,\"label\":\"Entity_SetAnimatorState\",\"documentation\":\"Set animation state of a state machine for an entity. Please only use this for simple animations \"},{\"id\":\"Entity_SetAnimatorVariable\",\"kind\":2,\"label\":\"Entity_SetAnimatorVariable\",\"documentation\":\"Set animation variable value for an entity. Please only use this for simple animations \"},{\"id\":\"Entity_SetBuildingVisualFireState\",\"kind\":2,\"label\":\"Entity_SetBuildingVisualFireState\",\"documentation\":\"Set the visual fire state of a building (doesn't actually set the building on fire) \"},{\"id\":\"Entity_SetCrushable\",\"kind\":2,\"label\":\"Entity_SetCrushable\",\"documentation\":\"Overrides crushable behavior for an entity \"},{\"id\":\"Entity_SetCrushMode\",\"kind\":2,\"label\":\"Entity_SetCrushMode\",\"documentation\":\"Changes the crush mode of a given entity. Entity must have a crush extension. \"},{\"id\":\"Entity_SetDemolitions\",\"kind\":2,\"label\":\"Entity_SetDemolitions\",\"documentation\":\"Fully wires this entity for demolitions, if it's set up to be demolishable. 'player' is the one that owns the demolitions and can detonate them. \"},{\"id\":\"Entity_SetEnableCasualty\",\"kind\":2,\"label\":\"Entity_SetEnableCasualty\",\"documentation\":\"\"},{\"id\":\"Entity_SetHeading\",\"kind\":2,\"label\":\"Entity_SetHeading\",\"documentation\":\"Sets the heading of the entity. The position is currently a lua table with three entries (x, y, z) \"},{\"id\":\"Entity_SetHealth\",\"kind\":2,\"label\":\"Entity_SetHealth\",\"documentation\":\"Set the health of an entity. healthPercent must be in the range [0.0, 1.0]. \"},{\"id\":\"Entity_SetInvulnerable\",\"kind\":2,\"label\":\"Entity_SetInvulnerable\",\"documentation\":\"Set invulnerability on the entity. Reset time is in seconds. If it it set, the invulnerability will expire after this time. \"},{\"id\":\"Entity_SetInvulnerableMinCap\",\"kind\":2,\"label\":\"Entity_SetInvulnerableMinCap\",\"documentation\":\"Make an entity invulnerable to physical damage when health is below the minimum health percentage nresetTime is the time in seconds that vulnerability will be restored.; zero time for reset time means the buff will last forever\"},{\"id\":\"Entity_SetInvulnerableToCritical\",\"kind\":2,\"label\":\"Entity_SetInvulnerableToCritical\",\"documentation\":\"set an entity invulnerable to critical effects. Invulnerable to critical also means that kills a entity will not have effect \"},{\"id\":\"Entity_SetOnFire\",\"kind\":2,\"label\":\"Entity_SetOnFire\",\"documentation\":\"Sets an object on fire (also works on buildings) \"},{\"id\":\"Entity_SetPlayerOwner\",\"kind\":2,\"label\":\"Entity_SetPlayerOwner\",\"documentation\":\"Changes the owner of the given squad. nThis function doesn't work with strategic/capturable point\"},{\"id\":\"Entity_SetPosition\",\"kind\":2,\"label\":\"Entity_SetPosition\",\"documentation\":\"Sets the position of the entity. The position is currently a lua table with three entries (x, y, z) \"},{\"id\":\"Entity_SetProjectileCanExplode\",\"kind\":2,\"label\":\"Entity_SetProjectileCanExplode\",\"documentation\":\"Sets whether or not a projectile can explode. \"},{\"id\":\"Entity_SetRecrewable\",\"kind\":2,\"label\":\"Entity_SetRecrewable\",\"documentation\":\"Sets an entity to be recrewable or not when it becomes abandoned \"},{\"id\":\"Entity_SetSharedProductionQueue\",\"kind\":2,\"label\":\"Entity_SetSharedProductionQueue\",\"documentation\":\"Enables shared team production on a building (teammates can build using THEIR resources) \"},{\"id\":\"Entity_SetStrategicPointNeutral\",\"kind\":2,\"label\":\"Entity_SetStrategicPointNeutral\",\"documentation\":\"Sets a strategic point to neutral (not owned by any team) \"},{\"id\":\"Entity_SetWorldOwned\",\"kind\":2,\"label\":\"Entity_SetWorldOwned\",\"documentation\":\"Makes an entity neutral \"},{\"id\":\"Entity_SimHide\",\"kind\":2,\"label\":\"Entity_SimHide\",\"documentation\":\"Shows/hides the entity in the simulation \"},{\"id\":\"Entity_Spawn\",\"kind\":2,\"label\":\"Entity_Spawn\",\"documentation\":\"Spawn the entity at its current position \"},{\"id\":\"Entity_StopAbility\",\"kind\":2,\"label\":\"Entity_StopAbility\",\"documentation\":\"Abruptly stops an active ability \"},{\"id\":\"Entity_SuggestPosture\",\"kind\":2,\"label\":\"Entity_SuggestPosture\",\"documentation\":\"Suggests a posture to an entity, lasting the passed duration nPosture of 0 is prone, 1 is kneel/crouch, and 2 is standing. Duration is in seconds, negative means indefinate.\"},{\"id\":\"Entity_SupportsDemolition\",\"kind\":2,\"label\":\"Entity_SupportsDemolition\",\"documentation\":\"Returns whether this entity is set up to have demolitions placed on it \"},{\"id\":\"Entity_TagDebug\",\"kind\":2,\"label\":\"Entity_TagDebug\",\"documentation\":\"Tags the entity to be used for debugging \"},{\"id\":\"Entity_VisHide\",\"kind\":2,\"label\":\"Entity_VisHide\",\"documentation\":\"Hides or shows an entity visually. \"},{\"id\":\"Misc_DoWeaponHitEffectOnPosition\",\"kind\":2,\"label\":\"Misc_DoWeaponHitEffectOnPosition\",\"documentation\":\"Do weapon hit effect on the ground nWeaponID is the property bag group id; if penetrated is set to false, deflection effect would be played instead\"},{\"id\":\"Misc_GetTerrainHeight\",\"kind\":2,\"label\":\"Misc_GetTerrainHeight\",\"documentation\":\"Returns the terrain height at the top-down co-ordinate specified (for terrain entities can walk on only) \"},{\"id\":\"Misc_ToggleEntities\",\"kind\":2,\"label\":\"Misc_ToggleEntities\",\"documentation\":\"Hide all world entities for NIS performance debugging. \"},{\"id\":\"ModMisc_MakeCasualtyAction\",\"kind\":2,\"label\":\"ModMisc_MakeCasualtyAction\",\"documentation\":\"Make the passed entity a casualty by triggering the MakeCasualtyAction \"},{\"id\":\"ModMisc_MakeWreckAction\",\"kind\":2,\"label\":\"ModMisc_MakeWreckAction\",\"documentation\":\"Make the passed entity a wreck by triggering the MakeWreckAction \"},{\"id\":\"ModMisc_OOCAction\",\"kind\":2,\"label\":\"ModMisc_OOCAction\",\"documentation\":\"Make the passed entity go out of control nTriggers an OutOfControlAction on the unit. Does not trigger any actions associated with an OOC weapon hit critical, just the OOC action.\"},{\"id\":\"UI_EnableEntityDecorator\",\"kind\":2,\"label\":\"UI_EnableEntityDecorator\",\"documentation\":\"Turn on or off entity decorator. The default is decorator enabled. \"},{\"id\":\"UI_EnableEntityMinimapIndicator\",\"kind\":2,\"label\":\"UI_EnableEntityMinimapIndicator\",\"documentation\":\"Turn on or off entity minimap indicator. The default is enabled. \"},{\"id\":\"UI_EnableEntitySelectionVisuals\",\"kind\":2,\"label\":\"UI_EnableEntitySelectionVisuals\",\"documentation\":\"Turn on or off entity selection visuals. The default is visuals enabled. \"},{\"id\":\"UI_EnableSquadDecorator\",\"kind\":2,\"label\":\"UI_EnableSquadDecorator\",\"documentation\":\"Turn on or off squad decorator. The default is decorator enabled. \"},{\"id\":\"UI_EnableSquadMinimapIndicator\",\"kind\":2,\"label\":\"UI_EnableSquadMinimapIndicator\",\"documentation\":\"Turn on or off squad minimap indicator. The default is enabled. \"},{\"id\":\"UI_GetAbilityIconName\",\"kind\":2,\"label\":\"UI_GetAbilityIconName\",\"documentation\":\"Returns the icon name for a given ability \"},{\"id\":\"Event_CreateAND\",\"kind\":2,\"label\":\"Event_CreateAND\",\"documentation\":\"Creates a Callback Event that triggers when ALL of the specified events are triggered. nOriginal events are removed.\"},{\"id\":\"Event_CreateOR\",\"kind\":2,\"label\":\"Event_CreateOR\",\"documentation\":\"Creates a Callback Event that triggers when ANY of the specified events are triggered. nOriginal events are removed.\"},{\"id\":\"Event_ElementOnScreen\",\"kind\":2,\"label\":\"Event_ElementOnScreen\",\"documentation\":\"Callback given callback function with data, when the given squad/entity/position is on screen. nCallback data parameter is agumented with: _player = PlayerID player, _element = SGroup/EGroup element\"},{\"id\":\"Event_EncounterIsDead\",\"kind\":2,\"label\":\"Event_EncounterIsDead\",\"documentation\":\"Trigger a Callback when an encounter is killed. nCallback parameter data augmented with: _encounterID, the encounter's reference\"},{\"id\":\"Event_Exists\",\"kind\":2,\"label\":\"Event_Exists\",\"documentation\":\"checks to see if the given event currently exists \"},{\"id\":\"Event_GroupBurning\",\"kind\":2,\"label\":\"Event_GroupBurning\",\"documentation\":\"Callback given callback function with data, when the egroup is burning nCallback parameter data augmented with: _group = EGroup/Entity group/entityID\"},{\"id\":\"Event_GroupIsDead\",\"kind\":2,\"label\":\"Event_GroupIsDead\",\"documentation\":\"Callback given callback function with data, when group is dead (empty). nCallback parameter data augmented with: _group = EGroup/SGroup group. Optional Retreating param will check if the unit is retreating as an alternate (for team weapons)\"},{\"id\":\"Event_GroupIsNotPinned\",\"kind\":2,\"label\":\"Event_GroupIsNotPinned\",\"documentation\":\"Callback given callback function with data, when group is not pinned nCallback parameter data augmented with: _group = SGroup group. Note: being suppressed counts as not being pinned\"},{\"id\":\"Event_GroupIsNotSuppressed\",\"kind\":2,\"label\":\"Event_GroupIsNotSuppressed\",\"documentation\":\"Callback given callback function with data, when group is not suppressed. nCallback parameter data augmented with: _group = SGroup group. Note: being pinned counts as not being suppressed.\"},{\"id\":\"Event_GroupIsPinned\",\"kind\":2,\"label\":\"Event_GroupIsPinned\",\"documentation\":\"Callback given callback function with data, when group is pinned nCallback parameter data augmented with: _group = SGroup group. \"},{\"id\":\"Event_GroupIsSuppressed\",\"kind\":2,\"label\":\"Event_GroupIsSuppressed\",\"documentation\":\"Callback given callback function with data, when group is suppressed. nCallback parameter data augmented with: _group = SGroup group. \"},{\"id\":\"Event_GroupLeftAlive\",\"kind\":2,\"label\":\"Event_GroupLeftAlive\",\"documentation\":\"Callback given callback function with data, when the amount of entities left in a group drops below amount. nCallback parameter data augmented with: _group = EGroup/SGroup group, _amount = Int amount\"},{\"id\":\"Event_IsDoingAttack\",\"kind\":2,\"label\":\"Event_IsDoingAttack\",\"documentation\":\"Callback given callback function with data, when group is doing an attack in the last attackTime seconds. nCallback parameter data augmented with: _group = EGroup/SGroup group, _attackTime = Float attackTime\"},{\"id\":\"Event_IsEngaged\",\"kind\":2,\"label\":\"Event_IsEngaged\",\"documentation\":\"Callback given callback function with data, when group is doing an attack or is under attack in the last attackTime seconds. nCallback parameter data augmented with: _group = EGroup/SGroup group, _attackTime = Float attackTime\"},{\"id\":\"Event_IsHoldingAny\",\"kind\":2,\"label\":\"Event_IsHoldingAny\",\"documentation\":\"Callback given callback function with data, when an element is holding anything or nothing. nCallback parameter data augmented with: _target = EGroup/SGroup/Entity/Squad target, _empty = Bool isEmpty\"},{\"id\":\"Event_IsInHold\",\"kind\":2,\"label\":\"Event_IsInHold\",\"documentation\":\"Callback given callback function with data, when a target element is in a hold or not. nCallback parameter data augmented with: _target = SGroup/Squad target, _inHold = Bool inHold\"},{\"id\":\"Event_IsSelected\",\"kind\":2,\"label\":\"Event_IsSelected\",\"documentation\":\"Callback when a target element is selected. nCallback parameter data augmented with: _target = EGroup/Entity/SGroup/Squad target, _all = Bool ANY/ALL\"},{\"id\":\"Event_IsUnderAttack\",\"kind\":2,\"label\":\"Event_IsUnderAttack\",\"documentation\":\"Callback given callback function with data, when group is under attack in the last attackTime seconds. nCallback parameter data augmented with: _group = EGroup/SGroup group, _attackTime = Float attackTime\"},{\"id\":\"Event_NarrativeEventsNotRunning\",\"kind\":2,\"label\":\"Event_NarrativeEventsNotRunning\",\"documentation\":\"Callback given callback function with data, a narrative event is running. \"},{\"id\":\"Event_NarrativeEventsRunning\",\"kind\":2,\"label\":\"Event_NarrativeEventsRunning\",\"documentation\":\"Callback given callback function with data, when no narrative events are running. \"},{\"id\":\"Event_OnHealth\",\"kind\":2,\"label\":\"Event_OnHealth\",\"documentation\":\"Callback given callback function with data, when an element's health falls below (or above if higher is true) given threshold. \"},{\"id\":\"Event_PlayerBuildingCount\",\"kind\":2,\"label\":\"Event_PlayerBuildingCount\",\"documentation\":\"Callback given function with data, when player has greater than or equal to amountOfBuildings nCallback parameter data augmented with: _player = PlayerID player, _amountOfBuildings = Int amountOfBuildings\"},{\"id\":\"Event_PlayerCanNotSeeElement\",\"kind\":2,\"label\":\"Event_PlayerCanNotSeeElement\",\"documentation\":\"Callback given callback function with data, when the given player can not see the element. nCallback data parameter is augmented with: _player = PlayerID player, _elements = Table inputElements, _seenElements = Table allSeenElements\"},{\"id\":\"Event_PlayerCanSeeElement\",\"kind\":2,\"label\":\"Event_PlayerCanSeeElement\",\"documentation\":\"Callback given callback function with data, when the given player can see the element. nCallback data parameter is augmented with: _player = PlayerID player, _elements = Table inputElements, _seenElements = Table allSeenElements\"},{\"id\":\"Event_PlayerDoesntOwnTerritory\",\"kind\":2,\"label\":\"Event_PlayerDoesntOwnTerritory\",\"documentation\":\"Callback given callback function with data, when player owns none of the given territories. nCallback parameter data augmented with: _player = PlayerID player, _territory = Int/Table sectorID OR EGroup/Entity of a capture point\"},{\"id\":\"Event_PlayerOwnsElement\",\"kind\":2,\"label\":\"Event_PlayerOwnsElement\",\"documentation\":\"Callback given function with data, when player owns the given element nCallback parameter data augmented with: _player = PlayerID player, _element = Entity/EGroup/Squad/SGroup element\"},{\"id\":\"Event_PlayerOwnsTerritory\",\"kind\":2,\"label\":\"Event_PlayerOwnsTerritory\",\"documentation\":\"Callback given callback function with data, when player owns all given territories. nCallback parameter data augmented with: _player = PlayerID player, _territory = sectorID/EGroup/Entity/Table of a capture point\"},{\"id\":\"Event_PlayerResourceLevel\",\"kind\":2,\"label\":\"Event_PlayerResourceLevel\",\"documentation\":\"Callback given callback function with data, when player has more than amount of resourceType. nCallback data parameter is augmented with: _player = PlayerID player, _resourceType = ResourceType resourceType, _amount = Int amount\"},{\"id\":\"Event_PlayerSquadCount\",\"kind\":2,\"label\":\"Event_PlayerSquadCount\",\"documentation\":\"Callback given callback function with data, when no narrative events are running. \"},{\"id\":\"Event_Proximity\",\"kind\":2,\"label\":\"Event_Proximity\",\"documentation\":\"Callback given callback function with data when target enters location. nCallback data parameter augmented with (could be nil): _result_location = Pos/Marker/Table/SGroup/EGroup/SectorID proximity position.\"},{\"id\":\"Event_Remove\",\"kind\":2,\"label\":\"Event_Remove\",\"documentation\":\"Remove the given callback \"},{\"id\":\"Event_RemoveAll\",\"kind\":2,\"label\":\"Event_RemoveAll\",\"documentation\":\"Remove all existing callback events. \"},{\"id\":\"Event_TeamBuildingCount\",\"kind\":2,\"label\":\"Event_TeamBuildingCount\",\"documentation\":\"Callback given function with data, when player has greater than or equal to amountOfBuildings nCallback parameter data augmented with: _player = PlayerID player, _amountOfBuildings = Int amountOfBuildings\"},{\"id\":\"Event_TeamCanNotSeeElement\",\"kind\":2,\"label\":\"Event_TeamCanNotSeeElement\",\"documentation\":\"Callback given callback function with data, when the given team can not see the element. nCallback data parameter is augmented with: _team = TeamID team, _elements = Table inputElements, _seenElements = Table allSeenElements\"},{\"id\":\"Event_TeamCanSeeElement\",\"kind\":2,\"label\":\"Event_TeamCanSeeElement\",\"documentation\":\"Callback given callback function with data, when the given team can see the element. nCallback data parameter is augmented with: _team = TeamID team, _elements = Table inputElements, _seenElements = Table allSeenElements\"},{\"id\":\"Event_TeamDoesntOwnTerritory\",\"kind\":2,\"label\":\"Event_TeamDoesntOwnTerritory\",\"documentation\":\"Callback given callback function with data, when a team owns none of the given territories. nCallback parameter data augmented with: _team = TeamID team, _territory = Int/Table sectorID OR EGroup/Entity of a capture point\"},{\"id\":\"Event_TeamOwnsElement\",\"kind\":2,\"label\":\"Event_TeamOwnsElement\",\"documentation\":\"Callback given function with data, when a team owns the given element nCallback parameter data augmented with: _team = TeamID team, _element = Entity/EGroup/Squad/SGroup element\"},{\"id\":\"Event_TeamOwnsTerritory\",\"kind\":2,\"label\":\"Event_TeamOwnsTerritory\",\"documentation\":\"Callback given callback function with data, when a team owns all given territories. nCallback parameter data augmented with: _team = TeamID team, _territory = Int/Table sectorID OR EGroup/Entity of a capture point\"},{\"id\":\"Event_TeamResourceLevel\",\"kind\":2,\"label\":\"Event_TeamResourceLevel\",\"documentation\":\"Callback given callback function with data, when a team has a combined amount more than amount of resourceType. nCallback data parameter is augmented with: _team = TeamID team, _resourceType = ResourceType resourceType, _amount = Int amount\"},{\"id\":\"Event_TeamSquadCount\",\"kind\":2,\"label\":\"Event_TeamSquadCount\",\"documentation\":\"Callback given callback function with data, when no narrative events are running. \"},{\"id\":\"Event_Timer\",\"kind\":2,\"label\":\"Event_Timer\",\"documentation\":\"Callback given callback function with data, after a specified delay. nDelay can be a table containing two numbers and will randomly select a delay from between the two\"},{\"id\":\"Event_ToggleDebug\",\"kind\":2,\"label\":\"Event_ToggleDebug\",\"documentation\":\"Toggles the ScarEvent debugger ON and OFF \"},{\"id\":\"Event_View\",\"kind\":2,\"label\":\"Event_View\",\"documentation\":\"Calls the view_manager on a ScarEvent with a specific ID. \"},{\"id\":\"EventHandler_AssignEncounterGoal\",\"kind\":2,\"label\":\"EventHandler_AssignEncounterGoal\",\"documentation\":\"Callback helper function for assigning a goal to an Encounter. Name of \"parameters\": 'goalData', 'encounter'. nExample usage: Event_*(EventHandler_AssignEncounterGoal, {encounter = myEncounter, goalData = myGoalData}, ...\"},{\"id\":\"EventHandler_ObjectiveComplete\",\"kind\":2,\"label\":\"EventHandler_ObjectiveComplete\",\"documentation\":\"Callback helper function for completing an objective. Received \"parameters\": Table objective, Bool showTitle, Bool skipIntel nExample usage: Event_*(EventHandler_ObjectiveComplete, {objective = objectiveID}, ...\"},{\"id\":\"EventHandler_ObjectiveStart\",\"kind\":2,\"label\":\"EventHandler_ObjectiveStart\",\"documentation\":\"Callback helper function for starting an objective, name of objective parameter is objective, additional \"parameters\": Bool showTitle, Bool skipIntel nExample usage: Event_*(EventHandler_ObjectiveStart, {objective = objectiveID, showTitle = true, skipIntel = true}, ...\"},{\"id\":\"EventHandler_RemoveHint\",\"kind\":2,\"label\":\"EventHandler_RemoveHint\",\"documentation\":\"Callback helper function for removing in-game hints. Name of hintpointID parameter is 'hint'. Can receive a table of ID's. nExample usage: Event_*(EventHandler_RemoveHint, {hint = hp_hintPointID}, ...\"},{\"id\":\"EventHandler_RemoveMinimapBlip\",\"kind\":2,\"label\":\"EventHandler_RemoveMinimapBlip\",\"documentation\":\"Callback helper function for removing in minimap blips, name of blipID parameter is blip nExample usage: Event_*(EventHandler_RemoveMinimapBlip, {blip = blipID}, ...\"},{\"id\":\"EventHandler_RemoveObjectiveUI\",\"kind\":2,\"label\":\"EventHandler_RemoveObjectiveUI\",\"documentation\":\"Callback helper function that removes objective UI elements, name of \"parameters\": objective, element nExample usage: Event_*(Objective_RemoveUIElements, {element = elementID, objective = objectiveID}, ...\"},{\"id\":\"EventHandler_Retreat\",\"kind\":2,\"label\":\"EventHandler_Retreat\",\"documentation\":\"Callback helper function that causes the input group to retreat, name of \"parameters\": group, location, deleteAtMarker, queued nExample usage: Event_*(EventHandler_Retreat, {group = sg_group, location = mkr_option, deleteAtMarker = true, queued = false}, ...\"},{\"id\":\"EventHandler_StaggeredRetreat\",\"kind\":2,\"label\":\"EventHandler_StaggeredRetreat\",\"documentation\":\"Callback helper function that causes the input group to retreat, name of \"parameters\": group, location, maxTries nExample usage: Event_*(EventHandler_Retreat, {group = sg_group, location = mkr_option, maxTries = 8}, ...\"},{\"id\":\"EventHandler_StartIntel\",\"kind\":2,\"label\":\"EventHandler_StartIntel\",\"documentation\":\"Callback helper function for Intel events, name of intel parameter is intel nExample usage: Event_*(EventHandler_StartIntel, {intel = EVENTS.Speech01}, ...\"},{\"id\":\"EventHandler_StartNislet\",\"kind\":2,\"label\":\"EventHandler_StartNislet\",\"documentation\":\"Callback helper function for Intel Nislet events, name of intel parameter is intel nExample usage: Event_*(EventHandler_StartIntel, {intel = EVENTS.Nislet01}, ...\"},{\"id\":\"EventHandler_StopFlashing\",\"kind\":2,\"label\":\"EventHandler_StopFlashing\",\"documentation\":\"Callback helper function for removing UI flashing. Name of ID parameter is flashID nExample usage: Event_*(EventHandler_StopFlashing, {flashID = myFlashID}, ...\"},{\"id\":\"FOW_PlayerExploreAll\",\"kind\":2,\"label\":\"FOW_PlayerExploreAll\",\"documentation\":\"Explores entire map for one player \"},{\"id\":\"FOW_PlayerRevealAll\",\"kind\":2,\"label\":\"FOW_PlayerRevealAll\",\"documentation\":\"Reveal FOW for specified player \"},{\"id\":\"FOW_PlayerRevealArea\",\"kind\":2,\"label\":\"FOW_PlayerRevealArea\",\"documentation\":\"Reveals a circular area for the given player over a given duration. YOU SHOULD ONLY CALL THIS ONCE FOR EACH AREA. nPass in a duration of -1 for indefinite duration ( until unreveal is called )\"},{\"id\":\"FOW_PlayerUnExploreAll\",\"kind\":2,\"label\":\"FOW_PlayerUnExploreAll\",\"documentation\":\"Unexplores entire map for one player \"},{\"id\":\"FOW_PlayerUnRevealAll\",\"kind\":2,\"label\":\"FOW_PlayerUnRevealAll\",\"documentation\":\"Use to undo a FOW_RevealAll for specified player \"},{\"id\":\"FOW_PlayerUnRevealArea\",\"kind\":2,\"label\":\"FOW_PlayerUnRevealArea\",\"documentation\":\"UnReveals a circular area for a given player. YOU SHOULD ONLY CALL THIS ONCE FOR EACH AREA. \"},{\"id\":\"FOW_RevealAll\",\"kind\":2,\"label\":\"FOW_RevealAll\",\"documentation\":\"Reveal FOW for all players \"},{\"id\":\"FOW_RevealArea\",\"kind\":2,\"label\":\"FOW_RevealArea\",\"documentation\":\"Reveals a circular area for all alive players over a given duration. YOU SHOULD ONLY CALL THIS ONCE FOR EACH AREA. nPass in a duration of -1 for indefinite duration ( until unreveal is called )\"},{\"id\":\"FOW_RevealEGroup\",\"kind\":2,\"label\":\"FOW_RevealEGroup\",\"documentation\":\"Reveals an entity groups line of sight(LOS) for all alive players over a given duration. YOU SHOULD ONLY CALL THIS ONCE FOR EACH AREA. nPass in a duration of -1 for indefinite duration ( until the entities are dead )\"},{\"id\":\"FOW_RevealEGroupOnly\",\"kind\":2,\"label\":\"FOW_RevealEGroupOnly\",\"documentation\":\"Reveals an entity groups in FOW for all alive players over a given duration. nPass in a duration of -1 for indefinite duration ( until the entities are dead )\"},{\"id\":\"FOW_RevealEntity\",\"kind\":2,\"label\":\"FOW_RevealEntity\",\"documentation\":\"Reveals an entities line of sight (LOS) for all alive players over a given duration. YOU SHOULD ONLY CALL THIS ONCE FOR EACH AREA. nPass in a duration of -1 for indefinite duration ( until the entity is dead )\"},{\"id\":\"FOW_RevealMarker\",\"kind\":2,\"label\":\"FOW_RevealMarker\",\"documentation\":\"Reveals an area the size of a given markers proximity at that markers position for a given amount of time. Pass in a duration of 1 for indefinite duration. YOU SHOULD ONLY CALL THIS ONCE FOR EACH AREA. nThis function will reveal the FOW for ALL alive players. This does not work with markers with rectangular proximity type\"},{\"id\":\"FOW_RevealSGroup\",\"kind\":2,\"label\":\"FOW_RevealSGroup\",\"documentation\":\"Reveals a squad groups line of sight(LOS) for all alive players over a given duration. YOU SHOULD ONLY CALL THIS ONCE FOR EACH AREA. nPass in a duration of -1 for indefinite duration ( until the squads are dead )\"},{\"id\":\"FOW_RevealSGroupOnly\",\"kind\":2,\"label\":\"FOW_RevealSGroupOnly\",\"documentation\":\"Reveals a squad groups in fow for all alive players over a given duration. YOU SHOULD ONLY CALL THIS ONCE FOR EACH AREA. nPass in a duration of -1 for indefinite duration ( until the squads are dead )\"},{\"id\":\"FOW_RevealSquad\",\"kind\":2,\"label\":\"FOW_RevealSquad\",\"documentation\":\"Reveals a squads line if sight(LOS) for all alive players over a given duration. YOU SHOULD ONLY CALL THIS ONCE FOR EACH AREA. nPass in a duration of -1 for indefinite duration ( until the entity is dead )\"},{\"id\":\"FOW_RevealTerritory\",\"kind\":2,\"label\":\"FOW_RevealTerritory\",\"documentation\":\"Reveals a territory to a player \"},{\"id\":\"FOW_UnRevealAll\",\"kind\":2,\"label\":\"FOW_UnRevealAll\",\"documentation\":\"Use to undo a FOW_RevealAll \"},{\"id\":\"FOW_UnRevealArea\",\"kind\":2,\"label\":\"FOW_UnRevealArea\",\"documentation\":\"UnReveals a circular area for all alive players. YOU SHOULD ONLY CALL THIS ONCE FOR EACH AREA. \"},{\"id\":\"FOW_UnRevealMarker\",\"kind\":2,\"label\":\"FOW_UnRevealMarker\",\"documentation\":\"Unreveals an area the size of a given markers proximity at that markers position. YOU SHOULD ONLY CALL THIS ONCE FOR EACH AREA. nThis does not work with markers with rectangular proximity type\"},{\"id\":\"FOW_UnRevealTerritory\",\"kind\":2,\"label\":\"FOW_UnRevealTerritory\",\"documentation\":\"Unreveals a territory sector \"},{\"id\":\"EGroup_CreateTable\",\"kind\":2,\"label\":\"EGroup_CreateTable\",\"documentation\":\"Returns a table of egroups NOT in the world builder nSee Marker_GetTable for more info on format parameter\"},{\"id\":\"EGroup_GetWBTable\",\"kind\":2,\"label\":\"EGroup_GetWBTable\",\"documentation\":\"Returns a table of egroups from the world builder nSee Marker_GetTable for more info on format parameter\"},{\"id\":\"Marker_GetNonSequentialTable\",\"kind\":2,\"label\":\"Marker_GetNonSequentialTable\",\"documentation\":\"Returns a fixed size table of markers from the world builder. Markers that do not exist in the WB, will be nil in the table. This is why we call it 'non-sequential' \"},{\"id\":\"Marker_GetTable\",\"kind\":2,\"label\":\"Marker_GetTable\",\"documentation\":\"Returns a table of markers from the world builder. Creates as many as it finds nmkr_table = Marker_GetTable( 'mkr_%d' ) -- creates a table with 3 markers named 'mkr_1', 'mkr_2', and 'mkr_3' (and so on) from the WB<BR/><BR/> mkr_table2 = Marker_GetTable( 'mkr_%02d' ) -- creates a table with 3 markers named 'mkr_01', 'mkr_02', 'mkr_03' (and so on) from the WB<BR/><BR/> mkr_table3 = Marker_GetTable( 'mkr_%03d_patrol' ) -- creates a table with 3 markers named 'mkr_001_patrol', 'mkr_002_patrol' (and so on) from the WB<BR/><BR/>\"},{\"id\":\"SGroup_CreateTable\",\"kind\":2,\"label\":\"SGroup_CreateTable\",\"documentation\":\"Returns a table of sgroups NOT in the world builder nSee Marker_GetTable for more info on format parameter\"},{\"id\":\"SGroup_GetWBTable\",\"kind\":2,\"label\":\"SGroup_GetWBTable\",\"documentation\":\"Returns a table of sgroups from the world builder nSee Marker_GetTable for more info on format parameter\"},{\"id\":\"Marker_DoesNumberAttributeExist\",\"kind\":2,\"label\":\"Marker_DoesNumberAttributeExist\",\"documentation\":\"Returns true if a generic number attribute exists for the marker type. \"},{\"id\":\"Marker_DoesStringAttributeExist\",\"kind\":2,\"label\":\"Marker_DoesStringAttributeExist\",\"documentation\":\"Returns true if a generic string attribute exists for the marker type. \"},{\"id\":\"Marker_Exists\",\"kind\":2,\"label\":\"Marker_Exists\",\"documentation\":\"Returns true if marker exists. If you don't care about the type, pass in an empty string ( \"\" ) \"},{\"id\":\"Marker_FromName\",\"kind\":2,\"label\":\"Marker_FromName\",\"documentation\":\"Returns a ScarMarker from the Mission Editor. If you don't care about the type, pass in an empty string ( \"\" ) n The type is defined in the markers list of the mission editor when placing markers.<BR/> You will need the result of this function to call any functions that start with Marker_\"},{\"id\":\"Marker_GetDirection\",\"kind\":2,\"label\":\"Marker_GetDirection\",\"documentation\":\"Returns a vector for the marker direction \"},{\"id\":\"Marker_GetName\",\"kind\":2,\"label\":\"Marker_GetName\",\"documentation\":\"Returns the name of a given marker. This value gets set in the Mission Editor. \"},{\"id\":\"Marker_GetNumberAttribute\",\"kind\":2,\"label\":\"Marker_GetNumberAttribute\",\"documentation\":\"Returns a generic number attribute defined in a marker. n Different marker types have different attributes. Note: All marker types have Name and Proximity. Do not use this function to retrieve these values, use Marker_GetName and Marker_GetProximity instead.\"},{\"id\":\"Marker_GetPosition\",\"kind\":2,\"label\":\"Marker_GetPosition\",\"documentation\":\"Returns the position of a given marker. \"},{\"id\":\"Marker_GetProximityRadius\",\"kind\":2,\"label\":\"Marker_GetProximityRadius\",\"documentation\":\"Returns the proximity radius of a given marker. Only for marker with proximity type PT_Circle. This value gets set in the Mission Editor. \"},{\"id\":\"Marker_GetProximityType\",\"kind\":2,\"label\":\"Marker_GetProximityType\",\"documentation\":\"Returns the proximity type of a given marker. The possible results are PT_Circle and PT_Rectangle \"},{\"id\":\"Marker_GetSequence\",\"kind\":2,\"label\":\"Marker_GetSequence\",\"documentation\":\"Builds a table of MarkerIDs that are named in a sequence. i.e. a name of \"spot\" will find markers \"spot1\", \"spot2\" and so on, up until it looks for a marker that isn't there. \"},{\"id\":\"Marker_GetStringAttribute\",\"kind\":2,\"label\":\"Marker_GetStringAttribute\",\"documentation\":\"Returns a generic string attribute defined in a marker. Different marker types can have different attributes. Note: All marker types have Name and Proximity. Do not use this function to retrieve these values, use Marker_GetName and Marker_GetProximity instead. See markertypes.lua for a listing of all the marker types.\"},{\"id\":\"Marker_GetType\",\"kind\":2,\"label\":\"Marker_GetType\",\"documentation\":\"Returns the typename of a given marker. This is the typename from the Mission Editor (name displayed when placing markers) \"},{\"id\":\"Marker_InProximity\",\"kind\":2,\"label\":\"Marker_InProximity\",\"documentation\":\"Returns true if the given position is in the markers proximity radius or proximity rectangle (depending on the type). \"},{\"id\":\"Modifier_IsEnabledOnEGroup\",\"kind\":2,\"label\":\"Modifier_IsEnabledOnEGroup\",\"documentation\":\"Checks if a modifier is enabled on all or any entities in an egroup \"},{\"id\":\"Modifier_Remove\",\"kind\":2,\"label\":\"Modifier_Remove\",\"documentation\":\"Remove an applied modifier. \"},{\"id\":\"Modifier_RemoveAllFromEGroup\",\"kind\":2,\"label\":\"Modifier_RemoveAllFromEGroup\",\"documentation\":\"Removes all SCAR-applied modifiers for a specific EGroup. \"},{\"id\":\"Modifier_RemoveAllFromSGroup\",\"kind\":2,\"label\":\"Modifier_RemoveAllFromSGroup\",\"documentation\":\"Removes all SCAR-applied modifiers for a specific SGroup. \"},{\"id\":\"Modify_AbilityDelayTime\",\"kind\":2,\"label\":\"Modify_AbilityDelayTime\",\"documentation\":\"Modifies the initial delay time of an ability \"},{\"id\":\"Modify_AbilityDurationTime\",\"kind\":2,\"label\":\"Modify_AbilityDurationTime\",\"documentation\":\"Modifies the duration of an ability \"},{\"id\":\"Modify_AbilityManpowerCost\",\"kind\":2,\"label\":\"Modify_AbilityManpowerCost\",\"documentation\":\"Modifies the manpower cost of an ability \"},{\"id\":\"Modify_AbilityMaxCastRange\",\"kind\":2,\"label\":\"Modify_AbilityMaxCastRange\",\"documentation\":\"Modifies the maximum casting range of an ability. NOTE: it assumes that the actions that the ability executes can also handle the modified range \"},{\"id\":\"Modify_AbilityMinCastRange\",\"kind\":2,\"label\":\"Modify_AbilityMinCastRange\",\"documentation\":\"Modifies the minimum casting range of an ability. NOTE: it assumes that the actions that the ability executes can also handle the modified range \"},{\"id\":\"Modify_AbilityMunitionsCost\",\"kind\":2,\"label\":\"Modify_AbilityMunitionsCost\",\"documentation\":\"Modifies the munitions cost of an ability \"},{\"id\":\"Modify_AbilityRechargeTime\",\"kind\":2,\"label\":\"Modify_AbilityRechargeTime\",\"documentation\":\"Modifies the recharge time of an ability \"},{\"id\":\"Modify_Armor\",\"kind\":2,\"label\":\"Modify_Armor\",\"documentation\":\"Modifies a squad or entity's armor \"},{\"id\":\"Modify_CaptureTime\",\"kind\":2,\"label\":\"Modify_CaptureTime\",\"documentation\":\"Modifies the capture time of all strategic points in an EGroup. DO NOT USE THIS FUNCTION. \"},{\"id\":\"Modify_DisableHold\",\"kind\":2,\"label\":\"Modify_DisableHold\",\"documentation\":\"Enable or disable hold (garrisoning) for an egroup or sgroup \"},{\"id\":\"Modify_Enable_ParadropReinforcements\",\"kind\":2,\"label\":\"Modify_Enable_ParadropReinforcements\",\"documentation\":\"Allows paratroopers to reinforce from the sky. Set to true to enable, false to disable. \"},{\"id\":\"Modify_EntityBuildTime\",\"kind\":2,\"label\":\"Modify_EntityBuildTime\",\"documentation\":\"Modifies the time taken to build a particular EBP. This only affects the given player. \"},{\"id\":\"Modify_EntityCost\",\"kind\":2,\"label\":\"Modify_EntityCost\",\"documentation\":\"Modifies the cost of an entity for a particular player. Possible resource types are RT_Manpower, RT_Munition, RT_Fuel, RT_Action \"},{\"id\":\"Modify_PlayerExperienceReceived\",\"kind\":2,\"label\":\"Modify_PlayerExperienceReceived\",\"documentation\":\"Modifies the veterancy experience received by a player \"},{\"id\":\"Modify_PlayerProductionRate\",\"kind\":2,\"label\":\"Modify_PlayerProductionRate\",\"documentation\":\"Modifies the production rate of a player. \"},{\"id\":\"Modify_PlayerResourceCap\",\"kind\":2,\"label\":\"Modify_PlayerResourceCap\",\"documentation\":\"Modifies a player's resource cap. Possible resource types are RT_Manpower, RT_Munition, RT_Fuel. Possible math types are MUT_Multiplication, MUT_Addition. \"},{\"id\":\"Modify_PlayerResourceGift\",\"kind\":2,\"label\":\"Modify_PlayerResourceGift\",\"documentation\":\"Modifies a player's resource bonus received (ie. one-time resource gifts) Possible resource types are RT_Manpower, RT_Munition, RT_Fuel, RT_Action \"},{\"id\":\"Modify_PlayerResourceRate\",\"kind\":2,\"label\":\"Modify_PlayerResourceRate\",\"documentation\":\"Modifies a player's incoming resource rate. Possible resource types are RT_Manpower, RT_Munition, RT_Fuel, RT_Action. Possible math types are MUT_Multiplication, MUT_Addition. \"},{\"id\":\"Modify_PlayerSightRadius\",\"kind\":2,\"label\":\"Modify_PlayerSightRadius\",\"documentation\":\"Modifies the sight radius for a player. \"},{\"id\":\"Modify_ProductionRate\",\"kind\":2,\"label\":\"Modify_ProductionRate\",\"documentation\":\"Modifies the production rate of all factories in an EGroup \"},{\"id\":\"Modify_ProjectileDelayTime\",\"kind\":2,\"label\":\"Modify_ProjectileDelayTime\",\"documentation\":\"Modifies a projectile's delay_detonate_time. \"},{\"id\":\"Modify_ReceivedAccuracy\",\"kind\":2,\"label\":\"Modify_ReceivedAccuracy\",\"documentation\":\"Modifies the chance of a squad/entity being hit \"},{\"id\":\"Modify_ReceivedDamage\",\"kind\":2,\"label\":\"Modify_ReceivedDamage\",\"documentation\":\"Modifies the damage a squad/entity receives. \"},{\"id\":\"Modify_ReceivedSuppression\",\"kind\":2,\"label\":\"Modify_ReceivedSuppression\",\"documentation\":\"Modifies the rate at which a squad gets suppressed \"},{\"id\":\"Modify_SetUpgradeCost\",\"kind\":2,\"label\":\"Modify_SetUpgradeCost\",\"documentation\":\"Sets the cost of an upgrade. This only affects the given player \"},{\"id\":\"Modify_SightRadius\",\"kind\":2,\"label\":\"Modify_SightRadius\",\"documentation\":\"Modifies the sight radius for an egroup or an sgroup. \"},{\"id\":\"Modify_SquadAvailability\",\"kind\":2,\"label\":\"Modify_SquadAvailability\",\"documentation\":\"Modifies the availability limit of a squad type for any given player \"},{\"id\":\"Modify_SquadCaptureRate\",\"kind\":2,\"label\":\"Modify_SquadCaptureRate\",\"documentation\":\"Modifies a squad's rate at which it will capture a strategic point. \"},{\"id\":\"Modify_SquadTypeSightRadius\",\"kind\":2,\"label\":\"Modify_SquadTypeSightRadius\",\"documentation\":\"Modifies the sight radius of a squad type for any given player \"},{\"id\":\"Modify_TargetPriority\",\"kind\":2,\"label\":\"Modify_TargetPriority\",\"documentation\":\"Modifies the target priority of a squad or entity group from the attacker. The value is an addition \"},{\"id\":\"Modify_TeamWeapon\",\"kind\":2,\"label\":\"Modify_TeamWeapon\",\"documentation\":\"Modifies a sync weapon only. nThe hardpoint defaults to \"hardpoint_01\"\"},{\"id\":\"Modify_TerritoryRadius\",\"kind\":2,\"label\":\"Modify_TerritoryRadius\",\"documentation\":\"Modifies the territory radius for an egroup or an sgroup. \"},{\"id\":\"Modify_UnitSpeed\",\"kind\":2,\"label\":\"Modify_UnitSpeed\",\"documentation\":\"Modifies the maximum speed for a vehicle. This has no effect on infantry. \"},{\"id\":\"Modify_UnitVeterancyValue\",\"kind\":2,\"label\":\"Modify_UnitVeterancyValue\",\"documentation\":\"Modifies the Veterancy Experience value of the target SGroup, EGroup, Entity, or Squad. Mathtype is Multiplication by default \"},{\"id\":\"Modify_UpgradeBuildTime\",\"kind\":2,\"label\":\"Modify_UpgradeBuildTime\",\"documentation\":\"Modifies the build time for a particular upgrade. This only affects the given player. \"},{\"id\":\"Modify_Upkeep\",\"kind\":2,\"label\":\"Modify_Upkeep\",\"documentation\":\"Modifies the upkeep for a player \"},{\"id\":\"Modify_VehicleRepairRate\",\"kind\":2,\"label\":\"Modify_VehicleRepairRate\",\"documentation\":\"Modifies the vehicle repair rate of all a player's engineers \"},{\"id\":\"Modify_VehicleRotationSpeed\",\"kind\":2,\"label\":\"Modify_VehicleRotationSpeed\",\"documentation\":\"Modifies the vehicle rotation speed \"},{\"id\":\"Modify_VehicleTurretRotationSpeed\",\"kind\":2,\"label\":\"Modify_VehicleTurretRotationSpeed\",\"documentation\":\"Modifies the turret rotation speed of a vehicle squad nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"Modify_Vulnerability\",\"kind\":2,\"label\":\"Modify_Vulnerability\",\"documentation\":\"Increases the received accuracy, penetration, and damage on a squad by the scalefactor. For example, a scalefactor of 2 means that the squad gets 2x the received accuracy, 2x the received penetration, and 2x the received damage. \"},{\"id\":\"Modify_WeaponAccuracy\",\"kind\":2,\"label\":\"Modify_WeaponAccuracy\",\"documentation\":\"Modifies a squad's weapon accuracy. nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"Modify_WeaponBurstLength\",\"kind\":2,\"label\":\"Modify_WeaponBurstLength\",\"documentation\":\"Modifies a squad's weapon burst length (time). nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"Modify_WeaponBurstRateOfFire\",\"kind\":2,\"label\":\"Modify_WeaponBurstRateOfFire\",\"documentation\":\"Modifies a squad's weapon rate of fire. nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"Modify_WeaponCooldown\",\"kind\":2,\"label\":\"Modify_WeaponCooldown\",\"documentation\":\"Modifies a squad's weapon cooldown time. nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"Modify_WeaponDamage\",\"kind\":2,\"label\":\"Modify_WeaponDamage\",\"documentation\":\"Modifies a squad's weapon damage. nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"Modify_WeaponEnabled\",\"kind\":2,\"label\":\"Modify_WeaponEnabled\",\"documentation\":\"Enables or disables a weapon hardpoint nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"Modify_WeaponPenetration\",\"kind\":2,\"label\":\"Modify_WeaponPenetration\",\"documentation\":\"Modifies a squad's weapon penetration. Does not work on artillery (mortar, nebelwerfer, etc.) nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"Modify_WeaponRange\",\"kind\":2,\"label\":\"Modify_WeaponRange\",\"documentation\":\"Modifies a squad's weapon range. Does not work on artillery (mortar, nebelwerfer, etc.) nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"Modify_WeaponReload\",\"kind\":2,\"label\":\"Modify_WeaponReload\",\"documentation\":\"Modifies a squad's weapon reload time. nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"Modify_WeaponScatter\",\"kind\":2,\"label\":\"Modify_WeaponScatter\",\"documentation\":\"Modifies a squad's weapon scatter. nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"Modify_WeaponSuppression\",\"kind\":2,\"label\":\"Modify_WeaponSuppression\",\"documentation\":\"Modifies a squad's weapon suppression. Does not work on artillery (mortar, nebelwerfer, etc.) nThe hardpoint should be specified as a string - i.e. \"hardpoint_01\"\"},{\"id\":\"MP_BlizzardInit\",\"kind\":2,\"label\":\"MP_BlizzardInit\",\"documentation\":\"Initializes and starts cold weather and blizzard mechanics, taking in atmosphere presets to use in each condition. Uses MP values by default. Defaults to NOT starting in blizzard conditions. nYou need to add import(\"Systems/BlizzardMulitplayer.scar\") to your mission script to use this - it isn't imported by default\"},{\"id\":\"Objective_AddPing\",\"kind\":2,\"label\":\"Objective_AddPing\",\"documentation\":\"Adds a tactical map ping to an objective \"},{\"id\":\"Objective_AddUIElements\",\"kind\":2,\"label\":\"Objective_AddUIElements\",\"documentation\":\"Adds multiple UI elements on one position. 'pos' can be group/entity/squad/marker. worldArrow adds a 3D arrow which points to the thing in the world. hintpointText adds a hint point that appears on the thing when moused over. If you're adding an arrow or a hintpoint, this thing will be among those potentially pointed to by the 2D HUD arrow. objectiveArrowOffset is an offset applied to the arrow's position (you can specify a height offset or a 3D position offset). \"},{\"id\":\"Objective_AreAllPrimaryObjectivesComplete\",\"kind\":2,\"label\":\"Objective_AreAllPrimaryObjectivesComplete\",\"documentation\":\"Returns whether all primary objectives have been completed. \"},{\"id\":\"Objective_Complete\",\"kind\":2,\"label\":\"Objective_Complete\",\"documentation\":\"'Completes' an objective. Wrapper function for Objective_SetState with a few other features. If you do not want the objective title to be shown on screen, pass in 'false' for bShowTitle nIncludes managing the blips and triggers the OnComplete() function as defined by the objective table created in the main scar file. SkipIntel will skip the defined INTEL_COMPLTE event.\"},{\"id\":\"Objective_Fail\",\"kind\":2,\"label\":\"Objective_Fail\",\"documentation\":\"'Fails' an objective. Wrapper function for Objective_SetState with a few other features. nIncludes managing the blips and triggers the OnFail() function as defined by the objective table created in the main scar file. SkipIntel will skip the defined INTEL_FAIL event.\"},{\"id\":\"Objective_GetCounter\",\"kind\":2,\"label\":\"Objective_GetCounter\",\"documentation\":\"Returns the current count associated with this objective. \"},{\"id\":\"Objective_GetTimerSeconds\",\"kind\":2,\"label\":\"Objective_GetTimerSeconds\",\"documentation\":\"Returns the amount of seconds on the timer (time remaining or time elapsed, based on the type of timer used) \"},{\"id\":\"Objective_IncreaseCounter\",\"kind\":2,\"label\":\"Objective_IncreaseCounter\",\"documentation\":\"Increases the counter that is associated with this objective in the UI. You can provide an amount to increase by. \"},{\"id\":\"Objective_IsComplete\",\"kind\":2,\"label\":\"Objective_IsComplete\",\"documentation\":\"Returns whether an objective is complete \"},{\"id\":\"Objective_IsCounterSet\",\"kind\":2,\"label\":\"Objective_IsCounterSet\",\"documentation\":\"Returns true if a counter has been set for this objective \"},{\"id\":\"Objective_IsFailed\",\"kind\":2,\"label\":\"Objective_IsFailed\",\"documentation\":\"Returns whether an objective is failed \"},{\"id\":\"Objective_IsStarted\",\"kind\":2,\"label\":\"Objective_IsStarted\",\"documentation\":\"Returns whether an objective has been started. Completed objectives will return true. \"},{\"id\":\"Objective_IsTimerSet\",\"kind\":2,\"label\":\"Objective_IsTimerSet\",\"documentation\":\"Returns true if a timer has been set for this objective \"},{\"id\":\"Objective_IsVisible\",\"kind\":2,\"label\":\"Objective_IsVisible\",\"documentation\":\"Returns whether an objective is visible or not. \"},{\"id\":\"Objective_PauseTimer\",\"kind\":2,\"label\":\"Objective_PauseTimer\",\"documentation\":\"Pauses the objective's timer. If a timer has not been set, it does nothing. \"},{\"id\":\"Objective_Register\",\"kind\":2,\"label\":\"Objective_Register\",\"documentation\":\"'Registers' an objective. Wrapper function for Objective_Create with a few other features. nIncludes pings as defined by the objective table created in the main scar file. You can pass in a team or player, so that the objective only applies to it.\"},{\"id\":\"Objective_RemovePing\",\"kind\":2,\"label\":\"Objective_RemovePing\",\"documentation\":\"Removes a tactical map ping from an objective \"},{\"id\":\"Objective_RemoveUIElements\",\"kind\":2,\"label\":\"Objective_RemoveUIElements\",\"documentation\":\"Removes a group of UI elements that were added by Objective_AddUIElements \"},{\"id\":\"Objective_ResumeTimer\",\"kind\":2,\"label\":\"Objective_ResumeTimer\",\"documentation\":\"Resume the objective's timer. If a timer has not been set, it does nothing. \"},{\"id\":\"Objective_SetAlwaysShowDetails\",\"kind\":2,\"label\":\"Objective_SetAlwaysShowDetails\",\"documentation\":\"Sets whether this objective always shows detailed text, the HUD arrow, or the hintpoints. There can only be one objective at a time that forces the HUD arrow to show up. If you pass in 'nil' for hud_arrow then its behavior is not affected. \"},{\"id\":\"Objective_SetCounter\",\"kind\":2,\"label\":\"Objective_SetCounter\",\"documentation\":\"Sets a counter that is associated with this objective in the UI. You can provide a 'maximum' so that it shows up as \"1 of 5\" \"},{\"id\":\"Objective_Show\",\"kind\":2,\"label\":\"Objective_Show\",\"documentation\":\"Shows or hides an objective from the UI and tactical map \"},{\"id\":\"Objective_Start\",\"kind\":2,\"label\":\"Objective_Start\",\"documentation\":\"Shows an objective to the player and activates it nIncludes pings and FOW as defined by the objective table created in the main scar file. SkipIntel will skip the defined INTEL_START event.\"},{\"id\":\"Objective_StartTimer\",\"kind\":2,\"label\":\"Objective_StartTimer\",\"documentation\":\"Starts a timer that is associated with this objective in the UI. Use COUNT_DOWN or COUNT_UP for the 'direction' parameter \"},{\"id\":\"Objective_StopCounter\",\"kind\":2,\"label\":\"Objective_StopCounter\",\"documentation\":\"Stops the objective's counter. If a counter has not been set, it does nothing. \"},{\"id\":\"Objective_StopTimer\",\"kind\":2,\"label\":\"Objective_StopTimer\",\"documentation\":\"Stops the objective's timer. If a timer has not been set, it does nothing. \"},{\"id\":\"Objective_TogglePings\",\"kind\":2,\"label\":\"Objective_TogglePings\",\"documentation\":\"Toggles minimap blips on or off. \"},{\"id\":\"Objective_UpdateText\",\"kind\":2,\"label\":\"Objective_UpdateText\",\"documentation\":\"Updates the title and description for the objective. If you only want to set one of them, pass in nil for the other \"},{\"id\":\"Cmd_StopSquadsOnly\",\"kind\":2,\"label\":\"Cmd_StopSquadsOnly\",\"documentation\":\"Pass in a group to command to 'stop'. Pass in a squad state to filter by. \"},{\"id\":\"OpGameSetup\",\"kind\":2,\"label\":\"OpGameSetup\",\"documentation\":\"Operation Setup function registers all valid players nOpGameSetup() should be called by the individual Operation files It creates a master table _Op.PDT meant to be used by Op Utility files only It returns this table so that the Operation file can use and manipulate its own\"},{\"id\":\"OpNPC_AddSupportGroup\",\"kind\":2,\"label\":\"OpNPC_AddSupportGroup\",\"documentation\":\"Does things n\"},{\"id\":\"OpNPC_AddSyncWpnGroup\",\"kind\":2,\"label\":\"OpNPC_AddSyncWpnGroup\",\"documentation\":\"Does things n\"},{\"id\":\"OpNPC_AddTeamWpnGroup\",\"kind\":2,\"label\":\"OpNPC_AddTeamWpnGroup\",\"documentation\":\"Does things n\"},{\"id\":\"OpNPC_IsGroupActive\",\"kind\":2,\"label\":\"OpNPC_IsGroupActive\",\"documentation\":\"Does things n\"},{\"id\":\"OpNPC_Name\",\"kind\":2,\"label\":\"OpNPC_Name\",\"documentation\":\"Does things n Does more things\"},{\"id\":\"OpNPC_RemoveGroup\",\"kind\":2,\"label\":\"OpNPC_RemoveGroup\",\"documentation\":\"Removes the indicated sub table from the NPC Support Manager n\"},{\"id\":\"OpNPC_RetreatGroup\",\"kind\":2,\"label\":\"OpNPC_RetreatGroup\",\"documentation\":\"Does things n\"},{\"id\":\"OpNPC_SetGroupActive\",\"kind\":2,\"label\":\"OpNPC_SetGroupActive\",\"documentation\":\"Changes the state of the indicated sub table to the value provided n\"},{\"id\":\"OpPlayer_Action\",\"kind\":2,\"label\":\"OpPlayer_Action\",\"documentation\":\"Does things n Does more things\"},{\"id\":\"OpUtil_AddModifier\",\"kind\":2,\"label\":\"OpUtil_AddModifier\",\"documentation\":\"Applies the indicated modifier type to the specified group or player \"},{\"id\":\"OpUtil_AddResourcesToTeam\",\"kind\":2,\"label\":\"OpUtil_AddResourcesToTeam\",\"documentation\":\"Works with _Op.PDT, takes a playerID or team and gives that team OR the enemy team lots of resources \"},{\"id\":\"OpUtil_AssignSquadSameTypeControlGroup\",\"kind\":2,\"label\":\"OpUtil_AssignSquadSameTypeControlGroup\",\"documentation\":\"Trys to assign a squad to a control group with the sametype of squad \"},{\"id\":\"OpUtil_AssignSquadUnusedControlGroup\",\"kind\":2,\"label\":\"OpUtil_AssignSquadUnusedControlGroup\",\"documentation\":\"Assigns the squads within a sgroup to free control group \"},{\"id\":\"OpUtil_ClearPlayZone\",\"kind\":2,\"label\":\"OpUtil_ClearPlayZone\",\"documentation\":\"Removes the 'Playable Zone' set by OpUtil_SetPlayZone \"},{\"id\":\"OpUtil_EgroupIsCapturedByTeam\",\"kind\":2,\"label\":\"OpUtil_EgroupIsCapturedByTeam\",\"documentation\":\"Tracks a syncweapon ID and destroys the weapon if it ever becomes un-crewed \"},{\"id\":\"OpUtil_EnemyEGroupArrowManager\",\"kind\":2,\"label\":\"OpUtil_EnemyEGroupArrowManager\",\"documentation\":\"Displays an arrow with a text message over a random building that's part of an EGroup of buildings nUseful when you want to highlight a group of buildings that you want to destroy as an objective but don't want to highlight every building at once.\"},{\"id\":\"OpUtil_FindNearestCapturePoint\",\"kind\":2,\"label\":\"OpUtil_FindNearestCapturePoint\",\"documentation\":\"Finds the nearest captureable point to the sgroup nWill only compare to Registered Captureable Points, will return 'nil' if there are none in range\"},{\"id\":\"OpUtil_InvulnerableAdd\",\"kind\":2,\"label\":\"OpUtil_InvulnerableAdd\",\"documentation\":\"Adds an SGroup from a list of units to be tracked for invulnerability nSpecified SGroup will turn invulnerable when it reaches a specified number of survivors OR if the average health of the squad is <20% (under the hood, as a safety measure). If no number is entered the SGroup is assumed to be instantly invulnerable. The percentage is the average health of an sgroup, and will override the number of total members, and thus is optional. \"},{\"id\":\"OpUtil_InvulnerableRemove\",\"kind\":2,\"label\":\"OpUtil_InvulnerableRemove\",\"documentation\":\"Removes an SGroup from a list of units to be tracked for invulnerability nIf you want an SGroup to not be tracked anymore in terms of invulnerability use this function\"},{\"id\":\"OpUtil_LogSyncWpn\",\"kind\":2,\"label\":\"OpUtil_LogSyncWpn\",\"documentation\":\"Tracks a syncweapon ID and destroys the weapon if it ever becomes un-crewed \"},{\"id\":\"OpUtil_ReturnEnemyNPC\",\"kind\":2,\"label\":\"OpUtil_ReturnEnemyNPC\",\"documentation\":\"Works with _Op.PDT, takes a variable and returns an enemy NPC \"},{\"id\":\"OpUtil_ReturnHumanPlayer\",\"kind\":2,\"label\":\"OpUtil_ReturnHumanPlayer\",\"documentation\":\"Works with _Op.PDT, takes a variable and returns a Human player \"},{\"id\":\"OpUtil_ReturnNPCPlayer\",\"kind\":2,\"label\":\"OpUtil_ReturnNPCPlayer\",\"documentation\":\"Works with _Op.PDT, takes a variable and returns a Non-Human player \"},{\"id\":\"OpUtil_ReturnRace\",\"kind\":2,\"label\":\"OpUtil_ReturnRace\",\"documentation\":\"Works with _Op.PDT, takes a player and returns the race \"},{\"id\":\"OpUtil_ReturnTeam\",\"kind\":2,\"label\":\"OpUtil_ReturnTeam\",\"documentation\":\"Works with _Op.PDT, takes a variable and returns the team \"},{\"id\":\"OpUtil_SetPlayZone\",\"kind\":2,\"label\":\"OpUtil_SetPlayZone\",\"documentation\":\"Sets a 'playable zone' in the area and keeps all Human players within it \"},{\"id\":\"OpUtil_TeamOwnsEntity\",\"kind\":2,\"label\":\"OpUtil_TeamOwnsEntity\",\"documentation\":\"Checks to see if an egroup is owned by a team \"},{\"id\":\"OpVP_AddPenaltyGroup\",\"kind\":2,\"label\":\"OpVP_AddPenaltyGroup\",\"documentation\":\"Does things n\"},{\"id\":\"OpVP_Name\",\"kind\":2,\"label\":\"OpVP_Name\",\"documentation\":\"Does things n Does more things\"},{\"id\":\"OpVP_RegisterCaptureablePoints\",\"kind\":2,\"label\":\"OpVP_RegisterCaptureablePoints\",\"documentation\":\"Registers a single egroup or a table of egroups as a captureable point nTracks the various states of the points, neutral or team owner\"},{\"id\":\"OpVP_RegisterPointDefense\",\"kind\":2,\"label\":\"OpVP_RegisterPointDefense\",\"documentation\":\"Add a set egroups and defensive formations to defend them n\"},{\"id\":\"OpVP_RemoveGroup\",\"kind\":2,\"label\":\"OpVP_RemoveGroup\",\"documentation\":\"Removes the indicated sub table from the VP Support Manager n\"},{\"id\":\"UI_PopUpMessage\",\"kind\":2,\"label\":\"UI_PopUpMessage\",\"documentation\":\"Auto-generate a popup message with callbacks. See OpUtil.scar for an example of how to use this function. nIf no buttons are defined it defaults to a 'Close' button that triggers no action.\"},{\"id\":\"Util_ProductionRestriction\",\"kind\":2,\"label\":\"Util_ProductionRestriction\",\"documentation\":\"Prevents the construction of squads or enities based on blueprint tables passed into the function. nCalling the function multiple times will stomp any previously data passed into the function.\"},{\"id\":\"Util_TutorialIntel\",\"kind\":2,\"label\":\"Util_TutorialIntel\",\"documentation\":\"Auto-generate a Tutorial Intel Event. Called individually or using the traditional table format. nSee Util_AutoIntel() Takes a table of parameters defining speaker(s)/line(s) or pass in Actor/String/Button/Sticky/Input\"},{\"id\":\"Player_AddAbility\",\"kind\":2,\"label\":\"Player_AddAbility\",\"documentation\":\"Add an ability to a player \"},{\"id\":\"Player_AddAbilityLockoutZone\",\"kind\":2,\"label\":\"Player_AddAbilityLockoutZone\",\"documentation\":\"Specifies a marker where an ability cannot be used. This only applies to abilities where you use the cursor to pick a location in the world (like a location to paradrop at). \"},{\"id\":\"Player_AddResource\",\"kind\":2,\"label\":\"Player_AddResource\",\"documentation\":\"Add resource to player, as opposed to just setting it. Possible resource types are RT_Manpower, RT_Munition, RT_Fuel, RT_Action \"},{\"id\":\"Player_AddSquadsToSGroup\",\"kind\":2,\"label\":\"Player_AddSquadsToSGroup\",\"documentation\":\"For the given player, get all of the squads gathered into a squadgroup of your naming. nSquads will be added to given squad group. If the given squad group does not exist it will be created.\"},{\"id\":\"Player_AddUnspentCommandPoints\",\"kind\":2,\"label\":\"Player_AddUnspentCommandPoints\",\"documentation\":\"Gives the player new command points to spent on \"},{\"id\":\"Player_AreSquadsNearMarker\",\"kind\":2,\"label\":\"Player_AreSquadsNearMarker\",\"documentation\":\"Returns true if ANY of a players squads are in proximity of a marker \"},{\"id\":\"Player_CanCastAbilityOnEntity\",\"kind\":2,\"label\":\"Player_CanCastAbilityOnEntity\",\"documentation\":\"Tests if the player can currently use an ability on target entity \"},{\"id\":\"Player_CanCastAbilityOnPlayer\",\"kind\":2,\"label\":\"Player_CanCastAbilityOnPlayer\",\"documentation\":\"Tests if the player can currently use an ability on target player \"},{\"id\":\"Player_CanCastAbilityOnPosition\",\"kind\":2,\"label\":\"Player_CanCastAbilityOnPosition\",\"documentation\":\"Tests if the player can currently use an ability on target position \"},{\"id\":\"Player_CanCastAbilityOnSquad\",\"kind\":2,\"label\":\"Player_CanCastAbilityOnSquad\",\"documentation\":\"Tests if the player can currently use an ability on target squad \"},{\"id\":\"Player_CanSeeEGroup\",\"kind\":2,\"label\":\"Player_CanSeeEGroup\",\"documentation\":\"Returns true if a player can see ALL or ANY items in an egroup \"},{\"id\":\"Player_CanSeeEntity\",\"kind\":2,\"label\":\"Player_CanSeeEntity\",\"documentation\":\"Returns true if a player can see a given entity (revealed in FOW) \"},{\"id\":\"Player_CanSeePosition\",\"kind\":2,\"label\":\"Player_CanSeePosition\",\"documentation\":\"Returns true if a player can see a given position. \"},{\"id\":\"Player_CanSeeSGroup\",\"kind\":2,\"label\":\"Player_CanSeeSGroup\",\"documentation\":\"Returns true if a player can see ALL or ANY items in an sgroup \"},{\"id\":\"Player_CanSeeSquad\",\"kind\":2,\"label\":\"Player_CanSeeSquad\",\"documentation\":\"Returns true if a player can see ALL or ANY units in a given squad (revealed in FOW) nSet all to true to check that ALL units are visible or set to false to check for ANY.\"},{\"id\":\"Player_ClearArea\",\"kind\":2,\"label\":\"Player_ClearArea\",\"documentation\":\"Any of the player's units in the marker area move out of the area, and can be made invulnerable for a bit whilst they do it nYou can replace the marker with a position and a range - i.e. Player_ClearArea(player, pos, range, invulnerable)\"},{\"id\":\"Player_ClearAvailabilities\",\"kind\":2,\"label\":\"Player_ClearAvailabilities\",\"documentation\":\"Clears item, command and construction menu availabilities for the player. \"},{\"id\":\"Player_ClearPopCapOverride\",\"kind\":2,\"label\":\"Player_ClearPopCapOverride\",\"documentation\":\"Clears the pop cap override so that modifiers can take effect again \"},{\"id\":\"Player_CompleteUpgrade\",\"kind\":2,\"label\":\"Player_CompleteUpgrade\",\"documentation\":\"Finish upgrade for a player \"},{\"id\":\"Player_DoParadrop\",\"kind\":2,\"label\":\"Player_DoParadrop\",\"documentation\":\"Do a paradrop with custom parameters for this player. This is similar to regular paradrop ability without any prereq check n sgroup is the SGroup that the newly created squad would be added to dropHeight is Height in metres the paratroopers are dropped from. dropDrift is Horizontal distance in metres from where the paratroopers are dropped from. blueprint is the blueprint to spawn. It could be squad or entity maxSquadEntityCount is the number of squad members to spawn. 0 means default is used maxDeathOnBuilding is the number of entities allowed to die when landing on buildings Example: local id = SBP.ALLIED_AIRBOURNE Player_DoParadrop( g_player1, sg_soldier1, Marker_GetPosition( marker4 ), 100.0, 10.0, id, 3, 2 )\"},{\"id\":\"Player_FindFirstEnemyPlayer\",\"kind\":2,\"label\":\"Player_FindFirstEnemyPlayer\",\"documentation\":\"Searches the player list in the world and returns the id of the first enemy player \"},{\"id\":\"Player_FromId\",\"kind\":2,\"label\":\"Player_FromId\",\"documentation\":\"Returns a player given a player id from the ME. \"},{\"id\":\"Player_GetAIType\",\"kind\":2,\"label\":\"Player_GetAIType\",\"documentation\":\"Returns the type of the given player if it is an AI. \"},{\"id\":\"Player_GetAll\",\"kind\":2,\"label\":\"Player_GetAll\",\"documentation\":\"Creates/Clears groups that contain all of a player's units and buildings. Defaults - sg_allsquads and eg_allentities nFills an SGroup with all of the given player's squads, and an EGroup with all the player's entities. If you don't provide and groups, then it defaults to using sg_allsquads and eg_allentities.\"},{\"id\":\"Player_GetAllEntitiesNearMarker\",\"kind\":2,\"label\":\"Player_GetAllEntitiesNearMarker\",\"documentation\":\"Gather together all of a player's entities that are in proximity to a marker, a position, or within a territory sector into an EGroup. The EGroup is cleared beforehand. nYou can override a marker's normal proximity by specifying a range.\"},{\"id\":\"Player_GetAllSquadsNearMarker\",\"kind\":2,\"label\":\"Player_GetAllSquadsNearMarker\",\"documentation\":\"Gather together all of a player's squads that are in proximity to a marker, a position, or within a territory sector into an SGroup. The SGroup is cleared beforehand. nYou can override a marker's normal proximity by specifying a range.\"},{\"id\":\"Player_GetBuildingID\",\"kind\":2,\"label\":\"Player_GetBuildingID\",\"documentation\":\"Returns the entityID of the first player owned building listed in the table. nThis only looks at completed buildings\"},{\"id\":\"Player_GetBuildingsCount\",\"kind\":2,\"label\":\"Player_GetBuildingsCount\",\"documentation\":\"Returns the total number of buildings owned by this player. \"},{\"id\":\"Player_GetBuildingsCountExcept\",\"kind\":2,\"label\":\"Player_GetBuildingsCountExcept\",\"documentation\":\"Returns the total number of buildings owned by this player (with exclusions). \"},{\"id\":\"Player_GetBuildingsCountOnly\",\"kind\":2,\"label\":\"Player_GetBuildingsCountOnly\",\"documentation\":\"Returns the number of buildings owned by this player (inclusive). \"},{\"id\":\"Player_GetCurrentPopulation\",\"kind\":2,\"label\":\"Player_GetCurrentPopulation\",\"documentation\":\"Use capType CT_Personnel to get current squad cap, CT_Vehicle to get current vehicle cap, CT_Medic to get current medic cap \"},{\"id\":\"Player_GetDisplayName\",\"kind\":2,\"label\":\"Player_GetDisplayName\",\"documentation\":\"Returns the players UI name. \"},{\"id\":\"Player_GetEntities\",\"kind\":2,\"label\":\"Player_GetEntities\",\"documentation\":\"Returns an EntityGroupObs containing all the players entities. n This function returns a 'global' entity group with the name '__Player%dEntities', where %d is the player ID. This means that you should never need to destroy it./n However, if you do destroy it, it will be recreated the next time this function is called.\"},{\"id\":\"Player_GetEntitiesFromType\",\"kind\":2,\"label\":\"Player_GetEntitiesFromType\",\"documentation\":\"Returns an EGroup containing all of the players entities of a specific unit_type (as defined by the type_ext on the entity) nThis function returns a new EGroup to allow tracking of different types. \"},{\"id\":\"Player_GetEntityConcentration\",\"kind\":2,\"label\":\"Player_GetEntityConcentration\",\"documentation\":\"Finds the greatest (or least) concentration of entities owned by a player. nThis function is slow, so don't call it very often\"},{\"id\":\"Player_GetEntityCount\",\"kind\":2,\"label\":\"Player_GetEntityCount\",\"documentation\":\"Returns the number of entities a player currently owns \"},{\"id\":\"Player_GetEntityName\",\"kind\":2,\"label\":\"Player_GetEntityName\",\"documentation\":\"Returns the name of an entity a player currently owns \"},{\"id\":\"Player_GetID\",\"kind\":2,\"label\":\"Player_GetID\",\"documentation\":\"Returns the id of the player \"},{\"id\":\"Player_GetMaxPopulation\",\"kind\":2,\"label\":\"Player_GetMaxPopulation\",\"documentation\":\"Use capType CT_Personnel to get max squad cap or CT_VehicleCap to get max vehicle cap. \"},{\"id\":\"Player_GetNumStrategicPoints\",\"kind\":2,\"label\":\"Player_GetNumStrategicPoints\",\"documentation\":\"Returns the number of strategic points (not objectives) this player owns \"},{\"id\":\"Player_GetNumVictoryPoints\",\"kind\":2,\"label\":\"Player_GetNumVictoryPoints\",\"documentation\":\"Returns the number of strategic objectives this player owns \"},{\"id\":\"Player_GetPopulationPercentage\",\"kind\":2,\"label\":\"Player_GetPopulationPercentage\",\"documentation\":\"Gets the current personnel or vehicle population as a percetange of the current max-cap. The captype is either CT_Personnel or CT_Vehicle. ncaptype is CT_Personnel by default.\"},{\"id\":\"Player_GetRace\",\"kind\":2,\"label\":\"Player_GetRace\",\"documentation\":\"Returns the race index for the given player. \"},{\"id\":\"Player_GetRaceName\",\"kind\":2,\"label\":\"Player_GetRaceName\",\"documentation\":\"Returns the name of the race for a given player and always in english \"},{\"id\":\"Player_GetRelationship\",\"kind\":2,\"label\":\"Player_GetRelationship\",\"documentation\":\"Returns the relationship between 2 players. \"},{\"id\":\"Player_GetResource\",\"kind\":2,\"label\":\"Player_GetResource\",\"documentation\":\"Returns the amount of resources a given player has. \"},{\"id\":\"Player_GetResourceRate\",\"kind\":2,\"label\":\"Player_GetResourceRate\",\"documentation\":\"Returns the amount of resources a given player is getting per second. \"},{\"id\":\"Player_GetSquadConcentration\",\"kind\":2,\"label\":\"Player_GetSquadConcentration\",\"documentation\":\"Finds the greatest (or least) concentration of squads owned by a player. nThis function is slow, so don't call it very often\"},{\"id\":\"Player_GetSquadCount\",\"kind\":2,\"label\":\"Player_GetSquadCount\",\"documentation\":\"Returns the number of squads a player currently owns \"},{\"id\":\"Player_GetSquads\",\"kind\":2,\"label\":\"Player_GetSquads\",\"documentation\":\"Returns a SquadGroupObs containing all the players units. n This function returns a 'global' squad group with the name '__Player%dSquads', where %d is the player ID. This means that you should never need to destroy it./n However, if you do destroy it, it will be recreated the next time this function is called.\"},{\"id\":\"Player_GetStartingPosition\",\"kind\":2,\"label\":\"Player_GetStartingPosition\",\"documentation\":\"Returns the starting position for this player \"},{\"id\":\"Player_GetStrategicPointCaptureProgress\",\"kind\":2,\"label\":\"Player_GetStrategicPointCaptureProgress\",\"documentation\":\"Returns a value (-1.0 to 1.0) of how close a point is to being controlled by the team of the player provided nProgress between -1.0 and 0 means an enemy has progress toward owning a point. Values between 0 and 1.0 represent progress being made toward capture. 1.0 is a team controlled point. -1.0 is an enemy controlled point.\"},{\"id\":\"Player_GetTeam\",\"kind\":2,\"label\":\"Player_GetTeam\",\"documentation\":\"Get the team a player is on \"},{\"id\":\"Player_GetUnitCount\",\"kind\":2,\"label\":\"Player_GetUnitCount\",\"documentation\":\"Returns the current number of units the player has. \"},{\"id\":\"Player_GetUpgradeCost\",\"kind\":2,\"label\":\"Player_GetUpgradeCost\",\"documentation\":\"Returns the cost of an upgrade. \"},{\"id\":\"Player_HasAbility\",\"kind\":2,\"label\":\"Player_HasAbility\",\"documentation\":\"Tests to see if a player has an ability \"},{\"id\":\"Player_HasBuilding\",\"kind\":2,\"label\":\"Player_HasBuilding\",\"documentation\":\"Returns true if this player owns any buildings listed in the table. nThis only looks at completed buildings - use Player_HasBuildingUnderConstruction to see if the player is building something\"},{\"id\":\"Player_HasBuildingsExcept\",\"kind\":2,\"label\":\"Player_HasBuildingsExcept\",\"documentation\":\"Returns true if this player owns any buildings. (with exclusions). \"},{\"id\":\"Player_HasBuildingUnderConstruction\",\"kind\":2,\"label\":\"Player_HasBuildingUnderConstruction\",\"documentation\":\"Returns true if this player owns any buildings listed in the table currently under construction. \"},{\"id\":\"Player_HasCapturingSquadNearStrategicPoint\",\"kind\":2,\"label\":\"Player_HasCapturingSquadNearStrategicPoint\",\"documentation\":\"Returns true if the given player has units that are able to capture in the capturable area of the given strategic point \"},{\"id\":\"Player_HasLost\",\"kind\":2,\"label\":\"Player_HasLost\",\"documentation\":\"Checks to see if a player has lost (if player owns any squads and any buildings contained in blueprints) nPass in a table of blueprints of buildings that the player must have in order to be considered \"alive\". Ambient buildings are already take into consideration since they must be occupied by a squad.\"},{\"id\":\"Player_HasMapEntryPosition\",\"kind\":2,\"label\":\"Player_HasMapEntryPosition\",\"documentation\":\"Returns whether a player has a map entry position \"},{\"id\":\"Player_HasUpgrade\",\"kind\":2,\"label\":\"Player_HasUpgrade\",\"documentation\":\"Return true if the squad has purchased the specified upgrade. \"},{\"id\":\"Player_IsAlive\",\"kind\":2,\"label\":\"Player_IsAlive\",\"documentation\":\"Returns true if player is still alive and false if player is dead. Will error if playerIdx is an invalid index. \"},{\"id\":\"Player_IsAllied\",\"kind\":2,\"label\":\"Player_IsAllied\",\"documentation\":\"Returns true if the players are allied and false if they are not. \"},{\"id\":\"Player_IsHuman\",\"kind\":2,\"label\":\"Player_IsHuman\",\"documentation\":\"Returns whether a player is human controlled (local or remote), not dead, and not replaced by an AI \"},{\"id\":\"Player_NumUpgradeComplete\",\"kind\":2,\"label\":\"Player_NumUpgradeComplete\",\"documentation\":\"Returns the number of upgrades that this player has. \"},{\"id\":\"Player_OwnsEGroup\",\"kind\":2,\"label\":\"Player_OwnsEGroup\",\"documentation\":\"Returns true if a given player owns ALL or ANY items in a group \"},{\"id\":\"Player_OwnsEntity\",\"kind\":2,\"label\":\"Player_OwnsEntity\",\"documentation\":\"Returns true if a given player owns an entity \"},{\"id\":\"Player_OwnsSGroup\",\"kind\":2,\"label\":\"Player_OwnsSGroup\",\"documentation\":\"Returns true if a given player owns ALL or ANY items in a group \"},{\"id\":\"Player_OwnsSquad\",\"kind\":2,\"label\":\"Player_OwnsSquad\",\"documentation\":\"Returns true if a given player owns a squad \"},{\"id\":\"Player_RemoveAbilityLockoutZone\",\"kind\":2,\"label\":\"Player_RemoveAbilityLockoutZone\",\"documentation\":\"Removes a marker that was previously a lockout zone. \"},{\"id\":\"Player_RemoveUpgrade\",\"kind\":2,\"label\":\"Player_RemoveUpgrade\",\"documentation\":\"Removes an upgrade from a player \"},{\"id\":\"Player_ResetResource\",\"kind\":2,\"label\":\"Player_ResetResource\",\"documentation\":\"Reset the resource amount for a given player to zero. Also reset team weapon \"},{\"id\":\"Player_RestrictAddOnList\",\"kind\":2,\"label\":\"Player_RestrictAddOnList\",\"documentation\":\"Restrict a list of addons. nlist should contain an array of strings to restrict.\"},{\"id\":\"Player_RestrictBuildingList\",\"kind\":2,\"label\":\"Player_RestrictBuildingList\",\"documentation\":\"Restrict a list of buildings. nlist should contain an array of strings to restrict.\"},{\"id\":\"Player_RestrictResearchList\",\"kind\":2,\"label\":\"Player_RestrictResearchList\",\"documentation\":\"Restrict a list of research items. nlist should contain an array of strings to restrict.\"},{\"id\":\"Player_SetAbilityAvailability\",\"kind\":2,\"label\":\"Player_SetAbilityAvailability\",\"documentation\":\"Sets the availability of an ability. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Player_SetAllCommandAvailabilityInternal\",\"kind\":2,\"label\":\"Player_SetAllCommandAvailabilityInternal\",\"documentation\":\"Sets availability of ALL entity, squad and player commands. \"},{\"id\":\"Player_SetCommandAvailability\",\"kind\":2,\"label\":\"Player_SetCommandAvailability\",\"documentation\":\"Sets the availability of entity, squad and player commands. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Player_SetConstructionMenuAvailability\",\"kind\":2,\"label\":\"Player_SetConstructionMenuAvailability\",\"documentation\":\"Sets the availability of a construction menu. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Player_SetDefaultSquadMoodMode\",\"kind\":2,\"label\":\"Player_SetDefaultSquadMoodMode\",\"documentation\":\"Set default squad mood mode which can be overrided by squad level mood mode settings \"},{\"id\":\"Player_SetEntityProductionAvailability\",\"kind\":2,\"label\":\"Player_SetEntityProductionAvailability\",\"documentation\":\"Sets the availability of an entity production item. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Player_SetHeatGainRate\",\"kind\":2,\"label\":\"Player_SetHeatGainRate\",\"documentation\":\"Set the heat gain rate per second for this player. Heat is gained when near a heat source or garrisoned. \"},{\"id\":\"Player_SetHeatLossRate\",\"kind\":2,\"label\":\"Player_SetHeatLossRate\",\"documentation\":\"Set the heat loss rate per second for this player. Heat is lost when not garrisoned and not near a heat source and not in valid cover. A value of 0 turns off the Cold System for all squads belonging to this player. It will also reset all squads to the default heat level. \"},{\"id\":\"Player_SetMaxCapPopulation\",\"kind\":2,\"label\":\"Player_SetMaxCapPopulation\",\"documentation\":\"Sets the current personnel or vehicle max-cap for a player. The captype is either CT_Personnel or CT_Vehicle (you can't adjust Medic caps just yet). nyou will have to call Player_SetMaxPopulation to adjust the current max population to do this.\"},{\"id\":\"Player_SetMaxPopulation\",\"kind\":2,\"label\":\"Player_SetMaxPopulation\",\"documentation\":\"Sets the current personnel or vehicle cap for a player. The captype is either CT_Personnel or CT_Vehicle (you can't adjust Medic caps just yet). nNote that any modifiers that adjust the current cap will be applied on top of this. Also note, the current cap cannot go higher than the max cap.\"},{\"id\":\"Player_SetPopCapOverride\",\"kind\":2,\"label\":\"Player_SetPopCapOverride\",\"documentation\":\"Sets a pop cap override that ignores any modifiers. \"},{\"id\":\"Player_SetResource\",\"kind\":2,\"label\":\"Player_SetResource\",\"documentation\":\"Set the resource amount for a given player. Ignores income cap and resource sharing. \"},{\"id\":\"Player_SetSquadProductionAvailability\",\"kind\":2,\"label\":\"Player_SetSquadProductionAvailability\",\"documentation\":\"Sets the availability of a squad production item. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Player_SetUpgradeAvailability\",\"kind\":2,\"label\":\"Player_SetUpgradeAvailability\",\"documentation\":\"Sets the availability of an upgrade. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Player_SetUpgradeCost\",\"kind\":2,\"label\":\"Player_SetUpgradeCost\",\"documentation\":\"Sets the cost of an upgrade. \"},{\"id\":\"Player_SpawnGlider\",\"kind\":2,\"label\":\"Player_SpawnGlider\",\"documentation\":\"Spawns a glider and returns it \"},{\"id\":\"Player_StopAbility\",\"kind\":2,\"label\":\"Player_StopAbility\",\"documentation\":\"Abruptly stops an active ability \"},{\"id\":\"Player_StopEarningActionPoints\",\"kind\":2,\"label\":\"Player_StopEarningActionPoints\",\"documentation\":\"Prevents a player from earning any action points (and by extention, command points) \"},{\"id\":\"Player_Triangulate\",\"kind\":2,\"label\":\"Player_Triangulate\",\"documentation\":\"Returns the enemy squads and entities within a player's radio beacons. Radio beacons are shared among team members. \"},{\"id\":\"Actor_Clear\",\"kind\":2,\"label\":\"Actor_Clear\",\"documentation\":\"Clear ties between an actor and any units \"},{\"id\":\"Actor_PlaySpeech\",\"kind\":2,\"label\":\"Actor_PlaySpeech\",\"documentation\":\"Plays a speech event for a given actor WITH a portrait and subtitle nBe VERY careful how you use the 'blockInput' parameter. It blocks all input except mouse movement, a few critical keyboard keys, and the Continue and Menu buttons. So you should always allow a continue button when blocking input. You shouldn't block input for a sticky subtitle! If the speech file is not available, a placeholder time will be calculated for the message using the number of words and the message will be displayed for that length of time.<BR/> Actors: ACTOR.GenericAlly, ACTOR.GenericAxis, ACTOR.Keller, ACTOR.McKay, ACTOR.Conti, ACTOR.Franks, ACTOR.Peoples, ACTOR.Coogi, etc...\"},{\"id\":\"Actor_PlaySpeechWithoutPortrait\",\"kind\":2,\"label\":\"Actor_PlaySpeechWithoutPortrait\",\"documentation\":\"Plays a speech event for a given actor WITHOUT a portrait or subtitle. See Actor_PlaySpeech for more details \"},{\"id\":\"Actor_SetFromSGroup\",\"kind\":2,\"label\":\"Actor_SetFromSGroup\",\"documentation\":\"Tie an entire sgroup to an actor, so audio comes from a squad member \"},{\"id\":\"Actor_SetFromSquad\",\"kind\":2,\"label\":\"Actor_SetFromSquad\",\"documentation\":\"Tie a single squad to an actor, so audio comes from a squad member \"},{\"id\":\"Prox_AreEntitiesNearMarker\",\"kind\":2,\"label\":\"Prox_AreEntitiesNearMarker\",\"documentation\":\"Returns true if ANY or ALL entities from a group are in range of a given position, marker, or territory sector. nMarkers with proximity type rectangle will use circular proximity check if custom range is supplied<BR/>\"},{\"id\":\"Prox_ArePlayerMembersNearMarker\",\"kind\":2,\"label\":\"Prox_ArePlayerMembersNearMarker\",\"documentation\":\"Returns true if ANY or ALL of a player's members (i.e. individual guys, not squads as a whole) are in range of a given position, marker, or territory sector. DO NOT USE THIS FUNCTION UNLESS YOU ABSOLUTELY HAVE TO!! nYou MUST specify a range if you are using a position rather than a marker.\"},{\"id\":\"Prox_ArePlayersNearMarker\",\"kind\":2,\"label\":\"Prox_ArePlayersNearMarker\",\"documentation\":\"Returns true if ANY or ALL of a player's squads are in range of a given position, marker, or territory sector. THIS FUNCTION IS VERY SLOW. DO NOT USE THIS UNLESS ABSOLUTELY NECESSARY. nMarkers with proximity type rectangle will use circular proximity check if custom range is supplied<BR/>\"},{\"id\":\"Prox_AreSquadMembersNearMarker\",\"kind\":2,\"label\":\"Prox_AreSquadMembersNearMarker\",\"documentation\":\"Returns true if ANY or ALL squad members (i.e. individual guys, not squads as a whole) from a group are in range of a given position, marker, or territory sector. DO NOT USE THIS FUNCTION UNLESS YOU ABSOLUTELY HAVE TO!! nMarkers with proximity type rectangle will use circular proximity check if custom range is supplied<BR/>\"},{\"id\":\"Prox_AreSquadsNearMarker\",\"kind\":2,\"label\":\"Prox_AreSquadsNearMarker\",\"documentation\":\"Returns true if ANY or ALL squads from a group are in range of a given position, marker, or territory sector nMarkers with proximity type rectangle will use circular proximity check if custom range is supplied<BR/>\"},{\"id\":\"Prox_AreTeamsNearMarker\",\"kind\":2,\"label\":\"Prox_AreTeamsNearMarker\",\"documentation\":\"Returns true if ANY or ALL of a teams's squads are in range of a given position, marker, or territory sector. THIS FUNCTION IS VERY SLOW. DO NOT USE THIS UNLESS ABSOLUTELY NECESSARY. nMarkers with proximity type rectangle will use circular proximity check if custom range is supplied<BR/>\"},{\"id\":\"Prox_EGroupEGroup\",\"kind\":2,\"label\":\"Prox_EGroupEGroup\",\"documentation\":\"Returns the distance between two entity groups. use checktype PROX_SHORTEST, PROX_LONGEST, or PROX_CENTER. n If check is PROX_SHORTEST this will return the shortest distance between the two groups.<BR/> If check is PROX_LONGEST this will return the longest distance between the two groups.<BR/> If check is PROX_CENTER this will return the distance between the two groups centers.<BR/>\"},{\"id\":\"Prox_EGroupSGroup\",\"kind\":2,\"label\":\"Prox_EGroupSGroup\",\"documentation\":\"Returns the distance between an entity group and a squad group. use checktype PROX_SHORTEST, PROX_LONGEST, or PROX_CENTER. n If check is PROX_SHORTEST this will return the shortest distance between the two groups.<BR/> If check is PROX_LONGEST this will return the longest distance between the two groups.<BR/> If check is PROX_CENTER this will return the distance between the two groups centers.<BR/>\"},{\"id\":\"Prox_EntitiesInProximityOfEntities\",\"kind\":2,\"label\":\"Prox_EntitiesInProximityOfEntities\",\"documentation\":\"Checks if ALL or ANY entities are in proximity of a given entity group. nSet \"all\" to true to check that ALL entities are in proximity, or set \"all\" to false to check for ANY.\"},{\"id\":\"Prox_GetRandomPosition\",\"kind\":2,\"label\":\"Prox_GetRandomPosition\",\"documentation\":\"Takes something (Entity, Squad, SGroup, EGroup, Position) in, then returns a random position nMinimum is ignored if it is greater than the radius\"},{\"id\":\"Prox_MarkerEGroup\",\"kind\":2,\"label\":\"Prox_MarkerEGroup\",\"documentation\":\"Returns the distance between a marker and an entity group. use checktype PROX_SHORTEST, PROX_LONGEST, or PROX_CENTER. n If check is PROX_SHORTEST this will return the shortest distance between the two groups.<BR/> If check is PROX_LONGEST this will return the longest distance between the two groups.<BR/> If check is PROX_CENTER this will return the distance between the two groups centers.<BR/>\"},{\"id\":\"Prox_MarkerSGroup\",\"kind\":2,\"label\":\"Prox_MarkerSGroup\",\"documentation\":\"Returns the distance between a marker and a squad group. use checktype PROX_SHORTEST, PROX_LONGEST, or PROX_CENTER. n If check is PROX_SHORTEST this will return the shortest distance between the two groups.<BR/> If check is PROX_LONGEST this will return the longest distance between the two groups.<BR/> If check is PROX_CENTER this will return the distance between the two groups centers.<BR/>\"},{\"id\":\"Prox_PlayerEntitiesInProximityOfEntities\",\"kind\":2,\"label\":\"Prox_PlayerEntitiesInProximityOfEntities\",\"documentation\":\"Checks if ALL or ANY players squads are in proximity of a given entity group. nSet \"all\" to true to check that ALL entities are in proximity, or set \"all\" to false to check for ANY.\"},{\"id\":\"Prox_PlayerEntitiesInProximityOfPlayerSquads\",\"kind\":2,\"label\":\"Prox_PlayerEntitiesInProximityOfPlayerSquads\",\"documentation\":\"Checks if ALL or ANY players entities are in proximity of a given squad group. nSet \"all\" to true to check that ALL entities are in proximity, or set \"all\" to false to check for ANY.\"},{\"id\":\"Prox_PlayerEntitiesInProximityOfSquads\",\"kind\":2,\"label\":\"Prox_PlayerEntitiesInProximityOfSquads\",\"documentation\":\"Checks if ALL or ANY players entities are in proximity of a given squad group. nSet \"all\" to true to check that ALL entities are in proximity, or set \"all\" to false to check for ANY.\"},{\"id\":\"Prox_PlayerSquadsInProximityOfEntities\",\"kind\":2,\"label\":\"Prox_PlayerSquadsInProximityOfEntities\",\"documentation\":\"Checks if ALL or ANY players squads are in proximity of a given entity group. nSet \"all\" to true to check that ALL squads are in proximity, or set \"all\" to false to check for ANY.\"},{\"id\":\"Prox_PlayerSquadsInProximityOfPlayerEntities\",\"kind\":2,\"label\":\"Prox_PlayerSquadsInProximityOfPlayerEntities\",\"documentation\":\"Checks if ALL or ANY players squads are in proximity of a given players entities. nSet \"all\" to true to check that ALL squads are in proximity, or set \"all\" to false to check for ANY.\"},{\"id\":\"Prox_PlayerSquadsInProximityOfPlayerSquads\",\"kind\":2,\"label\":\"Prox_PlayerSquadsInProximityOfPlayerSquads\",\"documentation\":\"Checks if ALL or ANY players squads are in proximity of a given players squads. nSet \"all\" to true to check that ALL squads are in proximity, or set \"all\" to false to check for ANY.\"},{\"id\":\"Prox_PlayerSquadsInProximityOfSquads\",\"kind\":2,\"label\":\"Prox_PlayerSquadsInProximityOfSquads\",\"documentation\":\"Checks if ALL or ANY players squads are in proximity of a given squad group. nSet \"all\" to true to check that ALL squads are in proximity, or set \"all\" to false to check for ANY.\"},{\"id\":\"Prox_SGroupSGroup\",\"kind\":2,\"label\":\"Prox_SGroupSGroup\",\"documentation\":\"Returns the distance between two squad groups. use checktype PROX_SHORTEST, PROX_LONGEST, or PROX_CENTER. n If check is PROX_SHORTEST this will return the shortest distance between the two groups.<BR/> If check is PROX_LONGEST this will return the longest distance between the two groups.<BR/> If check is PROX_CENTER this will return the distance between the two groups centers.<BR/>\"},{\"id\":\"Prox_SquadsInProximityOfEntities\",\"kind\":2,\"label\":\"Prox_SquadsInProximityOfEntities\",\"documentation\":\"Checks if ALL or ANY squads are in proximity of a given entity group. nSet \"all\" to true to check that ALL squads are in proximity, or set \"all\" to false to check for ANY.\"},{\"id\":\"Prox_SquadsInProximityOfSquads\",\"kind\":2,\"label\":\"Prox_SquadsInProximityOfSquads\",\"documentation\":\"Checks if ALL or ANY squads are in proximity of a given squad group. nSet \"all\" to true to check that ALL squads are in proximity, or set \"all\" to false to check for ANY.\"},{\"id\":\"Rule_Add\",\"kind\":2,\"label\":\"Rule_Add\",\"documentation\":\"Add a rule to be executed every frame. Priority can be from 0 to 1000, with 0 being the lowest. Priority is used in conjunction with Rule_RemoveAll so that rules with high priority do not get removed. \"},{\"id\":\"Rule_AddDelayedInterval\",\"kind\":2,\"label\":\"Rule_AddDelayedInterval\",\"documentation\":\"Add a rule to be executed at every 'interval' seconds, after an initial delay. Priority can be from 0 to 1000, with 0 being the lowest. Priority is used in conjunction with Rule_RemoveAll so that rules with high priority do not get removed. \"},{\"id\":\"Rule_AddDelayedIntervalEx\",\"kind\":2,\"label\":\"Rule_AddDelayedIntervalEx\",\"documentation\":\"Add a rule to be executed 'calls' times, at every 'interval' seconds, after an initial delay. Priority can be from 0 to 1000, with 0 being the lowest. Priority is used in conjunction with Rule_RemoveAll so that rules with high priority do not get removed. \"},{\"id\":\"Rule_AddEGroupEvent\",\"kind\":2,\"label\":\"Rule_AddEGroupEvent\",\"documentation\":\"Add a rule to be executed when the event of 'eventType' has happened on the 'EGroup'Event types are: GE_EntityKilled \"},{\"id\":\"Rule_AddEntityEvent\",\"kind\":2,\"label\":\"Rule_AddEntityEvent\",\"documentation\":\"Add a rule to be executed when the event of 'eventType' has happened on the 'entity' nEvent types are: GE_EntityKilled\"},{\"id\":\"Rule_AddGlobalEvent\",\"kind\":2,\"label\":\"Rule_AddGlobalEvent\",\"documentation\":\"Add a rule to be executed when the event of 'eventType' has happened, regardless of source nEvent types are: GE_PlayerBeingAttacked\"},{\"id\":\"Rule_AddInterval\",\"kind\":2,\"label\":\"Rule_AddInterval\",\"documentation\":\"Add a rule to be executed at every 'interval' seconds. Priority can be from 0 to 1000, with 0 being the lowest. Priority is used in conjunction with Rule_RemoveAll so that rules with high priority do not get removed. \"},{\"id\":\"Rule_AddIntervalEx\",\"kind\":2,\"label\":\"Rule_AddIntervalEx\",\"documentation\":\"Add a rule to be executed 'calls' times, at every 'interval' seconds. Priority can be from 0 to 1000, with 0 being the lowest. Priority is used in conjunction with Rule_RemoveAll so that rules with high priority do not get removed. \"},{\"id\":\"Rule_AddOneShot\",\"kind\":2,\"label\":\"Rule_AddOneShot\",\"documentation\":\"Add a rule to be executed once, after 'delay' seconds. Priority can be from 0 to 1000, with 0 being the lowest. Priority is used in conjunction with Rule_RemoveAll so that rules with high priority do not get removed. \"},{\"id\":\"Rule_AddPlayerEvent\",\"kind\":2,\"label\":\"Rule_AddPlayerEvent\",\"documentation\":\"Add a rule to be executed when the event of 'eventType' has happened on the 'player' nEvent types are: GE_PlayerBeingAttacked\"},{\"id\":\"Rule_AddSGroupEvent\",\"kind\":2,\"label\":\"Rule_AddSGroupEvent\",\"documentation\":\"Add a rule to be executed when the event of 'eventType' has happened on squads in the 'sgroup' nEvent types are: GE_SquadKilled, GE_SquadPinned, GE_SquadCommandIssued, GE_AbilityExecuted\"},{\"id\":\"Rule_AddSquadEvent\",\"kind\":2,\"label\":\"Rule_AddSquadEvent\",\"documentation\":\"Add a rule to be executed when the event of 'eventType' has happened on the 'squad' nEvent types are: GE_SquadKilled, GE_SquadPinned, GE_SquadCommandIssued, GE_AbilityExecuted\"},{\"id\":\"Rule_ChangeInterval\",\"kind\":2,\"label\":\"Rule_ChangeInterval\",\"documentation\":\"Change 'interval' seconds of an existing rule \"},{\"id\":\"Rule_Exists\",\"kind\":2,\"label\":\"Rule_Exists\",\"documentation\":\"Test if a rule is currently active \"},{\"id\":\"Rule_Remove\",\"kind\":2,\"label\":\"Rule_Remove\",\"documentation\":\"Remove a currently active rule (this does not remove any event rules) \"},{\"id\":\"Rule_RemoveAll\",\"kind\":2,\"label\":\"Rule_RemoveAll\",\"documentation\":\"Kills all rules below a certain priority. The default is to remove ALL rules. \"},{\"id\":\"Rule_RemoveEGroupEvent\",\"kind\":2,\"label\":\"Rule_RemoveEGroupEvent\",\"documentation\":\"Remove an active event rule for entities in the 'egroup' \"},{\"id\":\"Rule_RemoveEntityEvent\",\"kind\":2,\"label\":\"Rule_RemoveEntityEvent\",\"documentation\":\"Remove an active event rule for the 'entity' \"},{\"id\":\"Rule_RemoveGlobalEvent\",\"kind\":2,\"label\":\"Rule_RemoveGlobalEvent\",\"documentation\":\"Remove an active event rule that's been applied 'globally' \"},{\"id\":\"Rule_RemoveIfExist\",\"kind\":2,\"label\":\"Rule_RemoveIfExist\",\"documentation\":\"Remove a currently active rule if it exists(this does not remove any event rules) \"},{\"id\":\"Rule_RemoveMe\",\"kind\":2,\"label\":\"Rule_RemoveMe\",\"documentation\":\"Remove a currently executing rule (only works inside a rule function) \"},{\"id\":\"Rule_RemovePlayerEvent\",\"kind\":2,\"label\":\"Rule_RemovePlayerEvent\",\"documentation\":\"Remove an active event rule for the 'player' \"},{\"id\":\"Rule_RemoveSGroupEvent\",\"kind\":2,\"label\":\"Rule_RemoveSGroupEvent\",\"documentation\":\"Remove an active event rule for squads in the 'sgroup' \"},{\"id\":\"Rule_RemoveSquadEvent\",\"kind\":2,\"label\":\"Rule_RemoveSquadEvent\",\"documentation\":\"Remove an active event rule for the 'squad' \"},{\"id\":\"Setup_Player\",\"kind\":2,\"label\":\"Setup_Player\",\"documentation\":\"Initializes the all of the players settings in one function and returns the playerID. n In most cases you will call this function from OnGameSetup and store the returned playerId in a global variable. The player index should be in the range [1 , (numPlayers)].<BR/><BR/> Valid player races: \"Allied Airborne Company\", \"Allied Assault Company\", \"Allied Rifle Company\", \"Allied Tank Company\", \"Axis Armored Company\",\"Axis Heavy Tank Company\", \"Axis Infantry Company\",\"Axis Pioneer Company\"<BR/><BR/> Example:<BR/>function OnGameSetup( )<BR/><TAB/>g_player1 = Setup_Player(0, \"PlayerDisplayName\", \"Allied Assault Company\", 1)<BR/> <TAB/>-- g_player2 and g_player3 will be on the same team (allies)<BR/> <TAB/>g_player2 = Setup_Player(1, \"$20000\", \"Axis Infantry Company\", 2)<BR/> <TAB/>g_player3 = Setup_Player(2, \"$20001\", \"Axis Infantry Company\", 2)<BR/> --? The team ID starts from one!!end\"},{\"id\":\"Cmd_StopSquadsExcept\",\"kind\":2,\"label\":\"Cmd_StopSquadsExcept\",\"documentation\":\"Pass in a group to command to 'stop'. Pass in booleans for capturing and building \"},{\"id\":\"Misc_IsEGroupOnScreen\",\"kind\":2,\"label\":\"Misc_IsEGroupOnScreen\",\"documentation\":\"Test whether ANY or ALL of an EGroup is on screen currently (not strict) \"},{\"id\":\"Misc_IsSGroupOnScreen\",\"kind\":2,\"label\":\"Misc_IsSGroupOnScreen\",\"documentation\":\"Test whether ANY or ALL of an SGroup is on screen currently (not strict) \"},{\"id\":\"SGroup_Add\",\"kind\":2,\"label\":\"SGroup_Add\",\"documentation\":\"Adds an squadron to the end of a group if the group doesnt already have it. \"},{\"id\":\"SGroup_AddAbility\",\"kind\":2,\"label\":\"SGroup_AddAbility\",\"documentation\":\"Adds an ability to all squads in an sgroup. \"},{\"id\":\"SGroup_AddGroup\",\"kind\":2,\"label\":\"SGroup_AddGroup\",\"documentation\":\"Same as EGroup_AddGroup. Note: You cannot mix squad groups and entity groups. \"},{\"id\":\"SGroup_AddGroups\",\"kind\":2,\"label\":\"SGroup_AddGroups\",\"documentation\":\"Add a list of multiple sgroups into an existing group. \"},{\"id\":\"SGroup_AddLeaders\",\"kind\":2,\"label\":\"SGroup_AddLeaders\",\"documentation\":\"Adds a leader to all squads in a group that can take a leader. nThis function will bypass all cost and queue prereqs\"},{\"id\":\"SGroup_AddSlotItemToDropOnDeath\",\"kind\":2,\"label\":\"SGroup_AddSlotItemToDropOnDeath\",\"documentation\":\"Add to the list of slot items to drop when any one of the squads is wiped out nSGroup_AddSlotItemToDropOnDeath( squadid, item, false )\"},{\"id\":\"SGroup_CanCastAbilityOnEntity\",\"kind\":2,\"label\":\"SGroup_CanCastAbilityOnEntity\",\"documentation\":\"Test whether ANY or ALL of a group can be ordered to do this ability on the target squad \"},{\"id\":\"SGroup_CanCastAbilityOnPosition\",\"kind\":2,\"label\":\"SGroup_CanCastAbilityOnPosition\",\"documentation\":\"Test whether ANY or ALL of a group can be ordered to do this ability on the target position \"},{\"id\":\"SGroup_CanCastAbilityOnSquad\",\"kind\":2,\"label\":\"SGroup_CanCastAbilityOnSquad\",\"documentation\":\"Test whether ANY or ALL of a group can be ordered to do this ability on the target entity \"},{\"id\":\"SGroup_CanInstantReinforceNow\",\"kind\":2,\"label\":\"SGroup_CanInstantReinforceNow\",\"documentation\":\"Return true if ANY or ALL of a group can reinforce now \"},{\"id\":\"SGroup_CanSeeSGroup\",\"kind\":2,\"label\":\"SGroup_CanSeeSGroup\",\"documentation\":\"Returns true if ALL or ANY squads in a group can see ALL or ANY squads in a target sgroup. \"},{\"id\":\"SGroup_Clear\",\"kind\":2,\"label\":\"SGroup_Clear\",\"documentation\":\"Removes all entities from a group. \"},{\"id\":\"SGroup_ClearPostureSuggestion\",\"kind\":2,\"label\":\"SGroup_ClearPostureSuggestion\",\"documentation\":\"Clears any previous posture suggestions made to a squad \"},{\"id\":\"SGroup_Compare\",\"kind\":2,\"label\":\"SGroup_Compare\",\"documentation\":\"Returns true if the contents of the two groups are equal. Order of the entities does not matter. \"},{\"id\":\"SGroup_CompleteEntityUpgrade\",\"kind\":2,\"label\":\"SGroup_CompleteEntityUpgrade\",\"documentation\":\"Applies an upgrade to all squad entities in an sgroup. \"},{\"id\":\"SGroup_ContainsBlueprints\",\"kind\":2,\"label\":\"SGroup_ContainsBlueprints\",\"documentation\":\"Check if a group contains ALL or ANY of the blueprints. \"},{\"id\":\"SGroup_ContainsSGroup\",\"kind\":2,\"label\":\"SGroup_ContainsSGroup\",\"documentation\":\"Returns true if SGroup1 contains ANY or ALL of SGroup2 \"},{\"id\":\"SGroup_ContainsSquad\",\"kind\":2,\"label\":\"SGroup_ContainsSquad\",\"documentation\":\"Returns true if SGroup contains a particular SquadID \"},{\"id\":\"SGroup_Count\",\"kind\":2,\"label\":\"SGroup_Count\",\"documentation\":\"Returns the total number of spawned and despawned squads in a group. nNOTE: SGroup_Count does not count the individual soldiers in an SGroup. For that, use SGroup_TotalMembersCount\"},{\"id\":\"SGroup_CountDeSpawned\",\"kind\":2,\"label\":\"SGroup_CountDeSpawned\",\"documentation\":\"Returns the number of despawned squads in a group. \"},{\"id\":\"SGroup_CountSpawned\",\"kind\":2,\"label\":\"SGroup_CountSpawned\",\"documentation\":\"Returns the number of spawned squads in a group. \"},{\"id\":\"SGroup_Create\",\"kind\":2,\"label\":\"SGroup_Create\",\"documentation\":\"Returns a new squadron group with the given name. n Squad groups are used for all units and vehicles. You can issue orders such as move and attack to an entire squad group. If you want a group for buildings or objects such as trees, use an EntityGroupObs instead.<BR/> Note that you are allowed to have unamed squadgroups or squadgroups with the samename. Be careful not to create duplicates of your squad group when you dont intend to. To be safe, you can check if the SquadGroupObs you want to create exists using SGroup_Exists( )\"},{\"id\":\"SGroup_CreateIfNotFound\",\"kind\":2,\"label\":\"SGroup_CreateIfNotFound\",\"documentation\":\"Find a squad group from name. Creates a new one with given name if it doesnt exist. \"},{\"id\":\"SGroup_CreateKickerMessage\",\"kind\":2,\"label\":\"SGroup_CreateKickerMessage\",\"documentation\":\"Create and display kicker message on the each squad in the sgroup to the player \"},{\"id\":\"SGroup_DeSpawn\",\"kind\":2,\"label\":\"SGroup_DeSpawn\",\"documentation\":\"Despawn all spawned squads in a group. \"},{\"id\":\"SGroup_Destroy\",\"kind\":2,\"label\":\"SGroup_Destroy\",\"documentation\":\"Manually destroy a group that you dont need anymore. \"},{\"id\":\"SGroup_DestroyAllInMarker\",\"kind\":2,\"label\":\"SGroup_DestroyAllInMarker\",\"documentation\":\"Destroys all items in a group that are in proximity to a given marker. \"},{\"id\":\"SGroup_DestroyAllSquads\",\"kind\":2,\"label\":\"SGroup_DestroyAllSquads\",\"documentation\":\"Destroys all spawned and despawned squads in a group. n Be careful not to confuse this with SGroup_Destroy which destroys the group and NOT the squads it contains. This function will destroy spawned and despawned items in a group\"},{\"id\":\"SGroup_DisableCombatPlans\",\"kind\":2,\"label\":\"SGroup_DisableCombatPlans\",\"documentation\":\"Disables all current combat plans for the squads in the sgroup \"},{\"id\":\"SGroup_Duplicate\",\"kind\":2,\"label\":\"SGroup_Duplicate\",\"documentation\":\"Duplicates an SGroup n Creates a copy of sgroup1 in sgroup2. The function will clear sgroup2 beforehand if necessary.\"},{\"id\":\"SGroup_EnableAttention\",\"kind\":2,\"label\":\"SGroup_EnableAttention\",\"documentation\":\"Sets whether an entity pays attention to its surroundings \"},{\"id\":\"SGroup_EnableMinimapIndicator\",\"kind\":2,\"label\":\"SGroup_EnableMinimapIndicator\",\"documentation\":\"Enable or disable minimap indicator on all squads in the sgroup \"},{\"id\":\"SGroup_EnableSurprise\",\"kind\":2,\"label\":\"SGroup_EnableSurprise\",\"documentation\":\"Enables or disables the surprise feature for an sgroup \"},{\"id\":\"SGroup_EnableUIDecorator\",\"kind\":2,\"label\":\"SGroup_EnableUIDecorator\",\"documentation\":\"Enable or disable decorators on all squads in the sgroup \"},{\"id\":\"SGroup_Exists\",\"kind\":2,\"label\":\"SGroup_Exists\",\"documentation\":\"Returns true if the squad group with the given name exists \"},{\"id\":\"SGroup_FaceEachOther\",\"kind\":2,\"label\":\"SGroup_FaceEachOther\",\"documentation\":\"Makes two SGroups face each other \"},{\"id\":\"SGroup_FaceMarker\",\"kind\":2,\"label\":\"SGroup_FaceMarker\",\"documentation\":\"Makes a SGroup face a marker. \"},{\"id\":\"SGroup_Filter\",\"kind\":2,\"label\":\"SGroup_Filter\",\"documentation\":\"Filters an SGroup by blueprint. n Blueprints can be provided by name or by ID, and in a table if you want to filter on more than one type. Setting filtertype to FILTER_KEEP results in the group only containing squads of the types listed in the blueprint table. Setting filtertype to FILTER_REMOVE will strip those same squads out and leave those that aren't of the types listed. Setting splitSGroup will move any squads being KEEP or REMOVE to it. This SGroup will NOT be cleared beforehand.\"},{\"id\":\"SGroup_FilterCount\",\"kind\":2,\"label\":\"SGroup_FilterCount\",\"documentation\":\"Pass in a group and it will filter it down to the indicated number \"},{\"id\":\"SGroup_FilterThreat\",\"kind\":2,\"label\":\"SGroup_FilterThreat\",\"documentation\":\"Searches an SGroup and finds the first threat within the table (searching first to last) and removes all other SBPs. n Optional parameter bEmpty can be set to true, will clear the SGroup if none of the SBPS in the table are found.\"},{\"id\":\"SGroup_ForEach\",\"kind\":2,\"label\":\"SGroup_ForEach\",\"documentation\":\"Call a lua function for each item in a group. Function will recieve (groupid, itemindex, itemid) and should return true to break or false to continue. n function Rule_Test( )<BR/> <TAB/>local DespawnSquad = function( sgroupid, itemindex, squadID )<BR/> <TAB/><TAB/>Squad_Despawn( squadID )<BR/> <TAB/>end<BR/><BR/> <TAB/>SGroup_ForEach( SGroup_FromName(\"sg_Squads\"), DespawnSquad )<BR/> end<BR/><BR/> This functions iterates over spawned squads only.\"},{\"id\":\"SGroup_ForEachAllOrAny\",\"kind\":2,\"label\":\"SGroup_ForEachAllOrAny\",\"documentation\":\"Call a lua function for each item in a group. Function will receive (groupid, itemindex, itemid) and should return a bool. n Only use this to TEST conditions on squads. DO NOT use this to perform operations on all squads, since it may not call your function on all squads (due to short circuit evaluation). This is used for checking if ALL or ANY items in a group match a given predicate. (eg. Are all items in a group chaos marines)<BR/> This functions iterates over spawned squads only.\"},{\"id\":\"SGroup_ForEachAllOrAnyEx\",\"kind\":2,\"label\":\"SGroup_ForEachAllOrAnyEx\",\"documentation\":\"Same as SGroup_ForEachAllOrAny except you have a choice to iterate over spawned squads, despawned squads, or both. \"},{\"id\":\"SGroup_ForEachEx\",\"kind\":2,\"label\":\"SGroup_ForEachEx\",\"documentation\":\"Same as SGroup_ForEach except you have a choice to iterate over spawned squads, despawned squads, or both. \"},{\"id\":\"SGroup_FromName\",\"kind\":2,\"label\":\"SGroup_FromName\",\"documentation\":\"Find an squadron group with a given name. \"},{\"id\":\"SGroup_GetAvgHealth\",\"kind\":2,\"label\":\"SGroup_GetAvgHealth\",\"documentation\":\"Returns the average health of all units in a squad group. nIt now uses the same health measure that's used by the UI, so it does take into account fallen members of a squad\"},{\"id\":\"SGroup_GetAvgLoadout\",\"kind\":2,\"label\":\"SGroup_GetAvgLoadout\",\"documentation\":\"Returns the average loadout of all squads in a group as a percent [0.0, 1.0]. nExample: A group of squads with loadouts of 4/8 and 1/1 would return 0.75\"},{\"id\":\"SGroup_GetDeSpawnedSquadAt\",\"kind\":2,\"label\":\"SGroup_GetDeSpawnedSquadAt\",\"documentation\":\"Returns the despawned squad at a certain position in the group. n This is a one-based index (use index 1 to get the first squad in the group.) It is an error if index > SGroup_GetDeSpawnedCount().\"},{\"id\":\"SGroup_GetGarrisonedBuildingEntity\",\"kind\":2,\"label\":\"SGroup_GetGarrisonedBuildingEntity\",\"documentation\":\"Get the entity id of the building that any squad of the sgroup is garrisoned in \"},{\"id\":\"SGroup_GetHoldEGroup\",\"kind\":2,\"label\":\"SGroup_GetHoldEGroup\",\"documentation\":\"Gets all the entities that an SGroup may occupy and adds them to the EGroupHold \"},{\"id\":\"SGroup_GetHoldSGroup\",\"kind\":2,\"label\":\"SGroup_GetHoldSGroup\",\"documentation\":\"Gets all the squads that an SGroup may occupy and adds them to the SGroupHold \"},{\"id\":\"SGroup_GetInvulnerable\",\"kind\":2,\"label\":\"SGroup_GetInvulnerable\",\"documentation\":\"Check invulnerablity state for ALL or ANY squads in a squad group. n Set all param to true to check for ALL or set to false to check for ANY.\"},{\"id\":\"SGroup_GetLastAttacker\",\"kind\":2,\"label\":\"SGroup_GetLastAttacker\",\"documentation\":\"Gets the last attacker(s) for all the squads in an SGroup Gets the last attacker for all the squads in an SGroup and stores that in SGroupAttacker \"},{\"id\":\"SGroup_GetLoadedVehicleSquad\",\"kind\":2,\"label\":\"SGroup_GetLoadedVehicleSquad\",\"documentation\":\"Get the squad id of the vehicle squad that any squad of the sgroup is loaded in \"},{\"id\":\"SGroup_GetName\",\"kind\":2,\"label\":\"SGroup_GetName\",\"documentation\":\"Returns the name of a given squad group. \"},{\"id\":\"SGroup_GetNumSlotItem\",\"kind\":2,\"label\":\"SGroup_GetNumSlotItem\",\"documentation\":\"Get the number of slot items with the same ID that the squads in the sgroup own \"},{\"id\":\"SGroup_GetOffsetPosition\",\"kind\":2,\"label\":\"SGroup_GetOffsetPosition\",\"documentation\":\"Returns a position (a certain distance away) relative to a squad's current position/orientation. see LuaConsts.scar for explanation of 'offset' parameter \"},{\"id\":\"SGroup_GetPosition\",\"kind\":2,\"label\":\"SGroup_GetPosition\",\"documentation\":\"Returns the center position of a squad group. nDespawned squads are ignored.\"},{\"id\":\"SGroup_GetRandomSpawnedSquad\",\"kind\":2,\"label\":\"SGroup_GetRandomSpawnedSquad\",\"documentation\":\"Get a random spawned squad from sgroup \"},{\"id\":\"SGroup_GetSequence\",\"kind\":2,\"label\":\"SGroup_GetSequence\",\"documentation\":\"Builds a table of SGroupIDs that are named in a sequence. i.e. a name of \"sg_killer\" will find groups \"sg_killer1\", \"sg_killer2\" and so on, up until it looks for a group that isn't there. \"},{\"id\":\"SGroup_GetSpawnedSquadAt\",\"kind\":2,\"label\":\"SGroup_GetSpawnedSquadAt\",\"documentation\":\"Returns the spawned squad at a certain position in the group. n This is a one-based index (use index 1 to get the first squad in the group.) It is an error if index > SGroup_GetSpawnedCount().\"},{\"id\":\"SGroup_GetSpread\",\"kind\":2,\"label\":\"SGroup_GetSpread\",\"documentation\":\"Returns the distance from the centre of the group of the unit that furthest out. \"},{\"id\":\"SGroup_GetSquadsHeld\",\"kind\":2,\"label\":\"SGroup_GetSquadsHeld\",\"documentation\":\"Returns an sgroup containing all squads held by any squad in an sgroup \"},{\"id\":\"SGroup_GetSuppression\",\"kind\":2,\"label\":\"SGroup_GetSuppression\",\"documentation\":\"Get the suppression level for the first squad in the sgroup \"},{\"id\":\"SGroup_GetVeterancyExperience\",\"kind\":2,\"label\":\"SGroup_GetVeterancyExperience\",\"documentation\":\"Get the veterancy experience value for the first squad in the sgroup \"},{\"id\":\"SGroup_GetVeterancyRank\",\"kind\":2,\"label\":\"SGroup_GetVeterancyRank\",\"documentation\":\"Get the veterancy rank for the first squad in the sgroup \"},{\"id\":\"SGroup_HasCritical\",\"kind\":2,\"label\":\"SGroup_HasCritical\",\"documentation\":\"Returns true if ANY or ALL of the squads in the SGroup have the specified critical \"},{\"id\":\"SGroup_HasLeader\",\"kind\":2,\"label\":\"SGroup_HasLeader\",\"documentation\":\"Check if ALL or ANY squads in a sgroup have a leader n Set all param to true to check for ALL or set to false to check for ANY.\"},{\"id\":\"SGroup_HasSquadBlueprint\",\"kind\":2,\"label\":\"SGroup_HasSquadBlueprint\",\"documentation\":\"Check if ALL or ANY of the squads in a group have a specific blueprint. \"},{\"id\":\"SGroup_HasTeamWeapon\",\"kind\":2,\"label\":\"SGroup_HasTeamWeapon\",\"documentation\":\"Returns true if ANY or ALL of the squads in an SGroup are carrying some kind of team weapon \"},{\"id\":\"SGroup_HasUpgrade\",\"kind\":2,\"label\":\"SGroup_HasUpgrade\",\"documentation\":\"Returns whether ANY or ALL squads in an SGroup have the specified upgrade \"},{\"id\":\"SGroup_Hide\",\"kind\":2,\"label\":\"SGroup_Hide\",\"documentation\":\"Hide or show all entities in all squads in an SGroup nBool should be true to hide, false to show\"},{\"id\":\"SGroup_IncreaseVeterancyExperience\",\"kind\":2,\"label\":\"SGroup_IncreaseVeterancyExperience\",\"documentation\":\"Increase squad veterancy experience for all squads in the sgroup. Can do silent promotion (no sound/UI). Can skip modifiers, giving you direct control of experience gained. \"},{\"id\":\"SGroup_IncreaseVeterancyRank\",\"kind\":2,\"label\":\"SGroup_IncreaseVeterancyRank\",\"documentation\":\"Increase squad veterancy rank for all squads in the sgroup. By default, increases rank by 1. Can do silent promotion (no sound/UI. ex: mass rank insrease at mission start) \"},{\"id\":\"SGroup_Intersection\",\"kind\":2,\"label\":\"SGroup_Intersection\",\"documentation\":\"Same as EGroup_Intersection. Note: You cannot mix squad groups and entity groups. n Only squads that are in both groups will be added to 'group'.<BR/> The contents of 'grouptointersect' will not be changed.<BR/> Example: group = (1,2,3,4,5,6) grouptointersect = (2,4,6,8,10) --> group will now equal (2,4,6)\"},{\"id\":\"SGroup_IsAlive\",\"kind\":2,\"label\":\"SGroup_IsAlive\",\"documentation\":\"Returns true if a named squad group is not empty and its average health is > 0.0 \"},{\"id\":\"SGroup_IsAttackMoving\",\"kind\":2,\"label\":\"SGroup_IsAttackMoving\",\"documentation\":\"Returns true if ANY or ALL squads in an SGroup are attack moving. \"},{\"id\":\"SGroup_IsCamouflaged\",\"kind\":2,\"label\":\"SGroup_IsCamouflaged\",\"documentation\":\"Returns true if ANY or ALL of the squads in an SGroup are camouflaged \"},{\"id\":\"SGroup_IsCapturing\",\"kind\":2,\"label\":\"SGroup_IsCapturing\",\"documentation\":\"Checks if ANY or ALL squads in an SGroup are capturing \"},{\"id\":\"SGroup_IsConstructingBuilding\",\"kind\":2,\"label\":\"SGroup_IsConstructingBuilding\",\"documentation\":\"Returns true if ALL or ANY squads in a group are currently constructing a building. nSet all to true to check for ALL or set to false to check for ANY\"},{\"id\":\"SGroup_IsDoingAbility\",\"kind\":2,\"label\":\"SGroup_IsDoingAbility\",\"documentation\":\"Returns if ANY or ALL members of an SGroup are doing an ability \"},{\"id\":\"SGroup_IsDoingAttack\",\"kind\":2,\"label\":\"SGroup_IsDoingAttack\",\"documentation\":\"Returns true if ALL or ANY squads are attacking within the time. \"},{\"id\":\"SGroup_IsDugIn\",\"kind\":2,\"label\":\"SGroup_IsDugIn\",\"documentation\":\"Returns true if ANY or ALL of the squads in the SGroup is dug in (or in the process of digging in) \"},{\"id\":\"SGroup_IsEmpty\",\"kind\":2,\"label\":\"SGroup_IsEmpty\",\"documentation\":\"Returns true if a named squad group is empty \"},{\"id\":\"SGroup_IsFemale\",\"kind\":2,\"label\":\"SGroup_IsFemale\",\"documentation\":\"Returns true if ANY or ALL squads are female \"},{\"id\":\"SGroup_IsHoldingAny\",\"kind\":2,\"label\":\"SGroup_IsHoldingAny\",\"documentation\":\"Returns whether any entity in an SGroup has a hold on anything \"},{\"id\":\"SGroup_IsIdle\",\"kind\":2,\"label\":\"SGroup_IsIdle\",\"documentation\":\"Checks if ANY or ALL squads in an SGroup are idle \"},{\"id\":\"SGroup_IsInCover\",\"kind\":2,\"label\":\"SGroup_IsInCover\",\"documentation\":\"Returns the percentage of the SGroup members that are in cover. Alternatively, specify ANY or ALL as a second parameter to return true/false. \"},{\"id\":\"SGroup_IsInfiltrated\",\"kind\":2,\"label\":\"SGroup_IsInfiltrated\",\"documentation\":\"Returns true if ALL or ANY squads in a group are infiltrated \"},{\"id\":\"SGroup_IsInHoldEntity\",\"kind\":2,\"label\":\"SGroup_IsInHoldEntity\",\"documentation\":\"Checks if ANY or ALL squads in an SGroup are garrisoned in an entity (building) \"},{\"id\":\"SGroup_IsInHoldSquad\",\"kind\":2,\"label\":\"SGroup_IsInHoldSquad\",\"documentation\":\"Checks if ANY or ALL squads in an SGroup are garrisoned in a squad (transport vehicle) \"},{\"id\":\"SGroup_IsMoving\",\"kind\":2,\"label\":\"SGroup_IsMoving\",\"documentation\":\"Returns true if ANY or ALL squads in an SGroup are moving. \"},{\"id\":\"SGroup_IsOnScreen\",\"kind\":2,\"label\":\"SGroup_IsOnScreen\",\"documentation\":\"Returns true if ANY or ALL (use those keywords) of the squads in the group are present onscreen. You can pass in a percentage of the screen to check, so 0.8 would be a centered rectangle occupying 80% of the screen. \"},{\"id\":\"SGroup_IsPinned\",\"kind\":2,\"label\":\"SGroup_IsPinned\",\"documentation\":\"Returns true if ANY or ALL of a group is pinned \"},{\"id\":\"SGroup_IsReinforcing\",\"kind\":2,\"label\":\"SGroup_IsReinforcing\",\"documentation\":\"Returns true if ALL or ANY squads in a group are currently calling for reinforcments. nSet all to true to check for ALL or set to false to check for ANY\"},{\"id\":\"SGroup_IsRetreating\",\"kind\":2,\"label\":\"SGroup_IsRetreating\",\"documentation\":\"Returns true if ANY or ALL of the squads in an SGroup are currently retreating \"},{\"id\":\"SGroup_IsSettingDemolitions\",\"kind\":2,\"label\":\"SGroup_IsSettingDemolitions\",\"documentation\":\"Returns true if ANY or ALL squads are setting demolitions \"},{\"id\":\"SGroup_IsSuppressed\",\"kind\":2,\"label\":\"SGroup_IsSuppressed\",\"documentation\":\"Returns true is ANY or ALL of a group is suppressed \"},{\"id\":\"SGroup_IsUnderAttack\",\"kind\":2,\"label\":\"SGroup_IsUnderAttack\",\"documentation\":\"Returns true if ALL or ANY squads are under attack within the time. \"},{\"id\":\"SGroup_IsUnderAttackByPlayer\",\"kind\":2,\"label\":\"SGroup_IsUnderAttackByPlayer\",\"documentation\":\"Check if the squads are attacked by the player \"},{\"id\":\"SGroup_IsUnderAttackFromDirection\",\"kind\":2,\"label\":\"SGroup_IsUnderAttackFromDirection\",\"documentation\":\"Returns true if ALL or ANY squads are under attack from a direction within the time. see LuaConsts.scar for types of directions. you can pass in a table of directions \"},{\"id\":\"SGroup_IsUpgrading\",\"kind\":2,\"label\":\"SGroup_IsUpgrading\",\"documentation\":\"Returns true if ALL or ANY squads in a group are currently upgrading. You can pass in nil for upgradeid if it doesn't matter what is being upgraded. nSet all to true to check for ALL or set to false to check for ANY\"},{\"id\":\"SGroup_IsUsingAbility\",\"kind\":2,\"label\":\"SGroup_IsUsingAbility\",\"documentation\":\"Checks if ANY or ALL squads in an SGroup are using an ability nDoes not check WHAT ability a squad is using.\"},{\"id\":\"SGroup_Kill\",\"kind\":2,\"label\":\"SGroup_Kill\",\"documentation\":\"Kills all squads in an SGroup. This kills them 'naturally', as opposed to SGroup_DestroyAllSquads() which makes them blink out of existance. \"},{\"id\":\"SGroup_Remove\",\"kind\":2,\"label\":\"SGroup_Remove\",\"documentation\":\"Removes an squadron from a group. \"},{\"id\":\"SGroup_RemoveGroup\",\"kind\":2,\"label\":\"SGroup_RemoveGroup\",\"documentation\":\"Remove from the first SGroup all squads contained in the second SGroup. SGroup2 remains untouched. \"},{\"id\":\"SGroup_RemoveUpgrade\",\"kind\":2,\"label\":\"SGroup_RemoveUpgrade\",\"documentation\":\"Removes upgrade(s) from an sgroup \"},{\"id\":\"SGroup_ReSpawn\",\"kind\":2,\"label\":\"SGroup_ReSpawn\",\"documentation\":\"Respawn all despawned squads in a group. \"},{\"id\":\"SGroup_RestoreCombatPlans\",\"kind\":2,\"label\":\"SGroup_RestoreCombatPlans\",\"documentation\":\"Restore all current combat plans for the squads in the sgroup \"},{\"id\":\"SGroup_RewardActionPoints\",\"kind\":2,\"label\":\"SGroup_RewardActionPoints\",\"documentation\":\"Give action points to the squad \"},{\"id\":\"SGroup_SetAnimatorState\",\"kind\":2,\"label\":\"SGroup_SetAnimatorState\",\"documentation\":\"Set animation state of a state machine for an SGroup. Please only use this for simple animations \"},{\"id\":\"SGroup_SetAutoTargetting\",\"kind\":2,\"label\":\"SGroup_SetAutoTargetting\",\"documentation\":\"Sets whether a weapon to auto-target things or not \"},{\"id\":\"SGroup_SetAvgHealth\",\"kind\":2,\"label\":\"SGroup_SetAvgHealth\",\"documentation\":\"Sets the health of each squad in a squad group to a given percent [0.0, 1.0]. \"},{\"id\":\"SGroup_SetAvgMorale\",\"kind\":2,\"label\":\"SGroup_SetAvgMorale\",\"documentation\":\"Sets the moral of each squad in a squad group to a given percent [0.0, 1.0]. \"},{\"id\":\"SGroup_SetCrushable\",\"kind\":2,\"label\":\"SGroup_SetCrushable\",\"documentation\":\"Overrides crushable behavior for an sgroup \"},{\"id\":\"SGroup_SetInvulnerable\",\"kind\":2,\"label\":\"SGroup_SetInvulnerable\",\"documentation\":\"Enable/Disable invulnerablity for an entire SGroup. Use true and false for simple on/off, or use a number between 0.0 and 1.0 for more precise control on how much damage a squad can take before it takes no more. nThe optional reset_time is used to automatically remove invulnerability after a set time. If invulnerable, both health and critical damage are disabled.\"},{\"id\":\"SGroup_SetInvulnerableToCritical\",\"kind\":2,\"label\":\"SGroup_SetInvulnerableToCritical\",\"documentation\":\"Enable/Disable invulnerablity to criticals for an entire SGroup. \"},{\"id\":\"SGroup_SetMoodMode\",\"kind\":2,\"label\":\"SGroup_SetMoodMode\",\"documentation\":\"Set soldier mood mode. Mode could be MM_Auto, MM_ForceCalm or MM_ForceTense \"},{\"id\":\"SGroup_SetMoveType\",\"kind\":2,\"label\":\"SGroup_SetMoveType\",\"documentation\":\"Set the move type for an SGroup - find the move types in the MOVETYPE table in LuaConsts.scar \"},{\"id\":\"SGroup_SetPlayerOwner\",\"kind\":2,\"label\":\"SGroup_SetPlayerOwner\",\"documentation\":\"Changes the player owner of spawned and despawned squads in an SGroup. \"},{\"id\":\"SGroup_SetRecrewable\",\"kind\":2,\"label\":\"SGroup_SetRecrewable\",\"documentation\":\"Sets all squads in as sgroup to be recrewable or not when abandoned \"},{\"id\":\"SGroup_SetSelectable\",\"kind\":2,\"label\":\"SGroup_SetSelectable\",\"documentation\":\"Set player selectable state of squads in the sgroup \"},{\"id\":\"SGroup_SetSharedProductionQueue\",\"kind\":2,\"label\":\"SGroup_SetSharedProductionQueue\",\"documentation\":\"Enables shared team production on a building (teammates can build using THEIR resources) \"},{\"id\":\"SGroup_SetSuppression\",\"kind\":2,\"label\":\"SGroup_SetSuppression\",\"documentation\":\"Set the suppression level for all squads in the sgroup \"},{\"id\":\"SGroup_SetTeamWeaponCapturable\",\"kind\":2,\"label\":\"SGroup_SetTeamWeaponCapturable\",\"documentation\":\"Set team weapon in the squads to be capturable or not \"},{\"id\":\"SGroup_SetVeterancyDisplayVisibility\",\"kind\":2,\"label\":\"SGroup_SetVeterancyDisplayVisibility\",\"documentation\":\"Sets the visibility of in-game veterancy art for the squads in given SGroup \"},{\"id\":\"SGroup_SetWorldOwned\",\"kind\":2,\"label\":\"SGroup_SetWorldOwned\",\"documentation\":\"Makes an sgroup neutral \"},{\"id\":\"SGroup_Single\",\"kind\":2,\"label\":\"SGroup_Single\",\"documentation\":\"Creates a squad group containing a single squad n Creates an SGroup containing just one squad, creating the group if it doesn't exist and clearing it if it does. It returns the name of the SGroup.\"},{\"id\":\"SGroup_SnapFaceEachOther\",\"kind\":2,\"label\":\"SGroup_SnapFaceEachOther\",\"documentation\":\"Makes two SGroups face each other at no time \"},{\"id\":\"SGroup_SuggestPosture\",\"kind\":2,\"label\":\"SGroup_SuggestPosture\",\"documentation\":\"Suggests a posture to an SGroup, lasting the passed duration nPosture of 0 is prone, 1 is kneel/crouch, and 2 is standing. Duration is in seconds, negative means indefinate.\"},{\"id\":\"SGroup_TotalMembersCount\",\"kind\":2,\"label\":\"SGroup_TotalMembersCount\",\"documentation\":\"Returns the total count of all members of all the squads in a given SGroup. \"},{\"id\":\"SGroup_WarpToMarker\",\"kind\":2,\"label\":\"SGroup_WarpToMarker\",\"documentation\":\"Warps all members of an SGroup immediately to a marker \"},{\"id\":\"SGroup_WarpToPos\",\"kind\":2,\"label\":\"SGroup_WarpToPos\",\"documentation\":\"Warps all members of an SGroup immediately to a new position \"},{\"id\":\"Util_Grab\",\"kind\":2,\"label\":\"Util_Grab\",\"documentation\":\"Grabs the selected squads/entities and returns them in a group. Only works with -dev. nTries to return an SGroup first. If it's empty, it will return an EGroup. (Both types can't be selected at the same time)\"},{\"id\":\"SGroup_FacePosition\",\"kind\":2,\"label\":\"SGroup_FacePosition\",\"documentation\":\"Works like Squad_FacePosition. All Squads will face the same direction, with the squad the closest to the center determining the direction. nThis function works on spawned squads only.\"},{\"id\":\"SGroup_SnapFacePosition\",\"kind\":2,\"label\":\"SGroup_SnapFacePosition\",\"documentation\":\"Works like SGroup_FacePosition except with no interpolation. All Squads will face the same direction, with the squad the closest to the center determining the direction. nThis function works on spawned squads only.\"},{\"id\":\"Squad_AddAbility\",\"kind\":2,\"label\":\"Squad_AddAbility\",\"documentation\":\"Allows the squad to use this ability \"},{\"id\":\"Squad_AddSlotItemToDropOnDeath\",\"kind\":2,\"label\":\"Squad_AddSlotItemToDropOnDeath\",\"documentation\":\"Add to the list of slot items to drop when this squad is wiped out nSquad_AddSlotItemToDropOnDeath( squadid, item, false )\"},{\"id\":\"Squad_CanCaptureStrategicPoint\",\"kind\":2,\"label\":\"Squad_CanCaptureStrategicPoint\",\"documentation\":\"Returns true if squad can capture stategic point \"},{\"id\":\"Squad_CanCaptureTeamWeapon\",\"kind\":2,\"label\":\"Squad_CanCaptureTeamWeapon\",\"documentation\":\"True if the squad can capture the entity sync weapon \"},{\"id\":\"Squad_CanCastAbilityOnEGroup\",\"kind\":2,\"label\":\"Squad_CanCastAbilityOnEGroup\",\"documentation\":\"Test whether a squad can be ordered to do this ability on any member of the target EGroup \"},{\"id\":\"Squad_CanCastAbilityOnEntity\",\"kind\":2,\"label\":\"Squad_CanCastAbilityOnEntity\",\"documentation\":\"Test whether a squad can be ordered to do this ability on the target squad \"},{\"id\":\"Squad_CanCastAbilityOnPosition\",\"kind\":2,\"label\":\"Squad_CanCastAbilityOnPosition\",\"documentation\":\"Test whether a squad can be ordered to do this ability on the target squad \"},{\"id\":\"Squad_CanCastAbilityOnSGroup\",\"kind\":2,\"label\":\"Squad_CanCastAbilityOnSGroup\",\"documentation\":\"Test whether a squad can be ordered to do this ability on any member of the target SGroup \"},{\"id\":\"Squad_CanCastAbilityOnSquad\",\"kind\":2,\"label\":\"Squad_CanCastAbilityOnSquad\",\"documentation\":\"Test whether a squad can be ordered to do this ability on the target squad \"},{\"id\":\"Squad_CancelProductionQueueItem\",\"kind\":2,\"label\":\"Squad_CancelProductionQueueItem\",\"documentation\":\"Cancels an item in a production queue. Index 0 is the currently producing item. \"},{\"id\":\"Squad_CanHold\",\"kind\":2,\"label\":\"Squad_CanHold\",\"documentation\":\"Checks whether a squad can hold any squad \"},{\"id\":\"Squad_CanInstantReinforceNow\",\"kind\":2,\"label\":\"Squad_CanInstantReinforceNow\",\"documentation\":\"Returns true if the squad is available to be reinforced \"},{\"id\":\"Squad_CanLoadSquad\",\"kind\":2,\"label\":\"Squad_CanLoadSquad\",\"documentation\":\"Checks whether a squad can load another squad \"},{\"id\":\"Squad_CanPickupSlotItem\",\"kind\":2,\"label\":\"Squad_CanPickupSlotItem\",\"documentation\":\"True if the squad can pickup the entity slot item \"},{\"id\":\"Squad_CanRecrew\",\"kind\":2,\"label\":\"Squad_CanRecrew\",\"documentation\":\"True if the squad can recrew the entity \"},{\"id\":\"Squad_CanSeeEntity\",\"kind\":2,\"label\":\"Squad_CanSeeEntity\",\"documentation\":\"Returns true if the distance between a target entity and the source squad is less than it squad's sight distance. There is no LOS or FOW check. nTry Player_CanSeeEntity() if you care about LOS or FOW.\"},{\"id\":\"Squad_CanSeeSquad\",\"kind\":2,\"label\":\"Squad_CanSeeSquad\",\"documentation\":\"Returns true if the distance between a target squad and the source squad is less than it squad's sight distance. There is no LOS or FOW check. nTry Player_CanSeeSquad() if you care about LOS or FOW.\"},{\"id\":\"Squad_ClearPostureSuggestion\",\"kind\":2,\"label\":\"Squad_ClearPostureSuggestion\",\"documentation\":\"Clears any previous posture suggestions made to a squad \"},{\"id\":\"Squad_CompleteUpgrade\",\"kind\":2,\"label\":\"Squad_CompleteUpgrade\",\"documentation\":\"Instantly adds an upgrade to a given squad \"},{\"id\":\"Squad_Count\",\"kind\":2,\"label\":\"Squad_Count\",\"documentation\":\"Returns the number of units currently in a squad (spawned AND despawned!!) \"},{\"id\":\"Squad_CreateAndSpawnToward\",\"kind\":2,\"label\":\"Squad_CreateAndSpawnToward\",\"documentation\":\"Create a squad, spawn it and assign it to a player. n This will create a squad of size 'loadoutCount' and of unit type 'unit_base' (from squad blueprint)<BR/> Note: loadoutCount will be clipped to loadoutMin and loadoutMax from the squad blueprint. A loudoutCount of zero means create the whole squad as is.\"},{\"id\":\"Squad_DeSpawn\",\"kind\":2,\"label\":\"Squad_DeSpawn\",\"documentation\":\"Despawn the entire squad at its current position. \"},{\"id\":\"Squad_Destroy\",\"kind\":2,\"label\":\"Squad_Destroy\",\"documentation\":\"Remove an squad from the world and destroy it. \"},{\"id\":\"Squad_EnableProductionQueue\",\"kind\":2,\"label\":\"Squad_EnableProductionQueue\",\"documentation\":\"Sets whether a squad can produce anything (including upgrades) \"},{\"id\":\"Squad_EnableSurprise\",\"kind\":2,\"label\":\"Squad_EnableSurprise\",\"documentation\":\"Enables or disables the surprise feature on thie given squad \"},{\"id\":\"Squad_EntityAt\",\"kind\":2,\"label\":\"Squad_EntityAt\",\"documentation\":\"ZERO-BASED get of entities out of squads \"},{\"id\":\"Squad_FacePosition\",\"kind\":2,\"label\":\"Squad_FacePosition\",\"documentation\":\"Set the rotation of all troopers in a squad to face the position. nThe center of the squad will face the position and all other troops will use the same rotation as the from center vector.<BR/><BR/> This function works on spawned squads only.\"},{\"id\":\"Squad_FaceSquad\",\"kind\":2,\"label\":\"Squad_FaceSquad\",\"documentation\":\"Get 2 squads to face each other. This function works on spawned squads only. \"},{\"id\":\"Squad_FindCover\",\"kind\":2,\"label\":\"Squad_FindCover\",\"documentation\":\"Tries to find cover within a certain radius of a position. If no cover is found, it returns the position used for the search. \"},{\"id\":\"Squad_FindCoverCompareCurrent\",\"kind\":2,\"label\":\"Squad_FindCoverCompareCurrent\",\"documentation\":\"Tries to find cover within a certain radius of a position, traveling a max distance to get there, and possibly comparing against current position's cover. If no cover is found, it returns the position used for the search. \"},{\"id\":\"Squad_FromWorldID\",\"kind\":2,\"label\":\"Squad_FromWorldID\",\"documentation\":\"Get a squad from a mission editor ID. \"},{\"id\":\"Squad_GetActiveCommand\",\"kind\":2,\"label\":\"Squad_GetActiveCommand\",\"documentation\":\"Returns the active squad command. \"},{\"id\":\"Squad_GetAttackPlan\",\"kind\":2,\"label\":\"Squad_GetAttackPlan\",\"documentation\":\"Get name of current Squad AI attack plan \"},{\"id\":\"Squad_GetAttackTargets\",\"kind\":2,\"label\":\"Squad_GetAttackTargets\",\"documentation\":\"Find the squad member current or forced targets. If found, the targets squads are added to the sgroup. Entity targets like buildings are ignored \"},{\"id\":\"Squad_GetBlueprint\",\"kind\":2,\"label\":\"Squad_GetBlueprint\",\"documentation\":\"Returns the name of the squad blueprint (from the attribute editor) \"},{\"id\":\"Squad_GetDestination\",\"kind\":2,\"label\":\"Squad_GetDestination\",\"documentation\":\"Returns the squad's destination, if it's moving. IMPORTANT: you must only call this function if Squad_HasDestination has returned true. \"},{\"id\":\"Squad_GetGameID\",\"kind\":2,\"label\":\"Squad_GetGameID\",\"documentation\":\"Returns an integer containing the unqiue squad ID for this squad. \"},{\"id\":\"Squad_GetHeading\",\"kind\":2,\"label\":\"Squad_GetHeading\",\"documentation\":\"Returns the average heading of the spawned units in the squad. The heading is currently a lua table with three entries (x, y, z) \"},{\"id\":\"Squad_GetHealth\",\"kind\":2,\"label\":\"Squad_GetHealth\",\"documentation\":\"Returns the current health of a squad. nThe current health of the squad is the total health of each entity in that squad.\"},{\"id\":\"Squad_GetHealthMax\",\"kind\":2,\"label\":\"Squad_GetHealthMax\",\"documentation\":\"Returns the max health of the squad. n The max health of a squad is the max health of each entity in that squad. This means that the max health of a squad may change when entities are added or removed from the squad.<BR/><BR/>\"},{\"id\":\"Squad_GetHealthPercentage\",\"kind\":2,\"label\":\"Squad_GetHealthPercentage\",\"documentation\":\"Returns how much of an original squad's health is left, accounting for deaths (ex: a squad of 3 riflemen would be at 50% health, since they started with 6 members) Note: This is the same percentage that the UI uses. \"},{\"id\":\"Squad_GetHoldEntity\",\"kind\":2,\"label\":\"Squad_GetHoldEntity\",\"documentation\":\"Get which building (entity) is the squad garrisoned nPlease use Squad_IsInHold() to check first\"},{\"id\":\"Squad_GetHoldSquad\",\"kind\":2,\"label\":\"Squad_GetHoldSquad\",\"documentation\":\"Get which vehicle (squad) is the squad garrisoned nPlease use Squad_IsInHold() to check first\"},{\"id\":\"Squad_GetInvulnerable\",\"kind\":2,\"label\":\"Squad_GetInvulnerable\",\"documentation\":\"Check if the squad is invulnerable or not \"},{\"id\":\"Squad_GetInvulnerableEntityCount\",\"kind\":2,\"label\":\"Squad_GetInvulnerableEntityCount\",\"documentation\":\"Returns the number of invulnerable member \"},{\"id\":\"Squad_GetInvulnerableMinCap\",\"kind\":2,\"label\":\"Squad_GetInvulnerableMinCap\",\"documentation\":\"Returns the highest invulnerable min cap percentage from members of the squad. \"},{\"id\":\"Squad_GetLastAttacker\",\"kind\":2,\"label\":\"Squad_GetLastAttacker\",\"documentation\":\"Find the last squad attacker on this squad. If found, the squad is added to the sgroup \"},{\"id\":\"Squad_GetLastAttackers\",\"kind\":2,\"label\":\"Squad_GetLastAttackers\",\"documentation\":\"Find the squad attackers on this squad from the last seconds specified. If found, the squads are added to the sgroup. Building attackers are ignored \"},{\"id\":\"Squad_GetLastEntityAttacker\",\"kind\":2,\"label\":\"Squad_GetLastEntityAttacker\",\"documentation\":\"Find the last entity attacker on this squad. If found, the entity added to egroup \"},{\"id\":\"Squad_GetMax\",\"kind\":2,\"label\":\"Squad_GetMax\",\"documentation\":\"Returns the max number of units allowed in the squad \"},{\"id\":\"Squad_GetNumSlotItem\",\"kind\":2,\"label\":\"Squad_GetNumSlotItem\",\"documentation\":\"Get the number of slot items with the same ID that the squad has nSquad_GetNumSlotItem( squadid, item )\"},{\"id\":\"Squad_GetOffsetPosition\",\"kind\":2,\"label\":\"Squad_GetOffsetPosition\",\"documentation\":\"Returns a position relative to a squad's current position and orientation. see LuaConsts.scar for explanation of 'offset' parameter. \"},{\"id\":\"Squad_GetPinnedPlan\",\"kind\":2,\"label\":\"Squad_GetPinnedPlan\",\"documentation\":\"Get name of current Squad AI reaction plan \"},{\"id\":\"Squad_GetPlayerOwner\",\"kind\":2,\"label\":\"Squad_GetPlayerOwner\",\"documentation\":\"Returns the Player owner of the given squad. Squad MUST NOT be owned by the world. \"},{\"id\":\"Squad_GetPosition\",\"kind\":2,\"label\":\"Squad_GetPosition\",\"documentation\":\"Returns the average position of the spawned units in the squad. The position is currently a lua table with three entries (x, y, z) \"},{\"id\":\"Squad_GetPositionDeSpawned\",\"kind\":2,\"label\":\"Squad_GetPositionDeSpawned\",\"documentation\":\"Returns the average position of the despawned AND spawned units in the squad. \"},{\"id\":\"Squad_GetProductionQueueItem\",\"kind\":2,\"label\":\"Squad_GetProductionQueueItem\",\"documentation\":\"Returns the blueprint for a production queue item with index. \"},{\"id\":\"Squad_GetProductionQueueItemType\",\"kind\":2,\"label\":\"Squad_GetProductionQueueItemType\",\"documentation\":\"Returns the production type (PITEM_Upgrade, PITEM_Spawn, PITEM_SquadUpgrade, PITEM_SquadReinforce, PITEM_PlayerUpgrade) for a production queue item with index. \"},{\"id\":\"Squad_GetProductionQueueSize\",\"kind\":2,\"label\":\"Squad_GetProductionQueueSize\",\"documentation\":\"Returns the number of items in the squad's production queue. nIt is an error to call this function on a squad that does not have a production queue.<BR/> Use Squad_HasProductionQueue to check that the squad has a queue.\"},{\"id\":\"Squad_GetReactionPlan\",\"kind\":2,\"label\":\"Squad_GetReactionPlan\",\"documentation\":\"Get name of current Squad AI reaction plan \"},{\"id\":\"Squad_GetRetaliationPlan\",\"kind\":2,\"label\":\"Squad_GetRetaliationPlan\",\"documentation\":\"Get name of current Squad AI retaliation plan \"},{\"id\":\"Squad_GetSlotItemAt\",\"kind\":2,\"label\":\"Squad_GetSlotItemAt\",\"documentation\":\"Returns the ID of the slot item. Use Squad_GetSlotItemCount to determine how many slot items the squad has. The first index is 1 \"},{\"id\":\"Squad_GetSlotItemCount\",\"kind\":2,\"label\":\"Squad_GetSlotItemCount\",\"documentation\":\"Returns how many slot items this squad has \"},{\"id\":\"Squad_GetSlotItemsTable\",\"kind\":2,\"label\":\"Squad_GetSlotItemsTable\",\"documentation\":\"Returns a table of SlotItem ID's that this squad currently owns \"},{\"id\":\"Squad_GetSquadsHeld\",\"kind\":2,\"label\":\"Squad_GetSquadsHeld\",\"documentation\":\"Adds all squads held by 'squad' to an sgroup \"},{\"id\":\"Squad_GetSuppression\",\"kind\":2,\"label\":\"Squad_GetSuppression\",\"documentation\":\"Check current squad suppresion level. Return value from 0 to 1 \"},{\"id\":\"Squad_GetVeterancyExperience\",\"kind\":2,\"label\":\"Squad_GetVeterancyExperience\",\"documentation\":\"Get current squad veterancy experience \"},{\"id\":\"Squad_GetVeterancyRank\",\"kind\":2,\"label\":\"Squad_GetVeterancyRank\",\"documentation\":\"Get current squad veterancy rank. \"},{\"id\":\"Squad_GiveSlotItem\",\"kind\":2,\"label\":\"Squad_GiveSlotItem\",\"documentation\":\"Gives a slot item to the squad. Can fail due to not enough slots left \"},{\"id\":\"Squad_GiveSlotItemsFromTable\",\"kind\":2,\"label\":\"Squad_GiveSlotItemsFromTable\",\"documentation\":\"Gives all slot items in a table to the squad. The table should come from Squad_GetSlotItemsTable \"},{\"id\":\"Squad_HasActiveCommand\",\"kind\":2,\"label\":\"Squad_HasActiveCommand\",\"documentation\":\"Returns true if there's an active command currently for the squad \"},{\"id\":\"Squad_HasAnyCritical\",\"kind\":2,\"label\":\"Squad_HasAnyCritical\",\"documentation\":\"Return true if any entity in the squad has any critical applied to it \"},{\"id\":\"Squad_HasCritical\",\"kind\":2,\"label\":\"Squad_HasCritical\",\"documentation\":\"Check if a squad has a critical or not \"},{\"id\":\"Squad_HasDestination\",\"kind\":2,\"label\":\"Squad_HasDestination\",\"documentation\":\"Returns whether this squad is moving and has a destination \"},{\"id\":\"Squad_HasProductionQueue\",\"kind\":2,\"label\":\"Squad_HasProductionQueue\",\"documentation\":\"Returns true if a squad has a production queue. \"},{\"id\":\"Squad_HasSlotItem\",\"kind\":2,\"label\":\"Squad_HasSlotItem\",\"documentation\":\"Check if a squad has a specific slot item \"},{\"id\":\"Squad_HasTeamWeapon\",\"kind\":2,\"label\":\"Squad_HasTeamWeapon\",\"documentation\":\"Returns true if the squad is carrying some kind of team weapon \"},{\"id\":\"Squad_HasUpgrade\",\"kind\":2,\"label\":\"Squad_HasUpgrade\",\"documentation\":\"Return true if the squad has purchased the specified upgrade. \"},{\"id\":\"Squad_IncreaseVeterancyExperience\",\"kind\":2,\"label\":\"Squad_IncreaseVeterancyExperience\",\"documentation\":\"Increase current squad veterancy experience \"},{\"id\":\"Squad_IncreaseVeterancyRank\",\"kind\":2,\"label\":\"Squad_IncreaseVeterancyRank\",\"documentation\":\"Increase current squad veterancy rank \"},{\"id\":\"Squad_InstantSetupTeamWeapon\",\"kind\":2,\"label\":\"Squad_InstantSetupTeamWeapon\",\"documentation\":\"Stops current squads activity and instant setup the team weapon if they have one \"},{\"id\":\"Squad_IsAttacking\",\"kind\":2,\"label\":\"Squad_IsAttacking\",\"documentation\":\"Returns true if any unit in the squad is attacking within the time nTime is in seconds\"},{\"id\":\"Squad_IsCamouflaged\",\"kind\":2,\"label\":\"Squad_IsCamouflaged\",\"documentation\":\"Returns whether ANY entity in the squad is camouflaged \"},{\"id\":\"Squad_IsDoingAbility\",\"kind\":2,\"label\":\"Squad_IsDoingAbility\",\"documentation\":\"True if squad is currently performing the given ability \"},{\"id\":\"Squad_IsFemale\",\"kind\":2,\"label\":\"Squad_IsFemale\",\"documentation\":\"Returns whether the passed in squad is female \"},{\"id\":\"Squad_IsHoldingAny\",\"kind\":2,\"label\":\"Squad_IsHoldingAny\",\"documentation\":\"Check if the squad has a hold on anything (use this on vehicles) \"},{\"id\":\"Squad_IsInCover\",\"kind\":2,\"label\":\"Squad_IsInCover\",\"documentation\":\"Returns true if ALL or ANY troopers in a squad are in cover. nSet all to true to check if all troopers are in cover or set to false to check if any.\"},{\"id\":\"Squad_IsInHoldEntity\",\"kind\":2,\"label\":\"Squad_IsInHoldEntity\",\"documentation\":\"Check if the squad is garrisoned in entity (building) \"},{\"id\":\"Squad_IsInHoldSquad\",\"kind\":2,\"label\":\"Squad_IsInHoldSquad\",\"documentation\":\"Check if the squad is loaded in squad (vehicle \"},{\"id\":\"Squad_IsMoving\",\"kind\":2,\"label\":\"Squad_IsMoving\",\"documentation\":\"Returns whether any entity in the squad is moving \"},{\"id\":\"Squad_IsPinned\",\"kind\":2,\"label\":\"Squad_IsPinned\",\"documentation\":\"True if squad is currently pinned \"},{\"id\":\"Squad_IsReinforcing\",\"kind\":2,\"label\":\"Squad_IsReinforcing\",\"documentation\":\"Returns true if the squad is currently reinforcing. This function will return false if the squad does not have a reinforce ext. \"},{\"id\":\"Squad_IsRetreating\",\"kind\":2,\"label\":\"Squad_IsRetreating\",\"documentation\":\"Returns true if the squad is currently retreating \"},{\"id\":\"Squad_IsSuppressed\",\"kind\":2,\"label\":\"Squad_IsSuppressed\",\"documentation\":\"True if squad is currently suppressed \"},{\"id\":\"Squad_IsUnderAttack\",\"kind\":2,\"label\":\"Squad_IsUnderAttack\",\"documentation\":\"Returns true if any unit in the squad is under attack within the time nTime is in seconds\"},{\"id\":\"Squad_IsUnderAttackByPlayer\",\"kind\":2,\"label\":\"Squad_IsUnderAttackByPlayer\",\"documentation\":\"Returns true if squad is under attack by enemy from a particular player nTime is in seconds\"},{\"id\":\"Squad_IsUnderAttackFromDirection\",\"kind\":2,\"label\":\"Squad_IsUnderAttackFromDirection\",\"documentation\":\"Returns true if the squad was under attack from a certain direction (8 offset types, see LuaConsts.scar) \"},{\"id\":\"Squad_IsUpgrading\",\"kind\":2,\"label\":\"Squad_IsUpgrading\",\"documentation\":\"Returns true if the squad is currently upgrading something specific. \"},{\"id\":\"Squad_IsUpgradingAny\",\"kind\":2,\"label\":\"Squad_IsUpgradingAny\",\"documentation\":\"Returns true if the squad is currently upgrading anything. \"},{\"id\":\"Squad_IsValid\",\"kind\":2,\"label\":\"Squad_IsValid\",\"documentation\":\"Check if a squad with the given ID can be found in the world \"},{\"id\":\"Squad_Kill\",\"kind\":2,\"label\":\"Squad_Kill\",\"documentation\":\"Kill whole squad. Sets health to 0, and triggers death effects. \"},{\"id\":\"Squad_RemoveAbility\",\"kind\":2,\"label\":\"Squad_RemoveAbility\",\"documentation\":\"Removes an ability that was previously added by Squad_AddAbility. You cannot remove static abilities (from AE: squad_ability_ext) \"},{\"id\":\"Squad_RemoveUpgrade\",\"kind\":2,\"label\":\"Squad_RemoveUpgrade\",\"documentation\":\"Removes an upgrade from a squad \"},{\"id\":\"Squad_RewardActionPoints\",\"kind\":2,\"label\":\"Squad_RewardActionPoints\",\"documentation\":\"Give squad action points \"},{\"id\":\"Squad_SetAnimatorState\",\"kind\":2,\"label\":\"Squad_SetAnimatorState\",\"documentation\":\"Set animation state of a state machine for a squad Please only use this for simple animations \"},{\"id\":\"Squad_SetAttackPlan\",\"kind\":2,\"label\":\"Squad_SetAttackPlan\",\"documentation\":\"Set overriding Squad AI attack plan \"},{\"id\":\"Squad_SetHealth\",\"kind\":2,\"label\":\"Squad_SetHealth\",\"documentation\":\"Set the health of all units in a squad. Health must be in range [0.0, 1.0] \"},{\"id\":\"Squad_SetInvulnerable\",\"kind\":2,\"label\":\"Squad_SetInvulnerable\",\"documentation\":\"Set invulnerability on the squad. Reset time is in seconds. If it it set, the invulnerability will expire after this time. \"},{\"id\":\"Squad_SetInvulnerableEntityCount\",\"kind\":2,\"label\":\"Squad_SetInvulnerableEntityCount\",\"documentation\":\"Make a squad invulnerable to physical damage when number of members drop to or below specified count. nresetTime is the time in seconds that vulnerability will be restored.; zero time for reset time means the buff will last forever\"},{\"id\":\"Squad_SetInvulnerableMinCap\",\"kind\":2,\"label\":\"Squad_SetInvulnerableMinCap\",\"documentation\":\"Make a squad invulnerable to physical damage. nresetTime is the time in seconds that vulnerability will be restored.; zero time for reset time means the buff will last forever\"},{\"id\":\"Squad_SetInvulnerableToCritical\",\"kind\":2,\"label\":\"Squad_SetInvulnerableToCritical\",\"documentation\":\"set invulnerability to critical effect for all entities in the entire squad. Invulnerable to critical also means that kills a entity will not have effect \"},{\"id\":\"Squad_SetMoodMode\",\"kind\":2,\"label\":\"Squad_SetMoodMode\",\"documentation\":\"Set soldier mood mode. \"},{\"id\":\"Squad_SetMoveType\",\"kind\":2,\"label\":\"Squad_SetMoveType\",\"documentation\":\"Sets the squad's move type \"},{\"id\":\"Squad_SetPinnedPlan\",\"kind\":2,\"label\":\"Squad_SetPinnedPlan\",\"documentation\":\"Set overriding Squad AI pinned plan \"},{\"id\":\"Squad_SetPlayerOwner\",\"kind\":2,\"label\":\"Squad_SetPlayerOwner\",\"documentation\":\"Changes the owner of the given squad. \"},{\"id\":\"Squad_SetPosition\",\"kind\":2,\"label\":\"Squad_SetPosition\",\"documentation\":\"Moves the squad to an arbitrary new position \"},{\"id\":\"Squad_SetReactionPlan\",\"kind\":2,\"label\":\"Squad_SetReactionPlan\",\"documentation\":\"Set overriding Squad AI reaction plan \"},{\"id\":\"Squad_SetRecrewable\",\"kind\":2,\"label\":\"Squad_SetRecrewable\",\"documentation\":\"Set entity inside the squad to be recrewable or not when it becomes abandoned \"},{\"id\":\"Squad_SetRetaliationPlan\",\"kind\":2,\"label\":\"Squad_SetRetaliationPlan\",\"documentation\":\"Set overriding Squad AI idle retaliation plan \"},{\"id\":\"Squad_SetSharedProductionQueue\",\"kind\":2,\"label\":\"Squad_SetSharedProductionQueue\",\"documentation\":\"Enables shared team production on a building (teammates can build using THEIR resources) \"},{\"id\":\"Squad_SetSuppression\",\"kind\":2,\"label\":\"Squad_SetSuppression\",\"documentation\":\"Set current squad suppresion level. Suppression value value from 0 to 1 \"},{\"id\":\"Squad_SetVeterancyDisplayVisibility\",\"kind\":2,\"label\":\"Squad_SetVeterancyDisplayVisibility\",\"documentation\":\"Turn on/off display of the unit portrait veterancy stars \"},{\"id\":\"Squad_SetWorldOwned\",\"kind\":2,\"label\":\"Squad_SetWorldOwned\",\"documentation\":\"Makes a squad neutral \"},{\"id\":\"Squad_Spawn\",\"kind\":2,\"label\":\"Squad_Spawn\",\"documentation\":\"Spawn the entire squad at a given position \"},{\"id\":\"Squad_SpawnToward\",\"kind\":2,\"label\":\"Squad_SpawnToward\",\"documentation\":\"Spawn the entire squad at a given position \"},{\"id\":\"Squad_Split\",\"kind\":2,\"label\":\"Squad_Split\",\"documentation\":\"Split the squad into 2. The new squad size is specified by the number passed in nThe new squad size is specified by the number passed in.\"},{\"id\":\"Squad_StopAbility\",\"kind\":2,\"label\":\"Squad_StopAbility\",\"documentation\":\"Abruptly stops an active ability \"},{\"id\":\"Squad_SuggestPosture\",\"kind\":2,\"label\":\"Squad_SuggestPosture\",\"documentation\":\"Suggests a posture to a squad, lasting the passed duration nPosture of 0 is prone, 1 is kneel/crouch, and 2 is standing. Duration is in seconds, negative means indefinate.\"},{\"id\":\"Squad_WarpToPos\",\"kind\":2,\"label\":\"Squad_WarpToPos\",\"documentation\":\"Warps a squad immediately to a new position \"},{\"id\":\"Stats_BuildingsLost\",\"kind\":2,\"label\":\"Stats_BuildingsLost\",\"documentation\":\"Returns how many buildings a player has lost \"},{\"id\":\"Stats_InfantryLost\",\"kind\":2,\"label\":\"Stats_InfantryLost\",\"documentation\":\"Returns how many infantry a player has lost \"},{\"id\":\"Stats_KillsTotal\",\"kind\":2,\"label\":\"Stats_KillsTotal\",\"documentation\":\"Returns a player's total kills \"},{\"id\":\"Stats_PlayerAt\",\"kind\":2,\"label\":\"Stats_PlayerAt\",\"documentation\":\"Returns player id at given index \"},{\"id\":\"Stats_PlayerCount\",\"kind\":2,\"label\":\"Stats_PlayerCount\",\"documentation\":\"Returns how many players in the game \"},{\"id\":\"Stats_ResGathered\",\"kind\":2,\"label\":\"Stats_ResGathered\",\"documentation\":\"Returns how many resources a player has gathered \"},{\"id\":\"Stats_ResSpent\",\"kind\":2,\"label\":\"Stats_ResSpent\",\"documentation\":\"Returns how many resources a player has spent \"},{\"id\":\"Stats_SoldiersKilled\",\"kind\":2,\"label\":\"Stats_SoldiersKilled\",\"documentation\":\"Returns how many soldiers a player has killed \"},{\"id\":\"Stats_StructuresKilled\",\"kind\":2,\"label\":\"Stats_StructuresKilled\",\"documentation\":\"Returns how many structures a player has killed \"},{\"id\":\"Stats_TeamTally\",\"kind\":2,\"label\":\"Stats_TeamTally\",\"documentation\":\"Takes a statistic function and totals up the results for all the players on a given team \"},{\"id\":\"Stats_TotalDuration\",\"kind\":2,\"label\":\"Stats_TotalDuration\",\"documentation\":\"Returns game time, in seconds \"},{\"id\":\"Stats_TotalSquadsLost\",\"kind\":2,\"label\":\"Stats_TotalSquadsLost\",\"documentation\":\"Returns how many squads a playe has lost \"},{\"id\":\"Stats_UnitSoldierKills\",\"kind\":2,\"label\":\"Stats_UnitSoldierKills\",\"documentation\":\"Returns how many soldiers an SBP have killed. ex: how many soldiers did player2's riflemen kill? \"},{\"id\":\"Stats_UnitStructureKills\",\"kind\":2,\"label\":\"Stats_UnitStructureKills\",\"documentation\":\"Returns how many structures an SBP have killed. ex: how many structures did player2's riflemen kill? \"},{\"id\":\"Stats_UnitTotalKills\",\"kind\":2,\"label\":\"Stats_UnitTotalKills\",\"documentation\":\"Returns how many entities an SBP have killed. ex: how many entities did player2's riflemen kill? \"},{\"id\":\"Stats_UnitVehicleKills\",\"kind\":2,\"label\":\"Stats_UnitVehicleKills\",\"documentation\":\"Returns how many vehicles an SBP have killed. ex: how many vehicles did player2's riflemen kill? \"},{\"id\":\"Stats_VehiclesKilled\",\"kind\":2,\"label\":\"Stats_VehiclesKilled\",\"documentation\":\"Returns how many vehicles a playe has killed \"},{\"id\":\"Stats_VehiclesLost\",\"kind\":2,\"label\":\"Stats_VehiclesLost\",\"documentation\":\"Returns how many vehicles a player has lost \"},{\"id\":\"Stinger_AddEvent\",\"kind\":2,\"label\":\"Stinger_AddEvent\",\"documentation\":\"Add a stinger to trigger at a specific location nYou must remember to set Stinger_Manager going as a rule with a regular interval\"},{\"id\":\"Stinger_AddFunction\",\"kind\":2,\"label\":\"Stinger_AddFunction\",\"documentation\":\"Add a stinger to trigger at a specific location nYou must remember to set Stinger_Manager going as a rule with a regular interval\"},{\"id\":\"Stinger_Remove\",\"kind\":2,\"label\":\"Stinger_Remove\",\"documentation\":\"Remove all stingers triggered from a specific location \"},{\"id\":\"Team_AddResource\",\"kind\":2,\"label\":\"Team_AddResource\",\"documentation\":\"Add resource to each member of a team, as opposed to just setting it. Possible resource types are RT_Manpower, RT_Munition, RT_Fuel, RT_Action \"},{\"id\":\"Team_AddSquadsToSGroup\",\"kind\":2,\"label\":\"Team_AddSquadsToSGroup\",\"documentation\":\"For the given team, get all of the squads gathered into a squadgroup of your naming. nThis will add all squads for the entire team to one group. To do so for each player, iterate the team table\"},{\"id\":\"Team_AreSquadsNearMarker\",\"kind\":2,\"label\":\"Team_AreSquadsNearMarker\",\"documentation\":\"Returns true if ANY of a teams squads are in proximity of a marker \"},{\"id\":\"Team_CanSee\",\"kind\":2,\"label\":\"Team_CanSee\",\"documentation\":\"Returns true if a team can see ALL or ANY items \"},{\"id\":\"Team_ClearArea\",\"kind\":2,\"label\":\"Team_ClearArea\",\"documentation\":\"Any of the team's units in the marker area move out of the area, and can be made invulnerable for a bit whilst they do it nYou can replace the marker with a position and a range - i.e. Team_ClearArea(team, pos, range, invulnerable)\"},{\"id\":\"Team_DefineAllies\",\"kind\":2,\"label\":\"Team_DefineAllies\",\"documentation\":\"Returns 4 playerIDs (player1, player2, player3, player4) for Humans/Allies \"},{\"id\":\"Team_DefineEnemies\",\"kind\":2,\"label\":\"Team_DefineEnemies\",\"documentation\":\"Returns 4 playerIDs (player5, player6, player7, player8) for Enemy Players \"},{\"id\":\"Team_FindByRace\",\"kind\":2,\"label\":\"Team_FindByRace\",\"documentation\":\"Returns the TeamID for a given race. See LuaConsts for constants to use. nYou can pass in multiple races.\"},{\"id\":\"Team_ForEachAllOrAny\",\"kind\":2,\"label\":\"Team_ForEachAllOrAny\",\"documentation\":\"Tests a condition on teams. Calls your function for each player. Parameters of your function: (TeamID, player index, PlayerID). Your function must return true or false to indicate whether the player meets the condition. \"},{\"id\":\"Team_GetAll\",\"kind\":2,\"label\":\"Team_GetAll\",\"documentation\":\"Creates/Clears groups that contain all of a team's units and buildings. Defaults - sg_allsquads and eg_allentities nFills an SGroup with all of the given team's squads, and an EGroup with all the team's entities. If you don't provide and groups, then it defaults to using sg_allsquads and eg_allentities.\"},{\"id\":\"Team_GetAllEntitiesNearMarker\",\"kind\":2,\"label\":\"Team_GetAllEntitiesNearMarker\",\"documentation\":\"Gather together all of a teams's entities that are in proximity to a marker, a position, or within a territory sector into an EGroup. The EGroup is cleared beforehand. nYou can override a marker's normal proximity by specifying a range.\"},{\"id\":\"Team_GetAllSquadsNearMarker\",\"kind\":2,\"label\":\"Team_GetAllSquadsNearMarker\",\"documentation\":\"Gather together all of a teams's squads that are in proximity to a marker, a position, or within a territory sector into an SGroup. The SGroup is cleared beforehand. nYou can override a marker's normal proximity by specifying a range.\"},{\"id\":\"Team_GetBuildingID\",\"kind\":2,\"label\":\"Team_GetBuildingID\",\"documentation\":\"Returns the entityID of the first team owned building listed in the table. nThis only looks at completed buildings\"},{\"id\":\"Team_GetBuildingsCount\",\"kind\":2,\"label\":\"Team_GetBuildingsCount\",\"documentation\":\"Returns the total number of buildings owned by this team. \"},{\"id\":\"Team_GetBuildingsCountExcept\",\"kind\":2,\"label\":\"Team_GetBuildingsCountExcept\",\"documentation\":\"Returns the total number of buildings owned by this team (with exclusions). \"},{\"id\":\"Team_GetBuildingsCountOnly\",\"kind\":2,\"label\":\"Team_GetBuildingsCountOnly\",\"documentation\":\"Returns the number of buildings owned by this team (inclusive). \"},{\"id\":\"Team_GetEnemyTeam\",\"kind\":2,\"label\":\"Team_GetEnemyTeam\",\"documentation\":\"Returns a team's enemy \"},{\"id\":\"Team_GetEntitiesFromType\",\"kind\":2,\"label\":\"Team_GetEntitiesFromType\",\"documentation\":\"Returns an EGroup containing all of the teams entities of a specific unit_type (as defined by the type_ext on the entity) nThis function returns a new EGroup to allow tracking of different types. \"},{\"id\":\"Team_HasBuilding\",\"kind\":2,\"label\":\"Team_HasBuilding\",\"documentation\":\"Returns true if this team owns any buildings listed in the table. nUse ALL to check if all players on the team have this building\"},{\"id\":\"Team_HasBuildingsExcept\",\"kind\":2,\"label\":\"Team_HasBuildingsExcept\",\"documentation\":\"Returns true if this team owns any buildings. (with exclusions). nUse ALL to check if all players on the team have buildings EXCEPT this one\"},{\"id\":\"Team_HasBuildingUnderConstruction\",\"kind\":2,\"label\":\"Team_HasBuildingUnderConstruction\",\"documentation\":\"Returns true if this team owns any buildings listed in the table currently under construction. nUse ALL to check if all players on the team have this building under construction\"},{\"id\":\"Team_IsAlive\",\"kind\":2,\"label\":\"Team_IsAlive\",\"documentation\":\"Returns whether a team is still alive or not (all member players must be 'alive') \"},{\"id\":\"Team_OwnsEGroup\",\"kind\":2,\"label\":\"Team_OwnsEGroup\",\"documentation\":\"Returns true if a given team owns ALL or ANY items in a group \"},{\"id\":\"Team_OwnsEntity\",\"kind\":2,\"label\":\"Team_OwnsEntity\",\"documentation\":\"Returns true if a given team owns an entity \"},{\"id\":\"Team_OwnsSGroup\",\"kind\":2,\"label\":\"Team_OwnsSGroup\",\"documentation\":\"Returns true if a given team owns ALL or ANY items in a group \"},{\"id\":\"Team_OwnsSquad\",\"kind\":2,\"label\":\"Team_OwnsSquad\",\"documentation\":\"Returns true if a given team owns a squad \"},{\"id\":\"Team_RestrictAddOnList\",\"kind\":2,\"label\":\"Team_RestrictAddOnList\",\"documentation\":\"Restrict a list of addons. nlist should contain an array of strings to restrict.\"},{\"id\":\"Team_RestrictBuildingList\",\"kind\":2,\"label\":\"Team_RestrictBuildingList\",\"documentation\":\"Restrict a list of buildings. nlist should contain an array of strings to restrict.\"},{\"id\":\"Team_RestrictResearchList\",\"kind\":2,\"label\":\"Team_RestrictResearchList\",\"documentation\":\"Restrict a list of research items. nlist should contain an array of strings to restrict.\"},{\"id\":\"Team_SetAbilityAvailability\",\"kind\":2,\"label\":\"Team_SetAbilityAvailability\",\"documentation\":\"Sets the availability of an ability. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Team_SetCommandAvailability\",\"kind\":2,\"label\":\"Team_SetCommandAvailability\",\"documentation\":\"Sets the availability of entity, squad and player commands. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Team_SetConstructionMenuAvailability\",\"kind\":2,\"label\":\"Team_SetConstructionMenuAvailability\",\"documentation\":\"Sets the availability of a construction menu. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Team_SetEntityProductionAvailability\",\"kind\":2,\"label\":\"Team_SetEntityProductionAvailability\",\"documentation\":\"Sets the availability of an entity production item. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Team_SetMaxCapPopulation\",\"kind\":2,\"label\":\"Team_SetMaxCapPopulation\",\"documentation\":\"Sets the current personnel or vehicle max-cap for each player on a team. The captype is either CT_Personnel or CT_Vehicle (you can't adjust Medic caps just yet). nyou will have to call Team_SetMaxPopulation to adjust the current max population to do this.\"},{\"id\":\"Team_SetMaxPopulation\",\"kind\":2,\"label\":\"Team_SetMaxPopulation\",\"documentation\":\"Sets the current personnel or vehicle cap for each player on a team. The captype is either CT_Personnel or CT_Vehicle (you can't adjust Medic caps just yet). nNote that any modifiers that adjust the current cap will be applied on top of this. Also note, the current cap cannot go higher than the max cap.\"},{\"id\":\"Team_SetSquadProductionAvailability\",\"kind\":2,\"label\":\"Team_SetSquadProductionAvailability\",\"documentation\":\"Sets the availability of a squad production item. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Team_SetTechTreeByYear\",\"kind\":2,\"label\":\"Team_SetTechTreeByYear\",\"documentation\":\"Sets up the tech tree for a whole team based off the year \"},{\"id\":\"Team_SetUpgradeAvailability\",\"kind\":2,\"label\":\"Team_SetUpgradeAvailability\",\"documentation\":\"Sets the availability of an upgrade. Availability can be either ITEM_LOCKED, ITEM_UNLOCKED, ITEM_REMOVED or ITEM_DEFAULT \"},{\"id\":\"Team_SetUpgradeCost\",\"kind\":2,\"label\":\"Team_SetUpgradeCost\",\"documentation\":\"Sets the cost of an upgrade. \"},{\"id\":\"ToW_DefenseCreateWave\",\"kind\":2,\"label\":\"ToW_DefenseCreateWave\",\"documentation\":\"Starts an enemy wave in a ToW mission set up with proper data. See TheatreOfWar.scar for example data. nYou need to add import(\"TheatreOfWar.scar\") to your mission script to use this - it isn't imported by default\"},{\"id\":\"ToW_SetStandardResources\",\"kind\":2,\"label\":\"ToW_SetStandardResources\",\"documentation\":\"Set a player to have standard starting resources, or use optional override data. nYou need to add import(\"TheatreOfWar.scar\") to your mission script to use this - it isn't imported by default\"},{\"id\":\"ToW_SetUpBattleObjectives\",\"kind\":2,\"label\":\"ToW_SetUpBattleObjectives\",\"documentation\":\"Sets up a default mission objective for Victory Point battles. nYou need to add import(\"TheatreOfWar.scar\") to your mission script to use this - it isn't imported by default\"},{\"id\":\"ToW_SetUpTechTreeByYear\",\"kind\":2,\"label\":\"ToW_SetUpTechTreeByYear\",\"documentation\":\"Restricts a given player's tech tree to just the units that were available in a specific year. nYou need to add import(\"TheatreOfWar.scar\") to your mission script to use this - it isn't imported by default\"},{\"id\":\"Timer_Add\",\"kind\":2,\"label\":\"Timer_Add\",\"documentation\":\"Add the amount of time to the specified timer \"},{\"id\":\"Timer_Advance\",\"kind\":2,\"label\":\"Timer_Advance\",\"documentation\":\"Advances the timer by the specified amount of time \"},{\"id\":\"Timer_Display\",\"kind\":2,\"label\":\"Timer_Display\",\"documentation\":\"Display (in the console) the amount of time remaining in the specified timer. \"},{\"id\":\"Timer_DisplayOnScreen\",\"kind\":2,\"label\":\"Timer_DisplayOnScreen\",\"documentation\":\"Displays a timer on the screen - You need to call this regularly (i.e. every second) to update the onscreen display. THIS IS A TEMPORARY FUNCTION - WELL GET PROPER UI SUPPORT LATER ON \"},{\"id\":\"Timer_End\",\"kind\":2,\"label\":\"Timer_End\",\"documentation\":\"Stop the specified timer. \"},{\"id\":\"Timer_Exists\",\"kind\":2,\"label\":\"Timer_Exists\",\"documentation\":\"Returns whether the timer with this ID exists \"},{\"id\":\"Timer_GetElapsed\",\"kind\":2,\"label\":\"Timer_GetElapsed\",\"documentation\":\"Returns how much time has elapsed since this timer has been started \"},{\"id\":\"Timer_GetMinutesAndSeconds\",\"kind\":2,\"label\":\"Timer_GetMinutesAndSeconds\",\"documentation\":\"Returns TWO values: minutes and seconds. Provide it a function like Timer_GetRemaining or Timer_GetElapsed \"},{\"id\":\"Timer_GetRemaining\",\"kind\":2,\"label\":\"Timer_GetRemaining\",\"documentation\":\"Get the remaining time for the specified timer. \"},{\"id\":\"Timer_IsPaused\",\"kind\":2,\"label\":\"Timer_IsPaused\",\"documentation\":\"Check if the timer is paused. \"},{\"id\":\"Timer_Pause\",\"kind\":2,\"label\":\"Timer_Pause\",\"documentation\":\"Pause the specified timer. \"},{\"id\":\"Timer_Resume\",\"kind\":2,\"label\":\"Timer_Resume\",\"documentation\":\"Resume the specified timer. \"},{\"id\":\"Timer_Start\",\"kind\":2,\"label\":\"Timer_Start\",\"documentation\":\"Start a timer with the specified id, taking the required period ( in seconds ) \"},{\"id\":\"EventCue_Create\",\"kind\":2,\"label\":\"EventCue_Create\",\"documentation\":\"Creates an Event Cue message which automatically sends the camera to a specified point when clicked on. nCan optionally create a 5-second hintpoint at the location when clicked on, and/or call a specified function for you, too. Both of these only activate the first time you click on the event cue to avoid stacking.\"},{\"id\":\"FOW_Enable\",\"kind\":2,\"label\":\"FOW_Enable\",\"documentation\":\"Enables or disables the FOW, including out of bound areas and all entities on the map \"},{\"id\":\"Game_SubTextFade\",\"kind\":2,\"label\":\"Game_SubTextFade\",\"documentation\":\"Fade in and out two or three lines of subtext. nThis function has to support two lines, for backwards compatibility. The 'detail' line is therefore optional.\"},{\"id\":\"HintMouseover_Add\",\"kind\":2,\"label\":\"HintMouseover_Add\",\"documentation\":\"Adds a Hint Point that will only appear on Mouseover of the target. \"},{\"id\":\"HintMouseover_Remove\",\"kind\":2,\"label\":\"HintMouseover_Remove\",\"documentation\":\"Removes a Mouseover Hint Point from the managing function. \"},{\"id\":\"HintPoint_Add\",\"kind\":2,\"label\":\"HintPoint_Add\",\"documentation\":\"Creates a hintpoint attached to a Marker, EGroup, SGroup or position nIf range is set to 0, then the hintpoint is rangeless, see the design document for rangeless features. The following types of hintpoint actions are available. HPAT_Objective HPAT_Hint HPAT_Critical HPAT_Movement HPAT_Attack HPAT_FormationSetup HPAT_RallyPoint HPAT_DeepSnow HPAT_CoverGreen HPAT_CoverYellow HPAT_CoverRed HPAT_Detonation HPAT_Vaulting\"},{\"id\":\"HintPoint_Remove\",\"kind\":2,\"label\":\"HintPoint_Remove\",\"documentation\":\"Removes a hintpoint. \"},{\"id\":\"HintPoint_SetDisplayOffset\",\"kind\":2,\"label\":\"HintPoint_SetDisplayOffset\",\"documentation\":\"Sets a hintpoint's display offset, which is 3D for world hintpoints and 2D for taskbar binding hintpoints (ignore z) \"},{\"id\":\"HintPoint_SetVisible\",\"kind\":2,\"label\":\"HintPoint_SetVisible\",\"documentation\":\"Sets a hintpoint's visibility. Currently, FOW is not accounted for. \"},{\"id\":\"Misc_IsEGroupSelected\",\"kind\":2,\"label\":\"Misc_IsEGroupSelected\",\"documentation\":\"Returns true if ANY or ALL of the EGroup is selected \"},{\"id\":\"Misc_IsSGroupSelected\",\"kind\":2,\"label\":\"Misc_IsSGroupSelected\",\"documentation\":\"Returns true if ANY or ALL of the SGroup is selected \"},{\"id\":\"ThreatArrow_Add\",\"kind\":2,\"label\":\"ThreatArrow_Add\",\"documentation\":\"Adds a threat to an existing group \"},{\"id\":\"ThreatArrow_CreateGroup\",\"kind\":2,\"label\":\"ThreatArrow_CreateGroup\",\"documentation\":\"Creates a group of threats that are represented by a single arrow. Threats can be entities, squads, egroups, sgroups, positions or markers \"},{\"id\":\"ThreatArrow_DestroyAllGroups\",\"kind\":2,\"label\":\"ThreatArrow_DestroyAllGroups\",\"documentation\":\"Destroy all threat groups \"},{\"id\":\"ThreatArrow_DestroyGroup\",\"kind\":2,\"label\":\"ThreatArrow_DestroyGroup\",\"documentation\":\"Destroy a threat group \"},{\"id\":\"ThreatArrow_Remove\",\"kind\":2,\"label\":\"ThreatArrow_Remove\",\"documentation\":\"Removes a threat from an existing group \"},{\"id\":\"UI_AddHintAndFlashAbility\",\"kind\":2,\"label\":\"UI_AddHintAndFlashAbility\",\"documentation\":\"Creates and flashes an ability button on the taskbar if the unit is selected nLength parameter determines how long to flash the item, and the blueprint filter is used if certain squad types need to be selected before flashing the button.\"},{\"id\":\"UI_CreateEventCue\",\"kind\":2,\"label\":\"UI_CreateEventCue\",\"documentation\":\"Creates an event cue without a callback (you won't know when it's clicked) \"},{\"id\":\"UI_CreateMinimapBlip\",\"kind\":2,\"label\":\"UI_CreateMinimapBlip\",\"documentation\":\"Creates a blip on the minimap; return the ID of the blip. n'where' can be an entity, marker, position, egroup, sgroup, or squad. The following blipTypes are available: BT_AttackHere BT_DefendHere BT_CaptureHere BT_General BT_Combat BT_Reveal BT_ObjectivePrimary BT_ObjectiveSecondary\"},{\"id\":\"UI_CreateSGroupKickerMessage\",\"kind\":2,\"label\":\"UI_CreateSGroupKickerMessage\",\"documentation\":\"Create a custom kicker message on the squad and display to the player. \"},{\"id\":\"UI_DeleteMinimapBlip\",\"kind\":2,\"label\":\"UI_DeleteMinimapBlip\",\"documentation\":\"Removes a blip already created on the minimap \"},{\"id\":\"UI_HighlightSGroup\",\"kind\":2,\"label\":\"UI_HighlightSGroup\",\"documentation\":\"Highlights an SGroup in the UI for the given duration \"},{\"id\":\"UI_SetAllowLoadAndSave\",\"kind\":2,\"label\":\"UI_SetAllowLoadAndSave\",\"documentation\":\"Enables or disable load and save features at the pause menu \"},{\"id\":\"UI_SetSGroupSpecialLevel\",\"kind\":2,\"label\":\"UI_SetSGroupSpecialLevel\",\"documentation\":\"Sets a level decorator that's defined in all of the squads squad_ui_ext in the target SGroup nif level value is -1 it will hide the special decorator, if no level is defined -1 is default\"},{\"id\":\"WinWarning_PublishLoseReminder\",\"kind\":2,\"label\":\"WinWarning_PublishLoseReminder\",\"documentation\":\"Triggers a UI event cue and an audio cue that the player is about to lose the game. nThe lower the warningLevel, the closer the player is to losing and the more intense the warning is\"},{\"id\":\"WinWarning_SetMaxTickers\",\"kind\":2,\"label\":\"WinWarning_SetMaxTickers\",\"documentation\":\"Sets the max victory point scores for the game \"},{\"id\":\"WinWarning_SetTickers\",\"kind\":2,\"label\":\"WinWarning_SetTickers\",\"documentation\":\"Sets the victory point scores for the game \"},{\"id\":\"WinWarning_ShowLoseWarning\",\"kind\":2,\"label\":\"WinWarning_ShowLoseWarning\",\"documentation\":\"Call UI_TitleDestroy to remove.\"},{\"id\":\"Clone\",\"kind\":2,\"label\":\"Clone\",\"documentation\":\"Clones a table (recursively) allowing for unadulterated use of the data \"},{\"id\":\"Event_IsAnyRunning\",\"kind\":2,\"label\":\"Event_IsAnyRunning\",\"documentation\":\"Returns true if any event is currently running [at or below (more important than) the priority threshold. If not specified, ignores threshold.] \"},{\"id\":\"Game_EndSP\",\"kind\":2,\"label\":\"Game_EndSP\",\"documentation\":\"Ends the single player game (win/lose). \"},{\"id\":\"Game_FadeToBlack\",\"kind\":2,\"label\":\"Game_FadeToBlack\",\"documentation\":\"Fades the screen to black - FADE_OUT to fade to black, FADE_IN to fade back in \"},{\"id\":\"Import_Once\",\"kind\":2,\"label\":\"Import_Once\",\"documentation\":\"Loads a scar file if it hasn't been loaded yet \"},{\"id\":\"Loc_FormatText\",\"kind\":2,\"label\":\"Loc_FormatText\",\"documentation\":\"Returns a formatted localized string. nUse this function to format localized text. ie %1PLAYERNAME% is going to win. It accepts up to 4 additional LocStrings as parameters.\"},{\"id\":\"Sound_PlayOnSquad\",\"kind\":2,\"label\":\"Sound_PlayOnSquad\",\"documentation\":\"Play sound on the first entity of the squad in sgroup \"},{\"id\":\"Team_GetEntityConcentration\",\"kind\":2,\"label\":\"Team_GetEntityConcentration\",\"documentation\":\"Finds the greatest (or least) concentration of entities owned by a team. nThis function is slow, so don't call it very often\"},{\"id\":\"Team_GetSquadConcentration\",\"kind\":2,\"label\":\"Team_GetSquadConcentration\",\"documentation\":\"Finds the greatest (or least) concentration of squads owned by a team. nThis function is slow, so don't call it very often\"},{\"id\":\"Util_AddMouseoverSquadToSGroup\",\"kind\":2,\"label\":\"Util_AddMouseoverSquadToSGroup\",\"documentation\":\"If there's a squad under the mouse cursor, this adds it to a unique SGroup. Return value is the SGroup it was added to, or nil if there was no squad under the mouse cursor. Pass in true for 'clearGroup' to clear the sgroup before adding the squad. \"},{\"id\":\"Util_ApplyModifier\",\"kind\":2,\"label\":\"Util_ApplyModifier\",\"documentation\":\"Applies any modifier to the target SGroup, EGroup, or Player nValid applytypes are MAT_...(Entity, Squad etc.), if left default assumption is default type for the target Cases you want to define apply\"type\": Weapon Modifiers, Enable Modifiers, or a player modifier for all entity or squad types Valid mathtypes are MUT...(Addition, Multiplication, etc.) Exclusive modifiers will replace all pre-existing modifiers of that modifier type on the target\"},{\"id\":\"Util_AutoAmbient\",\"kind\":2,\"label\":\"Util_AutoAmbient\",\"documentation\":\"Auto-generate an Ambient Event. These are Low priority, and will hopefully interrupt nothing. nTakes a table of Actors and LOC numbers\"},{\"id\":\"Util_AutoIntel\",\"kind\":2,\"label\":\"Util_AutoIntel\",\"documentation\":\"Auto-generate an Intel Event. These are medium priority, and will interrupt a Stinger, but not an NIS. nTakes a table of parameters defining speaker(s) and line(s)\"},{\"id\":\"Util_AutoNISlet\",\"kind\":2,\"label\":\"Util_AutoNISlet\",\"documentation\":\"Auto-generate an NISlet Event, a simple NIS meant to convey mission location. These are high priority, and will interrupt a Stinger and Intel Events. nTakes an NISLET type and a table of parameters defining speaker(s) and line(s) NISLET_BLACK2GAME= 1 -- starts in black and fades up, ends in gamplay NISLET_GAME2GAME = 2 -- transitions from game play to letterbox and backto gameplay NISLET_GAME2BLACK= 3 -- starts in gameplay and ends in black NISLET_GAME2LETTER= 4 -- starts in gameplay and ends in letterbox mode (for transition to sitrep) NISLET_TIME = 1 -- use seconds to wait on camera movements NISLET_VO= 2 -- use voice to wait on camera movementst_eventes.nislet_start = {{camPos = pos1, waitType = NISLET_TIME, waitValue = 5},{camPos = pos2, waitType = NISLET_VO, waitValue = {ACTOR.GenericAlly, 000000}},}\"},{\"id\":\"Util_Autosave\",\"kind\":2,\"label\":\"Util_Autosave\",\"documentation\":\"Automatically save the game for the player. The savegame name is built using the abbreviated mission name + checkpoint. \"},{\"id\":\"Util_ClearWrecksFromMarker\",\"kind\":2,\"label\":\"Util_ClearWrecksFromMarker\",\"documentation\":\"Clears vehicle wrecks from a given area. nArea can be a marker (with or without a range override), a position and range combo, or a territory sector ID. Uses EBP.WRECKED_VEHICLES unless wrecksList is defined.\"},{\"id\":\"Util_DespawnAll\",\"kind\":2,\"label\":\"Util_DespawnAll\",\"documentation\":\"ReSpawns or DeSpawns sgroups (and egroups) for all players or the indicated player. nexamples: Util_DespawnAll(true, true, false) or Util_DespawnAll(true, 1, false) or Util_DespawnAll(false, true, false)\"},{\"id\":\"Util_DifVar\",\"kind\":2,\"label\":\"Util_DifVar\",\"documentation\":\"Takes in a table and chooses the right variable for the difficulty setting. 1-4 elements. Acquires current difficulty by default. \"},{\"id\":\"Util_ElementCanSee\",\"kind\":2,\"label\":\"Util_ElementCanSee\",\"documentation\":\"Returns true if a Player/Team can see any or all of an SGroup/Squad/EGroup/Entity/Position/Marker \"},{\"id\":\"Util_EntityLimit\",\"kind\":2,\"label\":\"Util_EntityLimit\",\"documentation\":\"Checks the entity count for the world and returns true or false depending on the result. A specific value can be passed in to override the default amount. \"},{\"id\":\"Util_FallBackToGarrisonBuilding\",\"kind\":2,\"label\":\"Util_FallBackToGarrisonBuilding\",\"documentation\":\"Try to garrison a loadable building within radius that is closer to the first squad of the sgroup than enemy nThe squad suppression would be resetted before fallling back so that they would not succumb to pinned state\"},{\"id\":\"Util_FindHiddenSpawn\",\"kind\":2,\"label\":\"Util_FindHiddenSpawn\",\"documentation\":\"Finds a hidden position within the FOW between two given points nIf no position is found, returns origin\"},{\"id\":\"Util_ForceRetreatAll\",\"kind\":2,\"label\":\"Util_ForceRetreatAll\",\"documentation\":\"Forces all squads given to retreat, regardless of whether they are on team weapons or not. Disables aiEncounters input (true disables all encounters). \"},{\"id\":\"Util_GarrisonNearbyBuilding\",\"kind\":2,\"label\":\"Util_GarrisonNearbyBuilding\",\"documentation\":\"Finds a nearby building to garrison. can ignore occupied [friendly] buildings. return ID of entity it found, or nil if not found nCan also filter out groups not to occupy\"},{\"id\":\"Util_GarrisonNearbyVehicle\",\"kind\":2,\"label\":\"Util_GarrisonNearbyVehicle\",\"documentation\":\"Finds a nearby vehicle to garrison. can ignore occupied [friendly] vehicles. return ID of vehicle it found, or nil if not found, nCan also filter out groups not to occupy\"},{\"id\":\"Util_GetClosestMarker\",\"kind\":2,\"label\":\"Util_GetClosestMarker\",\"documentation\":\"Returns the closest MarkerID to the entity/marker/pos/egroup/sgroup/squad from the table of markers provided \"},{\"id\":\"Util_GetEntitiesByBP\",\"kind\":2,\"label\":\"Util_GetEntitiesByBP\",\"documentation\":\"Find all the entities with a given blueprint in sourcegroup and add them to destgroup. nSee also: EGroup_Filter()\"},{\"id\":\"Util_GetHealth\",\"kind\":2,\"label\":\"Util_GetHealth\",\"documentation\":\"Determines the health percentage of a given object nReturns average health if the object is a group\"},{\"id\":\"Util_GetMouseoverSGroup\",\"kind\":2,\"label\":\"Util_GetMouseoverSGroup\",\"documentation\":\"Returns a unique SGroup used to hold mouseover squads obtained from Util_AddMouseoverSquadToSGroup \"},{\"id\":\"Util_GetPosition\",\"kind\":2,\"label\":\"Util_GetPosition\",\"documentation\":\"Returns a position from entity/marker/pos/egroup/sgroup/squad \"},{\"id\":\"Util_GetPositionAwayFromPlayer\",\"kind\":2,\"label\":\"Util_GetPositionAwayFromPlayer\",\"documentation\":\"Returns a random position within an area that is not near a player nsearchRadius is the area to look for the location in. Distance is how far from the player's units the position must be.\"},{\"id\":\"Util_GetPositionFromAtoB\",\"kind\":2,\"label\":\"Util_GetPositionFromAtoB\",\"documentation\":\"Returns a position that is distance metres from point A, headed in the direction of point B. nYou can also pass in a percentage (0.0 to 1.0) instead of a distance in metres.\"},{\"id\":\"Util_GetRandomPosition\",\"kind\":2,\"label\":\"Util_GetRandomPosition\",\"documentation\":\"Returns a random position either within the marker's proximity or with a pos and range provided. Range is ignored for rectangular markers \"},{\"id\":\"Util_GetSquadsByBP\",\"kind\":2,\"label\":\"Util_GetSquadsByBP\",\"documentation\":\"Find all the squads with a given blueprint in sourcegroup and add them to destgroup. nSee also: SGroup_Filter()\"},{\"id\":\"Util_GetTrailingNumber\",\"kind\":2,\"label\":\"Util_GetTrailingNumber\",\"documentation\":\"Returns trailing numbers from a string, if it exists, nil otherwise. E.G. \"marker23\" would return 23. \"},{\"id\":\"Util_HasPosition\",\"kind\":2,\"label\":\"Util_HasPosition\",\"documentation\":\"Returns true if given entity/marker/pos/egroup/sgroup/squad has a position; if false, Util_GetPosition will fail. \"},{\"id\":\"Util_HidePlayerForNIS\",\"kind\":2,\"label\":\"Util_HidePlayerForNIS\",\"documentation\":\"Hides all of a player's squads and/or buildings nDoesn't hide buildings a player is in, or any base structures. Only items like sandbags, tanktraps, mg nests, etc. Put multiple playerIDs in a table to hide many players together, or use ALL for the playerID to apply to all players at once.\"},{\"id\":\"Util_IsSequenceSkipped\",\"kind\":2,\"label\":\"Util_IsSequenceSkipped\",\"documentation\":\"Returns whether the currently running sequence has been skipped \"},{\"id\":\"Util_Kill\",\"kind\":2,\"label\":\"Util_Kill\",\"documentation\":\"Kills a given object \"},{\"id\":\"Util_LogSyncWpn\",\"kind\":2,\"label\":\"Util_LogSyncWpn\",\"documentation\":\"Tracks a syncweapon ID and destroys it (by default) or makes it uncapturable (if kill is set to false) \"},{\"id\":\"Util_MarkerFX\",\"kind\":2,\"label\":\"Util_MarkerFX\",\"documentation\":\"Play an events file at a given markers location \"},{\"id\":\"Util_MissionTitle\",\"kind\":2,\"label\":\"Util_MissionTitle\",\"documentation\":\"Play the mission title fade. \"},{\"id\":\"Util_MuteAmbientSound\",\"kind\":2,\"label\":\"Util_MuteAmbientSound\",\"documentation\":\"Enabling this function will mute the ambient sound (NOT all sound). \"},{\"id\":\"Util_NewHUDFeatureEvent\",\"kind\":2,\"label\":\"Util_NewHUDFeatureEvent\",\"documentation\":\"Calls UI_NewHUDFeature() as an IntelEvent. Will get queued as any other event. See UI_NewHUDFeature() for parameter details. \"},{\"id\":\"Util_PlayMovie\",\"kind\":2,\"label\":\"Util_PlayMovie\",\"documentation\":\"Play a movie. nIf onCompleteAfterMovie is true, the onComplete function will play as soon as the movie is over, instead of after the fade-in\"},{\"id\":\"Util_PlayMusic\",\"kind\":2,\"label\":\"Util_PlayMusic\",\"documentation\":\"Plays music from the Data:Sound folder, and stores the music track so it can be resumed after a save/load \"},{\"id\":\"Util_PrintObject\",\"kind\":2,\"label\":\"Util_PrintObject\",\"documentation\":\"Prints out the entire contents of an Object nObjects can be anything (Player, SGroup, Int, Table, String, etc.), but this is most useful for Tables\"},{\"id\":\"Util_ReinforceEvent\",\"kind\":2,\"label\":\"Util_ReinforceEvent\",\"documentation\":\"Creates an Event Cue for an SGroup and repeats it until the SGroup is killed or selected. nAdditionally, a map ping and custome loc strings for the Title and Description can be used.\"},{\"id\":\"Util_ReloadScript\",\"kind\":2,\"label\":\"Util_ReloadScript\",\"documentation\":\"Reloads the running scar script. Current running rules would also be updated to the redefined functioin. \"},{\"id\":\"Util_RestoreMusic\",\"kind\":2,\"label\":\"Util_RestoreMusic\",\"documentation\":\"Resumes playing the music track that was last triggered i.e. after a save/load \"},{\"id\":\"Util_SetPlayerCanSkipSequence\",\"kind\":2,\"label\":\"Util_SetPlayerCanSkipSequence\",\"documentation\":\"Sets it so that a player can skip a scripted sequence. When the skip key is pressed, calls back the given function as a post-sequence setup. noFadeIn stops the system from fading back into gameplay when finished. Call Util_SetPlayerUnableToSkipSequence() when the sequence is finished to disable \"},{\"id\":\"Util_SetPlayerUnableToSkipSequence\",\"kind\":2,\"label\":\"Util_SetPlayerUnableToSkipSequence\",\"documentation\":\"Disables Util_SetPlayerCanSkipSequence \"},{\"id\":\"Util_SortPositionsByClosest\",\"kind\":2,\"label\":\"Util_SortPositionsByClosest\",\"documentation\":\"Returns a table of positions sorted from closest to furthest (or furthes to closest if reverse is true) from the origin \"},{\"id\":\"Util_StartAmbient\",\"kind\":2,\"label\":\"Util_StartAmbient\",\"documentation\":\"Play a Speech Stinger. These are the lowest priority, and will be bumped by Intel Events or NIS's. nThis function should used instead of Event_Start because it handles priorities.\"},{\"id\":\"Util_StartIntel\",\"kind\":2,\"label\":\"Util_StartIntel\",\"documentation\":\"Play an Intel Event. These are medium priority, and will interrupt a Stinger, but not an NIS. nThis function should used instead of Event_Start because it handles priorities.\"},{\"id\":\"Util_StartNislet\",\"kind\":2,\"label\":\"Util_StartNislet\",\"documentation\":\"Play Nislet Event. Starts a Nislet event, and calls back a function for post-nislet setup if the Nislet is skipped. noFadeIn stops the system from fading back into gameplay when the player skips \"},{\"id\":\"Util_StartQuickIntel\",\"kind\":2,\"label\":\"Util_StartQuickIntel\",\"documentation\":\"Play a quick, one-line Intel event. These are medium priority, and will interrupt a Stinger, but not an NIS. nUse this when playing a single line. For multi-line events, use Util_StartIntel \"},{\"id\":\"Util_TableContains\",\"kind\":2,\"label\":\"Util_TableContains\",\"documentation\":\"Checks the first layer of a table and looks for a specified Object, returns true if found. nObjects can be anything (Player, SGroup, Int, Table, String, etc.)\"},{\"id\":\"Util_ToggleAllowIntelEvents\",\"kind\":2,\"label\":\"Util_ToggleAllowIntelEvents\",\"documentation\":\"Debug function used to toggle whether or not IntelEvents are played. Only works with -dev parameter \"},{\"id\":\"Util_TriggerEvent\",\"kind\":2,\"label\":\"Util_TriggerEvent\",\"documentation\":\"Library function to trigger NIS event under a certain sets of conditions. NOTE: if checking against a marker DO NOT specify a range. The range of the marker set in the WorldBuilder will be used. nonscreen_only set to TRUE means the squad must be onscreen if the event is to be triggered.\"},{\"id\":\"Util_UnitCounts\",\"kind\":2,\"label\":\"Util_UnitCounts\",\"documentation\":\"Returns a table containing either the total or a specific player's squad count, entity count, and vehicle count. ntable can be accessed as scene below Get Player Example:<BR/> local t = Util_UnitCounts(player1)<BR/> print(t.squad)<BR/> print(t.entity)<BR/> print(t.vehicle)<BR/> Get World Example:<BR/> local t = Util_UnitCounts(true)<BR/> print(t.squad)<BR/> print(t.entity)<BR/> print(t.vehicle)<BR/> Alternate Format:<BR/> print(Util_UnitCounts(true).squad)<BR/>\"},{\"id\":\"World_KillAllNeutralEntitesNearMarker\",\"kind\":2,\"label\":\"World_KillAllNeutralEntitesNearMarker\",\"documentation\":\"Kills ALL world entities near a marker \"},{\"id\":\"Anim_PlayEntityAnim\",\"kind\":2,\"label\":\"Anim_PlayEntityAnim\",\"documentation\":\"Plays an animation from an entity. nThis function can be called through a CTRL object in NISlets to wait on the animation.\"},{\"id\":\"bug\",\"kind\":2,\"label\":\"bug\",\"documentation\":\"E-mails a warning out with logfiles at the end of the game. nExample: bug( \"This shouldn't happen, fix \"..problem.here)\"},{\"id\":\"Camera_AutoRotate\",\"kind\":2,\"label\":\"Camera_AutoRotate\",\"documentation\":\"Procedurally rotates the camera around a target. Camera input will be disabled. distance is in meters, declination is in degrees, speed is in degrees/sec. \"},{\"id\":\"Camera_ClampToMarker\",\"kind\":2,\"label\":\"Camera_ClampToMarker\",\"documentation\":\"Clamps the camera's target position to a marker. \"},{\"id\":\"Camera_FocusOnPosition\",\"kind\":2,\"label\":\"Camera_FocusOnPosition\",\"documentation\":\"Focus the camera on the specified position. If pan is true, smoothly pan the camera to the target. \"},{\"id\":\"Camera_FollowEntity\",\"kind\":2,\"label\":\"Camera_FollowEntity\",\"documentation\":\"Make the camera follow the specified entity. \"},{\"id\":\"Camera_FollowSelection\",\"kind\":2,\"label\":\"Camera_FollowSelection\",\"documentation\":\"Make the camera follow the current full selection. \"},{\"id\":\"Camera_FollowSquad\",\"kind\":2,\"label\":\"Camera_FollowSquad\",\"documentation\":\"Make the camera follow the specified squad. \"},{\"id\":\"Camera_GetCurrentTargetPos\",\"kind\":2,\"label\":\"Camera_GetCurrentTargetPos\",\"documentation\":\"Get the current target position for the camera. (Where the the camera currently is.) \"},{\"id\":\"Camera_GetDeclination\",\"kind\":2,\"label\":\"Camera_GetDeclination\",\"documentation\":\"Get the current camera declination (tilt). \"},{\"id\":\"Camera_GetOrbit\",\"kind\":2,\"label\":\"Camera_GetOrbit\",\"documentation\":\"Get the current camera orbit (rotation). \"},{\"id\":\"Camera_GetTargetPos\",\"kind\":2,\"label\":\"Camera_GetTargetPos\",\"documentation\":\"Get the desired target position for the camera. (Where the camera is trying to get to.) \"},{\"id\":\"Camera_GetTuningValue\",\"kind\":2,\"label\":\"Camera_GetTuningValue\",\"documentation\":\"Get camera tuning value. \"},{\"id\":\"Camera_GetZoomDist\",\"kind\":2,\"label\":\"Camera_GetZoomDist\",\"documentation\":\"Get the current zoom distance for the camera. \"},{\"id\":\"Camera_IsInputEnabled\",\"kind\":2,\"label\":\"Camera_IsInputEnabled\",\"documentation\":\"Returns the enabled/disabled state of the camera input. (not strict) \"},{\"id\":\"Camera_Reload\",\"kind\":2,\"label\":\"Camera_Reload\",\"documentation\":\"Reload all camera tuning values. \"},{\"id\":\"Camera_ResetFocus\",\"kind\":2,\"label\":\"Camera_ResetFocus\",\"documentation\":\"Make the camera stop following anything. \"},{\"id\":\"Camera_ResetToDefault\",\"kind\":2,\"label\":\"Camera_ResetToDefault\",\"documentation\":\"Reset camera position to default home position \"},{\"id\":\"Camera_SetDeclination\",\"kind\":2,\"label\":\"Camera_SetDeclination\",\"documentation\":\"Set the current camera declination (tilt). \"},{\"id\":\"Camera_SetInputEnabled\",\"kind\":2,\"label\":\"Camera_SetInputEnabled\",\"documentation\":\"Enables/disables camera input. \"},{\"id\":\"Camera_SetOrbit\",\"kind\":2,\"label\":\"Camera_SetOrbit\",\"documentation\":\"Set the current camera orbit (rotation). \"},{\"id\":\"Camera_SetSlideTargetRate\",\"kind\":2,\"label\":\"Camera_SetSlideTargetRate\",\"documentation\":\"Changes the speed of the camera blends to be newRate until the user (or some other camera call) is made. Can call this with 0 to reset to default rate. \"},{\"id\":\"Camera_SetTuningValue\",\"kind\":2,\"label\":\"Camera_SetTuningValue\",\"documentation\":\"Set camera tuning value. \"},{\"id\":\"Camera_SetZoomDist\",\"kind\":2,\"label\":\"Camera_SetZoomDist\",\"documentation\":\"Set the current zoom distance for the camera. \"},{\"id\":\"Camera_StopAutoRotating\",\"kind\":2,\"label\":\"Camera_StopAutoRotating\",\"documentation\":\"Stops the camera from procedurally rotating. Input is restored. \"},{\"id\":\"Camera_Unclamp\",\"kind\":2,\"label\":\"Camera_Unclamp\",\"documentation\":\"Frees up the camera (so it's not clamped to a marker anymore). \"},{\"id\":\"EGroup_CallEntityFunction\",\"kind\":2,\"label\":\"EGroup_CallEntityFunction\",\"documentation\":\"Calls an Entity_ function on every entity in an egroup nThe first parameter of the supplied function must be EntityID\"},{\"id\":\"EGroup_CallEntityFunctionAllOrAny\",\"kind\":2,\"label\":\"EGroup_CallEntityFunctionAllOrAny\",\"documentation\":\"Returns whether ALL or ANY entities in an egroup satisfy a condition, using an Entity_ function to perform the query on each entity nThe first parameter of the supplied function must be EntityID\"},{\"id\":\"fatal\",\"kind\":2,\"label\":\"fatal\",\"documentation\":\"Throws an error to lua and print out the error message \"},{\"id\":\"Game_EnableInput\",\"kind\":2,\"label\":\"Game_EnableInput\",\"documentation\":\"Enables/Disables all input EXCEPT for ESC and F10. \"},{\"id\":\"Game_EndSubTextFade\",\"kind\":2,\"label\":\"Game_EndSubTextFade\",\"documentation\":\"Removes title text displayed with Game_SubTextFade(...) immediately \"},{\"id\":\"Game_EndTextTitleFade\",\"kind\":2,\"label\":\"Game_EndTextTitleFade\",\"documentation\":\"Removes title text displayed with Game_TextTitleFade(...) immediately \"},{\"id\":\"Game_GetLocalPlayer\",\"kind\":2,\"label\":\"Game_GetLocalPlayer\",\"documentation\":\"Get the local player. (should only be used for UI purpose) (not strict) \"},{\"id\":\"Game_GetMode\",\"kind\":2,\"label\":\"Game_GetMode\",\"documentation\":\"Returns the current game screen mode. \"},{\"id\":\"Game_GetSPDifficulty\",\"kind\":2,\"label\":\"Game_GetSPDifficulty\",\"documentation\":\"Returns current single player difficulty. Values are GD_EASY, GD_NORMAL, GD_HARD, GD_EXPERT. \"},{\"id\":\"Game_HasLocalPlayer\",\"kind\":2,\"label\":\"Game_HasLocalPlayer\",\"documentation\":\"Determine if there is a valid local player. (UI only -- nondeterminstic) (not strict) \"},{\"id\":\"Game_IsLetterboxed\",\"kind\":2,\"label\":\"Game_IsLetterboxed\",\"documentation\":\"Returns true if the ui is in letterbox mode . (not strict) \"},{\"id\":\"Game_IsPerformanceTest\",\"kind\":2,\"label\":\"Game_IsPerformanceTest\",\"documentation\":\"Returns true if the we're running the performance test. \"},{\"id\":\"Game_IsRTM\",\"kind\":2,\"label\":\"Game_IsRTM\",\"documentation\":\"Use to test whether the game is running in RTM mode or not. Using -rtm from the command line will cause this function to also return true in non-RTM builds. \"},{\"id\":\"Game_Letterbox\",\"kind\":2,\"label\":\"Game_Letterbox\",\"documentation\":\"Enters/Exits letterbox mode in amount of time specified by timeSecs. nLetterbox mode disables input\"},{\"id\":\"Game_LoadAtmosphere\",\"kind\":2,\"label\":\"Game_LoadAtmosphere\",\"documentation\":\"Transitions to another atmosphere. Overwrites current transitions. \"},{\"id\":\"Game_LockRandom\",\"kind\":2,\"label\":\"Game_LockRandom\",\"documentation\":\"If you are running something that is non-deterministic like a getlocalplayer conditional, you can lock the random to make sure no one down the callstack will throw the game random index out of sync and cause a sync error. REMEMBER TO UNLOCK WHEN YOU ARE DONE \"},{\"id\":\"Game_ProfileDumpFrames\",\"kind\":2,\"label\":\"Game_ProfileDumpFrames\",\"documentation\":\"Dumps a profile series \"},{\"id\":\"Game_QuitApp\",\"kind\":2,\"label\":\"Game_QuitApp\",\"documentation\":\"Quits the app immediately \"},{\"id\":\"Game_ScreenFade\",\"kind\":2,\"label\":\"Game_ScreenFade\",\"documentation\":\"Fades the screen to a given RGBA colour over a number of seconds \"},{\"id\":\"Game_SetLocalPlayer\",\"kind\":2,\"label\":\"Game_SetLocalPlayer\",\"documentation\":\"Sets the local player. (not strict) \"},{\"id\":\"Game_SetMode\",\"kind\":2,\"label\":\"Game_SetMode\",\"documentation\":\"Set the game screen mode nUI_Normal is the regular screen with taskbar. UI_Fullscreen is the mode without any 2D UI. UI_Cinematic is the same as letter box mode.\"},{\"id\":\"Game_ShowPauseMenu\",\"kind\":2,\"label\":\"Game_ShowPauseMenu\",\"documentation\":\"Brings up the pause menu. The game does not get paused until the end of the current sim tick, so anything that comes after Game_ShowPauseMenu in your function will still get executed, as well as any rules set to run during that frame. \"},{\"id\":\"Game_SkipAllEvents\",\"kind\":2,\"label\":\"Game_SkipAllEvents\",\"documentation\":\"Skips all events. Can either delete or skip queued events. \"},{\"id\":\"Game_SkipEvent\",\"kind\":2,\"label\":\"Game_SkipEvent\",\"documentation\":\"Skips the currently playing event (and stops current sound). \"},{\"id\":\"Game_StartMuted\",\"kind\":2,\"label\":\"Game_StartMuted\",\"documentation\":\"Do not unmute game sounds when the mission starts (must be called in OnInit). Use this is you transition into a NIS to prevent any audio from playing until the NIS is over. \"},{\"id\":\"Game_TextTitleFade\",\"kind\":2,\"label\":\"Game_TextTitleFade\",\"documentation\":\"Shows title text that fades in and out over a specified durations nCall UI_TitleDestroy to remove.\"},{\"id\":\"Game_TriggerLightning\",\"kind\":2,\"label\":\"Game_TriggerLightning\",\"documentation\":\"Triggers lightning on the next frame \"},{\"id\":\"Game_UnlockInputOnLetterBox\",\"kind\":2,\"label\":\"Game_UnlockInputOnLetterBox\",\"documentation\":\"Unlocks user/camera input during letterbox. This should be used for debug only. \"},{\"id\":\"Game_UnLockRandom\",\"kind\":2,\"label\":\"Game_UnLockRandom\",\"documentation\":\"unlock the random from a previous lockrandom call only \"},{\"id\":\"Ghost_DisableSpotting\",\"kind\":2,\"label\":\"Ghost_DisableSpotting\",\"documentation\":\"Disable the spotting of enemy entities that may become ghosts in the FoW. \"},{\"id\":\"Ghost_EnableSpotting\",\"kind\":2,\"label\":\"Ghost_EnableSpotting\",\"documentation\":\"Enable the spotting of enemy entities that may become ghosts in the FoW. \"},{\"id\":\"HintPoint_AddToEGroup\",\"kind\":2,\"label\":\"HintPoint_AddToEGroup\",\"documentation\":\"Deprecated. \"},{\"id\":\"HintPoint_AddToEntity\",\"kind\":2,\"label\":\"HintPoint_AddToEntity\",\"documentation\":\"For internal use only. \"},{\"id\":\"HintPoint_AddToPosition\",\"kind\":2,\"label\":\"HintPoint_AddToPosition\",\"documentation\":\"For internal use only. \"},{\"id\":\"HintPoint_AddToSGroup\",\"kind\":2,\"label\":\"HintPoint_AddToSGroup\",\"documentation\":\"Deprecated. \"},{\"id\":\"HintPoint_AddToSquad\",\"kind\":2,\"label\":\"HintPoint_AddToSquad\",\"documentation\":\"For internal use only. \"},{\"id\":\"HintPoint_ClearFacing\",\"kind\":2,\"label\":\"HintPoint_ClearFacing\",\"documentation\":\"Clear the hint point arrow facing value. \"},{\"id\":\"HintPoint_RemoveAll\",\"kind\":2,\"label\":\"HintPoint_RemoveAll\",\"documentation\":\"Remove all hint points. \"},{\"id\":\"HintPoint_SetDisplayOffsetInternal\",\"kind\":2,\"label\":\"HintPoint_SetDisplayOffsetInternal\",\"documentation\":\"Add a projected offset to the specified hint point. \"},{\"id\":\"HintPoint_SetFacingEntity\",\"kind\":2,\"label\":\"HintPoint_SetFacingEntity\",\"documentation\":\"Face the hint point arrow towards this entity. \"},{\"id\":\"HintPoint_SetFacingPosition\",\"kind\":2,\"label\":\"HintPoint_SetFacingPosition\",\"documentation\":\"Face the hint point arrow towards this position. \"},{\"id\":\"HintPoint_SetFacingSquad\",\"kind\":2,\"label\":\"HintPoint_SetFacingSquad\",\"documentation\":\"Face the hint point arrow towards this squad. \"},{\"id\":\"HintPoint_SetVisibleInternal\",\"kind\":2,\"label\":\"HintPoint_SetVisibleInternal\",\"documentation\":\"Show or hide the specified hint point. \"},{\"id\":\"inv_dump\",\"kind\":2,\"label\":\"inv_dump\",\"documentation\":\"Dump content of inventory to a file \"},{\"id\":\"IsOfType\",\"kind\":2,\"label\":\"IsOfType\",\"documentation\":\"Returns true if this object is of the specified type \"},{\"id\":\"IsSecuringStructure\",\"kind\":2,\"label\":\"IsSecuringStructure\",\"documentation\":\"Can this structure be used to secure territory \"},{\"id\":\"IsStructure\",\"kind\":2,\"label\":\"IsStructure\",\"documentation\":\"Returns true if this object is a structure (something with a site_ext) \"},{\"id\":\"License_CanPlayRace\",\"kind\":2,\"label\":\"License_CanPlayRace\",\"documentation\":\"Returns whether the installed version of the game allows the player to play this race \"},{\"id\":\"LOC\",\"kind\":2,\"label\":\"LOC\",\"documentation\":\"DEV ONLY: Converts ansi text to localized text. nYour text will have to get localized properly at some point before final. When converting text with this function you will get LOC: prefixed to your text\"},{\"id\":\"Loc_ConvertNumber\",\"kind\":2,\"label\":\"Loc_ConvertNumber\",\"documentation\":\"Returns a localized string containing the number. \"},{\"id\":\"Loc_Empty\",\"kind\":2,\"label\":\"Loc_Empty\",\"documentation\":\"Empty string. nThis will create an empty localized string.\"},{\"id\":\"Loc_FormatTime\",\"kind\":2,\"label\":\"Loc_FormatTime\",\"documentation\":\"Returns a formatted time string. can omit hours and leading zeroes (for example, 4:57 instead of 00:04:57) \"},{\"id\":\"Misc_AbortToFE\",\"kind\":2,\"label\":\"Misc_AbortToFE\",\"documentation\":\"Abort straight out of the game to the frontend, without asking the user \"},{\"id\":\"Misc_AddRestrictCommandsMarker\",\"kind\":2,\"label\":\"Misc_AddRestrictCommandsMarker\",\"documentation\":\"Add another marker in which commands are restricted to. \"},{\"id\":\"Misc_AIControlLocalPlayer\",\"kind\":2,\"label\":\"Misc_AIControlLocalPlayer\",\"documentation\":\"Let AI take over local player \"},{\"id\":\"Misc_AreDefaultCommandsEnabled\",\"kind\":2,\"label\":\"Misc_AreDefaultCommandsEnabled\",\"documentation\":\"Returns the enabled/disabled state of the right-click command input. (not strict) \"},{\"id\":\"Misc_DetectKeyboardInput\",\"kind\":2,\"label\":\"Misc_DetectKeyboardInput\",\"documentation\":\"Returns true if the app has had any keyboard input in the last second \"},{\"id\":\"Misc_DetectMouseInput\",\"kind\":2,\"label\":\"Misc_DetectMouseInput\",\"documentation\":\"Returns true if the app has had any mouse input in the last second \"},{\"id\":\"Misc_DoWeaponHitEffectOnEntity\",\"kind\":2,\"label\":\"Misc_DoWeaponHitEffectOnEntity\",\"documentation\":\"Do weapon hit effect on the entity from the view camera origin nWeaponID is the property bag group id; if penetrated is set to false, deflection effect would be played instead\"},{\"id\":\"Misc_EnablePerformanceTest\",\"kind\":2,\"label\":\"Misc_EnablePerformanceTest\",\"documentation\":\"Turn on or off the performance test monitoring \"},{\"id\":\"Misc_GetCommandLineString\",\"kind\":2,\"label\":\"Misc_GetCommandLineString\",\"documentation\":\"Returns the string argument for a command line option. ex: for \"-init test.lua\" it would return \"test.lua\" \"},{\"id\":\"Misc_GetControlGroupContents\",\"kind\":2,\"label\":\"Misc_GetControlGroupContents\",\"documentation\":\"Returns contents of a control group (0 to 9). Squads are put into an sgroup, and non-squad entities are put into an egroup. \"},{\"id\":\"Misc_GetEntityControlGroup\",\"kind\":2,\"label\":\"Misc_GetEntityControlGroup\",\"documentation\":\"Returns the control group index that this entity belongs to, from 0 to 9, or -1 if none. \"},{\"id\":\"Misc_GetHiddenPositionOnPath\",\"kind\":2,\"label\":\"Misc_GetHiddenPositionOnPath\",\"documentation\":\"Returns a hidden position on path from origin to destination. If there's none, it returns the origin position n Possible check types are CheckHiddenFromCamera, CheckHiddenInFOW and CheckHiddenBothCameraFOW Camera check determined by the camera frustum. use cameraPadding to increase the area around the camera when doing the check FOW check requires a valid player ID passed in stepDistance is the interval along the path that the hidden points will be checked ( min is 1 metre ) If no hidden position is found, position ( 0, 0, 0 ) is returned Don't use this for multi-player SCAR script!!\"},{\"id\":\"Misc_GetMouseOnTerrain\",\"kind\":2,\"label\":\"Misc_GetMouseOnTerrain\",\"documentation\":\"Returns the world position of the mouse on the terrain (not strict) \"},{\"id\":\"Misc_GetMouseOverEntity\",\"kind\":2,\"label\":\"Misc_GetMouseOverEntity\",\"documentation\":\"Returns the entity under the mouse (if any) (not strict) \"},{\"id\":\"Misc_GetSelectedEntities\",\"kind\":2,\"label\":\"Misc_GetSelectedEntities\",\"documentation\":\"Clears a given group and adds the current full selection (or subselection if true) to the group. \"},{\"id\":\"Misc_GetSelectedSquads\",\"kind\":2,\"label\":\"Misc_GetSelectedSquads\",\"documentation\":\"Clears a given group and adds the current full selection (or subselection if true) to the group. \"},{\"id\":\"Misc_GetSquadControlGroup\",\"kind\":2,\"label\":\"Misc_GetSquadControlGroup\",\"documentation\":\"Returns the control group index that this squad belongs to, from 0 to 9, or -1 if none. \"},{\"id\":\"Misc_IsCommandLineOptionSet\",\"kind\":2,\"label\":\"Misc_IsCommandLineOptionSet\",\"documentation\":\"Returns true if -option is specified on the command line \"},{\"id\":\"Misc_IsDevMode\",\"kind\":2,\"label\":\"Misc_IsDevMode\",\"documentation\":\"Returns whether the game is running in dev mode. The rules for dev mode are a bit complicated between builds, so we cannot simply check the command line. \"},{\"id\":\"Misc_IsEntityOnScreen\",\"kind\":2,\"label\":\"Misc_IsEntityOnScreen\",\"documentation\":\"Check if the squad is on screen currently (not strict) \"},{\"id\":\"Misc_IsEntitySelected\",\"kind\":2,\"label\":\"Misc_IsEntitySelected\",\"documentation\":\"Returns true if the specified entity is currently selected. \"},{\"id\":\"Misc_IsMouseOverEntity\",\"kind\":2,\"label\":\"Misc_IsMouseOverEntity\",\"documentation\":\"Returns true if the mouse is over an entity (not strict) \"},{\"id\":\"Misc_IsPosOnScreen\",\"kind\":2,\"label\":\"Misc_IsPosOnScreen\",\"documentation\":\"Check if position is on screen, (1 being the entire screen, 0.5 being 50% of the screen from the center point) \"},{\"id\":\"Misc_IsSelectionInputEnabled\",\"kind\":2,\"label\":\"Misc_IsSelectionInputEnabled\",\"documentation\":\"Returns the enabled/disabled state of the selection input. (not strict) \"},{\"id\":\"Misc_IsSquadOnScreen\",\"kind\":2,\"label\":\"Misc_IsSquadOnScreen\",\"documentation\":\"Check if the entity is on screen currently (not strict) \"},{\"id\":\"Misc_IsSquadSelected\",\"kind\":2,\"label\":\"Misc_IsSquadSelected\",\"documentation\":\"Returns true if the specified squad is currently selected. \"},{\"id\":\"Misc_RemoveCommandRestriction\",\"kind\":2,\"label\":\"Misc_RemoveCommandRestriction\",\"documentation\":\"Remove all command restrictions. \"},{\"id\":\"Misc_RestrictCommandsToMarker\",\"kind\":2,\"label\":\"Misc_RestrictCommandsToMarker\",\"documentation\":\"Set the marker in which commands are restricted to. \"},{\"id\":\"Misc_Screenshot\",\"kind\":2,\"label\":\"Misc_Screenshot\",\"documentation\":\"Save a screenshot \"},{\"id\":\"Misc_ScreenshotExt\",\"kind\":2,\"label\":\"Misc_ScreenshotExt\",\"documentation\":\"Set the graphic file type for screenshot (.jpg, .tga) \"},{\"id\":\"Misc_SelectEntity\",\"kind\":2,\"label\":\"Misc_SelectEntity\",\"documentation\":\"Set the full selection to the specified entity. \"},{\"id\":\"Misc_SelectSquad\",\"kind\":2,\"label\":\"Misc_SelectSquad\",\"documentation\":\"Set the full selection to the specified entity. \"},{\"id\":\"Misc_SetDefaultCommandsEnabled\",\"kind\":2,\"label\":\"Misc_SetDefaultCommandsEnabled\",\"documentation\":\"Enables/disables right-click command input. \"},{\"id\":\"Misc_SetDesignerSplatsVisibility\",\"kind\":2,\"label\":\"Misc_SetDesignerSplatsVisibility\",\"documentation\":\"Shows or hides designer splats, which are splats in the UI folder \"},{\"id\":\"Misc_SetEntityControlGroup\",\"kind\":2,\"label\":\"Misc_SetEntityControlGroup\",\"documentation\":\"Makes an entity belong to a specific control group. If it already belongs to another control group, it's removed from that one before being added to the new one. \"},{\"id\":\"Misc_SetEntitySelectable\",\"kind\":2,\"label\":\"Misc_SetEntitySelectable\",\"documentation\":\"Disable/enable selectability of the specified entity. \"},{\"id\":\"Misc_SetSelectionInputEnabled\",\"kind\":2,\"label\":\"Misc_SetSelectionInputEnabled\",\"documentation\":\"Enables/disables selection input. \"},{\"id\":\"Misc_SetSquadControlGroup\",\"kind\":2,\"label\":\"Misc_SetSquadControlGroup\",\"documentation\":\"Makes a squad belong to a specific control group. If it already belongs to another control group, it's removed from that one before being added to the new one. \"},{\"id\":\"Misc_SetSquadSelectable\",\"kind\":2,\"label\":\"Misc_SetSquadSelectable\",\"documentation\":\"Disable/enable selectability of the specified squad. \"},{\"id\":\"Mission_Complete\",\"kind\":2,\"label\":\"Mission_Complete\",\"documentation\":\"Plays the defined end cinematic and ends an SP scenario with a Victory. \"},{\"id\":\"Mission_Fail\",\"kind\":2,\"label\":\"Mission_Fail\",\"documentation\":\"Ends an SP scenario with a Failure. \"},{\"id\":\"Mission_GetSecondaryObjective\",\"kind\":2,\"label\":\"Mission_GetSecondaryObjective\",\"documentation\":\"Return a reference to the Secondary Objective table. Nil if objective has not been started yet. \"},{\"id\":\"Mission_StartBonusObjective\",\"kind\":2,\"label\":\"Mission_StartBonusObjective\",\"documentation\":\"Selects a possible secondary objective and starts it. n'index' can be used to override the random selection and load a specific secondary objective.nReferences: [Slottable+Secondary+Objectives]\"},{\"id\":\"Mission_Win\",\"kind\":2,\"label\":\"Mission_Win\",\"documentation\":\"Ends an SP scenario with a Victory without playing any end cinematics. \"},{\"id\":\"Modifier_ApplyToEntity\",\"kind\":2,\"label\":\"Modifier_ApplyToEntity\",\"documentation\":\"Applies an entity modifier to an entity. \"},{\"id\":\"Modifier_ApplyToPlayer\",\"kind\":2,\"label\":\"Modifier_ApplyToPlayer\",\"documentation\":\"Applies a player modifier to a player. \"},{\"id\":\"Modifier_ApplyToSquad\",\"kind\":2,\"label\":\"Modifier_ApplyToSquad\",\"documentation\":\"Applies a squad modifier to a squad. \"},{\"id\":\"Modifier_Create\",\"kind\":2,\"label\":\"Modifier_Create\",\"documentation\":\"Returns a modifier that you can apply to stuff. n applicationType : MAT_EntityType, MAT_Entity, MAT_Player, MAT_Squad, MAT_SquadType, or MAT_Weapon.<BR/> modtype : Name of modifier from the modifiers table in the attribute editor.<BR/> usageType : MUT_Addition, MUT_Multiplication, MUT_MultiplyAdd or MUT_Enable.<BR/> exclusive : This field is not currently used for modifiers created through script. <BR/> value : The value for the modifier.<BR/> extname : The name of the entity/squad blueprint for when the applicationType is MAT_EntityType or MAT_SquadType.\"},{\"id\":\"Modifier_Destroy\",\"kind\":2,\"label\":\"Modifier_Destroy\",\"documentation\":\"Todo. \"},{\"id\":\"Modifier_IsEnabled\",\"kind\":2,\"label\":\"Modifier_IsEnabled\",\"documentation\":\"Checks whether the modifier is enabled (requires an Entity and an Entity enable/disable modifier) \"},{\"id\":\"nis_setintransitiontime\",\"kind\":2,\"label\":\"nis_setintransitiontime\",\"documentation\":\"Sets the number of seconds it takes to transition from game to nis, 0 is instantaneous nThis includes blending the camera position, fov and clip planes\"},{\"id\":\"nis_setouttransitionnis\",\"kind\":2,\"label\":\"nis_setouttransitionnis\",\"documentation\":\"Lets the nis system know which nis will be transitioned to when the first one ends. nThis function doesn't actually trigger a second nis to start, rather it lets the NIS system know which one will be next, so it can prevent the camera from popping back to the game camera.\"},{\"id\":\"nis_setouttransitiontime\",\"kind\":2,\"label\":\"nis_setouttransitiontime\",\"documentation\":\"Sets the number of seconds it takes to transition from nis back to game, 0 is instantaneous nThis includes blending the camera position, fov and clip planes\"},{\"id\":\"Obj_Create\",\"kind\":2,\"label\":\"Obj_Create\",\"documentation\":\"Create an objective and returns the unique ID for it ntype could either be OT_Primary or OT_Secondary\"},{\"id\":\"Obj_Delete\",\"kind\":2,\"label\":\"Obj_Delete\",\"documentation\":\"Delete the objective with the specified ID \"},{\"id\":\"Obj_DeleteAll\",\"kind\":2,\"label\":\"Obj_DeleteAll\",\"documentation\":\"Delete all objectives \"},{\"id\":\"Obj_GetState\",\"kind\":2,\"label\":\"Obj_GetState\",\"documentation\":\"Get objective state ( OS_Off, OS_Incomplete, OS_Complete, OS_Failed ) (not strict) \"},{\"id\":\"Obj_GetVisible\",\"kind\":2,\"label\":\"Obj_GetVisible\",\"documentation\":\"Get objective visibility (not strict) \"},{\"id\":\"Obj_HideProgress\",\"kind\":2,\"label\":\"Obj_HideProgress\",\"documentation\":\"Hide the objective progress panel. \"},{\"id\":\"Obj_SetDescription\",\"kind\":2,\"label\":\"Obj_SetDescription\",\"documentation\":\"Set description text localization ID for the objective \"},{\"id\":\"Obj_SetIcon\",\"kind\":2,\"label\":\"Obj_SetIcon\",\"documentation\":\"Set icon path for the objective \"},{\"id\":\"Obj_SetObjectiveFunction\",\"kind\":2,\"label\":\"Obj_SetObjectiveFunction\",\"documentation\":\"Set callback functions for the objective. (not strict) nFN_OnActivate is for triggering situation report. FN_OnShow is used to assign UI element when tactical map is open. FN_OnSelect is used to assign UI element when the objective is highlighted\"},{\"id\":\"Obj_SetProgressBlinking\",\"kind\":2,\"label\":\"Obj_SetProgressBlinking\",\"documentation\":\"Make the objective progress bar blink or stop blinking. \"},{\"id\":\"Obj_SetState\",\"kind\":2,\"label\":\"Obj_SetState\",\"documentation\":\"Set objective state ( OS_Off, OS_Incomplete, OS_Complete, OS_Failed ) \"},{\"id\":\"Obj_SetTitle\",\"kind\":2,\"label\":\"Obj_SetTitle\",\"documentation\":\"Set title text localization ID for the objective \"},{\"id\":\"Obj_SetVisible\",\"kind\":2,\"label\":\"Obj_SetVisible\",\"documentation\":\"Set objective visibility \"},{\"id\":\"Obj_ShowProgress\",\"kind\":2,\"label\":\"Obj_ShowProgress\",\"documentation\":\"Show the objective progress panel with a progress bar - call repeatedly to update progress. Value should be normalized between [0 - 1]. \"},{\"id\":\"Obj_ShowProgress2\",\"kind\":2,\"label\":\"Obj_ShowProgress2\",\"documentation\":\"Show the objective progress panel with a progress bar - call repeatedly to update progress. Value should be normalized between [0 - 1]. Appears in center of screen. \"},{\"id\":\"Obj_ShowProgressTimer\",\"kind\":2,\"label\":\"Obj_ShowProgressTimer\",\"documentation\":\"Show the objective progress panel with a timer icon - call repeatedly to update progress. Value should be in seconds. \"},{\"id\":\"OpBounty_AddRewardGroup\",\"kind\":2,\"label\":\"OpBounty_AddRewardGroup\",\"documentation\":\"Does things n\"},{\"id\":\"OpBounty_AddRewardTable\",\"kind\":2,\"label\":\"OpBounty_AddRewardTable\",\"documentation\":\"Does things n\"},{\"id\":\"Order227_Init\",\"kind\":2,\"label\":\"Order227_Init\",\"documentation\":\"Enable the HQ Commissar in CoH2 campaign missions. The noMercy flag allows the Commissar to execute more than one member of each squad. \"},{\"id\":\"PrintOnScreen\",\"kind\":2,\"label\":\"PrintOnScreen\",\"documentation\":\"Prints a message on the screen n Prints the given message on the screen. It will stay there until you call PrintOnScreen_RemoveFromScreen() or print another message on the screen to replace it.\"},{\"id\":\"PrintOnScreen_Add\",\"kind\":2,\"label\":\"PrintOnScreen_Add\",\"documentation\":\"Prints the lua content of an object on the screen n Prints the given message on the screen. If you would like to print multiple messages without clearing them you can assign them unique ID's. Must use PrintOnScreen_Remove(id) to remove each instance\"},{\"id\":\"PrintOnScreen_Remove\",\"kind\":2,\"label\":\"PrintOnScreen_Remove\",\"documentation\":\"Removes the PrintOnScreen text of a given ID \"},{\"id\":\"PrintOnScreen_RemoveFromScreen\",\"kind\":2,\"label\":\"PrintOnScreen_RemoveFromScreen\",\"documentation\":\"Remove any messages from the screen n Removes from the screen any messages put there with PrintOnScreen()\"},{\"id\":\"ResourceAmount_Add\",\"kind\":2,\"label\":\"ResourceAmount_Add\",\"documentation\":\"Add each element of the two passed in ResourceAmounts together \"},{\"id\":\"ResourceAmount_ClampToZero\",\"kind\":2,\"label\":\"ResourceAmount_ClampToZero\",\"documentation\":\"Clamps the passed in resource to zero if it has any negative numbers \"},{\"id\":\"ResourceAmount_Has\",\"kind\":2,\"label\":\"ResourceAmount_Has\",\"documentation\":\"Returns true if the first amount has enough resources for the second amount (amt2) \"},{\"id\":\"ResourceAmount_Mult\",\"kind\":2,\"label\":\"ResourceAmount_Mult\",\"documentation\":\"Take a resource amount and multiply each value inside of it by mult \"},{\"id\":\"ResourceAmount_Subtract\",\"kind\":2,\"label\":\"ResourceAmount_Subtract\",\"documentation\":\"Subtract the second amount from the first and return the new ResourceAmount \"},{\"id\":\"ResourceAmount_Sum\",\"kind\":2,\"label\":\"ResourceAmount_Sum\",\"documentation\":\"Add up all the numbers in the resource and return a single value \"},{\"id\":\"ResourceAmount_Zero\",\"kind\":2,\"label\":\"ResourceAmount_Zero\",\"documentation\":\"Creates a new ResourceAmount all set to zero \"},{\"id\":\"Scar_Autosave\",\"kind\":2,\"label\":\"Scar_Autosave\",\"documentation\":\"Saves the game. the savegame name is built using the abbreviated mission name + checkpoint. \"},{\"id\":\"Scar_CompleteIntelBulletinTask\",\"kind\":2,\"label\":\"Scar_CompleteIntelBulletinTask\",\"documentation\":\"Complete a intel bulletin task of campaign type \"},{\"id\":\"Scar_DebugConsoleExecute\",\"kind\":2,\"label\":\"Scar_DebugConsoleExecute\",\"documentation\":\"execute console command string. Will only work if dev mode is enabled! (it's OFF by default in RTM builds) \"},{\"id\":\"Scar_PlayNIS\",\"kind\":2,\"label\":\"Scar_PlayNIS\",\"documentation\":\"Play NIS through SCAR. Should only be used inside a event function \"},{\"id\":\"Scar_PlayNIS2\",\"kind\":2,\"label\":\"Scar_PlayNIS2\",\"documentation\":\"Play 2 NISs through SCAR. Should only be used inside a event function \"},{\"id\":\"Scar_ReloadAIScripts\",\"kind\":2,\"label\":\"Scar_ReloadAIScripts\",\"documentation\":\"Reloads AI Scripts \"},{\"id\":\"Setup_GetVictoryPointTickerOption\",\"kind\":2,\"label\":\"Setup_GetVictoryPointTickerOption\",\"documentation\":\"Get the victory point ticker option selected \"},{\"id\":\"Setup_SetPlayerName\",\"kind\":2,\"label\":\"Setup_SetPlayerName\",\"documentation\":\"Set the UI name of a given player. \"},{\"id\":\"Setup_SetPlayerRace\",\"kind\":2,\"label\":\"Setup_SetPlayerRace\",\"documentation\":\"Set the race for a given player. Use World_GetRaceIndex() to get the race id from the ME name. \"},{\"id\":\"Setup_SetPlayerTeam\",\"kind\":2,\"label\":\"Setup_SetPlayerTeam\",\"documentation\":\"Put a player in a team. Use TEAM_NEUTRAL as the team_id to set the player as neutral \"},{\"id\":\"SGroup_CallEntityFunction\",\"kind\":2,\"label\":\"SGroup_CallEntityFunction\",\"documentation\":\"Calls an Entity_ function on every entity in an sgroup nThe first parameter of the supplied function must be EntityID\"},{\"id\":\"SGroup_CallSquadFunction\",\"kind\":2,\"label\":\"SGroup_CallSquadFunction\",\"documentation\":\"Calls a Squad_ function on every squad in an sgroup nThe first parameter of the supplied function must be SquadID\"},{\"id\":\"SGroup_CallSquadFunctionAllOrAny\",\"kind\":2,\"label\":\"SGroup_CallSquadFunctionAllOrAny\",\"documentation\":\"Returns whether ALL or ANY squads in an sgroup satisfy a condition, using a Squad_ function to perform the query on each squad nThe first parameter of the supplied function must be SquadID\"},{\"id\":\"SitRep_PlayMovie\",\"kind\":2,\"label\":\"SitRep_PlayMovie\",\"documentation\":\"Play the specified movie. \"},{\"id\":\"SitRep_PlaySpeech\",\"kind\":2,\"label\":\"SitRep_PlaySpeech\",\"documentation\":\"Deprecated. nCall UI_TitleDestroy to remove.\"},{\"id\":\"SitRep_StopMovie\",\"kind\":2,\"label\":\"SitRep_StopMovie\",\"documentation\":\"Stop the currently playing movie. \"},{\"id\":\"Sound_ContainerDebug\",\"kind\":2,\"label\":\"Sound_ContainerDebug\",\"documentation\":\"Turns container debugging on/off\"},{\"id\":\"Sound_DisableSpeechEvent\",\"kind\":2,\"label\":\"Sound_DisableSpeechEvent\",\"documentation\":\"Disables certain speech events. \"},{\"id\":\"Sound_IsPlaying\",\"kind\":2,\"label\":\"Sound_IsPlaying\",\"documentation\":\"Returns true if the sound associated with the handle is currently playing. \"},{\"id\":\"Sound_PerfTest_Play2D\",\"kind\":2,\"label\":\"Sound_PerfTest_Play2D\",\"documentation\":\"Starts multiple 2D instances of the same sound. \"},{\"id\":\"Sound_Play2D\",\"kind\":2,\"label\":\"Sound_Play2D\",\"documentation\":\"Plays a 2D sound from the Data:Sound folder. Use the path relative to Sound folder without the file extension. Returns handle to the sound container nThe sound needs to be 2D Example:<BR/><BR/> <TAB/>Sound_Play( \"Blah/Mysound\" )<BR/>\"},{\"id\":\"Sound_Play3D\",\"kind\":2,\"label\":\"Sound_Play3D\",\"documentation\":\"Plays a 3D sound from the Data:Sound folder on the entity. Use the path relative to Sound folder without the file extension. Returns handle to the sound container nThe sound needs to be 3D Example:<BR/><BR/> <TAB/>Sound_Play( \"Speech/SpaceMarine/AddOnComplete\", TheActor )<BR/>\"},{\"id\":\"Sound_PlayMusic\",\"kind\":2,\"label\":\"Sound_PlayMusic\",\"documentation\":\"Plays music from the Data:Sound folder. nThe new music will phase out the old one. There can only be one music playing at anytime besides the transition fade is the time to fade in the music; delay is the time in seconds to wait until the new music is started Example:<BR/><BR/> <TAB/>Sound_PlayMusic( \"Music/GreatMusic\", 0.0, 0.0 )<BR/>\"},{\"id\":\"Sound_PlayStreamed\",\"kind\":2,\"label\":\"Sound_PlayStreamed\",\"documentation\":\"Plays a streaming sound from the Data:Sound folder. Use the path relative to Sound folder without the file extension. Returns handle to the sound container nThe sound needs to be 2D Example:<BR/><BR/> <TAB/>Sound_PlayStreamed( \"Blah/Mysound\" )<BR/>\"},{\"id\":\"Sound_PreCacheSinglePlayerSpeech\",\"kind\":2,\"label\":\"Sound_PreCacheSinglePlayerSpeech\",\"documentation\":\"Pre-caches single player speech. For instance pre-caching mission 1 speech is done like: Sound_PreCacheSinglePlayerSpeech(\"mission01\") \"},{\"id\":\"Sound_PreCacheSound\",\"kind\":2,\"label\":\"Sound_PreCacheSound\",\"documentation\":\"pre-caches a sound n Example:<BR/><BR/> <TAB/>Sound_PreCacheSound(\"nis/m02_n01_full\")<BR/>\"},{\"id\":\"Sound_PreCacheSoundFolder\",\"kind\":2,\"label\":\"Sound_PreCacheSoundFolder\",\"documentation\":\"pre-caches a sound folder n Example:<BR/><BR/> <TAB/>Sound_PreCacheSoundFolder(\"sp/mission1\")<BR/>\"},{\"id\":\"Sound_SetGlobalControlSource\",\"kind\":2,\"label\":\"Sound_SetGlobalControlSource\",\"documentation\":\"Sets the value for a global control source.\"},{\"id\":\"Sound_SetMusicCombatValue\",\"kind\":2,\"label\":\"Sound_SetMusicCombatValue\",\"documentation\":\"immCombatValue is the new music combat value. Override time is in seconds. You can call this function with 0 for both values in order to cancel the override. \"},{\"id\":\"Sound_SetVolume\",\"kind\":2,\"label\":\"Sound_SetVolume\",\"documentation\":\"Sets a new volume for the group. Valid volume values are 0 to 1. n Example:<BR/><BR/> <TAB/>Sound_Volume(\"Weapons\", 0.5, 2)<BR/>\"},{\"id\":\"Sound_SetVolumeDefault\",\"kind\":2,\"label\":\"Sound_SetVolumeDefault\",\"documentation\":\"Sets the default volume for the group. n Example:<BR/><BR/> <TAB/>Sound_SetVolumeDefault(\"Weapons\", 2)<BR/>\"},{\"id\":\"Sound_SetVolumeInv\",\"kind\":2,\"label\":\"Sound_SetVolumeInv\",\"documentation\":\"Sets the volume for all groups except the one specified. Valid volume values are 0 to 1. n Example:<BR/><BR/> <TAB/>Sound_VolumeInv(\"NIS\", 0.5, 2)<BR/>\"},{\"id\":\"Sound_StartRecording\",\"kind\":2,\"label\":\"Sound_StartRecording\",\"documentation\":\"Starts recording the sound driver output n Example:<BR/><BR/> <TAB/>Sound_StartRecording(\"Recordings/MyRecording.wav\")<BR/>\"},{\"id\":\"Sound_Stop\",\"kind\":2,\"label\":\"Sound_Stop\",\"documentation\":\"Stops sound associated with the container handle \"},{\"id\":\"Sound_StopAll\",\"kind\":2,\"label\":\"Sound_StopAll\",\"documentation\":\"Stops all sounds associated with the container manager. \"},{\"id\":\"Sound_StopMusic\",\"kind\":2,\"label\":\"Sound_StopMusic\",\"documentation\":\"Stop current playing music nCurrently playing music would be stopped. If nothing is playing, nothing will happen fade is the time to fade out the music; delay is the time in seconds wait until the new music is stopped Example:<BR/><BR/> <TAB/>Sound_StopMusic( 2.0, 0.0 )<BR/>\"},{\"id\":\"Sound_StopRecording\",\"kind\":2,\"label\":\"Sound_StopRecording\",\"documentation\":\"Stops recording the sound driver output n Example:<BR/><BR/> <TAB/>Sound_StopRecording()<BR/>\"},{\"id\":\"Speech_SetGlobalStealthRead\",\"kind\":2,\"label\":\"Speech_SetGlobalStealthRead\",\"documentation\":\"Overrides default stealth speech auto-detect mechanism. Stealth speech will play when sunlight brightness is below the threshold, with 0 being total darkness and 1 being full brightness. Set to -1 to use the default behavior. \"},{\"id\":\"statgraph\",\"kind\":2,\"label\":\"statgraph\",\"documentation\":\"?? \"},{\"id\":\"statgraph_channel\",\"kind\":2,\"label\":\"statgraph_channel\",\"documentation\":\"?? \"},{\"id\":\"statgraph_channel_get_enabled\",\"kind\":2,\"label\":\"statgraph_channel_get_enabled\",\"documentation\":\"?? \"},{\"id\":\"statgraph_channel_set_enabled\",\"kind\":2,\"label\":\"statgraph_channel_set_enabled\",\"documentation\":\"?? \"},{\"id\":\"statgraph_clear\",\"kind\":2,\"label\":\"statgraph_clear\",\"documentation\":\"?? \"},{\"id\":\"statgraph_list\",\"kind\":2,\"label\":\"statgraph_list\",\"documentation\":\"?? \"},{\"id\":\"statgraph_pause\",\"kind\":2,\"label\":\"statgraph_pause\",\"documentation\":\"?? \"},{\"id\":\"Subtitle_EndAllSpeech\",\"kind\":2,\"label\":\"Subtitle_EndAllSpeech\",\"documentation\":\"Prematurely finish all queued speech nThis is useful for skipping all speech events that may have been queued\"},{\"id\":\"Subtitle_EndCurrentSpeech\",\"kind\":2,\"label\":\"Subtitle_EndCurrentSpeech\",\"documentation\":\"Prematurely finish currently playing speech and advance the next one in queue nThis is useful for skipping speech events\"},{\"id\":\"Subtitle_PlaySpeech\",\"kind\":2,\"label\":\"Subtitle_PlaySpeech\",\"documentation\":\"Plays a global speech with subtitle and actor icon in the overlay nCall UI_TitleDestroy to remove.\"},{\"id\":\"Subtitle_UnstickCurrentSpeech\",\"kind\":2,\"label\":\"Subtitle_UnstickCurrentSpeech\",\"documentation\":\"Removes \"sticky\" state from currently playing speech (if any) \"},{\"id\":\"SyncWeapon_CanAttackNow\",\"kind\":2,\"label\":\"SyncWeapon_CanAttackNow\",\"documentation\":\"Checks whether a sync weapon can attack a target without moving or turning. \"},{\"id\":\"SyncWeapon_Exists\",\"kind\":2,\"label\":\"SyncWeapon_Exists\",\"documentation\":\"Returns true if a sync weapon still exists in the game world \"},{\"id\":\"SyncWeapon_GetEntity\",\"kind\":2,\"label\":\"SyncWeapon_GetEntity\",\"documentation\":\"Returns the EntityID of a sync weapon, or nil if it's been destroyed \"},{\"id\":\"SyncWeapon_GetFromEGroup\",\"kind\":2,\"label\":\"SyncWeapon_GetFromEGroup\",\"documentation\":\"Registers the sync weapon in the egroup and returns a SyncWeaponID you can use to keep track of it \"},{\"id\":\"SyncWeapon_GetFromSGroup\",\"kind\":2,\"label\":\"SyncWeapon_GetFromSGroup\",\"documentation\":\"Registers the sync weapon in the sgroup and returns a SyncWeaponID you can use to keep track of it \"},{\"id\":\"SyncWeapon_GetPosition\",\"kind\":2,\"label\":\"SyncWeapon_GetPosition\",\"documentation\":\"Returns the position of a sync weapon, or nil if it's been destroyed \"},{\"id\":\"SyncWeapon_IsAttacking\",\"kind\":2,\"label\":\"SyncWeapon_IsAttacking\",\"documentation\":\"Checks whether or not the actual sync weapon in a squad attacking. \"},{\"id\":\"SyncWeapon_IsOwnedByPlayer\",\"kind\":2,\"label\":\"SyncWeapon_IsOwnedByPlayer\",\"documentation\":\"Returns true if the specified player owns the sync weapon. Use a playerid of nil to see if it's unonwed. nIf player is not specified, then the code will check to see if the SyncWeapon is owned by the world.\"},{\"id\":\"SyncWeapon_SetAutoTargetting\",\"kind\":2,\"label\":\"SyncWeapon_SetAutoTargetting\",\"documentation\":\"Sets whether a weapon to auto-target things or not \"},{\"id\":\"Taskbar_IsVisible\",\"kind\":2,\"label\":\"Taskbar_IsVisible\",\"documentation\":\"Returns true if the taskbar is visible. (not strict) \"},{\"id\":\"Taskbar_SetVisibility\",\"kind\":2,\"label\":\"Taskbar_SetVisibility\",\"documentation\":\"Sets taskbar visibility. \"},{\"id\":\"TaskCountActivePBG\",\"kind\":2,\"label\":\"TaskCountActivePBG\",\"documentation\":\"Determine how many tasks with the given PBG are of the provided active state, passing no last parameters means to check both \"},{\"id\":\"TaskCountPBG\",\"kind\":2,\"label\":\"TaskCountPBG\",\"documentation\":\"Determine how many requested are currently created for this pbg \"},{\"id\":\"UI_AutosaveMessageHide\",\"kind\":2,\"label\":\"UI_AutosaveMessageHide\",\"documentation\":\"Removes a message added by UI_AutosaveMessageShow. \"},{\"id\":\"UI_AutosaveMessageShow\",\"kind\":2,\"label\":\"UI_AutosaveMessageShow\",\"documentation\":\"Shows a message indicating that the game is autosaving. nCall UI_AutosaveMessageHide to remove the message.\"},{\"id\":\"UI_ClearEventCues\",\"kind\":2,\"label\":\"UI_ClearEventCues\",\"documentation\":\"Clears all active event cues \"},{\"id\":\"UI_ClearModalAbilityPhaseCallback\",\"kind\":2,\"label\":\"UI_ClearModalAbilityPhaseCallback\",\"documentation\":\"Clears the ability phase callback. \"},{\"id\":\"UI_ClearNISEndCallback\",\"kind\":2,\"label\":\"UI_ClearNISEndCallback\",\"documentation\":\"Clears the callback function called at the current NIS. \"},{\"id\":\"UI_CoverPreviewHide\",\"kind\":2,\"label\":\"UI_CoverPreviewHide\",\"documentation\":\"Toggle off cover preview. Each call to UI_CoverPreviewHide must be matched by a call to UI_CoverPreviewShow \"},{\"id\":\"UI_CoverPreviewShow\",\"kind\":2,\"label\":\"UI_CoverPreviewShow\",\"documentation\":\"Toggle on cover preview. Each call to UI_CoverPreviewShow must be matched by a call to UI_CoverPreviewHide \"},{\"id\":\"UI_CreateColouredEntityKickerMessage\",\"kind\":2,\"label\":\"UI_CreateColouredEntityKickerMessage\",\"documentation\":\"Create a coloured custom kicker message on the entity and display to the player, rgb values are 0-255. \"},{\"id\":\"UI_CreateColouredPositionKickerMessage\",\"kind\":2,\"label\":\"UI_CreateColouredPositionKickerMessage\",\"documentation\":\"Create a coloured custom kicker message on the entity and display to the player, rgb values are 0-255. \"},{\"id\":\"UI_CreateColouredSquadKickerMessage\",\"kind\":2,\"label\":\"UI_CreateColouredSquadKickerMessage\",\"documentation\":\"Create a coloured custom kicker message on the entity and display to the player, rgb values are 0-255. \"},{\"id\":\"UI_CreateEntityKickerMessage\",\"kind\":2,\"label\":\"UI_CreateEntityKickerMessage\",\"documentation\":\"Create a custom kicker message on the entity and display to the player. \"},{\"id\":\"UI_CreatePositionKickerMessage\",\"kind\":2,\"label\":\"UI_CreatePositionKickerMessage\",\"documentation\":\"Create a custom kicker message on the entity and display to the player. \"},{\"id\":\"UI_CreateSquadKickerMessage\",\"kind\":2,\"label\":\"UI_CreateSquadKickerMessage\",\"documentation\":\"Create a custom kicker message on the entity and display to the player. \"},{\"id\":\"UI_EnableGameEventCueType\",\"kind\":2,\"label\":\"UI_EnableGameEventCueType\",\"documentation\":\"Enables or disables event cues. \"},{\"id\":\"UI_EnableResourceTypeKicker\",\"kind\":2,\"label\":\"UI_EnableResourceTypeKicker\",\"documentation\":\"Enables or disables resource kickers. \"},{\"id\":\"UI_EnableUIEventCueType\",\"kind\":2,\"label\":\"UI_EnableUIEventCueType\",\"documentation\":\"Enables or disables event cues. \"},{\"id\":\"UI_FlashAbilityButton\",\"kind\":2,\"label\":\"UI_FlashAbilityButton\",\"documentation\":\"Flash an ability command button. Pass the return value to UI_StopFlashing to stop flashing the button. \"},{\"id\":\"UI_FlashConstructionButton\",\"kind\":2,\"label\":\"UI_FlashConstructionButton\",\"documentation\":\"Flash a construction item command button. Pass the return value to UI_StopFlashing to stop flashing the button. \"},{\"id\":\"UI_FlashConstructionMenu\",\"kind\":2,\"label\":\"UI_FlashConstructionMenu\",\"documentation\":\"Flash a construction menu command button. Pass the return value to UI_StopFlashing to stop flashing the button. \"},{\"id\":\"UI_FlashEntity\",\"kind\":2,\"label\":\"UI_FlashEntity\",\"documentation\":\"Flashes the entity using attributes from [tuning][ui] \"},{\"id\":\"UI_FlashEntityCommandButton\",\"kind\":2,\"label\":\"UI_FlashEntityCommandButton\",\"documentation\":\"Flash an entity order command button. Pass the return value to UI_StopFlashing to stop flashing the button. \"},{\"id\":\"UI_FlashEventCue\",\"kind\":2,\"label\":\"UI_FlashEventCue\",\"documentation\":\"Flash an event cue item. Pass the return value to UI_StopFlashing to stop flashing the button. \"},{\"id\":\"UI_FlashObjectiveCounter\",\"kind\":2,\"label\":\"UI_FlashObjectiveCounter\",\"documentation\":\"Flash an objective counter. Pass the return value to UI_StopFlashing to stop flashing the button. \"},{\"id\":\"UI_FlashObjectiveIcon\",\"kind\":2,\"label\":\"UI_FlashObjectiveIcon\",\"documentation\":\"Flash an objective. Pass the return value to UI_StopFlashing to stop flashing the button. \"},{\"id\":\"UI_FlashProductionBuildingButton\",\"kind\":2,\"label\":\"UI_FlashProductionBuildingButton\",\"documentation\":\"Flash a production building button. Pass the return value to UI_StopFlashing to stop flashing the button. \"},{\"id\":\"UI_FlashProductionButton\",\"kind\":2,\"label\":\"UI_FlashProductionButton\",\"documentation\":\"Flash a production item command button. Pass the return value to UI_StopFlashing to stop flashing the button. \"},{\"id\":\"UI_FlashSquadCommandButton\",\"kind\":2,\"label\":\"UI_FlashSquadCommandButton\",\"documentation\":\"Flash a squad order command button. Pass the return value to UI_StopFlashing to stop flashing the button. \"},{\"id\":\"UI_GetDecoratorsEnabled\",\"kind\":2,\"label\":\"UI_GetDecoratorsEnabled\",\"documentation\":\"Returns whether all decorators are enabled or not \"},{\"id\":\"UI_HideTacticalMap\",\"kind\":2,\"label\":\"UI_HideTacticalMap\",\"documentation\":\"Hides the tactical map \"},{\"id\":\"UI_HighlightSquad\",\"kind\":2,\"label\":\"UI_HighlightSquad\",\"documentation\":\"Turn on squad highlight UI feature for the specified duration. \"},{\"id\":\"UI_IsTacticalMapShown\",\"kind\":2,\"label\":\"UI_IsTacticalMapShown\",\"documentation\":\"Returns whether the tactical map is being shown (not strict) \"},{\"id\":\"UI_MessageBoxHide\",\"kind\":2,\"label\":\"UI_MessageBoxHide\",\"documentation\":\"If the message box is activated, close it. The callback will receive the button parameter given. \"},{\"id\":\"UI_MessageBoxSetButton\",\"kind\":2,\"label\":\"UI_MessageBoxSetButton\",\"documentation\":\"Set the text/tooltip/enabled state of a button on the dialog. \"},{\"id\":\"UI_MessageBoxSetText\",\"kind\":2,\"label\":\"UI_MessageBoxSetText\",\"documentation\":\"Set the title and message body of the dialog. \"},{\"id\":\"UI_NewHUDFeature\",\"kind\":2,\"label\":\"UI_NewHUDFeature\",\"documentation\":\"Brings up a message and arrow pointing to a HUD feature. nCall UI_TitleDestroy to remove.\"},{\"id\":\"UI_OutOfBoundsLinesHide\",\"kind\":2,\"label\":\"UI_OutOfBoundsLinesHide\",\"documentation\":\"Toggle off terrain out of bounds lines. Each call to UI_OutOfBoundsLinesHide must be matched by a call to UI_OutOfBoundsLinesShow \"},{\"id\":\"UI_OutOfBoundsLinesShow\",\"kind\":2,\"label\":\"UI_OutOfBoundsLinesShow\",\"documentation\":\"Toggle on terrain out of bounds lines. Each call to UI_OutOfBoundsLinesShow must be matched by a call to UI_OutOfBoundsLinesShowHide \"},{\"id\":\"UI_RestrictBuildingPlacement\",\"kind\":2,\"label\":\"UI_RestrictBuildingPlacement\",\"documentation\":\"Only allow buildings to be placed inside a marker. \"},{\"id\":\"UI_ScreenFade\",\"kind\":2,\"label\":\"UI_ScreenFade\",\"documentation\":\"Fades the screen to a given RGBA colour over a number of seconds. mouse input is blocked during the fade, and you can control whether the input keeps being blocked after the fade has ended (be careful!) nCall UI_TitleDestroy to remove.\"},{\"id\":\"UI_SetAbilityCardVisibility\",\"kind\":2,\"label\":\"UI_SetAbilityCardVisibility\",\"documentation\":\"Sets the visibility of the Commander Ability card. \"},{\"id\":\"UI_SetAlliedBandBoxSelection\",\"kind\":2,\"label\":\"UI_SetAlliedBandBoxSelection\",\"documentation\":\"Sets the game to allow allied squads to be selected at the same time as your own squads \"},{\"id\":\"UI_SetCPMeterVisibility\",\"kind\":2,\"label\":\"UI_SetCPMeterVisibility\",\"documentation\":\"Sets the visibility of the Command Point meter. \"},{\"id\":\"UI_SetDecoratorsEnabled\",\"kind\":2,\"label\":\"UI_SetDecoratorsEnabled\",\"documentation\":\"Enables or disables all decorators \"},{\"id\":\"UI_SetForceShowSubtitles\",\"kind\":2,\"label\":\"UI_SetForceShowSubtitles\",\"documentation\":\"Sets the game to force show subtitles even if the player has them turned off. \"},{\"id\":\"UI_SetModalAbilityPhaseCallback\",\"kind\":2,\"label\":\"UI_SetModalAbilityPhaseCallback\",\"documentation\":\"Sets a function to be called when the player clicks an ability and gets a targeting UI. Your function will have 2 arguments: [Blueprint] ability blueprint, [integer] phase: MAP_Placing, MAP_Facing (only if ability requires facing) or MAP_Confirmed (not strict) \"},{\"id\":\"UI_SetNISEndCallback\",\"kind\":2,\"label\":\"UI_SetNISEndCallback\",\"documentation\":\"Sets the callback function called at the end of an NIS, note this function is automatically cleared after being called once. \"},{\"id\":\"UI_SetSoviet227Blinking\",\"kind\":2,\"label\":\"UI_SetSoviet227Blinking\",\"documentation\":\"Blink the Soviet 227/progression UI \"},{\"id\":\"UI_SetSoviet227Visibility\",\"kind\":2,\"label\":\"UI_SetSoviet227Visibility\",\"documentation\":\"Sets the visibility of the Soviet 227/progression UI \"},{\"id\":\"UI_ShowTacticalMap\",\"kind\":2,\"label\":\"UI_ShowTacticalMap\",\"documentation\":\"Shows the tactical map \"},{\"id\":\"UI_StopFlashing\",\"kind\":2,\"label\":\"UI_StopFlashing\",\"documentation\":\"Stop flashing a flash created with a previous call to UI_Flash*(). \"},{\"id\":\"UI_SystemMessageHide\",\"kind\":2,\"label\":\"UI_SystemMessageHide\",\"documentation\":\"Removes a message added by Game_ShowSystemMessage. \"},{\"id\":\"UI_SystemMessageShow\",\"kind\":2,\"label\":\"UI_SystemMessageShow\",\"documentation\":\"Shows a system message in the area where Game Paused text appears. nCall Game_HideSystemMessage to remove the message.\"},{\"id\":\"UI_TerritoryHide\",\"kind\":2,\"label\":\"UI_TerritoryHide\",\"documentation\":\"Toggle off territory lines. Each call to UI_TerritoryHide must be matched by a call to UI_TerritoryShow \"},{\"id\":\"UI_TerritoryShow\",\"kind\":2,\"label\":\"UI_TerritoryShow\",\"documentation\":\"Toggle on territory lines. Each call to UI_TerritoryShow must be matched by a call to UI_TerritoryHide \"},{\"id\":\"UI_TitleDestroy\",\"kind\":2,\"label\":\"UI_TitleDestroy\",\"documentation\":\"Removes a title using an id returned by the title creating function. \"},{\"id\":\"UI_ToggleDecorators\",\"kind\":2,\"label\":\"UI_ToggleDecorators\",\"documentation\":\"Toggles all decorators on or off. \"},{\"id\":\"UI_UnrestrictBuildingPlacement\",\"kind\":2,\"label\":\"UI_UnrestrictBuildingPlacement\",\"documentation\":\"Removes the restriction on building placement. \"},{\"id\":\"UIWarning_Show\",\"kind\":2,\"label\":\"UIWarning_Show\",\"documentation\":\"Displays a brief UI warning in the critical alert message area. nCall UI_TitleDestroy to remove.\"},{\"id\":\"Util_AddProxCheck\",\"kind\":2,\"label\":\"Util_AddProxCheck\",\"documentation\":\"[DEPRECATED. Use Event_Proximity() instead.] Add a proximity check. nChecks if ANY or ALL the units in the element are within range of the location. If location is a CIRCLE marker, default range will be max(radius, 5)\"},{\"id\":\"Util_ClearProxChecks\",\"kind\":2,\"label\":\"Util_ClearProxChecks\",\"documentation\":\"[DEPRECATED. DO NOT USE.] Removes all existing proximity checks. nClears the list of prox checks that are currently active and shis down the procChecker.\"},{\"id\":\"Util_CreateEntities\",\"kind\":2,\"label\":\"Util_CreateEntities\",\"documentation\":\"Creates a given number of entities at a location and adds them to an egroup. A PlayerID of nil will create the entities as world objects. \"},{\"id\":\"Util_CreateSquads\",\"kind\":2,\"label\":\"Util_CreateSquads\",\"documentation\":\"High level function to create squads and give them basic orders upon spawning. Detailed explanation found in ScarUtil.scar n PlayerID player - player who will own the squads SGroupID/Table/String sgroup - sgroup that receives the new squads. Can be nil if you don't need to manage the new squads or a string if you want to create a new sgroup with that name.If a table is given, the first item will be used as the return sgroup. SquadBlueprint sbp - the blueprint for the new squads. can be a table of blueprints, in which case a random blueprint will be chosen for each squad Position location - where to spawn the squads (can be any parameter type whose position can be queried) SGroup - If the sgroup is a Hold Entity then the squad is spawned inside of it. EGroup - If the egroup is a hold entity then the squad is spawned inside of it. NOTE: if the hold is destroyed, or is full, or due to any other misc. failure case, then the squad is spawned at the player's map entry point. Pos - the squad is spawned at this location. Marker - the squad is spawned at the marker and facing the direciton of the marker. Position destination - (OPTIONAL) where the squads will move to, load into, or attack SGroup can mean two different things, if the Sgroup is owned by the player and a hold then try to enter it. Or if the SGroup is an enemy squad, then the spawned squad should attack move the enemy. If neither is true, then the squad just moves to the location. EGroup should be treated the same as the SGroup. Position/Marker: the squad moves to the location. Sync weapon: the squad captures the sync weapon. Integer numsquads - (OPTIONAL) how many squads to spawn Integer loadout - (OPTIONAL) max amount of units to spawn per squad Boolean attackmove - (OPTIONAL) in cases where the squads do a simple move to their destination (not attacking or loading into anything), this determines whether they attack move or not Position facing - (OPTIONAL) in cases where the squads do a simple move to their destination, this determines their facing once they reach their destination. If facing is not specified, and the squad is moving to a marker, the marker's facing is used. UpgradeBlueprint upgrades - (OPTIONAL) upgrade(s) to instantly apply to squads when they spawnnReferences: [Util_CreateSquads]\"},{\"id\":\"Util_GetDistance\",\"kind\":2,\"label\":\"Util_GetDistance\",\"documentation\":\"Returns the distance between two objects \"},{\"id\":\"Util_GetOffsetPosition\",\"kind\":2,\"label\":\"Util_GetOffsetPosition\",\"documentation\":\"Returns a position relative to a entity/squad/egroup/sgroup/marker/position's current position and orientation. see LuaConsts.scar for explanation of 'offset' parameter. \"},{\"id\":\"Util_GetPlayerOwner\",\"kind\":2,\"label\":\"Util_GetPlayerOwner\",\"documentation\":\"Returns the player owner for any of: entity, squad, egroup, sgroup, player. for groups, the first item is used. Returns nil for world owned or empty groups \"},{\"id\":\"Util_GetRelationship\",\"kind\":2,\"label\":\"Util_GetRelationship\",\"documentation\":\"Gets the relationship between two of: entity, squad, egroup, sgroup, player. for groups, the first item is used. \"},{\"id\":\"Util_GetRelativeOffset\",\"kind\":2,\"label\":\"Util_GetRelativeOffset\",\"documentation\":\"Returns a relative offset position to an element \"},{\"id\":\"Util_MonitorTerritory\",\"kind\":2,\"label\":\"Util_MonitorTerritory\",\"documentation\":\"Monitors a territory point and warns the player if it goes below a certain capture threshold nCan receive a parent objective to which to attach a subobjective that displays data.\"},{\"id\":\"Util_RemoveProxCheck\",\"kind\":2,\"label\":\"Util_RemoveProxCheck\",\"documentation\":\"[DEPRECATED. DO NOT USE.] Remove proximity checks assigned to a location. nRemoves all proximity checks associated with the defined location.\"},{\"id\":\"Util_RemoveProxCheckByID\",\"kind\":2,\"label\":\"Util_RemoveProxCheckByID\",\"documentation\":\"[DEPRECATED. DO NOT USE.] Remove a specific proximity check based on its ID. \"},{\"id\":\"Util_ScarPos\",\"kind\":2,\"label\":\"Util_ScarPos\",\"documentation\":\"Converts a 2D top down position to a 3D ScarPosition. n 3D ScarPositions have the x axis left to right, the z axis in to out, and the y axis down to up (y axis represents the height of the terrain). Use this function to convert a top-down 2D position to a 3D world position.<BR/><BR/> Note: (0,0) is in the center of the map.\"},{\"id\":\"Util_SetPlayerOwner\",\"kind\":2,\"label\":\"Util_SetPlayerOwner\",\"documentation\":\"Sets the player owner for an entity, squad, egroup or sgroup. Also sets player owner of whatever is garrisoned inside them \"},{\"id\":\"Util_SpawnDemoCharge\",\"kind\":2,\"label\":\"Util_SpawnDemoCharge\",\"documentation\":\"Spawns a demo charge at a position and returns an egroup nUse this instead of World_SpawnDemolitionCharge if you need to manage it\"},{\"id\":\"Util_StartNIS\",\"kind\":2,\"label\":\"Util_StartNIS\",\"documentation\":\"Play an NIS. See confluence link below for more info. nReferences: [Scripting+NIS+Transitions]\"},{\"id\":\"VIS_OccCullToggleOBB\",\"kind\":2,\"label\":\"VIS_OccCullToggleOBB\",\"documentation\":\"toggle the visibility of occlusion culling OBB \"},{\"id\":\"Marker_CleanUpTheDead\",\"kind\":2,\"label\":\"Marker_CleanUpTheDead\",\"documentation\":\"Kill off a specific player's dead bodies (enter ALL to clean them all up) in a marker radius \"},{\"id\":\"Weather_SetType\",\"kind\":2,\"label\":\"Weather_SetType\",\"documentation\":\"changes the weather state of all objects (options: sunny, lightrain, mediumrain, heavyrain) \"},{\"id\":\"World_AddPilferLockArea\",\"kind\":2,\"label\":\"World_AddPilferLockArea\",\"documentation\":\"Add an area where pilferable weapons won't disappear due to timeout \"},{\"id\":\"World_CleanUpTheDead\",\"kind\":2,\"label\":\"World_CleanUpTheDead\",\"documentation\":\"Kill off a specific player's dead bodies (enter ALL to clean them all up) \"},{\"id\":\"World_ClearCasualties\",\"kind\":2,\"label\":\"World_ClearCasualties\",\"documentation\":\"\"},{\"id\":\"World_DamageIce\",\"kind\":2,\"label\":\"World_DamageIce\",\"documentation\":\"Damage a circle of ice with a gradient nlinearly to 50 damage at 10 meters (so 75 damage at 7.5 meters)\"},{\"id\":\"World_DestroyWallsNearMarker\",\"kind\":2,\"label\":\"World_DestroyWallsNearMarker\",\"documentation\":\"Destroys walls (entities with a wall_ext) near a marker \"},{\"id\":\"World_DistanceEGroupToPoint\",\"kind\":2,\"label\":\"World_DistanceEGroupToPoint\",\"documentation\":\"Get the distance between a squad group and a point. n Pass in true for 3rd parameter to get the closest point and pass in false to get the furthest point. The closest/furthest point is calculated on a per entity basis. So the closest distance would be that of the closest entity.<BR/> Also note, it is an error to call this function with an empty group.<BR/>\"},{\"id\":\"World_DistancePointToPoint\",\"kind\":2,\"label\":\"World_DistancePointToPoint\",\"documentation\":\"Get the distance between two points. \"},{\"id\":\"World_DistanceSGroupToPoint\",\"kind\":2,\"label\":\"World_DistanceSGroupToPoint\",\"documentation\":\"Get the distance between a squad group and a point. n Pass in true for 3rd parameter to get the closest point and pass in false to get the furthest point. The closest/furthest point is calculated on a per squadron basis. So the closest distance would be that of the closest squadron.<BR/> It is an error to call this function with an empty group. Check the group size with SquadGroup_Count( ) first.\"},{\"id\":\"World_DistanceSquaredPointToPoint\",\"kind\":2,\"label\":\"World_DistanceSquaredPointToPoint\",\"documentation\":\"Get the distance squared between two points. \"},{\"id\":\"World_EnableReplacementObjectForEmptyPlayers\",\"kind\":2,\"label\":\"World_EnableReplacementObjectForEmptyPlayers\",\"documentation\":\"*** You must call this from OnGameSetup, otherwise it's too late *** Determines whether empty players get converted to null resource points. nsee Attribute Editor under tuning/player/empty_player_replacement_object\"},{\"id\":\"World_EnableSharedLineOfSight\",\"kind\":2,\"label\":\"World_EnableSharedLineOfSight\",\"documentation\":\"Enables or disables shared line of sight between these two players \"},{\"id\":\"World_EndSP\",\"kind\":2,\"label\":\"World_EndSP\",\"documentation\":\"Wins/loses a single team mission for the local teams \"},{\"id\":\"World_GetClosest\",\"kind\":2,\"label\":\"World_GetClosest\",\"documentation\":\"Returns the closest object from the table of marker/pos/egroup/sgroup to the closest marker/pos/egroup/sgroup specified nThe table may mix together objects of different types.\"},{\"id\":\"World_GetCurrentInteractionStage\",\"kind\":2,\"label\":\"World_GetCurrentInteractionStage\",\"documentation\":\"Returns the current interaction stage (areas painted at this number or lower are currently interactable) \"},{\"id\":\"World_GetEntitiesNearMarker\",\"kind\":2,\"label\":\"World_GetEntitiesNearMarker\",\"documentation\":\"Find and add entities near the marker to the egroup nEntities belonging to a squad would not be added to the egroup\"},{\"id\":\"World_GetEntitiesNearPoint\",\"kind\":2,\"label\":\"World_GetEntitiesNearPoint\",\"documentation\":\"Find and add entities near the point to the egroup nEntities belonging to a squad would not be added to the egroup\"},{\"id\":\"World_GetEntitiesWithinTerritorySector\",\"kind\":2,\"label\":\"World_GetEntitiesWithinTerritorySector\",\"documentation\":\"Find and add entities within the territory sector to the egroup nEntities belonging to a squad would not be added to the egroup\"},{\"id\":\"World_GetEntity\",\"kind\":2,\"label\":\"World_GetEntity\",\"documentation\":\"Returns the UniqueID at given index, use with World_GetNumEntities() to iterate through all the entities in the world \"},{\"id\":\"World_GetFurthest\",\"kind\":2,\"label\":\"World_GetFurthest\",\"documentation\":\"Returns the furthest object from the table of marker/pos/egroup/sgroup to the furthest marker/pos/egroup/sgroup specified. nThe table may mix together objects of different types.\"},{\"id\":\"World_GetGameTime\",\"kind\":2,\"label\":\"World_GetGameTime\",\"documentation\":\"Return the total game time in seconds. \"},{\"id\":\"World_GetHeightAt\",\"kind\":2,\"label\":\"World_GetHeightAt\",\"documentation\":\"returns the height of ground at 2D pos x,y \"},{\"id\":\"World_GetHiddenPositionOnPath\",\"kind\":2,\"label\":\"World_GetHiddenPositionOnPath\",\"documentation\":\"Find a position on a path hidden from view, as close to the destination as possible whilst still satisfying your hidden checktype. Checktype can be either CHECK_IN_FOW, CHECK_OFFCAMERA or CHECK_BOTH. nThe path is always calculated as if it were plain infantry. This function returns nil if it can't find a suitable position, so you can do a backup plan. \"},{\"id\":\"World_GetLength\",\"kind\":2,\"label\":\"World_GetLength\",\"documentation\":\"Returns the total playable length of the game world (z coordinate) nSince the center of the map is 0,0 the world z range is (-l/2 -> l/2)\"},{\"id\":\"World_GetNearestInteractablePoint\",\"kind\":2,\"label\":\"World_GetNearestInteractablePoint\",\"documentation\":\"returns the nearest intractable position to the supplied position \"},{\"id\":\"World_GetNeutralEntitiesNearMarker\",\"kind\":2,\"label\":\"World_GetNeutralEntitiesNearMarker\",\"documentation\":\"Find and add neutral entities near the marker to the egroup nEntities belonging to a squad would not be added to the egroup\"},{\"id\":\"World_GetNeutralEntitiesNearPoint\",\"kind\":2,\"label\":\"World_GetNeutralEntitiesNearPoint\",\"documentation\":\"Find and add neutral entities near the point to the egroup nEntities belonging to a squad would not be added to the egroup\"},{\"id\":\"World_GetNeutralEntitiesWithinTerritorySector\",\"kind\":2,\"label\":\"World_GetNeutralEntitiesWithinTerritorySector\",\"documentation\":\"Find and add neutral entities within the territory sector to the egroup nEntities belonging to a squad would not be added to the egroup\"},{\"id\":\"World_GetNumEntities\",\"kind\":2,\"label\":\"World_GetNumEntities\",\"documentation\":\"Returns the number of spawned entities in the entire world (use sparingly and never at runtime) \"},{\"id\":\"World_GetNumEntitiesNearPoint\",\"kind\":2,\"label\":\"World_GetNumEntitiesNearPoint\",\"documentation\":\"Return the number of entities of the same ebp in the sphere volume \"},{\"id\":\"World_GetNumStrategicPoints\",\"kind\":2,\"label\":\"World_GetNumStrategicPoints\",\"documentation\":\"Returns the number of strategic points on this map (does not count strat. objectives) \"},{\"id\":\"World_GetNumVictoryPoints\",\"kind\":2,\"label\":\"World_GetNumVictoryPoints\",\"documentation\":\"Returns the number of strategic objectives on this map \"},{\"id\":\"World_GetOffsetPosition\",\"kind\":2,\"label\":\"World_GetOffsetPosition\",\"documentation\":\"Returns a position that is offset a certain distance from the position/heading passed in. see LuaConsts.scar for explanation of 'offset' parameter. \"},{\"id\":\"World_GetPlayerAt\",\"kind\":2,\"label\":\"World_GetPlayerAt\",\"documentation\":\"- Returns the player at a given index, numbers start at one \"},{\"id\":\"World_GetPlayerCount\",\"kind\":2,\"label\":\"World_GetPlayerCount\",\"documentation\":\"Return the total number of players in the world \"},{\"id\":\"World_GetPlayerIndex\",\"kind\":2,\"label\":\"World_GetPlayerIndex\",\"documentation\":\"- Returns the player index given the Player* \"},{\"id\":\"World_GetPossibleSquadsBlueprint\",\"kind\":2,\"label\":\"World_GetPossibleSquadsBlueprint\",\"documentation\":\"Returns the blueprint of a chosen squad for a race \"},{\"id\":\"World_GetPossibleSquadsCount\",\"kind\":2,\"label\":\"World_GetPossibleSquadsCount\",\"documentation\":\"Returns the number of types of squads a race can build \"},{\"id\":\"World_GetRaceIndex\",\"kind\":2,\"label\":\"World_GetRaceIndex\",\"documentation\":\"Returns the race index of a race, given its name (from the ME). \"},{\"id\":\"World_GetRand\",\"kind\":2,\"label\":\"World_GetRand\",\"documentation\":\"Returns a random integer with range [min, max] nIt is recomended you use this instead of luas math.random function\"},{\"id\":\"World_GetSpawnablePosition\",\"kind\":2,\"label\":\"World_GetSpawnablePosition\",\"documentation\":\"Given any position in the world, this function will return position safe for spawning a given entity \"},{\"id\":\"World_GetSquadsNearMarker\",\"kind\":2,\"label\":\"World_GetSquadsNearMarker\",\"documentation\":\"Find and add squads near the marker to the sgroup nThis function is faster if radius is small and/or number of squads to search for is large\"},{\"id\":\"World_GetSquadsNearPoint\",\"kind\":2,\"label\":\"World_GetSquadsNearPoint\",\"documentation\":\"Find and add squads near the point to the sgroup nThis function is faster if radius is small and/or number of squads to search for is large\"},{\"id\":\"World_GetSquadsWithinTerritorySector\",\"kind\":2,\"label\":\"World_GetSquadsWithinTerritorySector\",\"documentation\":\"Find and add squads within territory sector identified by sector ID nOwner type could be OT_Player, OT_Ally, OT_Enemy or OT_Neutral\"},{\"id\":\"World_GetStrategyPoints\",\"kind\":2,\"label\":\"World_GetStrategyPoints\",\"documentation\":\"Appends all the strategic resource points to an egroup. n takes the egroup where you want to put the points, and 2nd parameter is a bool which indicates if you want to include VPs or not If 'group' already contains an entity from 'grouptoadd' it will not be added.<BR/> This function does not clear the contents of 'group'.<BR/> Example: World_GetStrategyPoints(mypointgroup, true) --puts all the points including vps into mypointgroup\"},{\"id\":\"World_GetTeamTerritoryGaps\",\"kind\":2,\"label\":\"World_GetTeamTerritoryGaps\",\"documentation\":\"Returns one or more sector IDs that would connect two unconnected pieces of territory. return value is through a table (since there can be more than one way to connect territory) - each entry in this table is a table of sector IDs. nCurrently only finds single gaps - i.e. if two territories are 'almost' connected.\"},{\"id\":\"World_GetTeamVictoryTicker\",\"kind\":2,\"label\":\"World_GetTeamVictoryTicker\",\"documentation\":\"Returns the number of tickets that this team has \"},{\"id\":\"World_GetTerritorySectorID\",\"kind\":2,\"label\":\"World_GetTerritorySectorID\",\"documentation\":\"Return the sector ID from the position \"},{\"id\":\"World_GetTerritorySectorPosition\",\"kind\":2,\"label\":\"World_GetTerritorySectorPosition\",\"documentation\":\"Returns the position of a sector based on the capture entity (ex: the fuel point's position) \"},{\"id\":\"World_GetWidth\",\"kind\":2,\"label\":\"World_GetWidth\",\"documentation\":\"Returns the total playable width of the game world (x coordinate) nSince the center of the map is 0,0 the world x range is (-w/2 -> w/2)\"},{\"id\":\"World_IncreaseInteractionStage\",\"kind\":2,\"label\":\"World_IncreaseInteractionStage\",\"documentation\":\"Increases current interaction stage by 1 \"},{\"id\":\"World_IsGameOver\",\"kind\":2,\"label\":\"World_IsGameOver\",\"documentation\":\"- to document \"},{\"id\":\"World_IsInSupply\",\"kind\":2,\"label\":\"World_IsInSupply\",\"documentation\":\"Returns true if position is in-supply for the given player \"},{\"id\":\"World_IsPointInPlayerTerritory\",\"kind\":2,\"label\":\"World_IsPointInPlayerTerritory\",\"documentation\":\"Returns true if position if part of the entity territory nNote that this does not care if territory is in supply or not\"},{\"id\":\"World_IsTerritorySectorOwnedByPlayer\",\"kind\":2,\"label\":\"World_IsTerritorySectorOwnedByPlayer\",\"documentation\":\"Find if player has ownership to this territory sector. nOther players on the same team would also have the ownership to the sector\"},{\"id\":\"World_IsWinterMap\",\"kind\":2,\"label\":\"World_IsWinterMap\",\"documentation\":\"Returns whether the current map is set in winter. Checks if 'g_isWinterMap' is set to true. \"},{\"id\":\"World_OwnsEGroup\",\"kind\":2,\"label\":\"World_OwnsEGroup\",\"documentation\":\"Returns whether ANY or ALL of the entities in the group are owned by the world (i.e. neutral) \"},{\"id\":\"World_OwnsEntity\",\"kind\":2,\"label\":\"World_OwnsEntity\",\"documentation\":\"Returns true if the squad is owned by the world \"},{\"id\":\"World_OwnsSGroup\",\"kind\":2,\"label\":\"World_OwnsSGroup\",\"documentation\":\"Returns whether ANY or ALL of the squads in the group are owned by the world (i.e. neutral) \"},{\"id\":\"World_OwnsSquad\",\"kind\":2,\"label\":\"World_OwnsSquad\",\"documentation\":\"Returns true if the squad is owned by the world \"},{\"id\":\"World_PointPointProx\",\"kind\":2,\"label\":\"World_PointPointProx\",\"documentation\":\"Returns true if two world positions are in proximity to each other \"},{\"id\":\"World_Pos\",\"kind\":2,\"label\":\"World_Pos\",\"documentation\":\"Creates a new Position object. n A position object is basically a table with an x, y, and z attribute. You can directly access the individual components in the same way that you would access a field in a table.<BR/><BR/> Example:<BR/> --* lua script snip<BR/> local pos = World_Pos(2, 0, 0)<BR/> pos.x = pos.x + 1<BR/> print pos.x -- this will print 3<BR/> --* lua script snip<BR/>\"},{\"id\":\"World_RemoveAllResourcePoints\",\"kind\":2,\"label\":\"World_RemoveAllResourcePoints\",\"documentation\":\"Removes all resource and strategic points but not entities with a supply ext NOTE: this could eventually be written as - RemoveAllOfType( type ) which would be more flexible. \"},{\"id\":\"World_RemovePilferLockArea\",\"kind\":2,\"label\":\"World_RemovePilferLockArea\",\"documentation\":\"Remove a locked pilfering area, must pass the same pos and radius as when the lock area was created \"},{\"id\":\"World_SetDesignerSupply\",\"kind\":2,\"label\":\"World_SetDesignerSupply\",\"documentation\":\"Sets a particular sector in the world as a supply provider (or not) \"},{\"id\":\"World_SetGameOver\",\"kind\":2,\"label\":\"World_SetGameOver\",\"documentation\":\"- to document \"},{\"id\":\"World_SetIceHealingRate\",\"kind\":2,\"label\":\"World_SetIceHealingRate\",\"documentation\":\"Set what percent ice heals per second (0.05 means 5% per second) \"},{\"id\":\"World_SetPlayerCustomSkin\",\"kind\":2,\"label\":\"World_SetPlayerCustomSkin\",\"documentation\":\"Change the player's custom skin settings, skin must exist in the AE list of DLC skins \"},{\"id\":\"World_SetPlayerLose\",\"kind\":2,\"label\":\"World_SetPlayerLose\",\"documentation\":\"Sets the player to a lose state, with a reason for losing, and kills the player \"},{\"id\":\"World_SetPlayerWin\",\"kind\":2,\"label\":\"World_SetPlayerWin\",\"documentation\":\"Sets the player and all the members allied to player to a win state, with a reason for winning. Also sets all other players to a lose state, and kills them (if they're not already dead) \"},{\"id\":\"World_SetSnowHealingRate\",\"kind\":2,\"label\":\"World_SetSnowHealingRate\",\"documentation\":\"Set what percent snow heals per second (0.05 means 5% per second) \"},{\"id\":\"World_SetTeamWin\",\"kind\":2,\"label\":\"World_SetTeamWin\",\"documentation\":\"Sets every player on a team to a win state, with a reason for winning. Also sets all other players to a lose state, and kills them (if they're not already dead) \"},{\"id\":\"World_SpawnDemolitionCharge\",\"kind\":2,\"label\":\"World_SpawnDemolitionCharge\",\"documentation\":\"spawn a demolitions charge at a position, 'player' is the one that owns the demolitions and can detonate them. \"},{\"id\":\"World_TeamTerritoryPointsConnected\",\"kind\":2,\"label\":\"World_TeamTerritoryPointsConnected\",\"documentation\":\"Returns true if the two points are in the same territory region, and owned by the specified territory team, Returns false otherwise. \"},{\"id\":\"Scar_AddInit\",\"kind\":2,\"label\":\"Scar_AddInit\",\"documentation\":\"Can be used to kick off your script. This tells the game engine \"When you are ready, call the function FunctionName first\"\"},{\"id\":\"scartype\",\"kind\":2,\"label\":\"scartype\",\"documentation\":\"Returns the SCAR Type of the provided value, eg. ST_SQUAD\"},{\"id\":\"scartype_tostring\",\"kind\":2,\"label\":\"scartype_tostring\",\"documentation\":\"Returns the SCAR Type of the provided value as a string value, eg. \"ST_SQUAD\"\"},{\"id\":\"import\",\"kind\":2,\"label\":\"import\",\"documentation\":\"Imports the provided file.\"},{\"id\":\"UI_GetViewportWidth\",\"kind\":2,\"label\":\"UI_GetViewportWidth\",\"documentation\":\"Returns the width of the viewport.\"},{\"id\":\"UI_GetViewportHeight\",\"kind\":2,\"label\":\"UI_GetViewportHeight\",\"documentation\":\"Returns the height of the viewport.\"},{\"id\":\"UI_ButtonAdd\",\"kind\":2,\"label\":\"UI_ButtonAdd\",\"documentation\":\"Creates a new Button.\"},{\"id\":\"UI_ButtonSetCallback\",\"kind\":2,\"label\":\"UI_ButtonSetCallback\",\"documentation\":\"Sets the button click callback handler.\"},{\"id\":\"UI_ButtonSetEnabled\",\"kind\":2,\"label\":\"UI_ButtonSetEnabled\",\"documentation\":\"Sets the button enabled status.\"},{\"id\":\"UI_ButtonSetIcon\",\"kind\":2,\"label\":\"UI_ButtonSetIcon\",\"documentation\":\"Sets the button icon.\"},{\"id\":\"UI_ButtonSetTag\",\"kind\":2,\"label\":\"UI_ButtonSetTag\",\"documentation\":\"Sets the button tag.\"},{\"id\":\"UI_ButtonSetText\",\"kind\":2,\"label\":\"UI_ButtonSetText\",\"documentation\":\"Sets the button text.\"},{\"id\":\"UI_LabelAdd\",\"kind\":2,\"label\":\"UI_LabelAdd\",\"documentation\":\"Creates a new Label.\"},{\"id\":\"UI_LabelSetText\",\"kind\":2,\"label\":\"UI_LabelSetText\",\"documentation\":\"Sets the label text.\"},{\"id\":\"UI_IconAdd\",\"kind\":2,\"label\":\"UI_IconAdd\",\"documentation\":\"Creates a new Icon.\"},{\"id\":\"UI_IconSetIcon\",\"kind\":2,\"label\":\"UI_IconSetIcon\",\"documentation\":\"Sets the icon icon.\"},{\"id\":\"UI_PanelAdd\",\"kind\":2,\"label\":\"UI_PanelAdd\",\"documentation\":\"Creates a new Panel.\"},{\"id\":\"UI_StatusIndicatorAdd\",\"kind\":2,\"label\":\"UI_StatusIndicatorAdd\",\"documentation\":\"Creates a new Status Indicator.\"},{\"id\":\"UI_StatusIndicatorSetValue\",\"kind\":2,\"label\":\"UI_StatusIndicatorSetValue\",\"documentation\":\"Sets the status indicator value.\"},{\"id\":\"UI_ControlSetColour\",\"kind\":2,\"label\":\"UI_ControlSetColour\",\"documentation\":\"Sets the control color.\"},{\"id\":\"UI_ControlSetPosition\",\"kind\":2,\"label\":\"UI_ControlSetPosition\",\"documentation\":\"Sets the control position.\"},{\"id\":\"UI_ControlSetRect\",\"kind\":2,\"label\":\"UI_ControlSetRect\",\"documentation\":\"Sets the control rectangle.\"},{\"id\":\"UI_ControlRemove\",\"kind\":2,\"label\":\"UI_ControlRemove\",\"documentation\":\"Removes the control.\"},{\"id\":\"UI_ControlClear\",\"kind\":2,\"label\":\"UI_ControlClear\",\"documentation\":\"Clears the control.\"},{\"id\":\"BS_NearBase\",\"kind\":12,\"label\":\"BS_NearBase\",\"detail\":\"AIBuildStyle\",\"documentation\":\"BS_NearBase of type AIBuildStyle\"},{\"id\":\"BS_Defend\",\"kind\":12,\"label\":\"BS_Defend\",\"detail\":\"AIBuildStyle\",\"documentation\":\"BS_Defend of type AIBuildStyle\"},{\"id\":\"BS_Secure\",\"kind\":12,\"label\":\"BS_Secure\",\"detail\":\"AIBuildStyle\",\"documentation\":\"BS_Secure of type AIBuildStyle\"},{\"id\":\"BS_Mines\",\"kind\":12,\"label\":\"BS_Mines\",\"detail\":\"AIBuildStyle\",\"documentation\":\"BS_Mines of type AIBuildStyle\"},{\"id\":\"BS_OuterBase\",\"kind\":12,\"label\":\"BS_OuterBase\",\"detail\":\"AIBuildStyle\",\"documentation\":\"BS_OuterBase of type AIBuildStyle\"},{\"id\":\"CPT_VictoryPoint\",\"kind\":12,\"label\":\"CPT_VictoryPoint\",\"detail\":\"AICapturePointType\",\"documentation\":\"CPT_VictoryPoint of type AICapturePointType\"},{\"id\":\"CPT_MunitionPoint\",\"kind\":12,\"label\":\"CPT_MunitionPoint\",\"detail\":\"AICapturePointType\",\"documentation\":\"CPT_MunitionPoint of type AICapturePointType\"},{\"id\":\"CPT_NullPoint\",\"kind\":12,\"label\":\"CPT_NullPoint\",\"detail\":\"AICapturePointType\",\"documentation\":\"CPT_NullPoint of type AICapturePointType\"},{\"id\":\"CPT_TacticalPoint\",\"kind\":12,\"label\":\"CPT_TacticalPoint\",\"detail\":\"AICapturePointType\",\"documentation\":\"CPT_TacticalPoint of type AICapturePointType\"},{\"id\":\"CPT_INVALID\",\"kind\":12,\"label\":\"CPT_INVALID\",\"detail\":\"AICapturePointType\",\"documentation\":\"CPT_INVALID of type AICapturePointType\"},{\"id\":\"CPT_FuelPoint\",\"kind\":12,\"label\":\"CPT_FuelPoint\",\"detail\":\"AICapturePointType\",\"documentation\":\"CPT_FuelPoint of type AICapturePointType\"},{\"id\":\"COMBAT_Default\",\"kind\":12,\"label\":\"COMBAT_Default\",\"detail\":\"AICombatType\",\"documentation\":\"COMBAT_Default of type AICombatType\"},{\"id\":\"COMBAT_Defend\",\"kind\":12,\"label\":\"COMBAT_Defend\",\"detail\":\"AICombatType\",\"documentation\":\"COMBAT_Defend of type AICombatType\"},{\"id\":\"COMBAT_Attack\",\"kind\":12,\"label\":\"COMBAT_Attack\",\"detail\":\"AICombatType\",\"documentation\":\"COMBAT_Attack of type AICombatType\"},{\"id\":\"MPT_VictoryPoint\",\"kind\":12,\"label\":\"MPT_VictoryPoint\",\"detail\":\"AIMilitaryPointType\",\"documentation\":\"MPT_VictoryPoint of type AIMilitaryPointType\"},{\"id\":\"MPT_NullPoint\",\"kind\":12,\"label\":\"MPT_NullPoint\",\"detail\":\"AIMilitaryPointType\",\"documentation\":\"MPT_NullPoint of type AIMilitaryPointType\"},{\"id\":\"MPT_NONE\",\"kind\":12,\"label\":\"MPT_NONE\",\"detail\":\"AIMilitaryPointType\",\"documentation\":\"MPT_NONE of type AIMilitaryPointType\"},{\"id\":\"MPT_MunitionPoint\",\"kind\":12,\"label\":\"MPT_MunitionPoint\",\"detail\":\"AIMilitaryPointType\",\"documentation\":\"MPT_MunitionPoint of type AIMilitaryPointType\"},{\"id\":\"MPT_COUNT\",\"kind\":12,\"label\":\"MPT_COUNT\",\"detail\":\"AIMilitaryPointType\",\"documentation\":\"MPT_COUNT of type AIMilitaryPointType\"},{\"id\":\"MPT_SupportStructure\",\"kind\":12,\"label\":\"MPT_SupportStructure\",\"detail\":\"AIMilitaryPointType\",\"documentation\":\"MPT_SupportStructure of type AIMilitaryPointType\"},{\"id\":\"MPT_Defence\",\"kind\":12,\"label\":\"MPT_Defence\",\"detail\":\"AIMilitaryPointType\",\"documentation\":\"MPT_Defence of type AIMilitaryPointType\"},{\"id\":\"MPT_Spawner\",\"kind\":12,\"label\":\"MPT_Spawner\",\"detail\":\"AIMilitaryPointType\",\"documentation\":\"MPT_Spawner of type AIMilitaryPointType\"},{\"id\":\"MPT_HQ\",\"kind\":12,\"label\":\"MPT_HQ\",\"detail\":\"AIMilitaryPointType\",\"documentation\":\"MPT_HQ of type AIMilitaryPointType\"},{\"id\":\"MPT_TacticalPoint\",\"kind\":12,\"label\":\"MPT_TacticalPoint\",\"detail\":\"AIMilitaryPointType\",\"documentation\":\"MPT_TacticalPoint of type AIMilitaryPointType\"},{\"id\":\"MPT_FuelPoint\",\"kind\":12,\"label\":\"MPT_FuelPoint\",\"detail\":\"AIMilitaryPointType\",\"documentation\":\"MPT_FuelPoint of type AIMilitaryPointType\"},{\"id\":\"MTARGET_Attack\",\"kind\":12,\"label\":\"MTARGET_Attack\",\"detail\":\"AIMilitaryTargetType\",\"documentation\":\"MTARGET_Attack of type AIMilitaryTargetType\"},{\"id\":\"MTARGET_Defend\",\"kind\":12,\"label\":\"MTARGET_Defend\",\"detail\":\"AIMilitaryTargetType\",\"documentation\":\"MTARGET_Defend of type AIMilitaryTargetType\"},{\"id\":\"AI_ProductionQueue\",\"kind\":12,\"label\":\"AI_ProductionQueue\",\"detail\":\"AIResourceType\",\"documentation\":\"AI_ProductionQueue of type AIResourceType\"},{\"id\":\"AI_CapturePoint\",\"kind\":12,\"label\":\"AI_CapturePoint\",\"detail\":\"AIResourceType\",\"documentation\":\"AI_CapturePoint of type AIResourceType\"},{\"id\":\"AI_Squad\",\"kind\":12,\"label\":\"AI_Squad\",\"detail\":\"AIResourceType\",\"documentation\":\"AI_Squad of type AIResourceType\"},{\"id\":\"AITacticTargetPreference_HighDamage\",\"kind\":12,\"label\":\"AITacticTargetPreference_HighDamage\",\"detail\":\"AITacticTargetPreference\",\"documentation\":\"AITacticTargetPreference_HighDamage of type AITacticTargetPreference\"},{\"id\":\"AITacticTargetPreference_LowHealth\",\"kind\":12,\"label\":\"AITacticTargetPreference_LowHealth\",\"detail\":\"AITacticTargetPreference\",\"documentation\":\"AITacticTargetPreference_LowHealth of type AITacticTargetPreference\"},{\"id\":\"AITacticTargetPreference_None\",\"kind\":12,\"label\":\"AITacticTargetPreference_None\",\"detail\":\"AITacticTargetPreference\",\"documentation\":\"AITacticTargetPreference_None of type AITacticTargetPreference\"},{\"id\":\"AITacticTargetPreference_Support\",\"kind\":12,\"label\":\"AITacticTargetPreference_Support\",\"detail\":\"AITacticTargetPreference\",\"documentation\":\"AITacticTargetPreference_Support of type AITacticTargetPreference\"},{\"id\":\"AITacticTargetPreference_Near\",\"kind\":12,\"label\":\"AITacticTargetPreference_Near\",\"detail\":\"AITacticTargetPreference\",\"documentation\":\"AITacticTargetPreference_Near of type AITacticTargetPreference\"},{\"id\":\"AITacticTargetPreference_NearAndBest\",\"kind\":12,\"label\":\"AITacticTargetPreference_NearAndBest\",\"detail\":\"AITacticTargetPreference\",\"documentation\":\"AITacticTargetPreference_NearAndBest of type AITacticTargetPreference\"},{\"id\":\"AITacticTargetPreference_Best\",\"kind\":12,\"label\":\"AITacticTargetPreference_Best\",\"detail\":\"AITacticTargetPreference\",\"documentation\":\"AITacticTargetPreference_Best of type AITacticTargetPreference\"},{\"id\":\"TACTIC_CapturePoint\",\"kind\":12,\"label\":\"TACTIC_CapturePoint\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_CapturePoint of type AITacticType\"},{\"id\":\"TACTIC_Ability\",\"kind\":12,\"label\":\"TACTIC_Ability\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_Ability of type AITacticType\"},{\"id\":\"TACTIC_Pickup\",\"kind\":12,\"label\":\"TACTIC_Pickup\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_Pickup of type AITacticType\"},{\"id\":\"TACTIC_ForceAttack\",\"kind\":12,\"label\":\"TACTIC_ForceAttack\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_ForceAttack of type AITacticType\"},{\"id\":\"TACTIC_Hold\",\"kind\":12,\"label\":\"TACTIC_Hold\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_Hold of type AITacticType\"},{\"id\":\"TACTIC_MinRange\",\"kind\":12,\"label\":\"TACTIC_MinRange\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_MinRange of type AITacticType\"},{\"id\":\"TACTIC_CaptureTeamWeapon\",\"kind\":12,\"label\":\"TACTIC_CaptureTeamWeapon\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_CaptureTeamWeapon of type AITacticType\"},{\"id\":\"TACTIC_WarmUp\",\"kind\":12,\"label\":\"TACTIC_WarmUp\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_WarmUp of type AITacticType\"},{\"id\":\"TACTIC_ProvideReinforcementPoint\",\"kind\":12,\"label\":\"TACTIC_ProvideReinforcementPoint\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_ProvideReinforcementPoint of type AITacticType\"},{\"id\":\"TACTIC_RushAtTarget\",\"kind\":12,\"label\":\"TACTIC_RushAtTarget\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_RushAtTarget of type AITacticType\"},{\"id\":\"TACTIC_Recrew\",\"kind\":12,\"label\":\"TACTIC_Recrew\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_Recrew of type AITacticType\"},{\"id\":\"TACTIC_Vehicle\",\"kind\":12,\"label\":\"TACTIC_Vehicle\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_Vehicle of type AITacticType\"},{\"id\":\"TACTIC_Avoid\",\"kind\":12,\"label\":\"TACTIC_Avoid\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_Avoid of type AITacticType\"},{\"id\":\"TACTIC_Cover\",\"kind\":12,\"label\":\"TACTIC_Cover\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_Cover of type AITacticType\"},{\"id\":\"TACTIC_FinishHealing\",\"kind\":12,\"label\":\"TACTIC_FinishHealing\",\"detail\":\"AITacticType\",\"documentation\":\"TACTIC_FinishHealing of type AITacticType\"},{\"id\":\"TASK_Leader\",\"kind\":12,\"label\":\"TASK_Leader\",\"detail\":\"AITaskType\",\"documentation\":\"TASK_Leader of type AITaskType\"},{\"id\":\"TASK_Production\",\"kind\":12,\"label\":\"TASK_Production\",\"detail\":\"AITaskType\",\"documentation\":\"TASK_Production of type AITaskType\"},{\"id\":\"TASK_Ability\",\"kind\":12,\"label\":\"TASK_Ability\",\"detail\":\"AITaskType\",\"documentation\":\"TASK_Ability of type AITaskType\"},{\"id\":\"TASK_PlayerAbility\",\"kind\":12,\"label\":\"TASK_PlayerAbility\",\"detail\":\"AITaskType\",\"documentation\":\"TASK_PlayerAbility of type AITaskType\"},{\"id\":\"TASK_Combat\",\"kind\":12,\"label\":\"TASK_Combat\",\"detail\":\"AITaskType\",\"documentation\":\"TASK_Combat of type AITaskType\"},{\"id\":\"TASK_Construction\",\"kind\":12,\"label\":\"TASK_Construction\",\"detail\":\"AITaskType\",\"documentation\":\"TASK_Construction of type AITaskType\"},{\"id\":\"TASK_Capture\",\"kind\":12,\"label\":\"TASK_Capture\",\"detail\":\"AITaskType\",\"documentation\":\"TASK_Capture of type AITaskType\"},{\"id\":\"TASK_ImmobileCombat\",\"kind\":12,\"label\":\"TASK_ImmobileCombat\",\"detail\":\"AITaskType\",\"documentation\":\"TASK_ImmobileCombat of type AITaskType\"},{\"id\":\"AII_LocalHumanTakeover\",\"kind\":12,\"label\":\"AII_LocalHumanTakeover\",\"detail\":\"AIType\",\"documentation\":\"AII_LocalHumanTakeover of type AIType\"},{\"id\":\"AII_RemoteAITakeover\",\"kind\":12,\"label\":\"AII_RemoteAITakeover\",\"detail\":\"AIType\",\"documentation\":\"AII_RemoteAITakeover of type AIType\"},{\"id\":\"AII_None\",\"kind\":12,\"label\":\"AII_None\",\"detail\":\"AIType\",\"documentation\":\"AII_None of type AIType\"},{\"id\":\"AII_RemoteHumanTakeover\",\"kind\":12,\"label\":\"AII_RemoteHumanTakeover\",\"detail\":\"AIType\",\"documentation\":\"AII_RemoteHumanTakeover of type AIType\"},{\"id\":\"AII_Normal\",\"kind\":12,\"label\":\"AII_Normal\",\"detail\":\"AIType\",\"documentation\":\"AII_Normal of type AIType\"},{\"id\":\"ITEM_REMOVED\",\"kind\":12,\"label\":\"ITEM_REMOVED\",\"detail\":\"Availability\",\"documentation\":\"ITEM_REMOVED of type Availability\"},{\"id\":\"ITEM_DEFAULT\",\"kind\":12,\"label\":\"ITEM_DEFAULT\",\"detail\":\"Availability\",\"documentation\":\"ITEM_DEFAULT of type Availability\"},{\"id\":\"ITEM_UNLOCKED\",\"kind\":12,\"label\":\"ITEM_UNLOCKED\",\"detail\":\"Availability\",\"documentation\":\"ITEM_UNLOCKED of type Availability\"},{\"id\":\"ITEM_LOCKED\",\"kind\":12,\"label\":\"ITEM_LOCKED\",\"detail\":\"Availability\",\"documentation\":\"ITEM_LOCKED of type Availability\"},{\"id\":\"BT_AttackHere\",\"kind\":12,\"label\":\"BT_AttackHere\",\"detail\":\"BlipType\",\"documentation\":\"BT_AttackHere of type BlipType\"},{\"id\":\"BT_SectorArtillery\",\"kind\":12,\"label\":\"BT_SectorArtillery\",\"detail\":\"BlipType\",\"documentation\":\"BT_SectorArtillery of type BlipType\"},{\"id\":\"BT_ObjectivePrimary\",\"kind\":12,\"label\":\"BT_ObjectivePrimary\",\"detail\":\"BlipType\",\"documentation\":\"BT_ObjectivePrimary of type BlipType\"},{\"id\":\"BT_Reveal\",\"kind\":12,\"label\":\"BT_Reveal\",\"detail\":\"BlipType\",\"documentation\":\"BT_Reveal of type BlipType\"},{\"id\":\"BT_Combat\",\"kind\":12,\"label\":\"BT_Combat\",\"detail\":\"BlipType\",\"documentation\":\"BT_Combat of type BlipType\"},{\"id\":\"BT_General\",\"kind\":12,\"label\":\"BT_General\",\"detail\":\"BlipType\",\"documentation\":\"BT_General of type BlipType\"},{\"id\":\"BT_CaptureHere\",\"kind\":12,\"label\":\"BT_CaptureHere\",\"detail\":\"BlipType\",\"documentation\":\"BT_CaptureHere of type BlipType\"},{\"id\":\"BT_DefendHere\",\"kind\":12,\"label\":\"BT_DefendHere\",\"detail\":\"BlipType\",\"documentation\":\"BT_DefendHere of type BlipType\"},{\"id\":\"BT_ObjectiveSecondary\",\"kind\":12,\"label\":\"BT_ObjectiveSecondary\",\"detail\":\"BlipType\",\"documentation\":\"BT_ObjectiveSecondary of type BlipType\"},{\"id\":\"BT_RallyPoint\",\"kind\":12,\"label\":\"BT_RallyPoint\",\"detail\":\"BlipType\",\"documentation\":\"BT_RallyPoint of type BlipType\"},{\"id\":\"BFS_Smoking\",\"kind\":12,\"label\":\"BFS_Smoking\",\"detail\":\"BuildingFireState\",\"documentation\":\"BFS_Smoking of type BuildingFireState\"},{\"id\":\"BFS_Burning\",\"kind\":12,\"label\":\"BFS_Burning\",\"detail\":\"BuildingFireState\",\"documentation\":\"BFS_Burning of type BuildingFireState\"},{\"id\":\"BFS_NotOnFire\",\"kind\":12,\"label\":\"BFS_NotOnFire\",\"detail\":\"BuildingFireState\",\"documentation\":\"BFS_NotOnFire of type BuildingFireState\"},{\"id\":\"TV_DeclinationEnabled\",\"kind\":12,\"label\":\"TV_DeclinationEnabled\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DeclinationEnabled of type CameraTuningValue\"},{\"id\":\"TV_DistMaxDead\",\"kind\":12,\"label\":\"TV_DistMaxDead\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistMaxDead of type CameraTuningValue\"},{\"id\":\"TV_DistRateMouse\",\"kind\":12,\"label\":\"TV_DistRateMouse\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistRateMouse of type CameraTuningValue\"},{\"id\":\"TV_NISletDistMin\",\"kind\":12,\"label\":\"TV_NISletDistMin\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_NISletDistMin of type CameraTuningValue\"},{\"id\":\"TV_SlideOrbitRate\",\"kind\":12,\"label\":\"TV_SlideOrbitRate\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideOrbitRate of type CameraTuningValue\"},{\"id\":\"TV_PanScaleKeyboardDefZ\",\"kind\":12,\"label\":\"TV_PanScaleKeyboardDefZ\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_PanScaleKeyboardDefZ of type CameraTuningValue\"},{\"id\":\"TV_PanScaleMouseDefZ\",\"kind\":12,\"label\":\"TV_PanScaleMouseDefZ\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_PanScaleMouseDefZ of type CameraTuningValue\"},{\"id\":\"TV_SlideDeclThreshold\",\"kind\":12,\"label\":\"TV_SlideDeclThreshold\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideDeclThreshold of type CameraTuningValue\"},{\"id\":\"TV_PanStartSpeedScalar\",\"kind\":12,\"label\":\"TV_PanStartSpeedScalar\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_PanStartSpeedScalar of type CameraTuningValue\"},{\"id\":\"TV_EntityMinViewAngle\",\"kind\":12,\"label\":\"TV_EntityMinViewAngle\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_EntityMinViewAngle of type CameraTuningValue\"},{\"id\":\"TV_SlideTargetBase\",\"kind\":12,\"label\":\"TV_SlideTargetBase\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideTargetBase of type CameraTuningValue\"},{\"id\":\"TV_NearPlaneShifter\",\"kind\":12,\"label\":\"TV_NearPlaneShifter\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_NearPlaneShifter of type CameraTuningValue\"},{\"id\":\"TV_DistMin\",\"kind\":12,\"label\":\"TV_DistMin\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistMin of type CameraTuningValue\"},{\"id\":\"TV_PanScaleScreenDefZ\",\"kind\":12,\"label\":\"TV_PanScaleScreenDefZ\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_PanScaleScreenDefZ of type CameraTuningValue\"},{\"id\":\"TV_NISletDistGroundMin\",\"kind\":12,\"label\":\"TV_NISletDistGroundMin\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_NISletDistGroundMin of type CameraTuningValue\"},{\"id\":\"TV_DeclBelow\",\"kind\":12,\"label\":\"TV_DeclBelow\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DeclBelow of type CameraTuningValue\"},{\"id\":\"TV_SlideTargetThreshold\",\"kind\":12,\"label\":\"TV_SlideTargetThreshold\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideTargetThreshold of type CameraTuningValue\"},{\"id\":\"TV_DeclAbove\",\"kind\":12,\"label\":\"TV_DeclAbove\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DeclAbove of type CameraTuningValue\"},{\"id\":\"TV_DistScale\",\"kind\":12,\"label\":\"TV_DistScale\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistScale of type CameraTuningValue\"},{\"id\":\"TV_NISletDistMax\",\"kind\":12,\"label\":\"TV_NISletDistMax\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_NISletDistMax of type CameraTuningValue\"},{\"id\":\"TV_PanMaxSpeedScalar\",\"kind\":12,\"label\":\"TV_PanMaxSpeedScalar\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_PanMaxSpeedScalar of type CameraTuningValue\"},{\"id\":\"TV_NISletDeclAbove\",\"kind\":12,\"label\":\"TV_NISletDeclAbove\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_NISletDeclAbove of type CameraTuningValue\"},{\"id\":\"TV_NISletDistMinGround\",\"kind\":12,\"label\":\"TV_NISletDistMinGround\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_NISletDistMinGround of type CameraTuningValue\"},{\"id\":\"TV_ZoomLocked\",\"kind\":12,\"label\":\"TV_ZoomLocked\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_ZoomLocked of type CameraTuningValue\"},{\"id\":\"TV_CameraMode\",\"kind\":12,\"label\":\"TV_CameraMode\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_CameraMode of type CameraTuningValue\"},{\"id\":\"TV_DefaultAngle\",\"kind\":12,\"label\":\"TV_DefaultAngle\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DefaultAngle of type CameraTuningValue\"},{\"id\":\"TV_PanScaleKeyboardMinZ\",\"kind\":12,\"label\":\"TV_PanScaleKeyboardMinZ\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_PanScaleKeyboardMinZ of type CameraTuningValue\"},{\"id\":\"TV_PanScaleMouseMinZ\",\"kind\":12,\"label\":\"TV_PanScaleMouseMinZ\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_PanScaleMouseMinZ of type CameraTuningValue\"},{\"id\":\"TV_DeclBelowClose\",\"kind\":12,\"label\":\"TV_DeclBelowClose\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DeclBelowClose of type CameraTuningValue\"},{\"id\":\"TV_TrackElastic\",\"kind\":12,\"label\":\"TV_TrackElastic\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_TrackElastic of type CameraTuningValue\"},{\"id\":\"TV_DistExpWheel\",\"kind\":12,\"label\":\"TV_DistExpWheel\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistExpWheel of type CameraTuningValue\"},{\"id\":\"TV_DistExpMouse\",\"kind\":12,\"label\":\"TV_DistExpMouse\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistExpMouse of type CameraTuningValue\"},{\"id\":\"TV_DistMinGround\",\"kind\":12,\"label\":\"TV_DistMinGround\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistMinGround of type CameraTuningValue\"},{\"id\":\"TV_DistGroundTargetHeight\",\"kind\":12,\"label\":\"TV_DistGroundTargetHeight\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistGroundTargetHeight of type CameraTuningValue\"},{\"id\":\"TV_ClipFar\",\"kind\":12,\"label\":\"TV_ClipFar\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_ClipFar of type CameraTuningValue\"},{\"id\":\"TV_DistGroundMin\",\"kind\":12,\"label\":\"TV_DistGroundMin\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistGroundMin of type CameraTuningValue\"},{\"id\":\"TV_DistMinDead\",\"kind\":12,\"label\":\"TV_DistMinDead\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistMinDead of type CameraTuningValue\"},{\"id\":\"TV_DistMax\",\"kind\":12,\"label\":\"TV_DistMax\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistMax of type CameraTuningValue\"},{\"id\":\"TV_SlideDeclBase\",\"kind\":12,\"label\":\"TV_SlideDeclBase\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideDeclBase of type CameraTuningValue\"},{\"id\":\"TV_SlideOrbitThreshold\",\"kind\":12,\"label\":\"TV_SlideOrbitThreshold\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideOrbitThreshold of type CameraTuningValue\"},{\"id\":\"TV_SlideOrbitBase\",\"kind\":12,\"label\":\"TV_SlideOrbitBase\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideOrbitBase of type CameraTuningValue\"},{\"id\":\"TV_SlideDistThreshold\",\"kind\":12,\"label\":\"TV_SlideDistThreshold\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideDistThreshold of type CameraTuningValue\"},{\"id\":\"TV_SlideDistBase\",\"kind\":12,\"label\":\"TV_SlideDistBase\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideDistBase of type CameraTuningValue\"},{\"id\":\"TV_SlideTargetRate\",\"kind\":12,\"label\":\"TV_SlideTargetRate\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideTargetRate of type CameraTuningValue\"},{\"id\":\"TV_ClipNear\",\"kind\":12,\"label\":\"TV_ClipNear\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_ClipNear of type CameraTuningValue\"},{\"id\":\"TV_PanScaleScreenMinZ\",\"kind\":12,\"label\":\"TV_PanScaleScreenMinZ\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_PanScaleScreenMinZ of type CameraTuningValue\"},{\"id\":\"TV_DistRateWheelZoomIn\",\"kind\":12,\"label\":\"TV_DistRateWheelZoomIn\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistRateWheelZoomIn of type CameraTuningValue\"},{\"id\":\"TV_SlideDistRate\",\"kind\":12,\"label\":\"TV_SlideDistRate\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideDistRate of type CameraTuningValue\"},{\"id\":\"TV_DistRateWheelZoomOut\",\"kind\":12,\"label\":\"TV_DistRateWheelZoomOut\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistRateWheelZoomOut of type CameraTuningValue\"},{\"id\":\"TV_TrackBoundScale\",\"kind\":12,\"label\":\"TV_TrackBoundScale\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_TrackBoundScale of type CameraTuningValue\"},{\"id\":\"TV_DefaultDeclination\",\"kind\":12,\"label\":\"TV_DefaultDeclination\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DefaultDeclination of type CameraTuningValue\"},{\"id\":\"TV_PanAccelerate\",\"kind\":12,\"label\":\"TV_PanAccelerate\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_PanAccelerate of type CameraTuningValue\"},{\"id\":\"TV_DeclRateMouse\",\"kind\":12,\"label\":\"TV_DeclRateMouse\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DeclRateMouse of type CameraTuningValue\"},{\"id\":\"TV_DistExp\",\"kind\":12,\"label\":\"TV_DistExp\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DistExp of type CameraTuningValue\"},{\"id\":\"TV_DefaultHeight\",\"kind\":12,\"label\":\"TV_DefaultHeight\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_DefaultHeight of type CameraTuningValue\"},{\"id\":\"TV_SlideDeclRate\",\"kind\":12,\"label\":\"TV_SlideDeclRate\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_SlideDeclRate of type CameraTuningValue\"},{\"id\":\"TV_RotationEnabled\",\"kind\":12,\"label\":\"TV_RotationEnabled\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_RotationEnabled of type CameraTuningValue\"},{\"id\":\"TV_OrbitRateMouse\",\"kind\":12,\"label\":\"TV_OrbitRateMouse\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_OrbitRateMouse of type CameraTuningValue\"},{\"id\":\"TV_FieldOfView\",\"kind\":12,\"label\":\"TV_FieldOfView\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_FieldOfView of type CameraTuningValue\"},{\"id\":\"TV_NISletDeclBelow\",\"kind\":12,\"label\":\"TV_NISletDeclBelow\",\"detail\":\"CameraTuningValue\",\"documentation\":\"TV_NISletDeclBelow of type CameraTuningValue\"},{\"id\":\"CANPRODUCE_PrerequisitesProducer\",\"kind\":12,\"label\":\"CANPRODUCE_PrerequisitesProducer\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_PrerequisitesProducer of type CanProduceResult\"},{\"id\":\"CANPRODUCE_Error\",\"kind\":12,\"label\":\"CANPRODUCE_Error\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_Error of type CanProduceResult\"},{\"id\":\"CANPRODUCE_ProductionQueueFull\",\"kind\":12,\"label\":\"CANPRODUCE_ProductionQueueFull\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_ProductionQueueFull of type CanProduceResult\"},{\"id\":\"CANPRODUCE_ProductionItemFull\",\"kind\":12,\"label\":\"CANPRODUCE_ProductionItemFull\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_ProductionItemFull of type CanProduceResult\"},{\"id\":\"CANPRODUCE_OutOfReinforceRadius\",\"kind\":12,\"label\":\"CANPRODUCE_OutOfReinforceRadius\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_OutOfReinforceRadius of type CanProduceResult\"},{\"id\":\"CANPRODUCE_Ok\",\"kind\":12,\"label\":\"CANPRODUCE_Ok\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_Ok of type CanProduceResult\"},{\"id\":\"CANPRODUCE_Disabled\",\"kind\":12,\"label\":\"CANPRODUCE_Disabled\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_Disabled of type CanProduceResult\"},{\"id\":\"CANPRODUCE_OutOfTerritory\",\"kind\":12,\"label\":\"CANPRODUCE_OutOfTerritory\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_OutOfTerritory of type CanProduceResult\"},{\"id\":\"CANPRODUCE_UpgradeItemFull\",\"kind\":12,\"label\":\"CANPRODUCE_UpgradeItemFull\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_UpgradeItemFull of type CanProduceResult\"},{\"id\":\"CANPRODUCE_PopulationCapFull\",\"kind\":12,\"label\":\"CANPRODUCE_PopulationCapFull\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_PopulationCapFull of type CanProduceResult\"},{\"id\":\"CANPRODUCE_NoResources\",\"kind\":12,\"label\":\"CANPRODUCE_NoResources\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_NoResources of type CanProduceResult\"},{\"id\":\"CANPRODUCE_PrerequisitesItem\",\"kind\":12,\"label\":\"CANPRODUCE_PrerequisitesItem\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_PrerequisitesItem of type CanProduceResult\"},{\"id\":\"CANPRODUCE_NoItem\",\"kind\":12,\"label\":\"CANPRODUCE_NoItem\",\"detail\":\"CanProduceResult\",\"documentation\":\"CANPRODUCE_NoItem of type CanProduceResult\"},{\"id\":\"CT_Medic\",\"kind\":12,\"label\":\"CT_Medic\",\"detail\":\"CapType\",\"documentation\":\"CT_Medic of type CapType\"},{\"id\":\"CT_Vehicle\",\"kind\":12,\"label\":\"CT_Vehicle\",\"detail\":\"CapType\",\"documentation\":\"CT_Vehicle of type CapType\"},{\"id\":\"CT_Personnel\",\"kind\":12,\"label\":\"CT_Personnel\",\"detail\":\"CapType\",\"documentation\":\"CT_Personnel of type CapType\"},{\"id\":\"CHECK_BOTH\",\"kind\":12,\"label\":\"CHECK_BOTH\",\"detail\":\"CheckHiddenType\",\"documentation\":\"CHECK_BOTH of type CheckHiddenType\"},{\"id\":\"CHECK_OFFCAMERA\",\"kind\":12,\"label\":\"CHECK_OFFCAMERA\",\"detail\":\"CheckHiddenType\",\"documentation\":\"CHECK_OFFCAMERA of type CheckHiddenType\"},{\"id\":\"CHECK_IN_FOW\",\"kind\":12,\"label\":\"CHECK_IN_FOW\",\"detail\":\"CheckHiddenType\",\"documentation\":\"CHECK_IN_FOW of type CheckHiddenType\"},{\"id\":\"CT_VehicleOpticsDamaged\",\"kind\":12,\"label\":\"CT_VehicleOpticsDamaged\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleOpticsDamaged of type CriticalUIType\"},{\"id\":\"CT_VehicleExhaustDamaged\",\"kind\":12,\"label\":\"CT_VehicleExhaustDamaged\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleExhaustDamaged of type CriticalUIType\"},{\"id\":\"CT_VehicleKillCommander\",\"kind\":12,\"label\":\"CT_VehicleKillCommander\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleKillCommander of type CriticalUIType\"},{\"id\":\"CT_VehicleDriverInjured\",\"kind\":12,\"label\":\"CT_VehicleDriverInjured\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleDriverInjured of type CriticalUIType\"},{\"id\":\"CT_VehicleEngineYellow\",\"kind\":12,\"label\":\"CT_VehicleEngineYellow\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleEngineYellow of type CriticalUIType\"},{\"id\":\"CT_VehicleBack\",\"kind\":12,\"label\":\"CT_VehicleBack\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleBack of type CriticalUIType\"},{\"id\":\"CT_VehicleLeft\",\"kind\":12,\"label\":\"CT_VehicleLeft\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleLeft of type CriticalUIType\"},{\"id\":\"CT_VehicleRight\",\"kind\":12,\"label\":\"CT_VehicleRight\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleRight of type CriticalUIType\"},{\"id\":\"CT_VehicleGunnerInjured\",\"kind\":12,\"label\":\"CT_VehicleGunnerInjured\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleGunnerInjured of type CriticalUIType\"},{\"id\":\"CT_VehicleEngineGreen\",\"kind\":12,\"label\":\"CT_VehicleEngineGreen\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleEngineGreen of type CriticalUIType\"},{\"id\":\"CT_VehicleCrewShocked\",\"kind\":12,\"label\":\"CT_VehicleCrewShocked\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleCrewShocked of type CriticalUIType\"},{\"id\":\"CT_VehicleFront\",\"kind\":12,\"label\":\"CT_VehicleFront\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleFront of type CriticalUIType\"},{\"id\":\"CT_VehicleEngineBurning\",\"kind\":12,\"label\":\"CT_VehicleEngineBurning\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleEngineBurning of type CriticalUIType\"},{\"id\":\"CT_VehicleEngineRed\",\"kind\":12,\"label\":\"CT_VehicleEngineRed\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleEngineRed of type CriticalUIType\"},{\"id\":\"CT_VehicleSecondaryWeapon\",\"kind\":12,\"label\":\"CT_VehicleSecondaryWeapon\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleSecondaryWeapon of type CriticalUIType\"},{\"id\":\"CT_VehicleLoseTreadsOrWheels\",\"kind\":12,\"label\":\"CT_VehicleLoseTreadsOrWheels\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleLoseTreadsOrWheels of type CriticalUIType\"},{\"id\":\"CT_VehicleOutOfControl\",\"kind\":12,\"label\":\"CT_VehicleOutOfControl\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehicleOutOfControl of type CriticalUIType\"},{\"id\":\"CT_VehiclePrimaryWeapon\",\"kind\":12,\"label\":\"CT_VehiclePrimaryWeapon\",\"detail\":\"CriticalUIType\",\"documentation\":\"CT_VehiclePrimaryWeapon of type CriticalUIType\"},{\"id\":\"Crush_Heavy\",\"kind\":12,\"label\":\"Crush_Heavy\",\"detail\":\"CrushMode\",\"documentation\":\"Crush_Heavy of type CrushMode\"},{\"id\":\"Crush_Off\",\"kind\":12,\"label\":\"Crush_Off\",\"detail\":\"CrushMode\",\"documentation\":\"Crush_Off of type CrushMode\"},{\"id\":\"Crush_Light\",\"kind\":12,\"label\":\"Crush_Light\",\"detail\":\"CrushMode\",\"documentation\":\"Crush_Light of type CrushMode\"},{\"id\":\"Crush_Medium\",\"kind\":12,\"label\":\"Crush_Medium\",\"detail\":\"CrushMode\",\"documentation\":\"Crush_Medium of type CrushMode\"},{\"id\":\"DB_Button3\",\"kind\":12,\"label\":\"DB_Button3\",\"detail\":\"DialogButton\",\"documentation\":\"DB_Button3 of type DialogButton\"},{\"id\":\"DB_Button1\",\"kind\":12,\"label\":\"DB_Button1\",\"detail\":\"DialogButton\",\"documentation\":\"DB_Button1 of type DialogButton\"},{\"id\":\"DB_Close\",\"kind\":12,\"label\":\"DB_Close\",\"detail\":\"DialogButton\",\"documentation\":\"DB_Close of type DialogButton\"},{\"id\":\"DB_Button2\",\"kind\":12,\"label\":\"DB_Button2\",\"detail\":\"DialogButton\",\"documentation\":\"DB_Button2 of type DialogButton\"},{\"id\":\"CMD_InstantBuildSquad\",\"kind\":12,\"label\":\"CMD_InstantBuildSquad\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_InstantBuildSquad of type EntityCommandType\"},{\"id\":\"CMD_InstantDeath\",\"kind\":12,\"label\":\"CMD_InstantDeath\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_InstantDeath of type EntityCommandType\"},{\"id\":\"CMD_AttackStop\",\"kind\":12,\"label\":\"CMD_AttackStop\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_AttackStop of type EntityCommandType\"},{\"id\":\"CMD_BuildStructure\",\"kind\":12,\"label\":\"CMD_BuildStructure\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_BuildStructure of type EntityCommandType\"},{\"id\":\"CMD_Face\",\"kind\":12,\"label\":\"CMD_Face\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Face of type EntityCommandType\"},{\"id\":\"CMD_CancelProduction\",\"kind\":12,\"label\":\"CMD_CancelProduction\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_CancelProduction of type EntityCommandType\"},{\"id\":\"CMD_RescueCasualty\",\"kind\":12,\"label\":\"CMD_RescueCasualty\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_RescueCasualty of type EntityCommandType\"},{\"id\":\"CMD_SetHoldHeading\",\"kind\":12,\"label\":\"CMD_SetHoldHeading\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_SetHoldHeading of type EntityCommandType\"},{\"id\":\"CMD_DefuseMine\",\"kind\":12,\"label\":\"CMD_DefuseMine\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_DefuseMine of type EntityCommandType\"},{\"id\":\"CMD_AttackMove\",\"kind\":12,\"label\":\"CMD_AttackMove\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_AttackMove of type EntityCommandType\"},{\"id\":\"CMD_Fidget\",\"kind\":12,\"label\":\"CMD_Fidget\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Fidget of type EntityCommandType\"},{\"id\":\"CMD_Stop\",\"kind\":12,\"label\":\"CMD_Stop\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Stop of type EntityCommandType\"},{\"id\":\"CMD_PlaceCharge\",\"kind\":12,\"label\":\"CMD_PlaceCharge\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_PlaceCharge of type EntityCommandType\"},{\"id\":\"CMD_Paradrop\",\"kind\":12,\"label\":\"CMD_Paradrop\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Paradrop of type EntityCommandType\"},{\"id\":\"CMD_Destroy\",\"kind\":12,\"label\":\"CMD_Destroy\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Destroy of type EntityCommandType\"},{\"id\":\"CMD_Load\",\"kind\":12,\"label\":\"CMD_Load\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Load of type EntityCommandType\"},{\"id\":\"CMD_Ability\",\"kind\":12,\"label\":\"CMD_Ability\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Ability of type EntityCommandType\"},{\"id\":\"CMD_Move\",\"kind\":12,\"label\":\"CMD_Move\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Move of type EntityCommandType\"},{\"id\":\"CMD_InstantUpgrade\",\"kind\":12,\"label\":\"CMD_InstantUpgrade\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_InstantUpgrade of type EntityCommandType\"},{\"id\":\"CMD_UnloadSquads\",\"kind\":12,\"label\":\"CMD_UnloadSquads\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_UnloadSquads of type EntityCommandType\"},{\"id\":\"CMD_Casualty\",\"kind\":12,\"label\":\"CMD_Casualty\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Casualty of type EntityCommandType\"},{\"id\":\"CMD_BuildSquad\",\"kind\":12,\"label\":\"CMD_BuildSquad\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_BuildSquad of type EntityCommandType\"},{\"id\":\"CMD_Halt\",\"kind\":12,\"label\":\"CMD_Halt\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Halt of type EntityCommandType\"},{\"id\":\"CMD_Attack\",\"kind\":12,\"label\":\"CMD_Attack\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Attack of type EntityCommandType\"},{\"id\":\"CMD_Capture\",\"kind\":12,\"label\":\"CMD_Capture\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Capture of type EntityCommandType\"},{\"id\":\"CMD_AttackForced\",\"kind\":12,\"label\":\"CMD_AttackForced\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_AttackForced of type EntityCommandType\"},{\"id\":\"CMD_Death\",\"kind\":12,\"label\":\"CMD_Death\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Death of type EntityCommandType\"},{\"id\":\"CMD_Unload\",\"kind\":12,\"label\":\"CMD_Unload\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Unload of type EntityCommandType\"},{\"id\":\"CMD_Evacuate\",\"kind\":12,\"label\":\"CMD_Evacuate\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Evacuate of type EntityCommandType\"},{\"id\":\"CMD_BuildEntity\",\"kind\":12,\"label\":\"CMD_BuildEntity\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_BuildEntity of type EntityCommandType\"},{\"id\":\"CMD_Vault\",\"kind\":12,\"label\":\"CMD_Vault\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Vault of type EntityCommandType\"},{\"id\":\"CMD_AttackFromHold\",\"kind\":12,\"label\":\"CMD_AttackFromHold\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_AttackFromHold of type EntityCommandType\"},{\"id\":\"CMD_RallyPoint\",\"kind\":12,\"label\":\"CMD_RallyPoint\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_RallyPoint of type EntityCommandType\"},{\"id\":\"CMD_DefaultAction\",\"kind\":12,\"label\":\"CMD_DefaultAction\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_DefaultAction of type EntityCommandType\"},{\"id\":\"CMD_Upgrade\",\"kind\":12,\"label\":\"CMD_Upgrade\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Upgrade of type EntityCommandType\"},{\"id\":\"CMD_ChooseResource\",\"kind\":12,\"label\":\"CMD_ChooseResource\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_ChooseResource of type EntityCommandType\"},{\"id\":\"CMD_Projectile\",\"kind\":12,\"label\":\"CMD_Projectile\",\"detail\":\"EntityCommandType\",\"documentation\":\"CMD_Projectile of type EntityCommandType\"},{\"id\":\"STATEID_Capture\",\"kind\":12,\"label\":\"STATEID_Capture\",\"detail\":\"EntityStateID\",\"documentation\":\"STATEID_Capture of type EntityStateID\"},{\"id\":\"STATEID_Idle\",\"kind\":12,\"label\":\"STATEID_Idle\",\"detail\":\"EntityStateID\",\"documentation\":\"STATEID_Idle of type EntityStateID\"},{\"id\":\"STATEID_Evacuate\",\"kind\":12,\"label\":\"STATEID_Evacuate\",\"detail\":\"EntityStateID\",\"documentation\":\"STATEID_Evacuate of type EntityStateID\"},{\"id\":\"STATEID_StructureBuilding\",\"kind\":12,\"label\":\"STATEID_StructureBuilding\",\"detail\":\"EntityStateID\",\"documentation\":\"STATEID_StructureBuilding of type EntityStateID\"},{\"id\":\"STATEID_RepairEngineer\",\"kind\":12,\"label\":\"STATEID_RepairEngineer\",\"detail\":\"EntityStateID\",\"documentation\":\"STATEID_RepairEngineer of type EntityStateID\"},{\"id\":\"STATEID_Move\",\"kind\":12,\"label\":\"STATEID_Move\",\"detail\":\"EntityStateID\",\"documentation\":\"STATEID_Move of type EntityStateID\"},{\"id\":\"STATEID_Dead\",\"kind\":12,\"label\":\"STATEID_Dead\",\"detail\":\"EntityStateID\",\"documentation\":\"STATEID_Dead of type EntityStateID\"},{\"id\":\"STATEID_DefuseMine\",\"kind\":12,\"label\":\"STATEID_DefuseMine\",\"detail\":\"EntityStateID\",\"documentation\":\"STATEID_DefuseMine of type EntityStateID\"},{\"id\":\"GE_ProjectileFired\",\"kind\":12,\"label\":\"GE_ProjectileFired\",\"detail\":\"GameEventType\",\"documentation\":\"GE_ProjectileFired of type GameEventType\"},{\"id\":\"GE_AIPlayer_Migrated\",\"kind\":12,\"label\":\"GE_AIPlayer_Migrated\",\"detail\":\"GameEventType\",\"documentation\":\"GE_AIPlayer_Migrated of type GameEventType\"},{\"id\":\"GE_EntityKilled\",\"kind\":12,\"label\":\"GE_EntityKilled\",\"detail\":\"GameEventType\",\"documentation\":\"GE_EntityKilled of type GameEventType\"},{\"id\":\"GE_TerritoryEntered\",\"kind\":12,\"label\":\"GE_TerritoryEntered\",\"detail\":\"GameEventType\",\"documentation\":\"GE_TerritoryEntered of type GameEventType\"},{\"id\":\"GE_ConstructionComplete\",\"kind\":12,\"label\":\"GE_ConstructionComplete\",\"detail\":\"GameEventType\",\"documentation\":\"GE_ConstructionComplete of type GameEventType\"},{\"id\":\"GE_NonGlobalCamoDetected\",\"kind\":12,\"label\":\"GE_NonGlobalCamoDetected\",\"detail\":\"GameEventType\",\"documentation\":\"GE_NonGlobalCamoDetected of type GameEventType\"},{\"id\":\"GE_SquadPinned\",\"kind\":12,\"label\":\"GE_SquadPinned\",\"detail\":\"GameEventType\",\"documentation\":\"GE_SquadPinned of type GameEventType\"},{\"id\":\"GE_BuildItemComplete\",\"kind\":12,\"label\":\"GE_BuildItemComplete\",\"detail\":\"GameEventType\",\"documentation\":\"GE_BuildItemComplete of type GameEventType\"},{\"id\":\"GE_PlayerKilled\",\"kind\":12,\"label\":\"GE_PlayerKilled\",\"detail\":\"GameEventType\",\"documentation\":\"GE_PlayerKilled of type GameEventType\"},{\"id\":\"GE_EntityCommandIssued\",\"kind\":12,\"label\":\"GE_EntityCommandIssued\",\"detail\":\"GameEventType\",\"documentation\":\"GE_EntityCommandIssued of type GameEventType\"},{\"id\":\"GE_StrategicPointChanged\",\"kind\":12,\"label\":\"GE_StrategicPointChanged\",\"detail\":\"GameEventType\",\"documentation\":\"GE_StrategicPointChanged of type GameEventType\"},{\"id\":\"GE_PlayerDonation\",\"kind\":12,\"label\":\"GE_PlayerDonation\",\"detail\":\"GameEventType\",\"documentation\":\"GE_PlayerDonation of type GameEventType\"},{\"id\":\"GE_AbilityExecuted\",\"kind\":12,\"label\":\"GE_AbilityExecuted\",\"detail\":\"GameEventType\",\"documentation\":\"GE_AbilityExecuted of type GameEventType\"},{\"id\":\"GE_PlayerDropped\",\"kind\":12,\"label\":\"GE_PlayerDropped\",\"detail\":\"GameEventType\",\"documentation\":\"GE_PlayerDropped of type GameEventType\"},{\"id\":\"GE_PlayerBeingAttacked\",\"kind\":12,\"label\":\"GE_PlayerBeingAttacked\",\"detail\":\"GameEventType\",\"documentation\":\"GE_PlayerBeingAttacked of type GameEventType\"},{\"id\":\"GE_UpgradeComplete\",\"kind\":12,\"label\":\"GE_UpgradeComplete\",\"detail\":\"GameEventType\",\"documentation\":\"GE_UpgradeComplete of type GameEventType\"},{\"id\":\"GE_PlayerSkipNIS\",\"kind\":12,\"label\":\"GE_PlayerSkipNIS\",\"detail\":\"GameEventType\",\"documentation\":\"GE_PlayerSkipNIS of type GameEventType\"},{\"id\":\"GE_AIPlayer_ObjectiveNotification\",\"kind\":12,\"label\":\"GE_AIPlayer_ObjectiveNotification\",\"detail\":\"GameEventType\",\"documentation\":\"GE_AIPlayer_ObjectiveNotification of type GameEventType\"},{\"id\":\"GE_ResourceDepleted\",\"kind\":12,\"label\":\"GE_ResourceDepleted\",\"detail\":\"GameEventType\",\"documentation\":\"GE_ResourceDepleted of type GameEventType\"},{\"id\":\"GE_CustomUIEvent\",\"kind\":12,\"label\":\"GE_CustomUIEvent\",\"detail\":\"GameEventType\",\"documentation\":\"GE_CustomUIEvent of type GameEventType\"},{\"id\":\"GE_SquadKilled\",\"kind\":12,\"label\":\"GE_SquadKilled\",\"detail\":\"GameEventType\",\"documentation\":\"GE_SquadKilled of type GameEventType\"},{\"id\":\"GE_PlayerSurrendered\",\"kind\":12,\"label\":\"GE_PlayerSurrendered\",\"detail\":\"GameEventType\",\"documentation\":\"GE_PlayerSurrendered of type GameEventType\"},{\"id\":\"GE_SquadCommandIssued\",\"kind\":12,\"label\":\"GE_SquadCommandIssued\",\"detail\":\"GameEventType\",\"documentation\":\"GE_SquadCommandIssued of type GameEventType\"},{\"id\":\"GE_EntityParadropComplete\",\"kind\":12,\"label\":\"GE_EntityParadropComplete\",\"detail\":\"GameEventType\",\"documentation\":\"GE_EntityParadropComplete of type GameEventType\"},{\"id\":\"GE_PlayerCheat\",\"kind\":12,\"label\":\"GE_PlayerCheat\",\"detail\":\"GameEventType\",\"documentation\":\"GE_PlayerCheat of type GameEventType\"},{\"id\":\"GE_InfoPointActivated\",\"kind\":12,\"label\":\"GE_InfoPointActivated\",\"detail\":\"GameEventType\",\"documentation\":\"GE_InfoPointActivated of type GameEventType\"},{\"id\":\"GE_SpawnActionComplete\",\"kind\":12,\"label\":\"GE_SpawnActionComplete\",\"detail\":\"GameEventType\",\"documentation\":\"GE_SpawnActionComplete of type GameEventType\"},{\"id\":\"GE_PlayerCommandIssued\",\"kind\":12,\"label\":\"GE_PlayerCommandIssued\",\"detail\":\"GameEventType\",\"documentation\":\"GE_PlayerCommandIssued of type GameEventType\"},{\"id\":\"GE_PlayerHostMigrated\",\"kind\":12,\"label\":\"GE_PlayerHostMigrated\",\"detail\":\"GameEventType\",\"documentation\":\"GE_PlayerHostMigrated of type GameEventType\"},{\"id\":\"GE_SquadParadropComplete\",\"kind\":12,\"label\":\"GE_SquadParadropComplete\",\"detail\":\"GameEventType\",\"documentation\":\"GE_SquadParadropComplete of type GameEventType\"},{\"id\":\"GE_PlayerPhaseUp\",\"kind\":12,\"label\":\"GE_PlayerPhaseUp\",\"detail\":\"GameEventType\",\"documentation\":\"GE_PlayerPhaseUp of type GameEventType\"},{\"id\":\"HPAT_Hint\",\"kind\":12,\"label\":\"HPAT_Hint\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_Hint of type HintPointActionType\"},{\"id\":\"HPAT_MovementLooping\",\"kind\":12,\"label\":\"HPAT_MovementLooping\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_MovementLooping of type HintPointActionType\"},{\"id\":\"HPAT_Bonus\",\"kind\":12,\"label\":\"HPAT_Bonus\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_Bonus of type HintPointActionType\"},{\"id\":\"HPAT_Vaulting\",\"kind\":12,\"label\":\"HPAT_Vaulting\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_Vaulting of type HintPointActionType\"},{\"id\":\"HPAT_Detonation\",\"kind\":12,\"label\":\"HPAT_Detonation\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_Detonation of type HintPointActionType\"},{\"id\":\"HPAT_CoverRed\",\"kind\":12,\"label\":\"HPAT_CoverRed\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_CoverRed of type HintPointActionType\"},{\"id\":\"HPAT_CoverYellow\",\"kind\":12,\"label\":\"HPAT_CoverYellow\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_CoverYellow of type HintPointActionType\"},{\"id\":\"HPAT_Artillery\",\"kind\":12,\"label\":\"HPAT_Artillery\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_Artillery of type HintPointActionType\"},{\"id\":\"HPAT_FormationSetup\",\"kind\":12,\"label\":\"HPAT_FormationSetup\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_FormationSetup of type HintPointActionType\"},{\"id\":\"HPAT_Movement\",\"kind\":12,\"label\":\"HPAT_Movement\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_Movement of type HintPointActionType\"},{\"id\":\"HPAT_Critical\",\"kind\":12,\"label\":\"HPAT_Critical\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_Critical of type HintPointActionType\"},{\"id\":\"HPAT_Objective\",\"kind\":12,\"label\":\"HPAT_Objective\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_Objective of type HintPointActionType\"},{\"id\":\"HPAT_AttackLooping\",\"kind\":12,\"label\":\"HPAT_AttackLooping\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_AttackLooping of type HintPointActionType\"},{\"id\":\"HPAT_DeepSnow\",\"kind\":12,\"label\":\"HPAT_DeepSnow\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_DeepSnow of type HintPointActionType\"},{\"id\":\"HPAT_CoverGreen\",\"kind\":12,\"label\":\"HPAT_CoverGreen\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_CoverGreen of type HintPointActionType\"},{\"id\":\"HPAT_Attack\",\"kind\":12,\"label\":\"HPAT_Attack\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_Attack of type HintPointActionType\"},{\"id\":\"HPAT_RallyPoint\",\"kind\":12,\"label\":\"HPAT_RallyPoint\",\"detail\":\"HintPointActionType\",\"documentation\":\"HPAT_RallyPoint of type HintPointActionType\"},{\"id\":\"HUDF_None\",\"kind\":12,\"label\":\"HUDF_None\",\"detail\":\"HUDFeatureType\",\"documentation\":\"HUDF_None of type HUDFeatureType\"},{\"id\":\"HUDF_AbilityCard\",\"kind\":12,\"label\":\"HUDF_AbilityCard\",\"detail\":\"HUDFeatureType\",\"documentation\":\"HUDF_AbilityCard of type HUDFeatureType\"},{\"id\":\"HUDF_Upgrades\",\"kind\":12,\"label\":\"HUDF_Upgrades\",\"detail\":\"HUDFeatureType\",\"documentation\":\"HUDF_Upgrades of type HUDFeatureType\"},{\"id\":\"HUDF_CommandCard\",\"kind\":12,\"label\":\"HUDF_CommandCard\",\"detail\":\"HUDFeatureType\",\"documentation\":\"HUDF_CommandCard of type HUDFeatureType\"},{\"id\":\"HUDF_MiniMap\",\"kind\":12,\"label\":\"HUDF_MiniMap\",\"detail\":\"HUDFeatureType\",\"documentation\":\"HUDF_MiniMap of type HUDFeatureType\"},{\"id\":\"LOOP_NORMAL\",\"kind\":12,\"label\":\"LOOP_NORMAL\",\"detail\":\"LoopType\",\"documentation\":\"LOOP_NORMAL of type LoopType\"},{\"id\":\"LOOP_TOGGLE_DIRECTION\",\"kind\":12,\"label\":\"LOOP_TOGGLE_DIRECTION\",\"detail\":\"LoopType\",\"documentation\":\"LOOP_TOGGLE_DIRECTION of type LoopType\"},{\"id\":\"LOOP_NONE\",\"kind\":12,\"label\":\"LOOP_NONE\",\"detail\":\"LoopType\",\"documentation\":\"LOOP_NONE of type LoopType\"},{\"id\":\"MAP_Confirmed\",\"kind\":12,\"label\":\"MAP_Confirmed\",\"detail\":\"ModalAbilityPhase\",\"documentation\":\"MAP_Confirmed of type ModalAbilityPhase\"},{\"id\":\"MAP_Placing\",\"kind\":12,\"label\":\"MAP_Placing\",\"detail\":\"ModalAbilityPhase\",\"documentation\":\"MAP_Placing of type ModalAbilityPhase\"},{\"id\":\"MAP_Facing\",\"kind\":12,\"label\":\"MAP_Facing\",\"detail\":\"ModalAbilityPhase\",\"documentation\":\"MAP_Facing of type ModalAbilityPhase\"},{\"id\":\"MAT_Entity\",\"kind\":12,\"label\":\"MAT_Entity\",\"detail\":\"ModifierApplicationType\",\"documentation\":\"MAT_Entity of type ModifierApplicationType\"},{\"id\":\"MAT_Player\",\"kind\":12,\"label\":\"MAT_Player\",\"detail\":\"ModifierApplicationType\",\"documentation\":\"MAT_Player of type ModifierApplicationType\"},{\"id\":\"MAT_Weapon\",\"kind\":12,\"label\":\"MAT_Weapon\",\"detail\":\"ModifierApplicationType\",\"documentation\":\"MAT_Weapon of type ModifierApplicationType\"},{\"id\":\"MAT_Upgrade\",\"kind\":12,\"label\":\"MAT_Upgrade\",\"detail\":\"ModifierApplicationType\",\"documentation\":\"MAT_Upgrade of type ModifierApplicationType\"},{\"id\":\"MAT_EntityType\",\"kind\":12,\"label\":\"MAT_EntityType\",\"detail\":\"ModifierApplicationType\",\"documentation\":\"MAT_EntityType of type ModifierApplicationType\"},{\"id\":\"MAT_Ability\",\"kind\":12,\"label\":\"MAT_Ability\",\"detail\":\"ModifierApplicationType\",\"documentation\":\"MAT_Ability of type ModifierApplicationType\"},{\"id\":\"MAT_Squad\",\"kind\":12,\"label\":\"MAT_Squad\",\"detail\":\"ModifierApplicationType\",\"documentation\":\"MAT_Squad of type ModifierApplicationType\"},{\"id\":\"MAT_WeaponType\",\"kind\":12,\"label\":\"MAT_WeaponType\",\"detail\":\"ModifierApplicationType\",\"documentation\":\"MAT_WeaponType of type ModifierApplicationType\"},{\"id\":\"MAT_SquadType\",\"kind\":12,\"label\":\"MAT_SquadType\",\"detail\":\"ModifierApplicationType\",\"documentation\":\"MAT_SquadType of type ModifierApplicationType\"},{\"id\":\"MUT_Multiplication\",\"kind\":12,\"label\":\"MUT_Multiplication\",\"detail\":\"ModifierUsageType\",\"documentation\":\"MUT_Multiplication of type ModifierUsageType\"},{\"id\":\"MUT_MultiplyAdd\",\"kind\":12,\"label\":\"MUT_MultiplyAdd\",\"detail\":\"ModifierUsageType\",\"documentation\":\"MUT_MultiplyAdd of type ModifierUsageType\"},{\"id\":\"MUT_Addition\",\"kind\":12,\"label\":\"MUT_Addition\",\"detail\":\"ModifierUsageType\",\"documentation\":\"MUT_Addition of type ModifierUsageType\"},{\"id\":\"MUT_Enable\",\"kind\":12,\"label\":\"MUT_Enable\",\"detail\":\"ModifierUsageType\",\"documentation\":\"MUT_Enable of type ModifierUsageType\"},{\"id\":\"PBG_Weapon\",\"kind\":12,\"label\":\"PBG_Weapon\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_Weapon of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_MoveType\",\"kind\":12,\"label\":\"PBG_MoveType\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_MoveType of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_SlotItem\",\"kind\":12,\"label\":\"PBG_SlotItem\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_SlotItem of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_UITacticalMap\",\"kind\":12,\"label\":\"PBG_UITacticalMap\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_UITacticalMap of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_HitMaterial\",\"kind\":12,\"label\":\"PBG_HitMaterial\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_HitMaterial of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_PassType\",\"kind\":12,\"label\":\"PBG_PassType\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_PassType of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_Race\",\"kind\":12,\"label\":\"PBG_Race\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_Race of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_UISelection\",\"kind\":12,\"label\":\"PBG_UISelection\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_UISelection of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_Critical\",\"kind\":12,\"label\":\"PBG_Critical\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_Critical of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_CamouflageStance\",\"kind\":12,\"label\":\"PBG_CamouflageStance\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_CamouflageStance of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_Material\",\"kind\":12,\"label\":\"PBG_Material\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_Material of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_Tuning\",\"kind\":12,\"label\":\"PBG_Tuning\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_Tuning of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_Ability\",\"kind\":12,\"label\":\"PBG_Ability\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_Ability of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_Upgrade\",\"kind\":12,\"label\":\"PBG_Upgrade\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_Upgrade of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_Posture\",\"kind\":12,\"label\":\"PBG_Posture\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_Posture of type ModPropertyBagGroupTypes\"},{\"id\":\"PBG_UITerritory\",\"kind\":12,\"label\":\"PBG_UITerritory\",\"detail\":\"ModPropertyBagGroupTypes\",\"documentation\":\"PBG_UITerritory of type ModPropertyBagGroupTypes\"},{\"id\":\"MM_ForceTense\",\"kind\":12,\"label\":\"MM_ForceTense\",\"detail\":\"MoodMode\",\"documentation\":\"MM_ForceTense of type MoodMode\"},{\"id\":\"MM_ForceCalm\",\"kind\":12,\"label\":\"MM_ForceCalm\",\"detail\":\"MoodMode\",\"documentation\":\"MM_ForceCalm of type MoodMode\"},{\"id\":\"MM_Auto\",\"kind\":12,\"label\":\"MM_Auto\",\"detail\":\"MoodMode\",\"documentation\":\"MM_Auto of type MoodMode\"},{\"id\":\"FN_OnShow\",\"kind\":12,\"label\":\"FN_OnShow\",\"detail\":\"ObjectiveFunction\",\"documentation\":\"FN_OnShow of type ObjectiveFunction\"},{\"id\":\"FN_OnCounterDisplay\",\"kind\":12,\"label\":\"FN_OnCounterDisplay\",\"detail\":\"ObjectiveFunction\",\"documentation\":\"FN_OnCounterDisplay of type ObjectiveFunction\"},{\"id\":\"FN_OnActivate\",\"kind\":12,\"label\":\"FN_OnActivate\",\"detail\":\"ObjectiveFunction\",\"documentation\":\"FN_OnActivate of type ObjectiveFunction\"},{\"id\":\"FN_LuaTableQuery\",\"kind\":12,\"label\":\"FN_LuaTableQuery\",\"detail\":\"ObjectiveFunction\",\"documentation\":\"FN_LuaTableQuery of type ObjectiveFunction\"},{\"id\":\"FN_OnSelect\",\"kind\":12,\"label\":\"FN_OnSelect\",\"detail\":\"ObjectiveFunction\",\"documentation\":\"FN_OnSelect of type ObjectiveFunction\"},{\"id\":\"OS_Complete\",\"kind\":12,\"label\":\"OS_Complete\",\"detail\":\"ObjectiveState\",\"documentation\":\"OS_Complete of type ObjectiveState\"},{\"id\":\"OS_Incomplete\",\"kind\":12,\"label\":\"OS_Incomplete\",\"detail\":\"ObjectiveState\",\"documentation\":\"OS_Incomplete of type ObjectiveState\"},{\"id\":\"OS_Off\",\"kind\":12,\"label\":\"OS_Off\",\"detail\":\"ObjectiveState\",\"documentation\":\"OS_Off of type ObjectiveState\"},{\"id\":\"OS_Failed\",\"kind\":12,\"label\":\"OS_Failed\",\"detail\":\"ObjectiveState\",\"documentation\":\"OS_Failed of type ObjectiveState\"},{\"id\":\"OT_Secondary\",\"kind\":12,\"label\":\"OT_Secondary\",\"detail\":\"ObjectiveType\",\"documentation\":\"OT_Secondary of type ObjectiveType\"},{\"id\":\"OT_Primary\",\"kind\":12,\"label\":\"OT_Primary\",\"detail\":\"ObjectiveType\",\"documentation\":\"OT_Primary of type ObjectiveType\"},{\"id\":\"OT_Ally\",\"kind\":12,\"label\":\"OT_Ally\",\"detail\":\"OwnerType\",\"documentation\":\"OT_Ally of type OwnerType\"},{\"id\":\"OT_Neutral\",\"kind\":12,\"label\":\"OT_Neutral\",\"detail\":\"OwnerType\",\"documentation\":\"OT_Neutral of type OwnerType\"},{\"id\":\"OT_Player\",\"kind\":12,\"label\":\"OT_Player\",\"detail\":\"OwnerType\",\"documentation\":\"OT_Player of type OwnerType\"},{\"id\":\"OT_Enemy\",\"kind\":12,\"label\":\"OT_Enemy\",\"detail\":\"OwnerType\",\"documentation\":\"OT_Enemy of type OwnerType\"},{\"id\":\"PCMD_MunitionDonation\",\"kind\":12,\"label\":\"PCMD_MunitionDonation\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_MunitionDonation of type PlayerCommandType\"},{\"id\":\"PCMD_SlotItemRemove\",\"kind\":12,\"label\":\"PCMD_SlotItemRemove\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_SlotItemRemove of type PlayerCommandType\"},{\"id\":\"PCMD_CriticalHit\",\"kind\":12,\"label\":\"PCMD_CriticalHit\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_CriticalHit of type PlayerCommandType\"},{\"id\":\"PCMD_CheatBuildTime\",\"kind\":12,\"label\":\"PCMD_CheatBuildTime\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_CheatBuildTime of type PlayerCommandType\"},{\"id\":\"PCMD_Ability\",\"kind\":12,\"label\":\"PCMD_Ability\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_Ability of type PlayerCommandType\"},{\"id\":\"PCMD_SetCommander\",\"kind\":12,\"label\":\"PCMD_SetCommander\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_SetCommander of type PlayerCommandType\"},{\"id\":\"PCMD_CheatRevealAll\",\"kind\":12,\"label\":\"PCMD_CheatRevealAll\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_CheatRevealAll of type PlayerCommandType\"},{\"id\":\"PCMD_ManpowerDonation\",\"kind\":12,\"label\":\"PCMD_ManpowerDonation\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_ManpowerDonation of type PlayerCommandType\"},{\"id\":\"PCMD_UpgradeRemove\",\"kind\":12,\"label\":\"PCMD_UpgradeRemove\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_UpgradeRemove of type PlayerCommandType\"},{\"id\":\"PCMD_ConstructField\",\"kind\":12,\"label\":\"PCMD_ConstructField\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_ConstructField of type PlayerCommandType\"},{\"id\":\"PCMD_CancelProduction\",\"kind\":12,\"label\":\"PCMD_CancelProduction\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_CancelProduction of type PlayerCommandType\"},{\"id\":\"PCMD_CheatKillSelf\",\"kind\":12,\"label\":\"PCMD_CheatKillSelf\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_CheatKillSelf of type PlayerCommandType\"},{\"id\":\"PCMD_Upgrade\",\"kind\":12,\"label\":\"PCMD_Upgrade\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_Upgrade of type PlayerCommandType\"},{\"id\":\"PCMD_ConstructFence\",\"kind\":12,\"label\":\"PCMD_ConstructFence\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_ConstructFence of type PlayerCommandType\"},{\"id\":\"PCMD_FuelDonation\",\"kind\":12,\"label\":\"PCMD_FuelDonation\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_FuelDonation of type PlayerCommandType\"},{\"id\":\"PCMD_DetonateCharges\",\"kind\":12,\"label\":\"PCMD_DetonateCharges\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_DetonateCharges of type PlayerCommandType\"},{\"id\":\"PCMD_CheatResources\",\"kind\":12,\"label\":\"PCMD_CheatResources\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_CheatResources of type PlayerCommandType\"},{\"id\":\"PCMD_AIPlayer\",\"kind\":12,\"label\":\"PCMD_AIPlayer\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_AIPlayer of type PlayerCommandType\"},{\"id\":\"PCMD_AIPlayer_ObjectiveNotification\",\"kind\":12,\"label\":\"PCMD_AIPlayer_ObjectiveNotification\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_AIPlayer_ObjectiveNotification of type PlayerCommandType\"},{\"id\":\"PCMD_ConstructStructure\",\"kind\":12,\"label\":\"PCMD_ConstructStructure\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_ConstructStructure of type PlayerCommandType\"},{\"id\":\"PCMD_InstantUpgrade\",\"kind\":12,\"label\":\"PCMD_InstantUpgrade\",\"detail\":\"PlayerCommandType\",\"documentation\":\"PCMD_InstantUpgrade of type PlayerCommandType\"},{\"id\":\"PITEM_SquadUpgrade\",\"kind\":12,\"label\":\"PITEM_SquadUpgrade\",\"detail\":\"ProductionItemType\",\"documentation\":\"PITEM_SquadUpgrade of type ProductionItemType\"},{\"id\":\"PITEM_SquadReinforce\",\"kind\":12,\"label\":\"PITEM_SquadReinforce\",\"detail\":\"ProductionItemType\",\"documentation\":\"PITEM_SquadReinforce of type ProductionItemType\"},{\"id\":\"PITEM_Spawn\",\"kind\":12,\"label\":\"PITEM_Spawn\",\"detail\":\"ProductionItemType\",\"documentation\":\"PITEM_Spawn of type ProductionItemType\"},{\"id\":\"PITEM_Upgrade\",\"kind\":12,\"label\":\"PITEM_Upgrade\",\"detail\":\"ProductionItemType\",\"documentation\":\"PITEM_Upgrade of type ProductionItemType\"},{\"id\":\"PT_Rectangle\",\"kind\":12,\"label\":\"PT_Rectangle\",\"detail\":\"ProximityType\",\"documentation\":\"PT_Rectangle of type ProximityType\"},{\"id\":\"PT_Circle\",\"kind\":12,\"label\":\"PT_Circle\",\"detail\":\"ProximityType\",\"documentation\":\"PT_Circle of type ProximityType\"},{\"id\":\"R_NEUTRAL\",\"kind\":12,\"label\":\"R_NEUTRAL\",\"detail\":\"Relationship\",\"documentation\":\"R_NEUTRAL of type Relationship\"},{\"id\":\"R_ENEMY\",\"kind\":12,\"label\":\"R_ENEMY\",\"detail\":\"Relationship\",\"documentation\":\"R_ENEMY of type Relationship\"},{\"id\":\"R_UNDEFINED\",\"kind\":12,\"label\":\"R_UNDEFINED\",\"detail\":\"Relationship\",\"documentation\":\"R_UNDEFINED of type Relationship\"},{\"id\":\"R_ALLY\",\"kind\":12,\"label\":\"R_ALLY\",\"detail\":\"Relationship\",\"documentation\":\"R_ALLY of type Relationship\"},{\"id\":\"RT_SovietOrder227\",\"kind\":12,\"label\":\"RT_SovietOrder227\",\"detail\":\"ResourceType\",\"documentation\":\"RT_SovietOrder227 of type ResourceType\"},{\"id\":\"RT_Command\",\"kind\":12,\"label\":\"RT_Command\",\"detail\":\"ResourceType\",\"documentation\":\"RT_Command of type ResourceType\"},{\"id\":\"RT_SovietProgression\",\"kind\":12,\"label\":\"RT_SovietProgression\",\"detail\":\"ResourceType\",\"documentation\":\"RT_SovietProgression of type ResourceType\"},{\"id\":\"RT_Popcap\",\"kind\":12,\"label\":\"RT_Popcap\",\"detail\":\"ResourceType\",\"documentation\":\"RT_Popcap of type ResourceType\"},{\"id\":\"RT_Manpower\",\"kind\":12,\"label\":\"RT_Manpower\",\"detail\":\"ResourceType\",\"documentation\":\"RT_Manpower of type ResourceType\"},{\"id\":\"RT_Munition\",\"kind\":12,\"label\":\"RT_Munition\",\"detail\":\"ResourceType\",\"documentation\":\"RT_Munition of type ResourceType\"},{\"id\":\"RT_Fuel\",\"kind\":12,\"label\":\"RT_Fuel\",\"detail\":\"ResourceType\",\"documentation\":\"RT_Fuel of type ResourceType\"},{\"id\":\"RT_Action\",\"kind\":12,\"label\":\"RT_Action\",\"detail\":\"ResourceType\",\"documentation\":\"RT_Action of type ResourceType\"},{\"id\":\"RUIITEM_Population\",\"kind\":12,\"label\":\"RUIITEM_Population\",\"detail\":\"ResourceUIItem\",\"documentation\":\"RUIITEM_Population of type ResourceUIItem\"},{\"id\":\"RUIITEM_ResourceBar\",\"kind\":12,\"label\":\"RUIITEM_ResourceBar\",\"detail\":\"ResourceUIItem\",\"documentation\":\"RUIITEM_ResourceBar of type ResourceUIItem\"},{\"id\":\"RUIITEM_Munitions\",\"kind\":12,\"label\":\"RUIITEM_Munitions\",\"detail\":\"ResourceUIItem\",\"documentation\":\"RUIITEM_Munitions of type ResourceUIItem\"},{\"id\":\"RUIITEM_Manpower\",\"kind\":12,\"label\":\"RUIITEM_Manpower\",\"detail\":\"ResourceUIItem\",\"documentation\":\"RUIITEM_Manpower of type ResourceUIItem\"},{\"id\":\"RUIITEM_Fuel\",\"kind\":12,\"label\":\"RUIITEM_Fuel\",\"detail\":\"ResourceUIItem\",\"documentation\":\"RUIITEM_Fuel of type ResourceUIItem\"},{\"id\":\"ST_MARKER\",\"kind\":12,\"label\":\"ST_MARKER\",\"detail\":\"ScarType\",\"documentation\":\"ST_MARKER of type ScarType\"},{\"id\":\"ST_PBG\",\"kind\":12,\"label\":\"ST_PBG\",\"detail\":\"ScarType\",\"documentation\":\"ST_PBG of type ScarType\"},{\"id\":\"ST_SCARPOS\",\"kind\":12,\"label\":\"ST_SCARPOS\",\"detail\":\"ScarType\",\"documentation\":\"ST_SCARPOS of type ScarType\"},{\"id\":\"ST_AIPLAYER\",\"kind\":12,\"label\":\"ST_AIPLAYER\",\"detail\":\"ScarType\",\"documentation\":\"ST_AIPLAYER of type ScarType\"},{\"id\":\"ST_TABLE\",\"kind\":12,\"label\":\"ST_TABLE\",\"detail\":\"ScarType\",\"documentation\":\"ST_TABLE of type ScarType\"},{\"id\":\"ST_EGROUP\",\"kind\":12,\"label\":\"ST_EGROUP\",\"detail\":\"ScarType\",\"documentation\":\"ST_EGROUP of type ScarType\"},{\"id\":\"ST_AISTATSMILITARYPOINT\",\"kind\":12,\"label\":\"ST_AISTATSMILITARYPOINT\",\"detail\":\"ScarType\",\"documentation\":\"ST_AISTATSMILITARYPOINT of type ScarType\"},{\"id\":\"ST_AISQUAD\",\"kind\":12,\"label\":\"ST_AISQUAD\",\"detail\":\"ScarType\",\"documentation\":\"ST_AISQUAD of type ScarType\"},{\"id\":\"ST_ENTITY\",\"kind\":12,\"label\":\"ST_ENTITY\",\"detail\":\"ScarType\",\"documentation\":\"ST_ENTITY of type ScarType\"},{\"id\":\"ST_NUMBER\",\"kind\":12,\"label\":\"ST_NUMBER\",\"detail\":\"ScarType\",\"documentation\":\"ST_NUMBER of type ScarType\"},{\"id\":\"ST_FUNCTION\",\"kind\":12,\"label\":\"ST_FUNCTION\",\"detail\":\"ScarType\",\"documentation\":\"ST_FUNCTION of type ScarType\"},{\"id\":\"ST_SQUAD\",\"kind\":12,\"label\":\"ST_SQUAD\",\"detail\":\"ScarType\",\"documentation\":\"ST_SQUAD of type ScarType\"},{\"id\":\"ST_PLAYER\",\"kind\":12,\"label\":\"ST_PLAYER\",\"detail\":\"ScarType\",\"documentation\":\"ST_PLAYER of type ScarType\"},{\"id\":\"ST_BOOLEAN\",\"kind\":12,\"label\":\"ST_BOOLEAN\",\"detail\":\"ScarType\",\"documentation\":\"ST_BOOLEAN of type ScarType\"},{\"id\":\"ST_NIL\",\"kind\":12,\"label\":\"ST_NIL\",\"detail\":\"ScarType\",\"documentation\":\"ST_NIL of type ScarType\"},{\"id\":\"ST_CONSTPLAYER\",\"kind\":12,\"label\":\"ST_CONSTPLAYER\",\"detail\":\"ScarType\",\"documentation\":\"ST_CONSTPLAYER of type ScarType\"},{\"id\":\"ST_UNKNOWN\",\"kind\":12,\"label\":\"ST_UNKNOWN\",\"detail\":\"ScarType\",\"documentation\":\"ST_UNKNOWN of type ScarType\"},{\"id\":\"ST_SGROUP\",\"kind\":12,\"label\":\"ST_SGROUP\",\"detail\":\"ScarType\",\"documentation\":\"ST_SGROUP of type ScarType\"},{\"id\":\"ST_STRING\",\"kind\":12,\"label\":\"ST_STRING\",\"detail\":\"ScarType\",\"documentation\":\"ST_STRING of type ScarType\"},{\"id\":\"ST_AICAPTUREPOINT\",\"kind\":12,\"label\":\"ST_AICAPTUREPOINT\",\"detail\":\"ScarType\",\"documentation\":\"ST_AICAPTUREPOINT of type ScarType\"},{\"id\":\"PBG_TurnPlan\",\"kind\":12,\"label\":\"PBG_TurnPlan\",\"detail\":\"SimPropertyBagGroupTypes\",\"documentation\":\"PBG_TurnPlan of type SimPropertyBagGroupTypes\"},{\"id\":\"PBG_EntityProperties\",\"kind\":12,\"label\":\"PBG_EntityProperties\",\"detail\":\"SimPropertyBagGroupTypes\",\"documentation\":\"PBG_EntityProperties of type SimPropertyBagGroupTypes\"},{\"id\":\"PBG_SquadFormation\",\"kind\":12,\"label\":\"PBG_SquadFormation\",\"detail\":\"SimPropertyBagGroupTypes\",\"documentation\":\"PBG_SquadFormation of type SimPropertyBagGroupTypes\"},{\"id\":\"PBG_SquadProperties\",\"kind\":12,\"label\":\"PBG_SquadProperties\",\"detail\":\"SimPropertyBagGroupTypes\",\"documentation\":\"PBG_SquadProperties of type SimPropertyBagGroupTypes\"},{\"id\":\"PBG_Formation\",\"kind\":12,\"label\":\"PBG_Formation\",\"detail\":\"SimPropertyBagGroupTypes\",\"documentation\":\"PBG_Formation of type SimPropertyBagGroupTypes\"},{\"id\":\"DEBUG_SELECTOR\",\"kind\":12,\"label\":\"DEBUG_SELECTOR\",\"detail\":\"SpeechDebugMode\",\"documentation\":\"DEBUG_SELECTOR of type SpeechDebugMode\"},{\"id\":\"DEBUG_COMBATZONES\",\"kind\":12,\"label\":\"DEBUG_COMBATZONES\",\"detail\":\"SpeechDebugMode\",\"documentation\":\"DEBUG_COMBATZONES of type SpeechDebugMode\"},{\"id\":\"SCMD_Attack\",\"kind\":12,\"label\":\"SCMD_Attack\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Attack of type SquadCommandType\"},{\"id\":\"SCMD_Upgrade\",\"kind\":12,\"label\":\"SCMD_Upgrade\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Upgrade of type SquadCommandType\"},{\"id\":\"SCMD_StationaryAttack\",\"kind\":12,\"label\":\"SCMD_StationaryAttack\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_StationaryAttack of type SquadCommandType\"},{\"id\":\"SCMD_SlotItemRemove\",\"kind\":12,\"label\":\"SCMD_SlotItemRemove\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_SlotItemRemove of type SquadCommandType\"},{\"id\":\"SCMD_Pilfer\",\"kind\":12,\"label\":\"SCMD_Pilfer\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Pilfer of type SquadCommandType\"},{\"id\":\"SCMD_SetMoveType\",\"kind\":12,\"label\":\"SCMD_SetMoveType\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_SetMoveType of type SquadCommandType\"},{\"id\":\"SCMD_Ability\",\"kind\":12,\"label\":\"SCMD_Ability\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Ability of type SquadCommandType\"},{\"id\":\"SCMD_Move\",\"kind\":12,\"label\":\"SCMD_Move\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Move of type SquadCommandType\"},{\"id\":\"SCMD_BuildStructure\",\"kind\":12,\"label\":\"SCMD_BuildStructure\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_BuildStructure of type SquadCommandType\"},{\"id\":\"SCMD_InstantLoad\",\"kind\":12,\"label\":\"SCMD_InstantLoad\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_InstantLoad of type SquadCommandType\"},{\"id\":\"SCMD_Merge\",\"kind\":12,\"label\":\"SCMD_Merge\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Merge of type SquadCommandType\"},{\"id\":\"SCMD_UnloadSquads\",\"kind\":12,\"label\":\"SCMD_UnloadSquads\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_UnloadSquads of type SquadCommandType\"},{\"id\":\"SCMD_Retreat\",\"kind\":12,\"label\":\"SCMD_Retreat\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Retreat of type SquadCommandType\"},{\"id\":\"SCMD_DefaultAction\",\"kind\":12,\"label\":\"SCMD_DefaultAction\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_DefaultAction of type SquadCommandType\"},{\"id\":\"SCMD_RescueCasualty\",\"kind\":12,\"label\":\"SCMD_RescueCasualty\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_RescueCasualty of type SquadCommandType\"},{\"id\":\"SCMD_Stop\",\"kind\":12,\"label\":\"SCMD_Stop\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Stop of type SquadCommandType\"},{\"id\":\"SCMD_SetCamouflageStance\",\"kind\":12,\"label\":\"SCMD_SetCamouflageStance\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_SetCamouflageStance of type SquadCommandType\"},{\"id\":\"SCMD_AttackMove\",\"kind\":12,\"label\":\"SCMD_AttackMove\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_AttackMove of type SquadCommandType\"},{\"id\":\"SCMD_RevertFieldSupport\",\"kind\":12,\"label\":\"SCMD_RevertFieldSupport\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_RevertFieldSupport of type SquadCommandType\"},{\"id\":\"SCMD_CancelProduction\",\"kind\":12,\"label\":\"SCMD_CancelProduction\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_CancelProduction of type SquadCommandType\"},{\"id\":\"SCMD_Capture\",\"kind\":12,\"label\":\"SCMD_Capture\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Capture of type SquadCommandType\"},{\"id\":\"SCMD_Surprise\",\"kind\":12,\"label\":\"SCMD_Surprise\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Surprise of type SquadCommandType\"},{\"id\":\"SCMD_ReinforceUnit\",\"kind\":12,\"label\":\"SCMD_ReinforceUnit\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_ReinforceUnit of type SquadCommandType\"},{\"id\":\"SCMD_CaptureTeamWeapon\",\"kind\":12,\"label\":\"SCMD_CaptureTeamWeapon\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_CaptureTeamWeapon of type SquadCommandType\"},{\"id\":\"SCMD_Patrol\",\"kind\":12,\"label\":\"SCMD_Patrol\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Patrol of type SquadCommandType\"},{\"id\":\"SCMD_Face\",\"kind\":12,\"label\":\"SCMD_Face\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Face of type SquadCommandType\"},{\"id\":\"SCMD_Recrew\",\"kind\":12,\"label\":\"SCMD_Recrew\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Recrew of type SquadCommandType\"},{\"id\":\"SCMD_DoPlan\",\"kind\":12,\"label\":\"SCMD_DoPlan\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_DoPlan of type SquadCommandType\"},{\"id\":\"SCMD_DefuseCharge\",\"kind\":12,\"label\":\"SCMD_DefuseCharge\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_DefuseCharge of type SquadCommandType\"},{\"id\":\"SCMD_PickUpSlotItem\",\"kind\":12,\"label\":\"SCMD_PickUpSlotItem\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_PickUpSlotItem of type SquadCommandType\"},{\"id\":\"SCMD_BuildSquad\",\"kind\":12,\"label\":\"SCMD_BuildSquad\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_BuildSquad of type SquadCommandType\"},{\"id\":\"SCMD_InstantReinforceUnit\",\"kind\":12,\"label\":\"SCMD_InstantReinforceUnit\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_InstantReinforceUnit of type SquadCommandType\"},{\"id\":\"SCMD_Load\",\"kind\":12,\"label\":\"SCMD_Load\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Load of type SquadCommandType\"},{\"id\":\"SCMD_InstantSetupTeamWeapon\",\"kind\":12,\"label\":\"SCMD_InstantSetupTeamWeapon\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_InstantSetupTeamWeapon of type SquadCommandType\"},{\"id\":\"SCMD_RallyPoint\",\"kind\":12,\"label\":\"SCMD_RallyPoint\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_RallyPoint of type SquadCommandType\"},{\"id\":\"SCMD_AbandonTeamWeapon\",\"kind\":12,\"label\":\"SCMD_AbandonTeamWeapon\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_AbandonTeamWeapon of type SquadCommandType\"},{\"id\":\"SCMD_Unload\",\"kind\":12,\"label\":\"SCMD_Unload\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Unload of type SquadCommandType\"},{\"id\":\"SCMD_DefuseMine\",\"kind\":12,\"label\":\"SCMD_DefuseMine\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_DefuseMine of type SquadCommandType\"},{\"id\":\"SCMD_Destroy\",\"kind\":12,\"label\":\"SCMD_Destroy\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_Destroy of type SquadCommandType\"},{\"id\":\"SCMD_PlaceCharge\",\"kind\":12,\"label\":\"SCMD_PlaceCharge\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_PlaceCharge of type SquadCommandType\"},{\"id\":\"SCMD_InstantUpgrade\",\"kind\":12,\"label\":\"SCMD_InstantUpgrade\",\"detail\":\"SquadCommandType\",\"documentation\":\"SCMD_InstantUpgrade of type SquadCommandType\"},{\"id\":\"SQUADSTATEID_Capture\",\"kind\":12,\"label\":\"SQUADSTATEID_Capture\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Capture of type SquadStateID\"},{\"id\":\"SQUADSTATEID_CaptureTeamWeapon\",\"kind\":12,\"label\":\"SQUADSTATEID_CaptureTeamWeapon\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_CaptureTeamWeapon of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Move\",\"kind\":12,\"label\":\"SQUADSTATEID_Move\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Move of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Retreat\",\"kind\":12,\"label\":\"SQUADSTATEID_Retreat\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Retreat of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Plan\",\"kind\":12,\"label\":\"SQUADSTATEID_Plan\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Plan of type SquadStateID\"},{\"id\":\"SQUADSTATEID_AttackMove\",\"kind\":12,\"label\":\"SQUADSTATEID_AttackMove\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_AttackMove of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Load\",\"kind\":12,\"label\":\"SQUADSTATEID_Load\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Load of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Defuse\",\"kind\":12,\"label\":\"SQUADSTATEID_Defuse\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Defuse of type SquadStateID\"},{\"id\":\"SQUADSTATEID_DefuseMine\",\"kind\":12,\"label\":\"SQUADSTATEID_DefuseMine\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_DefuseMine of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Stop\",\"kind\":12,\"label\":\"SQUADSTATEID_Stop\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Stop of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Patrol\",\"kind\":12,\"label\":\"SQUADSTATEID_Patrol\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Patrol of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Ability\",\"kind\":12,\"label\":\"SQUADSTATEID_Ability\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Ability of type SquadStateID\"},{\"id\":\"SQUADSTATEID_CombatStance\",\"kind\":12,\"label\":\"SQUADSTATEID_CombatStance\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_CombatStance of type SquadStateID\"},{\"id\":\"SQUADSTATEID_RevertFieldSupport\",\"kind\":12,\"label\":\"SQUADSTATEID_RevertFieldSupport\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_RevertFieldSupport of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Unload\",\"kind\":12,\"label\":\"SQUADSTATEID_Unload\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Unload of type SquadStateID\"},{\"id\":\"SQUADSTATEID_HoldUnload\",\"kind\":12,\"label\":\"SQUADSTATEID_HoldUnload\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_HoldUnload of type SquadStateID\"},{\"id\":\"SQUADSTATEID_PickUpSlotItem\",\"kind\":12,\"label\":\"SQUADSTATEID_PickUpSlotItem\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_PickUpSlotItem of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Construction\",\"kind\":12,\"label\":\"SQUADSTATEID_Construction\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Construction of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Idle\",\"kind\":12,\"label\":\"SQUADSTATEID_Idle\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Idle of type SquadStateID\"},{\"id\":\"SQUADSTATEID_WeaponTransition\",\"kind\":12,\"label\":\"SQUADSTATEID_WeaponTransition\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_WeaponTransition of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Recrew\",\"kind\":12,\"label\":\"SQUADSTATEID_Recrew\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Recrew of type SquadStateID\"},{\"id\":\"SQUADSTATEID_PlaceCharges\",\"kind\":12,\"label\":\"SQUADSTATEID_PlaceCharges\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_PlaceCharges of type SquadStateID\"},{\"id\":\"SQUADSTATEID_Combat\",\"kind\":12,\"label\":\"SQUADSTATEID_Combat\",\"detail\":\"SquadStateID\",\"documentation\":\"SQUADSTATEID_Combat of type SquadStateID\"},{\"id\":\"UIE_UpgradeComplete\",\"kind\":12,\"label\":\"UIE_UpgradeComplete\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_UpgradeComplete of type UIEventType\"},{\"id\":\"UIE_PlayerPingOfShameLocal\",\"kind\":12,\"label\":\"UIE_PlayerPingOfShameLocal\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_PlayerPingOfShameLocal of type UIEventType\"},{\"id\":\"UIE_EnemyReveal\",\"kind\":12,\"label\":\"UIE_EnemyReveal\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_EnemyReveal of type UIEventType\"},{\"id\":\"UIE_InfoPointActivated\",\"kind\":12,\"label\":\"UIE_InfoPointActivated\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_InfoPointActivated of type UIEventType\"},{\"id\":\"UIE_AITakeOver\",\"kind\":12,\"label\":\"UIE_AITakeOver\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_AITakeOver of type UIEventType\"},{\"id\":\"UIE_VehicleComplete\",\"kind\":12,\"label\":\"UIE_VehicleComplete\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_VehicleComplete of type UIEventType\"},{\"id\":\"UIE_AllyAttacked\",\"kind\":12,\"label\":\"UIE_AllyAttacked\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_AllyAttacked of type UIEventType\"},{\"id\":\"UIE_CommanderAbilityUnlocked\",\"kind\":12,\"label\":\"UIE_CommanderAbilityUnlocked\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_CommanderAbilityUnlocked of type UIEventType\"},{\"id\":\"UIE_CommandersUnlocked\",\"kind\":12,\"label\":\"UIE_CommandersUnlocked\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_CommandersUnlocked of type UIEventType\"},{\"id\":\"UIE_CommandPointGained\",\"kind\":12,\"label\":\"UIE_CommandPointGained\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_CommandPointGained of type UIEventType\"},{\"id\":\"UIE_SquadFreezing\",\"kind\":12,\"label\":\"UIE_SquadFreezing\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_SquadFreezing of type UIEventType\"},{\"id\":\"UIE_SquadCold\",\"kind\":12,\"label\":\"UIE_SquadCold\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_SquadCold of type UIEventType\"},{\"id\":\"UIE_CasualtySquadSpawned\",\"kind\":12,\"label\":\"UIE_CasualtySquadSpawned\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_CasualtySquadSpawned of type UIEventType\"},{\"id\":\"UIE_SquadVeterancy\",\"kind\":12,\"label\":\"UIE_SquadVeterancy\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_SquadVeterancy of type UIEventType\"},{\"id\":\"UIE_VehicleReplaced\",\"kind\":12,\"label\":\"UIE_VehicleReplaced\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_VehicleReplaced of type UIEventType\"},{\"id\":\"UIE_InfantryReplaced\",\"kind\":12,\"label\":\"UIE_InfantryReplaced\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_InfantryReplaced of type UIEventType\"},{\"id\":\"UIE_Sniped\",\"kind\":12,\"label\":\"UIE_Sniped\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_Sniped of type UIEventType\"},{\"id\":\"UIE_BoobyTrap\",\"kind\":12,\"label\":\"UIE_BoobyTrap\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_BoobyTrap of type UIEventType\"},{\"id\":\"UIE_MineDetected\",\"kind\":12,\"label\":\"UIE_MineDetected\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_MineDetected of type UIEventType\"},{\"id\":\"UIE_AbilityExectued\",\"kind\":12,\"label\":\"UIE_AbilityExectued\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_AbilityExectued of type UIEventType\"},{\"id\":\"UIE_StrategicPointCaptured\",\"kind\":12,\"label\":\"UIE_StrategicPointCaptured\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_StrategicPointCaptured of type UIEventType\"},{\"id\":\"UIE_StrategicPointReverting\",\"kind\":12,\"label\":\"UIE_StrategicPointReverting\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_StrategicPointReverting of type UIEventType\"},{\"id\":\"UIE_EnemyTerritoryEntered\",\"kind\":12,\"label\":\"UIE_EnemyTerritoryEntered\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_EnemyTerritoryEntered of type UIEventType\"},{\"id\":\"UIE_TerritoryEntered\",\"kind\":12,\"label\":\"UIE_TerritoryEntered\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_TerritoryEntered of type UIEventType\"},{\"id\":\"UIE_PlayerSurrendered\",\"kind\":12,\"label\":\"UIE_PlayerSurrendered\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_PlayerSurrendered of type UIEventType\"},{\"id\":\"UIE_PlayerAttacked\",\"kind\":12,\"label\":\"UIE_PlayerAttacked\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_PlayerAttacked of type UIEventType\"},{\"id\":\"UIE_VehicleAttacked\",\"kind\":12,\"label\":\"UIE_VehicleAttacked\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_VehicleAttacked of type UIEventType\"},{\"id\":\"UIE_PlayerKilled\",\"kind\":12,\"label\":\"UIE_PlayerKilled\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_PlayerKilled of type UIEventType\"},{\"id\":\"UIE_PlayerKicked\",\"kind\":12,\"label\":\"UIE_PlayerKicked\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_PlayerKicked of type UIEventType\"},{\"id\":\"UIE_PlayerLagComplaint\",\"kind\":12,\"label\":\"UIE_PlayerLagComplaint\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_PlayerLagComplaint of type UIEventType\"},{\"id\":\"UIE_PlayerPingOfShame\",\"kind\":12,\"label\":\"UIE_PlayerPingOfShame\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_PlayerPingOfShame of type UIEventType\"},{\"id\":\"UIE_PlayerDropped\",\"kind\":12,\"label\":\"UIE_PlayerDropped\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_PlayerDropped of type UIEventType\"},{\"id\":\"UIE_ConstructionComplete\",\"kind\":12,\"label\":\"UIE_ConstructionComplete\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_ConstructionComplete of type UIEventType\"},{\"id\":\"UIE_StrategicPointSecured\",\"kind\":12,\"label\":\"UIE_StrategicPointSecured\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_StrategicPointSecured of type UIEventType\"},{\"id\":\"UIE_ResourceDepleted\",\"kind\":12,\"label\":\"UIE_ResourceDepleted\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_ResourceDepleted of type UIEventType\"},{\"id\":\"UIE_SquadPinned\",\"kind\":12,\"label\":\"UIE_SquadPinned\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_SquadPinned of type UIEventType\"},{\"id\":\"UIE_InfantryAttacked\",\"kind\":12,\"label\":\"UIE_InfantryAttacked\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_InfantryAttacked of type UIEventType\"},{\"id\":\"UIE_InfantryComplete\",\"kind\":12,\"label\":\"UIE_InfantryComplete\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_InfantryComplete of type UIEventType\"},{\"id\":\"UIE_PlayerCheated\",\"kind\":12,\"label\":\"UIE_PlayerCheated\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_PlayerCheated of type UIEventType\"},{\"id\":\"UIE_PhaseUp\",\"kind\":12,\"label\":\"UIE_PhaseUp\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_PhaseUp of type UIEventType\"},{\"id\":\"UIE_HostMigrated\",\"kind\":12,\"label\":\"UIE_HostMigrated\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_HostMigrated of type UIEventType\"},{\"id\":\"UIE_Default\",\"kind\":12,\"label\":\"UIE_Default\",\"detail\":\"UIEventType\",\"documentation\":\"UIE_Default of type UIEventType\"},{\"id\":\"UI_Cinematic\",\"kind\":12,\"label\":\"UI_Cinematic\",\"detail\":\"UIMode\",\"documentation\":\"UI_Cinematic of type UIMode\"},{\"id\":\"UI_Fullscreen\",\"kind\":12,\"label\":\"UI_Fullscreen\",\"detail\":\"UIMode\",\"documentation\":\"UI_Fullscreen of type UIMode\"},{\"id\":\"UI_Normal\",\"kind\":12,\"label\":\"UI_Normal\",\"detail\":\"UIMode\",\"documentation\":\"UI_Normal of type UIMode\"},{\"id\":\"UOT_Player\",\"kind\":12,\"label\":\"UOT_Player\",\"detail\":\"UpgradeOwnerType\",\"documentation\":\"UOT_Player of type UpgradeOwnerType\"},{\"id\":\"UOT_Self\",\"kind\":12,\"label\":\"UOT_Self\",\"detail\":\"UpgradeOwnerType\",\"documentation\":\"UOT_Self of type UpgradeOwnerType\"},{\"id\":\"UOT_None\",\"kind\":12,\"label\":\"UOT_None\",\"detail\":\"UpgradeOwnerType\",\"documentation\":\"UOT_None of type UpgradeOwnerType\"},{\"id\":\"BIS_Icon\",\"kind\":12,\"label\":\"BIS_Icon\",\"detail\":\"ButtonIconStyle\",\"documentation\":\"BIS_Icon of type ButtonIconStyle\"},{\"id\":\"BIS_IconState\",\"kind\":12,\"label\":\"BIS_IconState\",\"detail\":\"ButtonIconStyle\",\"documentation\":\"BIS_IconState of type ButtonIconStyle\"},{\"id\":\"LAH_Justify\",\"kind\":12,\"label\":\"LAH_Justify\",\"detail\":\"LabelAlignHorizontal\",\"documentation\":\"LAH_Justify of type LabelAlignHorizontal\"},{\"id\":\"LAH_Left\",\"kind\":12,\"label\":\"LAH_Left\",\"detail\":\"LabelAlignHorizontal\",\"documentation\":\"LAH_Left of type LabelAlignHorizontal\"},{\"id\":\"LAH_Center\",\"kind\":12,\"label\":\"LAH_Center\",\"detail\":\"LabelAlignHorizontal\",\"documentation\":\"LAH_Center of type LabelAlignHorizontal\"},{\"id\":\"LAH_Right\",\"kind\":12,\"label\":\"LAH_Right\",\"detail\":\"LabelAlignHorizontal\",\"documentation\":\"LAH_Right of type LabelAlignHorizontal\"},{\"id\":\"LAV_None\",\"kind\":12,\"label\":\"LAV_None\",\"detail\":\"LabelAlignVertical\",\"documentation\":\"LAV_None of type LabelAlignVertical\"},{\"id\":\"LAV_Top\",\"kind\":12,\"label\":\"LAV_Top\",\"detail\":\"LabelAlignVertical\",\"documentation\":\"LAV_Top of type LabelAlignVertical\"},{\"id\":\"LAV_Center\",\"kind\":12,\"label\":\"LAV_Center\",\"detail\":\"LabelAlignVertical\",\"documentation\":\"LAV_Center of type LabelAlignVertical\"},{\"id\":\"LAV_Bottom\",\"kind\":12,\"label\":\"LAV_Bottom\",\"detail\":\"LabelAlignVertical\",\"documentation\":\"LAV_Bottom of type LabelAlignVertical\"},{\"id\":\"assert\",\"kind\":2,\"label\":\"assert\",\"detail\":\"assert (v [, message])\",\"documentation\":\"Calls error if the value of its argument v is false (i.e., nil or false); otherwise, returns all its arguments. In case of error, message is the error object; when absent, it defaults to \"assertion failed!\"\"},{\"id\":\"collectgarbage\",\"kind\":2,\"label\":\"collectgarbage\",\"detail\":\"collectgarbage ([opt [, arg]])\",\"documentation\":\"This function is a generic interface to the garbage collector. It performs different functions according to its first argument, opt.n\"collect\": performs a full garbage-collection cycle. This is the default option.n\"stop\": stops automatic execution of the garbage collector. The collector will run only when explicitly invoked, until a call to restart it.n\"restart\": restarts automatic execution of the garbage collector.n\"count\": returns the total memory in use by Lua in Kbytes. The value has a fractional part, so that it multiplied by 1024 gives the exact number of bytes in use by Lua (except for overflows).n\"step\": performs a garbage-collection step. The step \"size\" is controlled by arg. With a zero value, the collector will perform one basic (indivisible) step. For non-zero values, the collector will perform as if that amount of memory (in KBytes) had been allocated by Lua. Returns true if the step finished a collection cycle.n\"setpause\": sets arg as the new value for the pause of the collector (see §2.5). Returns the previous value for pause.n\"setstepmul\": sets arg as the new value for the step multiplier of the collector (see §2.5). Returns the previous value for step.n\"isrunning\": returns a boolean that tells whether the collector is running (i.e., not stopped).\"},{\"id\":\"dofile\",\"kind\":2,\"label\":\"dofile\",\"detail\":\"dofile ([filename])\",\"documentation\":\"Opens the named file and executes its contents as a Lua chunk. When called without arguments, dofile executes the contents of the standard input (stdin). Returns all values returned by the chunk. In case of errors, dofile propagates the error to its caller (that is, dofile does not run in protected mode).\"},{\"id\":\"error\",\"kind\":2,\"label\":\"error\",\"detail\":\"error (message [, level])\",\"documentation\":\"Terminates the last protected function called and returns message as the error object. Function error never returns. nUsually, error adds some information about the error position at the beginning of the message, if the message is a string. The level argument specifies how to get the error position. With level 1 (the default), the error position is where the error function was called. Level 2 points the error to where the function that called error was called; and so on. Passing a level 0 avoids the addition of error position information to the message.\"},{\"id\":\"getmetatable\",\"kind\":2,\"label\":\"getmetatable\",\"detail\":\"getmetatable (object)\",\"documentation\":\"If object does not have a metatable, returns nil. Otherwise, if the object\"s metatable has a __metatable field, returns the associated value. Otherwise, returns the metatable of the given object.\"},{\"id\":\"ipairs\",\"kind\":2,\"label\":\"ipairs\",\"detail\":\"ipairs (t)\",\"documentation\":\"Returns three values (an iterator function, the table t, and 0) so that the constructionnnfor i,v in ipairs(t) do body endnnwill iterate over the key–value pairs (1,t[1]), (2,t[2]), ..., up to the first nil value.\"},{\"id\":\"load\",\"kind\":2,\"label\":\"load\",\"detail\":\"load (chunk [, chunkname [, mode [, env]]])\",\"documentation\":\"Loads a chunk.nnIf chunk is a string, the chunk is this string. If chunk is a function, load calls it repeatedly to get the chunk pieces. Each call to chunk must return a string that concatenates with previous results. A return of an empty string, nil, or no value signals the end of the chunk.nnIf there are no syntactic errors, returns the compiled chunk as a function; otherwise, returns nil plus the error message.nnIf the resulting function has upvalues, the first upvalue is set to the value of env, if that parameter is given, or to the value of the global environment. Other upvalues are initialized with nil. (When you load a main chunk, the resulting function will always have exactly one upvalue, the _ENV variable (see §2.2). However, when you load a binary chunk created from a function (see string.dump), the resulting function can have an arbitrary number of upvalues.) All upvalues are fresh, that is, they are not shared with any other function.nnchunkname is used as the name of the chunk for error messages and debug information (see §4.9). When absent, it defaults to chunk, if chunk is a string, or to \"=(load)\" otherwise.nnThe string mode controls whether the chunk can be text or binary (that is, a precompiled chunk). It may be the string \"b\" (only binary chunks), \"t\" (only text chunks), or \"bt\" (both binary and text). The default is \"bt\".nnLua does not check the consistency of binary chunks. Maliciously crafted binary chunks can crash the interpreter.\"},{\"id\":\"loadfile\",\"kind\":2,\"label\":\"loadfile\",\"detail\":\"loadfile ([filename [, mode [, env]]])\",\"documentation\":\"Similar to load, but gets the chunk from file filename or from the standard input, if no file name is given.\"},{\"id\":\"next\",\"kind\":2,\"label\":\"next\",\"detail\":\"next (table [, index])\",\"documentation\":\"Allows a program to traverse all fields of a table. Its first argument is a table and its second argument is an index in this table. next returns the next index of the table and its associated value. When called with nil as its second argument, next returns an initial index and its associated value. When called with the last index, or with nil in an empty table, next returns nil. If the second argument is absent, then it is interpreted as nil. In particular, you can use next(t) to check whether a table is empty.nnThe order in which the indices are enumerated is not specified, even for numeric indices. (To traverse a table in numerical order, use a numerical for.)nnThe behavior of next is undefined if, during the traversal, you assign any value to a non-existent field in the table. You may however modify existing fields. In particular, you may clear existing fields.\"},{\"id\":\"pairs\",\"kind\":2,\"label\":\"pairs\",\"detail\":\"pairs (t)\",\"documentation\":\"If t has a metamethod __pairs, calls it with t as argument and returns the first three results from the call.nnOtherwise, returns three values: the next function, the table t, and nil, so that the constructionnn for k,v in pairs(t) do body endnwill iterate over all key–value pairs of table t.nnSee function next for the caveats of modifying the table during its traversal.\"},{\"id\":\"pcall\",\"kind\":2,\"label\":\"pcall\",\"detail\":\"pcall (f [, arg1, ···])\",\"documentation\":\"Calls function f with the given arguments in protected mode. This means that any error inside f is not propagated; instead, pcall catches the error and returns a status code. Its first result is the status code (a boolean), which is true if the call succeeds without errors. In such case, pcall also returns all results from the call, after this first result. In case of any error, pcall returns false plus the error message.\"},{\"id\":\"print\",\"kind\":2,\"label\":\"print\",\"detail\":\"print (···)\",\"documentation\":\"Receives any number of arguments and prints their values to stdout, using the tostring function to convert each argument to a string. print is not intended for formatted output, but only as a quick way to show a value, for instance for debugging. For complete control over the output, use string.format and io.write.\"},{\"id\":\"rawequal\",\"kind\":2,\"label\":\"rawequal\",\"detail\":\"rawequal (v1, v2)\",\"documentation\":\"Checks whether v1 is equal to v2, without invoking the __eq metamethod. Returns a boolean.\"},{\"id\":\"rawget\",\"kind\":2,\"label\":\"rawget\",\"detail\":\"rawget (table, index)\",\"documentation\":\"Gets the real value of table[index], without invoking the __index metamethod. table must be a table; index may be any value.\"},{\"id\":\"rawlen\",\"kind\":2,\"label\":\"rawlen\",\"detail\":\"rawlen (v)\",\"documentation\":\"Returns the length of the object v, which must be a table or a string, without invoking the __len metamethod. Returns an integer.\"},{\"id\":\"rawset\",\"kind\":2,\"label\":\"rawset\",\"detail\":\"rawset (table, index, value)\",\"documentation\":\"Sets the real value of table[index] to value, without invoking the __newindex metamethod. table must be a table, index any value different from nil and NaN, and value any Lua value.nThis function returns table.\"},{\"id\":\"select\",\"kind\":2,\"label\":\"select\",\"detail\":\"select (index, ···)\",\"documentation\":\"If index is a number, returns all arguments after argument number index; a negative number indexes from the end (-1 is the last argument). Otherwise, index must be the string \"#\", and select returns the total number of extra arguments it received.\"},{\"id\":\"setmetatable\",\"kind\":2,\"label\":\"setmetatable\",\"detail\":\"setmetatable (table, metatable)\",\"documentation\":\"Sets the metatable for the given table. (To change the metatable of other types from Lua code, you must use the debug library (§6.10).) If metatable is nil, removes the metatable of the given table. If the original metatable has a __metatable field, raises an error.nnThis function returns table.\"},{\"id\":\"tonumber\",\"kind\":2,\"label\":\"tonumber\",\"detail\":\"tonumber (e [, base])\",\"documentation\":\"When called with no base, tonumber tries to convert its argument to a number. If the argument is already a number or a string convertible to a number, then tonumber returns this number; otherwise, it returns nil.nnThe conversion of strings can result in integers or floats, according to the lexical conventions of Lua (see §3.1). (The string may have leading and trailing spaces and a sign.)nnWhen called with base, then e must be a string to be interpreted as an integer numeral in that base. The base may be any integer between 2 and 36, inclusive. In bases above 10, the letter \"A\" (in either upper or lower case) represents 10, \"B\" represents 11, and so forth, with \"Z\" representing 35. If the string e is not a valid numeral in the given base, the function returns nil.\"},{\"id\":\"tostring\",\"kind\":2,\"label\":\"tostring\",\"detail\":\"tostring (v)\",\"documentation\":\"Receives a value of any type and converts it to a string in a human-readable format. (For complete control of how numbers are converted, use string.format.)nIf the metatable of v has a __tostring field, then tostring calls the corresponding value with v as argument, and uses the result of the call as its result.\"},{\"id\":\"type\",\"kind\":2,\"label\":\"type\",\"detail\":\"type (v)\",\"documentation\":\"Returns the type of its only argument, coded as a string. The possible results of this function are \"nil\" (a string, not the value nil), \"number\", \"string\", \"boolean\", \"table\", \"function\", \"thread\", and \"userdata\".\"},{\"id\":\"xpcall\",\"kind\":2,\"label\":\"xpcall\",\"detail\":\"xpcall (f, msgh [, arg1, ···])\",\"documentation\":\"This function is similar to pcall, except that it sets a new message handler msgh.\"},{\"id\":\"string.byte\",\"kind\":2,\"label\":\"string.byte\",\"detail\":\"string.byte (s [, i [, j]])\",\"documentation\":\"Returns the internal numeric codes of the characters s[i], s[i+1], ..., s[j]. The default value for i is 1; the default value for j is i. These indices are corrected following the same rules of function string.sub.nNumeric codes are not necessarily portable across platforms.\"},{\"id\":\"string.char\",\"kind\":2,\"label\":\"string.char\",\"detail\":\"string.char (···)\",\"documentation\":\"Receives zero or more integers. Returns a string with length equal to the number of arguments, in which each character has the internal numeric code equal to its corresponding argument.nNumeric codes are not necessarily portable across platforms.\"},{\"id\":\"string.dump\",\"kind\":2,\"label\":\"string.dump\",\"detail\":\"string.dump (function [, strip])\",\"documentation\":\"Returns a string containing a binary representation (a binary chunk) of the given function, so that a later load on this string returns a copy of the function (but with new upvalues). If strip is a true value, the binary representation may not include all debug information about the function, to save space.nnFunctions with upvalues have only their number of upvalues saved. When (re)loaded, those upvalues receive fresh instances containing nil. (You can use the debug library to serialize and reload the upvalues of a function in a way adequate to your needs.)\"},{\"id\":\"string.find\",\"kind\":2,\"label\":\"string.find\",\"detail\":\"string.find (s, pattern [, init [, plain]])\",\"documentation\":\"Looks for the first match of pattern (see §6.4.1) in the string s. If it finds a match, then find returns the indices of s where this occurrence starts and ends; otherwise, it returns nil. A third, optional numeric argument init specifies where to start the search; its default value is 1 and can be negative. A value of true as a fourth, optional argument plain turns off the pattern matching facilities, so the function does a plain \"find substring\" operation, with no characters in pattern being considered magic. Note that if plain is given, then init must be given as well.nnIf the pattern has captures, then in a successful match the captured values are also returned, after the two indices.\"},{\"id\":\"and\",\"kind\":14,\"label\":\"and\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"break\",\"kind\":14,\"label\":\"break\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"do\",\"kind\":14,\"label\":\"do\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"else\",\"kind\":14,\"label\":\"else\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"elseif\",\"kind\":14,\"label\":\"elseif\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"end\",\"kind\":14,\"label\":\"end\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"false\",\"kind\":14,\"label\":\"false\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"for\",\"kind\":14,\"label\":\"for\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"function\",\"kind\":14,\"label\":\"function\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"if\",\"kind\":14,\"label\":\"if\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"in\",\"kind\":14,\"label\":\"in\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"local\",\"kind\":14,\"label\":\"local\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"nil\",\"kind\":14,\"label\":\"nil\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"not\",\"kind\":14,\"label\":\"not\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"or\",\"kind\":14,\"label\":\"or\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"repeat\",\"kind\":14,\"label\":\"repeat\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"return\",\"kind\":14,\"label\":\"return\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"then\",\"kind\":14,\"label\":\"then\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"true\",\"kind\":14,\"label\":\"true\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"until\",\"kind\":14,\"label\":\"until\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"while\",\"kind\":14,\"label\":\"while\",\"detail\":\"Lua Keyword\",\"documentation\":\"Lua Keyword\"},{\"id\":\"math.huge\",\"kind\":12,\"label\":\"math.huge\",\"detail\":\"The float value HUGE_VAL, a value larger than any other numeric value.\",\"documentation\":\"The float value HUGE_VAL, a value larger than any other numeric value.\"},{\"id\":\"math.maxinteger\",\"kind\":12,\"label\":\"math.maxinteger\",\"detail\":\"An integer with the maximum value for an integer.\",\"documentation\":\"An integer with the maximum value for an integer.\"},{\"id\":\"math.mininteger\",\"kind\":12,\"label\":\"math.mininteger\",\"detail\":\"An integer with the minimum value for an integer.\",\"documentation\":\"An integer with the minimum value for an integer.\"},{\"id\":\"math.pi\",\"kind\":12,\"label\":\"math.pi\",\"detail\":\"The value of π.\",\"documentation\":\"The value of π.\"},{\"id\":\"EBP.WRECKED_VEHICLES.FRONT_HULL01\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.FRONT_HULL01\",\"documentation\":\"EBP.WRECKED_VEHICLES.FRONT_HULL01\",\"detail\":\"EBP.WRECKED_VEHICLES.FRONT_HULL01\"},{\"id\":\"EBP.WRECKED_VEHICLES.FROZEN_PANZER_IV\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.FROZEN_PANZER_IV\",\"documentation\":\"EBP.WRECKED_VEHICLES.FROZEN_PANZER_IV\",\"detail\":\"EBP.WRECKED_VEHICLES.FROZEN_PANZER_IV\"},{\"id\":\"EBP.WRECKED_VEHICLES.FROZEN_STUG_III\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.FROZEN_STUG_III\",\"documentation\":\"EBP.WRECKED_VEHICLES.FROZEN_STUG_III\",\"detail\":\"EBP.WRECKED_VEHICLES.FROZEN_STUG_III\"},{\"id\":\"EBP.WRECKED_VEHICLES.HORSA_COCKPIT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.HORSA_COCKPIT\",\"documentation\":\"EBP.WRECKED_VEHICLES.HORSA_COCKPIT\",\"detail\":\"EBP.WRECKED_VEHICLES.HORSA_COCKPIT\"},{\"id\":\"EBP.WRECKED_VEHICLES.HORSA_FRONT_HULL\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.HORSA_FRONT_HULL\",\"documentation\":\"EBP.WRECKED_VEHICLES.HORSA_FRONT_HULL\",\"detail\":\"EBP.WRECKED_VEHICLES.HORSA_FRONT_HULL\"},{\"id\":\"EBP.WRECKED_VEHICLES.HORSA_LEFT_WING\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.HORSA_LEFT_WING\",\"documentation\":\"EBP.WRECKED_VEHICLES.HORSA_LEFT_WING\",\"detail\":\"EBP.WRECKED_VEHICLES.HORSA_LEFT_WING\"},{\"id\":\"EBP.WRECKED_VEHICLES.HORSA_LEFT_WING_TIP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.HORSA_LEFT_WING_TIP\",\"documentation\":\"EBP.WRECKED_VEHICLES.HORSA_LEFT_WING_TIP\",\"detail\":\"EBP.WRECKED_VEHICLES.HORSA_LEFT_WING_TIP\"},{\"id\":\"EBP.WRECKED_VEHICLES.HORSA_MID_HULL\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.HORSA_MID_HULL\",\"documentation\":\"EBP.WRECKED_VEHICLES.HORSA_MID_HULL\",\"detail\":\"EBP.WRECKED_VEHICLES.HORSA_MID_HULL\"},{\"id\":\"EBP.WRECKED_VEHICLES.HORSA_REAR_HULL\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.HORSA_REAR_HULL\",\"documentation\":\"EBP.WRECKED_VEHICLES.HORSA_REAR_HULL\",\"detail\":\"EBP.WRECKED_VEHICLES.HORSA_REAR_HULL\"},{\"id\":\"EBP.WRECKED_VEHICLES.HORSA_RIGHT_WING\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.HORSA_RIGHT_WING\",\"documentation\":\"EBP.WRECKED_VEHICLES.HORSA_RIGHT_WING\",\"detail\":\"EBP.WRECKED_VEHICLES.HORSA_RIGHT_WING\"},{\"id\":\"EBP.WRECKED_VEHICLES.HORSA_RIGHT_WING_TIP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.HORSA_RIGHT_WING_TIP\",\"documentation\":\"EBP.WRECKED_VEHICLES.HORSA_RIGHT_WING_TIP\",\"detail\":\"EBP.WRECKED_VEHICLES.HORSA_RIGHT_WING_TIP\"},{\"id\":\"EBP.WRECKED_VEHICLES.HORSA_TAIL\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.HORSA_TAIL\",\"documentation\":\"EBP.WRECKED_VEHICLES.HORSA_TAIL\",\"detail\":\"EBP.WRECKED_VEHICLES.HORSA_TAIL\"},{\"id\":\"EBP.WRECKED_VEHICLES.LEFT_WING\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.LEFT_WING\",\"documentation\":\"EBP.WRECKED_VEHICLES.LEFT_WING\",\"detail\":\"EBP.WRECKED_VEHICLES.LEFT_WING\"},{\"id\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_105MM\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_105MM\",\"documentation\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_105MM\",\"detail\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_105MM\"},{\"id\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_76MM\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_76MM\",\"documentation\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_76MM\",\"detail\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_76MM\"},{\"id\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_DOZER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_DOZER\",\"documentation\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_DOZER\",\"detail\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_M4SHERMAN_DOZER\"},{\"id\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_OPELBLITZ\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_OPELBLITZ\",\"documentation\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_OPELBLITZ\",\"detail\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_OPELBLITZ\"},{\"id\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_PAK38\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_PAK38\",\"documentation\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_PAK38\",\"detail\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_PAK38\"},{\"id\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_PANZERIV\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_PANZERIV\",\"documentation\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_PANZERIV\",\"detail\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_PANZERIV\"},{\"id\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_STUGIII_LONG\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_STUGIII_LONG\",\"documentation\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_STUGIII_LONG\",\"detail\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_STUGIII_LONG\"},{\"id\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_STUGIII_SHORT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_STUGIII_SHORT\",\"documentation\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_STUGIII_SHORT\",\"detail\":\"EBP.WRECKED_VEHICLES.MAP_OBJECT_STUGIII_SHORT\"},{\"id\":\"EBP.WRECKED_VEHICLES.PROPELLER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.PROPELLER\",\"documentation\":\"EBP.WRECKED_VEHICLES.PROPELLER\",\"detail\":\"EBP.WRECKED_VEHICLES.PROPELLER\"},{\"id\":\"EBP.WRECKED_VEHICLES.RIGHT_WING\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.RIGHT_WING\",\"documentation\":\"EBP.WRECKED_VEHICLES.RIGHT_WING\",\"detail\":\"EBP.WRECKED_VEHICLES.RIGHT_WING\"},{\"id\":\"EBP.WRECKED_VEHICLES.STUKA_BODY\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.STUKA_BODY\",\"documentation\":\"EBP.WRECKED_VEHICLES.STUKA_BODY\",\"detail\":\"EBP.WRECKED_VEHICLES.STUKA_BODY\"},{\"id\":\"EBP.WRECKED_VEHICLES.STUKA_DEBRIS\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.STUKA_DEBRIS\",\"documentation\":\"EBP.WRECKED_VEHICLES.STUKA_DEBRIS\",\"detail\":\"EBP.WRECKED_VEHICLES.STUKA_DEBRIS\"},{\"id\":\"EBP.WRECKED_VEHICLES.STUKA_TAIL\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.STUKA_TAIL\",\"documentation\":\"EBP.WRECKED_VEHICLES.STUKA_TAIL\",\"detail\":\"EBP.WRECKED_VEHICLES.STUKA_TAIL\"},{\"id\":\"EBP.WRECKED_VEHICLES.STUKA_WING_LEFT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.STUKA_WING_LEFT\",\"documentation\":\"EBP.WRECKED_VEHICLES.STUKA_WING_LEFT\",\"detail\":\"EBP.WRECKED_VEHICLES.STUKA_WING_LEFT\"},{\"id\":\"EBP.WRECKED_VEHICLES.STUKA_WING_RIGHT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.STUKA_WING_RIGHT\",\"documentation\":\"EBP.WRECKED_VEHICLES.STUKA_WING_RIGHT\",\"detail\":\"EBP.WRECKED_VEHICLES.STUKA_WING_RIGHT\"},{\"id\":\"EBP.WRECKED_VEHICLES.TAIL\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.TAIL\",\"documentation\":\"EBP.WRECKED_VEHICLES.TAIL\",\"detail\":\"EBP.WRECKED_VEHICLES.TAIL\"},{\"id\":\"EBP.WRECKED_VEHICLES.TAIL_SECTION_01\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.TAIL_SECTION_01\",\"documentation\":\"EBP.WRECKED_VEHICLES.TAIL_SECTION_01\",\"detail\":\"EBP.WRECKED_VEHICLES.TAIL_SECTION_01\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_50MM_PAK38_MAP_OBJECT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_50MM_PAK38_MAP_OBJECT\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_50MM_PAK38_MAP_OBJECT\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_50MM_PAK38_MAP_OBJECT\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_PUMA_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_PUMA_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_PUMA_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_PUMA_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_222\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_222\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_222\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_222\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_222_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_222_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_222_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_222_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234_PUMA_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234_PUMA_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234_PUMA_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ARMORED_CAR_SDKFZ_234_PUMA_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_17_POUNDER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_17_POUNDER\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_17_POUNDER\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_17_POUNDER\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_45MM\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_45MM\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_45MM\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_45MM\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_75MM_PAK\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_75MM_PAK\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_75MM_PAK\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_75MM_PAK\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_B4_200MM\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_B4_200MM\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_B4_200MM\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_B4_200MM\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_M1_57MM\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_M1_57MM\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_M1_57MM\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_M1_57MM\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_ML20\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_ML20\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_ML20\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_ML20\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_PAK43\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_PAK43\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_PAK43\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_PAK43\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_ZIS3\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_ZIS3\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_ZIS3\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ATGUN_ZIS3\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING01\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING01\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING01\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING01\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING01_SELF_DESTRUCT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING01_SELF_DESTRUCT\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING01_SELF_DESTRUCT\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING01_SELF_DESTRUCT\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING02\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING02\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING02\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING02\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING02_SELF_DESTRUCT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING02_SELF_DESTRUCT\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING02_SELF_DESTRUCT\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING02_SELF_DESTRUCT\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING03\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING03\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING03\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING03\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING03_SELF_DESTRUCT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING03_SELF_DESTRUCT\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING03_SELF_DESTRUCT\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BASE_BUILDING03_SELF_DESTRUCT\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_AEC\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_AEC\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_AEC\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_AEC\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_AEC_ARMOURED_CAR_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_AEC_ARMOURED_CAR_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_AEC_ARMOURED_CAR_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_AEC_ARMOURED_CAR_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_ATGUN_6_POUNDER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_ATGUN_6_POUNDER\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_ATGUN_6_POUNDER\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_ATGUN_6_POUNDER\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_BOFORS\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_BOFORS\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_BOFORS\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_BOFORS\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CENTAUR\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CENTAUR\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CENTAUR\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CENTAUR\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_AVRE\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_AVRE\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_AVRE\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_AVRE\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_AVRE_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_AVRE_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_AVRE_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_AVRE_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_CROCODILE\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_CROCODILE\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_CROCODILE\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_CROCODILE\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_CROCODILE_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_CROCODILE_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_CROCODILE_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CHURCHILL_CROCODILE_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_COMET\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_COMET\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_COMET\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_COMET\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_COMET_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_COMET_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_COMET_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_COMET_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CROMWELL\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CROMWELL\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CROMWELL\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CROMWELL\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CROMWELL_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CROMWELL_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CROMWELL_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_CROMWELL_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_GLIDER_HQ_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_GLIDER_HQ_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_GLIDER_HQ_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_GLIDER_HQ_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_GLIDER_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_GLIDER_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_GLIDER_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_GLIDER_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SEXTON\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SEXTON\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SEXTON\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SEXTON\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SHERMAN_FIREFLY\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SHERMAN_FIREFLY\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SHERMAN_FIREFLY\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SHERMAN_FIREFLY\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SHERMAN_FIREFLY_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SHERMAN_FIREFLY_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SHERMAN_FIREFLY_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_SHERMAN_FIREFLY_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_UNIVERSAL_CARRIER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_UNIVERSAL_CARRIER\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_UNIVERSAL_CARRIER\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_UNIVERSAL_CARRIER\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_VALENTINE_COMMAND\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_VALENTINE_COMMAND\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_VALENTINE_COMMAND\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_VALENTINE_COMMAND\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_VALENTINE_COMMAND_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_VALENTINE_COMMAND_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_VALENTINE_COMMAND_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRITISH_VALENTINE_COMMAND_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRUMMBAR_02\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRUMMBAR_02\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRUMMBAR_02\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRUMMBAR_02\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_BRUMMBAR_STURMPANZER_IV_SDKFZ_166\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_BRUMMBAR_STURMPANZER_IV_SDKFZ_166\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_BRUMMBAR_STURMPANZER_IV_SDKFZ_166\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_BRUMMBAR_STURMPANZER_IV_SDKFZ_166\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_EARLY_WAR_TANK_01\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_EARLY_WAR_TANK_01\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_EARLY_WAR_TANK_01\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_EARLY_WAR_TANK_01\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ELEFANT_SDKFZ_184\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ELEFANT_SDKFZ_184\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ELEFANT_SDKFZ_184\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ELEFANT_SDKFZ_184\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_FN63_4RM\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_FN63_4RM\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_FN63_4RM\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_FN63_4RM\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_250\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_250\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_250\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_250\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_250_MORTAR\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_250_MORTAR\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_250_MORTAR\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_250_MORTAR\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_17_FLAK\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_17_FLAK\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_17_FLAK\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_17_FLAK\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_INFRARED\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_INFRARED\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_INFRARED\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_INFRARED\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_WALKING_STUKA\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_WALKING_STUKA\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_WALKING_STUKA\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SDKFZ_251_WALKING_STUKA\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SWS\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SWS\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SWS\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_HALFTRACK_SWS\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_HETZER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_HETZER\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_HETZER\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_HETZER\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_HETZER_BREWUP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_HETZER_BREWUP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_HETZER_BREWUP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_HETZER_BREWUP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_HOWITZER_105MM_MAP_OBJECT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_HOWITZER_105MM_MAP_OBJECT\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_HOWITZER_105MM_MAP_OBJECT\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_HOWITZER_105MM_MAP_OBJECT\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_IG18_SUPPORT_GUN\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_IG18_SUPPORT_GUN\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_IG18_SUPPORT_GUN\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_IG18_SUPPORT_GUN\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_IS_2_HEAVY_TANK\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_IS_2_HEAVY_TANK\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_IS_2_HEAVY_TANK\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_IS_2_HEAVY_TANK\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_ISU_152_SPG\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_ISU_152_SPG\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_ISU_152_SPG\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_ISU_152_SPG\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDPANZER_IV\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDPANZER_IV\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDPANZER_IV\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDPANZER_IV\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDPANZER_IV_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDPANZER_IV_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDPANZER_IV_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDPANZER_IV_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDTIGER_TD\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDTIGER_TD\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDTIGER_TD\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDTIGER_TD\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDTIGER_TD_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDTIGER_TD_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDTIGER_TD_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_JAGDTIGER_TD_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_KATYUSHA_BM_13N\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_KATYUSHA_BM_13N\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_KATYUSHA_BM_13N\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_KATYUSHA_BM_13N\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_KATYUSHA_BM_13N_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_KATYUSHA_BM_13N_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_KATYUSHA_BM_13N_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_KATYUSHA_BM_13N_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_KING_TIGER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_KING_TIGER\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_KING_TIGER\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_KING_TIGER\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_KING_TIGER_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_KING_TIGER_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_KING_TIGER_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_KING_TIGER_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_KUBELWAGEN\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_KUBELWAGEN\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_KUBELWAGEN\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_KUBELWAGEN\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_1\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_1\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_1\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_1\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_1_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_1_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_1_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_1_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_2\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_2\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_2\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_2\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_8\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_8\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_8\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_KV_8\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_LAND_MATTRESS\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_LAND_MATTRESS\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_LAND_MATTRESS\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_LAND_MATTRESS\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M10\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M10\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M10\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M10\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M10_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M10_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M10_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M10_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M15A1_AA_HALFTRACK\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M15A1_AA_HALFTRACK\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M15A1_AA_HALFTRACK\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M15A1_AA_HALFTRACK\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M15A1_AA_HALFTRACK_MAP_OBJECT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M15A1_AA_HALFTRACK_MAP_OBJECT\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M15A1_AA_HALFTRACK_MAP_OBJECT\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M15A1_AA_HALFTRACK_MAP_OBJECT\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M20_UTILITY_CAR\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M20_UTILITY_CAR\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M20_UTILITY_CAR\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M20_UTILITY_CAR\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M21_MORTAR_HALFTRACK\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M21_MORTAR_HALFTRACK\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M21_MORTAR_HALFTRACK\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M21_MORTAR_HALFTRACK\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M26_PERSHING\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M26_PERSHING\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M26_PERSHING\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M26_PERSHING\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M3_HALFTRACK\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M3_HALFTRACK\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M3_HALFTRACK\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M3_HALFTRACK\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M36\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M36\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M36\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M36\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M36_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M36_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M36_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M36_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M3A1_SCOUT_CAR\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M3A1_SCOUT_CAR\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M3A1_SCOUT_CAR\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M3A1_SCOUT_CAR\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M3A1_SCOUT_CAR_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M3A1_SCOUT_CAR_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M3A1_SCOUT_CAR_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M3A1_SCOUT_CAR_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BULLDOZER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BULLDOZER\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BULLDOZER\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BULLDOZER\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BULLDOZER_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BULLDOZER_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BULLDOZER_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_BULLDOZER_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_EASY_EIGHT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_EASY_EIGHT\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_EASY_EIGHT\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_EASY_EIGHT\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_EASY_EIGHT_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_EASY_EIGHT_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_EASY_EIGHT_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_EASY_EIGHT_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_MAP_OBJECT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_MAP_OBJECT\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_MAP_OBJECT\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M4A3_SHERMAN_MAP_OBJECT\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M5_HALFTRACK\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M5_HALFTRACK\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M5_HALFTRACK\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M5_HALFTRACK\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M5_HALFTRACK_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M5_HALFTRACK_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M5_HALFTRACK_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M5_HALFTRACK_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M5A1_STUART\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M5A1_STUART\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M5A1_STUART\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M5A1_STUART\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M8_ARMORED_CAR\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M8_ARMORED_CAR\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M8_ARMORED_CAR\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M8_ARMORED_CAR\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_M8_HMC\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_M8_HMC\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_M8_HMC\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_M8_HMC\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_OPEL_BLITZ_TRUCK\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_OPEL_BLITZ_TRUCK\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_OPEL_BLITZ_TRUCK\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_OPEL_BLITZ_TRUCK\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_OSTWIND_FLAK_PANZER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_OSTWIND_FLAK_PANZER\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_OSTWIND_FLAK_PANZER\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_OSTWIND_FLAK_PANZER\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PACK_HOWITZER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PACK_HOWITZER\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PACK_HOWITZER\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PACK_HOWITZER\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_MAP_OBJECT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_MAP_OBJECT\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_MAP_OBJECT\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_MAP_OBJECT\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_SDKFZ_171\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_SDKFZ_171\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_SDKFZ_171\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_SDKFZ_171\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_SDKFZ_171_BREWUP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_SDKFZ_171_BREWUP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_SDKFZ_171_BREWUP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANTHER_SDKFZ_171_BREWUP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_II_LUCHS\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_II_LUCHS\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_II_LUCHS\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_II_LUCHS\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_II_LUCHS_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_II_LUCHS_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_II_LUCHS_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_II_LUCHS_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_III\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_III\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_III\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_III\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_FROZEN\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_FROZEN\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_FROZEN\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_FROZEN\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_COMMAND\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_COMMAND\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_COMMAND\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_COMMAND\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_GAMEPLAY\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_GAMEPLAY\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_GAMEPLAY\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_GAMEPLAY\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_WEST_GERMAN\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_WEST_GERMAN\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_WEST_GERMAN\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_WEST_GERMAN\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_WEST_GERMAN_BREW_UP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_WEST_GERMAN_BREW_UP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_WEST_GERMAN_BREW_UP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZER_IV_SDKFZ_161_WEST_GERMAN_BREW_UP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZERIV_MAP_OBJECT\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZERIV_MAP_OBJECT\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZERIV_MAP_OBJECT\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZERIV_MAP_OBJECT\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZERWERFER_SDKFZ_4_1\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZERWERFER_SDKFZ_4_1\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZERWERFER_SDKFZ_4_1\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PANZERWERFER_SDKFZ_4_1\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_PRIEST\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_PRIEST\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_PRIEST\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_PRIEST\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_RAKETENWERFER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_RAKETENWERFER\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_RAKETENWERFER\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_RAKETENWERFER\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_SOVIET_76MM_SHERMAN\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_SOVIET_76MM_SHERMAN\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_SOVIET_76MM_SHERMAN\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_SOVIET_76MM_SHERMAN\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_E_SDKFZ_141_1\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_E_SDKFZ_141_1\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_E_SDKFZ_141_1\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_E_SDKFZ_141_1\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_FROZEN\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_FROZEN\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_FROZEN\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_FROZEN\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_G_SDKFZ_141_1\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_G_SDKFZ_141_1\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_G_SDKFZ_141_1\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_G_SDKFZ_141_1\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_G_SDKFZ_141_1_GAMEPLAY\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_G_SDKFZ_141_1_GAMEPLAY\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_G_SDKFZ_141_1_GAMEPLAY\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_STUG_III_G_SDKFZ_141_1_GAMEPLAY\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_STURMTIGER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_STURMTIGER\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_STURMTIGER\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_STURMTIGER\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_SU_76M\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_SU_76M\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_SU_76M\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_SU_76M\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_SU_85\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_SU_85\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_SU_85\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_SU_85\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76_02\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76_02\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76_02\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76_02\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_76_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER_TOW\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER_TOW\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER_TOW\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_T_34_85_RED_BANNER_TOW\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_T34_CALLIOPE\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_T34_CALLIOPE\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_T34_CALLIOPE\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_T34_CALLIOPE\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_T70\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_T70\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_T70\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_T70\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_T70_MP\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_T70_MP\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_T70_MP\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_T70_MP\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_TIGER_SDKFZ_181\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_TIGER_SDKFZ_181\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_TIGER_SDKFZ_181\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_TIGER_SDKFZ_181\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_TIGER_SDKFZ_181_SINGLEPLAYER_MISSION\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_TIGER_SDKFZ_181_SINGLEPLAYER_MISSION\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_TIGER_SDKFZ_181_SINGLEPLAYER_MISSION\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_TIGER_SDKFZ_181_SINGLEPLAYER_MISSION\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_WC51\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_WC51\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_WC51\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_WC51\"},{\"id\":\"EBP.WRECKED_VEHICLES.WRECKED_WC54_AMBULANCE\",\"kind\":17,\"label\":\"EBP.WRECKED_VEHICLES.WRECKED_WC54_AMBULANCE\",\"documentation\":\"EBP.WRECKED_VEHICLES.WRECKED_WC54_AMBULANCE\",\"detail\":\"EBP.WRECKED_VEHICLES.WRECKED_WC54_AMBULANCE\"},{\"id\":\"EBP.AEF.AEF_AIRDROPPED_MINE_CONTACT_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_AIRDROPPED_MINE_CONTACT_MP\",\"documentation\":\"EBP.AEF.AEF_AIRDROPPED_MINE_CONTACT_MP\",\"detail\":\"EBP.AEF.AEF_AIRDROPPED_MINE_CONTACT_MP\"},{\"id\":\"EBP.AEF.AEF_AIRDROPPED_MINE_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_AIRDROPPED_MINE_MP\",\"documentation\":\"EBP.AEF.AEF_AIRDROPPED_MINE_MP\",\"detail\":\"EBP.AEF.AEF_AIRDROPPED_MINE_MP\"},{\"id\":\"EBP.AEF.AEF_ALLIEDSUPPLY_STACK_L_01_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_ALLIEDSUPPLY_STACK_L_01_MP\",\"documentation\":\"EBP.AEF.AEF_ALLIEDSUPPLY_STACK_L_01_MP\",\"detail\":\"EBP.AEF.AEF_ALLIEDSUPPLY_STACK_L_01_MP\"},{\"id\":\"EBP.AEF.AEF_ATTACK_PLANE\",\"kind\":17,\"label\":\"EBP.AEF.AEF_ATTACK_PLANE\",\"documentation\":\"EBP.AEF.AEF_ATTACK_PLANE\",\"detail\":\"EBP.AEF.AEF_ATTACK_PLANE\"},{\"id\":\"EBP.AEF.AEF_BARBED_WIRE_FENCE_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_BARBED_WIRE_FENCE_MP\",\"documentation\":\"EBP.AEF.AEF_BARBED_WIRE_FENCE_MP\",\"detail\":\"EBP.AEF.AEF_BARBED_WIRE_FENCE_MP\"},{\"id\":\"EBP.AEF.AEF_BARRACKS\",\"kind\":17,\"label\":\"EBP.AEF.AEF_BARRACKS\",\"documentation\":\"EBP.AEF.AEF_BARRACKS\",\"detail\":\"EBP.AEF.AEF_BARRACKS\"},{\"id\":\"EBP.AEF.AEF_BASE_STAMPER\",\"kind\":17,\"label\":\"EBP.AEF.AEF_BASE_STAMPER\",\"documentation\":\"EBP.AEF.AEF_BASE_STAMPER\",\"detail\":\"EBP.AEF.AEF_BASE_STAMPER\"},{\"id\":\"EBP.AEF.AEF_GARRISON\",\"kind\":17,\"label\":\"EBP.AEF.AEF_GARRISON\",\"documentation\":\"EBP.AEF.AEF_GARRISON\",\"detail\":\"EBP.AEF.AEF_GARRISON\"},{\"id\":\"EBP.AEF.AEF_MG_NEST\",\"kind\":17,\"label\":\"EBP.AEF.AEF_MG_NEST\",\"documentation\":\"EBP.AEF.AEF_MG_NEST\",\"detail\":\"EBP.AEF.AEF_MG_NEST\"},{\"id\":\"EBP.AEF.AEF_MG_NEST_AEF_BASE\",\"kind\":17,\"label\":\"EBP.AEF.AEF_MG_NEST_AEF_BASE\",\"documentation\":\"EBP.AEF.AEF_MG_NEST_AEF_BASE\",\"detail\":\"EBP.AEF.AEF_MG_NEST_AEF_BASE\"},{\"id\":\"EBP.AEF.AEF_MG_NEST_PERIMETER_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_MG_NEST_PERIMETER_MP\",\"documentation\":\"EBP.AEF.AEF_MG_NEST_PERIMETER_MP\",\"detail\":\"EBP.AEF.AEF_MG_NEST_PERIMETER_MP\"},{\"id\":\"EBP.AEF.AEF_MINE_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_MINE_MP\",\"documentation\":\"EBP.AEF.AEF_MINE_MP\",\"detail\":\"EBP.AEF.AEF_MINE_MP\"},{\"id\":\"EBP.AEF.AEF_MINE_RIFLEMEN_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_MINE_RIFLEMEN_MP\",\"documentation\":\"EBP.AEF.AEF_MINE_RIFLEMEN_MP\",\"detail\":\"EBP.AEF.AEF_MINE_RIFLEMEN_MP\"},{\"id\":\"EBP.AEF.AEF_SANDBAG_DIRTWALL_01\",\"kind\":17,\"label\":\"EBP.AEF.AEF_SANDBAG_DIRTWALL_01\",\"documentation\":\"EBP.AEF.AEF_SANDBAG_DIRTWALL_01\",\"detail\":\"EBP.AEF.AEF_SANDBAG_DIRTWALL_01\"},{\"id\":\"EBP.AEF.AEF_SANDBAG_FENCE\",\"kind\":17,\"label\":\"EBP.AEF.AEF_SANDBAG_FENCE\",\"documentation\":\"EBP.AEF.AEF_SANDBAG_FENCE\",\"detail\":\"EBP.AEF.AEF_SANDBAG_FENCE\"},{\"id\":\"EBP.AEF.AEF_SANDBAGS\",\"kind\":17,\"label\":\"EBP.AEF.AEF_SANDBAGS\",\"documentation\":\"EBP.AEF.AEF_SANDBAGS\",\"detail\":\"EBP.AEF.AEF_SANDBAGS\"},{\"id\":\"EBP.AEF.AEF_SANDBAGWALL\",\"kind\":17,\"label\":\"EBP.AEF.AEF_SANDBAGWALL\",\"documentation\":\"EBP.AEF.AEF_SANDBAGWALL\",\"detail\":\"EBP.AEF.AEF_SANDBAGWALL\"},{\"id\":\"EBP.AEF.AEF_SANDBAGWALL_COVER_SPECIALIZATION\",\"kind\":17,\"label\":\"EBP.AEF.AEF_SANDBAGWALL_COVER_SPECIALIZATION\",\"documentation\":\"EBP.AEF.AEF_SANDBAGWALL_COVER_SPECIALIZATION\",\"detail\":\"EBP.AEF.AEF_SANDBAGWALL_COVER_SPECIALIZATION\"},{\"id\":\"EBP.AEF.AEF_STORAGEBUNKER\",\"kind\":17,\"label\":\"EBP.AEF.AEF_STORAGEBUNKER\",\"documentation\":\"EBP.AEF.AEF_STORAGEBUNKER\",\"detail\":\"EBP.AEF.AEF_STORAGEBUNKER\"},{\"id\":\"EBP.AEF.AEF_SUPPLYTENT\",\"kind\":17,\"label\":\"EBP.AEF.AEF_SUPPLYTENT\",\"documentation\":\"EBP.AEF.AEF_SUPPLYTENT\",\"detail\":\"EBP.AEF.AEF_SUPPLYTENT\"},{\"id\":\"EBP.AEF.AEF_TANK_TRAP_IMPASSABLE_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_TANK_TRAP_IMPASSABLE_MP\",\"documentation\":\"EBP.AEF.AEF_TANK_TRAP_IMPASSABLE_MP\",\"detail\":\"EBP.AEF.AEF_TANK_TRAP_IMPASSABLE_MP\"},{\"id\":\"EBP.AEF.AEF_TANK_TRAP_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_TANK_TRAP_MP\",\"documentation\":\"EBP.AEF.AEF_TANK_TRAP_MP\",\"detail\":\"EBP.AEF.AEF_TANK_TRAP_MP\"},{\"id\":\"EBP.AEF.AEF_WEAPON_RACK_BAZOOKA_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_WEAPON_RACK_BAZOOKA_MP\",\"documentation\":\"EBP.AEF.AEF_WEAPON_RACK_BAZOOKA_MP\",\"detail\":\"EBP.AEF.AEF_WEAPON_RACK_BAZOOKA_MP\"},{\"id\":\"EBP.AEF.AEF_WEAPON_RACK_BROWNING_AUTOMATIC_RIFLE_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_WEAPON_RACK_BROWNING_AUTOMATIC_RIFLE_MP\",\"documentation\":\"EBP.AEF.AEF_WEAPON_RACK_BROWNING_AUTOMATIC_RIFLE_MP\",\"detail\":\"EBP.AEF.AEF_WEAPON_RACK_BROWNING_AUTOMATIC_RIFLE_MP\"},{\"id\":\"EBP.AEF.AEF_WEAPON_RACK_DEFAULT_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_WEAPON_RACK_DEFAULT_MP\",\"documentation\":\"EBP.AEF.AEF_WEAPON_RACK_DEFAULT_MP\",\"detail\":\"EBP.AEF.AEF_WEAPON_RACK_DEFAULT_MP\"},{\"id\":\"EBP.AEF.AEF_WEAPON_RACK_M1919_LMG\",\"kind\":17,\"label\":\"EBP.AEF.AEF_WEAPON_RACK_M1919_LMG\",\"documentation\":\"EBP.AEF.AEF_WEAPON_RACK_M1919_LMG\",\"detail\":\"EBP.AEF.AEF_WEAPON_RACK_M1919_LMG\"},{\"id\":\"EBP.AEF.AEF_WEAPON_RACK_M1C_GARAND\",\"kind\":17,\"label\":\"EBP.AEF.AEF_WEAPON_RACK_M1C_GARAND\",\"documentation\":\"EBP.AEF.AEF_WEAPON_RACK_M1C_GARAND\",\"detail\":\"EBP.AEF.AEF_WEAPON_RACK_M1C_GARAND\"},{\"id\":\"EBP.AEF.AEF_WEAPON_RACK_M9_BAZOOKA_MP\",\"kind\":17,\"label\":\"EBP.AEF.AEF_WEAPON_RACK_M9_BAZOOKA_MP\",\"documentation\":\"EBP.AEF.AEF_WEAPON_RACK_M9_BAZOOKA_MP\",\"detail\":\"EBP.AEF.AEF_WEAPON_RACK_M9_BAZOOKA_MP\"},{\"id\":\"EBP.AEF.AIRBORNE_BEACON_MP\",\"kind\":17,\"label\":\"EBP.AEF.AIRBORNE_BEACON_MP\",\"documentation\":\"EBP.AEF.AIRBORNE_BEACON_MP\",\"detail\":\"EBP.AEF.AIRBORNE_BEACON_MP\"},{\"id\":\"EBP.AEF.ARMOR_COMMAND_MP\",\"kind\":17,\"label\":\"EBP.AEF.ARMOR_COMMAND_MP\",\"documentation\":\"EBP.AEF.ARMOR_COMMAND_MP\",\"detail\":\"EBP.AEF.ARMOR_COMMAND_MP\"},{\"id\":\"EBP.AEF.ARMOR_COMMAND_SP\",\"kind\":17,\"label\":\"EBP.AEF.ARMOR_COMMAND_SP\",\"documentation\":\"EBP.AEF.ARMOR_COMMAND_SP\",\"detail\":\"EBP.AEF.ARMOR_COMMAND_SP\"},{\"id\":\"EBP.AEF.ARMOR_COMMAND_WRECK_MP\",\"kind\":17,\"label\":\"EBP.AEF.ARMOR_COMMAND_WRECK_MP\",\"documentation\":\"EBP.AEF.ARMOR_COMMAND_WRECK_MP\",\"detail\":\"EBP.AEF.ARMOR_COMMAND_WRECK_MP\"},{\"id\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_MP\",\"kind\":17,\"label\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_MP\",\"documentation\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_MP\",\"detail\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_MP\"},{\"id\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_SP\",\"kind\":17,\"label\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_SP\",\"documentation\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_SP\",\"detail\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_SP\"},{\"id\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_WRECK_MP\",\"kind\":17,\"label\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_WRECK_MP\",\"documentation\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_WRECK_MP\",\"detail\":\"EBP.AEF.ARMORED_RIFLE_COMMAND_WRECK_MP\"},{\"id\":\"EBP.AEF.ASSAULT_ENGINEER_MP\",\"kind\":17,\"label\":\"EBP.AEF.ASSAULT_ENGINEER_MP\",\"documentation\":\"EBP.AEF.ASSAULT_ENGINEER_MP\",\"detail\":\"EBP.AEF.ASSAULT_ENGINEER_MP\"},{\"id\":\"EBP.AEF.ASSAULT_ENGINEER_VEHICLE_CREW_MP\",\"kind\":17,\"label\":\"EBP.AEF.ASSAULT_ENGINEER_VEHICLE_CREW_MP\",\"documentation\":\"EBP.AEF.ASSAULT_ENGINEER_VEHICLE_CREW_MP\",\"detail\":\"EBP.AEF.ASSAULT_ENGINEER_VEHICLE_CREW_MP\"},{\"id\":\"EBP.AEF.AT_TEAM_WEAPON_CREW_MP\",\"kind\":17,\"label\":\"EBP.AEF.AT_TEAM_WEAPON_CREW_MP\",\"documentation\":\"EBP.AEF.AT_TEAM_WEAPON_CREW_MP\",\"detail\":\"EBP.AEF.AT_TEAM_WEAPON_CREW_MP\"},{\"id\":\"EBP.AEF.CAPTAIN_MP\",\"kind\":17,\"label\":\"EBP.AEF.CAPTAIN_MP\",\"documentation\":\"EBP.AEF.CAPTAIN_MP\",\"detail\":\"EBP.AEF.CAPTAIN_MP\"},{\"id\":\"EBP.AEF.CAPTAIN_UNLOCK_MP\",\"kind\":17,\"label\":\"EBP.AEF.CAPTAIN_UNLOCK_MP\",\"documentation\":\"EBP.AEF.CAPTAIN_UNLOCK_MP\",\"detail\":\"EBP.AEF.CAPTAIN_UNLOCK_MP\"},{\"id\":\"EBP.AEF.COMPANY_WEAPONS_POOL_MP\",\"kind\":17,\"label\":\"EBP.AEF.COMPANY_WEAPONS_POOL_MP\",\"documentation\":\"EBP.AEF.COMPANY_WEAPONS_POOL_MP\",\"detail\":\"EBP.AEF.COMPANY_WEAPONS_POOL_MP\"},{\"id\":\"EBP.AEF.COMPANY_WEAPONS_POOL_SP\",\"kind\":17,\"label\":\"EBP.AEF.COMPANY_WEAPONS_POOL_SP\",\"documentation\":\"EBP.AEF.COMPANY_WEAPONS_POOL_SP\",\"detail\":\"EBP.AEF.COMPANY_WEAPONS_POOL_SP\"},{\"id\":\"EBP.AEF.COMPANY_WEAPONS_POOL_WRECK_MP\",\"kind\":17,\"label\":\"EBP.AEF.COMPANY_WEAPONS_POOL_WRECK_MP\",\"documentation\":\"EBP.AEF.COMPANY_WEAPONS_POOL_WRECK_MP\",\"detail\":\"EBP.AEF.COMPANY_WEAPONS_POOL_WRECK_MP\"},{\"id\":\"EBP.AEF.DODGE_WC51_50CAL_MP\",\"kind\":17,\"label\":\"EBP.AEF.DODGE_WC51_50CAL_MP\",\"documentation\":\"EBP.AEF.DODGE_WC51_50CAL_MP\",\"detail\":\"EBP.AEF.DODGE_WC51_50CAL_MP\"},{\"id\":\"EBP.AEF.DODGE_WC51_50CAL_PARADROP\",\"kind\":17,\"label\":\"EBP.AEF.DODGE_WC51_50CAL_PARADROP\",\"documentation\":\"EBP.AEF.DODGE_WC51_50CAL_PARADROP\",\"detail\":\"EBP.AEF.DODGE_WC51_50CAL_PARADROP\"},{\"id\":\"EBP.AEF.DODGE_WC51_AMBULANCE_MP\",\"kind\":17,\"label\":\"EBP.AEF.DODGE_WC51_AMBULANCE_MP\",\"documentation\":\"EBP.AEF.DODGE_WC51_AMBULANCE_MP\",\"detail\":\"EBP.AEF.DODGE_WC51_AMBULANCE_MP\"},{\"id\":\"EBP.AEF.DODGE_WC51_MP\",\"kind\":17,\"label\":\"EBP.AEF.DODGE_WC51_MP\",\"documentation\":\"EBP.AEF.DODGE_WC51_MP\",\"detail\":\"EBP.AEF.DODGE_WC51_MP\"},{\"id\":\"EBP.AEF.DODGE_WC51_MP_PATHFINDERS\",\"kind\":17,\"label\":\"EBP.AEF.DODGE_WC51_MP_PATHFINDERS\",\"documentation\":\"EBP.AEF.DODGE_WC51_MP_PATHFINDERS\",\"detail\":\"EBP.AEF.DODGE_WC51_MP_PATHFINDERS\"},{\"id\":\"EBP.AEF.FIGHTING_POSITION_MP\",\"kind\":17,\"label\":\"EBP.AEF.FIGHTING_POSITION_MP\",\"documentation\":\"EBP.AEF.FIGHTING_POSITION_MP\",\"detail\":\"EBP.AEF.FIGHTING_POSITION_MP\"},{\"id\":\"EBP.AEF.FIGHTING_POSITION_RIFLEMEN_MP\",\"kind\":17,\"label\":\"EBP.AEF.FIGHTING_POSITION_RIFLEMEN_MP\",\"documentation\":\"EBP.AEF.FIGHTING_POSITION_RIFLEMEN_MP\",\"detail\":\"EBP.AEF.FIGHTING_POSITION_RIFLEMEN_MP\"},{\"id\":\"EBP.AEF.HMG_TEAM_WEAPON_CREW_MP\",\"kind\":17,\"label\":\"EBP.AEF.HMG_TEAM_WEAPON_CREW_MP\",\"documentation\":\"EBP.AEF.HMG_TEAM_WEAPON_CREW_MP\",\"detail\":\"EBP.AEF.HMG_TEAM_WEAPON_CREW_MP\"},{\"id\":\"EBP.AEF.HOWITZER_TEAM_WEAPON_CREW_MP\",\"kind\":17,\"label\":\"EBP.AEF.HOWITZER_TEAM_WEAPON_CREW_MP\",\"documentation\":\"EBP.AEF.HOWITZER_TEAM_WEAPON_CREW_MP\",\"detail\":\"EBP.AEF.HOWITZER_TEAM_WEAPON_CREW_MP\"},{\"id\":\"EBP.AEF.INVISI_HEAL_STATION_MP\",\"kind\":17,\"label\":\"EBP.AEF.INVISI_HEAL_STATION_MP\",\"documentation\":\"EBP.AEF.INVISI_HEAL_STATION_MP\",\"detail\":\"EBP.AEF.INVISI_HEAL_STATION_MP\"},{\"id\":\"EBP.AEF.INVISI_REPAIR_STATION_MP\",\"kind\":17,\"label\":\"EBP.AEF.INVISI_REPAIR_STATION_MP\",\"documentation\":\"EBP.AEF.INVISI_REPAIR_STATION_MP\",\"detail\":\"EBP.AEF.INVISI_REPAIR_STATION_MP\"},{\"id\":\"EBP.AEF.JACKSON\",\"kind\":17,\"label\":\"EBP.AEF.JACKSON\",\"documentation\":\"EBP.AEF.JACKSON\",\"detail\":\"EBP.AEF.JACKSON\"},{\"id\":\"EBP.AEF.LIEUTENANT_MP\",\"kind\":17,\"label\":\"EBP.AEF.LIEUTENANT_MP\",\"documentation\":\"EBP.AEF.LIEUTENANT_MP\",\"detail\":\"EBP.AEF.LIEUTENANT_MP\"},{\"id\":\"EBP.AEF.LIEUTENANT_UNLOCK_MP\",\"kind\":17,\"label\":\"EBP.AEF.LIEUTENANT_UNLOCK_MP\",\"documentation\":\"EBP.AEF.LIEUTENANT_UNLOCK_MP\",\"detail\":\"EBP.AEF.LIEUTENANT_UNLOCK_MP\"},{\"id\":\"EBP.AEF.M1_57MM_ANTITANK_GUN_MP\",\"kind\":17,\"label\":\"EBP.AEF.M1_57MM_ANTITANK_GUN_MP\",\"documentation\":\"EBP.AEF.M1_57MM_ANTITANK_GUN_MP\",\"detail\":\"EBP.AEF.M1_57MM_ANTITANK_GUN_MP\"},{\"id\":\"EBP.AEF.M1_75MM_PACK_HOWITZER_MP\",\"kind\":17,\"label\":\"EBP.AEF.M1_75MM_PACK_HOWITZER_MP\",\"documentation\":\"EBP.AEF.M1_75MM_PACK_HOWITZER_MP\",\"detail\":\"EBP.AEF.M1_75MM_PACK_HOWITZER_MP\"},{\"id\":\"EBP.AEF.M1_81MM_MORTAR_MP\",\"kind\":17,\"label\":\"EBP.AEF.M1_81MM_MORTAR_MP\",\"documentation\":\"EBP.AEF.M1_81MM_MORTAR_MP\",\"detail\":\"EBP.AEF.M1_81MM_MORTAR_MP\"},{\"id\":\"EBP.AEF.M10_TANK_DESTROYER_MP\",\"kind\":17,\"label\":\"EBP.AEF.M10_TANK_DESTROYER_MP\",\"documentation\":\"EBP.AEF.M10_TANK_DESTROYER_MP\",\"detail\":\"EBP.AEF.M10_TANK_DESTROYER_MP\"},{\"id\":\"EBP.AEF.M15A1_AA_HALFTRACK_MP\",\"kind\":17,\"label\":\"EBP.AEF.M15A1_AA_HALFTRACK_MP\",\"documentation\":\"EBP.AEF.M15A1_AA_HALFTRACK_MP\",\"detail\":\"EBP.AEF.M15A1_AA_HALFTRACK_MP\"},{\"id\":\"EBP.AEF.M1919A4_30CAL_MACHINE_GUN_MP\",\"kind\":17,\"label\":\"EBP.AEF.M1919A4_30CAL_MACHINE_GUN_MP\",\"documentation\":\"EBP.AEF.M1919A4_30CAL_MACHINE_GUN_MP\",\"detail\":\"EBP.AEF.M1919A4_30CAL_MACHINE_GUN_MP\"},{\"id\":\"EBP.AEF.M1919A4_TEAM_WEAPON_CREW_MP\",\"kind\":17,\"label\":\"EBP.AEF.M1919A4_TEAM_WEAPON_CREW_MP\",\"documentation\":\"EBP.AEF.M1919A4_TEAM_WEAPON_CREW_MP\",\"detail\":\"EBP.AEF.M1919A4_TEAM_WEAPON_CREW_MP\"},{\"id\":\"EBP.AEF.M2_60MM_MORTAR_MP\",\"kind\":17,\"label\":\"EBP.AEF.M2_60MM_MORTAR_MP\",\"documentation\":\"EBP.AEF.M2_60MM_MORTAR_MP\",\"detail\":\"EBP.AEF.M2_60MM_MORTAR_MP\"},{\"id\":\"EBP.AEF.M20_M6_AT_MINE_MP\",\"kind\":17,\"label\":\"EBP.AEF.M20_M6_AT_MINE_MP\",\"documentation\":\"EBP.AEF.M20_M6_AT_MINE_MP\",\"detail\":\"EBP.AEF.M20_M6_AT_MINE_MP\"},{\"id\":\"EBP.AEF.M20_UTILITY_CAR_MP\",\"kind\":17,\"label\":\"EBP.AEF.M20_UTILITY_CAR_MP\",\"documentation\":\"EBP.AEF.M20_UTILITY_CAR_MP\",\"detail\":\"EBP.AEF.M20_UTILITY_CAR_MP\"},{\"id\":\"EBP.AEF.M21_MORTAR_HALFTRACK_MP\",\"kind\":17,\"label\":\"EBP.AEF.M21_MORTAR_HALFTRACK_MP\",\"documentation\":\"EBP.AEF.M21_MORTAR_HALFTRACK_MP\",\"detail\":\"EBP.AEF.M21_MORTAR_HALFTRACK_MP\"},{\"id\":\"EBP.AEF.M26_PERSHING_MP\",\"kind\":17,\"label\":\"EBP.AEF.M26_PERSHING_MP\",\"documentation\":\"EBP.AEF.M26_PERSHING_MP\",\"detail\":\"EBP.AEF.M26_PERSHING_MP\"},{\"id\":\"EBP.AEF.M2HB_50CAL_MACHINE_GUN_MP\",\"kind\":17,\"label\":\"EBP.AEF.M2HB_50CAL_MACHINE_GUN_MP\",\"documentation\":\"EBP.AEF.M2HB_50CAL_MACHINE_GUN_MP\",\"detail\":\"EBP.AEF.M2HB_50CAL_MACHINE_GUN_MP\"},{\"id\":\"EBP.AEF.M3_HALFTRACK_ASSAULT_MP\",\"kind\":17,\"label\":\"EBP.AEF.M3_HALFTRACK_ASSAULT_MP\",\"documentation\":\"EBP.AEF.M3_HALFTRACK_ASSAULT_MP\",\"detail\":\"EBP.AEF.M3_HALFTRACK_ASSAULT_MP\"},{\"id\":\"EBP.AEF.M3_HALFTRACK_MP\",\"kind\":17,\"label\":\"EBP.AEF.M3_HALFTRACK_MP\",\"documentation\":\"EBP.AEF.M3_HALFTRACK_MP\",\"detail\":\"EBP.AEF.M3_HALFTRACK_MP\"},{\"id\":\"EBP.AEF.M36_TANK_DESTROYER_MP\",\"kind\":17,\"label\":\"EBP.AEF.M36_TANK_DESTROYER_MP\",\"documentation\":\"EBP.AEF.M36_TANK_DESTROYER_MP\",\"detail\":\"EBP.AEF.M36_TANK_DESTROYER_MP\"},{\"id\":\"EBP.AEF.M4A3_76MM_SHERMAN_MP\",\"kind\":17,\"label\":\"EBP.AEF.M4A3_76MM_SHERMAN_MP\",\"documentation\":\"EBP.AEF.M4A3_76MM_SHERMAN_MP\",\"detail\":\"EBP.AEF.M4A3_76MM_SHERMAN_MP\"},{\"id\":\"EBP.AEF.M4A3_SHERMAN_BULLDOZER_MP\",\"kind\":17,\"label\":\"EBP.AEF.M4A3_SHERMAN_BULLDOZER_MP\",\"documentation\":\"EBP.AEF.M4A3_SHERMAN_BULLDOZER_MP\",\"detail\":\"EBP.AEF.M4A3_SHERMAN_BULLDOZER_MP\"},{\"id\":\"EBP.AEF.M4A3_SHERMAN_DEMO_BURNOUT\",\"kind\":17,\"label\":\"EBP.AEF.M4A3_SHERMAN_DEMO_BURNOUT\",\"documentation\":\"EBP.AEF.M4A3_SHERMAN_DEMO_BURNOUT\",\"detail\":\"EBP.AEF.M4A3_SHERMAN_DEMO_BURNOUT\"},{\"id\":\"EBP.AEF.M4A3_SHERMAN_MP\",\"kind\":17,\"label\":\"EBP.AEF.M4A3_SHERMAN_MP\",\"documentation\":\"EBP.AEF.M4A3_SHERMAN_MP\",\"detail\":\"EBP.AEF.M4A3_SHERMAN_MP\"},{\"id\":\"EBP.AEF.M4A3E8_SHERMAN_EASY_8_MP\",\"kind\":17,\"label\":\"EBP.AEF.M4A3E8_SHERMAN_EASY_8_MP\",\"documentation\":\"EBP.AEF.M4A3E8_SHERMAN_EASY_8_MP\",\"detail\":\"EBP.AEF.M4A3E8_SHERMAN_EASY_8_MP\"},{\"id\":\"EBP.AEF.M5_HALFTRACK_USF_MP\",\"kind\":17,\"label\":\"EBP.AEF.M5_HALFTRACK_USF_MP\",\"documentation\":\"EBP.AEF.M5_HALFTRACK_USF_MP\",\"detail\":\"EBP.AEF.M5_HALFTRACK_USF_MP\"},{\"id\":\"EBP.AEF.M5A1_STUART_MP\",\"kind\":17,\"label\":\"EBP.AEF.M5A1_STUART_MP\",\"documentation\":\"EBP.AEF.M5A1_STUART_MP\",\"detail\":\"EBP.AEF.M5A1_STUART_MP\"},{\"id\":\"EBP.AEF.M7B1_PRIEST_MP\",\"kind\":17,\"label\":\"EBP.AEF.M7B1_PRIEST_MP\",\"documentation\":\"EBP.AEF.M7B1_PRIEST_MP\",\"detail\":\"EBP.AEF.M7B1_PRIEST_MP\"},{\"id\":\"EBP.AEF.M8_GREYHOUND_MP\",\"kind\":17,\"label\":\"EBP.AEF.M8_GREYHOUND_MP\",\"documentation\":\"EBP.AEF.M8_GREYHOUND_MP\",\"detail\":\"EBP.AEF.M8_GREYHOUND_MP\"},{\"id\":\"EBP.AEF.M8A1_HMC_MP\",\"kind\":17,\"label\":\"EBP.AEF.M8A1_HMC_MP\",\"documentation\":\"EBP.AEF.M8A1_HMC_MP\",\"detail\":\"EBP.AEF.M8A1_HMC_MP\"},{\"id\":\"EBP.AEF.MAJOR_MP\",\"kind\":17,\"label\":\"EBP.AEF.MAJOR_MP\",\"documentation\":\"EBP.AEF.MAJOR_MP\",\"detail\":\"EBP.AEF.MAJOR_MP\"},{\"id\":\"EBP.AEF.MAJOR_RETREAT_POINT_MP\",\"kind\":17,\"label\":\"EBP.AEF.MAJOR_RETREAT_POINT_MP\",\"documentation\":\"EBP.AEF.MAJOR_RETREAT_POINT_MP\",\"detail\":\"EBP.AEF.MAJOR_RETREAT_POINT_MP\"},{\"id\":\"EBP.AEF.MAJOR_UNLOCK_MP\",\"kind\":17,\"label\":\"EBP.AEF.MAJOR_UNLOCK_MP\",\"documentation\":\"EBP.AEF.MAJOR_UNLOCK_MP\",\"detail\":\"EBP.AEF.MAJOR_UNLOCK_MP\"},{\"id\":\"EBP.AEF.MORTAR_TEAM_WEAPON_CREW_MP\",\"kind\":17,\"label\":\"EBP.AEF.MORTAR_TEAM_WEAPON_CREW_MP\",\"documentation\":\"EBP.AEF.MORTAR_TEAM_WEAPON_CREW_MP\",\"detail\":\"EBP.AEF.MORTAR_TEAM_WEAPON_CREW_MP\"},{\"id\":\"EBP.AEF.OBSERVATION_POST_FUEL_AEF_MP\",\"kind\":17,\"label\":\"EBP.AEF.OBSERVATION_POST_FUEL_AEF_MP\",\"documentation\":\"EBP.AEF.OBSERVATION_POST_FUEL_AEF_MP\",\"detail\":\"EBP.AEF.OBSERVATION_POST_FUEL_AEF_MP\"},{\"id\":\"EBP.AEF.OBSERVATION_POST_MUNITION_AEF_MP\",\"kind\":17,\"label\":\"EBP.AEF.OBSERVATION_POST_MUNITION_AEF_MP\",\"documentation\":\"EBP.AEF.OBSERVATION_POST_MUNITION_AEF_MP\",\"detail\":\"EBP.AEF.OBSERVATION_POST_MUNITION_AEF_MP\"},{\"id\":\"EBP.AEF.P47_RECON\",\"kind\":17,\"label\":\"EBP.AEF.P47_RECON\",\"documentation\":\"EBP.AEF.P47_RECON\",\"detail\":\"EBP.AEF.P47_RECON\"},{\"id\":\"EBP.AEF.P47_RECON_PLANE_SWEEP\",\"kind\":17,\"label\":\"EBP.AEF.P47_RECON_PLANE_SWEEP\",\"documentation\":\"EBP.AEF.P47_RECON_PLANE_SWEEP\",\"detail\":\"EBP.AEF.P47_RECON_PLANE_SWEEP\"},{\"id\":\"EBP.AEF.P47_RECON_TRACKING\",\"kind\":17,\"label\":\"EBP.AEF.P47_RECON_TRACKING\",\"documentation\":\"EBP.AEF.P47_RECON_TRACKING\",\"detail\":\"EBP.AEF.P47_RECON_TRACKING\"},{\"id\":\"EBP.AEF.P47_ROCKETS\",\"kind\":17,\"label\":\"EBP.AEF.P47_ROCKETS\",\"documentation\":\"EBP.AEF.P47_ROCKETS\",\"detail\":\"EBP.AEF.P47_ROCKETS\"},{\"id\":\"EBP.AEF.P47_STRAFE\",\"kind\":17,\"label\":\"EBP.AEF.P47_STRAFE\",\"documentation\":\"EBP.AEF.P47_STRAFE\",\"detail\":\"EBP.AEF.P47_STRAFE\"},{\"id\":\"EBP.AEF.PARATROOPER_MP\",\"kind\":17,\"label\":\"EBP.AEF.PARATROOPER_MP\",\"documentation\":\"EBP.AEF.PARATROOPER_MP\",\"detail\":\"EBP.AEF.PARATROOPER_MP\"},{\"id\":\"EBP.AEF.PARATROOPERS_COMBAT_GROUP_PLANE\",\"kind\":17,\"label\":\"EBP.AEF.PARATROOPERS_COMBAT_GROUP_PLANE\",\"documentation\":\"EBP.AEF.PARATROOPERS_COMBAT_GROUP_PLANE\",\"detail\":\"EBP.AEF.PARATROOPERS_COMBAT_GROUP_PLANE\"},{\"id\":\"EBP.AEF.PARATROOPERS_PLANE\",\"kind\":17,\"label\":\"EBP.AEF.PARATROOPERS_PLANE\",\"documentation\":\"EBP.AEF.PARATROOPERS_PLANE\",\"detail\":\"EBP.AEF.PARATROOPERS_PLANE\"},{\"id\":\"EBP.AEF.PARATROOPERS_PLANE_ATGUN\",\"kind\":17,\"label\":\"EBP.AEF.PARATROOPERS_PLANE_ATGUN\",\"documentation\":\"EBP.AEF.PARATROOPERS_PLANE_ATGUN\",\"detail\":\"EBP.AEF.PARATROOPERS_PLANE_ATGUN\"},{\"id\":\"EBP.AEF.PARATROOPERS_PLANE_HMG\",\"kind\":17,\"label\":\"EBP.AEF.PARATROOPERS_PLANE_HMG\",\"documentation\":\"EBP.AEF.PARATROOPERS_PLANE_HMG\",\"detail\":\"EBP.AEF.PARATROOPERS_PLANE_HMG\"},{\"id\":\"EBP.AEF.PARATROOPERS_PLANE_MINES\",\"kind\":17,\"label\":\"EBP.AEF.PARATROOPERS_PLANE_MINES\",\"documentation\":\"EBP.AEF.PARATROOPERS_PLANE_MINES\",\"detail\":\"EBP.AEF.PARATROOPERS_PLANE_MINES\"},{\"id\":\"EBP.AEF.PARATROOPERS_PLANE_PARAS\",\"kind\":17,\"label\":\"EBP.AEF.PARATROOPERS_PLANE_PARAS\",\"documentation\":\"EBP.AEF.PARATROOPERS_PLANE_PARAS\",\"detail\":\"EBP.AEF.PARATROOPERS_PLANE_PARAS\"},{\"id\":\"EBP.AEF.PATHFINDER_IR_MP\",\"kind\":17,\"label\":\"EBP.AEF.PATHFINDER_IR_MP\",\"documentation\":\"EBP.AEF.PATHFINDER_IR_MP\",\"detail\":\"EBP.AEF.PATHFINDER_IR_MP\"},{\"id\":\"EBP.AEF.PATHFINDER_RECON_MP\",\"kind\":17,\"label\":\"EBP.AEF.PATHFINDER_RECON_MP\",\"documentation\":\"EBP.AEF.PATHFINDER_RECON_MP\",\"detail\":\"EBP.AEF.PATHFINDER_RECON_MP\"},{\"id\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_RECON\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_RECON\",\"documentation\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_RECON\",\"detail\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_RECON\"},{\"id\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_ROCKET\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_ROCKET\",\"documentation\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_ROCKET\",\"detail\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_ROCKET\"},{\"id\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_ROCKET_ELITE\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_ROCKET_ELITE\",\"documentation\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_ROCKET_ELITE\",\"detail\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_ROCKET_ELITE\"},{\"id\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_STRAFE\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_STRAFE\",\"documentation\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_STRAFE\",\"detail\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_STRAFE\"},{\"id\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_STRAFE_ELITE\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_STRAFE_ELITE\",\"documentation\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_STRAFE_ELITE\",\"detail\":\"EBP.AEF.PM_AEF_AIR_SUPPORT_STRAFE_ELITE\"},{\"id\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_PARAS\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_PARAS\",\"documentation\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_PARAS\",\"detail\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_PARAS\"},{\"id\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_STRAFE\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_STRAFE\",\"documentation\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_STRAFE\",\"detail\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_STRAFE\"},{\"id\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_SPAWNER\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_SPAWNER\",\"documentation\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_SPAWNER\",\"detail\":\"EBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_SPAWNER\"},{\"id\":\"EBP.AEF.PM_AEF_AIRBORNE_SUPPLY_DROP_PLANE\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_AIRBORNE_SUPPLY_DROP_PLANE\",\"documentation\":\"EBP.AEF.PM_AEF_AIRBORNE_SUPPLY_DROP_PLANE\",\"detail\":\"EBP.AEF.PM_AEF_AIRBORNE_SUPPLY_DROP_PLANE\"},{\"id\":\"EBP.AEF.PM_AEF_FIGHTING_POSITION_TEAMWEAPONS\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_FIGHTING_POSITION_TEAMWEAPONS\",\"documentation\":\"EBP.AEF.PM_AEF_FIGHTING_POSITION_TEAMWEAPONS\",\"detail\":\"EBP.AEF.PM_AEF_FIGHTING_POSITION_TEAMWEAPONS\"},{\"id\":\"EBP.AEF.PM_AEF_PINPOINT_ARTY_MARKER_MP\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_PINPOINT_ARTY_MARKER_MP\",\"documentation\":\"EBP.AEF.PM_AEF_PINPOINT_ARTY_MARKER_MP\",\"detail\":\"EBP.AEF.PM_AEF_PINPOINT_ARTY_MARKER_MP\"},{\"id\":\"EBP.AEF.PM_AEF_PINPOINT_ARTY_THREE_MARKER_MP\",\"kind\":17,\"label\":\"EBP.AEF.PM_AEF_PINPOINT_ARTY_THREE_MARKER_MP\",\"documentation\":\"EBP.AEF.PM_AEF_PINPOINT_ARTY_THREE_MARKER_MP\",\"detail\":\"EBP.AEF.PM_AEF_PINPOINT_ARTY_THREE_MARKER_MP\"},{\"id\":\"EBP.AEF.PM_ARMOR_COMMAND_BAZOOKA_RACK\",\"kind\":17,\"label\":\"EBP.AEF.PM_ARMOR_COMMAND_BAZOOKA_RACK\",\"documentation\":\"EBP.AEF.PM_ARMOR_COMMAND_BAZOOKA_RACK\",\"detail\":\"EBP.AEF.PM_ARMOR_COMMAND_BAZOOKA_RACK\"},{\"id\":\"EBP.AEF.PM_ARMOR_COMMAND_LMG_RACK\",\"kind\":17,\"label\":\"EBP.AEF.PM_ARMOR_COMMAND_LMG_RACK\",\"documentation\":\"EBP.AEF.PM_ARMOR_COMMAND_LMG_RACK\",\"detail\":\"EBP.AEF.PM_ARMOR_COMMAND_LMG_RACK\"},{\"id\":\"EBP.AEF.PM_ATTACHED_MEDIC\",\"kind\":17,\"label\":\"EBP.AEF.PM_ATTACHED_MEDIC\",\"documentation\":\"EBP.AEF.PM_ATTACHED_MEDIC\",\"detail\":\"EBP.AEF.PM_ATTACHED_MEDIC\"},{\"id\":\"EBP.AEF.PM_ATTACHED_SEARGENT\",\"kind\":17,\"label\":\"EBP.AEF.PM_ATTACHED_SEARGENT\",\"documentation\":\"EBP.AEF.PM_ATTACHED_SEARGENT\",\"detail\":\"EBP.AEF.PM_ATTACHED_SEARGENT\"},{\"id\":\"EBP.AEF.PM_P47_FLYBY\",\"kind\":17,\"label\":\"EBP.AEF.PM_P47_FLYBY\",\"documentation\":\"EBP.AEF.PM_P47_FLYBY\",\"detail\":\"EBP.AEF.PM_P47_FLYBY\"},{\"id\":\"EBP.AEF.PM_P47_MG_STRAFE\",\"kind\":17,\"label\":\"EBP.AEF.PM_P47_MG_STRAFE\",\"documentation\":\"EBP.AEF.PM_P47_MG_STRAFE\",\"detail\":\"EBP.AEF.PM_P47_MG_STRAFE\"},{\"id\":\"EBP.AEF.PM_P47_ROCKET_STRAFE\",\"kind\":17,\"label\":\"EBP.AEF.PM_P47_ROCKET_STRAFE\",\"documentation\":\"EBP.AEF.PM_P47_ROCKET_STRAFE\",\"detail\":\"EBP.AEF.PM_P47_ROCKET_STRAFE\"},{\"id\":\"EBP.AEF.RANGER_COMMANDER_MP\",\"kind\":17,\"label\":\"EBP.AEF.RANGER_COMMANDER_MP\",\"documentation\":\"EBP.AEF.RANGER_COMMANDER_MP\",\"detail\":\"EBP.AEF.RANGER_COMMANDER_MP\"},{\"id\":\"EBP.AEF.RANGER_MP\",\"kind\":17,\"label\":\"EBP.AEF.RANGER_MP\",\"documentation\":\"EBP.AEF.RANGER_MP\",\"detail\":\"EBP.AEF.RANGER_MP\"},{\"id\":\"EBP.AEF.REAR_ECHELON_RADIOMAN_MP\",\"kind\":17,\"label\":\"EBP.AEF.REAR_ECHELON_RADIOMAN_MP\",\"documentation\":\"EBP.AEF.REAR_ECHELON_RADIOMAN_MP\",\"detail\":\"EBP.AEF.REAR_ECHELON_RADIOMAN_MP\"},{\"id\":\"EBP.AEF.REAR_ECHELON_RESERVE_TROOP_MP\",\"kind\":17,\"label\":\"EBP.AEF.REAR_ECHELON_RESERVE_TROOP_MP\",\"documentation\":\"EBP.AEF.REAR_ECHELON_RESERVE_TROOP_MP\",\"detail\":\"EBP.AEF.REAR_ECHELON_RESERVE_TROOP_MP\"},{\"id\":\"EBP.AEF.REAR_ECHELON_TROOP_CAPT_MP\",\"kind\":17,\"label\":\"EBP.AEF.REAR_ECHELON_TROOP_CAPT_MP\",\"documentation\":\"EBP.AEF.REAR_ECHELON_TROOP_CAPT_MP\",\"detail\":\"EBP.AEF.REAR_ECHELON_TROOP_CAPT_MP\"},{\"id\":\"EBP.AEF.REAR_ECHELON_TROOP_MP\",\"kind\":17,\"label\":\"EBP.AEF.REAR_ECHELON_TROOP_MP\",\"documentation\":\"EBP.AEF.REAR_ECHELON_TROOP_MP\",\"detail\":\"EBP.AEF.REAR_ECHELON_TROOP_MP\"},{\"id\":\"EBP.AEF.REPLACEMENT_ARMOR_COMMAND_MP\",\"kind\":17,\"label\":\"EBP.AEF.REPLACEMENT_ARMOR_COMMAND_MP\",\"documentation\":\"EBP.AEF.REPLACEMENT_ARMOR_COMMAND_MP\",\"detail\":\"EBP.AEF.REPLACEMENT_ARMOR_COMMAND_MP\"},{\"id\":\"EBP.AEF.REPLACEMENT_ARMORED_RIFLE_COMMAND_MP\",\"kind\":17,\"label\":\"EBP.AEF.REPLACEMENT_ARMORED_RIFLE_COMMAND_MP\",\"documentation\":\"EBP.AEF.REPLACEMENT_ARMORED_RIFLE_COMMAND_MP\",\"detail\":\"EBP.AEF.REPLACEMENT_ARMORED_RIFLE_COMMAND_MP\"},{\"id\":\"EBP.AEF.REPLACEMENT_COMPANY_WEAPONS_POOL_MP\",\"kind\":17,\"label\":\"EBP.AEF.REPLACEMENT_COMPANY_WEAPONS_POOL_MP\",\"documentation\":\"EBP.AEF.REPLACEMENT_COMPANY_WEAPONS_POOL_MP\",\"detail\":\"EBP.AEF.REPLACEMENT_COMPANY_WEAPONS_POOL_MP\"},{\"id\":\"EBP.AEF.RIFLE_COMMAND_MP\",\"kind\":17,\"label\":\"EBP.AEF.RIFLE_COMMAND_MP\",\"documentation\":\"EBP.AEF.RIFLE_COMMAND_MP\",\"detail\":\"EBP.AEF.RIFLE_COMMAND_MP\"},{\"id\":\"EBP.AEF.RIFLE_COMMAND_SP\",\"kind\":17,\"label\":\"EBP.AEF.RIFLE_COMMAND_SP\",\"documentation\":\"EBP.AEF.RIFLE_COMMAND_SP\",\"detail\":\"EBP.AEF.RIFLE_COMMAND_SP\"},{\"id\":\"EBP.AEF.RIFLE_COMMAND_WRECK_MP\",\"kind\":17,\"label\":\"EBP.AEF.RIFLE_COMMAND_WRECK_MP\",\"documentation\":\"EBP.AEF.RIFLE_COMMAND_WRECK_MP\",\"detail\":\"EBP.AEF.RIFLE_COMMAND_WRECK_MP\"},{\"id\":\"EBP.AEF.RIFLEMAN_SOLDIER_CAPTAIN_MP\",\"kind\":17,\"label\":\"EBP.AEF.RIFLEMAN_SOLDIER_CAPTAIN_MP\",\"documentation\":\"EBP.AEF.RIFLEMAN_SOLDIER_CAPTAIN_MP\",\"detail\":\"EBP.AEF.RIFLEMAN_SOLDIER_CAPTAIN_MP\"},{\"id\":\"EBP.AEF.RIFLEMAN_SOLDIER_GROUP_MP\",\"kind\":17,\"label\":\"EBP.AEF.RIFLEMAN_SOLDIER_GROUP_MP\",\"documentation\":\"EBP.AEF.RIFLEMAN_SOLDIER_GROUP_MP\",\"detail\":\"EBP.AEF.RIFLEMAN_SOLDIER_GROUP_MP\"},{\"id\":\"EBP.AEF.RIFLEMAN_SOLDIER_LIEUTENANT_MP\",\"kind\":17,\"label\":\"EBP.AEF.RIFLEMAN_SOLDIER_LIEUTENANT_MP\",\"documentation\":\"EBP.AEF.RIFLEMAN_SOLDIER_LIEUTENANT_MP\",\"detail\":\"EBP.AEF.RIFLEMAN_SOLDIER_LIEUTENANT_MP\"},{\"id\":\"EBP.AEF.RIFLEMAN_SOLDIER_MP\",\"kind\":17,\"label\":\"EBP.AEF.RIFLEMAN_SOLDIER_MP\",\"documentation\":\"EBP.AEF.RIFLEMAN_SOLDIER_MP\",\"detail\":\"EBP.AEF.RIFLEMAN_SOLDIER_MP\"},{\"id\":\"EBP.AEF.SHERMAN_BARRIER_DEFORM_MP\",\"kind\":17,\"label\":\"EBP.AEF.SHERMAN_BARRIER_DEFORM_MP\",\"documentation\":\"EBP.AEF.SHERMAN_BARRIER_DEFORM_MP\",\"detail\":\"EBP.AEF.SHERMAN_BARRIER_DEFORM_MP\"},{\"id\":\"EBP.AEF.SHERMAN_BARRIER_DIRT_MP\",\"kind\":17,\"label\":\"EBP.AEF.SHERMAN_BARRIER_DIRT_MP\",\"documentation\":\"EBP.AEF.SHERMAN_BARRIER_DIRT_MP\",\"detail\":\"EBP.AEF.SHERMAN_BARRIER_DIRT_MP\"},{\"id\":\"EBP.AEF.SHERMAN_BARRIER_MUD_MP\",\"kind\":17,\"label\":\"EBP.AEF.SHERMAN_BARRIER_MUD_MP\",\"documentation\":\"EBP.AEF.SHERMAN_BARRIER_MUD_MP\",\"detail\":\"EBP.AEF.SHERMAN_BARRIER_MUD_MP\"},{\"id\":\"EBP.AEF.SHERMAN_BARRIER_RUBBLE_MP\",\"kind\":17,\"label\":\"EBP.AEF.SHERMAN_BARRIER_RUBBLE_MP\",\"documentation\":\"EBP.AEF.SHERMAN_BARRIER_RUBBLE_MP\",\"detail\":\"EBP.AEF.SHERMAN_BARRIER_RUBBLE_MP\"},{\"id\":\"EBP.AEF.SHERMAN_BARRIER_SNOW_MP\",\"kind\":17,\"label\":\"EBP.AEF.SHERMAN_BARRIER_SNOW_MP\",\"documentation\":\"EBP.AEF.SHERMAN_BARRIER_SNOW_MP\",\"detail\":\"EBP.AEF.SHERMAN_BARRIER_SNOW_MP\"},{\"id\":\"EBP.AEF.T34_CALLIOPE_MP\",\"kind\":17,\"label\":\"EBP.AEF.T34_CALLIOPE_MP\",\"documentation\":\"EBP.AEF.T34_CALLIOPE_MP\",\"detail\":\"EBP.AEF.T34_CALLIOPE_MP\"},{\"id\":\"EBP.AEF.TEMP_ACTIVE_STRUCTURE_SEARCHLIGHT\",\"kind\":17,\"label\":\"EBP.AEF.TEMP_ACTIVE_STRUCTURE_SEARCHLIGHT\",\"documentation\":\"EBP.AEF.TEMP_ACTIVE_STRUCTURE_SEARCHLIGHT\",\"detail\":\"EBP.AEF.TEMP_ACTIVE_STRUCTURE_SEARCHLIGHT\"},{\"id\":\"EBP.AEF.USF_MEDIC_MP\",\"kind\":17,\"label\":\"EBP.AEF.USF_MEDIC_MP\",\"documentation\":\"EBP.AEF.USF_MEDIC_MP\",\"detail\":\"EBP.AEF.USF_MEDIC_MP\"},{\"id\":\"EBP.AEF.VEHICLE_CREW_BAZOOKA_MP\",\"kind\":17,\"label\":\"EBP.AEF.VEHICLE_CREW_BAZOOKA_MP\",\"documentation\":\"EBP.AEF.VEHICLE_CREW_BAZOOKA_MP\",\"detail\":\"EBP.AEF.VEHICLE_CREW_BAZOOKA_MP\"},{\"id\":\"EBP.AEF.VEHICLE_CREW_TROOP_MP\",\"kind\":17,\"label\":\"EBP.AEF.VEHICLE_CREW_TROOP_MP\",\"documentation\":\"EBP.AEF.VEHICLE_CREW_TROOP_MP\",\"detail\":\"EBP.AEF.VEHICLE_CREW_TROOP_MP\"},{\"id\":\"EBP.AEF.VEHICLE_CREW_TROOP_REPAIR_STATION_MP\",\"kind\":17,\"label\":\"EBP.AEF.VEHICLE_CREW_TROOP_REPAIR_STATION_MP\",\"documentation\":\"EBP.AEF.VEHICLE_CREW_TROOP_REPAIR_STATION_MP\",\"detail\":\"EBP.AEF.VEHICLE_CREW_TROOP_REPAIR_STATION_MP\"},{\"id\":\"SBP.AEF.AEF_AIR_SUPPORT_RECON\",\"kind\":17,\"label\":\"SBP.AEF.AEF_AIR_SUPPORT_RECON\",\"documentation\":\"SBP.AEF.AEF_AIR_SUPPORT_RECON\",\"detail\":\"SBP.AEF.AEF_AIR_SUPPORT_RECON\"},{\"id\":\"SBP.AEF.AEF_AIR_SUPPORT_ROCKET\",\"kind\":17,\"label\":\"SBP.AEF.AEF_AIR_SUPPORT_ROCKET\",\"documentation\":\"SBP.AEF.AEF_AIR_SUPPORT_ROCKET\",\"detail\":\"SBP.AEF.AEF_AIR_SUPPORT_ROCKET\"},{\"id\":\"SBP.AEF.AEF_AIR_SUPPORT_ROCKET_ELITE\",\"kind\":17,\"label\":\"SBP.AEF.AEF_AIR_SUPPORT_ROCKET_ELITE\",\"documentation\":\"SBP.AEF.AEF_AIR_SUPPORT_ROCKET_ELITE\",\"detail\":\"SBP.AEF.AEF_AIR_SUPPORT_ROCKET_ELITE\"},{\"id\":\"SBP.AEF.AEF_AIR_SUPPORT_STRAFE\",\"kind\":17,\"label\":\"SBP.AEF.AEF_AIR_SUPPORT_STRAFE\",\"documentation\":\"SBP.AEF.AEF_AIR_SUPPORT_STRAFE\",\"detail\":\"SBP.AEF.AEF_AIR_SUPPORT_STRAFE\"},{\"id\":\"SBP.AEF.AEF_AIR_SUPPORT_STRAFE_ELITE\",\"kind\":17,\"label\":\"SBP.AEF.AEF_AIR_SUPPORT_STRAFE_ELITE\",\"documentation\":\"SBP.AEF.AEF_AIR_SUPPORT_STRAFE_ELITE\",\"detail\":\"SBP.AEF.AEF_AIR_SUPPORT_STRAFE_ELITE\"},{\"id\":\"SBP.AEF.AEF_ATTACK_PLANE_SQUAD\",\"kind\":17,\"label\":\"SBP.AEF.AEF_ATTACK_PLANE_SQUAD\",\"documentation\":\"SBP.AEF.AEF_ATTACK_PLANE_SQUAD\",\"detail\":\"SBP.AEF.AEF_ATTACK_PLANE_SQUAD\"},{\"id\":\"SBP.AEF.AEF_HALFTRACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.AEF_HALFTRACK_SQUAD_MP\",\"documentation\":\"SBP.AEF.AEF_HALFTRACK_SQUAD_MP\",\"detail\":\"SBP.AEF.AEF_HALFTRACK_SQUAD_MP\"},{\"id\":\"SBP.AEF.ASSAULT_ENGINEER_SQUAD_5_MAN_MP\",\"kind\":17,\"label\":\"SBP.AEF.ASSAULT_ENGINEER_SQUAD_5_MAN_MP\",\"documentation\":\"SBP.AEF.ASSAULT_ENGINEER_SQUAD_5_MAN_MP\",\"detail\":\"SBP.AEF.ASSAULT_ENGINEER_SQUAD_5_MAN_MP\"},{\"id\":\"SBP.AEF.ASSAULT_ENGINEER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.ASSAULT_ENGINEER_SQUAD_MP\",\"documentation\":\"SBP.AEF.ASSAULT_ENGINEER_SQUAD_MP\",\"detail\":\"SBP.AEF.ASSAULT_ENGINEER_SQUAD_MP\"},{\"id\":\"SBP.AEF.CAPTAIN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.CAPTAIN_SQUAD_MP\",\"documentation\":\"SBP.AEF.CAPTAIN_SQUAD_MP\",\"detail\":\"SBP.AEF.CAPTAIN_SQUAD_MP\"},{\"id\":\"SBP.AEF.DODGE_WC51_50CAL_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.DODGE_WC51_50CAL_SQUAD_MP\",\"documentation\":\"SBP.AEF.DODGE_WC51_50CAL_SQUAD_MP\",\"detail\":\"SBP.AEF.DODGE_WC51_50CAL_SQUAD_MP\"},{\"id\":\"SBP.AEF.DODGE_WC51_AMBULANCE_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.DODGE_WC51_AMBULANCE_SQUAD_MP\",\"documentation\":\"SBP.AEF.DODGE_WC51_AMBULANCE_SQUAD_MP\",\"detail\":\"SBP.AEF.DODGE_WC51_AMBULANCE_SQUAD_MP\"},{\"id\":\"SBP.AEF.DODGE_WC51_PATHFINDER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.DODGE_WC51_PATHFINDER_SQUAD_MP\",\"documentation\":\"SBP.AEF.DODGE_WC51_PATHFINDER_SQUAD_MP\",\"detail\":\"SBP.AEF.DODGE_WC51_PATHFINDER_SQUAD_MP\"},{\"id\":\"SBP.AEF.DODGE_WC51_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.DODGE_WC51_SQUAD_MP\",\"documentation\":\"SBP.AEF.DODGE_WC51_SQUAD_MP\",\"detail\":\"SBP.AEF.DODGE_WC51_SQUAD_MP\"},{\"id\":\"SBP.AEF.JACKSON_SQUAD\",\"kind\":17,\"label\":\"SBP.AEF.JACKSON_SQUAD\",\"documentation\":\"SBP.AEF.JACKSON_SQUAD\",\"detail\":\"SBP.AEF.JACKSON_SQUAD\"},{\"id\":\"SBP.AEF.LIEUTENANT_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.LIEUTENANT_SQUAD_MP\",\"documentation\":\"SBP.AEF.LIEUTENANT_SQUAD_MP\",\"detail\":\"SBP.AEF.LIEUTENANT_SQUAD_MP\"},{\"id\":\"SBP.AEF.M1_57MM_AT_GUN_SQUAD_BOB\",\"kind\":17,\"label\":\"SBP.AEF.M1_57MM_AT_GUN_SQUAD_BOB\",\"documentation\":\"SBP.AEF.M1_57MM_AT_GUN_SQUAD_BOB\",\"detail\":\"SBP.AEF.M1_57MM_AT_GUN_SQUAD_BOB\"},{\"id\":\"SBP.AEF.M1_57MM_AT_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M1_57MM_AT_GUN_SQUAD_MP\",\"documentation\":\"SBP.AEF.M1_57MM_AT_GUN_SQUAD_MP\",\"detail\":\"SBP.AEF.M1_57MM_AT_GUN_SQUAD_MP\"},{\"id\":\"SBP.AEF.M1_75MM_PACK_HOWITZER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M1_75MM_PACK_HOWITZER_SQUAD_MP\",\"documentation\":\"SBP.AEF.M1_75MM_PACK_HOWITZER_SQUAD_MP\",\"detail\":\"SBP.AEF.M1_75MM_PACK_HOWITZER_SQUAD_MP\"},{\"id\":\"SBP.AEF.M1_81MM_MORTAR_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M1_81MM_MORTAR_SQUAD_MP\",\"documentation\":\"SBP.AEF.M1_81MM_MORTAR_SQUAD_MP\",\"detail\":\"SBP.AEF.M1_81MM_MORTAR_SQUAD_MP\"},{\"id\":\"SBP.AEF.M10_TANK_DESTROYER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M10_TANK_DESTROYER_SQUAD_MP\",\"documentation\":\"SBP.AEF.M10_TANK_DESTROYER_SQUAD_MP\",\"detail\":\"SBP.AEF.M10_TANK_DESTROYER_SQUAD_MP\"},{\"id\":\"SBP.AEF.M15A1_AA_HALFTRACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M15A1_AA_HALFTRACK_SQUAD_MP\",\"documentation\":\"SBP.AEF.M15A1_AA_HALFTRACK_SQUAD_MP\",\"detail\":\"SBP.AEF.M15A1_AA_HALFTRACK_SQUAD_MP\"},{\"id\":\"SBP.AEF.M1919A4_HMG_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M1919A4_HMG_SQUAD_MP\",\"documentation\":\"SBP.AEF.M1919A4_HMG_SQUAD_MP\",\"detail\":\"SBP.AEF.M1919A4_HMG_SQUAD_MP\"},{\"id\":\"SBP.AEF.M2_60MM_MORTAR_CORE_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M2_60MM_MORTAR_CORE_SQUAD_MP\",\"documentation\":\"SBP.AEF.M2_60MM_MORTAR_CORE_SQUAD_MP\",\"detail\":\"SBP.AEF.M2_60MM_MORTAR_CORE_SQUAD_MP\"},{\"id\":\"SBP.AEF.M2_60MM_MORTAR_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M2_60MM_MORTAR_SQUAD_MP\",\"documentation\":\"SBP.AEF.M2_60MM_MORTAR_SQUAD_MP\",\"detail\":\"SBP.AEF.M2_60MM_MORTAR_SQUAD_MP\"},{\"id\":\"SBP.AEF.M2_60MM_MORTAR_SQUAD_MP_CLONE\",\"kind\":17,\"label\":\"SBP.AEF.M2_60MM_MORTAR_SQUAD_MP_CLONE\",\"documentation\":\"SBP.AEF.M2_60MM_MORTAR_SQUAD_MP_CLONE\",\"detail\":\"SBP.AEF.M2_60MM_MORTAR_SQUAD_MP_CLONE\"},{\"id\":\"SBP.AEF.M20_ASSAULT_ENGY_ANTITANK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M20_ASSAULT_ENGY_ANTITANK_SQUAD_MP\",\"documentation\":\"SBP.AEF.M20_ASSAULT_ENGY_ANTITANK_SQUAD_MP\",\"detail\":\"SBP.AEF.M20_ASSAULT_ENGY_ANTITANK_SQUAD_MP\"},{\"id\":\"SBP.AEF.M20_UTILITY_CAR_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M20_UTILITY_CAR_SQUAD_MP\",\"documentation\":\"SBP.AEF.M20_UTILITY_CAR_SQUAD_MP\",\"detail\":\"SBP.AEF.M20_UTILITY_CAR_SQUAD_MP\"},{\"id\":\"SBP.AEF.M21_MORTAR_HALFTRACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M21_MORTAR_HALFTRACK_SQUAD_MP\",\"documentation\":\"SBP.AEF.M21_MORTAR_HALFTRACK_SQUAD_MP\",\"detail\":\"SBP.AEF.M21_MORTAR_HALFTRACK_SQUAD_MP\"},{\"id\":\"SBP.AEF.M26_PERSHING_MP\",\"kind\":17,\"label\":\"SBP.AEF.M26_PERSHING_MP\",\"documentation\":\"SBP.AEF.M26_PERSHING_MP\",\"detail\":\"SBP.AEF.M26_PERSHING_MP\"},{\"id\":\"SBP.AEF.M2HB_50CAL_HMG_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M2HB_50CAL_HMG_SQUAD_MP\",\"documentation\":\"SBP.AEF.M2HB_50CAL_HMG_SQUAD_MP\",\"detail\":\"SBP.AEF.M2HB_50CAL_HMG_SQUAD_MP\"},{\"id\":\"SBP.AEF.M3_HALFTRACK_SQUAD_ASSAULT_MP\",\"kind\":17,\"label\":\"SBP.AEF.M3_HALFTRACK_SQUAD_ASSAULT_MP\",\"documentation\":\"SBP.AEF.M3_HALFTRACK_SQUAD_ASSAULT_MP\",\"detail\":\"SBP.AEF.M3_HALFTRACK_SQUAD_ASSAULT_MP\"},{\"id\":\"SBP.AEF.M3_HALFTRACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M3_HALFTRACK_SQUAD_MP\",\"documentation\":\"SBP.AEF.M3_HALFTRACK_SQUAD_MP\",\"detail\":\"SBP.AEF.M3_HALFTRACK_SQUAD_MP\"},{\"id\":\"SBP.AEF.M36_TANK_DESTROYER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M36_TANK_DESTROYER_SQUAD_MP\",\"documentation\":\"SBP.AEF.M36_TANK_DESTROYER_SQUAD_MP\",\"detail\":\"SBP.AEF.M36_TANK_DESTROYER_SQUAD_MP\"},{\"id\":\"SBP.AEF.M4A3_76MM_SHERMAN_BULLDOZER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M4A3_76MM_SHERMAN_BULLDOZER_SQUAD_MP\",\"documentation\":\"SBP.AEF.M4A3_76MM_SHERMAN_BULLDOZER_SQUAD_MP\",\"detail\":\"SBP.AEF.M4A3_76MM_SHERMAN_BULLDOZER_SQUAD_MP\"},{\"id\":\"SBP.AEF.M4A3_76MM_SHERMAN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M4A3_76MM_SHERMAN_SQUAD_MP\",\"documentation\":\"SBP.AEF.M4A3_76MM_SHERMAN_SQUAD_MP\",\"detail\":\"SBP.AEF.M4A3_76MM_SHERMAN_SQUAD_MP\"},{\"id\":\"SBP.AEF.M4A3_SHERMAN_SQUAD_DEMO_BURNOUT\",\"kind\":17,\"label\":\"SBP.AEF.M4A3_SHERMAN_SQUAD_DEMO_BURNOUT\",\"documentation\":\"SBP.AEF.M4A3_SHERMAN_SQUAD_DEMO_BURNOUT\",\"detail\":\"SBP.AEF.M4A3_SHERMAN_SQUAD_DEMO_BURNOUT\"},{\"id\":\"SBP.AEF.M4A3_SHERMAN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M4A3_SHERMAN_SQUAD_MP\",\"documentation\":\"SBP.AEF.M4A3_SHERMAN_SQUAD_MP\",\"detail\":\"SBP.AEF.M4A3_SHERMAN_SQUAD_MP\"},{\"id\":\"SBP.AEF.M4A3E8_SHERMAN_EASY_8_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M4A3E8_SHERMAN_EASY_8_SQUAD_MP\",\"documentation\":\"SBP.AEF.M4A3E8_SHERMAN_EASY_8_SQUAD_MP\",\"detail\":\"SBP.AEF.M4A3E8_SHERMAN_EASY_8_SQUAD_MP\"},{\"id\":\"SBP.AEF.M5A1_STUART_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M5A1_STUART_SQUAD_MP\",\"documentation\":\"SBP.AEF.M5A1_STUART_SQUAD_MP\",\"detail\":\"SBP.AEF.M5A1_STUART_SQUAD_MP\"},{\"id\":\"SBP.AEF.M7B1_PRIEST_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M7B1_PRIEST_SQUAD_MP\",\"documentation\":\"SBP.AEF.M7B1_PRIEST_SQUAD_MP\",\"detail\":\"SBP.AEF.M7B1_PRIEST_SQUAD_MP\"},{\"id\":\"SBP.AEF.M8_GREYHOUND_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M8_GREYHOUND_SQUAD_MP\",\"documentation\":\"SBP.AEF.M8_GREYHOUND_SQUAD_MP\",\"detail\":\"SBP.AEF.M8_GREYHOUND_SQUAD_MP\"},{\"id\":\"SBP.AEF.M8A1_HMC_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.M8A1_HMC_SQUAD_MP\",\"documentation\":\"SBP.AEF.M8A1_HMC_SQUAD_MP\",\"detail\":\"SBP.AEF.M8A1_HMC_SQUAD_MP\"},{\"id\":\"SBP.AEF.MAJOR_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.MAJOR_SQUAD_MP\",\"documentation\":\"SBP.AEF.MAJOR_SQUAD_MP\",\"detail\":\"SBP.AEF.MAJOR_SQUAD_MP\"},{\"id\":\"SBP.AEF.P47_FLYBY\",\"kind\":17,\"label\":\"SBP.AEF.P47_FLYBY\",\"documentation\":\"SBP.AEF.P47_FLYBY\",\"detail\":\"SBP.AEF.P47_FLYBY\"},{\"id\":\"SBP.AEF.P47_MG_STRAFE\",\"kind\":17,\"label\":\"SBP.AEF.P47_MG_STRAFE\",\"documentation\":\"SBP.AEF.P47_MG_STRAFE\",\"detail\":\"SBP.AEF.P47_MG_STRAFE\"},{\"id\":\"SBP.AEF.P47_RECON\",\"kind\":17,\"label\":\"SBP.AEF.P47_RECON\",\"documentation\":\"SBP.AEF.P47_RECON\",\"detail\":\"SBP.AEF.P47_RECON\"},{\"id\":\"SBP.AEF.P47_RECON_PLANE_SWEEP\",\"kind\":17,\"label\":\"SBP.AEF.P47_RECON_PLANE_SWEEP\",\"documentation\":\"SBP.AEF.P47_RECON_PLANE_SWEEP\",\"detail\":\"SBP.AEF.P47_RECON_PLANE_SWEEP\"},{\"id\":\"SBP.AEF.P47_RECON_TRACKING\",\"kind\":17,\"label\":\"SBP.AEF.P47_RECON_TRACKING\",\"documentation\":\"SBP.AEF.P47_RECON_TRACKING\",\"detail\":\"SBP.AEF.P47_RECON_TRACKING\"},{\"id\":\"SBP.AEF.P47_ROCKETS\",\"kind\":17,\"label\":\"SBP.AEF.P47_ROCKETS\",\"documentation\":\"SBP.AEF.P47_ROCKETS\",\"detail\":\"SBP.AEF.P47_ROCKETS\"},{\"id\":\"SBP.AEF.P47_ROCKETS_STRAFE\",\"kind\":17,\"label\":\"SBP.AEF.P47_ROCKETS_STRAFE\",\"documentation\":\"SBP.AEF.P47_ROCKETS_STRAFE\",\"detail\":\"SBP.AEF.P47_ROCKETS_STRAFE\"},{\"id\":\"SBP.AEF.P47_STRAFES\",\"kind\":17,\"label\":\"SBP.AEF.P47_STRAFES\",\"documentation\":\"SBP.AEF.P47_STRAFES\",\"detail\":\"SBP.AEF.P47_STRAFES\"},{\"id\":\"SBP.AEF.PARATROOPER_COMBAT_GROUP_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.PARATROOPER_COMBAT_GROUP_SQUAD_MP\",\"documentation\":\"SBP.AEF.PARATROOPER_COMBAT_GROUP_SQUAD_MP\",\"detail\":\"SBP.AEF.PARATROOPER_COMBAT_GROUP_SQUAD_MP\"},{\"id\":\"SBP.AEF.PARATROOPER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.PARATROOPER_SQUAD_MP\",\"documentation\":\"SBP.AEF.PARATROOPER_SQUAD_MP\",\"detail\":\"SBP.AEF.PARATROOPER_SQUAD_MP\"},{\"id\":\"SBP.AEF.PARATROOPER_SQUAD_SUPPORT_MP\",\"kind\":17,\"label\":\"SBP.AEF.PARATROOPER_SQUAD_SUPPORT_MP\",\"documentation\":\"SBP.AEF.PARATROOPER_SQUAD_SUPPORT_MP\",\"detail\":\"SBP.AEF.PARATROOPER_SQUAD_SUPPORT_MP\"},{\"id\":\"SBP.AEF.PARATROOPERS_COMBAT_GROUP_PLANE\",\"kind\":17,\"label\":\"SBP.AEF.PARATROOPERS_COMBAT_GROUP_PLANE\",\"documentation\":\"SBP.AEF.PARATROOPERS_COMBAT_GROUP_PLANE\",\"detail\":\"SBP.AEF.PARATROOPERS_COMBAT_GROUP_PLANE\"},{\"id\":\"SBP.AEF.PARATROOPERS_PLANE\",\"kind\":17,\"label\":\"SBP.AEF.PARATROOPERS_PLANE\",\"documentation\":\"SBP.AEF.PARATROOPERS_PLANE\",\"detail\":\"SBP.AEF.PARATROOPERS_PLANE\"},{\"id\":\"SBP.AEF.PARATROOPERS_PLANE_ATGUN\",\"kind\":17,\"label\":\"SBP.AEF.PARATROOPERS_PLANE_ATGUN\",\"documentation\":\"SBP.AEF.PARATROOPERS_PLANE_ATGUN\",\"detail\":\"SBP.AEF.PARATROOPERS_PLANE_ATGUN\"},{\"id\":\"SBP.AEF.PARATROOPERS_PLANE_HMG\",\"kind\":17,\"label\":\"SBP.AEF.PARATROOPERS_PLANE_HMG\",\"documentation\":\"SBP.AEF.PARATROOPERS_PLANE_HMG\",\"detail\":\"SBP.AEF.PARATROOPERS_PLANE_HMG\"},{\"id\":\"SBP.AEF.PARATROOPERS_PLANE_MINES\",\"kind\":17,\"label\":\"SBP.AEF.PARATROOPERS_PLANE_MINES\",\"documentation\":\"SBP.AEF.PARATROOPERS_PLANE_MINES\",\"detail\":\"SBP.AEF.PARATROOPERS_PLANE_MINES\"},{\"id\":\"SBP.AEF.PARATROOPERS_PLANE_PARAS\",\"kind\":17,\"label\":\"SBP.AEF.PARATROOPERS_PLANE_PARAS\",\"documentation\":\"SBP.AEF.PARATROOPERS_PLANE_PARAS\",\"detail\":\"SBP.AEF.PARATROOPERS_PLANE_PARAS\"},{\"id\":\"SBP.AEF.PATHFINDER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.PATHFINDER_SQUAD_MP\",\"documentation\":\"SBP.AEF.PATHFINDER_SQUAD_MP\",\"detail\":\"SBP.AEF.PATHFINDER_SQUAD_MP\"},{\"id\":\"SBP.AEF.PATHFINDER_SQUAD_RECON_MP\",\"kind\":17,\"label\":\"SBP.AEF.PATHFINDER_SQUAD_RECON_MP\",\"documentation\":\"SBP.AEF.PATHFINDER_SQUAD_RECON_MP\",\"detail\":\"SBP.AEF.PATHFINDER_SQUAD_RECON_MP\"},{\"id\":\"SBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_PARAS\",\"kind\":17,\"label\":\"SBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_PARAS\",\"documentation\":\"SBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_PARAS\",\"detail\":\"SBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_PARAS\"},{\"id\":\"SBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_STRAFE\",\"kind\":17,\"label\":\"SBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_STRAFE\",\"documentation\":\"SBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_STRAFE\",\"detail\":\"SBP.AEF.PM_AEF_AIRBORNE_PARATROOPERS_PLANE_STRAFE\"},{\"id\":\"SBP.AEF.PM_AEF_AIRBORNE_SUPPLY_DROP_PLANE\",\"kind\":17,\"label\":\"SBP.AEF.PM_AEF_AIRBORNE_SUPPLY_DROP_PLANE\",\"documentation\":\"SBP.AEF.PM_AEF_AIRBORNE_SUPPLY_DROP_PLANE\",\"detail\":\"SBP.AEF.PM_AEF_AIRBORNE_SUPPLY_DROP_PLANE\"},{\"id\":\"SBP.AEF.PM_M3_HALFTRACK_SQUAD_OMCG\",\"kind\":17,\"label\":\"SBP.AEF.PM_M3_HALFTRACK_SQUAD_OMCG\",\"documentation\":\"SBP.AEF.PM_M3_HALFTRACK_SQUAD_OMCG\",\"detail\":\"SBP.AEF.PM_M3_HALFTRACK_SQUAD_OMCG\"},{\"id\":\"SBP.AEF.PM_RIFLEMEN_SQUAD_OMCG\",\"kind\":17,\"label\":\"SBP.AEF.PM_RIFLEMEN_SQUAD_OMCG\",\"documentation\":\"SBP.AEF.PM_RIFLEMEN_SQUAD_OMCG\",\"detail\":\"SBP.AEF.PM_RIFLEMEN_SQUAD_OMCG\"},{\"id\":\"SBP.AEF.RANGER_SQUAD_COMMANDER_MP\",\"kind\":17,\"label\":\"SBP.AEF.RANGER_SQUAD_COMMANDER_MP\",\"documentation\":\"SBP.AEF.RANGER_SQUAD_COMMANDER_MP\",\"detail\":\"SBP.AEF.RANGER_SQUAD_COMMANDER_MP\"},{\"id\":\"SBP.AEF.RANGER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.RANGER_SQUAD_MP\",\"documentation\":\"SBP.AEF.RANGER_SQUAD_MP\",\"detail\":\"SBP.AEF.RANGER_SQUAD_MP\"},{\"id\":\"SBP.AEF.REAR_ECHELON_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.REAR_ECHELON_SQUAD_MP\",\"documentation\":\"SBP.AEF.REAR_ECHELON_SQUAD_MP\",\"detail\":\"SBP.AEF.REAR_ECHELON_SQUAD_MP\"},{\"id\":\"SBP.AEF.RIFLEMEN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.RIFLEMEN_SQUAD_MP\",\"documentation\":\"SBP.AEF.RIFLEMEN_SQUAD_MP\",\"detail\":\"SBP.AEF.RIFLEMEN_SQUAD_MP\"},{\"id\":\"SBP.AEF.RIFLEMEN_SQUAD_VETERAN_MP\",\"kind\":17,\"label\":\"SBP.AEF.RIFLEMEN_SQUAD_VETERAN_MP\",\"documentation\":\"SBP.AEF.RIFLEMEN_SQUAD_VETERAN_MP\",\"detail\":\"SBP.AEF.RIFLEMEN_SQUAD_VETERAN_MP\"},{\"id\":\"SBP.AEF.T34_CALLIOPE_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.T34_CALLIOPE_SQUAD_MP\",\"documentation\":\"SBP.AEF.T34_CALLIOPE_SQUAD_MP\",\"detail\":\"SBP.AEF.T34_CALLIOPE_SQUAD_MP\"},{\"id\":\"SBP.AEF.USF_MEDIC_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.USF_MEDIC_SQUAD_MP\",\"documentation\":\"SBP.AEF.USF_MEDIC_SQUAD_MP\",\"detail\":\"SBP.AEF.USF_MEDIC_SQUAD_MP\"},{\"id\":\"SBP.AEF.VEHICLE_CREW_BAZOOKA_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.VEHICLE_CREW_BAZOOKA_SQUAD_MP\",\"documentation\":\"SBP.AEF.VEHICLE_CREW_BAZOOKA_SQUAD_MP\",\"detail\":\"SBP.AEF.VEHICLE_CREW_BAZOOKA_SQUAD_MP\"},{\"id\":\"SBP.AEF.VEHICLE_CREW_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.AEF.VEHICLE_CREW_SQUAD_MP\",\"documentation\":\"SBP.AEF.VEHICLE_CREW_SQUAD_MP\",\"detail\":\"SBP.AEF.VEHICLE_CREW_SQUAD_MP\"},{\"id\":\"ABILITY.AEF.ACTIVATE_REPAIR_STATION_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.ACTIVATE_REPAIR_STATION_MP\",\"documentation\":\"ABILITY.AEF.ACTIVATE_REPAIR_STATION_MP\",\"detail\":\"ABILITY.AEF.ACTIVATE_REPAIR_STATION_MP\"},{\"id\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_ASSUALT_ENGINEERS_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_ASSUALT_ENGINEERS_MP\",\"documentation\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_ASSUALT_ENGINEERS_MP\",\"detail\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_ASSUALT_ENGINEERS_MP\"},{\"id\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_MP\",\"documentation\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_MP\",\"detail\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_MP\"},{\"id\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_NO_REQUIREMENT_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_NO_REQUIREMENT_MP\",\"documentation\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_NO_REQUIREMENT_MP\",\"detail\":\"ABILITY.AEF.AEF_BARBED_WIRE_CUTTING_ABILITY_NO_REQUIREMENT_MP\"},{\"id\":\"ABILITY.AEF.AEF_HQ_ENGINEER_CALL_IN\",\"kind\":17,\"label\":\"ABILITY.AEF.AEF_HQ_ENGINEER_CALL_IN\",\"documentation\":\"ABILITY.AEF.AEF_HQ_ENGINEER_CALL_IN\",\"detail\":\"ABILITY.AEF.AEF_HQ_ENGINEER_CALL_IN\"},{\"id\":\"ABILITY.AEF.AEF_REPAIR_ABILITY_REAR_ECHELON_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.AEF_REPAIR_ABILITY_REAR_ECHELON_MP\",\"documentation\":\"ABILITY.AEF.AEF_REPAIR_ABILITY_REAR_ECHELON_MP\",\"detail\":\"ABILITY.AEF.AEF_REPAIR_ABILITY_REAR_ECHELON_MP\"},{\"id\":\"ABILITY.AEF.AEF_REPAIR_ABILITY_VEHICLE_CREW_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.AEF_REPAIR_ABILITY_VEHICLE_CREW_MP\",\"documentation\":\"ABILITY.AEF.AEF_REPAIR_ABILITY_VEHICLE_CREW_MP\",\"detail\":\"ABILITY.AEF.AEF_REPAIR_ABILITY_VEHICLE_CREW_MP\"},{\"id\":\"ABILITY.AEF.AEF_REPAIR_CRITICAL_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.AEF_REPAIR_CRITICAL_MP\",\"documentation\":\"ABILITY.AEF.AEF_REPAIR_CRITICAL_MP\",\"detail\":\"ABILITY.AEF.AEF_REPAIR_CRITICAL_MP\"},{\"id\":\"ABILITY.AEF.AIR_DROP_COMBAT_GROUP\",\"kind\":17,\"label\":\"ABILITY.AEF.AIR_DROP_COMBAT_GROUP\",\"documentation\":\"ABILITY.AEF.AIR_DROP_COMBAT_GROUP\",\"detail\":\"ABILITY.AEF.AIR_DROP_COMBAT_GROUP\"},{\"id\":\"ABILITY.AEF.AMBULANCE_HEAL_AREA\",\"kind\":17,\"label\":\"ABILITY.AEF.AMBULANCE_HEAL_AREA\",\"documentation\":\"ABILITY.AEF.AMBULANCE_HEAL_AREA\",\"detail\":\"ABILITY.AEF.AMBULANCE_HEAL_AREA\"},{\"id\":\"ABILITY.AEF.ARTILLERY_155MM\",\"kind\":17,\"label\":\"ABILITY.AEF.ARTILLERY_155MM\",\"documentation\":\"ABILITY.AEF.ARTILLERY_155MM\",\"detail\":\"ABILITY.AEF.ARTILLERY_155MM\"},{\"id\":\"ABILITY.AEF.ARTILLERY_SMOKE_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.AEF.ARTILLERY_SMOKE_BARRAGE\",\"documentation\":\"ABILITY.AEF.ARTILLERY_SMOKE_BARRAGE\",\"detail\":\"ABILITY.AEF.ARTILLERY_SMOKE_BARRAGE\"},{\"id\":\"ABILITY.AEF.ASSAULT_ENGINEER_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.ASSAULT_ENGINEER_DISPATCH\",\"documentation\":\"ABILITY.AEF.ASSAULT_ENGINEER_DISPATCH\",\"detail\":\"ABILITY.AEF.ASSAULT_ENGINEER_DISPATCH\"},{\"id\":\"ABILITY.AEF.BAR_SUPPRESSION_ABILITY\",\"kind\":17,\"label\":\"ABILITY.AEF.BAR_SUPPRESSION_ABILITY\",\"documentation\":\"ABILITY.AEF.BAR_SUPPRESSION_ABILITY\",\"detail\":\"ABILITY.AEF.BAR_SUPPRESSION_ABILITY\"},{\"id\":\"ABILITY.AEF.BAZOOKA_DEPLOY_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.BAZOOKA_DEPLOY_MP\",\"documentation\":\"ABILITY.AEF.BAZOOKA_DEPLOY_MP\",\"detail\":\"ABILITY.AEF.BAZOOKA_DEPLOY_MP\"},{\"id\":\"ABILITY.AEF.BEACON_DISABLE\",\"kind\":17,\"label\":\"ABILITY.AEF.BEACON_DISABLE\",\"documentation\":\"ABILITY.AEF.BEACON_DISABLE\",\"detail\":\"ABILITY.AEF.BEACON_DISABLE\"},{\"id\":\"ABILITY.AEF.CALLIOPE_ROCKET_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.CALLIOPE_ROCKET_BARRAGE_MP\",\"documentation\":\"ABILITY.AEF.CALLIOPE_ROCKET_BARRAGE_MP\",\"detail\":\"ABILITY.AEF.CALLIOPE_ROCKET_BARRAGE_MP\"},{\"id\":\"ABILITY.AEF.CAPTAIN_SUPERVISE\",\"kind\":17,\"label\":\"ABILITY.AEF.CAPTAIN_SUPERVISE\",\"documentation\":\"ABILITY.AEF.CAPTAIN_SUPERVISE\",\"detail\":\"ABILITY.AEF.CAPTAIN_SUPERVISE\"},{\"id\":\"ABILITY.AEF.CMD_PARATROOPERS_FROM_PATHFINDERS\",\"kind\":17,\"label\":\"ABILITY.AEF.CMD_PARATROOPERS_FROM_PATHFINDERS\",\"documentation\":\"ABILITY.AEF.CMD_PARATROOPERS_FROM_PATHFINDERS\",\"detail\":\"ABILITY.AEF.CMD_PARATROOPERS_FROM_PATHFINDERS\"},{\"id\":\"ABILITY.AEF.COMBAT_ENGINEER_TIMED_DEMO_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.COMBAT_ENGINEER_TIMED_DEMO_MP\",\"documentation\":\"ABILITY.AEF.COMBAT_ENGINEER_TIMED_DEMO_MP\",\"detail\":\"ABILITY.AEF.COMBAT_ENGINEER_TIMED_DEMO_MP\"},{\"id\":\"ABILITY.AEF.COMBINED_ARMS\",\"kind\":17,\"label\":\"ABILITY.AEF.COMBINED_ARMS\",\"documentation\":\"ABILITY.AEF.COMBINED_ARMS\",\"detail\":\"ABILITY.AEF.COMBINED_ARMS\"},{\"id\":\"ABILITY.AEF.DODGE_WC51_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.DODGE_WC51_DISPATCH\",\"documentation\":\"ABILITY.AEF.DODGE_WC51_DISPATCH\",\"detail\":\"ABILITY.AEF.DODGE_WC51_DISPATCH\"},{\"id\":\"ABILITY.AEF.ELITE_RIFLEMEN\",\"kind\":17,\"label\":\"ABILITY.AEF.ELITE_RIFLEMEN\",\"documentation\":\"ABILITY.AEF.ELITE_RIFLEMEN\",\"detail\":\"ABILITY.AEF.ELITE_RIFLEMEN\"},{\"id\":\"ABILITY.AEF.ELITE_VEHICLE_CREWS\",\"kind\":17,\"label\":\"ABILITY.AEF.ELITE_VEHICLE_CREWS\",\"documentation\":\"ABILITY.AEF.ELITE_VEHICLE_CREWS\",\"detail\":\"ABILITY.AEF.ELITE_VEHICLE_CREWS\"},{\"id\":\"ABILITY.AEF.FATALITY_P47_ROCKET_ATTACK\",\"kind\":17,\"label\":\"ABILITY.AEF.FATALITY_P47_ROCKET_ATTACK\",\"documentation\":\"ABILITY.AEF.FATALITY_P47_ROCKET_ATTACK\",\"detail\":\"ABILITY.AEF.FATALITY_P47_ROCKET_ATTACK\"},{\"id\":\"ABILITY.AEF.FATALITY_PARATROOPERS_PARADROP\",\"kind\":17,\"label\":\"ABILITY.AEF.FATALITY_PARATROOPERS_PARADROP\",\"documentation\":\"ABILITY.AEF.FATALITY_PARATROOPERS_PARADROP\",\"detail\":\"ABILITY.AEF.FATALITY_PARATROOPERS_PARADROP\"},{\"id\":\"ABILITY.AEF.FATALITY_SMOKE_FLARES\",\"kind\":17,\"label\":\"ABILITY.AEF.FATALITY_SMOKE_FLARES\",\"documentation\":\"ABILITY.AEF.FATALITY_SMOKE_FLARES\",\"detail\":\"ABILITY.AEF.FATALITY_SMOKE_FLARES\"},{\"id\":\"ABILITY.AEF.FATALITY_WHITE_PHOSPHOROUS_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.AEF.FATALITY_WHITE_PHOSPHOROUS_BARRAGE\",\"documentation\":\"ABILITY.AEF.FATALITY_WHITE_PHOSPHOROUS_BARRAGE\",\"detail\":\"ABILITY.AEF.FATALITY_WHITE_PHOSPHOROUS_BARRAGE\"},{\"id\":\"ABILITY.AEF.FLANKING_SPEED\",\"kind\":17,\"label\":\"ABILITY.AEF.FLANKING_SPEED\",\"documentation\":\"ABILITY.AEF.FLANKING_SPEED\",\"detail\":\"ABILITY.AEF.FLANKING_SPEED\"},{\"id\":\"ABILITY.AEF.FORWARD_OBSERVERS_ALWAYS_ON\",\"kind\":17,\"label\":\"ABILITY.AEF.FORWARD_OBSERVERS_ALWAYS_ON\",\"documentation\":\"ABILITY.AEF.FORWARD_OBSERVERS_ALWAYS_ON\",\"detail\":\"ABILITY.AEF.FORWARD_OBSERVERS_ALWAYS_ON\"},{\"id\":\"ABILITY.AEF.FORWARD_OBSERVERS_UNLOCK_2\",\"kind\":17,\"label\":\"ABILITY.AEF.FORWARD_OBSERVERS_UNLOCK_2\",\"documentation\":\"ABILITY.AEF.FORWARD_OBSERVERS_UNLOCK_2\",\"detail\":\"ABILITY.AEF.FORWARD_OBSERVERS_UNLOCK_2\"},{\"id\":\"ABILITY.AEF.GREYHOUND_RECON_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.GREYHOUND_RECON_DISPATCH\",\"documentation\":\"ABILITY.AEF.GREYHOUND_RECON_DISPATCH\",\"detail\":\"ABILITY.AEF.GREYHOUND_RECON_DISPATCH\"},{\"id\":\"ABILITY.AEF.LIEUTENANT_CAPTAIN_ON_ME_AURA_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.LIEUTENANT_CAPTAIN_ON_ME_AURA_MP\",\"documentation\":\"ABILITY.AEF.LIEUTENANT_CAPTAIN_ON_ME_AURA_MP\",\"detail\":\"ABILITY.AEF.LIEUTENANT_CAPTAIN_ON_ME_AURA_MP\"},{\"id\":\"ABILITY.AEF.M1_81MM_MORTAR_TEAM_MORTAR_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M1_81MM_MORTAR_TEAM_MORTAR_BARRAGE_MP\",\"documentation\":\"ABILITY.AEF.M1_81MM_MORTAR_TEAM_MORTAR_BARRAGE_MP\",\"detail\":\"ABILITY.AEF.M1_81MM_MORTAR_TEAM_MORTAR_BARRAGE_MP\"},{\"id\":\"ABILITY.AEF.M1_81MM_MORTAR_TEAM_SMOKE_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M1_81MM_MORTAR_TEAM_SMOKE_BARRAGE_MP\",\"documentation\":\"ABILITY.AEF.M1_81MM_MORTAR_TEAM_SMOKE_BARRAGE_MP\",\"detail\":\"ABILITY.AEF.M1_81MM_MORTAR_TEAM_SMOKE_BARRAGE_MP\"},{\"id\":\"ABILITY.AEF.M1_81MM_MORTAR_WHITE_PHOSPHOROUS_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M1_81MM_MORTAR_WHITE_PHOSPHOROUS_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.AEF.M1_81MM_MORTAR_WHITE_PHOSPHOROUS_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.AEF.M1_81MM_MORTAR_WHITE_PHOSPHOROUS_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.AEF.M1_ATGUN_PIERCING_ABILITY\",\"kind\":17,\"label\":\"ABILITY.AEF.M1_ATGUN_PIERCING_ABILITY\",\"documentation\":\"ABILITY.AEF.M1_ATGUN_PIERCING_ABILITY\",\"detail\":\"ABILITY.AEF.M1_ATGUN_PIERCING_ABILITY\"},{\"id\":\"ABILITY.AEF.M1_ATGUN_TAKE_AIM_ABILITY\",\"kind\":17,\"label\":\"ABILITY.AEF.M1_ATGUN_TAKE_AIM_ABILITY\",\"documentation\":\"ABILITY.AEF.M1_ATGUN_TAKE_AIM_ABILITY\",\"detail\":\"ABILITY.AEF.M1_ATGUN_TAKE_AIM_ABILITY\"},{\"id\":\"ABILITY.AEF.M10_APCPC_SHELLS\",\"kind\":17,\"label\":\"ABILITY.AEF.M10_APCPC_SHELLS\",\"documentation\":\"ABILITY.AEF.M10_APCPC_SHELLS\",\"detail\":\"ABILITY.AEF.M10_APCPC_SHELLS\"},{\"id\":\"ABILITY.AEF.M10_APCPC_SHELLS_VET\",\"kind\":17,\"label\":\"ABILITY.AEF.M10_APCPC_SHELLS_VET\",\"documentation\":\"ABILITY.AEF.M10_APCPC_SHELLS_VET\",\"detail\":\"ABILITY.AEF.M10_APCPC_SHELLS_VET\"},{\"id\":\"ABILITY.AEF.M10_DEPLOY\",\"kind\":17,\"label\":\"ABILITY.AEF.M10_DEPLOY\",\"documentation\":\"ABILITY.AEF.M10_DEPLOY\",\"detail\":\"ABILITY.AEF.M10_DEPLOY\"},{\"id\":\"ABILITY.AEF.M15A1_AA_MODE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M15A1_AA_MODE_MP\",\"documentation\":\"ABILITY.AEF.M15A1_AA_MODE_MP\",\"detail\":\"ABILITY.AEF.M15A1_AA_MODE_MP\"},{\"id\":\"ABILITY.AEF.M2_60MM_MORTAR_TEAM_MORTAR_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M2_60MM_MORTAR_TEAM_MORTAR_BARRAGE_MP\",\"documentation\":\"ABILITY.AEF.M2_60MM_MORTAR_TEAM_MORTAR_BARRAGE_MP\",\"detail\":\"ABILITY.AEF.M2_60MM_MORTAR_TEAM_MORTAR_BARRAGE_MP\"},{\"id\":\"ABILITY.AEF.M2_60MM_MORTAR_TEAM_SMOKE_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M2_60MM_MORTAR_TEAM_SMOKE_BARRAGE_MP\",\"documentation\":\"ABILITY.AEF.M2_60MM_MORTAR_TEAM_SMOKE_BARRAGE_MP\",\"detail\":\"ABILITY.AEF.M2_60MM_MORTAR_TEAM_SMOKE_BARRAGE_MP\"},{\"id\":\"ABILITY.AEF.M20_MARK_VEHICLE\",\"kind\":17,\"label\":\"ABILITY.AEF.M20_MARK_VEHICLE\",\"documentation\":\"ABILITY.AEF.M20_MARK_VEHICLE\",\"detail\":\"ABILITY.AEF.M20_MARK_VEHICLE\"},{\"id\":\"ABILITY.AEF.M20_SMOKE\",\"kind\":17,\"label\":\"ABILITY.AEF.M20_SMOKE\",\"documentation\":\"ABILITY.AEF.M20_SMOKE\",\"detail\":\"ABILITY.AEF.M20_SMOKE\"},{\"id\":\"ABILITY.AEF.M21_HEAVY_HE_SHORT_DELAY_MORTAR_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M21_HEAVY_HE_SHORT_DELAY_MORTAR_BARRAGE_MP\",\"documentation\":\"ABILITY.AEF.M21_HEAVY_HE_SHORT_DELAY_MORTAR_BARRAGE_MP\",\"detail\":\"ABILITY.AEF.M21_HEAVY_HE_SHORT_DELAY_MORTAR_BARRAGE_MP\"},{\"id\":\"ABILITY.AEF.M21_MORTAR_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M21_MORTAR_BARRAGE_MP\",\"documentation\":\"ABILITY.AEF.M21_MORTAR_BARRAGE_MP\",\"detail\":\"ABILITY.AEF.M21_MORTAR_BARRAGE_MP\"},{\"id\":\"ABILITY.AEF.M21_MORTAR_BARRAGE_VICTOR_TARGET_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M21_MORTAR_BARRAGE_VICTOR_TARGET_MP\",\"documentation\":\"ABILITY.AEF.M21_MORTAR_BARRAGE_VICTOR_TARGET_MP\",\"detail\":\"ABILITY.AEF.M21_MORTAR_BARRAGE_VICTOR_TARGET_MP\"},{\"id\":\"ABILITY.AEF.M21_MORTAR_HALFTRACK_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.M21_MORTAR_HALFTRACK_DISPATCH\",\"documentation\":\"ABILITY.AEF.M21_MORTAR_HALFTRACK_DISPATCH\",\"detail\":\"ABILITY.AEF.M21_MORTAR_HALFTRACK_DISPATCH\"},{\"id\":\"ABILITY.AEF.M21_MORTAR_WHITE_PHOSPHOROUS_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M21_MORTAR_WHITE_PHOSPHOROUS_BARRAGE_MP\",\"documentation\":\"ABILITY.AEF.M21_MORTAR_WHITE_PHOSPHOROUS_BARRAGE_MP\",\"detail\":\"ABILITY.AEF.M21_MORTAR_WHITE_PHOSPHOROUS_BARRAGE_MP\"},{\"id\":\"ABILITY.AEF.M23_SMOKE_STREAM_RIFLE_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M23_SMOKE_STREAM_RIFLE_GRENADE_MP\",\"documentation\":\"ABILITY.AEF.M23_SMOKE_STREAM_RIFLE_GRENADE_MP\",\"detail\":\"ABILITY.AEF.M23_SMOKE_STREAM_RIFLE_GRENADE_MP\"},{\"id\":\"ABILITY.AEF.M23_SMOKE_STREAM_RIFLE_GRENADE_VET_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M23_SMOKE_STREAM_RIFLE_GRENADE_VET_MP\",\"documentation\":\"ABILITY.AEF.M23_SMOKE_STREAM_RIFLE_GRENADE_VET_MP\",\"detail\":\"ABILITY.AEF.M23_SMOKE_STREAM_RIFLE_GRENADE_VET_MP\"},{\"id\":\"ABILITY.AEF.M26_PERSHING_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.M26_PERSHING_DISPATCH\",\"documentation\":\"ABILITY.AEF.M26_PERSHING_DISPATCH\",\"detail\":\"ABILITY.AEF.M26_PERSHING_DISPATCH\"},{\"id\":\"ABILITY.AEF.M2HB_50CAL_AP_ROUNDS_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M2HB_50CAL_AP_ROUNDS_MP\",\"documentation\":\"ABILITY.AEF.M2HB_50CAL_AP_ROUNDS_MP\",\"detail\":\"ABILITY.AEF.M2HB_50CAL_AP_ROUNDS_MP\"},{\"id\":\"ABILITY.AEF.M2HB_HMG_SPRINT_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M2HB_HMG_SPRINT_MP\",\"documentation\":\"ABILITY.AEF.M2HB_HMG_SPRINT_MP\",\"detail\":\"ABILITY.AEF.M2HB_HMG_SPRINT_MP\"},{\"id\":\"ABILITY.AEF.M3_HALFTRACK_GROUP\",\"kind\":17,\"label\":\"ABILITY.AEF.M3_HALFTRACK_GROUP\",\"documentation\":\"ABILITY.AEF.M3_HALFTRACK_GROUP\",\"detail\":\"ABILITY.AEF.M3_HALFTRACK_GROUP\"},{\"id\":\"ABILITY.AEF.M3_HALFTRACK_SPEED_BOOST_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M3_HALFTRACK_SPEED_BOOST_MP\",\"documentation\":\"ABILITY.AEF.M3_HALFTRACK_SPEED_BOOST_MP\",\"detail\":\"ABILITY.AEF.M3_HALFTRACK_SPEED_BOOST_MP\"},{\"id\":\"ABILITY.AEF.M36_M8_CONCEALING_SMOKE_VET\",\"kind\":17,\"label\":\"ABILITY.AEF.M36_M8_CONCEALING_SMOKE_VET\",\"documentation\":\"ABILITY.AEF.M36_M8_CONCEALING_SMOKE_VET\",\"detail\":\"ABILITY.AEF.M36_M8_CONCEALING_SMOKE_VET\"},{\"id\":\"ABILITY.AEF.M5_QUAD_HALFTRACK_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.M5_QUAD_HALFTRACK_DISPATCH\",\"documentation\":\"ABILITY.AEF.M5_QUAD_HALFTRACK_DISPATCH\",\"detail\":\"ABILITY.AEF.M5_QUAD_HALFTRACK_DISPATCH\"},{\"id\":\"ABILITY.AEF.M5_STUART_DAMAGE_ENGINE\",\"kind\":17,\"label\":\"ABILITY.AEF.M5_STUART_DAMAGE_ENGINE\",\"documentation\":\"ABILITY.AEF.M5_STUART_DAMAGE_ENGINE\",\"detail\":\"ABILITY.AEF.M5_STUART_DAMAGE_ENGINE\"},{\"id\":\"ABILITY.AEF.M5_STUART_SHELL_SHOCK\",\"kind\":17,\"label\":\"ABILITY.AEF.M5_STUART_SHELL_SHOCK\",\"documentation\":\"ABILITY.AEF.M5_STUART_SHELL_SHOCK\",\"detail\":\"ABILITY.AEF.M5_STUART_SHELL_SHOCK\"},{\"id\":\"ABILITY.AEF.M7B1_PRIEST_105MM_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M7B1_PRIEST_105MM_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.AEF.M7B1_PRIEST_105MM_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.AEF.M7B1_PRIEST_105MM_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.AEF.M7B1_PRIEST_105MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M7B1_PRIEST_105MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"documentation\":\"ABILITY.AEF.M7B1_PRIEST_105MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"detail\":\"ABILITY.AEF.M7B1_PRIEST_105MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\"},{\"id\":\"ABILITY.AEF.M7B1_PRIEST_105MM_SMOKE_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M7B1_PRIEST_105MM_SMOKE_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.AEF.M7B1_PRIEST_105MM_SMOKE_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.AEF.M7B1_PRIEST_105MM_SMOKE_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.AEF.M8_CANISTER_SHOT\",\"kind\":17,\"label\":\"ABILITY.AEF.M8_CANISTER_SHOT\",\"documentation\":\"ABILITY.AEF.M8_CANISTER_SHOT\",\"detail\":\"ABILITY.AEF.M8_CANISTER_SHOT\"},{\"id\":\"ABILITY.AEF.M8_LAY_HEAVY_MINE\",\"kind\":17,\"label\":\"ABILITY.AEF.M8_LAY_HEAVY_MINE\",\"documentation\":\"ABILITY.AEF.M8_LAY_HEAVY_MINE\",\"detail\":\"ABILITY.AEF.M8_LAY_HEAVY_MINE\"},{\"id\":\"ABILITY.AEF.M8A1_HMC_75MM_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M8A1_HMC_75MM_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.AEF.M8A1_HMC_75MM_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.AEF.M8A1_HMC_75MM_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.AEF.M8A1_HMC_75MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M8A1_HMC_75MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"documentation\":\"ABILITY.AEF.M8A1_HMC_75MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"detail\":\"ABILITY.AEF.M8A1_HMC_75MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\"},{\"id\":\"ABILITY.AEF.M8A1_HMC_SMOKE_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.M8A1_HMC_SMOKE_BARRAGE_MP\",\"documentation\":\"ABILITY.AEF.M8A1_HMC_SMOKE_BARRAGE_MP\",\"detail\":\"ABILITY.AEF.M8A1_HMC_SMOKE_BARRAGE_MP\"},{\"id\":\"ABILITY.AEF.MAJOR_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.AEF.MAJOR_ARTILLERY\",\"documentation\":\"ABILITY.AEF.MAJOR_ARTILLERY\",\"detail\":\"ABILITY.AEF.MAJOR_ARTILLERY\"},{\"id\":\"ABILITY.AEF.MAJOR_ARTILLERY_FAKE\",\"kind\":17,\"label\":\"ABILITY.AEF.MAJOR_ARTILLERY_FAKE\",\"documentation\":\"ABILITY.AEF.MAJOR_ARTILLERY_FAKE\",\"detail\":\"ABILITY.AEF.MAJOR_ARTILLERY_FAKE\"},{\"id\":\"ABILITY.AEF.MAJOR_QUICK_RECON_RUN\",\"kind\":17,\"label\":\"ABILITY.AEF.MAJOR_QUICK_RECON_RUN\",\"documentation\":\"ABILITY.AEF.MAJOR_QUICK_RECON_RUN\",\"detail\":\"ABILITY.AEF.MAJOR_QUICK_RECON_RUN\"},{\"id\":\"ABILITY.AEF.MAJOR_QUICK_RECON_RUN_IMPROVED\",\"kind\":17,\"label\":\"ABILITY.AEF.MAJOR_QUICK_RECON_RUN_IMPROVED\",\"documentation\":\"ABILITY.AEF.MAJOR_QUICK_RECON_RUN_IMPROVED\",\"detail\":\"ABILITY.AEF.MAJOR_QUICK_RECON_RUN_IMPROVED\"},{\"id\":\"ABILITY.AEF.MEDIC_AUTO_HEAL\",\"kind\":17,\"label\":\"ABILITY.AEF.MEDIC_AUTO_HEAL\",\"documentation\":\"ABILITY.AEF.MEDIC_AUTO_HEAL\",\"detail\":\"ABILITY.AEF.MEDIC_AUTO_HEAL\"},{\"id\":\"ABILITY.AEF.MK2_FRAGMENTATION_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.MK2_FRAGMENTATION_GRENADE_MP\",\"documentation\":\"ABILITY.AEF.MK2_FRAGMENTATION_GRENADE_MP\",\"detail\":\"ABILITY.AEF.MK2_FRAGMENTATION_GRENADE_MP\"},{\"id\":\"ABILITY.AEF.OFF_MAP_SMOKE_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.AEF.OFF_MAP_SMOKE_ARTILLERY\",\"documentation\":\"ABILITY.AEF.OFF_MAP_SMOKE_ARTILLERY\",\"detail\":\"ABILITY.AEF.OFF_MAP_SMOKE_ARTILLERY\"},{\"id\":\"ABILITY.AEF.OFFICER_RETREAT_POINT_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.OFFICER_RETREAT_POINT_MP\",\"documentation\":\"ABILITY.AEF.OFFICER_RETREAT_POINT_MP\",\"detail\":\"ABILITY.AEF.OFFICER_RETREAT_POINT_MP\"},{\"id\":\"ABILITY.AEF.OFFICER_STOP_RETREAT_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.OFFICER_STOP_RETREAT_MP\",\"documentation\":\"ABILITY.AEF.OFFICER_STOP_RETREAT_MP\",\"detail\":\"ABILITY.AEF.OFFICER_STOP_RETREAT_MP\"},{\"id\":\"ABILITY.AEF.OUT_OF_FUEL_SP\",\"kind\":17,\"label\":\"ABILITY.AEF.OUT_OF_FUEL_SP\",\"documentation\":\"ABILITY.AEF.OUT_OF_FUEL_SP\",\"detail\":\"ABILITY.AEF.OUT_OF_FUEL_SP\"},{\"id\":\"ABILITY.AEF.P47_RECON_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.P47_RECON_MP\",\"documentation\":\"ABILITY.AEF.P47_RECON_MP\",\"detail\":\"ABILITY.AEF.P47_RECON_MP\"},{\"id\":\"ABILITY.AEF.P47_ROCKET_ATTACK\",\"kind\":17,\"label\":\"ABILITY.AEF.P47_ROCKET_ATTACK\",\"documentation\":\"ABILITY.AEF.P47_ROCKET_ATTACK\",\"detail\":\"ABILITY.AEF.P47_ROCKET_ATTACK\"},{\"id\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_HEAT_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_HEAT_MP\",\"documentation\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_HEAT_MP\",\"detail\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_HEAT_MP\"},{\"id\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_VET3_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_VET3_MP\",\"documentation\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_VET3_MP\",\"detail\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_VET3_MP\"},{\"id\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"documentation\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"detail\":\"ABILITY.AEF.PACK_HOWITZER_75MM_BARRAGE_ABILITY_VICTOR_TARGET_MP\"},{\"id\":\"ABILITY.AEF.PACK_HOWITZER_WHITE_PHOSPHOROUS_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PACK_HOWITZER_WHITE_PHOSPHOROUS_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.AEF.PACK_HOWITZER_WHITE_PHOSPHOROUS_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.AEF.PACK_HOWITZER_WHITE_PHOSPHOROUS_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.AEF.PARADROP_MACHINE_GUN\",\"kind\":17,\"label\":\"ABILITY.AEF.PARADROP_MACHINE_GUN\",\"documentation\":\"ABILITY.AEF.PARADROP_MACHINE_GUN\",\"detail\":\"ABILITY.AEF.PARADROP_MACHINE_GUN\"},{\"id\":\"ABILITY.AEF.PARADROPS_ANTI_TANK_GUN\",\"kind\":17,\"label\":\"ABILITY.AEF.PARADROPS_ANTI_TANK_GUN\",\"documentation\":\"ABILITY.AEF.PARADROPS_ANTI_TANK_GUN\",\"detail\":\"ABILITY.AEF.PARADROPS_ANTI_TANK_GUN\"},{\"id\":\"ABILITY.AEF.PARATROOPER_ASSAULT_MOVE_TEST_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PARATROOPER_ASSAULT_MOVE_TEST_MP\",\"documentation\":\"ABILITY.AEF.PARATROOPER_ASSAULT_MOVE_TEST_MP\",\"detail\":\"ABILITY.AEF.PARATROOPER_ASSAULT_MOVE_TEST_MP\"},{\"id\":\"ABILITY.AEF.PARATROOPER_MK2_FRAGMENTATION_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PARATROOPER_MK2_FRAGMENTATION_GRENADE_MP\",\"documentation\":\"ABILITY.AEF.PARATROOPER_MK2_FRAGMENTATION_GRENADE_MP\",\"detail\":\"ABILITY.AEF.PARATROOPER_MK2_FRAGMENTATION_GRENADE_MP\"},{\"id\":\"ABILITY.AEF.PARATROOPER_SUPPRESSING_FIRE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PARATROOPER_SUPPRESSING_FIRE_ABILITY_MP\",\"documentation\":\"ABILITY.AEF.PARATROOPER_SUPPRESSING_FIRE_ABILITY_MP\",\"detail\":\"ABILITY.AEF.PARATROOPER_SUPPRESSING_FIRE_ABILITY_MP\"},{\"id\":\"ABILITY.AEF.PARATROOPER_TIMED_DEMO_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PARATROOPER_TIMED_DEMO_MP\",\"documentation\":\"ABILITY.AEF.PARATROOPER_TIMED_DEMO_MP\",\"detail\":\"ABILITY.AEF.PARATROOPER_TIMED_DEMO_MP\"},{\"id\":\"ABILITY.AEF.PARATROOPERS_PARADROP\",\"kind\":17,\"label\":\"ABILITY.AEF.PARATROOPERS_PARADROP\",\"documentation\":\"ABILITY.AEF.PARATROOPERS_PARADROP\",\"detail\":\"ABILITY.AEF.PARATROOPERS_PARADROP\"},{\"id\":\"ABILITY.AEF.PATHFINDER_ARTILLERY_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.AEF.PATHFINDER_ARTILLERY_UNLOCK\",\"documentation\":\"ABILITY.AEF.PATHFINDER_ARTILLERY_UNLOCK\",\"detail\":\"ABILITY.AEF.PATHFINDER_ARTILLERY_UNLOCK\"},{\"id\":\"ABILITY.AEF.PATHFINDER_IN_COVER_STATIONARY_CAMOUFLAGE_IMPROVED_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PATHFINDER_IN_COVER_STATIONARY_CAMOUFLAGE_IMPROVED_MP\",\"documentation\":\"ABILITY.AEF.PATHFINDER_IN_COVER_STATIONARY_CAMOUFLAGE_IMPROVED_MP\",\"detail\":\"ABILITY.AEF.PATHFINDER_IN_COVER_STATIONARY_CAMOUFLAGE_IMPROVED_MP\"},{\"id\":\"ABILITY.AEF.PATHFINDER_IN_COVER_STATIONARY_CAMOUFLAGE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PATHFINDER_IN_COVER_STATIONARY_CAMOUFLAGE_MP\",\"documentation\":\"ABILITY.AEF.PATHFINDER_IN_COVER_STATIONARY_CAMOUFLAGE_MP\",\"detail\":\"ABILITY.AEF.PATHFINDER_IN_COVER_STATIONARY_CAMOUFLAGE_MP\"},{\"id\":\"ABILITY.AEF.PATHFINDER_PLANT_BEACON\",\"kind\":17,\"label\":\"ABILITY.AEF.PATHFINDER_PLANT_BEACON\",\"documentation\":\"ABILITY.AEF.PATHFINDER_PLANT_BEACON\",\"detail\":\"ABILITY.AEF.PATHFINDER_PLANT_BEACON\"},{\"id\":\"ABILITY.AEF.PATHFINDERS_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.PATHFINDERS_DISPATCH\",\"documentation\":\"ABILITY.AEF.PATHFINDERS_DISPATCH\",\"detail\":\"ABILITY.AEF.PATHFINDERS_DISPATCH\"},{\"id\":\"ABILITY.AEF.PATHFINDERS_RECON_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.PATHFINDERS_RECON_DISPATCH\",\"documentation\":\"ABILITY.AEF.PATHFINDERS_RECON_DISPATCH\",\"detail\":\"ABILITY.AEF.PATHFINDERS_RECON_DISPATCH\"},{\"id\":\"ABILITY.AEF.PERSHING_HVAP_PIERCING_SHOT_ABILITY\",\"kind\":17,\"label\":\"ABILITY.AEF.PERSHING_HVAP_PIERCING_SHOT_ABILITY\",\"documentation\":\"ABILITY.AEF.PERSHING_HVAP_PIERCING_SHOT_ABILITY\",\"detail\":\"ABILITY.AEF.PERSHING_HVAP_PIERCING_SHOT_ABILITY\"},{\"id\":\"ABILITY.AEF.PRIEST_ARTILLERY_BARRAGE_CREEPING_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.PRIEST_ARTILLERY_BARRAGE_CREEPING_MP\",\"documentation\":\"ABILITY.AEF.PRIEST_ARTILLERY_BARRAGE_CREEPING_MP\",\"detail\":\"ABILITY.AEF.PRIEST_ARTILLERY_BARRAGE_CREEPING_MP\"},{\"id\":\"ABILITY.AEF.PRIEST_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.PRIEST_DISPATCH\",\"documentation\":\"ABILITY.AEF.PRIEST_DISPATCH\",\"detail\":\"ABILITY.AEF.PRIEST_DISPATCH\"},{\"id\":\"ABILITY.AEF.RANGER_BUNDLED_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.RANGER_BUNDLED_GRENADE_MP\",\"documentation\":\"ABILITY.AEF.RANGER_BUNDLED_GRENADE_MP\",\"detail\":\"ABILITY.AEF.RANGER_BUNDLED_GRENADE_MP\"},{\"id\":\"ABILITY.AEF.RANGER_LIMITED_DEMO_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.RANGER_LIMITED_DEMO_MP\",\"documentation\":\"ABILITY.AEF.RANGER_LIMITED_DEMO_MP\",\"detail\":\"ABILITY.AEF.RANGER_LIMITED_DEMO_MP\"},{\"id\":\"ABILITY.AEF.RANGER_MK2_FRAGMENTATION_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.RANGER_MK2_FRAGMENTATION_GRENADE_MP\",\"documentation\":\"ABILITY.AEF.RANGER_MK2_FRAGMENTATION_GRENADE_MP\",\"detail\":\"ABILITY.AEF.RANGER_MK2_FRAGMENTATION_GRENADE_MP\"},{\"id\":\"ABILITY.AEF.RANGER_SPRINT_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.RANGER_SPRINT_MP\",\"documentation\":\"ABILITY.AEF.RANGER_SPRINT_MP\",\"detail\":\"ABILITY.AEF.RANGER_SPRINT_MP\"},{\"id\":\"ABILITY.AEF.RANGERS_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.RANGERS_DISPATCH\",\"documentation\":\"ABILITY.AEF.RANGERS_DISPATCH\",\"detail\":\"ABILITY.AEF.RANGERS_DISPATCH\"},{\"id\":\"ABILITY.AEF.REAR_ECHELON_VOLLEY_FIRE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.REAR_ECHELON_VOLLEY_FIRE_ABILITY_MP\",\"documentation\":\"ABILITY.AEF.REAR_ECHELON_VOLLEY_FIRE_ABILITY_MP\",\"detail\":\"ABILITY.AEF.REAR_ECHELON_VOLLEY_FIRE_ABILITY_MP\"},{\"id\":\"ABILITY.AEF.RECON_SWEEP\",\"kind\":17,\"label\":\"ABILITY.AEF.RECON_SWEEP\",\"documentation\":\"ABILITY.AEF.RECON_SWEEP\",\"detail\":\"ABILITY.AEF.RECON_SWEEP\"},{\"id\":\"ABILITY.AEF.REFUEL_TANK_SP\",\"kind\":17,\"label\":\"ABILITY.AEF.REFUEL_TANK_SP\",\"documentation\":\"ABILITY.AEF.REFUEL_TANK_SP\",\"detail\":\"ABILITY.AEF.REFUEL_TANK_SP\"},{\"id\":\"ABILITY.AEF.RIFLEMAN_AT_RIFLE_GRENADE_VET\",\"kind\":17,\"label\":\"ABILITY.AEF.RIFLEMAN_AT_RIFLE_GRENADE_VET\",\"documentation\":\"ABILITY.AEF.RIFLEMAN_AT_RIFLE_GRENADE_VET\",\"detail\":\"ABILITY.AEF.RIFLEMAN_AT_RIFLE_GRENADE_VET\"},{\"id\":\"ABILITY.AEF.RIFLEMAN_FIRE_UP\",\"kind\":17,\"label\":\"ABILITY.AEF.RIFLEMAN_FIRE_UP\",\"documentation\":\"ABILITY.AEF.RIFLEMAN_FIRE_UP\",\"detail\":\"ABILITY.AEF.RIFLEMAN_FIRE_UP\"},{\"id\":\"ABILITY.AEF.RIFLEMAN_FIRE_UP_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.RIFLEMAN_FIRE_UP_MP\",\"documentation\":\"ABILITY.AEF.RIFLEMAN_FIRE_UP_MP\",\"detail\":\"ABILITY.AEF.RIFLEMAN_FIRE_UP_MP\"},{\"id\":\"ABILITY.AEF.RIFLEMEN_30_CALIBER_LMG\",\"kind\":17,\"label\":\"ABILITY.AEF.RIFLEMEN_30_CALIBER_LMG\",\"documentation\":\"ABILITY.AEF.RIFLEMEN_30_CALIBER_LMG\",\"detail\":\"ABILITY.AEF.RIFLEMEN_30_CALIBER_LMG\"},{\"id\":\"ABILITY.AEF.RIFLEMEN_DEFENSIVE\",\"kind\":17,\"label\":\"ABILITY.AEF.RIFLEMEN_DEFENSIVE\",\"documentation\":\"ABILITY.AEF.RIFLEMEN_DEFENSIVE\",\"detail\":\"ABILITY.AEF.RIFLEMEN_DEFENSIVE\"},{\"id\":\"ABILITY.AEF.RIFLEMEN_DEFENSIVE_BUILDINGS\",\"kind\":17,\"label\":\"ABILITY.AEF.RIFLEMEN_DEFENSIVE_BUILDINGS\",\"documentation\":\"ABILITY.AEF.RIFLEMEN_DEFENSIVE_BUILDINGS\",\"detail\":\"ABILITY.AEF.RIFLEMEN_DEFENSIVE_BUILDINGS\"},{\"id\":\"ABILITY.AEF.RIFLEMEN_FIRE_FLARES_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.RIFLEMEN_FIRE_FLARES_ABILITY_MP\",\"documentation\":\"ABILITY.AEF.RIFLEMEN_FIRE_FLARES_ABILITY_MP\",\"detail\":\"ABILITY.AEF.RIFLEMEN_FIRE_FLARES_ABILITY_MP\"},{\"id\":\"ABILITY.AEF.RIFLEMEN_FLAMETHROWERS\",\"kind\":17,\"label\":\"ABILITY.AEF.RIFLEMEN_FLAMETHROWERS\",\"documentation\":\"ABILITY.AEF.RIFLEMEN_FLAMETHROWERS\",\"detail\":\"ABILITY.AEF.RIFLEMEN_FLAMETHROWERS\"},{\"id\":\"ABILITY.AEF.RIFLEMEN_FLARES\",\"kind\":17,\"label\":\"ABILITY.AEF.RIFLEMEN_FLARES\",\"documentation\":\"ABILITY.AEF.RIFLEMEN_FLARES\",\"detail\":\"ABILITY.AEF.RIFLEMEN_FLARES\"},{\"id\":\"ABILITY.AEF.SHERMAN_AMMO_SWITCH_AP_SHELL_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.SHERMAN_AMMO_SWITCH_AP_SHELL_MP\",\"documentation\":\"ABILITY.AEF.SHERMAN_AMMO_SWITCH_AP_SHELL_MP\",\"detail\":\"ABILITY.AEF.SHERMAN_AMMO_SWITCH_AP_SHELL_MP\"},{\"id\":\"ABILITY.AEF.SHERMAN_AMMO_SWITCH_HE_SHELL_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.SHERMAN_AMMO_SWITCH_HE_SHELL_MP\",\"documentation\":\"ABILITY.AEF.SHERMAN_AMMO_SWITCH_HE_SHELL_MP\",\"detail\":\"ABILITY.AEF.SHERMAN_AMMO_SWITCH_HE_SHELL_MP\"},{\"id\":\"ABILITY.AEF.SHERMAN_BULLDOZER_CONSTRUCT_BARRIER_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.SHERMAN_BULLDOZER_CONSTRUCT_BARRIER_MP\",\"documentation\":\"ABILITY.AEF.SHERMAN_BULLDOZER_CONSTRUCT_BARRIER_MP\",\"detail\":\"ABILITY.AEF.SHERMAN_BULLDOZER_CONSTRUCT_BARRIER_MP\"},{\"id\":\"ABILITY.AEF.SHERMAN_BULLDOZER_DESTROY_BARRIER_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.SHERMAN_BULLDOZER_DESTROY_BARRIER_MP\",\"documentation\":\"ABILITY.AEF.SHERMAN_BULLDOZER_DESTROY_BARRIER_MP\",\"detail\":\"ABILITY.AEF.SHERMAN_BULLDOZER_DESTROY_BARRIER_MP\"},{\"id\":\"ABILITY.AEF.SHERMAN_BULLDOZER_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.SHERMAN_BULLDOZER_DISPATCH\",\"documentation\":\"ABILITY.AEF.SHERMAN_BULLDOZER_DISPATCH\",\"detail\":\"ABILITY.AEF.SHERMAN_BULLDOZER_DISPATCH\"},{\"id\":\"ABILITY.AEF.SHERMAN_CALLIOPE_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.SHERMAN_CALLIOPE_DISPATCH\",\"documentation\":\"ABILITY.AEF.SHERMAN_CALLIOPE_DISPATCH\",\"detail\":\"ABILITY.AEF.SHERMAN_CALLIOPE_DISPATCH\"},{\"id\":\"ABILITY.AEF.SHERMAN_EASY8_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.AEF.SHERMAN_EASY8_DISPATCH\",\"documentation\":\"ABILITY.AEF.SHERMAN_EASY8_DISPATCH\",\"detail\":\"ABILITY.AEF.SHERMAN_EASY8_DISPATCH\"},{\"id\":\"ABILITY.AEF.SIEGE_240MM_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.AEF.SIEGE_240MM_BARRAGE\",\"documentation\":\"ABILITY.AEF.SIEGE_240MM_BARRAGE\",\"detail\":\"ABILITY.AEF.SIEGE_240MM_BARRAGE\"},{\"id\":\"ABILITY.AEF.SMOKE_SHERMAN_MORTAR_BARRAGE_BULLDOZER_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.SMOKE_SHERMAN_MORTAR_BARRAGE_BULLDOZER_MP\",\"documentation\":\"ABILITY.AEF.SMOKE_SHERMAN_MORTAR_BARRAGE_BULLDOZER_MP\",\"detail\":\"ABILITY.AEF.SMOKE_SHERMAN_MORTAR_BARRAGE_BULLDOZER_MP\"},{\"id\":\"ABILITY.AEF.SMOKE_SHERMAN_MORTAR_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.SMOKE_SHERMAN_MORTAR_BARRAGE_MP\",\"documentation\":\"ABILITY.AEF.SMOKE_SHERMAN_MORTAR_BARRAGE_MP\",\"detail\":\"ABILITY.AEF.SMOKE_SHERMAN_MORTAR_BARRAGE_MP\"},{\"id\":\"ABILITY.AEF.SP_240MM_OFF_MAP_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.AEF.SP_240MM_OFF_MAP_BARRAGE\",\"documentation\":\"ABILITY.AEF.SP_240MM_OFF_MAP_BARRAGE\",\"detail\":\"ABILITY.AEF.SP_240MM_OFF_MAP_BARRAGE\"},{\"id\":\"ABILITY.AEF.SP_QUICK_RECON_RUN\",\"kind\":17,\"label\":\"ABILITY.AEF.SP_QUICK_RECON_RUN\",\"documentation\":\"ABILITY.AEF.SP_QUICK_RECON_RUN\",\"detail\":\"ABILITY.AEF.SP_QUICK_RECON_RUN\"},{\"id\":\"ABILITY.AEF.SUPPORT_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.AEF.SUPPORT_ARTILLERY\",\"documentation\":\"ABILITY.AEF.SUPPORT_ARTILLERY\",\"detail\":\"ABILITY.AEF.SUPPORT_ARTILLERY\"},{\"id\":\"ABILITY.AEF.SUPPORT_ARTILLERY_DECOY\",\"kind\":17,\"label\":\"ABILITY.AEF.SUPPORT_ARTILLERY_DECOY\",\"documentation\":\"ABILITY.AEF.SUPPORT_ARTILLERY_DECOY\",\"detail\":\"ABILITY.AEF.SUPPORT_ARTILLERY_DECOY\"},{\"id\":\"ABILITY.AEF.TANK_RIDERS_AUTO_UNLOAD_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.TANK_RIDERS_AUTO_UNLOAD_MP\",\"documentation\":\"ABILITY.AEF.TANK_RIDERS_AUTO_UNLOAD_MP\",\"detail\":\"ABILITY.AEF.TANK_RIDERS_AUTO_UNLOAD_MP\"},{\"id\":\"ABILITY.AEF.TIME_ON_TARGET_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.AEF.TIME_ON_TARGET_ARTILLERY\",\"documentation\":\"ABILITY.AEF.TIME_ON_TARGET_ARTILLERY\",\"detail\":\"ABILITY.AEF.TIME_ON_TARGET_ARTILLERY\"},{\"id\":\"ABILITY.AEF.USF_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.USF_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.AEF.USF_HOLD_FIRE_MP\",\"detail\":\"ABILITY.AEF.USF_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.AEF.USF_HOLD_FIRE_PACK_HOWITZER_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.USF_HOLD_FIRE_PACK_HOWITZER_MP\",\"documentation\":\"ABILITY.AEF.USF_HOLD_FIRE_PACK_HOWITZER_MP\",\"detail\":\"ABILITY.AEF.USF_HOLD_FIRE_PACK_HOWITZER_MP\"},{\"id\":\"ABILITY.AEF.USF_MEDIC_HEAL_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.USF_MEDIC_HEAL_MP\",\"documentation\":\"ABILITY.AEF.USF_MEDIC_HEAL_MP\",\"detail\":\"ABILITY.AEF.USF_MEDIC_HEAL_MP\"},{\"id\":\"ABILITY.AEF.USF_SHERMAN_BULLDOZER_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.USF_SHERMAN_BULLDOZER_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.AEF.USF_SHERMAN_BULLDOZER_HOLD_FIRE_MP\",\"detail\":\"ABILITY.AEF.USF_SHERMAN_BULLDOZER_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.AEF.USF_STRAFING_RUN\",\"kind\":17,\"label\":\"ABILITY.AEF.USF_STRAFING_RUN\",\"documentation\":\"ABILITY.AEF.USF_STRAFING_RUN\",\"detail\":\"ABILITY.AEF.USF_STRAFING_RUN\"},{\"id\":\"ABILITY.AEF.USF_VEHICLE_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.USF_VEHICLE_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.AEF.USF_VEHICLE_HOLD_FIRE_MP\",\"detail\":\"ABILITY.AEF.USF_VEHICLE_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.AEF.VEHICLE_CREW_AUTO_REPAIR\",\"kind\":17,\"label\":\"ABILITY.AEF.VEHICLE_CREW_AUTO_REPAIR\",\"documentation\":\"ABILITY.AEF.VEHICLE_CREW_AUTO_REPAIR\",\"detail\":\"ABILITY.AEF.VEHICLE_CREW_AUTO_REPAIR\"},{\"id\":\"ABILITY.AEF.VEHICLE_DECREW_GENERIC_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.VEHICLE_DECREW_GENERIC_MP\",\"documentation\":\"ABILITY.AEF.VEHICLE_DECREW_GENERIC_MP\",\"detail\":\"ABILITY.AEF.VEHICLE_DECREW_GENERIC_MP\"},{\"id\":\"ABILITY.AEF.VEHICLE_DECREW_M20_CREW_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.VEHICLE_DECREW_M20_CREW_MP\",\"documentation\":\"ABILITY.AEF.VEHICLE_DECREW_M20_CREW_MP\",\"detail\":\"ABILITY.AEF.VEHICLE_DECREW_M20_CREW_MP\"},{\"id\":\"ABILITY.AEF.VEHICLE_DECREW_MEDICS_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.VEHICLE_DECREW_MEDICS_MP\",\"documentation\":\"ABILITY.AEF.VEHICLE_DECREW_MEDICS_MP\",\"detail\":\"ABILITY.AEF.VEHICLE_DECREW_MEDICS_MP\"},{\"id\":\"ABILITY.AEF.VEHICLE_DECREW_VEHICLE_CREW_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.VEHICLE_DECREW_VEHICLE_CREW_MP\",\"documentation\":\"ABILITY.AEF.VEHICLE_DECREW_VEHICLE_CREW_MP\",\"detail\":\"ABILITY.AEF.VEHICLE_DECREW_VEHICLE_CREW_MP\"},{\"id\":\"ABILITY.AEF.WC51_SPEED_BOOST_MP\",\"kind\":17,\"label\":\"ABILITY.AEF.WC51_SPEED_BOOST_MP\",\"documentation\":\"ABILITY.AEF.WC51_SPEED_BOOST_MP\",\"detail\":\"ABILITY.AEF.WC51_SPEED_BOOST_MP\"},{\"id\":\"ABILITY.AEF.WITHDRAW_AND_REFIT\",\"kind\":17,\"label\":\"ABILITY.AEF.WITHDRAW_AND_REFIT\",\"documentation\":\"ABILITY.AEF.WITHDRAW_AND_REFIT\",\"detail\":\"ABILITY.AEF.WITHDRAW_AND_REFIT\"},{\"id\":\"UPG.AEF.ABILITY_LOCK_OUT_CAPTAIN_ABILITIES\",\"kind\":17,\"label\":\"UPG.AEF.ABILITY_LOCK_OUT_CAPTAIN_ABILITIES\",\"documentation\":\"UPG.AEF.ABILITY_LOCK_OUT_CAPTAIN_ABILITIES\",\"detail\":\"UPG.AEF.ABILITY_LOCK_OUT_CAPTAIN_ABILITIES\"},{\"id\":\"UPG.AEF.ABILITY_LOCK_OUT_LIEUTENANT_ABILITIES\",\"kind\":17,\"label\":\"UPG.AEF.ABILITY_LOCK_OUT_LIEUTENANT_ABILITIES\",\"documentation\":\"UPG.AEF.ABILITY_LOCK_OUT_LIEUTENANT_ABILITIES\",\"detail\":\"UPG.AEF.ABILITY_LOCK_OUT_LIEUTENANT_ABILITIES\"},{\"id\":\"UPG.AEF.ABILITY_LOCK_OUT_PARATROOPERS_LANDED\",\"kind\":17,\"label\":\"UPG.AEF.ABILITY_LOCK_OUT_PARATROOPERS_LANDED\",\"documentation\":\"UPG.AEF.ABILITY_LOCK_OUT_PARATROOPERS_LANDED\",\"detail\":\"UPG.AEF.ABILITY_LOCK_OUT_PARATROOPERS_LANDED\"},{\"id\":\"UPG.AEF.ABILITY_REFUEL_LOCKOUT\",\"kind\":17,\"label\":\"UPG.AEF.ABILITY_REFUEL_LOCKOUT\",\"documentation\":\"UPG.AEF.ABILITY_REFUEL_LOCKOUT\",\"detail\":\"UPG.AEF.ABILITY_REFUEL_LOCKOUT\"},{\"id\":\"UPG.AEF.ABILITY_TRANSFER_ORDERS_LOCK_OUT\",\"kind\":17,\"label\":\"UPG.AEF.ABILITY_TRANSFER_ORDERS_LOCK_OUT\",\"documentation\":\"UPG.AEF.ABILITY_TRANSFER_ORDERS_LOCK_OUT\",\"detail\":\"UPG.AEF.ABILITY_TRANSFER_ORDERS_LOCK_OUT\"},{\"id\":\"UPG.AEF.ARTILLERY_155MM\",\"kind\":17,\"label\":\"UPG.AEF.ARTILLERY_155MM\",\"documentation\":\"UPG.AEF.ARTILLERY_155MM\",\"detail\":\"UPG.AEF.ARTILLERY_155MM\"},{\"id\":\"UPG.AEF.ARTILLERY_155MM_BLIND\",\"kind\":17,\"label\":\"UPG.AEF.ARTILLERY_155MM_BLIND\",\"documentation\":\"UPG.AEF.ARTILLERY_155MM_BLIND\",\"detail\":\"UPG.AEF.ARTILLERY_155MM_BLIND\"},{\"id\":\"UPG.AEF.ARTILLERY_WHITE_PHOSPHOROUS\",\"kind\":17,\"label\":\"UPG.AEF.ARTILLERY_WHITE_PHOSPHOROUS\",\"documentation\":\"UPG.AEF.ARTILLERY_WHITE_PHOSPHOROUS\",\"detail\":\"UPG.AEF.ARTILLERY_WHITE_PHOSPHOROUS\"},{\"id\":\"UPG.AEF.ASSAULT_ENGINEER_DISPATCH\",\"kind\":17,\"label\":\"UPG.AEF.ASSAULT_ENGINEER_DISPATCH\",\"documentation\":\"UPG.AEF.ASSAULT_ENGINEER_DISPATCH\",\"detail\":\"UPG.AEF.ASSAULT_ENGINEER_DISPATCH\"},{\"id\":\"UPG.AEF.ASSAULT_ENGINEER_FLAMETHROWER\",\"kind\":17,\"label\":\"UPG.AEF.ASSAULT_ENGINEER_FLAMETHROWER\",\"documentation\":\"UPG.AEF.ASSAULT_ENGINEER_FLAMETHROWER\",\"detail\":\"UPG.AEF.ASSAULT_ENGINEER_FLAMETHROWER\"},{\"id\":\"UPG.AEF.BAR_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.BAR_UPGRADE_MP\",\"documentation\":\"UPG.AEF.BAR_UPGRADE_MP\",\"detail\":\"UPG.AEF.BAR_UPGRADE_MP\"},{\"id\":\"UPG.AEF.BAZOOKA_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.BAZOOKA_UPGRADE_MP\",\"documentation\":\"UPG.AEF.BAZOOKA_UPGRADE_MP\",\"detail\":\"UPG.AEF.BAZOOKA_UPGRADE_MP\"},{\"id\":\"UPG.AEF.CAPTAIN_BAZOOKA_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.CAPTAIN_BAZOOKA_UPGRADE_MP\",\"documentation\":\"UPG.AEF.CAPTAIN_BAZOOKA_UPGRADE_MP\",\"detail\":\"UPG.AEF.CAPTAIN_BAZOOKA_UPGRADE_MP\"},{\"id\":\"UPG.AEF.CAPTAIN_DISPATCHED_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.CAPTAIN_DISPATCHED_UPGRADE_MP\",\"documentation\":\"UPG.AEF.CAPTAIN_DISPATCHED_UPGRADE_MP\",\"detail\":\"UPG.AEF.CAPTAIN_DISPATCHED_UPGRADE_MP\"},{\"id\":\"UPG.AEF.COMBINED_ARMS_MP\",\"kind\":17,\"label\":\"UPG.AEF.COMBINED_ARMS_MP\",\"documentation\":\"UPG.AEF.COMBINED_ARMS_MP\",\"detail\":\"UPG.AEF.COMBINED_ARMS_MP\"},{\"id\":\"UPG.AEF.DODGE_WC51_DISPATCH\",\"kind\":17,\"label\":\"UPG.AEF.DODGE_WC51_DISPATCH\",\"documentation\":\"UPG.AEF.DODGE_WC51_DISPATCH\",\"detail\":\"UPG.AEF.DODGE_WC51_DISPATCH\"},{\"id\":\"UPG.AEF.ELITE_RIFLEMEN\",\"kind\":17,\"label\":\"UPG.AEF.ELITE_RIFLEMEN\",\"documentation\":\"UPG.AEF.ELITE_RIFLEMEN\",\"detail\":\"UPG.AEF.ELITE_RIFLEMEN\"},{\"id\":\"UPG.AEF.ELITE_VEHICLE_CREWS\",\"kind\":17,\"label\":\"UPG.AEF.ELITE_VEHICLE_CREWS\",\"documentation\":\"UPG.AEF.ELITE_VEHICLE_CREWS\",\"detail\":\"UPG.AEF.ELITE_VEHICLE_CREWS\"},{\"id\":\"UPG.AEF.FIGHTING_POSITION_MG_ADDITION_MP\",\"kind\":17,\"label\":\"UPG.AEF.FIGHTING_POSITION_MG_ADDITION_MP\",\"documentation\":\"UPG.AEF.FIGHTING_POSITION_MG_ADDITION_MP\",\"detail\":\"UPG.AEF.FIGHTING_POSITION_MG_ADDITION_MP\"},{\"id\":\"UPG.AEF.FIRE_UP_RIFLEMEN\",\"kind\":17,\"label\":\"UPG.AEF.FIRE_UP_RIFLEMEN\",\"documentation\":\"UPG.AEF.FIRE_UP_RIFLEMEN\",\"detail\":\"UPG.AEF.FIRE_UP_RIFLEMEN\"},{\"id\":\"UPG.AEF.FORWARD_OBSERVERS_UNLOCK\",\"kind\":17,\"label\":\"UPG.AEF.FORWARD_OBSERVERS_UNLOCK\",\"documentation\":\"UPG.AEF.FORWARD_OBSERVERS_UNLOCK\",\"detail\":\"UPG.AEF.FORWARD_OBSERVERS_UNLOCK\"},{\"id\":\"UPG.AEF.GREYHOUND_RECON_DISPATCH\",\"kind\":17,\"label\":\"UPG.AEF.GREYHOUND_RECON_DISPATCH\",\"documentation\":\"UPG.AEF.GREYHOUND_RECON_DISPATCH\",\"detail\":\"UPG.AEF.GREYHOUND_RECON_DISPATCH\"},{\"id\":\"UPG.AEF.LIEUTENANT_DISPATCHED_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.LIEUTENANT_DISPATCHED_UPGRADE_MP\",\"documentation\":\"UPG.AEF.LIEUTENANT_DISPATCHED_UPGRADE_MP\",\"detail\":\"UPG.AEF.LIEUTENANT_DISPATCHED_UPGRADE_MP\"},{\"id\":\"UPG.AEF.M10_DEPLOY\",\"kind\":17,\"label\":\"UPG.AEF.M10_DEPLOY\",\"documentation\":\"UPG.AEF.M10_DEPLOY\",\"detail\":\"UPG.AEF.M10_DEPLOY\"},{\"id\":\"UPG.AEF.M20_SIDE_SKIRTS_MP\",\"kind\":17,\"label\":\"UPG.AEF.M20_SIDE_SKIRTS_MP\",\"documentation\":\"UPG.AEF.M20_SIDE_SKIRTS_MP\",\"detail\":\"UPG.AEF.M20_SIDE_SKIRTS_MP\"},{\"id\":\"UPG.AEF.M21_MORTAR_HALFTRACK_DISPATCH\",\"kind\":17,\"label\":\"UPG.AEF.M21_MORTAR_HALFTRACK_DISPATCH\",\"documentation\":\"UPG.AEF.M21_MORTAR_HALFTRACK_DISPATCH\",\"detail\":\"UPG.AEF.M21_MORTAR_HALFTRACK_DISPATCH\"},{\"id\":\"UPG.AEF.M26_PERSHING_DISPATCH\",\"kind\":17,\"label\":\"UPG.AEF.M26_PERSHING_DISPATCH\",\"documentation\":\"UPG.AEF.M26_PERSHING_DISPATCH\",\"detail\":\"UPG.AEF.M26_PERSHING_DISPATCH\"},{\"id\":\"UPG.AEF.M3_HALFTRACK_GROUP\",\"kind\":17,\"label\":\"UPG.AEF.M3_HALFTRACK_GROUP\",\"documentation\":\"UPG.AEF.M3_HALFTRACK_GROUP\",\"detail\":\"UPG.AEF.M3_HALFTRACK_GROUP\"},{\"id\":\"UPG.AEF.M3_REPAIR_STATION_MP\",\"kind\":17,\"label\":\"UPG.AEF.M3_REPAIR_STATION_MP\",\"documentation\":\"UPG.AEF.M3_REPAIR_STATION_MP\",\"detail\":\"UPG.AEF.M3_REPAIR_STATION_MP\"},{\"id\":\"UPG.AEF.M5_HALFTRACK_DISPATCH\",\"kind\":17,\"label\":\"UPG.AEF.M5_HALFTRACK_DISPATCH\",\"documentation\":\"UPG.AEF.M5_HALFTRACK_DISPATCH\",\"detail\":\"UPG.AEF.M5_HALFTRACK_DISPATCH\"},{\"id\":\"UPG.AEF.M8_GREYHOUND_SIDE_SKIRTS_MP\",\"kind\":17,\"label\":\"UPG.AEF.M8_GREYHOUND_SIDE_SKIRTS_MP\",\"documentation\":\"UPG.AEF.M8_GREYHOUND_SIDE_SKIRTS_MP\",\"detail\":\"UPG.AEF.M8_GREYHOUND_SIDE_SKIRTS_MP\"},{\"id\":\"UPG.AEF.M8_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.AEF.M8_TOP_GUNNER_MP\",\"documentation\":\"UPG.AEF.M8_TOP_GUNNER_MP\",\"detail\":\"UPG.AEF.M8_TOP_GUNNER_MP\"},{\"id\":\"UPG.AEF.MAJOR_DISPATCHED_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.MAJOR_DISPATCHED_UPGRADE_MP\",\"documentation\":\"UPG.AEF.MAJOR_DISPATCHED_UPGRADE_MP\",\"detail\":\"UPG.AEF.MAJOR_DISPATCHED_UPGRADE_MP\"},{\"id\":\"UPG.AEF.MEDIC_AUTO_HEAL_REFRESH\",\"kind\":17,\"label\":\"UPG.AEF.MEDIC_AUTO_HEAL_REFRESH\",\"documentation\":\"UPG.AEF.MEDIC_AUTO_HEAL_REFRESH\",\"detail\":\"UPG.AEF.MEDIC_AUTO_HEAL_REFRESH\"},{\"id\":\"UPG.AEF.MINESWEEPER_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.MINESWEEPER_UPGRADE_MP\",\"documentation\":\"UPG.AEF.MINESWEEPER_UPGRADE_MP\",\"detail\":\"UPG.AEF.MINESWEEPER_UPGRADE_MP\"},{\"id\":\"UPG.AEF.NO_OFFICER_SPAWN_MP\",\"kind\":17,\"label\":\"UPG.AEF.NO_OFFICER_SPAWN_MP\",\"documentation\":\"UPG.AEF.NO_OFFICER_SPAWN_MP\",\"detail\":\"UPG.AEF.NO_OFFICER_SPAWN_MP\"},{\"id\":\"UPG.AEF.OFF_SMOKE_BARRAGE\",\"kind\":17,\"label\":\"UPG.AEF.OFF_SMOKE_BARRAGE\",\"documentation\":\"UPG.AEF.OFF_SMOKE_BARRAGE\",\"detail\":\"UPG.AEF.OFF_SMOKE_BARRAGE\"},{\"id\":\"UPG.AEF.P47_RECON\",\"kind\":17,\"label\":\"UPG.AEF.P47_RECON\",\"documentation\":\"UPG.AEF.P47_RECON\",\"detail\":\"UPG.AEF.P47_RECON\"},{\"id\":\"UPG.AEF.P47_ROCKET_ATTACK\",\"kind\":17,\"label\":\"UPG.AEF.P47_ROCKET_ATTACK\",\"documentation\":\"UPG.AEF.P47_ROCKET_ATTACK\",\"detail\":\"UPG.AEF.P47_ROCKET_ATTACK\"},{\"id\":\"UPG.AEF.PARADROP_ANTI_TANK_GUN\",\"kind\":17,\"label\":\"UPG.AEF.PARADROP_ANTI_TANK_GUN\",\"documentation\":\"UPG.AEF.PARADROP_ANTI_TANK_GUN\",\"detail\":\"UPG.AEF.PARADROP_ANTI_TANK_GUN\"},{\"id\":\"UPG.AEF.PARADROP_MACHINE_GUN\",\"kind\":17,\"label\":\"UPG.AEF.PARADROP_MACHINE_GUN\",\"documentation\":\"UPG.AEF.PARADROP_MACHINE_GUN\",\"detail\":\"UPG.AEF.PARADROP_MACHINE_GUN\"},{\"id\":\"UPG.AEF.PARADROPPED_SUPPORT_DROP\",\"kind\":17,\"label\":\"UPG.AEF.PARADROPPED_SUPPORT_DROP\",\"documentation\":\"UPG.AEF.PARADROPPED_SUPPORT_DROP\",\"detail\":\"UPG.AEF.PARADROPPED_SUPPORT_DROP\"},{\"id\":\"UPG.AEF.PARATROOPER_M1919A6_LMG_MP\",\"kind\":17,\"label\":\"UPG.AEF.PARATROOPER_M1919A6_LMG_MP\",\"documentation\":\"UPG.AEF.PARATROOPER_M1919A6_LMG_MP\",\"detail\":\"UPG.AEF.PARATROOPER_M1919A6_LMG_MP\"},{\"id\":\"UPG.AEF.PARATROOPER_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.PARATROOPER_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\",\"documentation\":\"UPG.AEF.PARATROOPER_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\",\"detail\":\"UPG.AEF.PARATROOPER_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\"},{\"id\":\"UPG.AEF.PARATROOPERS\",\"kind\":17,\"label\":\"UPG.AEF.PARATROOPERS\",\"documentation\":\"UPG.AEF.PARATROOPERS\",\"detail\":\"UPG.AEF.PARATROOPERS\"},{\"id\":\"UPG.AEF.PATHFINDERS\",\"kind\":17,\"label\":\"UPG.AEF.PATHFINDERS\",\"documentation\":\"UPG.AEF.PATHFINDERS\",\"detail\":\"UPG.AEF.PATHFINDERS\"},{\"id\":\"UPG.AEF.PATHFINDERS_RECON\",\"kind\":17,\"label\":\"UPG.AEF.PATHFINDERS_RECON\",\"documentation\":\"UPG.AEF.PATHFINDERS_RECON\",\"detail\":\"UPG.AEF.PATHFINDERS_RECON\"},{\"id\":\"UPG.AEF.PRIEST_DISPATCH\",\"kind\":17,\"label\":\"UPG.AEF.PRIEST_DISPATCH\",\"documentation\":\"UPG.AEF.PRIEST_DISPATCH\",\"detail\":\"UPG.AEF.PRIEST_DISPATCH\"},{\"id\":\"UPG.AEF.RANGER_DISPATCH\",\"kind\":17,\"label\":\"UPG.AEF.RANGER_DISPATCH\",\"documentation\":\"UPG.AEF.RANGER_DISPATCH\",\"detail\":\"UPG.AEF.RANGER_DISPATCH\"},{\"id\":\"UPG.AEF.RANGER_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.RANGER_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\",\"documentation\":\"UPG.AEF.RANGER_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\",\"detail\":\"UPG.AEF.RANGER_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\"},{\"id\":\"UPG.AEF.REAR_ECHELON_HACK_WITHDRAWING\",\"kind\":17,\"label\":\"UPG.AEF.REAR_ECHELON_HACK_WITHDRAWING\",\"documentation\":\"UPG.AEF.REAR_ECHELON_HACK_WITHDRAWING\",\"detail\":\"UPG.AEF.REAR_ECHELON_HACK_WITHDRAWING\"},{\"id\":\"UPG.AEF.RECON_SWEEP\",\"kind\":17,\"label\":\"UPG.AEF.RECON_SWEEP\",\"documentation\":\"UPG.AEF.RECON_SWEEP\",\"detail\":\"UPG.AEF.RECON_SWEEP\"},{\"id\":\"UPG.AEF.RIFLE_COMMAND_GRENADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.RIFLE_COMMAND_GRENADE_MP\",\"documentation\":\"UPG.AEF.RIFLE_COMMAND_GRENADE_MP\",\"detail\":\"UPG.AEF.RIFLE_COMMAND_GRENADE_MP\"},{\"id\":\"UPG.AEF.RIFLEMEN_30_CALIBER_LMG\",\"kind\":17,\"label\":\"UPG.AEF.RIFLEMEN_30_CALIBER_LMG\",\"documentation\":\"UPG.AEF.RIFLEMEN_30_CALIBER_LMG\",\"detail\":\"UPG.AEF.RIFLEMEN_30_CALIBER_LMG\"},{\"id\":\"UPG.AEF.RIFLEMEN_DEFENSIVE_BUILDINGS\",\"kind\":17,\"label\":\"UPG.AEF.RIFLEMEN_DEFENSIVE_BUILDINGS\",\"documentation\":\"UPG.AEF.RIFLEMEN_DEFENSIVE_BUILDINGS\",\"detail\":\"UPG.AEF.RIFLEMEN_DEFENSIVE_BUILDINGS\"},{\"id\":\"UPG.AEF.RIFLEMEN_FLAMETHROWER\",\"kind\":17,\"label\":\"UPG.AEF.RIFLEMEN_FLAMETHROWER\",\"documentation\":\"UPG.AEF.RIFLEMEN_FLAMETHROWER\",\"detail\":\"UPG.AEF.RIFLEMEN_FLAMETHROWER\"},{\"id\":\"UPG.AEF.RIFLEMEN_FLAMETHROWER_UNLOCK\",\"kind\":17,\"label\":\"UPG.AEF.RIFLEMEN_FLAMETHROWER_UNLOCK\",\"documentation\":\"UPG.AEF.RIFLEMEN_FLAMETHROWER_UNLOCK\",\"detail\":\"UPG.AEF.RIFLEMEN_FLAMETHROWER_UNLOCK\"},{\"id\":\"UPG.AEF.RIFLEMEN_FLARES\",\"kind\":17,\"label\":\"UPG.AEF.RIFLEMEN_FLARES\",\"documentation\":\"UPG.AEF.RIFLEMEN_FLARES\",\"detail\":\"UPG.AEF.RIFLEMEN_FLARES\"},{\"id\":\"UPG.AEF.SHERMAN_BULLDOZER_DISPATCH\",\"kind\":17,\"label\":\"UPG.AEF.SHERMAN_BULLDOZER_DISPATCH\",\"documentation\":\"UPG.AEF.SHERMAN_BULLDOZER_DISPATCH\",\"detail\":\"UPG.AEF.SHERMAN_BULLDOZER_DISPATCH\"},{\"id\":\"UPG.AEF.SHERMAN_EASY8_DISPATCH\",\"kind\":17,\"label\":\"UPG.AEF.SHERMAN_EASY8_DISPATCH\",\"documentation\":\"UPG.AEF.SHERMAN_EASY8_DISPATCH\",\"detail\":\"UPG.AEF.SHERMAN_EASY8_DISPATCH\"},{\"id\":\"UPG.AEF.SHERMAN_HE_ROUNDS\",\"kind\":17,\"label\":\"UPG.AEF.SHERMAN_HE_ROUNDS\",\"documentation\":\"UPG.AEF.SHERMAN_HE_ROUNDS\",\"detail\":\"UPG.AEF.SHERMAN_HE_ROUNDS\"},{\"id\":\"UPG.AEF.SHERMAN_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.AEF.SHERMAN_TOP_GUNNER_MP\",\"documentation\":\"UPG.AEF.SHERMAN_TOP_GUNNER_MP\",\"detail\":\"UPG.AEF.SHERMAN_TOP_GUNNER_MP\"},{\"id\":\"UPG.AEF.SIEGE_240MM_ARTILLERY\",\"kind\":17,\"label\":\"UPG.AEF.SIEGE_240MM_ARTILLERY\",\"documentation\":\"UPG.AEF.SIEGE_240MM_ARTILLERY\",\"detail\":\"UPG.AEF.SIEGE_240MM_ARTILLERY\"},{\"id\":\"UPG.AEF.SMOKE_BARRAGE\",\"kind\":17,\"label\":\"UPG.AEF.SMOKE_BARRAGE\",\"documentation\":\"UPG.AEF.SMOKE_BARRAGE\",\"detail\":\"UPG.AEF.SMOKE_BARRAGE\"},{\"id\":\"UPG.AEF.T34_SHERMAN_CALLIOPE_DISPATCH\",\"kind\":17,\"label\":\"UPG.AEF.T34_SHERMAN_CALLIOPE_DISPATCH\",\"documentation\":\"UPG.AEF.T34_SHERMAN_CALLIOPE_DISPATCH\",\"detail\":\"UPG.AEF.T34_SHERMAN_CALLIOPE_DISPATCH\"},{\"id\":\"UPG.AEF.TECH_TREE_V1\",\"kind\":17,\"label\":\"UPG.AEF.TECH_TREE_V1\",\"documentation\":\"UPG.AEF.TECH_TREE_V1\",\"detail\":\"UPG.AEF.TECH_TREE_V1\"},{\"id\":\"UPG.AEF.TEMP_SPAWN_BASE_STAMP_MP\",\"kind\":17,\"label\":\"UPG.AEF.TEMP_SPAWN_BASE_STAMP_MP\",\"documentation\":\"UPG.AEF.TEMP_SPAWN_BASE_STAMP_MP\",\"detail\":\"UPG.AEF.TEMP_SPAWN_BASE_STAMP_MP\"},{\"id\":\"UPG.AEF.TIME_ON_TARGET_ARTILLERY\",\"kind\":17,\"label\":\"UPG.AEF.TIME_ON_TARGET_ARTILLERY\",\"documentation\":\"UPG.AEF.TIME_ON_TARGET_ARTILLERY\",\"detail\":\"UPG.AEF.TIME_ON_TARGET_ARTILLERY\"},{\"id\":\"UPG.AEF.TOP_GUNNER_UPGRADED\",\"kind\":17,\"label\":\"UPG.AEF.TOP_GUNNER_UPGRADED\",\"documentation\":\"UPG.AEF.TOP_GUNNER_UPGRADED\",\"detail\":\"UPG.AEF.TOP_GUNNER_UPGRADED\"},{\"id\":\"UPG.AEF.USF_M5_HALFTRACK_72K_AA_GUN_PACKAGE_MP\",\"kind\":17,\"label\":\"UPG.AEF.USF_M5_HALFTRACK_72K_AA_GUN_PACKAGE_MP\",\"documentation\":\"UPG.AEF.USF_M5_HALFTRACK_72K_AA_GUN_PACKAGE_MP\",\"detail\":\"UPG.AEF.USF_M5_HALFTRACK_72K_AA_GUN_PACKAGE_MP\"},{\"id\":\"UPG.AEF.USF_STRAFING_RUN\",\"kind\":17,\"label\":\"UPG.AEF.USF_STRAFING_RUN\",\"documentation\":\"UPG.AEF.USF_STRAFING_RUN\",\"detail\":\"UPG.AEF.USF_STRAFING_RUN\"},{\"id\":\"UPG.AEF.VEHICLE_CREW_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.VEHICLE_CREW_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\",\"documentation\":\"UPG.AEF.VEHICLE_CREW_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\",\"detail\":\"UPG.AEF.VEHICLE_CREW_THOMPSON_SUB_MACHINE_GUN_UPGRADE_MP\"},{\"id\":\"UPG.AEF.WEAPON_RACK_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.AEF.WEAPON_RACK_UPGRADE_MP\",\"documentation\":\"UPG.AEF.WEAPON_RACK_UPGRADE_MP\",\"detail\":\"UPG.AEF.WEAPON_RACK_UPGRADE_MP\"},{\"id\":\"UPG.AEF.WITHDRAW_AND_REFIT\",\"kind\":17,\"label\":\"UPG.AEF.WITHDRAW_AND_REFIT\",\"documentation\":\"UPG.AEF.WITHDRAW_AND_REFIT\",\"detail\":\"UPG.AEF.WITHDRAW_AND_REFIT\"},{\"id\":\"EBP.BRITISH.AEC_ARMOURED_CAR_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.AEC_ARMOURED_CAR_MP\",\"documentation\":\"EBP.BRITISH.AEC_ARMOURED_CAR_MP\",\"detail\":\"EBP.BRITISH.AEC_ARMOURED_CAR_MP\"},{\"id\":\"EBP.BRITISH.AIR_SUPPORT_OFFICER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.AIR_SUPPORT_OFFICER_MP\",\"documentation\":\"EBP.BRITISH.AIR_SUPPORT_OFFICER_MP\",\"detail\":\"EBP.BRITISH.AIR_SUPPORT_OFFICER_MP\"},{\"id\":\"EBP.BRITISH.AVRE_VEHICLE_CREW_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.AVRE_VEHICLE_CREW_MP\",\"documentation\":\"EBP.BRITISH.AVRE_VEHICLE_CREW_MP\",\"detail\":\"EBP.BRITISH.AVRE_VEHICLE_CREW_MP\"},{\"id\":\"EBP.BRITISH.BRIT_17_POUNDER_GUN_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_17_POUNDER_GUN_MP\",\"documentation\":\"EBP.BRITISH.BRIT_17_POUNDER_GUN_MP\",\"detail\":\"EBP.BRITISH.BRIT_17_POUNDER_GUN_MP\"},{\"id\":\"EBP.BRITISH.BRIT_17_POUNDER_PIT_COMMANDER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_17_POUNDER_PIT_COMMANDER_MP\",\"documentation\":\"EBP.BRITISH.BRIT_17_POUNDER_PIT_COMMANDER_MP\",\"detail\":\"EBP.BRITISH.BRIT_17_POUNDER_PIT_COMMANDER_MP\"},{\"id\":\"EBP.BRITISH.BRIT_17_POUNDER_PIT_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_17_POUNDER_PIT_MP\",\"documentation\":\"EBP.BRITISH.BRIT_17_POUNDER_PIT_MP\",\"detail\":\"EBP.BRITISH.BRIT_17_POUNDER_PIT_MP\"},{\"id\":\"EBP.BRITISH.BRIT_25_POUNDER_HOWITZER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_25_POUNDER_HOWITZER_MP\",\"documentation\":\"EBP.BRITISH.BRIT_25_POUNDER_HOWITZER_MP\",\"detail\":\"EBP.BRITISH.BRIT_25_POUNDER_HOWITZER_MP\"},{\"id\":\"EBP.BRITISH.BRIT_25_POUNDER_HOWITZER_TEMP_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_25_POUNDER_HOWITZER_TEMP_MP\",\"documentation\":\"EBP.BRITISH.BRIT_25_POUNDER_HOWITZER_TEMP_MP\",\"detail\":\"EBP.BRITISH.BRIT_25_POUNDER_HOWITZER_TEMP_MP\"},{\"id\":\"EBP.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT\",\"documentation\":\"EBP.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT\",\"detail\":\"EBP.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT\"},{\"id\":\"EBP.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_COMMANDER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_COMMANDER_MP\",\"documentation\":\"EBP.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_COMMANDER_MP\",\"detail\":\"EBP.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_COMMANDER_MP\"},{\"id\":\"EBP.BRITISH.BRIT_6_POUNDER_AT_GUN_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_6_POUNDER_AT_GUN_MP\",\"documentation\":\"EBP.BRITISH.BRIT_6_POUNDER_AT_GUN_MP\",\"detail\":\"EBP.BRITISH.BRIT_6_POUNDER_AT_GUN_MP\"},{\"id\":\"EBP.BRITISH.BRIT_BARBED_WIRE_FENCE_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_BARBED_WIRE_FENCE_MP\",\"documentation\":\"EBP.BRITISH.BRIT_BARBED_WIRE_FENCE_MP\",\"detail\":\"EBP.BRITISH.BRIT_BARBED_WIRE_FENCE_MP\"},{\"id\":\"EBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_COMMANDER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_COMMANDER_MP\",\"documentation\":\"EBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_COMMANDER_MP\",\"detail\":\"EBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_COMMANDER_MP\"},{\"id\":\"EBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_MP\",\"documentation\":\"EBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_MP\",\"detail\":\"EBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_MP\"},{\"id\":\"EBP.BRITISH.BRIT_EMPLACEMENT_SMALL\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_EMPLACEMENT_SMALL\",\"documentation\":\"EBP.BRITISH.BRIT_EMPLACEMENT_SMALL\",\"detail\":\"EBP.BRITISH.BRIT_EMPLACEMENT_SMALL\"},{\"id\":\"EBP.BRITISH.BRIT_FORWARD_HQ_COMMANDER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_FORWARD_HQ_COMMANDER_MP\",\"documentation\":\"EBP.BRITISH.BRIT_FORWARD_HQ_COMMANDER_MP\",\"detail\":\"EBP.BRITISH.BRIT_FORWARD_HQ_COMMANDER_MP\"},{\"id\":\"EBP.BRITISH.BRIT_FORWARD_HQ_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_FORWARD_HQ_MP\",\"documentation\":\"EBP.BRITISH.BRIT_FORWARD_HQ_MP\",\"detail\":\"EBP.BRITISH.BRIT_FORWARD_HQ_MP\"},{\"id\":\"EBP.BRITISH.BRIT_FWD_HQ_WEAPON_RACK_BREN_LMG_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_FWD_HQ_WEAPON_RACK_BREN_LMG_MP\",\"documentation\":\"EBP.BRITISH.BRIT_FWD_HQ_WEAPON_RACK_BREN_LMG_MP\",\"detail\":\"EBP.BRITISH.BRIT_FWD_HQ_WEAPON_RACK_BREN_LMG_MP\"},{\"id\":\"EBP.BRITISH.BRIT_FWD_HQ_WEAPON_RACK_PIAT_LAUNCHER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_FWD_HQ_WEAPON_RACK_PIAT_LAUNCHER_MP\",\"documentation\":\"EBP.BRITISH.BRIT_FWD_HQ_WEAPON_RACK_PIAT_LAUNCHER_MP\",\"detail\":\"EBP.BRITISH.BRIT_FWD_HQ_WEAPON_RACK_PIAT_LAUNCHER_MP\"},{\"id\":\"EBP.BRITISH.BRIT_LAND_MATTRESS_LAUNCHER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_LAND_MATTRESS_LAUNCHER_MP\",\"documentation\":\"EBP.BRITISH.BRIT_LAND_MATTRESS_LAUNCHER_MP\",\"detail\":\"EBP.BRITISH.BRIT_LAND_MATTRESS_LAUNCHER_MP\"},{\"id\":\"EBP.BRITISH.BRIT_MEDIC_EXTRA_ENTITY_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_MEDIC_EXTRA_ENTITY_MP\",\"documentation\":\"EBP.BRITISH.BRIT_MEDIC_EXTRA_ENTITY_MP\",\"detail\":\"EBP.BRITISH.BRIT_MEDIC_EXTRA_ENTITY_MP\"},{\"id\":\"EBP.BRITISH.BRIT_MEDIC_WITH_PISTOL_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_MEDIC_WITH_PISTOL_MP\",\"documentation\":\"EBP.BRITISH.BRIT_MEDIC_WITH_PISTOL_MP\",\"detail\":\"EBP.BRITISH.BRIT_MEDIC_WITH_PISTOL_MP\"},{\"id\":\"EBP.BRITISH.BRIT_MINE_COMMANDER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_MINE_COMMANDER_MP\",\"documentation\":\"EBP.BRITISH.BRIT_MINE_COMMANDER_MP\",\"detail\":\"EBP.BRITISH.BRIT_MINE_COMMANDER_MP\"},{\"id\":\"EBP.BRITISH.BRIT_MINE_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_MINE_MP\",\"documentation\":\"EBP.BRITISH.BRIT_MINE_MP\",\"detail\":\"EBP.BRITISH.BRIT_MINE_MP\"},{\"id\":\"EBP.BRITISH.BRIT_RETREAT_POINT_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_RETREAT_POINT_MP\",\"documentation\":\"EBP.BRITISH.BRIT_RETREAT_POINT_MP\",\"detail\":\"EBP.BRITISH.BRIT_RETREAT_POINT_MP\"},{\"id\":\"EBP.BRITISH.BRIT_SANDBAG_FENCE\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_SANDBAG_FENCE\",\"documentation\":\"EBP.BRITISH.BRIT_SANDBAG_FENCE\",\"detail\":\"EBP.BRITISH.BRIT_SANDBAG_FENCE\"},{\"id\":\"EBP.BRITISH.BRIT_WEAPON_RACK_BREN_LMG_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_WEAPON_RACK_BREN_LMG_MP\",\"documentation\":\"EBP.BRITISH.BRIT_WEAPON_RACK_BREN_LMG_MP\",\"detail\":\"EBP.BRITISH.BRIT_WEAPON_RACK_BREN_LMG_MP\"},{\"id\":\"EBP.BRITISH.BRIT_WEAPON_RACK_PIAT_LAUNCHER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRIT_WEAPON_RACK_PIAT_LAUNCHER_MP\",\"documentation\":\"EBP.BRITISH.BRIT_WEAPON_RACK_PIAT_LAUNCHER_MP\",\"detail\":\"EBP.BRITISH.BRIT_WEAPON_RACK_PIAT_LAUNCHER_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_25LB_HOWITZER_GUN_CREW_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_25LB_HOWITZER_GUN_CREW_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_25LB_HOWITZER_GUN_CREW_MP\",\"detail\":\"EBP.BRITISH.BRITISH_25LB_HOWITZER_GUN_CREW_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_6LB_AT_GUN_CREW_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_6LB_AT_GUN_CREW_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_6LB_AT_GUN_CREW_MP\",\"detail\":\"EBP.BRITISH.BRITISH_6LB_AT_GUN_CREW_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_BASE_STAMPER\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_BASE_STAMPER\",\"documentation\":\"EBP.BRITISH.BRITISH_BASE_STAMPER\",\"detail\":\"EBP.BRITISH.BRITISH_BASE_STAMPER\"},{\"id\":\"EBP.BRITISH.BRITISH_BUILDING_1_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_BUILDING_1_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_BUILDING_1_MP\",\"detail\":\"EBP.BRITISH.BRITISH_BUILDING_1_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_BUILDING_1_UNBUILT_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_BUILDING_1_UNBUILT_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_BUILDING_1_UNBUILT_MP\",\"detail\":\"EBP.BRITISH.BRITISH_BUILDING_1_UNBUILT_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_BUILDING_1_WRECK_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_BUILDING_1_WRECK_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_BUILDING_1_WRECK_MP\",\"detail\":\"EBP.BRITISH.BRITISH_BUILDING_1_WRECK_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_BUILDING_2_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_BUILDING_2_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_BUILDING_2_MP\",\"detail\":\"EBP.BRITISH.BRITISH_BUILDING_2_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_BUILDING_2_UNBUILT_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_BUILDING_2_UNBUILT_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_BUILDING_2_UNBUILT_MP\",\"detail\":\"EBP.BRITISH.BRITISH_BUILDING_2_UNBUILT_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_BUILDING_2_WRECK_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_BUILDING_2_WRECK_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_BUILDING_2_WRECK_MP\",\"detail\":\"EBP.BRITISH.BRITISH_BUILDING_2_WRECK_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_BUNKER_STARTING_POSITION_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_BUNKER_STARTING_POSITION_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_BUNKER_STARTING_POSITION_MP\",\"detail\":\"EBP.BRITISH.BRITISH_BUNKER_STARTING_POSITION_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_HMG_PLANE\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_HMG_PLANE\",\"documentation\":\"EBP.BRITISH.BRITISH_HMG_PLANE\",\"detail\":\"EBP.BRITISH.BRITISH_HMG_PLANE\"},{\"id\":\"EBP.BRITISH.BRITISH_HMG_TEAM_CREW_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_HMG_TEAM_CREW_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_HMG_TEAM_CREW_MP\",\"detail\":\"EBP.BRITISH.BRITISH_HMG_TEAM_CREW_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_HQ_SANDBAGS_01_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_HQ_SANDBAGS_01_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_HQ_SANDBAGS_01_MP\",\"detail\":\"EBP.BRITISH.BRITISH_HQ_SANDBAGS_01_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_HQ_TRUCK_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_HQ_TRUCK_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_HQ_TRUCK_MP\",\"detail\":\"EBP.BRITISH.BRITISH_HQ_TRUCK_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_HQ_TRUCK_WRECK_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_HQ_TRUCK_WRECK_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_HQ_TRUCK_WRECK_MP\",\"detail\":\"EBP.BRITISH.BRITISH_HQ_TRUCK_WRECK_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_LAND_MATTRESS_TEAM_CREW_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_LAND_MATTRESS_TEAM_CREW_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_LAND_MATTRESS_TEAM_CREW_MP\",\"detail\":\"EBP.BRITISH.BRITISH_LAND_MATTRESS_TEAM_CREW_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_MACHINE_GUN_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_MACHINE_GUN_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_MACHINE_GUN_MP\",\"detail\":\"EBP.BRITISH.BRITISH_MACHINE_GUN_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_MORTAR_TEAM_CREW_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_MORTAR_TEAM_CREW_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_MORTAR_TEAM_CREW_MP\",\"detail\":\"EBP.BRITISH.BRITISH_MORTAR_TEAM_CREW_MP\"},{\"id\":\"EBP.BRITISH.BRITISH_RADIO_BEACON\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_RADIO_BEACON\",\"documentation\":\"EBP.BRITISH.BRITISH_RADIO_BEACON\",\"detail\":\"EBP.BRITISH.BRITISH_RADIO_BEACON\"},{\"id\":\"EBP.BRITISH.BRITISH_SANDBAG_FENCE_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.BRITISH_SANDBAG_FENCE_MP\",\"documentation\":\"EBP.BRITISH.BRITISH_SANDBAG_FENCE_MP\",\"detail\":\"EBP.BRITISH.BRITISH_SANDBAG_FENCE_MP\"},{\"id\":\"EBP.BRITISH.CENTAUR_AA_MK2_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.CENTAUR_AA_MK2_MP\",\"documentation\":\"EBP.BRITISH.CENTAUR_AA_MK2_MP\",\"detail\":\"EBP.BRITISH.CENTAUR_AA_MK2_MP\"},{\"id\":\"EBP.BRITISH.CHURCHILL_AVRE_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.CHURCHILL_AVRE_MP\",\"documentation\":\"EBP.BRITISH.CHURCHILL_AVRE_MP\",\"detail\":\"EBP.BRITISH.CHURCHILL_AVRE_MP\"},{\"id\":\"EBP.BRITISH.CHURCHILL_CROCODILE_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.CHURCHILL_CROCODILE_MP\",\"documentation\":\"EBP.BRITISH.CHURCHILL_CROCODILE_MP\",\"detail\":\"EBP.BRITISH.CHURCHILL_CROCODILE_MP\"},{\"id\":\"EBP.BRITISH.CHURCHILL_DEFAULT_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.CHURCHILL_DEFAULT_MP\",\"documentation\":\"EBP.BRITISH.CHURCHILL_DEFAULT_MP\",\"detail\":\"EBP.BRITISH.CHURCHILL_DEFAULT_MP\"},{\"id\":\"EBP.BRITISH.COMET_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.COMET_MP\",\"documentation\":\"EBP.BRITISH.COMET_MP\",\"detail\":\"EBP.BRITISH.COMET_MP\"},{\"id\":\"EBP.BRITISH.COMMANDO_AIR_LANDING_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.COMMANDO_AIR_LANDING_MP\",\"documentation\":\"EBP.BRITISH.COMMANDO_AIR_LANDING_MP\",\"detail\":\"EBP.BRITISH.COMMANDO_AIR_LANDING_MP\"},{\"id\":\"EBP.BRITISH.COMMANDO_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.COMMANDO_MP\",\"documentation\":\"EBP.BRITISH.COMMANDO_MP\",\"detail\":\"EBP.BRITISH.COMMANDO_MP\"},{\"id\":\"EBP.BRITISH.COMMANDO_PIAT_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.COMMANDO_PIAT_MP\",\"documentation\":\"EBP.BRITISH.COMMANDO_PIAT_MP\",\"detail\":\"EBP.BRITISH.COMMANDO_PIAT_MP\"},{\"id\":\"EBP.BRITISH.CROMWELL_MK4_75MM_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.CROMWELL_MK4_75MM_MP\",\"documentation\":\"EBP.BRITISH.CROMWELL_MK4_75MM_MP\",\"detail\":\"EBP.BRITISH.CROMWELL_MK4_75MM_MP\"},{\"id\":\"EBP.BRITISH.FIELD_HOSPITAL_MEDIC_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.FIELD_HOSPITAL_MEDIC_MP\",\"documentation\":\"EBP.BRITISH.FIELD_HOSPITAL_MEDIC_MP\",\"detail\":\"EBP.BRITISH.FIELD_HOSPITAL_MEDIC_MP\"},{\"id\":\"EBP.BRITISH.FORWARD_OBSERVATION_OFFICER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.FORWARD_OBSERVATION_OFFICER_MP\",\"documentation\":\"EBP.BRITISH.FORWARD_OBSERVATION_OFFICER_MP\",\"detail\":\"EBP.BRITISH.FORWARD_OBSERVATION_OFFICER_MP\"},{\"id\":\"EBP.BRITISH.GLIDER_COMMANDOS_ONLY\",\"kind\":17,\"label\":\"EBP.BRITISH.GLIDER_COMMANDOS_ONLY\",\"documentation\":\"EBP.BRITISH.GLIDER_COMMANDOS_ONLY\",\"detail\":\"EBP.BRITISH.GLIDER_COMMANDOS_ONLY\"},{\"id\":\"EBP.BRITISH.GLIDER_HEADQUARTERS\",\"kind\":17,\"label\":\"EBP.BRITISH.GLIDER_HEADQUARTERS\",\"documentation\":\"EBP.BRITISH.GLIDER_HEADQUARTERS\",\"detail\":\"EBP.BRITISH.GLIDER_HEADQUARTERS\"},{\"id\":\"EBP.BRITISH.HQ_FIELD_ARTILLERY_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.HQ_FIELD_ARTILLERY_MP\",\"documentation\":\"EBP.BRITISH.HQ_FIELD_ARTILLERY_MP\",\"detail\":\"EBP.BRITISH.HQ_FIELD_ARTILLERY_MP\"},{\"id\":\"EBP.BRITISH.INVISIBLE_FLAME_MORTAR_ICON\",\"kind\":17,\"label\":\"EBP.BRITISH.INVISIBLE_FLAME_MORTAR_ICON\",\"documentation\":\"EBP.BRITISH.INVISIBLE_FLAME_MORTAR_ICON\",\"detail\":\"EBP.BRITISH.INVISIBLE_FLAME_MORTAR_ICON\"},{\"id\":\"EBP.BRITISH.M3_HALFTRACK_RESUPPLY_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.M3_HALFTRACK_RESUPPLY_MP\",\"documentation\":\"EBP.BRITISH.M3_HALFTRACK_RESUPPLY_MP\",\"detail\":\"EBP.BRITISH.M3_HALFTRACK_RESUPPLY_MP\"},{\"id\":\"EBP.BRITISH.PARATROOPERS_PLANE_ATGUN_MATT_TEST_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.PARATROOPERS_PLANE_ATGUN_MATT_TEST_MP\",\"documentation\":\"EBP.BRITISH.PARATROOPERS_PLANE_ATGUN_MATT_TEST_MP\",\"detail\":\"EBP.BRITISH.PARATROOPERS_PLANE_ATGUN_MATT_TEST_MP\"},{\"id\":\"EBP.BRITISH.PARATROOPERS_PLANE_VICKERS_MATT_TEST_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.PARATROOPERS_PLANE_VICKERS_MATT_TEST_MP\",\"documentation\":\"EBP.BRITISH.PARATROOPERS_PLANE_VICKERS_MATT_TEST_MP\",\"detail\":\"EBP.BRITISH.PARATROOPERS_PLANE_VICKERS_MATT_TEST_MP\"},{\"id\":\"EBP.BRITISH.RECON_HAWKER_TYPHOON_ASSAULT_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.RECON_HAWKER_TYPHOON_ASSAULT_MP\",\"documentation\":\"EBP.BRITISH.RECON_HAWKER_TYPHOON_ASSAULT_MP\",\"detail\":\"EBP.BRITISH.RECON_HAWKER_TYPHOON_ASSAULT_MP\"},{\"id\":\"EBP.BRITISH.RECON_HAWKER_TYPHOON_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.RECON_HAWKER_TYPHOON_MP\",\"documentation\":\"EBP.BRITISH.RECON_HAWKER_TYPHOON_MP\",\"detail\":\"EBP.BRITISH.RECON_HAWKER_TYPHOON_MP\"},{\"id\":\"EBP.BRITISH.REPAIR_SAPPER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.REPAIR_SAPPER_MP\",\"documentation\":\"EBP.BRITISH.REPAIR_SAPPER_MP\",\"detail\":\"EBP.BRITISH.REPAIR_SAPPER_MP\"},{\"id\":\"EBP.BRITISH.ROCKET_HAWKER_TYPHOON_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.ROCKET_HAWKER_TYPHOON_MP\",\"documentation\":\"EBP.BRITISH.ROCKET_HAWKER_TYPHOON_MP\",\"detail\":\"EBP.BRITISH.ROCKET_HAWKER_TYPHOON_MP\"},{\"id\":\"EBP.BRITISH.SAPPER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.SAPPER_MP\",\"documentation\":\"EBP.BRITISH.SAPPER_MP\",\"detail\":\"EBP.BRITISH.SAPPER_MP\"},{\"id\":\"EBP.BRITISH.SAPPER_RECOVERY_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.SAPPER_RECOVERY_MP\",\"documentation\":\"EBP.BRITISH.SAPPER_RECOVERY_MP\",\"detail\":\"EBP.BRITISH.SAPPER_RECOVERY_MP\"},{\"id\":\"EBP.BRITISH.SEXTON_SPG_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.SEXTON_SPG_MP\",\"documentation\":\"EBP.BRITISH.SEXTON_SPG_MP\",\"detail\":\"EBP.BRITISH.SEXTON_SPG_MP\"},{\"id\":\"EBP.BRITISH.SHERMAN_FIREFLY_M4A2_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.SHERMAN_FIREFLY_M4A2_MP\",\"documentation\":\"EBP.BRITISH.SHERMAN_FIREFLY_M4A2_MP\",\"detail\":\"EBP.BRITISH.SHERMAN_FIREFLY_M4A2_MP\"},{\"id\":\"EBP.BRITISH.SLIT_TRENCH_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.SLIT_TRENCH_MP\",\"documentation\":\"EBP.BRITISH.SLIT_TRENCH_MP\",\"detail\":\"EBP.BRITISH.SLIT_TRENCH_MP\"},{\"id\":\"EBP.BRITISH.SNIPER_BRITISH_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.SNIPER_BRITISH_MP\",\"documentation\":\"EBP.BRITISH.SNIPER_BRITISH_MP\",\"detail\":\"EBP.BRITISH.SNIPER_BRITISH_MP\"},{\"id\":\"EBP.BRITISH.SPITFIRE_RECON_PLANE\",\"kind\":17,\"label\":\"EBP.BRITISH.SPITFIRE_RECON_PLANE\",\"documentation\":\"EBP.BRITISH.SPITFIRE_RECON_PLANE\",\"detail\":\"EBP.BRITISH.SPITFIRE_RECON_PLANE\"},{\"id\":\"EBP.BRITISH.STRAFE_HAWKER_TYPHOON_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.STRAFE_HAWKER_TYPHOON_MP\",\"documentation\":\"EBP.BRITISH.STRAFE_HAWKER_TYPHOON_MP\",\"detail\":\"EBP.BRITISH.STRAFE_HAWKER_TYPHOON_MP\"},{\"id\":\"EBP.BRITISH.TOMMY_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.TOMMY_MP\",\"documentation\":\"EBP.BRITISH.TOMMY_MP\",\"detail\":\"EBP.BRITISH.TOMMY_MP\"},{\"id\":\"EBP.BRITISH.TOMMY_RECON_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.TOMMY_RECON_MP\",\"documentation\":\"EBP.BRITISH.TOMMY_RECON_MP\",\"detail\":\"EBP.BRITISH.TOMMY_RECON_MP\"},{\"id\":\"EBP.BRITISH.UNIVERSAL_CARRIER_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.UNIVERSAL_CARRIER_MP\",\"documentation\":\"EBP.BRITISH.UNIVERSAL_CARRIER_MP\",\"detail\":\"EBP.BRITISH.UNIVERSAL_CARRIER_MP\"},{\"id\":\"EBP.BRITISH.UNIVERSAL_CARRIER_RESUPPLY_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.UNIVERSAL_CARRIER_RESUPPLY_MP\",\"documentation\":\"EBP.BRITISH.UNIVERSAL_CARRIER_RESUPPLY_MP\",\"detail\":\"EBP.BRITISH.UNIVERSAL_CARRIER_RESUPPLY_MP\"},{\"id\":\"EBP.BRITISH.VALENTINE_MORTAR\",\"kind\":17,\"label\":\"EBP.BRITISH.VALENTINE_MORTAR\",\"documentation\":\"EBP.BRITISH.VALENTINE_MORTAR\",\"detail\":\"EBP.BRITISH.VALENTINE_MORTAR\"},{\"id\":\"EBP.BRITISH.VALENTINE_OBSERVATION_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.VALENTINE_OBSERVATION_MP\",\"documentation\":\"EBP.BRITISH.VALENTINE_OBSERVATION_MP\",\"detail\":\"EBP.BRITISH.VALENTINE_OBSERVATION_MP\"},{\"id\":\"EBP.BRITISH.VEHICLE_CREW_MP\",\"kind\":17,\"label\":\"EBP.BRITISH.VEHICLE_CREW_MP\",\"documentation\":\"EBP.BRITISH.VEHICLE_CREW_MP\",\"detail\":\"EBP.BRITISH.VEHICLE_CREW_MP\"},{\"id\":\"SBP.BRITISH.AEC_ARMOURED_CAR_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.AEC_ARMOURED_CAR_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.AEC_ARMOURED_CAR_SQUAD_MP\",\"detail\":\"SBP.BRITISH.AEC_ARMOURED_CAR_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.AIR_SUPPORT_OFFICER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.AIR_SUPPORT_OFFICER_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.AIR_SUPPORT_OFFICER_SQUAD_MP\",\"detail\":\"SBP.BRITISH.AIR_SUPPORT_OFFICER_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.AVRE_VEHICLE_CREW_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.AVRE_VEHICLE_CREW_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.AVRE_VEHICLE_CREW_SQUAD_MP\",\"detail\":\"SBP.BRITISH.AVRE_VEHICLE_CREW_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.BRIT_17_POUNDER_AT_GUN_SQUAD_COMMANDER_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_17_POUNDER_AT_GUN_SQUAD_COMMANDER_MP\",\"documentation\":\"SBP.BRITISH.BRIT_17_POUNDER_AT_GUN_SQUAD_COMMANDER_MP\",\"detail\":\"SBP.BRITISH.BRIT_17_POUNDER_AT_GUN_SQUAD_COMMANDER_MP\"},{\"id\":\"SBP.BRITISH.BRIT_17_POUNDER_AT_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_17_POUNDER_AT_GUN_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.BRIT_17_POUNDER_AT_GUN_SQUAD_MP\",\"detail\":\"SBP.BRITISH.BRIT_17_POUNDER_AT_GUN_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.BRIT_25_POUNDER_HOWITZER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_25_POUNDER_HOWITZER_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.BRIT_25_POUNDER_HOWITZER_SQUAD_MP\",\"detail\":\"SBP.BRITISH.BRIT_25_POUNDER_HOWITZER_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.BRIT_25_POUNDER_HOWITZER_SQUAD_TEMP_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_25_POUNDER_HOWITZER_SQUAD_TEMP_MP\",\"documentation\":\"SBP.BRITISH.BRIT_25_POUNDER_HOWITZER_SQUAD_TEMP_MP\",\"detail\":\"SBP.BRITISH.BRIT_25_POUNDER_HOWITZER_SQUAD_TEMP_MP\"},{\"id\":\"SBP.BRITISH.BRIT_3_INCH_MORTAR_TEAM_COMMANDER_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_3_INCH_MORTAR_TEAM_COMMANDER_MP\",\"documentation\":\"SBP.BRITISH.BRIT_3_INCH_MORTAR_TEAM_COMMANDER_MP\",\"detail\":\"SBP.BRITISH.BRIT_3_INCH_MORTAR_TEAM_COMMANDER_MP\"},{\"id\":\"SBP.BRITISH.BRIT_3_INCH_MORTAR_TEAM_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_3_INCH_MORTAR_TEAM_MP\",\"documentation\":\"SBP.BRITISH.BRIT_3_INCH_MORTAR_TEAM_MP\",\"detail\":\"SBP.BRITISH.BRIT_3_INCH_MORTAR_TEAM_MP\"},{\"id\":\"SBP.BRITISH.BRIT_6_POUNDER_AT_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_6_POUNDER_AT_GUN_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.BRIT_6_POUNDER_AT_GUN_SQUAD_MP\",\"detail\":\"SBP.BRITISH.BRIT_6_POUNDER_AT_GUN_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_SQUAD_COMMANDER_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_SQUAD_COMMANDER_MP\",\"documentation\":\"SBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_SQUAD_COMMANDER_MP\",\"detail\":\"SBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_SQUAD_COMMANDER_MP\"},{\"id\":\"SBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_SQUAD_MP\",\"detail\":\"SBP.BRITISH.BRIT_BOFORS_40MM_AUTOCANNON_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.BRIT_BREN_LMG_WEAPON_RACK_UI_FAKE_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_BREN_LMG_WEAPON_RACK_UI_FAKE_MP\",\"documentation\":\"SBP.BRITISH.BRIT_BREN_LMG_WEAPON_RACK_UI_FAKE_MP\",\"detail\":\"SBP.BRITISH.BRIT_BREN_LMG_WEAPON_RACK_UI_FAKE_MP\"},{\"id\":\"SBP.BRITISH.BRIT_FORWARD_HQ_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_FORWARD_HQ_MP\",\"documentation\":\"SBP.BRITISH.BRIT_FORWARD_HQ_MP\",\"detail\":\"SBP.BRITISH.BRIT_FORWARD_HQ_MP\"},{\"id\":\"SBP.BRITISH.BRIT_LAND_MATTRESS_LAUNCHER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_LAND_MATTRESS_LAUNCHER_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.BRIT_LAND_MATTRESS_LAUNCHER_SQUAD_MP\",\"detail\":\"SBP.BRITISH.BRIT_LAND_MATTRESS_LAUNCHER_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.BRIT_MEDIC_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_MEDIC_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.BRIT_MEDIC_SQUAD_MP\",\"detail\":\"SBP.BRITISH.BRIT_MEDIC_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.BRIT_PIAT_LAUNCHER_WEAPON_RACK_UI_FAKE_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRIT_PIAT_LAUNCHER_WEAPON_RACK_UI_FAKE_MP\",\"documentation\":\"SBP.BRITISH.BRIT_PIAT_LAUNCHER_WEAPON_RACK_UI_FAKE_MP\",\"detail\":\"SBP.BRITISH.BRIT_PIAT_LAUNCHER_WEAPON_RACK_UI_FAKE_MP\"},{\"id\":\"SBP.BRITISH.BRITISH_CARGO_PLANE\",\"kind\":17,\"label\":\"SBP.BRITISH.BRITISH_CARGO_PLANE\",\"documentation\":\"SBP.BRITISH.BRITISH_CARGO_PLANE\",\"detail\":\"SBP.BRITISH.BRITISH_CARGO_PLANE\"},{\"id\":\"SBP.BRITISH.BRITISH_HMG_PLANE\",\"kind\":17,\"label\":\"SBP.BRITISH.BRITISH_HMG_PLANE\",\"documentation\":\"SBP.BRITISH.BRITISH_HMG_PLANE\",\"detail\":\"SBP.BRITISH.BRITISH_HMG_PLANE\"},{\"id\":\"SBP.BRITISH.BRITISH_MACHINE_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.BRITISH_MACHINE_GUN_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.BRITISH_MACHINE_GUN_SQUAD_MP\",\"detail\":\"SBP.BRITISH.BRITISH_MACHINE_GUN_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.CENTAUR_AA_MK2_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.CENTAUR_AA_MK2_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.CENTAUR_AA_MK2_SQUAD_MP\",\"detail\":\"SBP.BRITISH.CENTAUR_AA_MK2_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.CHURCHILL_AVRE_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.CHURCHILL_AVRE_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.CHURCHILL_AVRE_SQUAD_MP\",\"detail\":\"SBP.BRITISH.CHURCHILL_AVRE_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.CHURCHILL_CROCODILE_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.CHURCHILL_CROCODILE_MP\",\"documentation\":\"SBP.BRITISH.CHURCHILL_CROCODILE_MP\",\"detail\":\"SBP.BRITISH.CHURCHILL_CROCODILE_MP\"},{\"id\":\"SBP.BRITISH.CHURCHILL_DEFAULT_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.CHURCHILL_DEFAULT_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.CHURCHILL_DEFAULT_SQUAD_MP\",\"detail\":\"SBP.BRITISH.CHURCHILL_DEFAULT_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.COMET_TANK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.COMET_TANK_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.COMET_TANK_SQUAD_MP\",\"detail\":\"SBP.BRITISH.COMET_TANK_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.COMMANDO_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.COMMANDO_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.COMMANDO_SQUAD_MP\",\"detail\":\"SBP.BRITISH.COMMANDO_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.COMMANDO_SQUAD_PIAT_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.COMMANDO_SQUAD_PIAT_MP\",\"documentation\":\"SBP.BRITISH.COMMANDO_SQUAD_PIAT_MP\",\"detail\":\"SBP.BRITISH.COMMANDO_SQUAD_PIAT_MP\"},{\"id\":\"SBP.BRITISH.CROMWELL_MK4_75MM_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.CROMWELL_MK4_75MM_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.CROMWELL_MK4_75MM_SQUAD_MP\",\"detail\":\"SBP.BRITISH.CROMWELL_MK4_75MM_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.FORWARD_HQ_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.FORWARD_HQ_MP\",\"documentation\":\"SBP.BRITISH.FORWARD_HQ_MP\",\"detail\":\"SBP.BRITISH.FORWARD_HQ_MP\"},{\"id\":\"SBP.BRITISH.FORWARD_OBSERVATION_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.FORWARD_OBSERVATION_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.FORWARD_OBSERVATION_SQUAD_MP\",\"detail\":\"SBP.BRITISH.FORWARD_OBSERVATION_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.GLIDER_COMMANDOS_ONLY_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.GLIDER_COMMANDOS_ONLY_MP\",\"documentation\":\"SBP.BRITISH.GLIDER_COMMANDOS_ONLY_MP\",\"detail\":\"SBP.BRITISH.GLIDER_COMMANDOS_ONLY_MP\"},{\"id\":\"SBP.BRITISH.GLIDER_HEADQUARTERS_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.GLIDER_HEADQUARTERS_MP\",\"documentation\":\"SBP.BRITISH.GLIDER_HEADQUARTERS_MP\",\"detail\":\"SBP.BRITISH.GLIDER_HEADQUARTERS_MP\"},{\"id\":\"SBP.BRITISH.INFILTRATION_COMMANDO_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.INFILTRATION_COMMANDO_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.INFILTRATION_COMMANDO_SQUAD_MP\",\"detail\":\"SBP.BRITISH.INFILTRATION_COMMANDO_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.M3_HALFTRACK_SQUAD__RESUPPLY_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.M3_HALFTRACK_SQUAD__RESUPPLY_MP\",\"documentation\":\"SBP.BRITISH.M3_HALFTRACK_SQUAD__RESUPPLY_MP\",\"detail\":\"SBP.BRITISH.M3_HALFTRACK_SQUAD__RESUPPLY_MP\"},{\"id\":\"SBP.BRITISH.PARATROOPERS_PLANE_ATGUN_BRITISH_MATT_TEST_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.PARATROOPERS_PLANE_ATGUN_BRITISH_MATT_TEST_MP\",\"documentation\":\"SBP.BRITISH.PARATROOPERS_PLANE_ATGUN_BRITISH_MATT_TEST_MP\",\"detail\":\"SBP.BRITISH.PARATROOPERS_PLANE_ATGUN_BRITISH_MATT_TEST_MP\"},{\"id\":\"SBP.BRITISH.PARATROOPERS_PLANE_VICKERS_BRITISH_MATT_TEST_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.PARATROOPERS_PLANE_VICKERS_BRITISH_MATT_TEST_MP\",\"documentation\":\"SBP.BRITISH.PARATROOPERS_PLANE_VICKERS_BRITISH_MATT_TEST_MP\",\"detail\":\"SBP.BRITISH.PARATROOPERS_PLANE_VICKERS_BRITISH_MATT_TEST_MP\"},{\"id\":\"SBP.BRITISH.RECON_HAWKER_TYPHOON_ASSAULT_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.RECON_HAWKER_TYPHOON_ASSAULT_MP\",\"documentation\":\"SBP.BRITISH.RECON_HAWKER_TYPHOON_ASSAULT_MP\",\"detail\":\"SBP.BRITISH.RECON_HAWKER_TYPHOON_ASSAULT_MP\"},{\"id\":\"SBP.BRITISH.RECON_HAWKER_TYPHOON_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.RECON_HAWKER_TYPHOON_MP\",\"documentation\":\"SBP.BRITISH.RECON_HAWKER_TYPHOON_MP\",\"detail\":\"SBP.BRITISH.RECON_HAWKER_TYPHOON_MP\"},{\"id\":\"SBP.BRITISH.ROCKET_HAWKER_TYPHOON_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.ROCKET_HAWKER_TYPHOON_MP\",\"documentation\":\"SBP.BRITISH.ROCKET_HAWKER_TYPHOON_MP\",\"detail\":\"SBP.BRITISH.ROCKET_HAWKER_TYPHOON_MP\"},{\"id\":\"SBP.BRITISH.SAPPER_SQUAD_DEMOLITION_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.SAPPER_SQUAD_DEMOLITION_MP\",\"documentation\":\"SBP.BRITISH.SAPPER_SQUAD_DEMOLITION_MP\",\"detail\":\"SBP.BRITISH.SAPPER_SQUAD_DEMOLITION_MP\"},{\"id\":\"SBP.BRITISH.SAPPER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.SAPPER_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.SAPPER_SQUAD_MP\",\"detail\":\"SBP.BRITISH.SAPPER_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.SAPPER_SQUAD_RECOVERY_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.SAPPER_SQUAD_RECOVERY_MP\",\"documentation\":\"SBP.BRITISH.SAPPER_SQUAD_RECOVERY_MP\",\"detail\":\"SBP.BRITISH.SAPPER_SQUAD_RECOVERY_MP\"},{\"id\":\"SBP.BRITISH.SEXTON_SPG_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.SEXTON_SPG_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.SEXTON_SPG_SQUAD_MP\",\"detail\":\"SBP.BRITISH.SEXTON_SPG_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.SHERMAN_FIREFLY_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.SHERMAN_FIREFLY_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.SHERMAN_FIREFLY_SQUAD_MP\",\"detail\":\"SBP.BRITISH.SHERMAN_FIREFLY_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.SNIPER_BRITISH_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.SNIPER_BRITISH_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.SNIPER_BRITISH_SQUAD_MP\",\"detail\":\"SBP.BRITISH.SNIPER_BRITISH_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.SPITFIRE_RECON_PLANE\",\"kind\":17,\"label\":\"SBP.BRITISH.SPITFIRE_RECON_PLANE\",\"documentation\":\"SBP.BRITISH.SPITFIRE_RECON_PLANE\",\"detail\":\"SBP.BRITISH.SPITFIRE_RECON_PLANE\"},{\"id\":\"SBP.BRITISH.STRAFE_HAWKER_TYPHOON_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.STRAFE_HAWKER_TYPHOON_MP\",\"documentation\":\"SBP.BRITISH.STRAFE_HAWKER_TYPHOON_MP\",\"detail\":\"SBP.BRITISH.STRAFE_HAWKER_TYPHOON_MP\"},{\"id\":\"SBP.BRITISH.TOMMY_SQUAD_FLAME_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.TOMMY_SQUAD_FLAME_MP\",\"documentation\":\"SBP.BRITISH.TOMMY_SQUAD_FLAME_MP\",\"detail\":\"SBP.BRITISH.TOMMY_SQUAD_FLAME_MP\"},{\"id\":\"SBP.BRITISH.TOMMY_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.TOMMY_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.TOMMY_SQUAD_MP\",\"detail\":\"SBP.BRITISH.TOMMY_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.TOMMY_SQUAD_RECON_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.TOMMY_SQUAD_RECON_MP\",\"documentation\":\"SBP.BRITISH.TOMMY_SQUAD_RECON_MP\",\"detail\":\"SBP.BRITISH.TOMMY_SQUAD_RECON_MP\"},{\"id\":\"SBP.BRITISH.TOMMY_SQUAD_TANK_HUNTER_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.TOMMY_SQUAD_TANK_HUNTER_MP\",\"documentation\":\"SBP.BRITISH.TOMMY_SQUAD_TANK_HUNTER_MP\",\"detail\":\"SBP.BRITISH.TOMMY_SQUAD_TANK_HUNTER_MP\"},{\"id\":\"SBP.BRITISH.UNIVERSAL_CARRIER_RESUPPLY\",\"kind\":17,\"label\":\"SBP.BRITISH.UNIVERSAL_CARRIER_RESUPPLY\",\"documentation\":\"SBP.BRITISH.UNIVERSAL_CARRIER_RESUPPLY\",\"detail\":\"SBP.BRITISH.UNIVERSAL_CARRIER_RESUPPLY\"},{\"id\":\"SBP.BRITISH.UNIVERSAL_CARRIER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.UNIVERSAL_CARRIER_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.UNIVERSAL_CARRIER_SQUAD_MP\",\"detail\":\"SBP.BRITISH.UNIVERSAL_CARRIER_SQUAD_MP\"},{\"id\":\"SBP.BRITISH.VALENTINE_MORTAR\",\"kind\":17,\"label\":\"SBP.BRITISH.VALENTINE_MORTAR\",\"documentation\":\"SBP.BRITISH.VALENTINE_MORTAR\",\"detail\":\"SBP.BRITISH.VALENTINE_MORTAR\"},{\"id\":\"SBP.BRITISH.VALENTINE_OBSERVATION_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.VALENTINE_OBSERVATION_MP\",\"documentation\":\"SBP.BRITISH.VALENTINE_OBSERVATION_MP\",\"detail\":\"SBP.BRITISH.VALENTINE_OBSERVATION_MP\"},{\"id\":\"SBP.BRITISH.VEHICLE_CREW_STANDARD_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.BRITISH.VEHICLE_CREW_STANDARD_SQUAD_MP\",\"documentation\":\"SBP.BRITISH.VEHICLE_CREW_STANDARD_SQUAD_MP\",\"detail\":\"SBP.BRITISH.VEHICLE_CREW_STANDARD_SQUAD_MP\"},{\"id\":\"ABILITY.BRITISH.ADVANCED_ASSEMBLY\",\"kind\":17,\"label\":\"ABILITY.BRITISH.ADVANCED_ASSEMBLY\",\"documentation\":\"ABILITY.BRITISH.ADVANCED_ASSEMBLY\",\"detail\":\"ABILITY.BRITISH.ADVANCED_ASSEMBLY\"},{\"id\":\"ABILITY.BRITISH.ADVANCED_COVER_COMBAT\",\"kind\":17,\"label\":\"ABILITY.BRITISH.ADVANCED_COVER_COMBAT\",\"documentation\":\"ABILITY.BRITISH.ADVANCED_COVER_COMBAT\",\"detail\":\"ABILITY.BRITISH.ADVANCED_COVER_COMBAT\"},{\"id\":\"ABILITY.BRITISH.AEC_DEFENSIVE_SMOKE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.AEC_DEFENSIVE_SMOKE\",\"documentation\":\"ABILITY.BRITISH.AEC_DEFENSIVE_SMOKE\",\"detail\":\"ABILITY.BRITISH.AEC_DEFENSIVE_SMOKE\"},{\"id\":\"ABILITY.BRITISH.AEC_TREAD_SHOTS_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.AEC_TREAD_SHOTS_MP\",\"documentation\":\"ABILITY.BRITISH.AEC_TREAD_SHOTS_MP\",\"detail\":\"ABILITY.BRITISH.AEC_TREAD_SHOTS_MP\"},{\"id\":\"ABILITY.BRITISH.ALLIED_STRATEGIC_BOMBING\",\"kind\":17,\"label\":\"ABILITY.BRITISH.ALLIED_STRATEGIC_BOMBING\",\"documentation\":\"ABILITY.BRITISH.ALLIED_STRATEGIC_BOMBING\",\"detail\":\"ABILITY.BRITISH.ALLIED_STRATEGIC_BOMBING\"},{\"id\":\"ABILITY.BRITISH.ARTILLERY_COVER\",\"kind\":17,\"label\":\"ABILITY.BRITISH.ARTILLERY_COVER\",\"documentation\":\"ABILITY.BRITISH.ARTILLERY_COVER\",\"detail\":\"ABILITY.BRITISH.ARTILLERY_COVER\"},{\"id\":\"ABILITY.BRITISH.ASSAULT\",\"kind\":17,\"label\":\"ABILITY.BRITISH.ASSAULT\",\"documentation\":\"ABILITY.BRITISH.ASSAULT\",\"detail\":\"ABILITY.BRITISH.ASSAULT\"},{\"id\":\"ABILITY.BRITISH.ASSAULT_GRENADES\",\"kind\":17,\"label\":\"ABILITY.BRITISH.ASSAULT_GRENADES\",\"documentation\":\"ABILITY.BRITISH.ASSAULT_GRENADES\",\"detail\":\"ABILITY.BRITISH.ASSAULT_GRENADES\"},{\"id\":\"ABILITY.BRITISH.AT_GUN_AIRDROP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.AT_GUN_AIRDROP\",\"documentation\":\"ABILITY.BRITISH.AT_GUN_AIRDROP\",\"detail\":\"ABILITY.BRITISH.AT_GUN_AIRDROP\"},{\"id\":\"ABILITY.BRITISH.AVRE_CREW_DEMOLITION_CHARGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.AVRE_CREW_DEMOLITION_CHARGE_MP\",\"documentation\":\"ABILITY.BRITISH.AVRE_CREW_DEMOLITION_CHARGE_MP\",\"detail\":\"ABILITY.BRITISH.AVRE_CREW_DEMOLITION_CHARGE_MP\"},{\"id\":\"ABILITY.BRITISH.AVRE_CREW_SHRAPNELL_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.AVRE_CREW_SHRAPNELL_GRENADE_MP\",\"documentation\":\"ABILITY.BRITISH.AVRE_CREW_SHRAPNELL_GRENADE_MP\",\"detail\":\"ABILITY.BRITISH.AVRE_CREW_SHRAPNELL_GRENADE_MP\"},{\"id\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_ATTACK_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_ATTACK_MP\",\"documentation\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_ATTACK_MP\",\"detail\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_ATTACK_MP\"},{\"id\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_ATTACK_VET_3_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_ATTACK_VET_3_MP\",\"documentation\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_ATTACK_VET_3_MP\",\"detail\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_ATTACK_VET_3_MP\"},{\"id\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_RELOAD_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_RELOAD_MP\",\"documentation\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_RELOAD_MP\",\"detail\":\"ABILITY.BRITISH.AVRE_SPIGOT_MORTAR_RELOAD_MP\"},{\"id\":\"ABILITY.BRITISH.AVRE_VEHICLE_DECREW_VEHICLE_CREW_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.AVRE_VEHICLE_DECREW_VEHICLE_CREW_MP\",\"documentation\":\"ABILITY.BRITISH.AVRE_VEHICLE_DECREW_VEHICLE_CREW_MP\",\"detail\":\"ABILITY.BRITISH.AVRE_VEHICLE_DECREW_VEHICLE_CREW_MP\"},{\"id\":\"ABILITY.BRITISH.BOFORS_SUPPRESSIVE_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BOFORS_SUPPRESSIVE_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.BRITISH.BOFORS_SUPPRESSIVE_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.BRITISH.BOFORS_SUPPRESSIVE_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.BRITISH.BOFORS_SUPPRESSIVE_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BOFORS_SUPPRESSIVE_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"documentation\":\"ABILITY.BRITISH.BOFORS_SUPPRESSIVE_BARRAGE_ABILITY_VICTOR_TARGET_MP\",\"detail\":\"ABILITY.BRITISH.BOFORS_SUPPRESSIVE_BARRAGE_ABILITY_VICTOR_TARGET_MP\"},{\"id\":\"ABILITY.BRITISH.BREAKTHROUGH_OPERATION\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BREAKTHROUGH_OPERATION\",\"documentation\":\"ABILITY.BRITISH.BREAKTHROUGH_OPERATION\",\"detail\":\"ABILITY.BRITISH.BREAKTHROUGH_OPERATION\"},{\"id\":\"ABILITY.BRITISH.BRIT_17_POUNDER_FACING_ORDER_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_17_POUNDER_FACING_ORDER_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_17_POUNDER_FACING_ORDER_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_17_POUNDER_FACING_ORDER_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_17_POUNDER_FLARES_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_17_POUNDER_FLARES_ABILITY_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_17_POUNDER_FLARES_ABILITY_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_17_POUNDER_FLARES_ABILITY_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_17_POUNDER_PIERCING_SHELL_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_17_POUNDER_PIERCING_SHELL_ABILITY_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_17_POUNDER_PIERCING_SHELL_ABILITY_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_17_POUNDER_PIERCING_SHELL_ABILITY_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_17_POUNDER_PIERCING_SHELL_ABILITY_VICTOR_TARGET_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_17_POUNDER_PIERCING_SHELL_ABILITY_VICTOR_TARGET_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_17_POUNDER_PIERCING_SHELL_ABILITY_VICTOR_TARGET_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_17_POUNDER_PIERCING_SHELL_ABILITY_VICTOR_TARGET_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_BARRAGE_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_BARRAGE_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_BARRAGE_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_BARRAGE_VICTOR_TARGET_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_BARRAGE_VICTOR_TARGET_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_BARRAGE_VICTOR_TARGET_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_BARRAGE_VICTOR_TARGET_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_SMOKE_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_SMOKE_BARRAGE_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_SMOKE_BARRAGE_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_3_INCH_MORTAR_EMPLACEMENT_SMOKE_BARRAGE_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_6_POUNDER_CRITICAL_SHOT_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_6_POUNDER_CRITICAL_SHOT_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_6_POUNDER_CRITICAL_SHOT_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_6_POUNDER_CRITICAL_SHOT_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_6_POUNDER_RAPID_MANEUVER_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_6_POUNDER_RAPID_MANEUVER_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_6_POUNDER_RAPID_MANEUVER_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_6_POUNDER_RAPID_MANEUVER_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_BARBED_WIRE_CUTTING_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_BARBED_WIRE_CUTTING_ABILITY_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_BARBED_WIRE_CUTTING_ABILITY_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_BARBED_WIRE_CUTTING_ABILITY_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_BASE_BRACED_STATIC_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_BASE_BRACED_STATIC_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_BASE_BRACED_STATIC_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_BASE_BRACED_STATIC_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_BASE_BUILDING_BRACED_OFF_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_BASE_BUILDING_BRACED_OFF_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_BASE_BUILDING_BRACED_OFF_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_BASE_BUILDING_BRACED_OFF_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_BASE_BUILDING_BRACED_ON_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_BASE_BUILDING_BRACED_ON_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_BASE_BUILDING_BRACED_ON_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_BASE_BUILDING_BRACED_ON_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_EMPLACEMENT_BRACED_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_EMPLACEMENT_BRACED_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_EMPLACEMENT_BRACED_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_EMPLACEMENT_BRACED_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_HQ_ENGINEER_CALL_IN\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_HQ_ENGINEER_CALL_IN\",\"documentation\":\"ABILITY.BRITISH.BRIT_HQ_ENGINEER_CALL_IN\",\"detail\":\"ABILITY.BRITISH.BRIT_HQ_ENGINEER_CALL_IN\"},{\"id\":\"ABILITY.BRITISH.BRIT_MEDIC_HEAL_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_MEDIC_HEAL_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_MEDIC_HEAL_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_MEDIC_HEAL_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_MEDIC_SQUAD_AUTO_HEAL\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_MEDIC_SQUAD_AUTO_HEAL\",\"documentation\":\"ABILITY.BRITISH.BRIT_MEDIC_SQUAD_AUTO_HEAL\",\"detail\":\"ABILITY.BRITISH.BRIT_MEDIC_SQUAD_AUTO_HEAL\"},{\"id\":\"ABILITY.BRITISH.BRIT_MEDIC_TOMMY_TIMED_AREA_HEAL_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_MEDIC_TOMMY_TIMED_AREA_HEAL_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_MEDIC_TOMMY_TIMED_AREA_HEAL_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_MEDIC_TOMMY_TIMED_AREA_HEAL_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_MORTAR_EMPLACEMENT_HOLD_FIRE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_MORTAR_EMPLACEMENT_HOLD_FIRE\",\"documentation\":\"ABILITY.BRITISH.BRIT_MORTAR_EMPLACEMENT_HOLD_FIRE\",\"detail\":\"ABILITY.BRITISH.BRIT_MORTAR_EMPLACEMENT_HOLD_FIRE\"},{\"id\":\"ABILITY.BRITISH.BRIT_RADAR_SWEEP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_RADAR_SWEEP\",\"documentation\":\"ABILITY.BRITISH.BRIT_RADAR_SWEEP\",\"detail\":\"ABILITY.BRITISH.BRIT_RADAR_SWEEP\"},{\"id\":\"ABILITY.BRITISH.BRIT_REPAIR_ABILITY_SAPPERS_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_REPAIR_ABILITY_SAPPERS_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_REPAIR_ABILITY_SAPPERS_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_REPAIR_ABILITY_SAPPERS_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_REPAIR_ABILITY_TOMMYS_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_REPAIR_ABILITY_TOMMYS_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_REPAIR_ABILITY_TOMMYS_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_REPAIR_ABILITY_TOMMYS_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_REPAIR_EWS_ABILITY_SAPPERS_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_REPAIR_EWS_ABILITY_SAPPERS_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_REPAIR_EWS_ABILITY_SAPPERS_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_REPAIR_EWS_ABILITY_SAPPERS_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\"},{\"id\":\"ABILITY.BRITISH.BRIT_TUNE_UP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_TUNE_UP\",\"documentation\":\"ABILITY.BRITISH.BRIT_TUNE_UP\",\"detail\":\"ABILITY.BRITISH.BRIT_TUNE_UP\"},{\"id\":\"ABILITY.BRITISH.BRIT_VEHICLE_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRIT_VEHICLE_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.BRITISH.BRIT_VEHICLE_HOLD_FIRE_MP\",\"detail\":\"ABILITY.BRITISH.BRIT_VEHICLE_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.BRITISH.BRITISH_HOLD_THE_LINE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRITISH_HOLD_THE_LINE\",\"documentation\":\"ABILITY.BRITISH.BRITISH_HOLD_THE_LINE\",\"detail\":\"ABILITY.BRITISH.BRITISH_HOLD_THE_LINE\"},{\"id\":\"ABILITY.BRITISH.BRITISH_MORTAR_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.BRITISH_MORTAR_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.BRITISH.BRITISH_MORTAR_HOLD_FIRE_MP\",\"detail\":\"ABILITY.BRITISH.BRITISH_MORTAR_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.BRITISH.CENTAUR_20MM_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CENTAUR_20MM_BARRAGE_MP\",\"documentation\":\"ABILITY.BRITISH.CENTAUR_20MM_BARRAGE_MP\",\"detail\":\"ABILITY.BRITISH.CENTAUR_20MM_BARRAGE_MP\"},{\"id\":\"ABILITY.BRITISH.CENTAUR_AA_MODE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CENTAUR_AA_MODE_MP\",\"documentation\":\"ABILITY.BRITISH.CENTAUR_AA_MODE_MP\",\"detail\":\"ABILITY.BRITISH.CENTAUR_AA_MODE_MP\"},{\"id\":\"ABILITY.BRITISH.CENTAUR_WEAPON_BURST_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CENTAUR_WEAPON_BURST_MP\",\"documentation\":\"ABILITY.BRITISH.CENTAUR_WEAPON_BURST_MP\",\"detail\":\"ABILITY.BRITISH.CENTAUR_WEAPON_BURST_MP\"},{\"id\":\"ABILITY.BRITISH.CENTAUR_WEAPON_BURST_TEST_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CENTAUR_WEAPON_BURST_TEST_MP\",\"documentation\":\"ABILITY.BRITISH.CENTAUR_WEAPON_BURST_TEST_MP\",\"detail\":\"ABILITY.BRITISH.CENTAUR_WEAPON_BURST_TEST_MP\"},{\"id\":\"ABILITY.BRITISH.CHURCHILL_AVRE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CHURCHILL_AVRE\",\"documentation\":\"ABILITY.BRITISH.CHURCHILL_AVRE\",\"detail\":\"ABILITY.BRITISH.CHURCHILL_AVRE\"},{\"id\":\"ABILITY.BRITISH.CHURCHILL_CREW_GRENADE_TARGETED\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CHURCHILL_CREW_GRENADE_TARGETED\",\"documentation\":\"ABILITY.BRITISH.CHURCHILL_CREW_GRENADE_TARGETED\",\"detail\":\"ABILITY.BRITISH.CHURCHILL_CREW_GRENADE_TARGETED\"},{\"id\":\"ABILITY.BRITISH.CHURCHILL_CROC_FLAME_BURST_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CHURCHILL_CROC_FLAME_BURST_MP\",\"documentation\":\"ABILITY.BRITISH.CHURCHILL_CROC_FLAME_BURST_MP\",\"detail\":\"ABILITY.BRITISH.CHURCHILL_CROC_FLAME_BURST_MP\"},{\"id\":\"ABILITY.BRITISH.CHURCHILL_CROCODILE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CHURCHILL_CROCODILE\",\"documentation\":\"ABILITY.BRITISH.CHURCHILL_CROCODILE\",\"detail\":\"ABILITY.BRITISH.CHURCHILL_CROCODILE\"},{\"id\":\"ABILITY.BRITISH.CHURCHILL_INF_SUPPORT_SMOKE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CHURCHILL_INF_SUPPORT_SMOKE\",\"documentation\":\"ABILITY.BRITISH.CHURCHILL_INF_SUPPORT_SMOKE\",\"detail\":\"ABILITY.BRITISH.CHURCHILL_INF_SUPPORT_SMOKE\"},{\"id\":\"ABILITY.BRITISH.COMET_CREW_GRENADE_TARGETED\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMET_CREW_GRENADE_TARGETED\",\"documentation\":\"ABILITY.BRITISH.COMET_CREW_GRENADE_TARGETED\",\"detail\":\"ABILITY.BRITISH.COMET_CREW_GRENADE_TARGETED\"},{\"id\":\"ABILITY.BRITISH.COMET_SMOKE_SHELL_SHOT_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMET_SMOKE_SHELL_SHOT_MP\",\"documentation\":\"ABILITY.BRITISH.COMET_SMOKE_SHELL_SHOT_MP\",\"detail\":\"ABILITY.BRITISH.COMET_SMOKE_SHELL_SHOT_MP\"},{\"id\":\"ABILITY.BRITISH.COMET_SMOKE_SHELL_SHOT_WP_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMET_SMOKE_SHELL_SHOT_WP_MP\",\"documentation\":\"ABILITY.BRITISH.COMET_SMOKE_SHELL_SHOT_WP_MP\",\"detail\":\"ABILITY.BRITISH.COMET_SMOKE_SHELL_SHOT_WP_MP\"},{\"id\":\"ABILITY.BRITISH.COMMAND_HQ\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMMAND_HQ\",\"documentation\":\"ABILITY.BRITISH.COMMAND_HQ\",\"detail\":\"ABILITY.BRITISH.COMMAND_HQ\"},{\"id\":\"ABILITY.BRITISH.COMMAND_HQ_HE_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMMAND_HQ_HE_ARTILLERY\",\"documentation\":\"ABILITY.BRITISH.COMMAND_HQ_HE_ARTILLERY\",\"detail\":\"ABILITY.BRITISH.COMMAND_HQ_HE_ARTILLERY\"},{\"id\":\"ABILITY.BRITISH.COMMAND_HQ_RECON_PLANE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMMAND_HQ_RECON_PLANE\",\"documentation\":\"ABILITY.BRITISH.COMMAND_HQ_RECON_PLANE\",\"detail\":\"ABILITY.BRITISH.COMMAND_HQ_RECON_PLANE\"},{\"id\":\"ABILITY.BRITISH.COMMAND_HQ_SMOKE_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMMAND_HQ_SMOKE_ARTILLERY\",\"documentation\":\"ABILITY.BRITISH.COMMAND_HQ_SMOKE_ARTILLERY\",\"detail\":\"ABILITY.BRITISH.COMMAND_HQ_SMOKE_ARTILLERY\"},{\"id\":\"ABILITY.BRITISH.COMMAND_HQ_STRAFE_PLANE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMMAND_HQ_STRAFE_PLANE\",\"documentation\":\"ABILITY.BRITISH.COMMAND_HQ_STRAFE_PLANE\",\"detail\":\"ABILITY.BRITISH.COMMAND_HQ_STRAFE_PLANE\"},{\"id\":\"ABILITY.BRITISH.COMMAND_VEHICLE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMMAND_VEHICLE\",\"documentation\":\"ABILITY.BRITISH.COMMAND_VEHICLE\",\"detail\":\"ABILITY.BRITISH.COMMAND_VEHICLE\"},{\"id\":\"ABILITY.BRITISH.COMMAND_VEHICLE_PLANE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMMAND_VEHICLE_PLANE\",\"documentation\":\"ABILITY.BRITISH.COMMAND_VEHICLE_PLANE\",\"detail\":\"ABILITY.BRITISH.COMMAND_VEHICLE_PLANE\"},{\"id\":\"ABILITY.BRITISH.COMMANDO_ASSASSINATE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMMANDO_ASSASSINATE_MP\",\"documentation\":\"ABILITY.BRITISH.COMMANDO_ASSASSINATE_MP\",\"detail\":\"ABILITY.BRITISH.COMMANDO_ASSASSINATE_MP\"},{\"id\":\"ABILITY.BRITISH.COMMANDO_DEMO_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMMANDO_DEMO_MP\",\"documentation\":\"ABILITY.BRITISH.COMMANDO_DEMO_MP\",\"detail\":\"ABILITY.BRITISH.COMMANDO_DEMO_MP\"},{\"id\":\"ABILITY.BRITISH.COMMANDO_INFILTRATION_CAMOUFLAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COMMANDO_INFILTRATION_CAMOUFLAGE_MP\",\"documentation\":\"ABILITY.BRITISH.COMMANDO_INFILTRATION_CAMOUFLAGE_MP\",\"detail\":\"ABILITY.BRITISH.COMMANDO_INFILTRATION_CAMOUFLAGE_MP\"},{\"id\":\"ABILITY.BRITISH.COUNTER_BATTERY\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COUNTER_BATTERY\",\"documentation\":\"ABILITY.BRITISH.COUNTER_BATTERY\",\"detail\":\"ABILITY.BRITISH.COUNTER_BATTERY\"},{\"id\":\"ABILITY.BRITISH.COUNTER_BATTERYS\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COUNTER_BATTERYS\",\"documentation\":\"ABILITY.BRITISH.COUNTER_BATTERYS\",\"detail\":\"ABILITY.BRITISH.COUNTER_BATTERYS\"},{\"id\":\"ABILITY.BRITISH.COVER_SMOKE_GRENADES\",\"kind\":17,\"label\":\"ABILITY.BRITISH.COVER_SMOKE_GRENADES\",\"documentation\":\"ABILITY.BRITISH.COVER_SMOKE_GRENADES\",\"detail\":\"ABILITY.BRITISH.COVER_SMOKE_GRENADES\"},{\"id\":\"ABILITY.BRITISH.CREW_REPAIR\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CREW_REPAIR\",\"documentation\":\"ABILITY.BRITISH.CREW_REPAIR\",\"detail\":\"ABILITY.BRITISH.CREW_REPAIR\"},{\"id\":\"ABILITY.BRITISH.CREW_REPAIR_OPERATION\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CREW_REPAIR_OPERATION\",\"documentation\":\"ABILITY.BRITISH.CREW_REPAIR_OPERATION\",\"detail\":\"ABILITY.BRITISH.CREW_REPAIR_OPERATION\"},{\"id\":\"ABILITY.BRITISH.CROMWELL_SMOKE_SHELL_SHOT_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.CROMWELL_SMOKE_SHELL_SHOT_MP\",\"documentation\":\"ABILITY.BRITISH.CROMWELL_SMOKE_SHELL_SHOT_MP\",\"detail\":\"ABILITY.BRITISH.CROMWELL_SMOKE_SHELL_SHOT_MP\"},{\"id\":\"ABILITY.BRITISH.DEFENSIVE_OPERATIONS\",\"kind\":17,\"label\":\"ABILITY.BRITISH.DEFENSIVE_OPERATIONS\",\"documentation\":\"ABILITY.BRITISH.DEFENSIVE_OPERATIONS\",\"detail\":\"ABILITY.BRITISH.DEFENSIVE_OPERATIONS\"},{\"id\":\"ABILITY.BRITISH.DESTROY_COVER_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.DESTROY_COVER_MP\",\"documentation\":\"ABILITY.BRITISH.DESTROY_COVER_MP\",\"detail\":\"ABILITY.BRITISH.DESTROY_COVER_MP\"},{\"id\":\"ABILITY.BRITISH.DIRECT_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.DIRECT_BARRAGE\",\"documentation\":\"ABILITY.BRITISH.DIRECT_BARRAGE\",\"detail\":\"ABILITY.BRITISH.DIRECT_BARRAGE\"},{\"id\":\"ABILITY.BRITISH.EARLY_WARNING\",\"kind\":17,\"label\":\"ABILITY.BRITISH.EARLY_WARNING\",\"documentation\":\"ABILITY.BRITISH.EARLY_WARNING\",\"detail\":\"ABILITY.BRITISH.EARLY_WARNING\"},{\"id\":\"ABILITY.BRITISH.ENGINEER_COVER_COMBAT_BONUS\",\"kind\":17,\"label\":\"ABILITY.BRITISH.ENGINEER_COVER_COMBAT_BONUS\",\"documentation\":\"ABILITY.BRITISH.ENGINEER_COVER_COMBAT_BONUS\",\"detail\":\"ABILITY.BRITISH.ENGINEER_COVER_COMBAT_BONUS\"},{\"id\":\"ABILITY.BRITISH.FATALITY_BURN_THEM_OUT\",\"kind\":17,\"label\":\"ABILITY.BRITISH.FATALITY_BURN_THEM_OUT\",\"documentation\":\"ABILITY.BRITISH.FATALITY_BURN_THEM_OUT\",\"detail\":\"ABILITY.BRITISH.FATALITY_BURN_THEM_OUT\"},{\"id\":\"ABILITY.BRITISH.FATALITY_MIGHT_OF_THE_AIR_FORCES\",\"kind\":17,\"label\":\"ABILITY.BRITISH.FATALITY_MIGHT_OF_THE_AIR_FORCES\",\"documentation\":\"ABILITY.BRITISH.FATALITY_MIGHT_OF_THE_AIR_FORCES\",\"detail\":\"ABILITY.BRITISH.FATALITY_MIGHT_OF_THE_AIR_FORCES\"},{\"id\":\"ABILITY.BRITISH.FATALITY_ZEROING_STRIKE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.FATALITY_ZEROING_STRIKE\",\"documentation\":\"ABILITY.BRITISH.FATALITY_ZEROING_STRIKE\",\"detail\":\"ABILITY.BRITISH.FATALITY_ZEROING_STRIKE\"},{\"id\":\"ABILITY.BRITISH.FIELD_RECOVERY\",\"kind\":17,\"label\":\"ABILITY.BRITISH.FIELD_RECOVERY\",\"documentation\":\"ABILITY.BRITISH.FIELD_RECOVERY\",\"detail\":\"ABILITY.BRITISH.FIELD_RECOVERY\"},{\"id\":\"ABILITY.BRITISH.FIRE_SUPPORT_TEAM\",\"kind\":17,\"label\":\"ABILITY.BRITISH.FIRE_SUPPORT_TEAM\",\"documentation\":\"ABILITY.BRITISH.FIRE_SUPPORT_TEAM\",\"detail\":\"ABILITY.BRITISH.FIRE_SUPPORT_TEAM\"},{\"id\":\"ABILITY.BRITISH.FIREFLY_TULIP_ROCKET_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.FIREFLY_TULIP_ROCKET_BARRAGE_MP\",\"documentation\":\"ABILITY.BRITISH.FIREFLY_TULIP_ROCKET_BARRAGE_MP\",\"detail\":\"ABILITY.BRITISH.FIREFLY_TULIP_ROCKET_BARRAGE_MP\"},{\"id\":\"ABILITY.BRITISH.FIREFLY_TULIP_ROCKET_BARRAGE_SKILL_SHOT_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.FIREFLY_TULIP_ROCKET_BARRAGE_SKILL_SHOT_MP\",\"documentation\":\"ABILITY.BRITISH.FIREFLY_TULIP_ROCKET_BARRAGE_SKILL_SHOT_MP\",\"detail\":\"ABILITY.BRITISH.FIREFLY_TULIP_ROCKET_BARRAGE_SKILL_SHOT_MP\"},{\"id\":\"ABILITY.BRITISH.FORTIFY_OUR_POSITION\",\"kind\":17,\"label\":\"ABILITY.BRITISH.FORTIFY_OUR_POSITION\",\"documentation\":\"ABILITY.BRITISH.FORTIFY_OUR_POSITION\",\"detail\":\"ABILITY.BRITISH.FORTIFY_OUR_POSITION\"},{\"id\":\"ABILITY.BRITISH.FORWARD_HQ_RETREAT_POINT_GLIDER_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.FORWARD_HQ_RETREAT_POINT_GLIDER_MP\",\"documentation\":\"ABILITY.BRITISH.FORWARD_HQ_RETREAT_POINT_GLIDER_MP\",\"detail\":\"ABILITY.BRITISH.FORWARD_HQ_RETREAT_POINT_GLIDER_MP\"},{\"id\":\"ABILITY.BRITISH.FORWARD_HQ_RETREAT_POINT_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.FORWARD_HQ_RETREAT_POINT_MP\",\"documentation\":\"ABILITY.BRITISH.FORWARD_HQ_RETREAT_POINT_MP\",\"detail\":\"ABILITY.BRITISH.FORWARD_HQ_RETREAT_POINT_MP\"},{\"id\":\"ABILITY.BRITISH.GLIDER_COMMANDOS_ONLY\",\"kind\":17,\"label\":\"ABILITY.BRITISH.GLIDER_COMMANDOS_ONLY\",\"documentation\":\"ABILITY.BRITISH.GLIDER_COMMANDOS_ONLY\",\"detail\":\"ABILITY.BRITISH.GLIDER_COMMANDOS_ONLY\"},{\"id\":\"ABILITY.BRITISH.GLIDER_HEADQUARTERS\",\"kind\":17,\"label\":\"ABILITY.BRITISH.GLIDER_HEADQUARTERS\",\"documentation\":\"ABILITY.BRITISH.GLIDER_HEADQUARTERS\",\"detail\":\"ABILITY.BRITISH.GLIDER_HEADQUARTERS\"},{\"id\":\"ABILITY.BRITISH.GLIDER_RETREAT_POINT_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.GLIDER_RETREAT_POINT_MP\",\"documentation\":\"ABILITY.BRITISH.GLIDER_RETREAT_POINT_MP\",\"detail\":\"ABILITY.BRITISH.GLIDER_RETREAT_POINT_MP\"},{\"id\":\"ABILITY.BRITISH.HOWITZER_COUNTER_BARRAGE_ATTACK_COMMANDER_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.HOWITZER_COUNTER_BARRAGE_ATTACK_COMMANDER_MP\",\"documentation\":\"ABILITY.BRITISH.HOWITZER_COUNTER_BARRAGE_ATTACK_COMMANDER_MP\",\"detail\":\"ABILITY.BRITISH.HOWITZER_COUNTER_BARRAGE_ATTACK_COMMANDER_MP\"},{\"id\":\"ABILITY.BRITISH.HOWITZER_COUNTER_BARRAGE_COMMANDER_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.HOWITZER_COUNTER_BARRAGE_COMMANDER_MP\",\"documentation\":\"ABILITY.BRITISH.HOWITZER_COUNTER_BARRAGE_COMMANDER_MP\",\"detail\":\"ABILITY.BRITISH.HOWITZER_COUNTER_BARRAGE_COMMANDER_MP\"},{\"id\":\"ABILITY.BRITISH.HQ_BUILD_ANVIL_1_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.HQ_BUILD_ANVIL_1_MP\",\"documentation\":\"ABILITY.BRITISH.HQ_BUILD_ANVIL_1_MP\",\"detail\":\"ABILITY.BRITISH.HQ_BUILD_ANVIL_1_MP\"},{\"id\":\"ABILITY.BRITISH.HQ_BUILD_ANVIL_2_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.HQ_BUILD_ANVIL_2_MP\",\"documentation\":\"ABILITY.BRITISH.HQ_BUILD_ANVIL_2_MP\",\"detail\":\"ABILITY.BRITISH.HQ_BUILD_ANVIL_2_MP\"},{\"id\":\"ABILITY.BRITISH.IMPROVED_FORTIFCATIONS\",\"kind\":17,\"label\":\"ABILITY.BRITISH.IMPROVED_FORTIFCATIONS\",\"documentation\":\"ABILITY.BRITISH.IMPROVED_FORTIFCATIONS\",\"detail\":\"ABILITY.BRITISH.IMPROVED_FORTIFCATIONS\"},{\"id\":\"ABILITY.BRITISH.INFANTRY_RECON_TACTICS\",\"kind\":17,\"label\":\"ABILITY.BRITISH.INFANTRY_RECON_TACTICS\",\"documentation\":\"ABILITY.BRITISH.INFANTRY_RECON_TACTICS\",\"detail\":\"ABILITY.BRITISH.INFANTRY_RECON_TACTICS\"},{\"id\":\"ABILITY.BRITISH.INFANTRY_SMOKE_GRENADE_RESPOSITION\",\"kind\":17,\"label\":\"ABILITY.BRITISH.INFANTRY_SMOKE_GRENADE_RESPOSITION\",\"documentation\":\"ABILITY.BRITISH.INFANTRY_SMOKE_GRENADE_RESPOSITION\",\"detail\":\"ABILITY.BRITISH.INFANTRY_SMOKE_GRENADE_RESPOSITION\"},{\"id\":\"ABILITY.BRITISH.INFILTRATION_COMMANDOS\",\"kind\":17,\"label\":\"ABILITY.BRITISH.INFILTRATION_COMMANDOS\",\"documentation\":\"ABILITY.BRITISH.INFILTRATION_COMMANDOS\",\"detail\":\"ABILITY.BRITISH.INFILTRATION_COMMANDOS\"},{\"id\":\"ABILITY.BRITISH.LAND_MATTRESS\",\"kind\":17,\"label\":\"ABILITY.BRITISH.LAND_MATTRESS\",\"documentation\":\"ABILITY.BRITISH.LAND_MATTRESS\",\"detail\":\"ABILITY.BRITISH.LAND_MATTRESS\"},{\"id\":\"ABILITY.BRITISH.LAND_MATTRESS_25LB_ROCKET\",\"kind\":17,\"label\":\"ABILITY.BRITISH.LAND_MATTRESS_25LB_ROCKET\",\"documentation\":\"ABILITY.BRITISH.LAND_MATTRESS_25LB_ROCKET\",\"detail\":\"ABILITY.BRITISH.LAND_MATTRESS_25LB_ROCKET\"},{\"id\":\"ABILITY.BRITISH.LAND_MATTRESS_60LB_ROCKET\",\"kind\":17,\"label\":\"ABILITY.BRITISH.LAND_MATTRESS_60LB_ROCKET\",\"documentation\":\"ABILITY.BRITISH.LAND_MATTRESS_60LB_ROCKET\",\"detail\":\"ABILITY.BRITISH.LAND_MATTRESS_60LB_ROCKET\"},{\"id\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE\",\"documentation\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE\",\"detail\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE\"},{\"id\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE_SMOKE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE_SMOKE\",\"documentation\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE_SMOKE\",\"detail\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE_SMOKE\"},{\"id\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE_VICTOR_TARGET_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE_VICTOR_TARGET_MP\",\"documentation\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE_VICTOR_TARGET_MP\",\"detail\":\"ABILITY.BRITISH.LAND_MATTRESS_BARRAGE_VICTOR_TARGET_MP\"},{\"id\":\"ABILITY.BRITISH.LAND_MATTRESS_FIRE_ALL\",\"kind\":17,\"label\":\"ABILITY.BRITISH.LAND_MATTRESS_FIRE_ALL\",\"documentation\":\"ABILITY.BRITISH.LAND_MATTRESS_FIRE_ALL\",\"detail\":\"ABILITY.BRITISH.LAND_MATTRESS_FIRE_ALL\"},{\"id\":\"ABILITY.BRITISH.LAND_MATTRESS_LOAD_ROCKETS_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.LAND_MATTRESS_LOAD_ROCKETS_MP\",\"documentation\":\"ABILITY.BRITISH.LAND_MATTRESS_LOAD_ROCKETS_MP\",\"detail\":\"ABILITY.BRITISH.LAND_MATTRESS_LOAD_ROCKETS_MP\"},{\"id\":\"ABILITY.BRITISH.LAND_MATTRESS_PHOSPHORUS_ROCKET\",\"kind\":17,\"label\":\"ABILITY.BRITISH.LAND_MATTRESS_PHOSPHORUS_ROCKET\",\"documentation\":\"ABILITY.BRITISH.LAND_MATTRESS_PHOSPHORUS_ROCKET\",\"detail\":\"ABILITY.BRITISH.LAND_MATTRESS_PHOSPHORUS_ROCKET\"},{\"id\":\"ABILITY.BRITISH.MEDIC_AUTO_HEAL_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.MEDIC_AUTO_HEAL_MP\",\"documentation\":\"ABILITY.BRITISH.MEDIC_AUTO_HEAL_MP\",\"detail\":\"ABILITY.BRITISH.MEDIC_AUTO_HEAL_MP\"},{\"id\":\"ABILITY.BRITISH.MORTAR_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.BRITISH.MORTAR_ARTILLERY\",\"documentation\":\"ABILITY.BRITISH.MORTAR_ARTILLERY\",\"detail\":\"ABILITY.BRITISH.MORTAR_ARTILLERY\"},{\"id\":\"ABILITY.BRITISH.MORTAR_FIRE_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.BRITISH.MORTAR_FIRE_ARTILLERY\",\"documentation\":\"ABILITY.BRITISH.MORTAR_FIRE_ARTILLERY\",\"detail\":\"ABILITY.BRITISH.MORTAR_FIRE_ARTILLERY\"},{\"id\":\"ABILITY.BRITISH.MORTAR_PIT_COUNTER_BATTERY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.MORTAR_PIT_COUNTER_BATTERY_MP\",\"documentation\":\"ABILITY.BRITISH.MORTAR_PIT_COUNTER_BATTERY_MP\",\"detail\":\"ABILITY.BRITISH.MORTAR_PIT_COUNTER_BATTERY_MP\"},{\"id\":\"ABILITY.BRITISH.OBSERVATION_MODE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.OBSERVATION_MODE\",\"documentation\":\"ABILITY.BRITISH.OBSERVATION_MODE\",\"detail\":\"ABILITY.BRITISH.OBSERVATION_MODE\"},{\"id\":\"ABILITY.BRITISH.OBSERVATION_VALENTINE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.OBSERVATION_VALENTINE\",\"documentation\":\"ABILITY.BRITISH.OBSERVATION_VALENTINE\",\"detail\":\"ABILITY.BRITISH.OBSERVATION_VALENTINE\"},{\"id\":\"ABILITY.BRITISH.OFFICER_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.BRITISH.OFFICER_ARTILLERY\",\"documentation\":\"ABILITY.BRITISH.OFFICER_ARTILLERY\",\"detail\":\"ABILITY.BRITISH.OFFICER_ARTILLERY\"},{\"id\":\"ABILITY.BRITISH.OFFICER_ARTILLERY_SEXTON_VICTOR_TARGET_AIRBURST_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.OFFICER_ARTILLERY_SEXTON_VICTOR_TARGET_AIRBURST_BARRAGE_MP\",\"documentation\":\"ABILITY.BRITISH.OFFICER_ARTILLERY_SEXTON_VICTOR_TARGET_AIRBURST_BARRAGE_MP\",\"detail\":\"ABILITY.BRITISH.OFFICER_ARTILLERY_SEXTON_VICTOR_TARGET_AIRBURST_BARRAGE_MP\"},{\"id\":\"ABILITY.BRITISH.OFFICER_ARTILLERY_SEXTON_VICTOR_TARGET_CONCENTRATION_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.OFFICER_ARTILLERY_SEXTON_VICTOR_TARGET_CONCENTRATION_BARRAGE_MP\",\"documentation\":\"ABILITY.BRITISH.OFFICER_ARTILLERY_SEXTON_VICTOR_TARGET_CONCENTRATION_BARRAGE_MP\",\"detail\":\"ABILITY.BRITISH.OFFICER_ARTILLERY_SEXTON_VICTOR_TARGET_CONCENTRATION_BARRAGE_MP\"},{\"id\":\"ABILITY.BRITISH.OFFICER_CHARGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.OFFICER_CHARGE_MP\",\"documentation\":\"ABILITY.BRITISH.OFFICER_CHARGE_MP\",\"detail\":\"ABILITY.BRITISH.OFFICER_CHARGE_MP\"},{\"id\":\"ABILITY.BRITISH.OFFICER_RECON_SWEEP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.OFFICER_RECON_SWEEP\",\"documentation\":\"ABILITY.BRITISH.OFFICER_RECON_SWEEP\",\"detail\":\"ABILITY.BRITISH.OFFICER_RECON_SWEEP\"},{\"id\":\"ABILITY.BRITISH.PASSIVE_17_POUNDER_EMPLACEMENT_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.PASSIVE_17_POUNDER_EMPLACEMENT_MP\",\"documentation\":\"ABILITY.BRITISH.PASSIVE_17_POUNDER_EMPLACEMENT_MP\",\"detail\":\"ABILITY.BRITISH.PASSIVE_17_POUNDER_EMPLACEMENT_MP\"},{\"id\":\"ABILITY.BRITISH.PASSIVE_BOFORS_EMPLACEMENT_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.PASSIVE_BOFORS_EMPLACEMENT_MP\",\"documentation\":\"ABILITY.BRITISH.PASSIVE_BOFORS_EMPLACEMENT_MP\",\"detail\":\"ABILITY.BRITISH.PASSIVE_BOFORS_EMPLACEMENT_MP\"},{\"id\":\"ABILITY.BRITISH.PASSIVE_MORTAR_EMPLACEMENT_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.PASSIVE_MORTAR_EMPLACEMENT_MP\",\"documentation\":\"ABILITY.BRITISH.PASSIVE_MORTAR_EMPLACEMENT_MP\",\"detail\":\"ABILITY.BRITISH.PASSIVE_MORTAR_EMPLACEMENT_MP\"},{\"id\":\"ABILITY.BRITISH.PEPPER_POT\",\"kind\":17,\"label\":\"ABILITY.BRITISH.PEPPER_POT\",\"documentation\":\"ABILITY.BRITISH.PEPPER_POT\",\"detail\":\"ABILITY.BRITISH.PEPPER_POT\"},{\"id\":\"ABILITY.BRITISH.PERCISION_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.PERCISION_BARRAGE\",\"documentation\":\"ABILITY.BRITISH.PERCISION_BARRAGE\",\"detail\":\"ABILITY.BRITISH.PERCISION_BARRAGE\"},{\"id\":\"ABILITY.BRITISH.PIAT_DEPLOY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.PIAT_DEPLOY_MP\",\"documentation\":\"ABILITY.BRITISH.PIAT_DEPLOY_MP\",\"detail\":\"ABILITY.BRITISH.PIAT_DEPLOY_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25_PDR_FLARE_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25_PDR_FLARE_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25_PDR_FLARE_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.BRITISH.QF_25_PDR_FLARE_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_ANTITANK_ABILITY_BASE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_ANTITANK_ABILITY_BASE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_ANTITANK_ABILITY_BASE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_ANTITANK_ABILITY_BASE_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_ANTITANK_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_ANTITANK_ABILITY_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_ANTITANK_ABILITY_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_ANTITANK_ABILITY_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_BARRAGE_ABILITY_BASE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_BARRAGE_ABILITY_BASE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_BARRAGE_ABILITY_BASE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_BARRAGE_ABILITY_BASE_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_BASE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_BASE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_BASE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_BASE_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_BASE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_BASE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_BASE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_BASE_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_FWD_HQ_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_FWD_HQ_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_FWD_HQ_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_FWD_HQ_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_OFFICER_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_OFFICER_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_OFFICER_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_OFFICER_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_SNIPER_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_SNIPER_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_SNIPER_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_SNIPER_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_VALENTINE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_VALENTINE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_VALENTINE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_FIRE_ORDER_VALENTINE_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_SMOKE_SCREEN_BASE_MATT_TEST_VICTOR_TARGET_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_SMOKE_SCREEN_BASE_MATT_TEST_VICTOR_TARGET_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_SMOKE_SCREEN_BASE_MATT_TEST_VICTOR_TARGET_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_COORDINATED_SMOKE_SCREEN_BASE_MATT_TEST_VICTOR_TARGET_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_CREEPING_SMOKE_BARRAGE_ABILITY_BASE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_CREEPING_SMOKE_BARRAGE_ABILITY_BASE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_CREEPING_SMOKE_BARRAGE_ABILITY_BASE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_CREEPING_SMOKE_BARRAGE_ABILITY_BASE_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_CREEPING_SMOKE_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_CREEPING_SMOKE_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_CREEPING_SMOKE_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_CREEPING_SMOKE_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_DIRECT_BARRAGE_BASE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_DIRECT_BARRAGE_BASE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_DIRECT_BARRAGE_BASE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_DIRECT_BARRAGE_BASE_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_OVERWATCH_BASE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_OVERWATCH_BASE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_OVERWATCH_BASE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_OVERWATCH_BASE_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_RAPID_RESPONSE_BARRAGE_BASE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_RAPID_RESPONSE_BARRAGE_BASE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_RAPID_RESPONSE_BARRAGE_BASE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_RAPID_RESPONSE_BARRAGE_BASE_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_RAPID_RESPONSE_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_RAPID_RESPONSE_BARRAGE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_RAPID_RESPONSE_BARRAGE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_RAPID_RESPONSE_BARRAGE_MP\"},{\"id\":\"ABILITY.BRITISH.QF_25LB_SMOKE_SCREEN_BASE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.QF_25LB_SMOKE_SCREEN_BASE_MP\",\"documentation\":\"ABILITY.BRITISH.QF_25LB_SMOKE_SCREEN_BASE_MP\",\"detail\":\"ABILITY.BRITISH.QF_25LB_SMOKE_SCREEN_BASE_MP\"},{\"id\":\"ABILITY.BRITISH.RAPID_ADVANCE\",\"kind\":17,\"label\":\"ABILITY.BRITISH.RAPID_ADVANCE\",\"documentation\":\"ABILITY.BRITISH.RAPID_ADVANCE\",\"detail\":\"ABILITY.BRITISH.RAPID_ADVANCE\"},{\"id\":\"ABILITY.BRITISH.RAPID_RESPONSE_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.BRITISH.RAPID_RESPONSE_ARTILLERY\",\"documentation\":\"ABILITY.BRITISH.RAPID_RESPONSE_ARTILLERY\",\"detail\":\"ABILITY.BRITISH.RAPID_RESPONSE_ARTILLERY\"},{\"id\":\"ABILITY.BRITISH.RECON_SECTION_SPRINT_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.RECON_SECTION_SPRINT_MP\",\"documentation\":\"ABILITY.BRITISH.RECON_SECTION_SPRINT_MP\",\"detail\":\"ABILITY.BRITISH.RECON_SECTION_SPRINT_MP\"},{\"id\":\"ABILITY.BRITISH.REINFORCE_THE_FRONT\",\"kind\":17,\"label\":\"ABILITY.BRITISH.REINFORCE_THE_FRONT\",\"documentation\":\"ABILITY.BRITISH.REINFORCE_THE_FRONT\",\"detail\":\"ABILITY.BRITISH.REINFORCE_THE_FRONT\"},{\"id\":\"ABILITY.BRITISH.REINFORCED_STRUCTURES\",\"kind\":17,\"label\":\"ABILITY.BRITISH.REINFORCED_STRUCTURES\",\"documentation\":\"ABILITY.BRITISH.REINFORCED_STRUCTURES\",\"detail\":\"ABILITY.BRITISH.REINFORCED_STRUCTURES\"},{\"id\":\"ABILITY.BRITISH.SAPPER_ANVIL_BOOBY_TRAP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SAPPER_ANVIL_BOOBY_TRAP\",\"documentation\":\"ABILITY.BRITISH.SAPPER_ANVIL_BOOBY_TRAP\",\"detail\":\"ABILITY.BRITISH.SAPPER_ANVIL_BOOBY_TRAP\"},{\"id\":\"ABILITY.BRITISH.SAPPER_FLAMETHROWERS\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SAPPER_FLAMETHROWERS\",\"documentation\":\"ABILITY.BRITISH.SAPPER_FLAMETHROWERS\",\"detail\":\"ABILITY.BRITISH.SAPPER_FLAMETHROWERS\"},{\"id\":\"ABILITY.BRITISH.SAPPER_GAMMON_BOMB_MEDIUM_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SAPPER_GAMMON_BOMB_MEDIUM_MP\",\"documentation\":\"ABILITY.BRITISH.SAPPER_GAMMON_BOMB_MEDIUM_MP\",\"detail\":\"ABILITY.BRITISH.SAPPER_GAMMON_BOMB_MEDIUM_MP\"},{\"id\":\"ABILITY.BRITISH.SAPPER_SALVAGE_WRECK\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SAPPER_SALVAGE_WRECK\",\"documentation\":\"ABILITY.BRITISH.SAPPER_SALVAGE_WRECK\",\"detail\":\"ABILITY.BRITISH.SAPPER_SALVAGE_WRECK\"},{\"id\":\"ABILITY.BRITISH.SEXTON_ARTILLERY_BARRAGE_CREEPING_VICTOR_TARGET_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SEXTON_ARTILLERY_BARRAGE_CREEPING_VICTOR_TARGET_MP\",\"documentation\":\"ABILITY.BRITISH.SEXTON_ARTILLERY_BARRAGE_CREEPING_VICTOR_TARGET_MP\",\"detail\":\"ABILITY.BRITISH.SEXTON_ARTILLERY_BARRAGE_CREEPING_VICTOR_TARGET_MP\"},{\"id\":\"ABILITY.BRITISH.SEXTON_DISPATCH_BRITISH\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SEXTON_DISPATCH_BRITISH\",\"documentation\":\"ABILITY.BRITISH.SEXTON_DISPATCH_BRITISH\",\"detail\":\"ABILITY.BRITISH.SEXTON_DISPATCH_BRITISH\"},{\"id\":\"ABILITY.BRITISH.SEXTON_SPG_25_CONCENTRATION_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SEXTON_SPG_25_CONCENTRATION_BARRAGE_MP\",\"documentation\":\"ABILITY.BRITISH.SEXTON_SPG_25_CONCENTRATION_BARRAGE_MP\",\"detail\":\"ABILITY.BRITISH.SEXTON_SPG_25_CONCENTRATION_BARRAGE_MP\"},{\"id\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_ARTILLERY_CREEPING_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_ARTILLERY_CREEPING_BARRAGE_MP\",\"documentation\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_ARTILLERY_CREEPING_BARRAGE_MP\",\"detail\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_ARTILLERY_CREEPING_BARRAGE_MP\"},{\"id\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_SUPERCHARGE_AIRBURST_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_SUPERCHARGE_AIRBURST_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_SUPERCHARGE_AIRBURST_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_SUPERCHARGE_AIRBURST_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_SUPERCHARGE_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_SUPERCHARGE_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_SUPERCHARGE_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.BRITISH.SEXTON_SPG_25_PDR_SUPERCHARGE_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.BRITISH.SMOKE_ASSAULT\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SMOKE_ASSAULT\",\"documentation\":\"ABILITY.BRITISH.SMOKE_ASSAULT\",\"detail\":\"ABILITY.BRITISH.SMOKE_ASSAULT\"},{\"id\":\"ABILITY.BRITISH.SNIPER_BOYS_ANTI_TANK_CRITICAL_SHOT_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SNIPER_BOYS_ANTI_TANK_CRITICAL_SHOT_MP\",\"documentation\":\"ABILITY.BRITISH.SNIPER_BOYS_ANTI_TANK_CRITICAL_SHOT_MP\",\"detail\":\"ABILITY.BRITISH.SNIPER_BOYS_ANTI_TANK_CRITICAL_SHOT_MP\"},{\"id\":\"ABILITY.BRITISH.STAND_FAST\",\"kind\":17,\"label\":\"ABILITY.BRITISH.STAND_FAST\",\"documentation\":\"ABILITY.BRITISH.STAND_FAST\",\"detail\":\"ABILITY.BRITISH.STAND_FAST\"},{\"id\":\"ABILITY.BRITISH.STRAFING_RUN\",\"kind\":17,\"label\":\"ABILITY.BRITISH.STRAFING_RUN\",\"documentation\":\"ABILITY.BRITISH.STRAFING_RUN\",\"detail\":\"ABILITY.BRITISH.STRAFING_RUN\"},{\"id\":\"ABILITY.BRITISH.SUPER_OVERWATCH_TEST\",\"kind\":17,\"label\":\"ABILITY.BRITISH.SUPER_OVERWATCH_TEST\",\"documentation\":\"ABILITY.BRITISH.SUPER_OVERWATCH_TEST\",\"detail\":\"ABILITY.BRITISH.SUPER_OVERWATCH_TEST\"},{\"id\":\"ABILITY.BRITISH.TANK_HUNTER\",\"kind\":17,\"label\":\"ABILITY.BRITISH.TANK_HUNTER\",\"documentation\":\"ABILITY.BRITISH.TANK_HUNTER\",\"detail\":\"ABILITY.BRITISH.TANK_HUNTER\"},{\"id\":\"ABILITY.BRITISH.TOMMY_COVER_COMBAT_BONUS\",\"kind\":17,\"label\":\"ABILITY.BRITISH.TOMMY_COVER_COMBAT_BONUS\",\"documentation\":\"ABILITY.BRITISH.TOMMY_COVER_COMBAT_BONUS\",\"detail\":\"ABILITY.BRITISH.TOMMY_COVER_COMBAT_BONUS\"},{\"id\":\"ABILITY.BRITISH.TOMMY_GAMMON_BOMB_HEAVY_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.TOMMY_GAMMON_BOMB_HEAVY_MP\",\"documentation\":\"ABILITY.BRITISH.TOMMY_GAMMON_BOMB_HEAVY_MP\",\"detail\":\"ABILITY.BRITISH.TOMMY_GAMMON_BOMB_HEAVY_MP\"},{\"id\":\"ABILITY.BRITISH.TOMMY_GAMMON_BOMB_MEDIUM_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.TOMMY_GAMMON_BOMB_MEDIUM_MP\",\"documentation\":\"ABILITY.BRITISH.TOMMY_GAMMON_BOMB_MEDIUM_MP\",\"detail\":\"ABILITY.BRITISH.TOMMY_GAMMON_BOMB_MEDIUM_MP\"},{\"id\":\"ABILITY.BRITISH.TOMMY_HEAT_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.TOMMY_HEAT_GRENADE_MP\",\"documentation\":\"ABILITY.BRITISH.TOMMY_HEAT_GRENADE_MP\",\"detail\":\"ABILITY.BRITISH.TOMMY_HEAT_GRENADE_MP\"},{\"id\":\"ABILITY.BRITISH.TOMMY_MILLS_BOMB_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.TOMMY_MILLS_BOMB_MP\",\"documentation\":\"ABILITY.BRITISH.TOMMY_MILLS_BOMB_MP\",\"detail\":\"ABILITY.BRITISH.TOMMY_MILLS_BOMB_MP\"},{\"id\":\"ABILITY.BRITISH.TOMMY_OFFICER_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.BRITISH.TOMMY_OFFICER_ARTILLERY\",\"documentation\":\"ABILITY.BRITISH.TOMMY_OFFICER_ARTILLERY\",\"detail\":\"ABILITY.BRITISH.TOMMY_OFFICER_ARTILLERY\"},{\"id\":\"ABILITY.BRITISH.TOMMY_STAND_YOUR_GROUND\",\"kind\":17,\"label\":\"ABILITY.BRITISH.TOMMY_STAND_YOUR_GROUND\",\"documentation\":\"ABILITY.BRITISH.TOMMY_STAND_YOUR_GROUND\",\"detail\":\"ABILITY.BRITISH.TOMMY_STAND_YOUR_GROUND\"},{\"id\":\"ABILITY.BRITISH.TUNE_UP_BONUS_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.TUNE_UP_BONUS_MP\",\"documentation\":\"ABILITY.BRITISH.TUNE_UP_BONUS_MP\",\"detail\":\"ABILITY.BRITISH.TUNE_UP_BONUS_MP\"},{\"id\":\"ABILITY.BRITISH.UEC_SELF_REPAIR\",\"kind\":17,\"label\":\"ABILITY.BRITISH.UEC_SELF_REPAIR\",\"documentation\":\"ABILITY.BRITISH.UEC_SELF_REPAIR\",\"detail\":\"ABILITY.BRITISH.UEC_SELF_REPAIR\"},{\"id\":\"ABILITY.BRITISH.UEC_SELF_REPAIR_IMPROVED\",\"kind\":17,\"label\":\"ABILITY.BRITISH.UEC_SELF_REPAIR_IMPROVED\",\"documentation\":\"ABILITY.BRITISH.UEC_SELF_REPAIR_IMPROVED\",\"detail\":\"ABILITY.BRITISH.UEC_SELF_REPAIR_IMPROVED\"},{\"id\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_DROP_LMG\",\"kind\":17,\"label\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_DROP_LMG\",\"documentation\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_DROP_LMG\",\"detail\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_DROP_LMG\"},{\"id\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_DROP_PIAT\",\"kind\":17,\"label\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_DROP_PIAT\",\"documentation\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_DROP_PIAT\",\"detail\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_DROP_PIAT\"},{\"id\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_VICKERS_SUPPRESSION_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_VICKERS_SUPPRESSION_MP\",\"documentation\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_VICKERS_SUPPRESSION_MP\",\"detail\":\"ABILITY.BRITISH.UNIVERSAL_CARRIER_VICKERS_SUPPRESSION_MP\"},{\"id\":\"ABILITY.BRITISH.VALENTINE_ARTILLERY_SEXTON_VICTOR_TARGET_CONCENTRATION_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.VALENTINE_ARTILLERY_SEXTON_VICTOR_TARGET_CONCENTRATION_BARRAGE_MP\",\"documentation\":\"ABILITY.BRITISH.VALENTINE_ARTILLERY_SEXTON_VICTOR_TARGET_CONCENTRATION_BARRAGE_MP\",\"detail\":\"ABILITY.BRITISH.VALENTINE_ARTILLERY_SEXTON_VICTOR_TARGET_CONCENTRATION_BARRAGE_MP\"},{\"id\":\"ABILITY.BRITISH.VALENTINE_SMOKE_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.VALENTINE_SMOKE_BARRAGE_MP\",\"documentation\":\"ABILITY.BRITISH.VALENTINE_SMOKE_BARRAGE_MP\",\"detail\":\"ABILITY.BRITISH.VALENTINE_SMOKE_BARRAGE_MP\"},{\"id\":\"ABILITY.BRITISH.VICKERS_AIRDROP\",\"kind\":17,\"label\":\"ABILITY.BRITISH.VICKERS_AIRDROP\",\"documentation\":\"ABILITY.BRITISH.VICKERS_AIRDROP\",\"detail\":\"ABILITY.BRITISH.VICKERS_AIRDROP\"},{\"id\":\"ABILITY.BRITISH.VICKERS_HMG_VET_1_BONUS\",\"kind\":17,\"label\":\"ABILITY.BRITISH.VICKERS_HMG_VET_1_BONUS\",\"documentation\":\"ABILITY.BRITISH.VICKERS_HMG_VET_1_BONUS\",\"detail\":\"ABILITY.BRITISH.VICKERS_HMG_VET_1_BONUS\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_17_POUNDER_ABILITY_ACTIVE\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_17_POUNDER_ABILITY_ACTIVE\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_17_POUNDER_ABILITY_ACTIVE\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_17_POUNDER_ABILITY_ACTIVE\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_AVRE_NOT_RELOADED\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_AVRE_NOT_RELOADED\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_AVRE_NOT_RELOADED\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_AVRE_NOT_RELOADED\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_AVRE_RELOADING\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_AVRE_RELOADING\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_AVRE_RELOADING\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_AVRE_RELOADING\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BASE_ARTILLERY_COUNTER_BARRAGE_ABILITY_ACTIVE\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BASE_ARTILLERY_COUNTER_BARRAGE_ABILITY_ACTIVE\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BASE_ARTILLERY_COUNTER_BARRAGE_ABILITY_ACTIVE\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BASE_ARTILLERY_COUNTER_BARRAGE_ABILITY_ACTIVE\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BASE_ARTILLERY_OVERWATCH_ABILITY_ACTIVE\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BASE_ARTILLERY_OVERWATCH_ABILITY_ACTIVE\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BASE_ARTILLERY_OVERWATCH_ABILITY_ACTIVE\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BASE_ARTILLERY_OVERWATCH_ABILITY_ACTIVE\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BOFORS_EMPLACEMENT_AA_MODE_ENABLED\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BOFORS_EMPLACEMENT_AA_MODE_ENABLED\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BOFORS_EMPLACEMENT_AA_MODE_ENABLED\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BOFORS_EMPLACEMENT_AA_MODE_ENABLED\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BOFORS_EMPLACEMENT_BARRAGE_ACTIVE\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BOFORS_EMPLACEMENT_BARRAGE_ACTIVE\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BOFORS_EMPLACEMENT_BARRAGE_ACTIVE\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_BOFORS_EMPLACEMENT_BARRAGE_ACTIVE\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_CUSTOM_LOADOUT_LAUNCH_AVAILABLE\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_CUSTOM_LOADOUT_LAUNCH_AVAILABLE\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_CUSTOM_LOADOUT_LAUNCH_AVAILABLE\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_CUSTOM_LOADOUT_LAUNCH_AVAILABLE\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_HARD_LANDED\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_HARD_LANDED\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_HARD_LANDED\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_HARD_LANDED\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_NOT_STOPPED\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_NOT_STOPPED\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_NOT_STOPPED\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_GLIDER_NOT_STOPPED\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_BARRAGE_ACTIVE\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_BARRAGE_ACTIVE\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_BARRAGE_ACTIVE\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_BARRAGE_ACTIVE\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_DEFAULT_LOADED\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_DEFAULT_LOADED\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_DEFAULT_LOADED\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_DEFAULT_LOADED\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_SPECIAL_1_LOADED\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_SPECIAL_1_LOADED\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_SPECIAL_1_LOADED\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_SPECIAL_1_LOADED\"},{\"id\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_SPECIAL_2_LOADED\",\"kind\":17,\"label\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_SPECIAL_2_LOADED\",\"documentation\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_SPECIAL_2_LOADED\",\"detail\":\"UPG.BRITISH.ABILITY_LOCK_OUT_MORTAR_EMPLACEMENT_SLOT_1_SPECIAL_2_LOADED\"},{\"id\":\"UPG.BRITISH.ADVANCED_ASSEMBLY\",\"kind\":17,\"label\":\"UPG.BRITISH.ADVANCED_ASSEMBLY\",\"documentation\":\"UPG.BRITISH.ADVANCED_ASSEMBLY\",\"detail\":\"UPG.BRITISH.ADVANCED_ASSEMBLY\"},{\"id\":\"UPG.BRITISH.ADVANCED_ASSEMBLY_RESEARCH\",\"kind\":17,\"label\":\"UPG.BRITISH.ADVANCED_ASSEMBLY_RESEARCH\",\"documentation\":\"UPG.BRITISH.ADVANCED_ASSEMBLY_RESEARCH\",\"detail\":\"UPG.BRITISH.ADVANCED_ASSEMBLY_RESEARCH\"},{\"id\":\"UPG.BRITISH.ADVANCED_COVER\",\"kind\":17,\"label\":\"UPG.BRITISH.ADVANCED_COVER\",\"documentation\":\"UPG.BRITISH.ADVANCED_COVER\",\"detail\":\"UPG.BRITISH.ADVANCED_COVER\"},{\"id\":\"UPG.BRITISH.AEC_HE_ROUNDS_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.AEC_HE_ROUNDS_MP\",\"documentation\":\"UPG.BRITISH.AEC_HE_ROUNDS_MP\",\"detail\":\"UPG.BRITISH.AEC_HE_ROUNDS_MP\"},{\"id\":\"UPG.BRITISH.AEC_HE_ROUNDS_UNLOCK_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.AEC_HE_ROUNDS_UNLOCK_MP\",\"documentation\":\"UPG.BRITISH.AEC_HE_ROUNDS_UNLOCK_MP\",\"detail\":\"UPG.BRITISH.AEC_HE_ROUNDS_UNLOCK_MP\"},{\"id\":\"UPG.BRITISH.AEC_RAPID_FIRE_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.AEC_RAPID_FIRE_MP\",\"documentation\":\"UPG.BRITISH.AEC_RAPID_FIRE_MP\",\"detail\":\"UPG.BRITISH.AEC_RAPID_FIRE_MP\"},{\"id\":\"UPG.BRITISH.AEC_TARGET_OPTICS_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.AEC_TARGET_OPTICS_MP\",\"documentation\":\"UPG.BRITISH.AEC_TARGET_OPTICS_MP\",\"detail\":\"UPG.BRITISH.AEC_TARGET_OPTICS_MP\"},{\"id\":\"UPG.BRITISH.AEC_TARGET_TURRET_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.AEC_TARGET_TURRET_MP\",\"documentation\":\"UPG.BRITISH.AEC_TARGET_TURRET_MP\",\"detail\":\"UPG.BRITISH.AEC_TARGET_TURRET_MP\"},{\"id\":\"UPG.BRITISH.AEC_TREAD_FIRST_SHOT_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.AEC_TREAD_FIRST_SHOT_MP\",\"documentation\":\"UPG.BRITISH.AEC_TREAD_FIRST_SHOT_MP\",\"detail\":\"UPG.BRITISH.AEC_TREAD_FIRST_SHOT_MP\"},{\"id\":\"UPG.BRITISH.AEC_TREAD_SECOND_SHOT_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.AEC_TREAD_SECOND_SHOT_MP\",\"documentation\":\"UPG.BRITISH.AEC_TREAD_SECOND_SHOT_MP\",\"detail\":\"UPG.BRITISH.AEC_TREAD_SECOND_SHOT_MP\"},{\"id\":\"UPG.BRITISH.ARTY_PIT_LOCKOUT_UPGRADE\",\"kind\":17,\"label\":\"UPG.BRITISH.ARTY_PIT_LOCKOUT_UPGRADE\",\"documentation\":\"UPG.BRITISH.ARTY_PIT_LOCKOUT_UPGRADE\",\"detail\":\"UPG.BRITISH.ARTY_PIT_LOCKOUT_UPGRADE\"},{\"id\":\"UPG.BRITISH.ASSAULT\",\"kind\":17,\"label\":\"UPG.BRITISH.ASSAULT\",\"documentation\":\"UPG.BRITISH.ASSAULT\",\"detail\":\"UPG.BRITISH.ASSAULT\"},{\"id\":\"UPG.BRITISH.ASSAULT_ACTIVE\",\"kind\":17,\"label\":\"UPG.BRITISH.ASSAULT_ACTIVE\",\"documentation\":\"UPG.BRITISH.ASSAULT_ACTIVE\",\"detail\":\"UPG.BRITISH.ASSAULT_ACTIVE\"},{\"id\":\"UPG.BRITISH.AVRE_MORTAR_RELOAD\",\"kind\":17,\"label\":\"UPG.BRITISH.AVRE_MORTAR_RELOAD\",\"documentation\":\"UPG.BRITISH.AVRE_MORTAR_RELOAD\",\"detail\":\"UPG.BRITISH.AVRE_MORTAR_RELOAD\"},{\"id\":\"UPG.BRITISH.BASE_BUILDING_BRACED_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.BASE_BUILDING_BRACED_MP\",\"documentation\":\"UPG.BRITISH.BASE_BUILDING_BRACED_MP\",\"detail\":\"UPG.BRITISH.BASE_BUILDING_BRACED_MP\"},{\"id\":\"UPG.BRITISH.BOYS_AT_RIFLE\",\"kind\":17,\"label\":\"UPG.BRITISH.BOYS_AT_RIFLE\",\"documentation\":\"UPG.BRITISH.BOYS_AT_RIFLE\",\"detail\":\"UPG.BRITISH.BOYS_AT_RIFLE\"},{\"id\":\"UPG.BRITISH.BREN_LMG_UNLOCK_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.BREN_LMG_UNLOCK_MP\",\"documentation\":\"UPG.BRITISH.BREN_LMG_UNLOCK_MP\",\"detail\":\"UPG.BRITISH.BREN_LMG_UNLOCK_MP\"},{\"id\":\"UPG.BRITISH.BRITISH_TANK_COMMANDER\",\"kind\":17,\"label\":\"UPG.BRITISH.BRITISH_TANK_COMMANDER\",\"documentation\":\"UPG.BRITISH.BRITISH_TANK_COMMANDER\",\"detail\":\"UPG.BRITISH.BRITISH_TANK_COMMANDER\"},{\"id\":\"UPG.BRITISH.CAN_TUNE_UP_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.CAN_TUNE_UP_MP\",\"documentation\":\"UPG.BRITISH.CAN_TUNE_UP_MP\",\"detail\":\"UPG.BRITISH.CAN_TUNE_UP_MP\"},{\"id\":\"UPG.BRITISH.COMMAND_HQ\",\"kind\":17,\"label\":\"UPG.BRITISH.COMMAND_HQ\",\"documentation\":\"UPG.BRITISH.COMMAND_HQ\",\"detail\":\"UPG.BRITISH.COMMAND_HQ\"},{\"id\":\"UPG.BRITISH.COMMAND_VEHICLE\",\"kind\":17,\"label\":\"UPG.BRITISH.COMMAND_VEHICLE\",\"documentation\":\"UPG.BRITISH.COMMAND_VEHICLE\",\"detail\":\"UPG.BRITISH.COMMAND_VEHICLE\"},{\"id\":\"UPG.BRITISH.COMMAND_VEHICLE_ACTIVE\",\"kind\":17,\"label\":\"UPG.BRITISH.COMMAND_VEHICLE_ACTIVE\",\"documentation\":\"UPG.BRITISH.COMMAND_VEHICLE_ACTIVE\",\"detail\":\"UPG.BRITISH.COMMAND_VEHICLE_ACTIVE\"},{\"id\":\"UPG.BRITISH.COMMAND_VEHICLE_ACTIVE_PLAYER\",\"kind\":17,\"label\":\"UPG.BRITISH.COMMAND_VEHICLE_ACTIVE_PLAYER\",\"documentation\":\"UPG.BRITISH.COMMAND_VEHICLE_ACTIVE_PLAYER\",\"detail\":\"UPG.BRITISH.COMMAND_VEHICLE_ACTIVE_PLAYER\"},{\"id\":\"UPG.BRITISH.COMMANDO_RETREAT_SMOKE_DELAY\",\"kind\":17,\"label\":\"UPG.BRITISH.COMMANDO_RETREAT_SMOKE_DELAY\",\"documentation\":\"UPG.BRITISH.COMMANDO_RETREAT_SMOKE_DELAY\",\"detail\":\"UPG.BRITISH.COMMANDO_RETREAT_SMOKE_DELAY\"},{\"id\":\"UPG.BRITISH.COMPANY_ANVIL_BUILDING_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.COMPANY_ANVIL_BUILDING_MP\",\"documentation\":\"UPG.BRITISH.COMPANY_ANVIL_BUILDING_MP\",\"detail\":\"UPG.BRITISH.COMPANY_ANVIL_BUILDING_MP\"},{\"id\":\"UPG.BRITISH.COMPANY_ANVIL_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.COMPANY_ANVIL_MP\",\"documentation\":\"UPG.BRITISH.COMPANY_ANVIL_MP\",\"detail\":\"UPG.BRITISH.COMPANY_ANVIL_MP\"},{\"id\":\"UPG.BRITISH.COMPANY_ANVIL_POINT_SIGHT_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.COMPANY_ANVIL_POINT_SIGHT_MP\",\"documentation\":\"UPG.BRITISH.COMPANY_ANVIL_POINT_SIGHT_MP\",\"detail\":\"UPG.BRITISH.COMPANY_ANVIL_POINT_SIGHT_MP\"},{\"id\":\"UPG.BRITISH.COMPANY_HAMMER_BUILDING_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.COMPANY_HAMMER_BUILDING_MP\",\"documentation\":\"UPG.BRITISH.COMPANY_HAMMER_BUILDING_MP\",\"detail\":\"UPG.BRITISH.COMPANY_HAMMER_BUILDING_MP\"},{\"id\":\"UPG.BRITISH.COMPANY_HAMMER_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.COMPANY_HAMMER_MP\",\"documentation\":\"UPG.BRITISH.COMPANY_HAMMER_MP\",\"detail\":\"UPG.BRITISH.COMPANY_HAMMER_MP\"},{\"id\":\"UPG.BRITISH.COUNTER_BATTERY\",\"kind\":17,\"label\":\"UPG.BRITISH.COUNTER_BATTERY\",\"documentation\":\"UPG.BRITISH.COUNTER_BATTERY\",\"detail\":\"UPG.BRITISH.COUNTER_BATTERY\"},{\"id\":\"UPG.BRITISH.COUNTER_BATTERY_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.COUNTER_BATTERY_MP\",\"documentation\":\"UPG.BRITISH.COUNTER_BATTERY_MP\",\"detail\":\"UPG.BRITISH.COUNTER_BATTERY_MP\"},{\"id\":\"UPG.BRITISH.DEFENSIVE_OPERATIONS\",\"kind\":17,\"label\":\"UPG.BRITISH.DEFENSIVE_OPERATIONS\",\"documentation\":\"UPG.BRITISH.DEFENSIVE_OPERATIONS\",\"detail\":\"UPG.BRITISH.DEFENSIVE_OPERATIONS\"},{\"id\":\"UPG.BRITISH.EMPLACEMENT_DEACTIVATE_BRACE_DELAY\",\"kind\":17,\"label\":\"UPG.BRITISH.EMPLACEMENT_DEACTIVATE_BRACE_DELAY\",\"documentation\":\"UPG.BRITISH.EMPLACEMENT_DEACTIVATE_BRACE_DELAY\",\"detail\":\"UPG.BRITISH.EMPLACEMENT_DEACTIVATE_BRACE_DELAY\"},{\"id\":\"UPG.BRITISH.FIREFLY_TULIP_RELOAD\",\"kind\":17,\"label\":\"UPG.BRITISH.FIREFLY_TULIP_RELOAD\",\"documentation\":\"UPG.BRITISH.FIREFLY_TULIP_RELOAD\",\"detail\":\"UPG.BRITISH.FIREFLY_TULIP_RELOAD\"},{\"id\":\"UPG.BRITISH.FIREFLY_TULIP_ROCKET\",\"kind\":17,\"label\":\"UPG.BRITISH.FIREFLY_TULIP_ROCKET\",\"documentation\":\"UPG.BRITISH.FIREFLY_TULIP_ROCKET\",\"detail\":\"UPG.BRITISH.FIREFLY_TULIP_ROCKET\"},{\"id\":\"UPG.BRITISH.FLAMETHROWERS\",\"kind\":17,\"label\":\"UPG.BRITISH.FLAMETHROWERS\",\"documentation\":\"UPG.BRITISH.FLAMETHROWERS\",\"detail\":\"UPG.BRITISH.FLAMETHROWERS\"},{\"id\":\"UPG.BRITISH.FWD_HQ_RETREAT_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.FWD_HQ_RETREAT_MP\",\"documentation\":\"UPG.BRITISH.FWD_HQ_RETREAT_MP\",\"detail\":\"UPG.BRITISH.FWD_HQ_RETREAT_MP\"},{\"id\":\"UPG.BRITISH.IMPROVED_FORTIFCATION\",\"kind\":17,\"label\":\"UPG.BRITISH.IMPROVED_FORTIFCATION\",\"documentation\":\"UPG.BRITISH.IMPROVED_FORTIFCATION\",\"detail\":\"UPG.BRITISH.IMPROVED_FORTIFCATION\"},{\"id\":\"UPG.BRITISH.IMPROVED_FORTIFCATION_ASSSEMBLY_SQUAD\",\"kind\":17,\"label\":\"UPG.BRITISH.IMPROVED_FORTIFCATION_ASSSEMBLY_SQUAD\",\"documentation\":\"UPG.BRITISH.IMPROVED_FORTIFCATION_ASSSEMBLY_SQUAD\",\"detail\":\"UPG.BRITISH.IMPROVED_FORTIFCATION_ASSSEMBLY_SQUAD\"},{\"id\":\"UPG.BRITISH.IMPROVED_FORTIFCATION_SQUAD\",\"kind\":17,\"label\":\"UPG.BRITISH.IMPROVED_FORTIFCATION_SQUAD\",\"documentation\":\"UPG.BRITISH.IMPROVED_FORTIFCATION_SQUAD\",\"detail\":\"UPG.BRITISH.IMPROVED_FORTIFCATION_SQUAD\"},{\"id\":\"UPG.BRITISH.INFILTRATION_COMMANDOS\",\"kind\":17,\"label\":\"UPG.BRITISH.INFILTRATION_COMMANDOS\",\"documentation\":\"UPG.BRITISH.INFILTRATION_COMMANDOS\",\"detail\":\"UPG.BRITISH.INFILTRATION_COMMANDOS\"},{\"id\":\"UPG.BRITISH.LAND_MATTRESS_FIRING\",\"kind\":17,\"label\":\"UPG.BRITISH.LAND_MATTRESS_FIRING\",\"documentation\":\"UPG.BRITISH.LAND_MATTRESS_FIRING\",\"detail\":\"UPG.BRITISH.LAND_MATTRESS_FIRING\"},{\"id\":\"UPG.BRITISH.LAND_MATTRESS_LOADED_ROCKET\",\"kind\":17,\"label\":\"UPG.BRITISH.LAND_MATTRESS_LOADED_ROCKET\",\"documentation\":\"UPG.BRITISH.LAND_MATTRESS_LOADED_ROCKET\",\"detail\":\"UPG.BRITISH.LAND_MATTRESS_LOADED_ROCKET\"},{\"id\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_25LB_ROCKET\",\"kind\":17,\"label\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_25LB_ROCKET\",\"documentation\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_25LB_ROCKET\",\"detail\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_25LB_ROCKET\"},{\"id\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_60LB_ROCKET\",\"kind\":17,\"label\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_60LB_ROCKET\",\"documentation\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_60LB_ROCKET\",\"detail\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_60LB_ROCKET\"},{\"id\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_PHOS_ROCKET\",\"kind\":17,\"label\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_PHOS_ROCKET\",\"documentation\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_PHOS_ROCKET\",\"detail\":\"UPG.BRITISH.LAND_MATTRESS_LOADING_PHOS_ROCKET\"},{\"id\":\"UPG.BRITISH.PIAT\",\"kind\":17,\"label\":\"UPG.BRITISH.PIAT\",\"documentation\":\"UPG.BRITISH.PIAT\",\"detail\":\"UPG.BRITISH.PIAT\"},{\"id\":\"UPG.BRITISH.PIAT_UNLOCK_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.PIAT_UNLOCK_MP\",\"documentation\":\"UPG.BRITISH.PIAT_UNLOCK_MP\",\"detail\":\"UPG.BRITISH.PIAT_UNLOCK_MP\"},{\"id\":\"UPG.BRITISH.PLATOON_AEC_RESEARCH_BUILDING_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.PLATOON_AEC_RESEARCH_BUILDING_MP\",\"documentation\":\"UPG.BRITISH.PLATOON_AEC_RESEARCH_BUILDING_MP\",\"detail\":\"UPG.BRITISH.PLATOON_AEC_RESEARCH_BUILDING_MP\"},{\"id\":\"UPG.BRITISH.PLATOON_AEC_RESEARCH_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.PLATOON_AEC_RESEARCH_MP\",\"documentation\":\"UPG.BRITISH.PLATOON_AEC_RESEARCH_MP\",\"detail\":\"UPG.BRITISH.PLATOON_AEC_RESEARCH_MP\"},{\"id\":\"UPG.BRITISH.PLATOON_BOFORS_RESEARCH_BUILDING_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.PLATOON_BOFORS_RESEARCH_BUILDING_MP\",\"documentation\":\"UPG.BRITISH.PLATOON_BOFORS_RESEARCH_BUILDING_MP\",\"detail\":\"UPG.BRITISH.PLATOON_BOFORS_RESEARCH_BUILDING_MP\"},{\"id\":\"UPG.BRITISH.PLATOON_BOFORS_RESEARCH_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.PLATOON_BOFORS_RESEARCH_MP\",\"documentation\":\"UPG.BRITISH.PLATOON_BOFORS_RESEARCH_MP\",\"detail\":\"UPG.BRITISH.PLATOON_BOFORS_RESEARCH_MP\"},{\"id\":\"UPG.BRITISH.PRECISION_BARRAGE\",\"kind\":17,\"label\":\"UPG.BRITISH.PRECISION_BARRAGE\",\"documentation\":\"UPG.BRITISH.PRECISION_BARRAGE\",\"detail\":\"UPG.BRITISH.PRECISION_BARRAGE\"},{\"id\":\"UPG.BRITISH.QF_25LB_COORDINATED_FIRE_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.QF_25LB_COORDINATED_FIRE_MP\",\"documentation\":\"UPG.BRITISH.QF_25LB_COORDINATED_FIRE_MP\",\"detail\":\"UPG.BRITISH.QF_25LB_COORDINATED_FIRE_MP\"},{\"id\":\"UPG.BRITISH.QF_25LB_COUNTER_BATTERY_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.QF_25LB_COUNTER_BATTERY_MP\",\"documentation\":\"UPG.BRITISH.QF_25LB_COUNTER_BATTERY_MP\",\"detail\":\"UPG.BRITISH.QF_25LB_COUNTER_BATTERY_MP\"},{\"id\":\"UPG.BRITISH.QF_25LB_FIRE_SUPPORT_BASE_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.QF_25LB_FIRE_SUPPORT_BASE_MP\",\"documentation\":\"UPG.BRITISH.QF_25LB_FIRE_SUPPORT_BASE_MP\",\"detail\":\"UPG.BRITISH.QF_25LB_FIRE_SUPPORT_BASE_MP\"},{\"id\":\"UPG.BRITISH.QF_25LB_FIRE_SUPPORT_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.QF_25LB_FIRE_SUPPORT_MP\",\"documentation\":\"UPG.BRITISH.QF_25LB_FIRE_SUPPORT_MP\",\"detail\":\"UPG.BRITISH.QF_25LB_FIRE_SUPPORT_MP\"},{\"id\":\"UPG.BRITISH.QF_25LB_HE_SHELL_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.QF_25LB_HE_SHELL_MP\",\"documentation\":\"UPG.BRITISH.QF_25LB_HE_SHELL_MP\",\"detail\":\"UPG.BRITISH.QF_25LB_HE_SHELL_MP\"},{\"id\":\"UPG.BRITISH.QF_25LB_RAPID_RESPONSE_DELAY_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.QF_25LB_RAPID_RESPONSE_DELAY_MP\",\"documentation\":\"UPG.BRITISH.QF_25LB_RAPID_RESPONSE_DELAY_MP\",\"detail\":\"UPG.BRITISH.QF_25LB_RAPID_RESPONSE_DELAY_MP\"},{\"id\":\"UPG.BRITISH.QF_25LB_RAPID_RESPONSE_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.QF_25LB_RAPID_RESPONSE_MP\",\"documentation\":\"UPG.BRITISH.QF_25LB_RAPID_RESPONSE_MP\",\"detail\":\"UPG.BRITISH.QF_25LB_RAPID_RESPONSE_MP\"},{\"id\":\"UPG.BRITISH.QF_25LB_SHELL_TOGGLE_ABILITY_DELAY_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.QF_25LB_SHELL_TOGGLE_ABILITY_DELAY_MP\",\"documentation\":\"UPG.BRITISH.QF_25LB_SHELL_TOGGLE_ABILITY_DELAY_MP\",\"detail\":\"UPG.BRITISH.QF_25LB_SHELL_TOGGLE_ABILITY_DELAY_MP\"},{\"id\":\"UPG.BRITISH.QF_25LB_TACTICAL_SUPPORT_BASE_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.QF_25LB_TACTICAL_SUPPORT_BASE_MP\",\"documentation\":\"UPG.BRITISH.QF_25LB_TACTICAL_SUPPORT_BASE_MP\",\"detail\":\"UPG.BRITISH.QF_25LB_TACTICAL_SUPPORT_BASE_MP\"},{\"id\":\"UPG.BRITISH.QF_25LB_TACTICAL_SUPPORT_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.QF_25LB_TACTICAL_SUPPORT_MP\",\"documentation\":\"UPG.BRITISH.QF_25LB_TACTICAL_SUPPORT_MP\",\"detail\":\"UPG.BRITISH.QF_25LB_TACTICAL_SUPPORT_MP\"},{\"id\":\"UPG.BRITISH.QF_25LB_TARGET_ACQUISITION_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.QF_25LB_TARGET_ACQUISITION_MP\",\"documentation\":\"UPG.BRITISH.QF_25LB_TARGET_ACQUISITION_MP\",\"detail\":\"UPG.BRITISH.QF_25LB_TARGET_ACQUISITION_MP\"},{\"id\":\"UPG.BRITISH.REINFORCED_STRUCTURE\",\"kind\":17,\"label\":\"UPG.BRITISH.REINFORCED_STRUCTURE\",\"documentation\":\"UPG.BRITISH.REINFORCED_STRUCTURE\",\"detail\":\"UPG.BRITISH.REINFORCED_STRUCTURE\"},{\"id\":\"UPG.BRITISH.SAPPER_FLAMETHROWER\",\"kind\":17,\"label\":\"UPG.BRITISH.SAPPER_FLAMETHROWER\",\"documentation\":\"UPG.BRITISH.SAPPER_FLAMETHROWER\",\"detail\":\"UPG.BRITISH.SAPPER_FLAMETHROWER\"},{\"id\":\"UPG.BRITISH.SAPPERS_HEAVY_SQUAD_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.SAPPERS_HEAVY_SQUAD_MP\",\"documentation\":\"UPG.BRITISH.SAPPERS_HEAVY_SQUAD_MP\",\"detail\":\"UPG.BRITISH.SAPPERS_HEAVY_SQUAD_MP\"},{\"id\":\"UPG.BRITISH.SAPPERS_MINESWEEPER_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.SAPPERS_MINESWEEPER_UPGRADE_MP\",\"documentation\":\"UPG.BRITISH.SAPPERS_MINESWEEPER_UPGRADE_MP\",\"detail\":\"UPG.BRITISH.SAPPERS_MINESWEEPER_UPGRADE_MP\"},{\"id\":\"UPG.BRITISH.SNIPER_BOYS_AT_RIFLE\",\"kind\":17,\"label\":\"UPG.BRITISH.SNIPER_BOYS_AT_RIFLE\",\"documentation\":\"UPG.BRITISH.SNIPER_BOYS_AT_RIFLE\",\"detail\":\"UPG.BRITISH.SNIPER_BOYS_AT_RIFLE\"},{\"id\":\"UPG.BRITISH.TANK_HUNTER_ACTIVE\",\"kind\":17,\"label\":\"UPG.BRITISH.TANK_HUNTER_ACTIVE\",\"documentation\":\"UPG.BRITISH.TANK_HUNTER_ACTIVE\",\"detail\":\"UPG.BRITISH.TANK_HUNTER_ACTIVE\"},{\"id\":\"UPG.BRITISH.TECH_STRUCTURE_1_CONSTRUCT_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.TECH_STRUCTURE_1_CONSTRUCT_MP\",\"documentation\":\"UPG.BRITISH.TECH_STRUCTURE_1_CONSTRUCT_MP\",\"detail\":\"UPG.BRITISH.TECH_STRUCTURE_1_CONSTRUCT_MP\"},{\"id\":\"UPG.BRITISH.TECH_STRUCTURE_1_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.TECH_STRUCTURE_1_MP\",\"documentation\":\"UPG.BRITISH.TECH_STRUCTURE_1_MP\",\"detail\":\"UPG.BRITISH.TECH_STRUCTURE_1_MP\"},{\"id\":\"UPG.BRITISH.TECH_STRUCTURE_2_CONSTRUCT_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.TECH_STRUCTURE_2_CONSTRUCT_MP\",\"documentation\":\"UPG.BRITISH.TECH_STRUCTURE_2_CONSTRUCT_MP\",\"detail\":\"UPG.BRITISH.TECH_STRUCTURE_2_CONSTRUCT_MP\"},{\"id\":\"UPG.BRITISH.TECH_STRUCTURE_2_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.TECH_STRUCTURE_2_MP\",\"documentation\":\"UPG.BRITISH.TECH_STRUCTURE_2_MP\",\"detail\":\"UPG.BRITISH.TECH_STRUCTURE_2_MP\"},{\"id\":\"UPG.BRITISH.TOMMY_BOYS_AT_RIFLES\",\"kind\":17,\"label\":\"UPG.BRITISH.TOMMY_BOYS_AT_RIFLES\",\"documentation\":\"UPG.BRITISH.TOMMY_BOYS_AT_RIFLES\",\"detail\":\"UPG.BRITISH.TOMMY_BOYS_AT_RIFLES\"},{\"id\":\"UPG.BRITISH.TOMMY_INCREASED_SQUAD_SIZE_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.TOMMY_INCREASED_SQUAD_SIZE_MP\",\"documentation\":\"UPG.BRITISH.TOMMY_INCREASED_SQUAD_SIZE_MP\",\"detail\":\"UPG.BRITISH.TOMMY_INCREASED_SQUAD_SIZE_MP\"},{\"id\":\"UPG.BRITISH.TOMMY_MEDICAL_SUPPLIES\",\"kind\":17,\"label\":\"UPG.BRITISH.TOMMY_MEDICAL_SUPPLIES\",\"documentation\":\"UPG.BRITISH.TOMMY_MEDICAL_SUPPLIES\",\"detail\":\"UPG.BRITISH.TOMMY_MEDICAL_SUPPLIES\"},{\"id\":\"UPG.BRITISH.TOMMY_MILLS_BOMB_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.TOMMY_MILLS_BOMB_MP\",\"documentation\":\"UPG.BRITISH.TOMMY_MILLS_BOMB_MP\",\"detail\":\"UPG.BRITISH.TOMMY_MILLS_BOMB_MP\"},{\"id\":\"UPG.BRITISH.TOMMY_PYROTECHNICS_SUPPLIES\",\"kind\":17,\"label\":\"UPG.BRITISH.TOMMY_PYROTECHNICS_SUPPLIES\",\"documentation\":\"UPG.BRITISH.TOMMY_PYROTECHNICS_SUPPLIES\",\"detail\":\"UPG.BRITISH.TOMMY_PYROTECHNICS_SUPPLIES\"},{\"id\":\"UPG.BRITISH.UNIVERSAL_CARRIER_VICKERS_K_PACKAGE_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.UNIVERSAL_CARRIER_VICKERS_K_PACKAGE_UPGRADE_MP\",\"documentation\":\"UPG.BRITISH.UNIVERSAL_CARRIER_VICKERS_K_PACKAGE_UPGRADE_MP\",\"detail\":\"UPG.BRITISH.UNIVERSAL_CARRIER_VICKERS_K_PACKAGE_UPGRADE_MP\"},{\"id\":\"UPG.BRITISH.UNIVERSAL_CARRIER_WASP_PACKAGE_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.UNIVERSAL_CARRIER_WASP_PACKAGE_UPGRADE_MP\",\"documentation\":\"UPG.BRITISH.UNIVERSAL_CARRIER_WASP_PACKAGE_UPGRADE_MP\",\"detail\":\"UPG.BRITISH.UNIVERSAL_CARRIER_WASP_PACKAGE_UPGRADE_MP\"},{\"id\":\"UPG.BRITISH.VALENTINE_OBSERVATION_MODE_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.VALENTINE_OBSERVATION_MODE_MP\",\"documentation\":\"UPG.BRITISH.VALENTINE_OBSERVATION_MODE_MP\",\"detail\":\"UPG.BRITISH.VALENTINE_OBSERVATION_MODE_MP\"},{\"id\":\"UPG.BRITISH.WEAPON_RACK_UNLOCK_MP\",\"kind\":17,\"label\":\"UPG.BRITISH.WEAPON_RACK_UNLOCK_MP\",\"documentation\":\"UPG.BRITISH.WEAPON_RACK_UNLOCK_MP\",\"detail\":\"UPG.BRITISH.WEAPON_RACK_UNLOCK_MP\"},{\"id\":\"EBP.GERMAN.ANTITANK_88MM_PAK43_SANDBAGS\",\"kind\":17,\"label\":\"EBP.GERMAN.ANTITANK_88MM_PAK43_SANDBAGS\",\"documentation\":\"EBP.GERMAN.ANTITANK_88MM_PAK43_SANDBAGS\",\"detail\":\"EBP.GERMAN.ANTITANK_88MM_PAK43_SANDBAGS\"},{\"id\":\"EBP.GERMAN.ARMORED_CAR_SDKFZ_222\",\"kind\":17,\"label\":\"EBP.GERMAN.ARMORED_CAR_SDKFZ_222\",\"documentation\":\"EBP.GERMAN.ARMORED_CAR_SDKFZ_222\",\"detail\":\"EBP.GERMAN.ARMORED_CAR_SDKFZ_222\"},{\"id\":\"EBP.GERMAN.ARMORED_CAR_SDKFZ_222_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.ARMORED_CAR_SDKFZ_222_MP\",\"documentation\":\"EBP.GERMAN.ARMORED_CAR_SDKFZ_222_MP\",\"detail\":\"EBP.GERMAN.ARMORED_CAR_SDKFZ_222_MP\"},{\"id\":\"EBP.GERMAN.ASSAULT_GRENADIERS_LEADER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.ASSAULT_GRENADIERS_LEADER_MP\",\"documentation\":\"EBP.GERMAN.ASSAULT_GRENADIERS_LEADER_MP\",\"detail\":\"EBP.GERMAN.ASSAULT_GRENADIERS_LEADER_MP\"},{\"id\":\"EBP.GERMAN.ASSAULT_GRENADIERS_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.ASSAULT_GRENADIERS_MP\",\"documentation\":\"EBP.GERMAN.ASSAULT_GRENADIERS_MP\",\"detail\":\"EBP.GERMAN.ASSAULT_GRENADIERS_MP\"},{\"id\":\"EBP.GERMAN.ASSAULT_OFFICER\",\"kind\":17,\"label\":\"EBP.GERMAN.ASSAULT_OFFICER\",\"documentation\":\"EBP.GERMAN.ASSAULT_OFFICER\",\"detail\":\"EBP.GERMAN.ASSAULT_OFFICER\"},{\"id\":\"EBP.GERMAN.ASSAULT_OFFICER_GRENADIERS_BODYGUARD_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.ASSAULT_OFFICER_GRENADIERS_BODYGUARD_MP\",\"documentation\":\"EBP.GERMAN.ASSAULT_OFFICER_GRENADIERS_BODYGUARD_MP\",\"detail\":\"EBP.GERMAN.ASSAULT_OFFICER_GRENADIERS_BODYGUARD_MP\"},{\"id\":\"EBP.GERMAN.ASSAULT_OFFICER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.ASSAULT_OFFICER_MP\",\"documentation\":\"EBP.GERMAN.ASSAULT_OFFICER_MP\",\"detail\":\"EBP.GERMAN.ASSAULT_OFFICER_MP\"},{\"id\":\"EBP.GERMAN.ATGUN_CREW\",\"kind\":17,\"label\":\"EBP.GERMAN.ATGUN_CREW\",\"documentation\":\"EBP.GERMAN.ATGUN_CREW\",\"detail\":\"EBP.GERMAN.ATGUN_CREW\"},{\"id\":\"EBP.GERMAN.ATGUN_CREW_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.ATGUN_CREW_MP\",\"documentation\":\"EBP.GERMAN.ATGUN_CREW_MP\",\"detail\":\"EBP.GERMAN.ATGUN_CREW_MP\"},{\"id\":\"EBP.GERMAN.ATGUN88_CREW\",\"kind\":17,\"label\":\"EBP.GERMAN.ATGUN88_CREW\",\"documentation\":\"EBP.GERMAN.ATGUN88_CREW\",\"detail\":\"EBP.GERMAN.ATGUN88_CREW\"},{\"id\":\"EBP.GERMAN.ATGUN88_CREW_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.ATGUN88_CREW_MP\",\"documentation\":\"EBP.GERMAN.ATGUN88_CREW_MP\",\"detail\":\"EBP.GERMAN.ATGUN88_CREW_MP\"},{\"id\":\"EBP.GERMAN.AXIS_BUNKER_STARTING_POSITION\",\"kind\":17,\"label\":\"EBP.GERMAN.AXIS_BUNKER_STARTING_POSITION\",\"documentation\":\"EBP.GERMAN.AXIS_BUNKER_STARTING_POSITION\",\"detail\":\"EBP.GERMAN.AXIS_BUNKER_STARTING_POSITION\"},{\"id\":\"EBP.GERMAN.AXIS_BUNKER_STARTING_POSITION_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.AXIS_BUNKER_STARTING_POSITION_MP\",\"documentation\":\"EBP.GERMAN.AXIS_BUNKER_STARTING_POSITION_MP\",\"detail\":\"EBP.GERMAN.AXIS_BUNKER_STARTING_POSITION_MP\"},{\"id\":\"EBP.GERMAN.BEREICH_FESTUNG\",\"kind\":17,\"label\":\"EBP.GERMAN.BEREICH_FESTUNG\",\"documentation\":\"EBP.GERMAN.BEREICH_FESTUNG\",\"detail\":\"EBP.GERMAN.BEREICH_FESTUNG\"},{\"id\":\"EBP.GERMAN.BEREICH_FESTUNG_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.BEREICH_FESTUNG_MP\",\"documentation\":\"EBP.GERMAN.BEREICH_FESTUNG_MP\",\"detail\":\"EBP.GERMAN.BEREICH_FESTUNG_MP\"},{\"id\":\"EBP.GERMAN.BRUMMBAR_STURMPANZER_IV_SDKFZ_166\",\"kind\":17,\"label\":\"EBP.GERMAN.BRUMMBAR_STURMPANZER_IV_SDKFZ_166\",\"documentation\":\"EBP.GERMAN.BRUMMBAR_STURMPANZER_IV_SDKFZ_166\",\"detail\":\"EBP.GERMAN.BRUMMBAR_STURMPANZER_IV_SDKFZ_166\"},{\"id\":\"EBP.GERMAN.BRUMMBAR_STURMPANZER_IV_SDKFZ_166_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.BRUMMBAR_STURMPANZER_IV_SDKFZ_166_MP\",\"documentation\":\"EBP.GERMAN.BRUMMBAR_STURMPANZER_IV_SDKFZ_166_MP\",\"detail\":\"EBP.GERMAN.BRUMMBAR_STURMPANZER_IV_SDKFZ_166_MP\"},{\"id\":\"EBP.GERMAN.BUNKER\",\"kind\":17,\"label\":\"EBP.GERMAN.BUNKER\",\"documentation\":\"EBP.GERMAN.BUNKER\",\"detail\":\"EBP.GERMAN.BUNKER\"},{\"id\":\"EBP.GERMAN.BUNKER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.BUNKER_MP\",\"documentation\":\"EBP.GERMAN.BUNKER_MP\",\"detail\":\"EBP.GERMAN.BUNKER_MP\"},{\"id\":\"EBP.GERMAN.BUNKER_OF_DEATH_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.BUNKER_OF_DEATH_MP\",\"documentation\":\"EBP.GERMAN.BUNKER_OF_DEATH_MP\",\"detail\":\"EBP.GERMAN.BUNKER_OF_DEATH_MP\"},{\"id\":\"EBP.GERMAN.CARGO_PLANE\",\"kind\":17,\"label\":\"EBP.GERMAN.CARGO_PLANE\",\"documentation\":\"EBP.GERMAN.CARGO_PLANE\",\"detail\":\"EBP.GERMAN.CARGO_PLANE\"},{\"id\":\"EBP.GERMAN.CARGO_PLANE_1\",\"kind\":17,\"label\":\"EBP.GERMAN.CARGO_PLANE_1\",\"documentation\":\"EBP.GERMAN.CARGO_PLANE_1\",\"detail\":\"EBP.GERMAN.CARGO_PLANE_1\"},{\"id\":\"EBP.GERMAN.CARGO_PLANE_FUEL\",\"kind\":17,\"label\":\"EBP.GERMAN.CARGO_PLANE_FUEL\",\"documentation\":\"EBP.GERMAN.CARGO_PLANE_FUEL\",\"detail\":\"EBP.GERMAN.CARGO_PLANE_FUEL\"},{\"id\":\"EBP.GERMAN.CARGO_PLANE_MUNITIONS\",\"kind\":17,\"label\":\"EBP.GERMAN.CARGO_PLANE_MUNITIONS\",\"documentation\":\"EBP.GERMAN.CARGO_PLANE_MUNITIONS\",\"detail\":\"EBP.GERMAN.CARGO_PLANE_MUNITIONS\"},{\"id\":\"EBP.GERMAN.DOLCH_AKTIONEN\",\"kind\":17,\"label\":\"EBP.GERMAN.DOLCH_AKTIONEN\",\"documentation\":\"EBP.GERMAN.DOLCH_AKTIONEN\",\"detail\":\"EBP.GERMAN.DOLCH_AKTIONEN\"},{\"id\":\"EBP.GERMAN.DOLCH_AKTIONEN_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.DOLCH_AKTIONEN_MP\",\"documentation\":\"EBP.GERMAN.DOLCH_AKTIONEN_MP\",\"detail\":\"EBP.GERMAN.DOLCH_AKTIONEN_MP\"},{\"id\":\"EBP.GERMAN.ELEFANT_SDKFZ_184\",\"kind\":17,\"label\":\"EBP.GERMAN.ELEFANT_SDKFZ_184\",\"documentation\":\"EBP.GERMAN.ELEFANT_SDKFZ_184\",\"detail\":\"EBP.GERMAN.ELEFANT_SDKFZ_184\"},{\"id\":\"EBP.GERMAN.ELEFANT_SDKFZ_184_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.ELEFANT_SDKFZ_184_MP\",\"documentation\":\"EBP.GERMAN.ELEFANT_SDKFZ_184_MP\",\"detail\":\"EBP.GERMAN.ELEFANT_SDKFZ_184_MP\"},{\"id\":\"EBP.GERMAN.FUEL_POST_GERMAN\",\"kind\":17,\"label\":\"EBP.GERMAN.FUEL_POST_GERMAN\",\"documentation\":\"EBP.GERMAN.FUEL_POST_GERMAN\",\"detail\":\"EBP.GERMAN.FUEL_POST_GERMAN\"},{\"id\":\"EBP.GERMAN.FUEL_POST_GERMAN_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.FUEL_POST_GERMAN_MP\",\"documentation\":\"EBP.GERMAN.FUEL_POST_GERMAN_MP\",\"detail\":\"EBP.GERMAN.FUEL_POST_GERMAN_MP\"},{\"id\":\"EBP.GERMAN.GERMAN_BASE_STAMPER\",\"kind\":17,\"label\":\"EBP.GERMAN.GERMAN_BASE_STAMPER\",\"documentation\":\"EBP.GERMAN.GERMAN_BASE_STAMPER\",\"detail\":\"EBP.GERMAN.GERMAN_BASE_STAMPER\"},{\"id\":\"EBP.GERMAN.GERMAN_HQ\",\"kind\":17,\"label\":\"EBP.GERMAN.GERMAN_HQ\",\"documentation\":\"EBP.GERMAN.GERMAN_HQ\",\"detail\":\"EBP.GERMAN.GERMAN_HQ\"},{\"id\":\"EBP.GERMAN.GERMAN_HQ_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.GERMAN_HQ_MP\",\"documentation\":\"EBP.GERMAN.GERMAN_HQ_MP\",\"detail\":\"EBP.GERMAN.GERMAN_HQ_MP\"},{\"id\":\"EBP.GERMAN.GERMAN_HQ_WRECK\",\"kind\":17,\"label\":\"EBP.GERMAN.GERMAN_HQ_WRECK\",\"documentation\":\"EBP.GERMAN.GERMAN_HQ_WRECK\",\"detail\":\"EBP.GERMAN.GERMAN_HQ_WRECK\"},{\"id\":\"EBP.GERMAN.GERMAN_HQ_WRECK_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.GERMAN_HQ_WRECK_MP\",\"documentation\":\"EBP.GERMAN.GERMAN_HQ_WRECK_MP\",\"detail\":\"EBP.GERMAN.GERMAN_HQ_WRECK_MP\"},{\"id\":\"EBP.GERMAN.GERMAN_MEDIC\",\"kind\":17,\"label\":\"EBP.GERMAN.GERMAN_MEDIC\",\"documentation\":\"EBP.GERMAN.GERMAN_MEDIC\",\"detail\":\"EBP.GERMAN.GERMAN_MEDIC\"},{\"id\":\"EBP.GERMAN.GERMAN_MEDIC_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.GERMAN_MEDIC_MP\",\"documentation\":\"EBP.GERMAN.GERMAN_MEDIC_MP\",\"detail\":\"EBP.GERMAN.GERMAN_MEDIC_MP\"},{\"id\":\"EBP.GERMAN.GERMAN_MINE\",\"kind\":17,\"label\":\"EBP.GERMAN.GERMAN_MINE\",\"documentation\":\"EBP.GERMAN.GERMAN_MINE\",\"detail\":\"EBP.GERMAN.GERMAN_MINE\"},{\"id\":\"EBP.GERMAN.GERMAN_MINE_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.GERMAN_MINE_MP\",\"documentation\":\"EBP.GERMAN.GERMAN_MINE_MP\",\"detail\":\"EBP.GERMAN.GERMAN_MINE_MP\"},{\"id\":\"EBP.GERMAN.GERMAN_SANDBAG_FENCE\",\"kind\":17,\"label\":\"EBP.GERMAN.GERMAN_SANDBAG_FENCE\",\"documentation\":\"EBP.GERMAN.GERMAN_SANDBAG_FENCE\",\"detail\":\"EBP.GERMAN.GERMAN_SANDBAG_FENCE\"},{\"id\":\"EBP.GERMAN.GRANATEWERFER_34_81MM_MORTAR\",\"kind\":17,\"label\":\"EBP.GERMAN.GRANATEWERFER_34_81MM_MORTAR\",\"documentation\":\"EBP.GERMAN.GRANATEWERFER_34_81MM_MORTAR\",\"detail\":\"EBP.GERMAN.GRANATEWERFER_34_81MM_MORTAR\"},{\"id\":\"EBP.GERMAN.GRANATEWERFER_34_81MM_MORTAR_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.GRANATEWERFER_34_81MM_MORTAR_MP\",\"documentation\":\"EBP.GERMAN.GRANATEWERFER_34_81MM_MORTAR_MP\",\"detail\":\"EBP.GERMAN.GRANATEWERFER_34_81MM_MORTAR_MP\"},{\"id\":\"EBP.GERMAN.GRENADIERS\",\"kind\":17,\"label\":\"EBP.GERMAN.GRENADIERS\",\"documentation\":\"EBP.GERMAN.GRENADIERS\",\"detail\":\"EBP.GERMAN.GRENADIERS\"},{\"id\":\"EBP.GERMAN.GRENADIERS_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.GRENADIERS_MP\",\"documentation\":\"EBP.GERMAN.GRENADIERS_MP\",\"detail\":\"EBP.GERMAN.GRENADIERS_MP\"},{\"id\":\"EBP.GERMAN.GRENADIERS_SP\",\"kind\":17,\"label\":\"EBP.GERMAN.GRENADIERS_SP\",\"documentation\":\"EBP.GERMAN.GRENADIERS_SP\",\"detail\":\"EBP.GERMAN.GRENADIERS_SP\"},{\"id\":\"EBP.GERMAN.HACK_INVISI_PIONEER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.HACK_INVISI_PIONEER_MP\",\"documentation\":\"EBP.GERMAN.HACK_INVISI_PIONEER_MP\",\"detail\":\"EBP.GERMAN.HACK_INVISI_PIONEER_MP\"},{\"id\":\"EBP.GERMAN.HALFTRACK_RIEGEL_43_MINE_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.HALFTRACK_RIEGEL_43_MINE_MP\",\"documentation\":\"EBP.GERMAN.HALFTRACK_RIEGEL_43_MINE_MP\",\"detail\":\"EBP.GERMAN.HALFTRACK_RIEGEL_43_MINE_MP\"},{\"id\":\"EBP.GERMAN.HALFTRACK_SDKFZ_251\",\"kind\":17,\"label\":\"EBP.GERMAN.HALFTRACK_SDKFZ_251\",\"documentation\":\"EBP.GERMAN.HALFTRACK_SDKFZ_251\",\"detail\":\"EBP.GERMAN.HALFTRACK_SDKFZ_251\"},{\"id\":\"EBP.GERMAN.HALFTRACK_SDKFZ_251_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.HALFTRACK_SDKFZ_251_MP\",\"documentation\":\"EBP.GERMAN.HALFTRACK_SDKFZ_251_MP\",\"detail\":\"EBP.GERMAN.HALFTRACK_SDKFZ_251_MP\"},{\"id\":\"EBP.GERMAN.HINTERE_PANZERWERK\",\"kind\":17,\"label\":\"EBP.GERMAN.HINTERE_PANZERWERK\",\"documentation\":\"EBP.GERMAN.HINTERE_PANZERWERK\",\"detail\":\"EBP.GERMAN.HINTERE_PANZERWERK\"},{\"id\":\"EBP.GERMAN.HINTERE_PANZERWERK_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.HINTERE_PANZERWERK_MP\",\"documentation\":\"EBP.GERMAN.HINTERE_PANZERWERK_MP\",\"detail\":\"EBP.GERMAN.HINTERE_PANZERWERK_MP\"},{\"id\":\"EBP.GERMAN.HINTERE_PANZERWERK_VORONEZH\",\"kind\":17,\"label\":\"EBP.GERMAN.HINTERE_PANZERWERK_VORONEZH\",\"documentation\":\"EBP.GERMAN.HINTERE_PANZERWERK_VORONEZH\",\"detail\":\"EBP.GERMAN.HINTERE_PANZERWERK_VORONEZH\"},{\"id\":\"EBP.GERMAN.HOWITZER_105MM_DUMMY\",\"kind\":17,\"label\":\"EBP.GERMAN.HOWITZER_105MM_DUMMY\",\"documentation\":\"EBP.GERMAN.HOWITZER_105MM_DUMMY\",\"detail\":\"EBP.GERMAN.HOWITZER_105MM_DUMMY\"},{\"id\":\"EBP.GERMAN.HOWITZER_105MM_LE_FH18\",\"kind\":17,\"label\":\"EBP.GERMAN.HOWITZER_105MM_LE_FH18\",\"documentation\":\"EBP.GERMAN.HOWITZER_105MM_LE_FH18\",\"detail\":\"EBP.GERMAN.HOWITZER_105MM_LE_FH18\"},{\"id\":\"EBP.GERMAN.HOWITZER_105MM_LE_FH18_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.HOWITZER_105MM_LE_FH18_MP\",\"documentation\":\"EBP.GERMAN.HOWITZER_105MM_LE_FH18_MP\",\"detail\":\"EBP.GERMAN.HOWITZER_105MM_LE_FH18_MP\"},{\"id\":\"EBP.GERMAN.HOWITZER_CREW\",\"kind\":17,\"label\":\"EBP.GERMAN.HOWITZER_CREW\",\"documentation\":\"EBP.GERMAN.HOWITZER_CREW\",\"detail\":\"EBP.GERMAN.HOWITZER_CREW\"},{\"id\":\"EBP.GERMAN.HOWITZER_CREW_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.HOWITZER_CREW_MP\",\"documentation\":\"EBP.GERMAN.HOWITZER_CREW_MP\",\"detail\":\"EBP.GERMAN.HOWITZER_CREW_MP\"},{\"id\":\"EBP.GERMAN.HULLDOWN_SANDBAG_WALL\",\"kind\":17,\"label\":\"EBP.GERMAN.HULLDOWN_SANDBAG_WALL\",\"documentation\":\"EBP.GERMAN.HULLDOWN_SANDBAG_WALL\",\"detail\":\"EBP.GERMAN.HULLDOWN_SANDBAG_WALL\"},{\"id\":\"EBP.GERMAN.HULLDOWN_SANDBAG_WALL_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.HULLDOWN_SANDBAG_WALL_MP\",\"documentation\":\"EBP.GERMAN.HULLDOWN_SANDBAG_WALL_MP\",\"detail\":\"EBP.GERMAN.HULLDOWN_SANDBAG_WALL_MP\"},{\"id\":\"EBP.GERMAN.INVISIBLE_RETREAT_POINT\",\"kind\":17,\"label\":\"EBP.GERMAN.INVISIBLE_RETREAT_POINT\",\"documentation\":\"EBP.GERMAN.INVISIBLE_RETREAT_POINT\",\"detail\":\"EBP.GERMAN.INVISIBLE_RETREAT_POINT\"},{\"id\":\"EBP.GERMAN.LUFTWAFFE_OFFICER_TOW\",\"kind\":17,\"label\":\"EBP.GERMAN.LUFTWAFFE_OFFICER_TOW\",\"documentation\":\"EBP.GERMAN.LUFTWAFFE_OFFICER_TOW\",\"detail\":\"EBP.GERMAN.LUFTWAFFE_OFFICER_TOW\"},{\"id\":\"EBP.GERMAN.M01_STUKA_DOGFIGHT\",\"kind\":17,\"label\":\"EBP.GERMAN.M01_STUKA_DOGFIGHT\",\"documentation\":\"EBP.GERMAN.M01_STUKA_DOGFIGHT\",\"detail\":\"EBP.GERMAN.M01_STUKA_DOGFIGHT\"},{\"id\":\"EBP.GERMAN.M01_STUKA_GROUND_ATTACK_FAST\",\"kind\":17,\"label\":\"EBP.GERMAN.M01_STUKA_GROUND_ATTACK_FAST\",\"documentation\":\"EBP.GERMAN.M01_STUKA_GROUND_ATTACK_FAST\",\"detail\":\"EBP.GERMAN.M01_STUKA_GROUND_ATTACK_FAST\"},{\"id\":\"EBP.GERMAN.MECHANIZED_250_HALFTRACK_GRENADIER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.MECHANIZED_250_HALFTRACK_GRENADIER_MP\",\"documentation\":\"EBP.GERMAN.MECHANIZED_250_HALFTRACK_GRENADIER_MP\",\"detail\":\"EBP.GERMAN.MECHANIZED_250_HALFTRACK_GRENADIER_MP\"},{\"id\":\"EBP.GERMAN.MECHANIZED_250_HALFTRACK_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.MECHANIZED_250_HALFTRACK_MP\",\"documentation\":\"EBP.GERMAN.MECHANIZED_250_HALFTRACK_MP\",\"detail\":\"EBP.GERMAN.MECHANIZED_250_HALFTRACK_MP\"},{\"id\":\"EBP.GERMAN.MG42_CREW\",\"kind\":17,\"label\":\"EBP.GERMAN.MG42_CREW\",\"documentation\":\"EBP.GERMAN.MG42_CREW\",\"detail\":\"EBP.GERMAN.MG42_CREW\"},{\"id\":\"EBP.GERMAN.MG42_CREW_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.MG42_CREW_MP\",\"documentation\":\"EBP.GERMAN.MG42_CREW_MP\",\"detail\":\"EBP.GERMAN.MG42_CREW_MP\"},{\"id\":\"EBP.GERMAN.MG42_CREW_SINGLE\",\"kind\":17,\"label\":\"EBP.GERMAN.MG42_CREW_SINGLE\",\"documentation\":\"EBP.GERMAN.MG42_CREW_SINGLE\",\"detail\":\"EBP.GERMAN.MG42_CREW_SINGLE\"},{\"id\":\"EBP.GERMAN.MG42_HMG\",\"kind\":17,\"label\":\"EBP.GERMAN.MG42_HMG\",\"documentation\":\"EBP.GERMAN.MG42_HMG\",\"detail\":\"EBP.GERMAN.MG42_HMG\"},{\"id\":\"EBP.GERMAN.MG42_HMG_ATTACK_GROUND\",\"kind\":17,\"label\":\"EBP.GERMAN.MG42_HMG_ATTACK_GROUND\",\"documentation\":\"EBP.GERMAN.MG42_HMG_ATTACK_GROUND\",\"detail\":\"EBP.GERMAN.MG42_HMG_ATTACK_GROUND\"},{\"id\":\"EBP.GERMAN.MG42_HMG_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.MG42_HMG_MP\",\"documentation\":\"EBP.GERMAN.MG42_HMG_MP\",\"detail\":\"EBP.GERMAN.MG42_HMG_MP\"},{\"id\":\"EBP.GERMAN.MINE_FIELD\",\"kind\":17,\"label\":\"EBP.GERMAN.MINE_FIELD\",\"documentation\":\"EBP.GERMAN.MINE_FIELD\",\"detail\":\"EBP.GERMAN.MINE_FIELD\"},{\"id\":\"EBP.GERMAN.MINE_FIELD_BORDER\",\"kind\":17,\"label\":\"EBP.GERMAN.MINE_FIELD_BORDER\",\"documentation\":\"EBP.GERMAN.MINE_FIELD_BORDER\",\"detail\":\"EBP.GERMAN.MINE_FIELD_BORDER\"},{\"id\":\"EBP.GERMAN.MINE_FIELD_BORDER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.MINE_FIELD_BORDER_MP\",\"documentation\":\"EBP.GERMAN.MINE_FIELD_BORDER_MP\",\"detail\":\"EBP.GERMAN.MINE_FIELD_BORDER_MP\"},{\"id\":\"EBP.GERMAN.MINE_FIELD_MINE\",\"kind\":17,\"label\":\"EBP.GERMAN.MINE_FIELD_MINE\",\"documentation\":\"EBP.GERMAN.MINE_FIELD_MINE\",\"detail\":\"EBP.GERMAN.MINE_FIELD_MINE\"},{\"id\":\"EBP.GERMAN.MINE_FIELD_MINE_M03\",\"kind\":17,\"label\":\"EBP.GERMAN.MINE_FIELD_MINE_M03\",\"documentation\":\"EBP.GERMAN.MINE_FIELD_MINE_M03\",\"detail\":\"EBP.GERMAN.MINE_FIELD_MINE_M03\"},{\"id\":\"EBP.GERMAN.MINE_FIELD_MINE_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.MINE_FIELD_MINE_MP\",\"documentation\":\"EBP.GERMAN.MINE_FIELD_MINE_MP\",\"detail\":\"EBP.GERMAN.MINE_FIELD_MINE_MP\"},{\"id\":\"EBP.GERMAN.MINE_FIELD_MINE_TOW\",\"kind\":17,\"label\":\"EBP.GERMAN.MINE_FIELD_MINE_TOW\",\"documentation\":\"EBP.GERMAN.MINE_FIELD_MINE_TOW\",\"detail\":\"EBP.GERMAN.MINE_FIELD_MINE_TOW\"},{\"id\":\"EBP.GERMAN.MINE_FIELD_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.MINE_FIELD_MP\",\"documentation\":\"EBP.GERMAN.MINE_FIELD_MP\",\"detail\":\"EBP.GERMAN.MINE_FIELD_MP\"},{\"id\":\"EBP.GERMAN.MORTAR_CREW\",\"kind\":17,\"label\":\"EBP.GERMAN.MORTAR_CREW\",\"documentation\":\"EBP.GERMAN.MORTAR_CREW\",\"detail\":\"EBP.GERMAN.MORTAR_CREW\"},{\"id\":\"EBP.GERMAN.MORTAR_CREW_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.MORTAR_CREW_MP\",\"documentation\":\"EBP.GERMAN.MORTAR_CREW_MP\",\"detail\":\"EBP.GERMAN.MORTAR_CREW_MP\"},{\"id\":\"EBP.GERMAN.MORTAR_LIGHT_HALFTRACK_250_7\",\"kind\":17,\"label\":\"EBP.GERMAN.MORTAR_LIGHT_HALFTRACK_250_7\",\"documentation\":\"EBP.GERMAN.MORTAR_LIGHT_HALFTRACK_250_7\",\"detail\":\"EBP.GERMAN.MORTAR_LIGHT_HALFTRACK_250_7\"},{\"id\":\"EBP.GERMAN.MORTAR_LIGHT_HALFTRACK_250_7_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.MORTAR_LIGHT_HALFTRACK_250_7_MP\",\"documentation\":\"EBP.GERMAN.MORTAR_LIGHT_HALFTRACK_250_7_MP\",\"detail\":\"EBP.GERMAN.MORTAR_LIGHT_HALFTRACK_250_7_MP\"},{\"id\":\"EBP.GERMAN.MUNITION_POST_GERMAN\",\"kind\":17,\"label\":\"EBP.GERMAN.MUNITION_POST_GERMAN\",\"documentation\":\"EBP.GERMAN.MUNITION_POST_GERMAN\",\"detail\":\"EBP.GERMAN.MUNITION_POST_GERMAN\"},{\"id\":\"EBP.GERMAN.MUNITION_POST_GERMAN_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.MUNITION_POST_GERMAN_MP\",\"documentation\":\"EBP.GERMAN.MUNITION_POST_GERMAN_MP\",\"detail\":\"EBP.GERMAN.MUNITION_POST_GERMAN_MP\"},{\"id\":\"EBP.GERMAN.OFFICER\",\"kind\":17,\"label\":\"EBP.GERMAN.OFFICER\",\"documentation\":\"EBP.GERMAN.OFFICER\",\"detail\":\"EBP.GERMAN.OFFICER\"},{\"id\":\"EBP.GERMAN.OFFICER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.OFFICER_MP\",\"documentation\":\"EBP.GERMAN.OFFICER_MP\",\"detail\":\"EBP.GERMAN.OFFICER_MP\"},{\"id\":\"EBP.GERMAN.OFFICER_TOW_OCCUPATION\",\"kind\":17,\"label\":\"EBP.GERMAN.OFFICER_TOW_OCCUPATION\",\"documentation\":\"EBP.GERMAN.OFFICER_TOW_OCCUPATION\",\"detail\":\"EBP.GERMAN.OFFICER_TOW_OCCUPATION\"},{\"id\":\"EBP.GERMAN.OPEL_BLITZ_SUPPLY_TRUCK_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.OPEL_BLITZ_SUPPLY_TRUCK_MP\",\"documentation\":\"EBP.GERMAN.OPEL_BLITZ_SUPPLY_TRUCK_MP\",\"detail\":\"EBP.GERMAN.OPEL_BLITZ_SUPPLY_TRUCK_MP\"},{\"id\":\"EBP.GERMAN.OPEL_BLITZ_TRUCK\",\"kind\":17,\"label\":\"EBP.GERMAN.OPEL_BLITZ_TRUCK\",\"documentation\":\"EBP.GERMAN.OPEL_BLITZ_TRUCK\",\"detail\":\"EBP.GERMAN.OPEL_BLITZ_TRUCK\"},{\"id\":\"EBP.GERMAN.OSTRUPPEN_SOLDIER\",\"kind\":17,\"label\":\"EBP.GERMAN.OSTRUPPEN_SOLDIER\",\"documentation\":\"EBP.GERMAN.OSTRUPPEN_SOLDIER\",\"detail\":\"EBP.GERMAN.OSTRUPPEN_SOLDIER\"},{\"id\":\"EBP.GERMAN.OSTRUPPEN_SOLDIER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.OSTRUPPEN_SOLDIER_MP\",\"documentation\":\"EBP.GERMAN.OSTRUPPEN_SOLDIER_MP\",\"detail\":\"EBP.GERMAN.OSTRUPPEN_SOLDIER_MP\"},{\"id\":\"EBP.GERMAN.OSTWIND_FLAK_PANZER\",\"kind\":17,\"label\":\"EBP.GERMAN.OSTWIND_FLAK_PANZER\",\"documentation\":\"EBP.GERMAN.OSTWIND_FLAK_PANZER\",\"detail\":\"EBP.GERMAN.OSTWIND_FLAK_PANZER\"},{\"id\":\"EBP.GERMAN.OSTWIND_FLAK_PANZER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.OSTWIND_FLAK_PANZER_MP\",\"documentation\":\"EBP.GERMAN.OSTWIND_FLAK_PANZER_MP\",\"detail\":\"EBP.GERMAN.OSTWIND_FLAK_PANZER_MP\"},{\"id\":\"EBP.GERMAN.PAK40_75MM_AT_GUN\",\"kind\":17,\"label\":\"EBP.GERMAN.PAK40_75MM_AT_GUN\",\"documentation\":\"EBP.GERMAN.PAK40_75MM_AT_GUN\",\"detail\":\"EBP.GERMAN.PAK40_75MM_AT_GUN\"},{\"id\":\"EBP.GERMAN.PAK40_75MM_AT_GUN_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.PAK40_75MM_AT_GUN_MP\",\"documentation\":\"EBP.GERMAN.PAK40_75MM_AT_GUN_MP\",\"detail\":\"EBP.GERMAN.PAK40_75MM_AT_GUN_MP\"},{\"id\":\"EBP.GERMAN.PAK43_88MM_AT_GUN\",\"kind\":17,\"label\":\"EBP.GERMAN.PAK43_88MM_AT_GUN\",\"documentation\":\"EBP.GERMAN.PAK43_88MM_AT_GUN\",\"detail\":\"EBP.GERMAN.PAK43_88MM_AT_GUN\"},{\"id\":\"EBP.GERMAN.PAK43_88MM_AT_GUN_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.PAK43_88MM_AT_GUN_MP\",\"documentation\":\"EBP.GERMAN.PAK43_88MM_AT_GUN_MP\",\"detail\":\"EBP.GERMAN.PAK43_88MM_AT_GUN_MP\"},{\"id\":\"EBP.GERMAN.PANTHER_SDKFZ_171\",\"kind\":17,\"label\":\"EBP.GERMAN.PANTHER_SDKFZ_171\",\"documentation\":\"EBP.GERMAN.PANTHER_SDKFZ_171\",\"detail\":\"EBP.GERMAN.PANTHER_SDKFZ_171\"},{\"id\":\"EBP.GERMAN.PANTHER_SDKFZ_171_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.PANTHER_SDKFZ_171_MP\",\"documentation\":\"EBP.GERMAN.PANTHER_SDKFZ_171_MP\",\"detail\":\"EBP.GERMAN.PANTHER_SDKFZ_171_MP\"},{\"id\":\"EBP.GERMAN.PANZER_GRENADIERS\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZER_GRENADIERS\",\"documentation\":\"EBP.GERMAN.PANZER_GRENADIERS\",\"detail\":\"EBP.GERMAN.PANZER_GRENADIERS\"},{\"id\":\"EBP.GERMAN.PANZER_GRENADIERS_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZER_GRENADIERS_MP\",\"documentation\":\"EBP.GERMAN.PANZER_GRENADIERS_MP\",\"detail\":\"EBP.GERMAN.PANZER_GRENADIERS_MP\"},{\"id\":\"EBP.GERMAN.PANZER_III_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZER_III_MP\",\"documentation\":\"EBP.GERMAN.PANZER_III_MP\",\"detail\":\"EBP.GERMAN.PANZER_III_MP\"},{\"id\":\"EBP.GERMAN.PANZER_IV_COMMANDER_SDKFZ_161\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZER_IV_COMMANDER_SDKFZ_161\",\"documentation\":\"EBP.GERMAN.PANZER_IV_COMMANDER_SDKFZ_161\",\"detail\":\"EBP.GERMAN.PANZER_IV_COMMANDER_SDKFZ_161\"},{\"id\":\"EBP.GERMAN.PANZER_IV_COMMANDER_SDKFZ_161_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZER_IV_COMMANDER_SDKFZ_161_MP\",\"documentation\":\"EBP.GERMAN.PANZER_IV_COMMANDER_SDKFZ_161_MP\",\"detail\":\"EBP.GERMAN.PANZER_IV_COMMANDER_SDKFZ_161_MP\"},{\"id\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161\",\"documentation\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161\",\"detail\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161\"},{\"id\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161_MP\",\"documentation\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161_MP\",\"detail\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161_MP\"},{\"id\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161_TUTORIAL\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161_TUTORIAL\",\"documentation\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161_TUTORIAL\",\"detail\":\"EBP.GERMAN.PANZER_IV_SDKFZ_161_TUTORIAL\"},{\"id\":\"EBP.GERMAN.PANZER_IV_SDKFZ_AUSF1\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZER_IV_SDKFZ_AUSF1\",\"documentation\":\"EBP.GERMAN.PANZER_IV_SDKFZ_AUSF1\",\"detail\":\"EBP.GERMAN.PANZER_IV_SDKFZ_AUSF1\"},{\"id\":\"EBP.GERMAN.PANZER_IV_SDKFZ_AUSF1_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZER_IV_SDKFZ_AUSF1_MP\",\"documentation\":\"EBP.GERMAN.PANZER_IV_SDKFZ_AUSF1_MP\",\"detail\":\"EBP.GERMAN.PANZER_IV_SDKFZ_AUSF1_MP\"},{\"id\":\"EBP.GERMAN.PANZER_MG\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZER_MG\",\"documentation\":\"EBP.GERMAN.PANZER_MG\",\"detail\":\"EBP.GERMAN.PANZER_MG\"},{\"id\":\"EBP.GERMAN.PANZERWERFER_SDKFZ_4_1\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZERWERFER_SDKFZ_4_1\",\"documentation\":\"EBP.GERMAN.PANZERWERFER_SDKFZ_4_1\",\"detail\":\"EBP.GERMAN.PANZERWERFER_SDKFZ_4_1\"},{\"id\":\"EBP.GERMAN.PANZERWERFER_SDKFZ_4_1_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.PANZERWERFER_SDKFZ_4_1_MP\",\"documentation\":\"EBP.GERMAN.PANZERWERFER_SDKFZ_4_1_MP\",\"detail\":\"EBP.GERMAN.PANZERWERFER_SDKFZ_4_1_MP\"},{\"id\":\"EBP.GERMAN.PARADROP_SNIPER_SOLDIER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.PARADROP_SNIPER_SOLDIER_MP\",\"documentation\":\"EBP.GERMAN.PARADROP_SNIPER_SOLDIER_MP\",\"detail\":\"EBP.GERMAN.PARADROP_SNIPER_SOLDIER_MP\"},{\"id\":\"EBP.GERMAN.PIONEER\",\"kind\":17,\"label\":\"EBP.GERMAN.PIONEER\",\"documentation\":\"EBP.GERMAN.PIONEER\",\"detail\":\"EBP.GERMAN.PIONEER\"},{\"id\":\"EBP.GERMAN.PIONEER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.PIONEER_MP\",\"documentation\":\"EBP.GERMAN.PIONEER_MP\",\"detail\":\"EBP.GERMAN.PIONEER_MP\"},{\"id\":\"EBP.GERMAN.PUMA_EAST_GERMAN\",\"kind\":17,\"label\":\"EBP.GERMAN.PUMA_EAST_GERMAN\",\"documentation\":\"EBP.GERMAN.PUMA_EAST_GERMAN\",\"detail\":\"EBP.GERMAN.PUMA_EAST_GERMAN\"},{\"id\":\"EBP.GERMAN.REPAIR_PIONEER\",\"kind\":17,\"label\":\"EBP.GERMAN.REPAIR_PIONEER\",\"documentation\":\"EBP.GERMAN.REPAIR_PIONEER\",\"detail\":\"EBP.GERMAN.REPAIR_PIONEER\"},{\"id\":\"EBP.GERMAN.REPAIR_PIONEER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.REPAIR_PIONEER_MP\",\"documentation\":\"EBP.GERMAN.REPAIR_PIONEER_MP\",\"detail\":\"EBP.GERMAN.REPAIR_PIONEER_MP\"},{\"id\":\"EBP.GERMAN.RIEGEL_43_MINE\",\"kind\":17,\"label\":\"EBP.GERMAN.RIEGEL_43_MINE\",\"documentation\":\"EBP.GERMAN.RIEGEL_43_MINE\",\"detail\":\"EBP.GERMAN.RIEGEL_43_MINE\"},{\"id\":\"EBP.GERMAN.RIEGEL_43_MINE_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.RIEGEL_43_MINE_MP\",\"documentation\":\"EBP.GERMAN.RIEGEL_43_MINE_MP\",\"detail\":\"EBP.GERMAN.RIEGEL_43_MINE_MP\"},{\"id\":\"EBP.GERMAN.SCHWERES_KRIEGSWERK\",\"kind\":17,\"label\":\"EBP.GERMAN.SCHWERES_KRIEGSWERK\",\"documentation\":\"EBP.GERMAN.SCHWERES_KRIEGSWERK\",\"detail\":\"EBP.GERMAN.SCHWERES_KRIEGSWERK\"},{\"id\":\"EBP.GERMAN.SCHWERES_KRIEGSWERK_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.SCHWERES_KRIEGSWERK_MP\",\"documentation\":\"EBP.GERMAN.SCHWERES_KRIEGSWERK_MP\",\"detail\":\"EBP.GERMAN.SCHWERES_KRIEGSWERK_MP\"},{\"id\":\"EBP.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\",\"kind\":17,\"label\":\"EBP.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\",\"documentation\":\"EBP.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\",\"detail\":\"EBP.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\"},{\"id\":\"EBP.GERMAN.SLIT_TRENCH_GERMAN\",\"kind\":17,\"label\":\"EBP.GERMAN.SLIT_TRENCH_GERMAN\",\"documentation\":\"EBP.GERMAN.SLIT_TRENCH_GERMAN\",\"detail\":\"EBP.GERMAN.SLIT_TRENCH_GERMAN\"},{\"id\":\"EBP.GERMAN.SLIT_TRENCH_GERMAN_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.SLIT_TRENCH_GERMAN_MP\",\"documentation\":\"EBP.GERMAN.SLIT_TRENCH_GERMAN_MP\",\"detail\":\"EBP.GERMAN.SLIT_TRENCH_GERMAN_MP\"},{\"id\":\"EBP.GERMAN.SNIPER_COVER\",\"kind\":17,\"label\":\"EBP.GERMAN.SNIPER_COVER\",\"documentation\":\"EBP.GERMAN.SNIPER_COVER\",\"detail\":\"EBP.GERMAN.SNIPER_COVER\"},{\"id\":\"EBP.GERMAN.SNIPER_DIGIN_COVER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.SNIPER_DIGIN_COVER_MP\",\"documentation\":\"EBP.GERMAN.SNIPER_DIGIN_COVER_MP\",\"detail\":\"EBP.GERMAN.SNIPER_DIGIN_COVER_MP\"},{\"id\":\"EBP.GERMAN.SNIPER_SOLDIER\",\"kind\":17,\"label\":\"EBP.GERMAN.SNIPER_SOLDIER\",\"documentation\":\"EBP.GERMAN.SNIPER_SOLDIER\",\"detail\":\"EBP.GERMAN.SNIPER_SOLDIER\"},{\"id\":\"EBP.GERMAN.SNIPER_SOLDIER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.SNIPER_SOLDIER_MP\",\"documentation\":\"EBP.GERMAN.SNIPER_SOLDIER_MP\",\"detail\":\"EBP.GERMAN.SNIPER_SOLDIER_MP\"},{\"id\":\"EBP.GERMAN.STORMTROOPERS_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.STORMTROOPERS_MP\",\"documentation\":\"EBP.GERMAN.STORMTROOPERS_MP\",\"detail\":\"EBP.GERMAN.STORMTROOPERS_MP\"},{\"id\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1\",\"kind\":17,\"label\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1\",\"documentation\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1\",\"detail\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1\"},{\"id\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1_COMMANDER_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1_COMMANDER_MP\",\"documentation\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1_COMMANDER_MP\",\"detail\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1_COMMANDER_MP\"},{\"id\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1_MP\",\"documentation\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1_MP\",\"detail\":\"EBP.GERMAN.STUG_III_E_SDKFZ_141_1_MP\"},{\"id\":\"EBP.GERMAN.STUG_III_G_SDKFZ_141_1\",\"kind\":17,\"label\":\"EBP.GERMAN.STUG_III_G_SDKFZ_141_1\",\"documentation\":\"EBP.GERMAN.STUG_III_G_SDKFZ_141_1\",\"detail\":\"EBP.GERMAN.STUG_III_G_SDKFZ_141_1\"},{\"id\":\"EBP.GERMAN.STUG_III_G_SDKFZ_141_1_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.STUG_III_G_SDKFZ_141_1_MP\",\"documentation\":\"EBP.GERMAN.STUG_III_G_SDKFZ_141_1_MP\",\"detail\":\"EBP.GERMAN.STUG_III_G_SDKFZ_141_1_MP\"},{\"id\":\"EBP.GERMAN.STUKA_AIR_RECON\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_AIR_RECON\",\"documentation\":\"EBP.GERMAN.STUKA_AIR_RECON\",\"detail\":\"EBP.GERMAN.STUKA_AIR_RECON\"},{\"id\":\"EBP.GERMAN.STUKA_AIR_RECON_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_AIR_RECON_MP\",\"documentation\":\"EBP.GERMAN.STUKA_AIR_RECON_MP\",\"detail\":\"EBP.GERMAN.STUKA_AIR_RECON_MP\"},{\"id\":\"EBP.GERMAN.STUKA_BOMBING_DIVE\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_BOMBING_DIVE\",\"documentation\":\"EBP.GERMAN.STUKA_BOMBING_DIVE\",\"detail\":\"EBP.GERMAN.STUKA_BOMBING_DIVE\"},{\"id\":\"EBP.GERMAN.STUKA_BOMBING_DIVE_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_BOMBING_DIVE_MP\",\"documentation\":\"EBP.GERMAN.STUKA_BOMBING_DIVE_MP\",\"detail\":\"EBP.GERMAN.STUKA_BOMBING_DIVE_MP\"},{\"id\":\"EBP.GERMAN.STUKA_BOMBING_RUN_SP\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_BOMBING_RUN_SP\",\"documentation\":\"EBP.GERMAN.STUKA_BOMBING_RUN_SP\",\"detail\":\"EBP.GERMAN.STUKA_BOMBING_RUN_SP\"},{\"id\":\"EBP.GERMAN.STUKA_FRAGEMENTATION_BOMB\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_FRAGEMENTATION_BOMB\",\"documentation\":\"EBP.GERMAN.STUKA_FRAGEMENTATION_BOMB\",\"detail\":\"EBP.GERMAN.STUKA_FRAGEMENTATION_BOMB\"},{\"id\":\"EBP.GERMAN.STUKA_FRAGEMENTATION_BOMB_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_FRAGEMENTATION_BOMB_MP\",\"documentation\":\"EBP.GERMAN.STUKA_FRAGEMENTATION_BOMB_MP\",\"detail\":\"EBP.GERMAN.STUKA_FRAGEMENTATION_BOMB_MP\"},{\"id\":\"EBP.GERMAN.STUKA_GROUND_ATTACK\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_GROUND_ATTACK\",\"documentation\":\"EBP.GERMAN.STUKA_GROUND_ATTACK\",\"detail\":\"EBP.GERMAN.STUKA_GROUND_ATTACK\"},{\"id\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_LONG\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_LONG\",\"documentation\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_LONG\",\"detail\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_LONG\"},{\"id\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_M09\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_M09\",\"documentation\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_M09\",\"detail\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_M09\"},{\"id\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_MP\",\"documentation\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_MP\",\"detail\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_MP\"},{\"id\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_WEST_AIRBORNE_ASSAULT\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_WEST_AIRBORNE_ASSAULT\",\"documentation\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_WEST_AIRBORNE_ASSAULT\",\"detail\":\"EBP.GERMAN.STUKA_GROUND_ATTACK_WEST_AIRBORNE_ASSAULT\"},{\"id\":\"EBP.GERMAN.STUKA_INCENDIARY_BOMB\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_INCENDIARY_BOMB\",\"documentation\":\"EBP.GERMAN.STUKA_INCENDIARY_BOMB\",\"detail\":\"EBP.GERMAN.STUKA_INCENDIARY_BOMB\"},{\"id\":\"EBP.GERMAN.STUKA_INCENDIARY_BOMB_VICTORY\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_INCENDIARY_BOMB_VICTORY\",\"documentation\":\"EBP.GERMAN.STUKA_INCENDIARY_BOMB_VICTORY\",\"detail\":\"EBP.GERMAN.STUKA_INCENDIARY_BOMB_VICTORY\"},{\"id\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK\",\"documentation\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK\",\"detail\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK\"},{\"id\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_M06\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_M06\",\"documentation\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_M06\",\"detail\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_M06\"},{\"id\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_MP\",\"documentation\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_MP\",\"detail\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_MP\"},{\"id\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_SUPERIORITY\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_SUPERIORITY\",\"documentation\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_SUPERIORITY\",\"detail\":\"EBP.GERMAN.STUKA_JU87_ANTI_TANK_SUPERIORITY\"},{\"id\":\"EBP.GERMAN.STUKA_SMOKE_BOMB\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_SMOKE_BOMB\",\"documentation\":\"EBP.GERMAN.STUKA_SMOKE_BOMB\",\"detail\":\"EBP.GERMAN.STUKA_SMOKE_BOMB\"},{\"id\":\"EBP.GERMAN.STUKA_SMOKE_BOMB_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.STUKA_SMOKE_BOMB_MP\",\"documentation\":\"EBP.GERMAN.STUKA_SMOKE_BOMB_MP\",\"detail\":\"EBP.GERMAN.STUKA_SMOKE_BOMB_MP\"},{\"id\":\"EBP.GERMAN.SUPPLY_TRUCK_METAL_M_01\",\"kind\":17,\"label\":\"EBP.GERMAN.SUPPLY_TRUCK_METAL_M_01\",\"documentation\":\"EBP.GERMAN.SUPPLY_TRUCK_METAL_M_01\",\"detail\":\"EBP.GERMAN.SUPPLY_TRUCK_METAL_M_01\"},{\"id\":\"EBP.GERMAN.SUPPLY_TRUCK_METAL_M_02\",\"kind\":17,\"label\":\"EBP.GERMAN.SUPPLY_TRUCK_METAL_M_02\",\"documentation\":\"EBP.GERMAN.SUPPLY_TRUCK_METAL_M_02\",\"detail\":\"EBP.GERMAN.SUPPLY_TRUCK_METAL_M_02\"},{\"id\":\"EBP.GERMAN.SUPPLY_TRUCK_MUNITIONS_CASE_AX_01\",\"kind\":17,\"label\":\"EBP.GERMAN.SUPPLY_TRUCK_MUNITIONS_CASE_AX_01\",\"documentation\":\"EBP.GERMAN.SUPPLY_TRUCK_MUNITIONS_CASE_AX_01\",\"detail\":\"EBP.GERMAN.SUPPLY_TRUCK_MUNITIONS_CASE_AX_01\"},{\"id\":\"EBP.GERMAN.SUPPLY_TRUCK_MUNITIONS_CASE_AX_03\",\"kind\":17,\"label\":\"EBP.GERMAN.SUPPLY_TRUCK_MUNITIONS_CASE_AX_03\",\"documentation\":\"EBP.GERMAN.SUPPLY_TRUCK_MUNITIONS_CASE_AX_03\",\"detail\":\"EBP.GERMAN.SUPPLY_TRUCK_MUNITIONS_CASE_AX_03\"},{\"id\":\"EBP.GERMAN.SUPPLY_TRUCK_SANDBAG_PILE_02\",\"kind\":17,\"label\":\"EBP.GERMAN.SUPPLY_TRUCK_SANDBAG_PILE_02\",\"documentation\":\"EBP.GERMAN.SUPPLY_TRUCK_SANDBAG_PILE_02\",\"detail\":\"EBP.GERMAN.SUPPLY_TRUCK_SANDBAG_PILE_02\"},{\"id\":\"EBP.GERMAN.TACTICAL_BOMBER\",\"kind\":17,\"label\":\"EBP.GERMAN.TACTICAL_BOMBER\",\"documentation\":\"EBP.GERMAN.TACTICAL_BOMBER\",\"detail\":\"EBP.GERMAN.TACTICAL_BOMBER\"},{\"id\":\"EBP.GERMAN.TACTICAL_BOMBER_ACCURATE\",\"kind\":17,\"label\":\"EBP.GERMAN.TACTICAL_BOMBER_ACCURATE\",\"documentation\":\"EBP.GERMAN.TACTICAL_BOMBER_ACCURATE\",\"detail\":\"EBP.GERMAN.TACTICAL_BOMBER_ACCURATE\"},{\"id\":\"EBP.GERMAN.TANK_TRAP\",\"kind\":17,\"label\":\"EBP.GERMAN.TANK_TRAP\",\"documentation\":\"EBP.GERMAN.TANK_TRAP\",\"detail\":\"EBP.GERMAN.TANK_TRAP\"},{\"id\":\"EBP.GERMAN.TELLER_MINE_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.TELLER_MINE_MP\",\"documentation\":\"EBP.GERMAN.TELLER_MINE_MP\",\"detail\":\"EBP.GERMAN.TELLER_MINE_MP\"},{\"id\":\"EBP.GERMAN.TIER1_MARKER\",\"kind\":17,\"label\":\"EBP.GERMAN.TIER1_MARKER\",\"documentation\":\"EBP.GERMAN.TIER1_MARKER\",\"detail\":\"EBP.GERMAN.TIER1_MARKER\"},{\"id\":\"EBP.GERMAN.TIER2_MARKER\",\"kind\":17,\"label\":\"EBP.GERMAN.TIER2_MARKER\",\"documentation\":\"EBP.GERMAN.TIER2_MARKER\",\"detail\":\"EBP.GERMAN.TIER2_MARKER\"},{\"id\":\"EBP.GERMAN.TIER3_MARKER\",\"kind\":17,\"label\":\"EBP.GERMAN.TIER3_MARKER\",\"documentation\":\"EBP.GERMAN.TIER3_MARKER\",\"detail\":\"EBP.GERMAN.TIER3_MARKER\"},{\"id\":\"EBP.GERMAN.TIER4_MARKER\",\"kind\":17,\"label\":\"EBP.GERMAN.TIER4_MARKER\",\"documentation\":\"EBP.GERMAN.TIER4_MARKER\",\"detail\":\"EBP.GERMAN.TIER4_MARKER\"},{\"id\":\"EBP.GERMAN.TIGER_ACE_SDKFZ_181_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.TIGER_ACE_SDKFZ_181_MP\",\"documentation\":\"EBP.GERMAN.TIGER_ACE_SDKFZ_181_MP\",\"detail\":\"EBP.GERMAN.TIGER_ACE_SDKFZ_181_MP\"},{\"id\":\"EBP.GERMAN.TIGER_SDKFZ_181\",\"kind\":17,\"label\":\"EBP.GERMAN.TIGER_SDKFZ_181\",\"documentation\":\"EBP.GERMAN.TIGER_SDKFZ_181\",\"detail\":\"EBP.GERMAN.TIGER_SDKFZ_181\"},{\"id\":\"EBP.GERMAN.TIGER_SDKFZ_181_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.TIGER_SDKFZ_181_MP\",\"documentation\":\"EBP.GERMAN.TIGER_SDKFZ_181_MP\",\"detail\":\"EBP.GERMAN.TIGER_SDKFZ_181_MP\"},{\"id\":\"EBP.GERMAN.TIGER_SDKFZ_181_SINGLEPLAYER_MISSION\",\"kind\":17,\"label\":\"EBP.GERMAN.TIGER_SDKFZ_181_SINGLEPLAYER_MISSION\",\"documentation\":\"EBP.GERMAN.TIGER_SDKFZ_181_SINGLEPLAYER_MISSION\",\"detail\":\"EBP.GERMAN.TIGER_SDKFZ_181_SINGLEPLAYER_MISSION\"},{\"id\":\"EBP.GERMAN.TIGER_SDKFZ_181_TOW\",\"kind\":17,\"label\":\"EBP.GERMAN.TIGER_SDKFZ_181_TOW\",\"documentation\":\"EBP.GERMAN.TIGER_SDKFZ_181_TOW\",\"detail\":\"EBP.GERMAN.TIGER_SDKFZ_181_TOW\"},{\"id\":\"EBP.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS_MP\",\"kind\":17,\"label\":\"EBP.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS_MP\",\"documentation\":\"EBP.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS_MP\",\"detail\":\"EBP.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS_MP\"},{\"id\":\"SBP.GERMAN.ASSAULT_GRENADIER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.ASSAULT_GRENADIER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.ASSAULT_GRENADIER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.ASSAULT_GRENADIER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.ASSAULT_OFFICER_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.ASSAULT_OFFICER_SQUAD\",\"documentation\":\"SBP.GERMAN.ASSAULT_OFFICER_SQUAD\",\"detail\":\"SBP.GERMAN.ASSAULT_OFFICER_SQUAD\"},{\"id\":\"SBP.GERMAN.ASSAULT_OFFICER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.ASSAULT_OFFICER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.ASSAULT_OFFICER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.ASSAULT_OFFICER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.BRUMMBAR_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.BRUMMBAR_SQUAD\",\"documentation\":\"SBP.GERMAN.BRUMMBAR_SQUAD\",\"detail\":\"SBP.GERMAN.BRUMMBAR_SQUAD\"},{\"id\":\"SBP.GERMAN.BRUMMBAR_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.BRUMMBAR_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.BRUMMBAR_SQUAD_MP\",\"detail\":\"SBP.GERMAN.BRUMMBAR_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.CARGO_PLANE\",\"kind\":17,\"label\":\"SBP.GERMAN.CARGO_PLANE\",\"documentation\":\"SBP.GERMAN.CARGO_PLANE\",\"detail\":\"SBP.GERMAN.CARGO_PLANE\"},{\"id\":\"SBP.GERMAN.CARGO_PLANE_FUEL\",\"kind\":17,\"label\":\"SBP.GERMAN.CARGO_PLANE_FUEL\",\"documentation\":\"SBP.GERMAN.CARGO_PLANE_FUEL\",\"detail\":\"SBP.GERMAN.CARGO_PLANE_FUEL\"},{\"id\":\"SBP.GERMAN.CARGO_PLANE_MUNITIONS\",\"kind\":17,\"label\":\"SBP.GERMAN.CARGO_PLANE_MUNITIONS\",\"documentation\":\"SBP.GERMAN.CARGO_PLANE_MUNITIONS\",\"detail\":\"SBP.GERMAN.CARGO_PLANE_MUNITIONS\"},{\"id\":\"SBP.GERMAN.COMMAND_OFFICER_SQUAD_TOW\",\"kind\":17,\"label\":\"SBP.GERMAN.COMMAND_OFFICER_SQUAD_TOW\",\"documentation\":\"SBP.GERMAN.COMMAND_OFFICER_SQUAD_TOW\",\"detail\":\"SBP.GERMAN.COMMAND_OFFICER_SQUAD_TOW\"},{\"id\":\"SBP.GERMAN.CONVOY_PIONEER_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.CONVOY_PIONEER_SQUAD\",\"documentation\":\"SBP.GERMAN.CONVOY_PIONEER_SQUAD\",\"detail\":\"SBP.GERMAN.CONVOY_PIONEER_SQUAD\"},{\"id\":\"SBP.GERMAN.ELEFANT_TANK_DESTROYER_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.ELEFANT_TANK_DESTROYER_SQUAD\",\"documentation\":\"SBP.GERMAN.ELEFANT_TANK_DESTROYER_SQUAD\",\"detail\":\"SBP.GERMAN.ELEFANT_TANK_DESTROYER_SQUAD\"},{\"id\":\"SBP.GERMAN.ELEFANT_TANK_DESTROYER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.ELEFANT_TANK_DESTROYER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.ELEFANT_TANK_DESTROYER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.ELEFANT_TANK_DESTROYER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.GRENADIER_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.GRENADIER_SQUAD\",\"documentation\":\"SBP.GERMAN.GRENADIER_SQUAD\",\"detail\":\"SBP.GERMAN.GRENADIER_SQUAD\"},{\"id\":\"SBP.GERMAN.GRENADIER_SQUAD_M14\",\"kind\":17,\"label\":\"SBP.GERMAN.GRENADIER_SQUAD_M14\",\"documentation\":\"SBP.GERMAN.GRENADIER_SQUAD_M14\",\"detail\":\"SBP.GERMAN.GRENADIER_SQUAD_M14\"},{\"id\":\"SBP.GERMAN.GRENADIER_SQUAD_MG42LMG_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.GRENADIER_SQUAD_MG42LMG_MP\",\"documentation\":\"SBP.GERMAN.GRENADIER_SQUAD_MG42LMG_MP\",\"detail\":\"SBP.GERMAN.GRENADIER_SQUAD_MG42LMG_MP\"},{\"id\":\"SBP.GERMAN.GRENADIER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.GRENADIER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.GRENADIER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.GRENADIER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.GRENADIER_SQUAD_SP\",\"kind\":17,\"label\":\"SBP.GERMAN.GRENADIER_SQUAD_SP\",\"documentation\":\"SBP.GERMAN.GRENADIER_SQUAD_SP\",\"detail\":\"SBP.GERMAN.GRENADIER_SQUAD_SP\"},{\"id\":\"SBP.GERMAN.HACK_INVISI_PIONEER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.HACK_INVISI_PIONEER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.HACK_INVISI_PIONEER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.HACK_INVISI_PIONEER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.HOWITZER_105MM_DUMMY_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.HOWITZER_105MM_DUMMY_SQUAD\",\"documentation\":\"SBP.GERMAN.HOWITZER_105MM_DUMMY_SQUAD\",\"detail\":\"SBP.GERMAN.HOWITZER_105MM_DUMMY_SQUAD\"},{\"id\":\"SBP.GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY\",\"kind\":17,\"label\":\"SBP.GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY\",\"documentation\":\"SBP.GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY\",\"detail\":\"SBP.GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY\"},{\"id\":\"SBP.GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY_MP\",\"documentation\":\"SBP.GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY_MP\",\"detail\":\"SBP.GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY_MP\"},{\"id\":\"SBP.GERMAN.LUFTWAFFE_OFFICER_SQUAD_TOW\",\"kind\":17,\"label\":\"SBP.GERMAN.LUFTWAFFE_OFFICER_SQUAD_TOW\",\"documentation\":\"SBP.GERMAN.LUFTWAFFE_OFFICER_SQUAD_TOW\",\"detail\":\"SBP.GERMAN.LUFTWAFFE_OFFICER_SQUAD_TOW\"},{\"id\":\"SBP.GERMAN.M01_MG42_HEAVY_MACHINE_GUN_SQUAD_SINGLE\",\"kind\":17,\"label\":\"SBP.GERMAN.M01_MG42_HEAVY_MACHINE_GUN_SQUAD_SINGLE\",\"documentation\":\"SBP.GERMAN.M01_MG42_HEAVY_MACHINE_GUN_SQUAD_SINGLE\",\"detail\":\"SBP.GERMAN.M01_MG42_HEAVY_MACHINE_GUN_SQUAD_SINGLE\"},{\"id\":\"SBP.GERMAN.M01_STUKA_DOGFIGHT\",\"kind\":17,\"label\":\"SBP.GERMAN.M01_STUKA_DOGFIGHT\",\"documentation\":\"SBP.GERMAN.M01_STUKA_DOGFIGHT\",\"detail\":\"SBP.GERMAN.M01_STUKA_DOGFIGHT\"},{\"id\":\"SBP.GERMAN.M01_STUKA_GROUND_ATTACK_SQUAD_FAST\",\"kind\":17,\"label\":\"SBP.GERMAN.M01_STUKA_GROUND_ATTACK_SQUAD_FAST\",\"documentation\":\"SBP.GERMAN.M01_STUKA_GROUND_ATTACK_SQUAD_FAST\",\"detail\":\"SBP.GERMAN.M01_STUKA_GROUND_ATTACK_SQUAD_FAST\"},{\"id\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_GRENADIERS_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_GRENADIERS_MP\",\"documentation\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_GRENADIERS_MP\",\"detail\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_GRENADIERS_MP\"},{\"id\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_MP\",\"documentation\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_MP\",\"detail\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_MP\"},{\"id\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_TOW\",\"kind\":17,\"label\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_TOW\",\"documentation\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_TOW\",\"detail\":\"SBP.GERMAN.MECHANIZED_250_HALFTRACK_TOW\"},{\"id\":\"SBP.GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD\",\"documentation\":\"SBP.GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD\",\"detail\":\"SBP.GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD\"},{\"id\":\"SBP.GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD_MP\",\"detail\":\"SBP.GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.MORTAR_250_HALFTRACK_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.MORTAR_250_HALFTRACK_SQUAD\",\"documentation\":\"SBP.GERMAN.MORTAR_250_HALFTRACK_SQUAD\",\"detail\":\"SBP.GERMAN.MORTAR_250_HALFTRACK_SQUAD\"},{\"id\":\"SBP.GERMAN.MORTAR_250_HALFTRACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.MORTAR_250_HALFTRACK_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.MORTAR_250_HALFTRACK_SQUAD_MP\",\"detail\":\"SBP.GERMAN.MORTAR_250_HALFTRACK_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.MORTAR_TEAM_81MM\",\"kind\":17,\"label\":\"SBP.GERMAN.MORTAR_TEAM_81MM\",\"documentation\":\"SBP.GERMAN.MORTAR_TEAM_81MM\",\"detail\":\"SBP.GERMAN.MORTAR_TEAM_81MM\"},{\"id\":\"SBP.GERMAN.MORTAR_TEAM_81MM_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.MORTAR_TEAM_81MM_MP\",\"documentation\":\"SBP.GERMAN.MORTAR_TEAM_81MM_MP\",\"detail\":\"SBP.GERMAN.MORTAR_TEAM_81MM_MP\"},{\"id\":\"SBP.GERMAN.OFFICER_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.OFFICER_SQUAD\",\"documentation\":\"SBP.GERMAN.OFFICER_SQUAD\",\"detail\":\"SBP.GERMAN.OFFICER_SQUAD\"},{\"id\":\"SBP.GERMAN.OFFICER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.OFFICER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.OFFICER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.OFFICER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.OPEL_BLITZ_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.OPEL_BLITZ_SQUAD\",\"documentation\":\"SBP.GERMAN.OPEL_BLITZ_SQUAD\",\"detail\":\"SBP.GERMAN.OPEL_BLITZ_SQUAD\"},{\"id\":\"SBP.GERMAN.OPEL_BLITZ_SUPPLY_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.OPEL_BLITZ_SUPPLY_SQUAD\",\"documentation\":\"SBP.GERMAN.OPEL_BLITZ_SUPPLY_SQUAD\",\"detail\":\"SBP.GERMAN.OPEL_BLITZ_SUPPLY_SQUAD\"},{\"id\":\"SBP.GERMAN.OSTRUPPEN_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.OSTRUPPEN_SQUAD\",\"documentation\":\"SBP.GERMAN.OSTRUPPEN_SQUAD\",\"detail\":\"SBP.GERMAN.OSTRUPPEN_SQUAD\"},{\"id\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_M14\",\"kind\":17,\"label\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_M14\",\"documentation\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_M14\",\"detail\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_M14\"},{\"id\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_MP\",\"detail\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_RESERVES_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_RESERVES_MP\",\"documentation\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_RESERVES_MP\",\"detail\":\"SBP.GERMAN.OSTRUPPEN_SQUAD_RESERVES_MP\"},{\"id\":\"SBP.GERMAN.OSTWIND_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.OSTWIND_SQUAD\",\"documentation\":\"SBP.GERMAN.OSTWIND_SQUAD\",\"detail\":\"SBP.GERMAN.OSTWIND_SQUAD\"},{\"id\":\"SBP.GERMAN.OSTWIND_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.OSTWIND_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.OSTWIND_SQUAD_MP\",\"detail\":\"SBP.GERMAN.OSTWIND_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.PAK40_75MM_AT_GUN_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.PAK40_75MM_AT_GUN_SQUAD\",\"documentation\":\"SBP.GERMAN.PAK40_75MM_AT_GUN_SQUAD\",\"detail\":\"SBP.GERMAN.PAK40_75MM_AT_GUN_SQUAD\"},{\"id\":\"SBP.GERMAN.PAK40_75MM_AT_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.PAK40_75MM_AT_GUN_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.PAK40_75MM_AT_GUN_SQUAD_MP\",\"detail\":\"SBP.GERMAN.PAK40_75MM_AT_GUN_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.PAK43_88MM_AT_GUN_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.PAK43_88MM_AT_GUN_SQUAD\",\"documentation\":\"SBP.GERMAN.PAK43_88MM_AT_GUN_SQUAD\",\"detail\":\"SBP.GERMAN.PAK43_88MM_AT_GUN_SQUAD\"},{\"id\":\"SBP.GERMAN.PAK43_88MM_AT_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.PAK43_88MM_AT_GUN_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.PAK43_88MM_AT_GUN_SQUAD_MP\",\"detail\":\"SBP.GERMAN.PAK43_88MM_AT_GUN_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.PANTHER_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.PANTHER_SQUAD\",\"documentation\":\"SBP.GERMAN.PANTHER_SQUAD\",\"detail\":\"SBP.GERMAN.PANTHER_SQUAD\"},{\"id\":\"SBP.GERMAN.PANTHER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.PANTHER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.PANTHER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.PANTHER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD\",\"documentation\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD\",\"detail\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD\"},{\"id\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD_M14\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD_M14\",\"documentation\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD_M14\",\"detail\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD_M14\"},{\"id\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.PANZER_GRENADIER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.PANZER_IV_COMMAND_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZER_IV_COMMAND_SQUAD\",\"documentation\":\"SBP.GERMAN.PANZER_IV_COMMAND_SQUAD\",\"detail\":\"SBP.GERMAN.PANZER_IV_COMMAND_SQUAD\"},{\"id\":\"SBP.GERMAN.PANZER_IV_COMMAND_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZER_IV_COMMAND_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.PANZER_IV_COMMAND_SQUAD_MP\",\"detail\":\"SBP.GERMAN.PANZER_IV_COMMAND_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.PANZER_IV_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZER_IV_SQUAD\",\"documentation\":\"SBP.GERMAN.PANZER_IV_SQUAD\",\"detail\":\"SBP.GERMAN.PANZER_IV_SQUAD\"},{\"id\":\"SBP.GERMAN.PANZER_IV_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZER_IV_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.PANZER_IV_SQUAD_MP\",\"detail\":\"SBP.GERMAN.PANZER_IV_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.PANZER_IV_SQUAD_TUTORIAL\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZER_IV_SQUAD_TUTORIAL\",\"documentation\":\"SBP.GERMAN.PANZER_IV_SQUAD_TUTORIAL\",\"detail\":\"SBP.GERMAN.PANZER_IV_SQUAD_TUTORIAL\"},{\"id\":\"SBP.GERMAN.PANZER_IV_STUBBY_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZER_IV_STUBBY_SQUAD\",\"documentation\":\"SBP.GERMAN.PANZER_IV_STUBBY_SQUAD\",\"detail\":\"SBP.GERMAN.PANZER_IV_STUBBY_SQUAD\"},{\"id\":\"SBP.GERMAN.PANZER_IV_STUBBY_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZER_IV_STUBBY_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.PANZER_IV_STUBBY_SQUAD_MP\",\"detail\":\"SBP.GERMAN.PANZER_IV_STUBBY_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.PANZER_MG_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZER_MG_SQUAD\",\"documentation\":\"SBP.GERMAN.PANZER_MG_SQUAD\",\"detail\":\"SBP.GERMAN.PANZER_MG_SQUAD\"},{\"id\":\"SBP.GERMAN.PANZERWERFER_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZERWERFER_SQUAD\",\"documentation\":\"SBP.GERMAN.PANZERWERFER_SQUAD\",\"detail\":\"SBP.GERMAN.PANZERWERFER_SQUAD\"},{\"id\":\"SBP.GERMAN.PANZERWERFER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.PANZERWERFER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.PANZERWERFER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.PANZERWERFER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.PARTISAN_SQUAD_M13\",\"kind\":17,\"label\":\"SBP.GERMAN.PARTISAN_SQUAD_M13\",\"documentation\":\"SBP.GERMAN.PARTISAN_SQUAD_M13\",\"detail\":\"SBP.GERMAN.PARTISAN_SQUAD_M13\"},{\"id\":\"SBP.GERMAN.PIONEER_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.PIONEER_SQUAD\",\"documentation\":\"SBP.GERMAN.PIONEER_SQUAD\",\"detail\":\"SBP.GERMAN.PIONEER_SQUAD\"},{\"id\":\"SBP.GERMAN.PIONEER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.PIONEER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.PIONEER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.PIONEER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.PIONEER_SQUAD_TOW\",\"kind\":17,\"label\":\"SBP.GERMAN.PIONEER_SQUAD_TOW\",\"documentation\":\"SBP.GERMAN.PIONEER_SQUAD_TOW\",\"detail\":\"SBP.GERMAN.PIONEER_SQUAD_TOW\"},{\"id\":\"SBP.GERMAN.PUMA_EAST_GERMAN_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.PUMA_EAST_GERMAN_MP\",\"documentation\":\"SBP.GERMAN.PUMA_EAST_GERMAN_MP\",\"detail\":\"SBP.GERMAN.PUMA_EAST_GERMAN_MP\"},{\"id\":\"SBP.GERMAN.SCOUTCAR_SDKFZ222\",\"kind\":17,\"label\":\"SBP.GERMAN.SCOUTCAR_SDKFZ222\",\"documentation\":\"SBP.GERMAN.SCOUTCAR_SDKFZ222\",\"detail\":\"SBP.GERMAN.SCOUTCAR_SDKFZ222\"},{\"id\":\"SBP.GERMAN.SCOUTCAR_SDKFZ222_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.SCOUTCAR_SDKFZ222_MP\",\"documentation\":\"SBP.GERMAN.SCOUTCAR_SDKFZ222_MP\",\"detail\":\"SBP.GERMAN.SCOUTCAR_SDKFZ222_MP\"},{\"id\":\"SBP.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\",\"kind\":17,\"label\":\"SBP.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\",\"documentation\":\"SBP.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\",\"detail\":\"SBP.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\"},{\"id\":\"SBP.GERMAN.SDKFZ_251_HALFTRACK_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.SDKFZ_251_HALFTRACK_SQUAD\",\"documentation\":\"SBP.GERMAN.SDKFZ_251_HALFTRACK_SQUAD\",\"detail\":\"SBP.GERMAN.SDKFZ_251_HALFTRACK_SQUAD\"},{\"id\":\"SBP.GERMAN.SDKFZ_251_HALFTRACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.SDKFZ_251_HALFTRACK_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.SDKFZ_251_HALFTRACK_SQUAD_MP\",\"detail\":\"SBP.GERMAN.SDKFZ_251_HALFTRACK_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.SNIPER_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.SNIPER_SQUAD\",\"documentation\":\"SBP.GERMAN.SNIPER_SQUAD\",\"detail\":\"SBP.GERMAN.SNIPER_SQUAD\"},{\"id\":\"SBP.GERMAN.SNIPER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.SNIPER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.SNIPER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.SNIPER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.STORMTROOPER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.STORMTROOPER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.STORMTROOPER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.STORMTROOPER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.STUG_III_E_COMMANDER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.STUG_III_E_COMMANDER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.STUG_III_E_COMMANDER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.STUG_III_E_COMMANDER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.STUG_III_E_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.STUG_III_E_SQUAD\",\"documentation\":\"SBP.GERMAN.STUG_III_E_SQUAD\",\"detail\":\"SBP.GERMAN.STUG_III_E_SQUAD\"},{\"id\":\"SBP.GERMAN.STUG_III_E_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.STUG_III_E_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.STUG_III_E_SQUAD_MP\",\"detail\":\"SBP.GERMAN.STUG_III_E_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.STUG_III_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.STUG_III_SQUAD\",\"documentation\":\"SBP.GERMAN.STUG_III_SQUAD\",\"detail\":\"SBP.GERMAN.STUG_III_SQUAD\"},{\"id\":\"SBP.GERMAN.STUG_III_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.STUG_III_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.STUG_III_SQUAD_MP\",\"detail\":\"SBP.GERMAN.STUG_III_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.STUKA_AIR_CAP_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_AIR_CAP_SQUAD\",\"documentation\":\"SBP.GERMAN.STUKA_AIR_CAP_SQUAD\",\"detail\":\"SBP.GERMAN.STUKA_AIR_CAP_SQUAD\"},{\"id\":\"SBP.GERMAN.STUKA_AIR_CAP_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_AIR_CAP_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.STUKA_AIR_CAP_SQUAD_MP\",\"detail\":\"SBP.GERMAN.STUKA_AIR_CAP_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD\",\"documentation\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD\",\"detail\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD\"},{\"id\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_M06\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_M06\",\"documentation\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_M06\",\"detail\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_M06\"},{\"id\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_MP\",\"detail\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_SUPERIORITY\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_SUPERIORITY\",\"documentation\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_SUPERIORITY\",\"detail\":\"SBP.GERMAN.STUKA_GROUND_ANTI_TANK_SQUAD_SUPERIORITY\"},{\"id\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD\",\"documentation\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD\",\"detail\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD\"},{\"id\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_LONG\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_LONG\",\"documentation\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_LONG\",\"detail\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_LONG\"},{\"id\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_M09\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_M09\",\"documentation\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_M09\",\"detail\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_M09\"},{\"id\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_MP\",\"detail\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_WEST_GERMANS_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_WEST_GERMANS_SQUAD\",\"documentation\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_WEST_GERMANS_SQUAD\",\"detail\":\"SBP.GERMAN.STUKA_GROUND_ATTACK_WEST_GERMANS_SQUAD\"},{\"id\":\"SBP.GERMAN.STUKA_GROUND_FRAGMENTATION_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_GROUND_FRAGMENTATION_SQUAD\",\"documentation\":\"SBP.GERMAN.STUKA_GROUND_FRAGMENTATION_SQUAD\",\"detail\":\"SBP.GERMAN.STUKA_GROUND_FRAGMENTATION_SQUAD\"},{\"id\":\"SBP.GERMAN.STUKA_GROUND_FRAGMENTATION_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_GROUND_FRAGMENTATION_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.STUKA_GROUND_FRAGMENTATION_SQUAD_MP\",\"detail\":\"SBP.GERMAN.STUKA_GROUND_FRAGMENTATION_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.STUKA_INCENDIARY_BOMB_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_INCENDIARY_BOMB_SQUAD\",\"documentation\":\"SBP.GERMAN.STUKA_INCENDIARY_BOMB_SQUAD\",\"detail\":\"SBP.GERMAN.STUKA_INCENDIARY_BOMB_SQUAD\"},{\"id\":\"SBP.GERMAN.STUKA_INCENDIARY_BOMB_VICTORY_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_INCENDIARY_BOMB_VICTORY_SQUAD\",\"documentation\":\"SBP.GERMAN.STUKA_INCENDIARY_BOMB_VICTORY_SQUAD\",\"detail\":\"SBP.GERMAN.STUKA_INCENDIARY_BOMB_VICTORY_SQUAD\"},{\"id\":\"SBP.GERMAN.STUKA_SMOKE_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_SMOKE_SQUAD\",\"documentation\":\"SBP.GERMAN.STUKA_SMOKE_SQUAD\",\"detail\":\"SBP.GERMAN.STUKA_SMOKE_SQUAD\"},{\"id\":\"SBP.GERMAN.STUKA_SMOKE_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.STUKA_SMOKE_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.STUKA_SMOKE_SQUAD_MP\",\"detail\":\"SBP.GERMAN.STUKA_SMOKE_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.TACTICAL_BOMBERS\",\"kind\":17,\"label\":\"SBP.GERMAN.TACTICAL_BOMBERS\",\"documentation\":\"SBP.GERMAN.TACTICAL_BOMBERS\",\"detail\":\"SBP.GERMAN.TACTICAL_BOMBERS\"},{\"id\":\"SBP.GERMAN.TACTICAL_BOMBERS_ACCURATE\",\"kind\":17,\"label\":\"SBP.GERMAN.TACTICAL_BOMBERS_ACCURATE\",\"documentation\":\"SBP.GERMAN.TACTICAL_BOMBERS_ACCURATE\",\"detail\":\"SBP.GERMAN.TACTICAL_BOMBERS_ACCURATE\"},{\"id\":\"SBP.GERMAN.TIGER_ACE_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.TIGER_ACE_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.TIGER_ACE_SQUAD_MP\",\"detail\":\"SBP.GERMAN.TIGER_ACE_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.TIGER_SQUAD\",\"kind\":17,\"label\":\"SBP.GERMAN.TIGER_SQUAD\",\"documentation\":\"SBP.GERMAN.TIGER_SQUAD\",\"detail\":\"SBP.GERMAN.TIGER_SQUAD\"},{\"id\":\"SBP.GERMAN.TIGER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.TIGER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.TIGER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.TIGER_SQUAD_MP\"},{\"id\":\"SBP.GERMAN.TIGER_SQUAD_SP_A2_M02\",\"kind\":17,\"label\":\"SBP.GERMAN.TIGER_SQUAD_SP_A2_M02\",\"documentation\":\"SBP.GERMAN.TIGER_SQUAD_SP_A2_M02\",\"detail\":\"SBP.GERMAN.TIGER_SQUAD_SP_A2_M02\"},{\"id\":\"SBP.GERMAN.TIGER_SQUAD_TOW\",\"kind\":17,\"label\":\"SBP.GERMAN.TIGER_SQUAD_TOW\",\"documentation\":\"SBP.GERMAN.TIGER_SQUAD_TOW\",\"detail\":\"SBP.GERMAN.TIGER_SQUAD_TOW\"},{\"id\":\"SBP.GERMAN.URBAN_ASSAULT_PANZER_GRENADIER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.GERMAN.URBAN_ASSAULT_PANZER_GRENADIER_SQUAD_MP\",\"documentation\":\"SBP.GERMAN.URBAN_ASSAULT_PANZER_GRENADIER_SQUAD_MP\",\"detail\":\"SBP.GERMAN.URBAN_ASSAULT_PANZER_GRENADIER_SQUAD_MP\"},{\"id\":\"ABILITY.GERMAN.AIR_DROPPED_MEDICAL_SUPPLIES\",\"kind\":17,\"label\":\"ABILITY.GERMAN.AIR_DROPPED_MEDICAL_SUPPLIES\",\"documentation\":\"ABILITY.GERMAN.AIR_DROPPED_MEDICAL_SUPPLIES\",\"detail\":\"ABILITY.GERMAN.AIR_DROPPED_MEDICAL_SUPPLIES\"},{\"id\":\"ABILITY.GERMAN.AIR_DROPPED_MUNITIONS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.AIR_DROPPED_MUNITIONS\",\"documentation\":\"ABILITY.GERMAN.AIR_DROPPED_MUNITIONS\",\"detail\":\"ABILITY.GERMAN.AIR_DROPPED_MUNITIONS\"},{\"id\":\"ABILITY.GERMAN.AMBUSH_CAMO_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.AMBUSH_CAMO_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.GERMAN.AMBUSH_CAMO_HOLD_FIRE_MP\",\"detail\":\"ABILITY.GERMAN.AMBUSH_CAMO_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE\",\"documentation\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE\",\"detail\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE\"},{\"id\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_AT\",\"kind\":17,\"label\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_AT\",\"documentation\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_AT\",\"detail\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_AT\"},{\"id\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_MORTAR\",\"kind\":17,\"label\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_MORTAR\",\"documentation\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_MORTAR\",\"detail\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_MORTAR\"},{\"id\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_PIO\",\"kind\":17,\"label\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_PIO\",\"documentation\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_PIO\",\"detail\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_PIO\"},{\"id\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_UNLOCK\",\"detail\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_UPGRADE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_UPGRADE\",\"documentation\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_UPGRADE\",\"detail\":\"ABILITY.GERMAN.AMBUSH_CAMOUFLAGE_UPGRADE\"},{\"id\":\"ABILITY.GERMAN.ARMOR_COMMANDER\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ARMOR_COMMANDER\",\"documentation\":\"ABILITY.GERMAN.ARMOR_COMMANDER\",\"detail\":\"ABILITY.GERMAN.ARMOR_COMMANDER\"},{\"id\":\"ABILITY.GERMAN.ASSAULT_FIELD_OFFICER\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ASSAULT_FIELD_OFFICER\",\"documentation\":\"ABILITY.GERMAN.ASSAULT_FIELD_OFFICER\",\"detail\":\"ABILITY.GERMAN.ASSAULT_FIELD_OFFICER\"},{\"id\":\"ABILITY.GERMAN.ASSAULT_GRENADIER_GRENADE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ASSAULT_GRENADIER_GRENADE\",\"documentation\":\"ABILITY.GERMAN.ASSAULT_GRENADIER_GRENADE\",\"detail\":\"ABILITY.GERMAN.ASSAULT_GRENADIER_GRENADE\"},{\"id\":\"ABILITY.GERMAN.ASSAULT_GRENADIER_SPRINT_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ASSAULT_GRENADIER_SPRINT_MP\",\"documentation\":\"ABILITY.GERMAN.ASSAULT_GRENADIER_SPRINT_MP\",\"detail\":\"ABILITY.GERMAN.ASSAULT_GRENADIER_SPRINT_MP\"},{\"id\":\"ABILITY.GERMAN.ASSAULT_GRENADIERS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ASSAULT_GRENADIERS\",\"documentation\":\"ABILITY.GERMAN.ASSAULT_GRENADIERS\",\"detail\":\"ABILITY.GERMAN.ASSAULT_GRENADIERS\"},{\"id\":\"ABILITY.GERMAN.ASSAULT_OFFICER_INSPIRATION\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ASSAULT_OFFICER_INSPIRATION\",\"documentation\":\"ABILITY.GERMAN.ASSAULT_OFFICER_INSPIRATION\",\"detail\":\"ABILITY.GERMAN.ASSAULT_OFFICER_INSPIRATION\"},{\"id\":\"ABILITY.GERMAN.ASSAULT_OFFICER_INSPIRATION_VET3\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ASSAULT_OFFICER_INSPIRATION_VET3\",\"documentation\":\"ABILITY.GERMAN.ASSAULT_OFFICER_INSPIRATION_VET3\",\"detail\":\"ABILITY.GERMAN.ASSAULT_OFFICER_INSPIRATION_VET3\"},{\"id\":\"ABILITY.GERMAN.ASSAULT_OFFICER_VICTOR_TARGET\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ASSAULT_OFFICER_VICTOR_TARGET\",\"documentation\":\"ABILITY.GERMAN.ASSAULT_OFFICER_VICTOR_TARGET\",\"detail\":\"ABILITY.GERMAN.ASSAULT_OFFICER_VICTOR_TARGET\"},{\"id\":\"ABILITY.GERMAN.AXIS_SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.AXIS_SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\",\"documentation\":\"ABILITY.GERMAN.AXIS_SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\",\"detail\":\"ABILITY.GERMAN.AXIS_SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\"},{\"id\":\"ABILITY.GERMAN.BLINDING_GRENADE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.BLINDING_GRENADE\",\"documentation\":\"ABILITY.GERMAN.BLINDING_GRENADE\",\"detail\":\"ABILITY.GERMAN.BLINDING_GRENADE\"},{\"id\":\"ABILITY.GERMAN.BLINDING_GRENADES_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.BLINDING_GRENADES_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.BLINDING_GRENADES_UNLOCK\",\"detail\":\"ABILITY.GERMAN.BLINDING_GRENADES_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.BREAKTHROUGH\",\"kind\":17,\"label\":\"ABILITY.GERMAN.BREAKTHROUGH\",\"documentation\":\"ABILITY.GERMAN.BREAKTHROUGH\",\"detail\":\"ABILITY.GERMAN.BREAKTHROUGH\"},{\"id\":\"ABILITY.GERMAN.BRUMMBAR_BUNKER_BUSTER_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.BRUMMBAR_BUNKER_BUSTER_MP\",\"documentation\":\"ABILITY.GERMAN.BRUMMBAR_BUNKER_BUSTER_MP\",\"detail\":\"ABILITY.GERMAN.BRUMMBAR_BUNKER_BUSTER_MP\"},{\"id\":\"ABILITY.GERMAN.BRUMMBAR_CRITICAL_SHOTS_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.BRUMMBAR_CRITICAL_SHOTS_MP\",\"documentation\":\"ABILITY.GERMAN.BRUMMBAR_CRITICAL_SHOTS_MP\",\"detail\":\"ABILITY.GERMAN.BRUMMBAR_CRITICAL_SHOTS_MP\"},{\"id\":\"ABILITY.GERMAN.BRUMMBAR_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.BRUMMBAR_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.GERMAN.BRUMMBAR_HOLD_FIRE_MP\",\"detail\":\"ABILITY.GERMAN.BRUMMBAR_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.GERMAN.CAMOUFLAGE_NETS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.CAMOUFLAGE_NETS\",\"documentation\":\"ABILITY.GERMAN.CAMOUFLAGE_NETS\",\"detail\":\"ABILITY.GERMAN.CAMOUFLAGE_NETS\"},{\"id\":\"ABILITY.GERMAN.CAMOUFLAGE_NETS_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.CAMOUFLAGE_NETS_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.CAMOUFLAGE_NETS_UNLOCK\",\"detail\":\"ABILITY.GERMAN.CAMOUFLAGE_NETS_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.COMMAND_PANTHER_MARK_TARGET\",\"kind\":17,\"label\":\"ABILITY.GERMAN.COMMAND_PANTHER_MARK_TARGET\",\"documentation\":\"ABILITY.GERMAN.COMMAND_PANTHER_MARK_TARGET\",\"detail\":\"ABILITY.GERMAN.COMMAND_PANTHER_MARK_TARGET\"},{\"id\":\"ABILITY.GERMAN.CONVERT_TANK_WRECK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.CONVERT_TANK_WRECK\",\"documentation\":\"ABILITY.GERMAN.CONVERT_TANK_WRECK\",\"detail\":\"ABILITY.GERMAN.CONVERT_TANK_WRECK\"},{\"id\":\"ABILITY.GERMAN.CONVERT_TANK_WRECK_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.CONVERT_TANK_WRECK_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.CONVERT_TANK_WRECK_UNLOCK\",\"detail\":\"ABILITY.GERMAN.CONVERT_TANK_WRECK_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.COUNTERATTACK_TACTICS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.COUNTERATTACK_TACTICS\",\"documentation\":\"ABILITY.GERMAN.COUNTERATTACK_TACTICS\",\"detail\":\"ABILITY.GERMAN.COUNTERATTACK_TACTICS\"},{\"id\":\"ABILITY.GERMAN.CRUSH_THE_POCKET\",\"kind\":17,\"label\":\"ABILITY.GERMAN.CRUSH_THE_POCKET\",\"documentation\":\"ABILITY.GERMAN.CRUSH_THE_POCKET\",\"detail\":\"ABILITY.GERMAN.CRUSH_THE_POCKET\"},{\"id\":\"ABILITY.GERMAN.DEFENSIVE_FORTIFICATIONS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.DEFENSIVE_FORTIFICATIONS\",\"documentation\":\"ABILITY.GERMAN.DEFENSIVE_FORTIFICATIONS\",\"detail\":\"ABILITY.GERMAN.DEFENSIVE_FORTIFICATIONS\"},{\"id\":\"ABILITY.GERMAN.ELEFANT_CRITICAL_SHOTS_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ELEFANT_CRITICAL_SHOTS_MP\",\"documentation\":\"ABILITY.GERMAN.ELEFANT_CRITICAL_SHOTS_MP\",\"detail\":\"ABILITY.GERMAN.ELEFANT_CRITICAL_SHOTS_MP\"},{\"id\":\"ABILITY.GERMAN.ELEFANT_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ELEFANT_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.ELEFANT_UNLOCK\",\"detail\":\"ABILITY.GERMAN.ELEFANT_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.ELEPHANT_CONE_LOS_TOGGLE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ELEPHANT_CONE_LOS_TOGGLE_ABILITY\",\"documentation\":\"ABILITY.GERMAN.ELEPHANT_CONE_LOS_TOGGLE_ABILITY\",\"detail\":\"ABILITY.GERMAN.ELEPHANT_CONE_LOS_TOGGLE_ABILITY\"},{\"id\":\"ABILITY.GERMAN.ELEPHANT_CONE_LOS_TOGGLE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.ELEPHANT_CONE_LOS_TOGGLE_ABILITY_MP\",\"documentation\":\"ABILITY.GERMAN.ELEPHANT_CONE_LOS_TOGGLE_ABILITY_MP\",\"detail\":\"ABILITY.GERMAN.ELEPHANT_CONE_LOS_TOGGLE_ABILITY_MP\"},{\"id\":\"ABILITY.GERMAN.FAST_MARCH\",\"kind\":17,\"label\":\"ABILITY.GERMAN.FAST_MARCH\",\"documentation\":\"ABILITY.GERMAN.FAST_MARCH\",\"detail\":\"ABILITY.GERMAN.FAST_MARCH\"},{\"id\":\"ABILITY.GERMAN.FATALITY_PANZERWERFER_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.FATALITY_PANZERWERFER_BARRAGE\",\"documentation\":\"ABILITY.GERMAN.FATALITY_PANZERWERFER_BARRAGE\",\"detail\":\"ABILITY.GERMAN.FATALITY_PANZERWERFER_BARRAGE\"},{\"id\":\"ABILITY.GERMAN.FATALITY_SMOKE_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.FATALITY_SMOKE_BARRAGE\",\"documentation\":\"ABILITY.GERMAN.FATALITY_SMOKE_BARRAGE\",\"detail\":\"ABILITY.GERMAN.FATALITY_SMOKE_BARRAGE\"},{\"id\":\"ABILITY.GERMAN.FATALITY_STUKA_INCENDIARY_AIRSTRIKE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.FATALITY_STUKA_INCENDIARY_AIRSTRIKE\",\"documentation\":\"ABILITY.GERMAN.FATALITY_STUKA_INCENDIARY_AIRSTRIKE\",\"detail\":\"ABILITY.GERMAN.FATALITY_STUKA_INCENDIARY_AIRSTRIKE\"},{\"id\":\"ABILITY.GERMAN.FATALITY_STUKA_SMOKE_STRAFE_AIRSTRIKE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.FATALITY_STUKA_SMOKE_STRAFE_AIRSTRIKE\",\"documentation\":\"ABILITY.GERMAN.FATALITY_STUKA_SMOKE_STRAFE_AIRSTRIKE\",\"detail\":\"ABILITY.GERMAN.FATALITY_STUKA_SMOKE_STRAFE_AIRSTRIKE\"},{\"id\":\"ABILITY.GERMAN.FORWARD_REPAIR_STATION\",\"kind\":17,\"label\":\"ABILITY.GERMAN.FORWARD_REPAIR_STATION\",\"documentation\":\"ABILITY.GERMAN.FORWARD_REPAIR_STATION\",\"detail\":\"ABILITY.GERMAN.FORWARD_REPAIR_STATION\"},{\"id\":\"ABILITY.GERMAN.GERMAN_HQ_PIONEER_CALL_IN\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GERMAN_HQ_PIONEER_CALL_IN\",\"documentation\":\"ABILITY.GERMAN.GERMAN_HQ_PIONEER_CALL_IN\",\"detail\":\"ABILITY.GERMAN.GERMAN_HQ_PIONEER_CALL_IN\"},{\"id\":\"ABILITY.GERMAN.GERMAN_HULLDOWN_ABILITY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GERMAN_HULLDOWN_ABILITY\",\"documentation\":\"ABILITY.GERMAN.GERMAN_HULLDOWN_ABILITY\",\"detail\":\"ABILITY.GERMAN.GERMAN_HULLDOWN_ABILITY\"},{\"id\":\"ABILITY.GERMAN.GERMAN_HULLDOWN_DISABLE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GERMAN_HULLDOWN_DISABLE\",\"documentation\":\"ABILITY.GERMAN.GERMAN_HULLDOWN_DISABLE\",\"detail\":\"ABILITY.GERMAN.GERMAN_HULLDOWN_DISABLE\"},{\"id\":\"ABILITY.GERMAN.GERMAN_MORTAR_HOLD_FIRE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GERMAN_MORTAR_HOLD_FIRE\",\"documentation\":\"ABILITY.GERMAN.GERMAN_MORTAR_HOLD_FIRE\",\"detail\":\"ABILITY.GERMAN.GERMAN_MORTAR_HOLD_FIRE\"},{\"id\":\"ABILITY.GERMAN.GERMAN_MORTAR_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GERMAN_MORTAR_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.GERMAN.GERMAN_MORTAR_HOLD_FIRE_MP\",\"detail\":\"ABILITY.GERMAN.GERMAN_MORTAR_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY\",\"documentation\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY\",\"detail\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY\"},{\"id\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY_CONVOY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY_CONVOY\",\"documentation\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY_CONVOY\",\"detail\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY_CONVOY\"},{\"id\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY_MP\",\"documentation\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY_MP\",\"detail\":\"ABILITY.GERMAN.GERMAN_SALVAGE_ABILITY_MP\"},{\"id\":\"ABILITY.GERMAN.GERMAN_WARNING_SMOKE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GERMAN_WARNING_SMOKE\",\"documentation\":\"ABILITY.GERMAN.GERMAN_WARNING_SMOKE\",\"detail\":\"ABILITY.GERMAN.GERMAN_WARNING_SMOKE\"},{\"id\":\"ABILITY.GERMAN.GOLIATH_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GOLIATH_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"documentation\":\"ABILITY.GERMAN.GOLIATH_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"detail\":\"ABILITY.GERMAN.GOLIATH_IN_COVER_AUTO_CAMOUFLAGE_MP\"},{\"id\":\"ABILITY.GERMAN.GOLIATH_SELF_DESTRUCT_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GOLIATH_SELF_DESTRUCT_MP\",\"documentation\":\"ABILITY.GERMAN.GOLIATH_SELF_DESTRUCT_MP\",\"detail\":\"ABILITY.GERMAN.GOLIATH_SELF_DESTRUCT_MP\"},{\"id\":\"ABILITY.GERMAN.GRENADIER_ANTITANK_RIFLE_GRENADE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GRENADIER_ANTITANK_RIFLE_GRENADE_ABILITY\",\"documentation\":\"ABILITY.GERMAN.GRENADIER_ANTITANK_RIFLE_GRENADE_ABILITY\",\"detail\":\"ABILITY.GERMAN.GRENADIER_ANTITANK_RIFLE_GRENADE_ABILITY\"},{\"id\":\"ABILITY.GERMAN.GRENADIER_ANTITANK_RIFLE_GRENADE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GRENADIER_ANTITANK_RIFLE_GRENADE_ABILITY_MP\",\"documentation\":\"ABILITY.GERMAN.GRENADIER_ANTITANK_RIFLE_GRENADE_ABILITY_MP\",\"detail\":\"ABILITY.GERMAN.GRENADIER_ANTITANK_RIFLE_GRENADE_ABILITY_MP\"},{\"id\":\"ABILITY.GERMAN.GRENADIER_PANZERFAUST\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GRENADIER_PANZERFAUST\",\"documentation\":\"ABILITY.GERMAN.GRENADIER_PANZERFAUST\",\"detail\":\"ABILITY.GERMAN.GRENADIER_PANZERFAUST\"},{\"id\":\"ABILITY.GERMAN.GRENADIER_PANZERFAUST_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GRENADIER_PANZERFAUST_MP\",\"documentation\":\"ABILITY.GERMAN.GRENADIER_PANZERFAUST_MP\",\"detail\":\"ABILITY.GERMAN.GRENADIER_PANZERFAUST_MP\"},{\"id\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY\",\"documentation\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY\",\"detail\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY\"},{\"id\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY_MP\",\"documentation\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY_MP\",\"detail\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY_MP\"},{\"id\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY_TUTORIAL\",\"kind\":17,\"label\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY_TUTORIAL\",\"documentation\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY_TUTORIAL\",\"detail\":\"ABILITY.GERMAN.GRENADIER_RIFLE_GRENADE_ABILITY_TUTORIAL\"},{\"id\":\"ABILITY.GERMAN.HALFTRACK_INCENDIARY_MORTAR_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HALFTRACK_INCENDIARY_MORTAR_BARRAGE\",\"documentation\":\"ABILITY.GERMAN.HALFTRACK_INCENDIARY_MORTAR_BARRAGE\",\"detail\":\"ABILITY.GERMAN.HALFTRACK_INCENDIARY_MORTAR_BARRAGE\"},{\"id\":\"ABILITY.GERMAN.HALFTRACK_INCENDIARY_MORTAR_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HALFTRACK_INCENDIARY_MORTAR_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.HALFTRACK_INCENDIARY_MORTAR_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.HALFTRACK_INCENDIARY_MORTAR_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_BARRAGE\",\"documentation\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_BARRAGE\",\"detail\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_BARRAGE\"},{\"id\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_VICTORTARGET_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_VICTORTARGET_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_VICTORTARGET_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.HALFTRACK_MORTAR_VICTORTARGET_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.HALFTRACK_SMOKE_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HALFTRACK_SMOKE_BARRAGE\",\"documentation\":\"ABILITY.GERMAN.HALFTRACK_SMOKE_BARRAGE\",\"detail\":\"ABILITY.GERMAN.HALFTRACK_SMOKE_BARRAGE\"},{\"id\":\"ABILITY.GERMAN.HALFTRACK_SMOKE_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HALFTRACK_SMOKE_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.HALFTRACK_SMOKE_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.HALFTRACK_SMOKE_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.HEAVY_AT_MINE_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HEAVY_AT_MINE_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.HEAVY_AT_MINE_UNLOCK\",\"detail\":\"ABILITY.GERMAN.HEAVY_AT_MINE_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_ABILITY\",\"documentation\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_ABILITY\",\"detail\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_ABILITY\"},{\"id\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_VET3_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_VET3_ABILITY_MP\",\"documentation\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_VET3_ABILITY_MP\",\"detail\":\"ABILITY.GERMAN.HOWITZER_105MM_BARRAGE_VET3_ABILITY_MP\"},{\"id\":\"ABILITY.GERMAN.HOWITZER_105MM_EMPLACEMENT_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HOWITZER_105MM_EMPLACEMENT_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.HOWITZER_105MM_EMPLACEMENT_UNLOCK\",\"detail\":\"ABILITY.GERMAN.HOWITZER_105MM_EMPLACEMENT_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.HOWITZER_105MM_VICTORTARGET_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HOWITZER_105MM_VICTORTARGET_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.GERMAN.HOWITZER_105MM_VICTORTARGET_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.GERMAN.HOWITZER_105MM_VICTORTARGET_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.GERMAN.HOWITZER_COUNTER_BARRAGE_ATTACK_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HOWITZER_COUNTER_BARRAGE_ATTACK_MP\",\"documentation\":\"ABILITY.GERMAN.HOWITZER_COUNTER_BARRAGE_ATTACK_MP\",\"detail\":\"ABILITY.GERMAN.HOWITZER_COUNTER_BARRAGE_ATTACK_MP\"},{\"id\":\"ABILITY.GERMAN.HOWITZER_COUNTER_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HOWITZER_COUNTER_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.HOWITZER_COUNTER_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.HOWITZER_COUNTER_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.HOWITZER_DEFAULT_REFACE_ACTION\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HOWITZER_DEFAULT_REFACE_ACTION\",\"documentation\":\"ABILITY.GERMAN.HOWITZER_DEFAULT_REFACE_ACTION\",\"detail\":\"ABILITY.GERMAN.HOWITZER_DEFAULT_REFACE_ACTION\"},{\"id\":\"ABILITY.GERMAN.HULL_DOWN_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.HULL_DOWN_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.HULL_DOWN_UNLOCK\",\"detail\":\"ABILITY.GERMAN.HULL_DOWN_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.INFANTRY_MEDKITS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.INFANTRY_MEDKITS\",\"documentation\":\"ABILITY.GERMAN.INFANTRY_MEDKITS\",\"detail\":\"ABILITY.GERMAN.INFANTRY_MEDKITS\"},{\"id\":\"ABILITY.GERMAN.INFANTRY_MEDKITS_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.INFANTRY_MEDKITS_MP\",\"documentation\":\"ABILITY.GERMAN.INFANTRY_MEDKITS_MP\",\"detail\":\"ABILITY.GERMAN.INFANTRY_MEDKITS_MP\"},{\"id\":\"ABILITY.GERMAN.JAEGER_INFANTRY_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.JAEGER_INFANTRY_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.JAEGER_INFANTRY_UNLOCK\",\"detail\":\"ABILITY.GERMAN.JAEGER_INFANTRY_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.JAEGER_INTERROGATION\",\"kind\":17,\"label\":\"ABILITY.GERMAN.JAEGER_INTERROGATION\",\"documentation\":\"ABILITY.GERMAN.JAEGER_INTERROGATION\",\"detail\":\"ABILITY.GERMAN.JAEGER_INTERROGATION\"},{\"id\":\"ABILITY.GERMAN.LAY_HEAVY_AT_MINE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.LAY_HEAVY_AT_MINE\",\"documentation\":\"ABILITY.GERMAN.LAY_HEAVY_AT_MINE\",\"detail\":\"ABILITY.GERMAN.LAY_HEAVY_AT_MINE\"},{\"id\":\"ABILITY.GERMAN.LIGHT_SUPPORT_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.LIGHT_SUPPORT_ARTILLERY\",\"documentation\":\"ABILITY.GERMAN.LIGHT_SUPPORT_ARTILLERY\",\"detail\":\"ABILITY.GERMAN.LIGHT_SUPPORT_ARTILLERY\"},{\"id\":\"ABILITY.GERMAN.MECHANIZED_ASSAULT_GROUP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MECHANIZED_ASSAULT_GROUP\",\"documentation\":\"ABILITY.GERMAN.MECHANIZED_ASSAULT_GROUP\",\"detail\":\"ABILITY.GERMAN.MECHANIZED_ASSAULT_GROUP\"},{\"id\":\"ABILITY.GERMAN.MECHANIZED_GRENADIER_GROUP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MECHANIZED_GRENADIER_GROUP\",\"documentation\":\"ABILITY.GERMAN.MECHANIZED_GRENADIER_GROUP\",\"detail\":\"ABILITY.GERMAN.MECHANIZED_GRENADIER_GROUP\"},{\"id\":\"ABILITY.GERMAN.MG42_CAMO_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MG42_CAMO_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.GERMAN.MG42_CAMO_HOLD_FIRE_MP\",\"detail\":\"ABILITY.GERMAN.MG42_CAMO_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.GERMAN.MG42_PHOSPHORUS_ROUNDS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MG42_PHOSPHORUS_ROUNDS\",\"documentation\":\"ABILITY.GERMAN.MG42_PHOSPHORUS_ROUNDS\",\"detail\":\"ABILITY.GERMAN.MG42_PHOSPHORUS_ROUNDS\"},{\"id\":\"ABILITY.GERMAN.MG42_PHOSPHORUS_ROUNDS_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MG42_PHOSPHORUS_ROUNDS_MP\",\"documentation\":\"ABILITY.GERMAN.MG42_PHOSPHORUS_ROUNDS_MP\",\"detail\":\"ABILITY.GERMAN.MG42_PHOSPHORUS_ROUNDS_MP\"},{\"id\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_ATTACK_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_ATTACK_MP\",\"documentation\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_ATTACK_MP\",\"detail\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_ATTACK_MP\"},{\"id\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_WEAPON_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_WEAPON_MP\",\"documentation\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_WEAPON_MP\",\"detail\":\"ABILITY.GERMAN.MORTAR_COUNTER_BARRAGE_WEAPON_MP\"},{\"id\":\"ABILITY.GERMAN.MORTAR_HALFTRACK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MORTAR_HALFTRACK\",\"documentation\":\"ABILITY.GERMAN.MORTAR_HALFTRACK\",\"detail\":\"ABILITY.GERMAN.MORTAR_HALFTRACK\"},{\"id\":\"ABILITY.GERMAN.MORTAR_INCENDIARY_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MORTAR_INCENDIARY_BARRAGE\",\"documentation\":\"ABILITY.GERMAN.MORTAR_INCENDIARY_BARRAGE\",\"detail\":\"ABILITY.GERMAN.MORTAR_INCENDIARY_BARRAGE\"},{\"id\":\"ABILITY.GERMAN.MORTAR_TEAM_INCENDIARY_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MORTAR_TEAM_INCENDIARY_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.MORTAR_TEAM_INCENDIARY_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.MORTAR_TEAM_INCENDIARY_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_BARRAGE\",\"documentation\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_BARRAGE\",\"detail\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_BARRAGE\"},{\"id\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_VICTORTARGET_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_VICTORTARGET_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_VICTORTARGET_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.MORTAR_TEAM_MORTAR_VICTORTARGET_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.MORTAR_TEAM_SMOKE_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MORTAR_TEAM_SMOKE_BARRAGE\",\"documentation\":\"ABILITY.GERMAN.MORTAR_TEAM_SMOKE_BARRAGE\",\"detail\":\"ABILITY.GERMAN.MORTAR_TEAM_SMOKE_BARRAGE\"},{\"id\":\"ABILITY.GERMAN.MORTAR_TEAM_SMOKE_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MORTAR_TEAM_SMOKE_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.MORTAR_TEAM_SMOKE_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.MORTAR_TEAM_SMOKE_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.MUNITIONS_BLITZ\",\"kind\":17,\"label\":\"ABILITY.GERMAN.MUNITIONS_BLITZ\",\"documentation\":\"ABILITY.GERMAN.MUNITIONS_BLITZ\",\"detail\":\"ABILITY.GERMAN.MUNITIONS_BLITZ\"},{\"id\":\"ABILITY.GERMAN.OFFICER_SMOKE_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.OFFICER_SMOKE_ARTILLERY\",\"documentation\":\"ABILITY.GERMAN.OFFICER_SMOKE_ARTILLERY\",\"detail\":\"ABILITY.GERMAN.OFFICER_SMOKE_ARTILLERY\"},{\"id\":\"ABILITY.GERMAN.OPEL_SUPPLY_TERRITORY_CHECK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.OPEL_SUPPLY_TERRITORY_CHECK\",\"documentation\":\"ABILITY.GERMAN.OPEL_SUPPLY_TERRITORY_CHECK\",\"detail\":\"ABILITY.GERMAN.OPEL_SUPPLY_TERRITORY_CHECK\"},{\"id\":\"ABILITY.GERMAN.OSTRUPPEN\",\"kind\":17,\"label\":\"ABILITY.GERMAN.OSTRUPPEN\",\"documentation\":\"ABILITY.GERMAN.OSTRUPPEN\",\"detail\":\"ABILITY.GERMAN.OSTRUPPEN\"},{\"id\":\"ABILITY.GERMAN.OSTRUPPEN_COVER_BONUS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.OSTRUPPEN_COVER_BONUS\",\"documentation\":\"ABILITY.GERMAN.OSTRUPPEN_COVER_BONUS\",\"detail\":\"ABILITY.GERMAN.OSTRUPPEN_COVER_BONUS\"},{\"id\":\"ABILITY.GERMAN.OSTRUPPEN_RESERVES\",\"kind\":17,\"label\":\"ABILITY.GERMAN.OSTRUPPEN_RESERVES\",\"documentation\":\"ABILITY.GERMAN.OSTRUPPEN_RESERVES\",\"detail\":\"ABILITY.GERMAN.OSTRUPPEN_RESERVES\"},{\"id\":\"ABILITY.GERMAN.PAK_43_EMPLACEMENT_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PAK_43_EMPLACEMENT_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.PAK_43_EMPLACEMENT_UNLOCK\",\"detail\":\"ABILITY.GERMAN.PAK_43_EMPLACEMENT_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.PAK40_CRITICAL_SHOTS_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PAK40_CRITICAL_SHOTS_MP\",\"documentation\":\"ABILITY.GERMAN.PAK40_CRITICAL_SHOTS_MP\",\"detail\":\"ABILITY.GERMAN.PAK40_CRITICAL_SHOTS_MP\"},{\"id\":\"ABILITY.GERMAN.PAK40_TARGET_WEAK_POINT_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PAK40_TARGET_WEAK_POINT_MP\",\"documentation\":\"ABILITY.GERMAN.PAK40_TARGET_WEAK_POINT_MP\",\"detail\":\"ABILITY.GERMAN.PAK40_TARGET_WEAK_POINT_MP\"},{\"id\":\"ABILITY.GERMAN.PAK43_CRITICAL_SHOTS_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PAK43_CRITICAL_SHOTS_MP\",\"documentation\":\"ABILITY.GERMAN.PAK43_CRITICAL_SHOTS_MP\",\"detail\":\"ABILITY.GERMAN.PAK43_CRITICAL_SHOTS_MP\"},{\"id\":\"ABILITY.GERMAN.PAK43_TARGET_WEAK_POINT_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PAK43_TARGET_WEAK_POINT_MP\",\"documentation\":\"ABILITY.GERMAN.PAK43_TARGET_WEAK_POINT_MP\",\"detail\":\"ABILITY.GERMAN.PAK43_TARGET_WEAK_POINT_MP\"},{\"id\":\"ABILITY.GERMAN.PANTHER_TIGER_BLITZKRIEG_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANTHER_TIGER_BLITZKRIEG_MP\",\"documentation\":\"ABILITY.GERMAN.PANTHER_TIGER_BLITZKRIEG_MP\",\"detail\":\"ABILITY.GERMAN.PANTHER_TIGER_BLITZKRIEG_MP\"},{\"id\":\"ABILITY.GERMAN.PANZER_COMMANDER_AURA_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_COMMANDER_AURA_MP\",\"documentation\":\"ABILITY.GERMAN.PANZER_COMMANDER_AURA_MP\",\"detail\":\"ABILITY.GERMAN.PANZER_COMMANDER_AURA_MP\"},{\"id\":\"ABILITY.GERMAN.PANZER_DEFENSIVE_SMOKE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_DEFENSIVE_SMOKE\",\"documentation\":\"ABILITY.GERMAN.PANZER_DEFENSIVE_SMOKE\",\"detail\":\"ABILITY.GERMAN.PANZER_DEFENSIVE_SMOKE\"},{\"id\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_CAMPAIGN\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_CAMPAIGN\",\"documentation\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_CAMPAIGN\",\"detail\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_CAMPAIGN\"},{\"id\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_GRENADE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_GRENADE\",\"documentation\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_GRENADE\",\"detail\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_GRENADE\"},{\"id\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_GRENADE_MP\",\"documentation\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_GRENADE_MP\",\"detail\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_GRENADE_MP\"},{\"id\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_TUTORIAL\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_TUTORIAL\",\"documentation\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_TUTORIAL\",\"detail\":\"ABILITY.GERMAN.PANZER_GRENADIER_BUNDLED_TUTORIAL\"},{\"id\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_DEFENSIVE_SMOKE_TOW\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_DEFENSIVE_SMOKE_TOW\",\"documentation\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_DEFENSIVE_SMOKE_TOW\",\"detail\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_DEFENSIVE_SMOKE_TOW\"},{\"id\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG\",\"documentation\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG\",\"detail\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG\"},{\"id\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG_MP\",\"documentation\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG_MP\",\"detail\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG_MP\"},{\"id\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG_TOW\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG_TOW\",\"documentation\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG_TOW\",\"detail\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_BLITZKRIEG_TOW\"},{\"id\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_FLARES_ABILITY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_FLARES_ABILITY\",\"documentation\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_FLARES_ABILITY\",\"detail\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_FLARES_ABILITY\"},{\"id\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_REPAIR_TOW\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_REPAIR_TOW\",\"documentation\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_REPAIR_TOW\",\"detail\":\"ABILITY.GERMAN.PANZER_PANTHER_TIGER_OSTWIND_REPAIR_TOW\"},{\"id\":\"ABILITY.GERMAN.PANZER_TACTICIAN_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZER_TACTICIAN_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.PANZER_TACTICIAN_UNLOCK\",\"detail\":\"ABILITY.GERMAN.PANZER_TACTICIAN_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.PANZERWERFER_COUNTER_BARRAGE_ATTACK_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZERWERFER_COUNTER_BARRAGE_ATTACK_MP\",\"documentation\":\"ABILITY.GERMAN.PANZERWERFER_COUNTER_BARRAGE_ATTACK_MP\",\"detail\":\"ABILITY.GERMAN.PANZERWERFER_COUNTER_BARRAGE_ATTACK_MP\"},{\"id\":\"ABILITY.GERMAN.PANZERWERFER_COUNTER_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZERWERFER_COUNTER_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.PANZERWERFER_COUNTER_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.PANZERWERFER_COUNTER_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_BARRAGE\",\"documentation\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_BARRAGE\",\"detail\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_BARRAGE\"},{\"id\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_VICTORTARGET_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_VICTORTARGET_BARRAGE_MP\",\"documentation\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_VICTORTARGET_BARRAGE_MP\",\"detail\":\"ABILITY.GERMAN.PANZERWERFER_ROCKET_VICTORTARGET_BARRAGE_MP\"},{\"id\":\"ABILITY.GERMAN.PIONEER_BARBED_WIRE_CUTTING_ABILITY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PIONEER_BARBED_WIRE_CUTTING_ABILITY\",\"documentation\":\"ABILITY.GERMAN.PIONEER_BARBED_WIRE_CUTTING_ABILITY\",\"detail\":\"ABILITY.GERMAN.PIONEER_BARBED_WIRE_CUTTING_ABILITY\"},{\"id\":\"ABILITY.GERMAN.PIONEER_BARBED_WIRE_CUTTING_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PIONEER_BARBED_WIRE_CUTTING_ABILITY_MP\",\"documentation\":\"ABILITY.GERMAN.PIONEER_BARBED_WIRE_CUTTING_ABILITY_MP\",\"detail\":\"ABILITY.GERMAN.PIONEER_BARBED_WIRE_CUTTING_ABILITY_MP\"},{\"id\":\"ABILITY.GERMAN.PIONEER_FLAMETHROWER\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PIONEER_FLAMETHROWER\",\"documentation\":\"ABILITY.GERMAN.PIONEER_FLAMETHROWER\",\"detail\":\"ABILITY.GERMAN.PIONEER_FLAMETHROWER\"},{\"id\":\"ABILITY.GERMAN.PUMA_CRITICAL_SHOTS_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PUMA_CRITICAL_SHOTS_MP\",\"documentation\":\"ABILITY.GERMAN.PUMA_CRITICAL_SHOTS_MP\",\"detail\":\"ABILITY.GERMAN.PUMA_CRITICAL_SHOTS_MP\"},{\"id\":\"ABILITY.GERMAN.PUMA_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.GERMAN.PUMA_DISPATCH\",\"documentation\":\"ABILITY.GERMAN.PUMA_DISPATCH\",\"detail\":\"ABILITY.GERMAN.PUMA_DISPATCH\"},{\"id\":\"ABILITY.GERMAN.RAILWAY_GUN_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.RAILWAY_GUN_ARTILLERY\",\"documentation\":\"ABILITY.GERMAN.RAILWAY_GUN_ARTILLERY\",\"detail\":\"ABILITY.GERMAN.RAILWAY_GUN_ARTILLERY\"},{\"id\":\"ABILITY.GERMAN.REDISTRIBUTE_RESOURCES\",\"kind\":17,\"label\":\"ABILITY.GERMAN.REDISTRIBUTE_RESOURCES\",\"documentation\":\"ABILITY.GERMAN.REDISTRIBUTE_RESOURCES\",\"detail\":\"ABILITY.GERMAN.REDISTRIBUTE_RESOURCES\"},{\"id\":\"ABILITY.GERMAN.RELIEF_INFANTRY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.RELIEF_INFANTRY\",\"documentation\":\"ABILITY.GERMAN.RELIEF_INFANTRY\",\"detail\":\"ABILITY.GERMAN.RELIEF_INFANTRY\"},{\"id\":\"ABILITY.GERMAN.REMOVE_AMBUSH_CAMOUFLAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.REMOVE_AMBUSH_CAMOUFLAGE\",\"documentation\":\"ABILITY.GERMAN.REMOVE_AMBUSH_CAMOUFLAGE\",\"detail\":\"ABILITY.GERMAN.REMOVE_AMBUSH_CAMOUFLAGE\"},{\"id\":\"ABILITY.GERMAN.RESOURCE_REQUISITION\",\"kind\":17,\"label\":\"ABILITY.GERMAN.RESOURCE_REQUISITION\",\"documentation\":\"ABILITY.GERMAN.RESOURCE_REQUISITION\",\"detail\":\"ABILITY.GERMAN.RESOURCE_REQUISITION\"},{\"id\":\"ABILITY.GERMAN.RETREAT_TO_FORWARD_HQ\",\"kind\":17,\"label\":\"ABILITY.GERMAN.RETREAT_TO_FORWARD_HQ\",\"documentation\":\"ABILITY.GERMAN.RETREAT_TO_FORWARD_HQ\",\"detail\":\"ABILITY.GERMAN.RETREAT_TO_FORWARD_HQ\"},{\"id\":\"ABILITY.GERMAN.SCOUT_CAR_HALFTRACK_INFANTRY_AWARENESS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.SCOUT_CAR_HALFTRACK_INFANTRY_AWARENESS\",\"documentation\":\"ABILITY.GERMAN.SCOUT_CAR_HALFTRACK_INFANTRY_AWARENESS\",\"detail\":\"ABILITY.GERMAN.SCOUT_CAR_HALFTRACK_INFANTRY_AWARENESS\"},{\"id\":\"ABILITY.GERMAN.SCOUT_CAR_HALFTRACK_INFANTRY_AWARENESS_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.SCOUT_CAR_HALFTRACK_INFANTRY_AWARENESS_MP\",\"documentation\":\"ABILITY.GERMAN.SCOUT_CAR_HALFTRACK_INFANTRY_AWARENESS_MP\",\"detail\":\"ABILITY.GERMAN.SCOUT_CAR_HALFTRACK_INFANTRY_AWARENESS_MP\"},{\"id\":\"ABILITY.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\",\"documentation\":\"ABILITY.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\",\"detail\":\"ABILITY.GERMAN.SDKFZ_221_LIGHT_AT_HALFTRACK\"},{\"id\":\"ABILITY.GERMAN.SECTOR_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.SECTOR_ARTILLERY\",\"documentation\":\"ABILITY.GERMAN.SECTOR_ARTILLERY\",\"detail\":\"ABILITY.GERMAN.SECTOR_ARTILLERY\"},{\"id\":\"ABILITY.GERMAN.SNIPER_INCENDIARY_ROUND_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.SNIPER_INCENDIARY_ROUND_MP\",\"documentation\":\"ABILITY.GERMAN.SNIPER_INCENDIARY_ROUND_MP\",\"detail\":\"ABILITY.GERMAN.SNIPER_INCENDIARY_ROUND_MP\"},{\"id\":\"ABILITY.GERMAN.SPRINT\",\"kind\":17,\"label\":\"ABILITY.GERMAN.SPRINT\",\"documentation\":\"ABILITY.GERMAN.SPRINT\",\"detail\":\"ABILITY.GERMAN.SPRINT\"},{\"id\":\"ABILITY.GERMAN.STATIONARY_LOS_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STATIONARY_LOS_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.STATIONARY_LOS_UNLOCK\",\"detail\":\"ABILITY.GERMAN.STATIONARY_LOS_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.STORMTROOPER_ASSAULT_AMBUSH_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STORMTROOPER_ASSAULT_AMBUSH_MP\",\"documentation\":\"ABILITY.GERMAN.STORMTROOPER_ASSAULT_AMBUSH_MP\",\"detail\":\"ABILITY.GERMAN.STORMTROOPER_ASSAULT_AMBUSH_MP\"},{\"id\":\"ABILITY.GERMAN.STORMTROOPER_SPRINT_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STORMTROOPER_SPRINT_MP\",\"documentation\":\"ABILITY.GERMAN.STORMTROOPER_SPRINT_MP\",\"detail\":\"ABILITY.GERMAN.STORMTROOPER_SPRINT_MP\"},{\"id\":\"ABILITY.GERMAN.STORMTROOPER_TANK_DETECTION_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STORMTROOPER_TANK_DETECTION_MP\",\"documentation\":\"ABILITY.GERMAN.STORMTROOPER_TANK_DETECTION_MP\",\"detail\":\"ABILITY.GERMAN.STORMTROOPER_TANK_DETECTION_MP\"},{\"id\":\"ABILITY.GERMAN.STORMTROOPERS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STORMTROOPERS\",\"documentation\":\"ABILITY.GERMAN.STORMTROOPERS\",\"detail\":\"ABILITY.GERMAN.STORMTROOPERS\"},{\"id\":\"ABILITY.GERMAN.STRATEGIC_BOMBING\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STRATEGIC_BOMBING\",\"documentation\":\"ABILITY.GERMAN.STRATEGIC_BOMBING\",\"detail\":\"ABILITY.GERMAN.STRATEGIC_BOMBING\"},{\"id\":\"ABILITY.GERMAN.STUG_CRITICAL_SHOTS_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUG_CRITICAL_SHOTS_MP\",\"documentation\":\"ABILITY.GERMAN.STUG_CRITICAL_SHOTS_MP\",\"detail\":\"ABILITY.GERMAN.STUG_CRITICAL_SHOTS_MP\"},{\"id\":\"ABILITY.GERMAN.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOTS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOTS\",\"documentation\":\"ABILITY.GERMAN.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOTS\",\"detail\":\"ABILITY.GERMAN.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOTS\"},{\"id\":\"ABILITY.GERMAN.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOTS_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOTS_MP\",\"documentation\":\"ABILITY.GERMAN.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOTS_MP\",\"detail\":\"ABILITY.GERMAN.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOTS_MP\"},{\"id\":\"ABILITY.GERMAN.STUG_III_E\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUG_III_E\",\"documentation\":\"ABILITY.GERMAN.STUG_III_E\",\"detail\":\"ABILITY.GERMAN.STUG_III_E\"},{\"id\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_CLOSE_AIR_SUPPORT\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_CLOSE_AIR_SUPPORT\",\"documentation\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_CLOSE_AIR_SUPPORT\",\"detail\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_CLOSE_AIR_SUPPORT\"},{\"id\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_RECON\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_RECON\",\"documentation\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_RECON\",\"detail\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_RECON\"},{\"id\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_STRAFING_RUN\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_STRAFING_RUN\",\"documentation\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_STRAFING_RUN\",\"detail\":\"ABILITY.GERMAN.STUKA_AERIAL_SUPERIORITY_STRAFING_RUN\"},{\"id\":\"ABILITY.GERMAN.STUKA_AIR_RECON\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_AIR_RECON\",\"documentation\":\"ABILITY.GERMAN.STUKA_AIR_RECON\",\"detail\":\"ABILITY.GERMAN.STUKA_AIR_RECON\"},{\"id\":\"ABILITY.GERMAN.STUKA_BOMBING_RUN_SP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_BOMBING_RUN_SP\",\"documentation\":\"ABILITY.GERMAN.STUKA_BOMBING_RUN_SP\",\"detail\":\"ABILITY.GERMAN.STUKA_BOMBING_RUN_SP\"},{\"id\":\"ABILITY.GERMAN.STUKA_BOMBING_STRIKE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_BOMBING_STRIKE\",\"documentation\":\"ABILITY.GERMAN.STUKA_BOMBING_STRIKE\",\"detail\":\"ABILITY.GERMAN.STUKA_BOMBING_STRIKE\"},{\"id\":\"ABILITY.GERMAN.STUKA_BOMBING_STRIKE_TOW\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_BOMBING_STRIKE_TOW\",\"documentation\":\"ABILITY.GERMAN.STUKA_BOMBING_STRIKE_TOW\",\"detail\":\"ABILITY.GERMAN.STUKA_BOMBING_STRIKE_TOW\"},{\"id\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_M06\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_M06\",\"documentation\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_M06\",\"detail\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_M06\"},{\"id\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_M06_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_M06_MP\",\"documentation\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_M06_MP\",\"detail\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_M06_MP\"},{\"id\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_SUPPORT\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_SUPPORT\",\"documentation\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_SUPPORT\",\"detail\":\"ABILITY.GERMAN.STUKA_CLOSE_AIR_SUPPORT\"},{\"id\":\"ABILITY.GERMAN.STUKA_FRAGMENTATION_BOMB\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_FRAGMENTATION_BOMB\",\"documentation\":\"ABILITY.GERMAN.STUKA_FRAGMENTATION_BOMB\",\"detail\":\"ABILITY.GERMAN.STUKA_FRAGMENTATION_BOMB\"},{\"id\":\"ABILITY.GERMAN.STUKA_INCENDIARY_BOMBS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_INCENDIARY_BOMBS\",\"documentation\":\"ABILITY.GERMAN.STUKA_INCENDIARY_BOMBS\",\"detail\":\"ABILITY.GERMAN.STUKA_INCENDIARY_BOMBS\"},{\"id\":\"ABILITY.GERMAN.STUKA_SMOKE_BOMB\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_SMOKE_BOMB\",\"documentation\":\"ABILITY.GERMAN.STUKA_SMOKE_BOMB\",\"detail\":\"ABILITY.GERMAN.STUKA_SMOKE_BOMB\"},{\"id\":\"ABILITY.GERMAN.STUKA_STRAFING_RUN\",\"kind\":17,\"label\":\"ABILITY.GERMAN.STUKA_STRAFING_RUN\",\"documentation\":\"ABILITY.GERMAN.STUKA_STRAFING_RUN\",\"detail\":\"ABILITY.GERMAN.STUKA_STRAFING_RUN\"},{\"id\":\"ABILITY.GERMAN.SUPPLY_BREAK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.SUPPLY_BREAK\",\"documentation\":\"ABILITY.GERMAN.SUPPLY_BREAK\",\"detail\":\"ABILITY.GERMAN.SUPPLY_BREAK\"},{\"id\":\"ABILITY.GERMAN.SUPPLY_TRUCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.SUPPLY_TRUCK\",\"documentation\":\"ABILITY.GERMAN.SUPPLY_TRUCK\",\"detail\":\"ABILITY.GERMAN.SUPPLY_TRUCK\"},{\"id\":\"ABILITY.GERMAN.SUPPLY_TRUCK_LOCKDOWN\",\"kind\":17,\"label\":\"ABILITY.GERMAN.SUPPLY_TRUCK_LOCKDOWN\",\"documentation\":\"ABILITY.GERMAN.SUPPLY_TRUCK_LOCKDOWN\",\"detail\":\"ABILITY.GERMAN.SUPPLY_TRUCK_LOCKDOWN\"},{\"id\":\"ABILITY.GERMAN.SUPPORT_TEAM_AMBUSH_CAMOUFLAGE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.SUPPORT_TEAM_AMBUSH_CAMOUFLAGE\",\"documentation\":\"ABILITY.GERMAN.SUPPORT_TEAM_AMBUSH_CAMOUFLAGE\",\"detail\":\"ABILITY.GERMAN.SUPPORT_TEAM_AMBUSH_CAMOUFLAGE\"},{\"id\":\"ABILITY.GERMAN.TANK_AWARENESS_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.TANK_AWARENESS_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.TANK_AWARENESS_UNLOCK\",\"detail\":\"ABILITY.GERMAN.TANK_AWARENESS_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.TANK_DETECTION_ABILITY_CONVOY\",\"kind\":17,\"label\":\"ABILITY.GERMAN.TANK_DETECTION_ABILITY_CONVOY\",\"documentation\":\"ABILITY.GERMAN.TANK_DETECTION_ABILITY_CONVOY\",\"detail\":\"ABILITY.GERMAN.TANK_DETECTION_ABILITY_CONVOY\"},{\"id\":\"ABILITY.GERMAN.TIGER_ACE_CRITICAL_SHOTS_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.TIGER_ACE_CRITICAL_SHOTS_MP\",\"documentation\":\"ABILITY.GERMAN.TIGER_ACE_CRITICAL_SHOTS_MP\",\"detail\":\"ABILITY.GERMAN.TIGER_ACE_CRITICAL_SHOTS_MP\"},{\"id\":\"ABILITY.GERMAN.TIGER_TANK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.TIGER_TANK\",\"documentation\":\"ABILITY.GERMAN.TIGER_TANK\",\"detail\":\"ABILITY.GERMAN.TIGER_TANK\"},{\"id\":\"ABILITY.GERMAN.TIGER_TANK_ACE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.TIGER_TANK_ACE\",\"documentation\":\"ABILITY.GERMAN.TIGER_TANK_ACE\",\"detail\":\"ABILITY.GERMAN.TIGER_TANK_ACE\"},{\"id\":\"ABILITY.GERMAN.TRENCH_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.GERMAN.TRENCH_UNLOCK\",\"documentation\":\"ABILITY.GERMAN.TRENCH_UNLOCK\",\"detail\":\"ABILITY.GERMAN.TRENCH_UNLOCK\"},{\"id\":\"ABILITY.GERMAN.TROOP_TRAINING\",\"kind\":17,\"label\":\"ABILITY.GERMAN.TROOP_TRAINING\",\"documentation\":\"ABILITY.GERMAN.TROOP_TRAINING\",\"detail\":\"ABILITY.GERMAN.TROOP_TRAINING\"},{\"id\":\"ABILITY.GERMAN.URBAN_ASSAULT_GRENADIERS\",\"kind\":17,\"label\":\"ABILITY.GERMAN.URBAN_ASSAULT_GRENADIERS\",\"documentation\":\"ABILITY.GERMAN.URBAN_ASSAULT_GRENADIERS\",\"detail\":\"ABILITY.GERMAN.URBAN_ASSAULT_GRENADIERS\"},{\"id\":\"ABILITY.GERMAN.URBAN_ASSAULT_SATCHEL_CHARGE_THROW_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.URBAN_ASSAULT_SATCHEL_CHARGE_THROW_ABILITY_MP\",\"documentation\":\"ABILITY.GERMAN.URBAN_ASSAULT_SATCHEL_CHARGE_THROW_ABILITY_MP\",\"detail\":\"ABILITY.GERMAN.URBAN_ASSAULT_SATCHEL_CHARGE_THROW_ABILITY_MP\"},{\"id\":\"ABILITY.GERMAN.URBAN_ASSAULT_SMOKE_GRENADE\",\"kind\":17,\"label\":\"ABILITY.GERMAN.URBAN_ASSAULT_SMOKE_GRENADE\",\"documentation\":\"ABILITY.GERMAN.URBAN_ASSAULT_SMOKE_GRENADE\",\"detail\":\"ABILITY.GERMAN.URBAN_ASSAULT_SMOKE_GRENADE\"},{\"id\":\"ABILITY.GERMAN.URBAN_ASSAULT_SMOKE_GRENADE_2\",\"kind\":17,\"label\":\"ABILITY.GERMAN.URBAN_ASSAULT_SMOKE_GRENADE_2\",\"documentation\":\"ABILITY.GERMAN.URBAN_ASSAULT_SMOKE_GRENADE_2\",\"detail\":\"ABILITY.GERMAN.URBAN_ASSAULT_SMOKE_GRENADE_2\"},{\"id\":\"ABILITY.GERMAN.WEHR_VEHICLE_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.GERMAN.WEHR_VEHICLE_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.GERMAN.WEHR_VEHICLE_HOLD_FIRE_MP\",\"detail\":\"ABILITY.GERMAN.WEHR_VEHICLE_HOLD_FIRE_MP\"},{\"id\":\"UPG.GERMAN.AERIAL_SUPERIORITY_RECON_PLANE\",\"kind\":17,\"label\":\"UPG.GERMAN.AERIAL_SUPERIORITY_RECON_PLANE\",\"documentation\":\"UPG.GERMAN.AERIAL_SUPERIORITY_RECON_PLANE\",\"detail\":\"UPG.GERMAN.AERIAL_SUPERIORITY_RECON_PLANE\"},{\"id\":\"UPG.GERMAN.AERIAL_SUPERIORITY_STUKA_CLOSE_AIR_SUPPORT\",\"kind\":17,\"label\":\"UPG.GERMAN.AERIAL_SUPERIORITY_STUKA_CLOSE_AIR_SUPPORT\",\"documentation\":\"UPG.GERMAN.AERIAL_SUPERIORITY_STUKA_CLOSE_AIR_SUPPORT\",\"detail\":\"UPG.GERMAN.AERIAL_SUPERIORITY_STUKA_CLOSE_AIR_SUPPORT\"},{\"id\":\"UPG.GERMAN.AERIAL_SUPERIORITY_STUKA_STRAFE\",\"kind\":17,\"label\":\"UPG.GERMAN.AERIAL_SUPERIORITY_STUKA_STRAFE\",\"documentation\":\"UPG.GERMAN.AERIAL_SUPERIORITY_STUKA_STRAFE\",\"detail\":\"UPG.GERMAN.AERIAL_SUPERIORITY_STUKA_STRAFE\"},{\"id\":\"UPG.GERMAN.AIR_DROP_MEDICAL_SUPPLIES\",\"kind\":17,\"label\":\"UPG.GERMAN.AIR_DROP_MEDICAL_SUPPLIES\",\"documentation\":\"UPG.GERMAN.AIR_DROP_MEDICAL_SUPPLIES\",\"detail\":\"UPG.GERMAN.AIR_DROP_MEDICAL_SUPPLIES\"},{\"id\":\"UPG.GERMAN.AIR_DROP_RESOURCES\",\"kind\":17,\"label\":\"UPG.GERMAN.AIR_DROP_RESOURCES\",\"documentation\":\"UPG.GERMAN.AIR_DROP_RESOURCES\",\"detail\":\"UPG.GERMAN.AIR_DROP_RESOURCES\"},{\"id\":\"UPG.GERMAN.AMBUSH_CAMOU_PACKAGE\",\"kind\":17,\"label\":\"UPG.GERMAN.AMBUSH_CAMOU_PACKAGE\",\"documentation\":\"UPG.GERMAN.AMBUSH_CAMOU_PACKAGE\",\"detail\":\"UPG.GERMAN.AMBUSH_CAMOU_PACKAGE\"},{\"id\":\"UPG.GERMAN.AMBUSH_CAMOUFLAGE\",\"kind\":17,\"label\":\"UPG.GERMAN.AMBUSH_CAMOUFLAGE\",\"documentation\":\"UPG.GERMAN.AMBUSH_CAMOUFLAGE\",\"detail\":\"UPG.GERMAN.AMBUSH_CAMOUFLAGE\"},{\"id\":\"UPG.GERMAN.ARMOR_COMMANDER\",\"kind\":17,\"label\":\"UPG.GERMAN.ARMOR_COMMANDER\",\"documentation\":\"UPG.GERMAN.ARMOR_COMMANDER\",\"detail\":\"UPG.GERMAN.ARMOR_COMMANDER\"},{\"id\":\"UPG.GERMAN.ASSAULT_ARCHETYPE\",\"kind\":17,\"label\":\"UPG.GERMAN.ASSAULT_ARCHETYPE\",\"documentation\":\"UPG.GERMAN.ASSAULT_ARCHETYPE\",\"detail\":\"UPG.GERMAN.ASSAULT_ARCHETYPE\"},{\"id\":\"UPG.GERMAN.ASSAULT_FIELD_OFFICER\",\"kind\":17,\"label\":\"UPG.GERMAN.ASSAULT_FIELD_OFFICER\",\"documentation\":\"UPG.GERMAN.ASSAULT_FIELD_OFFICER\",\"detail\":\"UPG.GERMAN.ASSAULT_FIELD_OFFICER\"},{\"id\":\"UPG.GERMAN.ASSAULT_GRENADIERS\",\"kind\":17,\"label\":\"UPG.GERMAN.ASSAULT_GRENADIERS\",\"documentation\":\"UPG.GERMAN.ASSAULT_GRENADIERS\",\"detail\":\"UPG.GERMAN.ASSAULT_GRENADIERS\"},{\"id\":\"UPG.GERMAN.BATTLE_PHASE_2\",\"kind\":17,\"label\":\"UPG.GERMAN.BATTLE_PHASE_2\",\"documentation\":\"UPG.GERMAN.BATTLE_PHASE_2\",\"detail\":\"UPG.GERMAN.BATTLE_PHASE_2\"},{\"id\":\"UPG.GERMAN.BATTLE_PHASE_2_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.BATTLE_PHASE_2_MP\",\"documentation\":\"UPG.GERMAN.BATTLE_PHASE_2_MP\",\"detail\":\"UPG.GERMAN.BATTLE_PHASE_2_MP\"},{\"id\":\"UPG.GERMAN.BATTLE_PHASE_3\",\"kind\":17,\"label\":\"UPG.GERMAN.BATTLE_PHASE_3\",\"documentation\":\"UPG.GERMAN.BATTLE_PHASE_3\",\"detail\":\"UPG.GERMAN.BATTLE_PHASE_3\"},{\"id\":\"UPG.GERMAN.BATTLE_PHASE_3_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.BATTLE_PHASE_3_MP\",\"documentation\":\"UPG.GERMAN.BATTLE_PHASE_3_MP\",\"detail\":\"UPG.GERMAN.BATTLE_PHASE_3_MP\"},{\"id\":\"UPG.GERMAN.BATTLE_PHASE_4\",\"kind\":17,\"label\":\"UPG.GERMAN.BATTLE_PHASE_4\",\"documentation\":\"UPG.GERMAN.BATTLE_PHASE_4\",\"detail\":\"UPG.GERMAN.BATTLE_PHASE_4\"},{\"id\":\"UPG.GERMAN.BATTLE_PHASE_4_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.BATTLE_PHASE_4_MP\",\"documentation\":\"UPG.GERMAN.BATTLE_PHASE_4_MP\",\"detail\":\"UPG.GERMAN.BATTLE_PHASE_4_MP\"},{\"id\":\"UPG.GERMAN.BLINDING_GRENADES\",\"kind\":17,\"label\":\"UPG.GERMAN.BLINDING_GRENADES\",\"documentation\":\"UPG.GERMAN.BLINDING_GRENADES\",\"detail\":\"UPG.GERMAN.BLINDING_GRENADES\"},{\"id\":\"UPG.GERMAN.BREAKTHROUGH\",\"kind\":17,\"label\":\"UPG.GERMAN.BREAKTHROUGH\",\"documentation\":\"UPG.GERMAN.BREAKTHROUGH\",\"detail\":\"UPG.GERMAN.BREAKTHROUGH\"},{\"id\":\"UPG.GERMAN.BRUMMBAR_TOP_GUNNER\",\"kind\":17,\"label\":\"UPG.GERMAN.BRUMMBAR_TOP_GUNNER\",\"documentation\":\"UPG.GERMAN.BRUMMBAR_TOP_GUNNER\",\"detail\":\"UPG.GERMAN.BRUMMBAR_TOP_GUNNER\"},{\"id\":\"UPG.GERMAN.BRUMMBAR_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.BRUMMBAR_TOP_GUNNER_MP\",\"documentation\":\"UPG.GERMAN.BRUMMBAR_TOP_GUNNER_MP\",\"detail\":\"UPG.GERMAN.BRUMMBAR_TOP_GUNNER_MP\"},{\"id\":\"UPG.GERMAN.BUNKER_COMMAND\",\"kind\":17,\"label\":\"UPG.GERMAN.BUNKER_COMMAND\",\"documentation\":\"UPG.GERMAN.BUNKER_COMMAND\",\"detail\":\"UPG.GERMAN.BUNKER_COMMAND\"},{\"id\":\"UPG.GERMAN.BUNKER_COMMAND_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.BUNKER_COMMAND_MP\",\"documentation\":\"UPG.GERMAN.BUNKER_COMMAND_MP\",\"detail\":\"UPG.GERMAN.BUNKER_COMMAND_MP\"},{\"id\":\"UPG.GERMAN.BUNKER_MEDIC_STATION\",\"kind\":17,\"label\":\"UPG.GERMAN.BUNKER_MEDIC_STATION\",\"documentation\":\"UPG.GERMAN.BUNKER_MEDIC_STATION\",\"detail\":\"UPG.GERMAN.BUNKER_MEDIC_STATION\"},{\"id\":\"UPG.GERMAN.BUNKER_MEDIC_STATION_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.BUNKER_MEDIC_STATION_MP\",\"documentation\":\"UPG.GERMAN.BUNKER_MEDIC_STATION_MP\",\"detail\":\"UPG.GERMAN.BUNKER_MEDIC_STATION_MP\"},{\"id\":\"UPG.GERMAN.BUNKER_MG42_ADDITION\",\"kind\":17,\"label\":\"UPG.GERMAN.BUNKER_MG42_ADDITION\",\"documentation\":\"UPG.GERMAN.BUNKER_MG42_ADDITION\",\"detail\":\"UPG.GERMAN.BUNKER_MG42_ADDITION\"},{\"id\":\"UPG.GERMAN.BUNKER_MG42_ADDITION_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.BUNKER_MG42_ADDITION_MP\",\"documentation\":\"UPG.GERMAN.BUNKER_MG42_ADDITION_MP\",\"detail\":\"UPG.GERMAN.BUNKER_MG42_ADDITION_MP\"},{\"id\":\"UPG.GERMAN.CAMOUFLAGE_NET_ACTIVATED\",\"kind\":17,\"label\":\"UPG.GERMAN.CAMOUFLAGE_NET_ACTIVATED\",\"documentation\":\"UPG.GERMAN.CAMOUFLAGE_NET_ACTIVATED\",\"detail\":\"UPG.GERMAN.CAMOUFLAGE_NET_ACTIVATED\"},{\"id\":\"UPG.GERMAN.CAMOUFLAGE_NETS\",\"kind\":17,\"label\":\"UPG.GERMAN.CAMOUFLAGE_NETS\",\"documentation\":\"UPG.GERMAN.CAMOUFLAGE_NETS\",\"detail\":\"UPG.GERMAN.CAMOUFLAGE_NETS\"},{\"id\":\"UPG.GERMAN.CAN_CAMOUFLAGE\",\"kind\":17,\"label\":\"UPG.GERMAN.CAN_CAMOUFLAGE\",\"documentation\":\"UPG.GERMAN.CAN_CAMOUFLAGE\",\"detail\":\"UPG.GERMAN.CAN_CAMOUFLAGE\"},{\"id\":\"UPG.GERMAN.COUNTERATTACK_TACTICS\",\"kind\":17,\"label\":\"UPG.GERMAN.COUNTERATTACK_TACTICS\",\"documentation\":\"UPG.GERMAN.COUNTERATTACK_TACTICS\",\"detail\":\"UPG.GERMAN.COUNTERATTACK_TACTICS\"},{\"id\":\"UPG.GERMAN.CRUSH_THE_POCKET\",\"kind\":17,\"label\":\"UPG.GERMAN.CRUSH_THE_POCKET\",\"documentation\":\"UPG.GERMAN.CRUSH_THE_POCKET\",\"detail\":\"UPG.GERMAN.CRUSH_THE_POCKET\"},{\"id\":\"UPG.GERMAN.DEFENSIVE_FORTIFICATIONS\",\"kind\":17,\"label\":\"UPG.GERMAN.DEFENSIVE_FORTIFICATIONS\",\"documentation\":\"UPG.GERMAN.DEFENSIVE_FORTIFICATIONS\",\"detail\":\"UPG.GERMAN.DEFENSIVE_FORTIFICATIONS\"},{\"id\":\"UPG.GERMAN.ELEFANT_UNLOCK\",\"kind\":17,\"label\":\"UPG.GERMAN.ELEFANT_UNLOCK\",\"documentation\":\"UPG.GERMAN.ELEFANT_UNLOCK\",\"detail\":\"UPG.GERMAN.ELEFANT_UNLOCK\"},{\"id\":\"UPG.GERMAN.FAST_MARCH\",\"kind\":17,\"label\":\"UPG.GERMAN.FAST_MARCH\",\"documentation\":\"UPG.GERMAN.FAST_MARCH\",\"detail\":\"UPG.GERMAN.FAST_MARCH\"},{\"id\":\"UPG.GERMAN.FESTUNG_ARCHETYPE\",\"kind\":17,\"label\":\"UPG.GERMAN.FESTUNG_ARCHETYPE\",\"documentation\":\"UPG.GERMAN.FESTUNG_ARCHETYPE\",\"detail\":\"UPG.GERMAN.FESTUNG_ARCHETYPE\"},{\"id\":\"UPG.GERMAN.FORWARD_REPAIR_STATION\",\"kind\":17,\"label\":\"UPG.GERMAN.FORWARD_REPAIR_STATION\",\"documentation\":\"UPG.GERMAN.FORWARD_REPAIR_STATION\",\"detail\":\"UPG.GERMAN.FORWARD_REPAIR_STATION\"},{\"id\":\"UPG.GERMAN.GRENADIER_MG42_LMG\",\"kind\":17,\"label\":\"UPG.GERMAN.GRENADIER_MG42_LMG\",\"documentation\":\"UPG.GERMAN.GRENADIER_MG42_LMG\",\"detail\":\"UPG.GERMAN.GRENADIER_MG42_LMG\"},{\"id\":\"UPG.GERMAN.GRENADIER_MG42_LMG_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.GRENADIER_MG42_LMG_MP\",\"documentation\":\"UPG.GERMAN.GRENADIER_MG42_LMG_MP\",\"detail\":\"UPG.GERMAN.GRENADIER_MG42_LMG_MP\"},{\"id\":\"UPG.GERMAN.HEAVY_AT_MINE\",\"kind\":17,\"label\":\"UPG.GERMAN.HEAVY_AT_MINE\",\"documentation\":\"UPG.GERMAN.HEAVY_AT_MINE\",\"detail\":\"UPG.GERMAN.HEAVY_AT_MINE\"},{\"id\":\"UPG.GERMAN.HOWITZER_105MM_EMPLACEMENT\",\"kind\":17,\"label\":\"UPG.GERMAN.HOWITZER_105MM_EMPLACEMENT\",\"documentation\":\"UPG.GERMAN.HOWITZER_105MM_EMPLACEMENT\",\"detail\":\"UPG.GERMAN.HOWITZER_105MM_EMPLACEMENT\"},{\"id\":\"UPG.GERMAN.HOWITZER_COUNTER_BARRAGE_COOLDOWN_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.HOWITZER_COUNTER_BARRAGE_COOLDOWN_MP\",\"documentation\":\"UPG.GERMAN.HOWITZER_COUNTER_BARRAGE_COOLDOWN_MP\",\"detail\":\"UPG.GERMAN.HOWITZER_COUNTER_BARRAGE_COOLDOWN_MP\"},{\"id\":\"UPG.GERMAN.HULL_DOWN\",\"kind\":17,\"label\":\"UPG.GERMAN.HULL_DOWN\",\"documentation\":\"UPG.GERMAN.HULL_DOWN\",\"detail\":\"UPG.GERMAN.HULL_DOWN\"},{\"id\":\"UPG.GERMAN.HULLDOWN_ACTIVATED\",\"kind\":17,\"label\":\"UPG.GERMAN.HULLDOWN_ACTIVATED\",\"documentation\":\"UPG.GERMAN.HULLDOWN_ACTIVATED\",\"detail\":\"UPG.GERMAN.HULLDOWN_ACTIVATED\"},{\"id\":\"UPG.GERMAN.HULLDOWN_CONSTRUCTING\",\"kind\":17,\"label\":\"UPG.GERMAN.HULLDOWN_CONSTRUCTING\",\"documentation\":\"UPG.GERMAN.HULLDOWN_CONSTRUCTING\",\"detail\":\"UPG.GERMAN.HULLDOWN_CONSTRUCTING\"},{\"id\":\"UPG.GERMAN.JAEGER_ARCHETYPE\",\"kind\":17,\"label\":\"UPG.GERMAN.JAEGER_ARCHETYPE\",\"documentation\":\"UPG.GERMAN.JAEGER_ARCHETYPE\",\"detail\":\"UPG.GERMAN.JAEGER_ARCHETYPE\"},{\"id\":\"UPG.GERMAN.JAEGER_LIGHT_INFANTRY\",\"kind\":17,\"label\":\"UPG.GERMAN.JAEGER_LIGHT_INFANTRY\",\"documentation\":\"UPG.GERMAN.JAEGER_LIGHT_INFANTRY\",\"detail\":\"UPG.GERMAN.JAEGER_LIGHT_INFANTRY\"},{\"id\":\"UPG.GERMAN.LIGHT_ARTILLERY_SUPPORT\",\"kind\":17,\"label\":\"UPG.GERMAN.LIGHT_ARTILLERY_SUPPORT\",\"documentation\":\"UPG.GERMAN.LIGHT_ARTILLERY_SUPPORT\",\"detail\":\"UPG.GERMAN.LIGHT_ARTILLERY_SUPPORT\"},{\"id\":\"UPG.GERMAN.LIGHT_INFANTRY_PACKAGE\",\"kind\":17,\"label\":\"UPG.GERMAN.LIGHT_INFANTRY_PACKAGE\",\"documentation\":\"UPG.GERMAN.LIGHT_INFANTRY_PACKAGE\",\"detail\":\"UPG.GERMAN.LIGHT_INFANTRY_PACKAGE\"},{\"id\":\"UPG.GERMAN.LIGHT_INFANTRY_PANZERGREN_PACKAGE\",\"kind\":17,\"label\":\"UPG.GERMAN.LIGHT_INFANTRY_PANZERGREN_PACKAGE\",\"documentation\":\"UPG.GERMAN.LIGHT_INFANTRY_PANZERGREN_PACKAGE\",\"detail\":\"UPG.GERMAN.LIGHT_INFANTRY_PANZERGREN_PACKAGE\"},{\"id\":\"UPG.GERMAN.MECHANIZED_GRENADIER_GROUP\",\"kind\":17,\"label\":\"UPG.GERMAN.MECHANIZED_GRENADIER_GROUP\",\"documentation\":\"UPG.GERMAN.MECHANIZED_GRENADIER_GROUP\",\"detail\":\"UPG.GERMAN.MECHANIZED_GRENADIER_GROUP\"},{\"id\":\"UPG.GERMAN.MECHANIZED_GROUP\",\"kind\":17,\"label\":\"UPG.GERMAN.MECHANIZED_GROUP\",\"documentation\":\"UPG.GERMAN.MECHANIZED_GROUP\",\"detail\":\"UPG.GERMAN.MECHANIZED_GROUP\"},{\"id\":\"UPG.GERMAN.MG42_HOLDFIRE_CAMOUFLAGE_NET_ACTIVATED\",\"kind\":17,\"label\":\"UPG.GERMAN.MG42_HOLDFIRE_CAMOUFLAGE_NET_ACTIVATED\",\"documentation\":\"UPG.GERMAN.MG42_HOLDFIRE_CAMOUFLAGE_NET_ACTIVATED\",\"detail\":\"UPG.GERMAN.MG42_HOLDFIRE_CAMOUFLAGE_NET_ACTIVATED\"},{\"id\":\"UPG.GERMAN.MORTAR_COUNTER_BARRAGE_COOLDOWN_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.MORTAR_COUNTER_BARRAGE_COOLDOWN_MP\",\"documentation\":\"UPG.GERMAN.MORTAR_COUNTER_BARRAGE_COOLDOWN_MP\",\"detail\":\"UPG.GERMAN.MORTAR_COUNTER_BARRAGE_COOLDOWN_MP\"},{\"id\":\"UPG.GERMAN.MORTAR_COUNTER_BARRAGE_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.MORTAR_COUNTER_BARRAGE_MP\",\"documentation\":\"UPG.GERMAN.MORTAR_COUNTER_BARRAGE_MP\",\"detail\":\"UPG.GERMAN.MORTAR_COUNTER_BARRAGE_MP\"},{\"id\":\"UPG.GERMAN.MORTAR_HALFTRACK\",\"kind\":17,\"label\":\"UPG.GERMAN.MORTAR_HALFTRACK\",\"documentation\":\"UPG.GERMAN.MORTAR_HALFTRACK\",\"detail\":\"UPG.GERMAN.MORTAR_HALFTRACK\"},{\"id\":\"UPG.GERMAN.MORTAR_HALFTRACK_250_UPGRADE\",\"kind\":17,\"label\":\"UPG.GERMAN.MORTAR_HALFTRACK_250_UPGRADE\",\"documentation\":\"UPG.GERMAN.MORTAR_HALFTRACK_250_UPGRADE\",\"detail\":\"UPG.GERMAN.MORTAR_HALFTRACK_250_UPGRADE\"},{\"id\":\"UPG.GERMAN.MORTAR_HALFTRACK_COUNTER_BARRAGE_COOLDOWN_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.MORTAR_HALFTRACK_COUNTER_BARRAGE_COOLDOWN_MP\",\"documentation\":\"UPG.GERMAN.MORTAR_HALFTRACK_COUNTER_BARRAGE_COOLDOWN_MP\",\"detail\":\"UPG.GERMAN.MORTAR_HALFTRACK_COUNTER_BARRAGE_COOLDOWN_MP\"},{\"id\":\"UPG.GERMAN.MORTAR_INCENDIARY_BARRAGE\",\"kind\":17,\"label\":\"UPG.GERMAN.MORTAR_INCENDIARY_BARRAGE\",\"documentation\":\"UPG.GERMAN.MORTAR_INCENDIARY_BARRAGE\",\"detail\":\"UPG.GERMAN.MORTAR_INCENDIARY_BARRAGE\"},{\"id\":\"UPG.GERMAN.MUNITION_BLITZ\",\"kind\":17,\"label\":\"UPG.GERMAN.MUNITION_BLITZ\",\"documentation\":\"UPG.GERMAN.MUNITION_BLITZ\",\"detail\":\"UPG.GERMAN.MUNITION_BLITZ\"},{\"id\":\"UPG.GERMAN.OSTRUPPEN\",\"kind\":17,\"label\":\"UPG.GERMAN.OSTRUPPEN\",\"documentation\":\"UPG.GERMAN.OSTRUPPEN\",\"detail\":\"UPG.GERMAN.OSTRUPPEN\"},{\"id\":\"UPG.GERMAN.OSTRUPPEN_RESERVES\",\"kind\":17,\"label\":\"UPG.GERMAN.OSTRUPPEN_RESERVES\",\"documentation\":\"UPG.GERMAN.OSTRUPPEN_RESERVES\",\"detail\":\"UPG.GERMAN.OSTRUPPEN_RESERVES\"},{\"id\":\"UPG.GERMAN.PAK_43_EMPLACEMENT\",\"kind\":17,\"label\":\"UPG.GERMAN.PAK_43_EMPLACEMENT\",\"documentation\":\"UPG.GERMAN.PAK_43_EMPLACEMENT\",\"detail\":\"UPG.GERMAN.PAK_43_EMPLACEMENT\"},{\"id\":\"UPG.GERMAN.PANTHER_TOP_GUNNER\",\"kind\":17,\"label\":\"UPG.GERMAN.PANTHER_TOP_GUNNER\",\"documentation\":\"UPG.GERMAN.PANTHER_TOP_GUNNER\",\"detail\":\"UPG.GERMAN.PANTHER_TOP_GUNNER\"},{\"id\":\"UPG.GERMAN.PANTHER_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.PANTHER_TOP_GUNNER_MP\",\"documentation\":\"UPG.GERMAN.PANTHER_TOP_GUNNER_MP\",\"detail\":\"UPG.GERMAN.PANTHER_TOP_GUNNER_MP\"},{\"id\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM\",\"documentation\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM\",\"detail\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM\"},{\"id\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_1_SCHREK_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_1_SCHREK_MP\",\"documentation\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_1_SCHREK_MP\",\"detail\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_1_SCHREK_MP\"},{\"id\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_MP\",\"documentation\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_MP\",\"detail\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_MP\"},{\"id\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_SECOND\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_SECOND\",\"documentation\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_SECOND\",\"detail\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_SECOND\"},{\"id\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_SECOND_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_SECOND_MP\",\"documentation\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_SECOND_MP\",\"detail\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_SECOND_MP\"},{\"id\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_THIRD_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_THIRD_MP\",\"documentation\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_THIRD_MP\",\"detail\":\"UPG.GERMAN.PANZER_GRENADIER_PANZERSHRECK_ATW_ITEM_THIRD_MP\"},{\"id\":\"UPG.GERMAN.PANZER_TACTICIAN\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZER_TACTICIAN\",\"documentation\":\"UPG.GERMAN.PANZER_TACTICIAN\",\"detail\":\"UPG.GERMAN.PANZER_TACTICIAN\"},{\"id\":\"UPG.GERMAN.PANZER_TOP_GUNNER\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZER_TOP_GUNNER\",\"documentation\":\"UPG.GERMAN.PANZER_TOP_GUNNER\",\"detail\":\"UPG.GERMAN.PANZER_TOP_GUNNER\"},{\"id\":\"UPG.GERMAN.PANZER_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZER_TOP_GUNNER_MP\",\"documentation\":\"UPG.GERMAN.PANZER_TOP_GUNNER_MP\",\"detail\":\"UPG.GERMAN.PANZER_TOP_GUNNER_MP\"},{\"id\":\"UPG.GERMAN.PANZERBUSCHE_39\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZERBUSCHE_39\",\"documentation\":\"UPG.GERMAN.PANZERBUSCHE_39\",\"detail\":\"UPG.GERMAN.PANZERBUSCHE_39\"},{\"id\":\"UPG.GERMAN.PANZERBUSCHE_39_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZERBUSCHE_39_MP\",\"documentation\":\"UPG.GERMAN.PANZERBUSCHE_39_MP\",\"detail\":\"UPG.GERMAN.PANZERBUSCHE_39_MP\"},{\"id\":\"UPG.GERMAN.PANZERWERFER_COUNTER_BARRAGE_COOLDOWN_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.PANZERWERFER_COUNTER_BARRAGE_COOLDOWN_MP\",\"documentation\":\"UPG.GERMAN.PANZERWERFER_COUNTER_BARRAGE_COOLDOWN_MP\",\"detail\":\"UPG.GERMAN.PANZERWERFER_COUNTER_BARRAGE_COOLDOWN_MP\"},{\"id\":\"UPG.GERMAN.PIONEER_FLAMETHROWER\",\"kind\":17,\"label\":\"UPG.GERMAN.PIONEER_FLAMETHROWER\",\"documentation\":\"UPG.GERMAN.PIONEER_FLAMETHROWER\",\"detail\":\"UPG.GERMAN.PIONEER_FLAMETHROWER\"},{\"id\":\"UPG.GERMAN.PIONEER_FLAMETHROWER_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.PIONEER_FLAMETHROWER_MP\",\"documentation\":\"UPG.GERMAN.PIONEER_FLAMETHROWER_MP\",\"detail\":\"UPG.GERMAN.PIONEER_FLAMETHROWER_MP\"},{\"id\":\"UPG.GERMAN.PIONEER_MINESWEEPER\",\"kind\":17,\"label\":\"UPG.GERMAN.PIONEER_MINESWEEPER\",\"documentation\":\"UPG.GERMAN.PIONEER_MINESWEEPER\",\"detail\":\"UPG.GERMAN.PIONEER_MINESWEEPER\"},{\"id\":\"UPG.GERMAN.PIONEER_MINESWEEPER_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.PIONEER_MINESWEEPER_MP\",\"documentation\":\"UPG.GERMAN.PIONEER_MINESWEEPER_MP\",\"detail\":\"UPG.GERMAN.PIONEER_MINESWEEPER_MP\"},{\"id\":\"UPG.GERMAN.PUMA_DISPATCH\",\"kind\":17,\"label\":\"UPG.GERMAN.PUMA_DISPATCH\",\"documentation\":\"UPG.GERMAN.PUMA_DISPATCH\",\"detail\":\"UPG.GERMAN.PUMA_DISPATCH\"},{\"id\":\"UPG.GERMAN.RAILWAY_ARTILLERY_SUPPORT\",\"kind\":17,\"label\":\"UPG.GERMAN.RAILWAY_ARTILLERY_SUPPORT\",\"documentation\":\"UPG.GERMAN.RAILWAY_ARTILLERY_SUPPORT\",\"detail\":\"UPG.GERMAN.RAILWAY_ARTILLERY_SUPPORT\"},{\"id\":\"UPG.GERMAN.RECON_PLANE\",\"kind\":17,\"label\":\"UPG.GERMAN.RECON_PLANE\",\"documentation\":\"UPG.GERMAN.RECON_PLANE\",\"detail\":\"UPG.GERMAN.RECON_PLANE\"},{\"id\":\"UPG.GERMAN.REDISTRIBUTE_RESOURCES\",\"kind\":17,\"label\":\"UPG.GERMAN.REDISTRIBUTE_RESOURCES\",\"documentation\":\"UPG.GERMAN.REDISTRIBUTE_RESOURCES\",\"detail\":\"UPG.GERMAN.REDISTRIBUTE_RESOURCES\"},{\"id\":\"UPG.GERMAN.RELIEF_INFANTRY\",\"kind\":17,\"label\":\"UPG.GERMAN.RELIEF_INFANTRY\",\"documentation\":\"UPG.GERMAN.RELIEF_INFANTRY\",\"detail\":\"UPG.GERMAN.RELIEF_INFANTRY\"},{\"id\":\"UPG.GERMAN.SDKFZ_222_20MM_GUN\",\"kind\":17,\"label\":\"UPG.GERMAN.SDKFZ_222_20MM_GUN\",\"documentation\":\"UPG.GERMAN.SDKFZ_222_20MM_GUN\",\"detail\":\"UPG.GERMAN.SDKFZ_222_20MM_GUN\"},{\"id\":\"UPG.GERMAN.SDKFZ_222_20MM_GUN_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.SDKFZ_222_20MM_GUN_MP\",\"documentation\":\"UPG.GERMAN.SDKFZ_222_20MM_GUN_MP\",\"detail\":\"UPG.GERMAN.SDKFZ_222_20MM_GUN_MP\"},{\"id\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE\",\"kind\":17,\"label\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE\",\"documentation\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE\",\"detail\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE\"},{\"id\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE_MP\",\"documentation\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE_MP\",\"detail\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE_MP\"},{\"id\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_MOBILE_MEDIC_STATION_UPGRADE\",\"kind\":17,\"label\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_MOBILE_MEDIC_STATION_UPGRADE\",\"documentation\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_MOBILE_MEDIC_STATION_UPGRADE\",\"detail\":\"UPG.GERMAN.SDKFZ_251_HALFTRACK_MOBILE_MEDIC_STATION_UPGRADE\"},{\"id\":\"UPG.GERMAN.SECTOR_ARTILLERY\",\"kind\":17,\"label\":\"UPG.GERMAN.SECTOR_ARTILLERY\",\"documentation\":\"UPG.GERMAN.SECTOR_ARTILLERY\",\"detail\":\"UPG.GERMAN.SECTOR_ARTILLERY\"},{\"id\":\"UPG.GERMAN.SPRINT\",\"kind\":17,\"label\":\"UPG.GERMAN.SPRINT\",\"documentation\":\"UPG.GERMAN.SPRINT\",\"detail\":\"UPG.GERMAN.SPRINT\"},{\"id\":\"UPG.GERMAN.STATIONARY_LOS_GAIN\",\"kind\":17,\"label\":\"UPG.GERMAN.STATIONARY_LOS_GAIN\",\"documentation\":\"UPG.GERMAN.STATIONARY_LOS_GAIN\",\"detail\":\"UPG.GERMAN.STATIONARY_LOS_GAIN\"},{\"id\":\"UPG.GERMAN.STORMTROOPER_ANTITANK_PACKAGE_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.STORMTROOPER_ANTITANK_PACKAGE_MP\",\"documentation\":\"UPG.GERMAN.STORMTROOPER_ANTITANK_PACKAGE_MP\",\"detail\":\"UPG.GERMAN.STORMTROOPER_ANTITANK_PACKAGE_MP\"},{\"id\":\"UPG.GERMAN.STORMTROOPER_ASSAULT_PACKAGE_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.STORMTROOPER_ASSAULT_PACKAGE_MP\",\"documentation\":\"UPG.GERMAN.STORMTROOPER_ASSAULT_PACKAGE_MP\",\"detail\":\"UPG.GERMAN.STORMTROOPER_ASSAULT_PACKAGE_MP\"},{\"id\":\"UPG.GERMAN.STORMTROOPER_PANZERSCHRECK_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.STORMTROOPER_PANZERSCHRECK_MP\",\"documentation\":\"UPG.GERMAN.STORMTROOPER_PANZERSCHRECK_MP\",\"detail\":\"UPG.GERMAN.STORMTROOPER_PANZERSCHRECK_MP\"},{\"id\":\"UPG.GERMAN.STORMTROOPERS\",\"kind\":17,\"label\":\"UPG.GERMAN.STORMTROOPERS\",\"documentation\":\"UPG.GERMAN.STORMTROOPERS\",\"detail\":\"UPG.GERMAN.STORMTROOPERS\"},{\"id\":\"UPG.GERMAN.STRATEGIC_BOMBING\",\"kind\":17,\"label\":\"UPG.GERMAN.STRATEGIC_BOMBING\",\"documentation\":\"UPG.GERMAN.STRATEGIC_BOMBING\",\"detail\":\"UPG.GERMAN.STRATEGIC_BOMBING\"},{\"id\":\"UPG.GERMAN.STUG_III_E_UNLOCK\",\"kind\":17,\"label\":\"UPG.GERMAN.STUG_III_E_UNLOCK\",\"documentation\":\"UPG.GERMAN.STUG_III_E_UNLOCK\",\"detail\":\"UPG.GERMAN.STUG_III_E_UNLOCK\"},{\"id\":\"UPG.GERMAN.STUG_SHORT_BARREL\",\"kind\":17,\"label\":\"UPG.GERMAN.STUG_SHORT_BARREL\",\"documentation\":\"UPG.GERMAN.STUG_SHORT_BARREL\",\"detail\":\"UPG.GERMAN.STUG_SHORT_BARREL\"},{\"id\":\"UPG.GERMAN.STUG_TOP_GUNNER\",\"kind\":17,\"label\":\"UPG.GERMAN.STUG_TOP_GUNNER\",\"documentation\":\"UPG.GERMAN.STUG_TOP_GUNNER\",\"detail\":\"UPG.GERMAN.STUG_TOP_GUNNER\"},{\"id\":\"UPG.GERMAN.STUG_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.STUG_TOP_GUNNER_MP\",\"documentation\":\"UPG.GERMAN.STUG_TOP_GUNNER_MP\",\"detail\":\"UPG.GERMAN.STUG_TOP_GUNNER_MP\"},{\"id\":\"UPG.GERMAN.STUKA_BOMBING_RUN_UPGRADE\",\"kind\":17,\"label\":\"UPG.GERMAN.STUKA_BOMBING_RUN_UPGRADE\",\"documentation\":\"UPG.GERMAN.STUKA_BOMBING_RUN_UPGRADE\",\"detail\":\"UPG.GERMAN.STUKA_BOMBING_RUN_UPGRADE\"},{\"id\":\"UPG.GERMAN.STUKA_CLOSE_AIR_SUPPORT\",\"kind\":17,\"label\":\"UPG.GERMAN.STUKA_CLOSE_AIR_SUPPORT\",\"documentation\":\"UPG.GERMAN.STUKA_CLOSE_AIR_SUPPORT\",\"detail\":\"UPG.GERMAN.STUKA_CLOSE_AIR_SUPPORT\"},{\"id\":\"UPG.GERMAN.STUKA_FLAME_STRIKE\",\"kind\":17,\"label\":\"UPG.GERMAN.STUKA_FLAME_STRIKE\",\"documentation\":\"UPG.GERMAN.STUKA_FLAME_STRIKE\",\"detail\":\"UPG.GERMAN.STUKA_FLAME_STRIKE\"},{\"id\":\"UPG.GERMAN.STUKA_FRAGMENTATION_BOMB\",\"kind\":17,\"label\":\"UPG.GERMAN.STUKA_FRAGMENTATION_BOMB\",\"documentation\":\"UPG.GERMAN.STUKA_FRAGMENTATION_BOMB\",\"detail\":\"UPG.GERMAN.STUKA_FRAGMENTATION_BOMB\"},{\"id\":\"UPG.GERMAN.STUKA_SMOKE_BOMB\",\"kind\":17,\"label\":\"UPG.GERMAN.STUKA_SMOKE_BOMB\",\"documentation\":\"UPG.GERMAN.STUKA_SMOKE_BOMB\",\"detail\":\"UPG.GERMAN.STUKA_SMOKE_BOMB\"},{\"id\":\"UPG.GERMAN.STUKA_STRAFE\",\"kind\":17,\"label\":\"UPG.GERMAN.STUKA_STRAFE\",\"documentation\":\"UPG.GERMAN.STUKA_STRAFE\",\"detail\":\"UPG.GERMAN.STUKA_STRAFE\"},{\"id\":\"UPG.GERMAN.SUPPLY_BREAK\",\"kind\":17,\"label\":\"UPG.GERMAN.SUPPLY_BREAK\",\"documentation\":\"UPG.GERMAN.SUPPLY_BREAK\",\"detail\":\"UPG.GERMAN.SUPPLY_BREAK\"},{\"id\":\"UPG.GERMAN.SUPPLY_TRUCK_ACTIVE\",\"kind\":17,\"label\":\"UPG.GERMAN.SUPPLY_TRUCK_ACTIVE\",\"documentation\":\"UPG.GERMAN.SUPPLY_TRUCK_ACTIVE\",\"detail\":\"UPG.GERMAN.SUPPLY_TRUCK_ACTIVE\"},{\"id\":\"UPG.GERMAN.SUPPLY_TRUCK_EXIT\",\"kind\":17,\"label\":\"UPG.GERMAN.SUPPLY_TRUCK_EXIT\",\"documentation\":\"UPG.GERMAN.SUPPLY_TRUCK_EXIT\",\"detail\":\"UPG.GERMAN.SUPPLY_TRUCK_EXIT\"},{\"id\":\"UPG.GERMAN.SUPPLY_TRUCK_FILL_STATE\",\"kind\":17,\"label\":\"UPG.GERMAN.SUPPLY_TRUCK_FILL_STATE\",\"documentation\":\"UPG.GERMAN.SUPPLY_TRUCK_FILL_STATE\",\"detail\":\"UPG.GERMAN.SUPPLY_TRUCK_FILL_STATE\"},{\"id\":\"UPG.GERMAN.SUPPLY_TRUCK_FULL\",\"kind\":17,\"label\":\"UPG.GERMAN.SUPPLY_TRUCK_FULL\",\"documentation\":\"UPG.GERMAN.SUPPLY_TRUCK_FULL\",\"detail\":\"UPG.GERMAN.SUPPLY_TRUCK_FULL\"},{\"id\":\"UPG.GERMAN.SUPPLY_TRUCK_LOCKDOWN\",\"kind\":17,\"label\":\"UPG.GERMAN.SUPPLY_TRUCK_LOCKDOWN\",\"documentation\":\"UPG.GERMAN.SUPPLY_TRUCK_LOCKDOWN\",\"detail\":\"UPG.GERMAN.SUPPLY_TRUCK_LOCKDOWN\"},{\"id\":\"UPG.GERMAN.TANK_AWARENESS\",\"kind\":17,\"label\":\"UPG.GERMAN.TANK_AWARENESS\",\"documentation\":\"UPG.GERMAN.TANK_AWARENESS\",\"detail\":\"UPG.GERMAN.TANK_AWARENESS\"},{\"id\":\"UPG.GERMAN.TIGER_TANK\",\"kind\":17,\"label\":\"UPG.GERMAN.TIGER_TANK\",\"documentation\":\"UPG.GERMAN.TIGER_TANK\",\"detail\":\"UPG.GERMAN.TIGER_TANK\"},{\"id\":\"UPG.GERMAN.TIGER_TANK_ACE\",\"kind\":17,\"label\":\"UPG.GERMAN.TIGER_TANK_ACE\",\"documentation\":\"UPG.GERMAN.TIGER_TANK_ACE\",\"detail\":\"UPG.GERMAN.TIGER_TANK_ACE\"},{\"id\":\"UPG.GERMAN.TIGER_TANK_ACE_CALLIN_RESTRICTION\",\"kind\":17,\"label\":\"UPG.GERMAN.TIGER_TANK_ACE_CALLIN_RESTRICTION\",\"documentation\":\"UPG.GERMAN.TIGER_TANK_ACE_CALLIN_RESTRICTION\",\"detail\":\"UPG.GERMAN.TIGER_TANK_ACE_CALLIN_RESTRICTION\"},{\"id\":\"UPG.GERMAN.TIGER_TOP_GUNNER\",\"kind\":17,\"label\":\"UPG.GERMAN.TIGER_TOP_GUNNER\",\"documentation\":\"UPG.GERMAN.TIGER_TOP_GUNNER\",\"detail\":\"UPG.GERMAN.TIGER_TOP_GUNNER\"},{\"id\":\"UPG.GERMAN.TIGER_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.TIGER_TOP_GUNNER_MP\",\"documentation\":\"UPG.GERMAN.TIGER_TOP_GUNNER_MP\",\"detail\":\"UPG.GERMAN.TIGER_TOP_GUNNER_MP\"},{\"id\":\"UPG.GERMAN.TIGER_TOP_GUNNER_TOW\",\"kind\":17,\"label\":\"UPG.GERMAN.TIGER_TOP_GUNNER_TOW\",\"documentation\":\"UPG.GERMAN.TIGER_TOP_GUNNER_TOW\",\"detail\":\"UPG.GERMAN.TIGER_TOP_GUNNER_TOW\"},{\"id\":\"UPG.GERMAN.TOW_1941_GERMAN\",\"kind\":17,\"label\":\"UPG.GERMAN.TOW_1941_GERMAN\",\"documentation\":\"UPG.GERMAN.TOW_1941_GERMAN\",\"detail\":\"UPG.GERMAN.TOW_1941_GERMAN\"},{\"id\":\"UPG.GERMAN.TRENCH\",\"kind\":17,\"label\":\"UPG.GERMAN.TRENCH\",\"documentation\":\"UPG.GERMAN.TRENCH\",\"detail\":\"UPG.GERMAN.TRENCH\"},{\"id\":\"UPG.GERMAN.TROOP_TRAINING\",\"kind\":17,\"label\":\"UPG.GERMAN.TROOP_TRAINING\",\"documentation\":\"UPG.GERMAN.TROOP_TRAINING\",\"detail\":\"UPG.GERMAN.TROOP_TRAINING\"},{\"id\":\"UPG.GERMAN.URBAN_ASSAULT_ARMOR_UPGRADE\",\"kind\":17,\"label\":\"UPG.GERMAN.URBAN_ASSAULT_ARMOR_UPGRADE\",\"documentation\":\"UPG.GERMAN.URBAN_ASSAULT_ARMOR_UPGRADE\",\"detail\":\"UPG.GERMAN.URBAN_ASSAULT_ARMOR_UPGRADE\"},{\"id\":\"UPG.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS\",\"kind\":17,\"label\":\"UPG.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS\",\"documentation\":\"UPG.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS\",\"detail\":\"UPG.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS\"},{\"id\":\"UPG.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS_FLAMETHROWER_MP\",\"kind\":17,\"label\":\"UPG.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS_FLAMETHROWER_MP\",\"documentation\":\"UPG.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS_FLAMETHROWER_MP\",\"detail\":\"UPG.GERMAN.URBAN_ASSAULT_PANZER_GRENADIERS_FLAMETHROWER_MP\"},{\"id\":\"UPG.GERMAN.VEHICLES_OPTICS\",\"kind\":17,\"label\":\"UPG.GERMAN.VEHICLES_OPTICS\",\"documentation\":\"UPG.GERMAN.VEHICLES_OPTICS\",\"detail\":\"UPG.GERMAN.VEHICLES_OPTICS\"},{\"id\":\"UPG.GERMAN.XP1_GERMAN_DEMO_UPGRADE\",\"kind\":17,\"label\":\"UPG.GERMAN.XP1_GERMAN_DEMO_UPGRADE\",\"documentation\":\"UPG.GERMAN.XP1_GERMAN_DEMO_UPGRADE\",\"detail\":\"UPG.GERMAN.XP1_GERMAN_DEMO_UPGRADE\"},{\"id\":\"EBP.PROXY.PROXY_MEDIC_MP\",\"kind\":17,\"label\":\"EBP.PROXY.PROXY_MEDIC_MP\",\"documentation\":\"EBP.PROXY.PROXY_MEDIC_MP\",\"detail\":\"EBP.PROXY.PROXY_MEDIC_MP\"},{\"id\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_A\",\"kind\":17,\"label\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_A\",\"documentation\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_A\",\"detail\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_A\"},{\"id\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_B\",\"kind\":17,\"label\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_B\",\"documentation\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_B\",\"detail\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_B\"},{\"id\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_C\",\"kind\":17,\"label\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_C\",\"documentation\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_C\",\"detail\":\"EBP.PROXY.PROXY_RIFLEMAN_SOLDIER_C\"},{\"id\":\"EBP.PROXY.PROXY_SNIPER_RECON_MP\",\"kind\":17,\"label\":\"EBP.PROXY.PROXY_SNIPER_RECON_MP\",\"documentation\":\"EBP.PROXY.PROXY_SNIPER_RECON_MP\",\"detail\":\"EBP.PROXY.PROXY_SNIPER_RECON_MP\"},{\"id\":\"SBP.PROXY.PROXY_HMG_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.PROXY.PROXY_HMG_SQUAD_MP\",\"documentation\":\"SBP.PROXY.PROXY_HMG_SQUAD_MP\",\"detail\":\"SBP.PROXY.PROXY_HMG_SQUAD_MP\"},{\"id\":\"SBP.PROXY.PROXY_MECH_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.PROXY.PROXY_MECH_SQUAD_MP\",\"documentation\":\"SBP.PROXY.PROXY_MECH_SQUAD_MP\",\"detail\":\"SBP.PROXY.PROXY_MECH_SQUAD_MP\"},{\"id\":\"SBP.PROXY.PROXY_RIFLEMEN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.PROXY.PROXY_RIFLEMEN_SQUAD_MP\",\"documentation\":\"SBP.PROXY.PROXY_RIFLEMEN_SQUAD_MP\",\"detail\":\"SBP.PROXY.PROXY_RIFLEMEN_SQUAD_MP\"},{\"id\":\"SBP.PROXY.PROXY_SNIPER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.PROXY.PROXY_SNIPER_SQUAD_MP\",\"documentation\":\"SBP.PROXY.PROXY_SNIPER_SQUAD_MP\",\"detail\":\"SBP.PROXY.PROXY_SNIPER_SQUAD_MP\"},{\"id\":\"EBP.SOVIET._CIVILIAN_FEMALE\",\"kind\":17,\"label\":\"EBP.SOVIET._CIVILIAN_FEMALE\",\"documentation\":\"EBP.SOVIET._CIVILIAN_FEMALE\",\"detail\":\"EBP.SOVIET._CIVILIAN_FEMALE\"},{\"id\":\"EBP.SOVIET._CIVILIAN_FEMALE_MP\",\"kind\":17,\"label\":\"EBP.SOVIET._CIVILIAN_FEMALE_MP\",\"documentation\":\"EBP.SOVIET._CIVILIAN_FEMALE_MP\",\"detail\":\"EBP.SOVIET._CIVILIAN_FEMALE_MP\"},{\"id\":\"EBP.SOVIET._CIVILIAN_MALE\",\"kind\":17,\"label\":\"EBP.SOVIET._CIVILIAN_MALE\",\"documentation\":\"EBP.SOVIET._CIVILIAN_MALE\",\"detail\":\"EBP.SOVIET._CIVILIAN_MALE\"},{\"id\":\"EBP.SOVIET._CIVILIAN_MALE_MP\",\"kind\":17,\"label\":\"EBP.SOVIET._CIVILIAN_MALE_MP\",\"documentation\":\"EBP.SOVIET._CIVILIAN_MALE_MP\",\"detail\":\"EBP.SOVIET._CIVILIAN_MALE_MP\"},{\"id\":\"EBP.SOVIET.ANTI_PERSONNEL_MINES\",\"kind\":17,\"label\":\"EBP.SOVIET.ANTI_PERSONNEL_MINES\",\"documentation\":\"EBP.SOVIET.ANTI_PERSONNEL_MINES\",\"detail\":\"EBP.SOVIET.ANTI_PERSONNEL_MINES\"},{\"id\":\"EBP.SOVIET.ARTILLERY_203MM_B4\",\"kind\":17,\"label\":\"EBP.SOVIET.ARTILLERY_203MM_B4\",\"documentation\":\"EBP.SOVIET.ARTILLERY_203MM_B4\",\"detail\":\"EBP.SOVIET.ARTILLERY_203MM_B4\"},{\"id\":\"EBP.SOVIET.ATGUN53K_CREW\",\"kind\":17,\"label\":\"EBP.SOVIET.ATGUN53K_CREW\",\"documentation\":\"EBP.SOVIET.ATGUN53K_CREW\",\"detail\":\"EBP.SOVIET.ATGUN53K_CREW\"},{\"id\":\"EBP.SOVIET.ATGUN53K_CREW_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.ATGUN53K_CREW_MP\",\"documentation\":\"EBP.SOVIET.ATGUN53K_CREW_MP\",\"detail\":\"EBP.SOVIET.ATGUN53K_CREW_MP\"},{\"id\":\"EBP.SOVIET.ATGUNZIS_CREW\",\"kind\":17,\"label\":\"EBP.SOVIET.ATGUNZIS_CREW\",\"documentation\":\"EBP.SOVIET.ATGUNZIS_CREW\",\"detail\":\"EBP.SOVIET.ATGUNZIS_CREW\"},{\"id\":\"EBP.SOVIET.ATGUNZIS_CREW_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.ATGUNZIS_CREW_MP\",\"documentation\":\"EBP.SOVIET.ATGUNZIS_CREW_MP\",\"detail\":\"EBP.SOVIET.ATGUNZIS_CREW_MP\"},{\"id\":\"EBP.SOVIET.BARBED_WIRE_FENCE\",\"kind\":17,\"label\":\"EBP.SOVIET.BARBED_WIRE_FENCE\",\"documentation\":\"EBP.SOVIET.BARBED_WIRE_FENCE\",\"detail\":\"EBP.SOVIET.BARBED_WIRE_FENCE\"},{\"id\":\"EBP.SOVIET.BARBED_WIRE_FENCE_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.BARBED_WIRE_FENCE_MP\",\"documentation\":\"EBP.SOVIET.BARBED_WIRE_FENCE_MP\",\"detail\":\"EBP.SOVIET.BARBED_WIRE_FENCE_MP\"},{\"id\":\"EBP.SOVIET.BARBED_WIRE_FIELD\",\"kind\":17,\"label\":\"EBP.SOVIET.BARBED_WIRE_FIELD\",\"documentation\":\"EBP.SOVIET.BARBED_WIRE_FIELD\",\"detail\":\"EBP.SOVIET.BARBED_WIRE_FIELD\"},{\"id\":\"EBP.SOVIET.BARBED_WIRE_FIELD_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.BARBED_WIRE_FIELD_MP\",\"documentation\":\"EBP.SOVIET.BARBED_WIRE_FIELD_MP\",\"detail\":\"EBP.SOVIET.BARBED_WIRE_FIELD_MP\"},{\"id\":\"EBP.SOVIET.BARRACKS\",\"kind\":17,\"label\":\"EBP.SOVIET.BARRACKS\",\"documentation\":\"EBP.SOVIET.BARRACKS\",\"detail\":\"EBP.SOVIET.BARRACKS\"},{\"id\":\"EBP.SOVIET.BARRACKS_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.BARRACKS_MP\",\"documentation\":\"EBP.SOVIET.BARRACKS_MP\",\"detail\":\"EBP.SOVIET.BARRACKS_MP\"},{\"id\":\"EBP.SOVIET.BASE_CONSCRIPT_SOLDIER\",\"kind\":17,\"label\":\"EBP.SOVIET.BASE_CONSCRIPT_SOLDIER\",\"documentation\":\"EBP.SOVIET.BASE_CONSCRIPT_SOLDIER\",\"detail\":\"EBP.SOVIET.BASE_CONSCRIPT_SOLDIER\"},{\"id\":\"EBP.SOVIET.BASE_CONSCRIPT_SOLDIER_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.BASE_CONSCRIPT_SOLDIER_MP\",\"documentation\":\"EBP.SOVIET.BASE_CONSCRIPT_SOLDIER_MP\",\"detail\":\"EBP.SOVIET.BASE_CONSCRIPT_SOLDIER_MP\"},{\"id\":\"EBP.SOVIET.BOAT_01_ENTITY\",\"kind\":17,\"label\":\"EBP.SOVIET.BOAT_01_ENTITY\",\"documentation\":\"EBP.SOVIET.BOAT_01_ENTITY\",\"detail\":\"EBP.SOVIET.BOAT_01_ENTITY\"},{\"id\":\"EBP.SOVIET.CARGO_PLANE_SOVIET\",\"kind\":17,\"label\":\"EBP.SOVIET.CARGO_PLANE_SOVIET\",\"documentation\":\"EBP.SOVIET.CARGO_PLANE_SOVIET\",\"detail\":\"EBP.SOVIET.CARGO_PLANE_SOVIET\"},{\"id\":\"EBP.SOVIET.COMBAT_ENGINEER\",\"kind\":17,\"label\":\"EBP.SOVIET.COMBAT_ENGINEER\",\"documentation\":\"EBP.SOVIET.COMBAT_ENGINEER\",\"detail\":\"EBP.SOVIET.COMBAT_ENGINEER\"},{\"id\":\"EBP.SOVIET.COMBAT_ENGINEER_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.COMBAT_ENGINEER_MP\",\"documentation\":\"EBP.SOVIET.COMBAT_ENGINEER_MP\",\"detail\":\"EBP.SOVIET.COMBAT_ENGINEER_MP\"},{\"id\":\"EBP.SOVIET.COMMISSAR\",\"kind\":17,\"label\":\"EBP.SOVIET.COMMISSAR\",\"documentation\":\"EBP.SOVIET.COMMISSAR\",\"detail\":\"EBP.SOVIET.COMMISSAR\"},{\"id\":\"EBP.SOVIET.COMMISSAR_227\",\"kind\":17,\"label\":\"EBP.SOVIET.COMMISSAR_227\",\"documentation\":\"EBP.SOVIET.COMMISSAR_227\",\"detail\":\"EBP.SOVIET.COMMISSAR_227\"},{\"id\":\"EBP.SOVIET.COMMISSAR_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.COMMISSAR_MP\",\"documentation\":\"EBP.SOVIET.COMMISSAR_MP\",\"detail\":\"EBP.SOVIET.COMMISSAR_MP\"},{\"id\":\"EBP.SOVIET.COMMISSAR_OF_DEATH_227_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.COMMISSAR_OF_DEATH_227_MP\",\"documentation\":\"EBP.SOVIET.COMMISSAR_OF_DEATH_227_MP\",\"detail\":\"EBP.SOVIET.COMMISSAR_OF_DEATH_227_MP\"},{\"id\":\"EBP.SOVIET.CONSCRIPT_SOLDIER\",\"kind\":17,\"label\":\"EBP.SOVIET.CONSCRIPT_SOLDIER\",\"documentation\":\"EBP.SOVIET.CONSCRIPT_SOLDIER\",\"detail\":\"EBP.SOVIET.CONSCRIPT_SOLDIER\"},{\"id\":\"EBP.SOVIET.CONSCRIPT_SOLDIER_CONSCRIPT_BODYGUARD_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.CONSCRIPT_SOLDIER_CONSCRIPT_BODYGUARD_MP\",\"documentation\":\"EBP.SOVIET.CONSCRIPT_SOLDIER_CONSCRIPT_BODYGUARD_MP\",\"detail\":\"EBP.SOVIET.CONSCRIPT_SOLDIER_CONSCRIPT_BODYGUARD_MP\"},{\"id\":\"EBP.SOVIET.CONSCRIPT_SOLDIER_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.CONSCRIPT_SOLDIER_MP\",\"documentation\":\"EBP.SOVIET.CONSCRIPT_SOLDIER_MP\",\"detail\":\"EBP.SOVIET.CONSCRIPT_SOLDIER_MP\"},{\"id\":\"EBP.SOVIET.DHSK_38_MACHINE_GUN\",\"kind\":17,\"label\":\"EBP.SOVIET.DHSK_38_MACHINE_GUN\",\"documentation\":\"EBP.SOVIET.DHSK_38_MACHINE_GUN\",\"detail\":\"EBP.SOVIET.DHSK_38_MACHINE_GUN\"},{\"id\":\"EBP.SOVIET.DHSK_38_MACHINE_GUN_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.DHSK_38_MACHINE_GUN_MP\",\"documentation\":\"EBP.SOVIET.DHSK_38_MACHINE_GUN_MP\",\"detail\":\"EBP.SOVIET.DHSK_38_MACHINE_GUN_MP\"},{\"id\":\"EBP.SOVIET.DSHK_WEAPON_CREW\",\"kind\":17,\"label\":\"EBP.SOVIET.DSHK_WEAPON_CREW\",\"documentation\":\"EBP.SOVIET.DSHK_WEAPON_CREW\",\"detail\":\"EBP.SOVIET.DSHK_WEAPON_CREW\"},{\"id\":\"EBP.SOVIET.DSHK_WEAPON_CREW_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.DSHK_WEAPON_CREW_MP\",\"documentation\":\"EBP.SOVIET.DSHK_WEAPON_CREW_MP\",\"detail\":\"EBP.SOVIET.DSHK_WEAPON_CREW_MP\"},{\"id\":\"EBP.SOVIET.FLARE_FIRE_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.FLARE_FIRE_MP\",\"documentation\":\"EBP.SOVIET.FLARE_FIRE_MP\",\"detail\":\"EBP.SOVIET.FLARE_FIRE_MP\"},{\"id\":\"EBP.SOVIET.FLARE_MINE\",\"kind\":17,\"label\":\"EBP.SOVIET.FLARE_MINE\",\"documentation\":\"EBP.SOVIET.FLARE_MINE\",\"detail\":\"EBP.SOVIET.FLARE_MINE\"},{\"id\":\"EBP.SOVIET.FLARE_MINE_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.FLARE_MINE_MP\",\"documentation\":\"EBP.SOVIET.FLARE_MINE_MP\",\"detail\":\"EBP.SOVIET.FLARE_MINE_MP\"},{\"id\":\"EBP.SOVIET.FORWARD_HQ\",\"kind\":17,\"label\":\"EBP.SOVIET.FORWARD_HQ\",\"documentation\":\"EBP.SOVIET.FORWARD_HQ\",\"detail\":\"EBP.SOVIET.FORWARD_HQ\"},{\"id\":\"EBP.SOVIET.GUARD_TROOPS\",\"kind\":17,\"label\":\"EBP.SOVIET.GUARD_TROOPS\",\"documentation\":\"EBP.SOVIET.GUARD_TROOPS\",\"detail\":\"EBP.SOVIET.GUARD_TROOPS\"},{\"id\":\"EBP.SOVIET.GUARD_TROOPS_ASSAULT_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.GUARD_TROOPS_ASSAULT_MP\",\"documentation\":\"EBP.SOVIET.GUARD_TROOPS_ASSAULT_MP\",\"detail\":\"EBP.SOVIET.GUARD_TROOPS_ASSAULT_MP\"},{\"id\":\"EBP.SOVIET.GUARD_TROOPS_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.GUARD_TROOPS_MP\",\"documentation\":\"EBP.SOVIET.GUARD_TROOPS_MP\",\"detail\":\"EBP.SOVIET.GUARD_TROOPS_MP\"},{\"id\":\"EBP.SOVIET.HM_120_38_MORTAR\",\"kind\":17,\"label\":\"EBP.SOVIET.HM_120_38_MORTAR\",\"documentation\":\"EBP.SOVIET.HM_120_38_MORTAR\",\"detail\":\"EBP.SOVIET.HM_120_38_MORTAR\"},{\"id\":\"EBP.SOVIET.HM_120_38_MORTAR_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.HM_120_38_MORTAR_MP\",\"documentation\":\"EBP.SOVIET.HM_120_38_MORTAR_MP\",\"detail\":\"EBP.SOVIET.HM_120_38_MORTAR_MP\"},{\"id\":\"EBP.SOVIET.HOWITZER_CREW_SOVIET\",\"kind\":17,\"label\":\"EBP.SOVIET.HOWITZER_CREW_SOVIET\",\"documentation\":\"EBP.SOVIET.HOWITZER_CREW_SOVIET\",\"detail\":\"EBP.SOVIET.HOWITZER_CREW_SOVIET\"},{\"id\":\"EBP.SOVIET.HOWITZER_CREW_SOVIET_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.HOWITZER_CREW_SOVIET_MP\",\"documentation\":\"EBP.SOVIET.HOWITZER_CREW_SOVIET_MP\",\"detail\":\"EBP.SOVIET.HOWITZER_CREW_SOVIET_MP\"},{\"id\":\"EBP.SOVIET.HOWITZER_CREW203__SOVIET_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.HOWITZER_CREW203__SOVIET_MP\",\"documentation\":\"EBP.SOVIET.HOWITZER_CREW203__SOVIET_MP\",\"detail\":\"EBP.SOVIET.HOWITZER_CREW203__SOVIET_MP\"},{\"id\":\"EBP.SOVIET.HQ\",\"kind\":17,\"label\":\"EBP.SOVIET.HQ\",\"documentation\":\"EBP.SOVIET.HQ\",\"detail\":\"EBP.SOVIET.HQ\"},{\"id\":\"EBP.SOVIET.HQ_INVISIBLE_SP\",\"kind\":17,\"label\":\"EBP.SOVIET.HQ_INVISIBLE_SP\",\"documentation\":\"EBP.SOVIET.HQ_INVISIBLE_SP\",\"detail\":\"EBP.SOVIET.HQ_INVISIBLE_SP\"},{\"id\":\"EBP.SOVIET.HQ_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.HQ_MP\",\"documentation\":\"EBP.SOVIET.HQ_MP\",\"detail\":\"EBP.SOVIET.HQ_MP\"},{\"id\":\"EBP.SOVIET.HQ_NO_WRECK\",\"kind\":17,\"label\":\"EBP.SOVIET.HQ_NO_WRECK\",\"documentation\":\"EBP.SOVIET.HQ_NO_WRECK\",\"detail\":\"EBP.SOVIET.HQ_NO_WRECK\"},{\"id\":\"EBP.SOVIET.HQ_WRECK\",\"kind\":17,\"label\":\"EBP.SOVIET.HQ_WRECK\",\"documentation\":\"EBP.SOVIET.HQ_WRECK\",\"detail\":\"EBP.SOVIET.HQ_WRECK\"},{\"id\":\"EBP.SOVIET.HQ_WRECK_M06\",\"kind\":17,\"label\":\"EBP.SOVIET.HQ_WRECK_M06\",\"documentation\":\"EBP.SOVIET.HQ_WRECK_M06\",\"detail\":\"EBP.SOVIET.HQ_WRECK_M06\"},{\"id\":\"EBP.SOVIET.HQ_WRECK_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.HQ_WRECK_MP\",\"documentation\":\"EBP.SOVIET.HQ_WRECK_MP\",\"detail\":\"EBP.SOVIET.HQ_WRECK_MP\"},{\"id\":\"EBP.SOVIET.IL_2_STURMOVIK\",\"kind\":17,\"label\":\"EBP.SOVIET.IL_2_STURMOVIK\",\"documentation\":\"EBP.SOVIET.IL_2_STURMOVIK\",\"detail\":\"EBP.SOVIET.IL_2_STURMOVIK\"},{\"id\":\"EBP.SOVIET.IL_2_STURMOVIK_ADVANCED_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.IL_2_STURMOVIK_ADVANCED_MP\",\"documentation\":\"EBP.SOVIET.IL_2_STURMOVIK_ADVANCED_MP\",\"detail\":\"EBP.SOVIET.IL_2_STURMOVIK_ADVANCED_MP\"},{\"id\":\"EBP.SOVIET.IL_2_STURMOVIK_ANTI_TANK_BOMB_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.IL_2_STURMOVIK_ANTI_TANK_BOMB_MP\",\"documentation\":\"EBP.SOVIET.IL_2_STURMOVIK_ANTI_TANK_BOMB_MP\",\"detail\":\"EBP.SOVIET.IL_2_STURMOVIK_ANTI_TANK_BOMB_MP\"},{\"id\":\"EBP.SOVIET.IL_2_STURMOVIK_MARK_VEHICLE_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.IL_2_STURMOVIK_MARK_VEHICLE_MP\",\"documentation\":\"EBP.SOVIET.IL_2_STURMOVIK_MARK_VEHICLE_MP\",\"detail\":\"EBP.SOVIET.IL_2_STURMOVIK_MARK_VEHICLE_MP\"},{\"id\":\"EBP.SOVIET.IL_2_STURMOVIK_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.IL_2_STURMOVIK_MP\",\"documentation\":\"EBP.SOVIET.IL_2_STURMOVIK_MP\",\"detail\":\"EBP.SOVIET.IL_2_STURMOVIK_MP\"},{\"id\":\"EBP.SOVIET.IL_2_STURMOVIK_RECON\",\"kind\":17,\"label\":\"EBP.SOVIET.IL_2_STURMOVIK_RECON\",\"documentation\":\"EBP.SOVIET.IL_2_STURMOVIK_RECON\",\"detail\":\"EBP.SOVIET.IL_2_STURMOVIK_RECON\"},{\"id\":\"EBP.SOVIET.IL_2_STURMOVIK_RECON_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.IL_2_STURMOVIK_RECON_MP\",\"documentation\":\"EBP.SOVIET.IL_2_STURMOVIK_RECON_MP\",\"detail\":\"EBP.SOVIET.IL_2_STURMOVIK_RECON_MP\"},{\"id\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET\",\"kind\":17,\"label\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET\",\"documentation\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET\",\"detail\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET\"},{\"id\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET_MP\",\"documentation\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET_MP\",\"detail\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET_MP\"},{\"id\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP\",\"kind\":17,\"label\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP\",\"documentation\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP\",\"detail\":\"EBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP\"},{\"id\":\"EBP.SOVIET.IL_2_STURMOVIK_VICTORY_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.IL_2_STURMOVIK_VICTORY_MP\",\"documentation\":\"EBP.SOVIET.IL_2_STURMOVIK_VICTORY_MP\",\"detail\":\"EBP.SOVIET.IL_2_STURMOVIK_VICTORY_MP\"},{\"id\":\"EBP.SOVIET.IS_2_HEAVY_TANK\",\"kind\":17,\"label\":\"EBP.SOVIET.IS_2_HEAVY_TANK\",\"documentation\":\"EBP.SOVIET.IS_2_HEAVY_TANK\",\"detail\":\"EBP.SOVIET.IS_2_HEAVY_TANK\"},{\"id\":\"EBP.SOVIET.IS_2_HEAVY_TANK_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.IS_2_HEAVY_TANK_MP\",\"documentation\":\"EBP.SOVIET.IS_2_HEAVY_TANK_MP\",\"detail\":\"EBP.SOVIET.IS_2_HEAVY_TANK_MP\"},{\"id\":\"EBP.SOVIET.ISAKOVICH_A01_COMMANDER\",\"kind\":17,\"label\":\"EBP.SOVIET.ISAKOVICH_A01_COMMANDER\",\"documentation\":\"EBP.SOVIET.ISAKOVICH_A01_COMMANDER\",\"detail\":\"EBP.SOVIET.ISAKOVICH_A01_COMMANDER\"},{\"id\":\"EBP.SOVIET.ISAKOVICH_M06\",\"kind\":17,\"label\":\"EBP.SOVIET.ISAKOVICH_M06\",\"documentation\":\"EBP.SOVIET.ISAKOVICH_M06\",\"detail\":\"EBP.SOVIET.ISAKOVICH_M06\"},{\"id\":\"EBP.SOVIET.ISU_152_SPG\",\"kind\":17,\"label\":\"EBP.SOVIET.ISU_152_SPG\",\"documentation\":\"EBP.SOVIET.ISU_152_SPG\",\"detail\":\"EBP.SOVIET.ISU_152_SPG\"},{\"id\":\"EBP.SOVIET.ISU_152_SPG_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.ISU_152_SPG_MP\",\"documentation\":\"EBP.SOVIET.ISU_152_SPG_MP\",\"detail\":\"EBP.SOVIET.ISU_152_SPG_MP\"},{\"id\":\"EBP.SOVIET.KATYUSHA_BM_13N\",\"kind\":17,\"label\":\"EBP.SOVIET.KATYUSHA_BM_13N\",\"documentation\":\"EBP.SOVIET.KATYUSHA_BM_13N\",\"detail\":\"EBP.SOVIET.KATYUSHA_BM_13N\"},{\"id\":\"EBP.SOVIET.KATYUSHA_BM_13N_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.KATYUSHA_BM_13N_MP\",\"documentation\":\"EBP.SOVIET.KATYUSHA_BM_13N_MP\",\"detail\":\"EBP.SOVIET.KATYUSHA_BM_13N_MP\"},{\"id\":\"EBP.SOVIET.KV_1\",\"kind\":17,\"label\":\"EBP.SOVIET.KV_1\",\"documentation\":\"EBP.SOVIET.KV_1\",\"detail\":\"EBP.SOVIET.KV_1\"},{\"id\":\"EBP.SOVIET.KV_1_COMMANDER_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.KV_1_COMMANDER_MP\",\"documentation\":\"EBP.SOVIET.KV_1_COMMANDER_MP\",\"detail\":\"EBP.SOVIET.KV_1_COMMANDER_MP\"},{\"id\":\"EBP.SOVIET.KV_1_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.KV_1_MP\",\"documentation\":\"EBP.SOVIET.KV_1_MP\",\"detail\":\"EBP.SOVIET.KV_1_MP\"},{\"id\":\"EBP.SOVIET.KV_2\",\"kind\":17,\"label\":\"EBP.SOVIET.KV_2\",\"documentation\":\"EBP.SOVIET.KV_2\",\"detail\":\"EBP.SOVIET.KV_2\"},{\"id\":\"EBP.SOVIET.KV_2_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.KV_2_MP\",\"documentation\":\"EBP.SOVIET.KV_2_MP\",\"detail\":\"EBP.SOVIET.KV_2_MP\"},{\"id\":\"EBP.SOVIET.KV_2_TOW\",\"kind\":17,\"label\":\"EBP.SOVIET.KV_2_TOW\",\"documentation\":\"EBP.SOVIET.KV_2_TOW\",\"detail\":\"EBP.SOVIET.KV_2_TOW\"},{\"id\":\"EBP.SOVIET.KV_8\",\"kind\":17,\"label\":\"EBP.SOVIET.KV_8\",\"documentation\":\"EBP.SOVIET.KV_8\",\"detail\":\"EBP.SOVIET.KV_8\"},{\"id\":\"EBP.SOVIET.KV_8_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.KV_8_MP\",\"documentation\":\"EBP.SOVIET.KV_8_MP\",\"detail\":\"EBP.SOVIET.KV_8_MP\"},{\"id\":\"EBP.SOVIET.LIGHT_ANTI_VEHICLE_MINES\",\"kind\":17,\"label\":\"EBP.SOVIET.LIGHT_ANTI_VEHICLE_MINES\",\"documentation\":\"EBP.SOVIET.LIGHT_ANTI_VEHICLE_MINES\",\"detail\":\"EBP.SOVIET.LIGHT_ANTI_VEHICLE_MINES\"},{\"id\":\"EBP.SOVIET.M01_BASE_CONSCRIPT_SOLDIER\",\"kind\":17,\"label\":\"EBP.SOVIET.M01_BASE_CONSCRIPT_SOLDIER\",\"documentation\":\"EBP.SOVIET.M01_BASE_CONSCRIPT_SOLDIER\",\"detail\":\"EBP.SOVIET.M01_BASE_CONSCRIPT_SOLDIER\"},{\"id\":\"EBP.SOVIET.M01_BASE_CONSCRIPT_SOLDIER_DURABLE\",\"kind\":17,\"label\":\"EBP.SOVIET.M01_BASE_CONSCRIPT_SOLDIER_DURABLE\",\"documentation\":\"EBP.SOVIET.M01_BASE_CONSCRIPT_SOLDIER_DURABLE\",\"detail\":\"EBP.SOVIET.M01_BASE_CONSCRIPT_SOLDIER_DURABLE\"},{\"id\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER\",\"kind\":17,\"label\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER\",\"documentation\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER\",\"detail\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER\"},{\"id\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_DOCK\",\"kind\":17,\"label\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_DOCK\",\"documentation\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_DOCK\",\"detail\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_DOCK\"},{\"id\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_HARMLESS\",\"kind\":17,\"label\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_HARMLESS\",\"documentation\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_HARMLESS\",\"detail\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_HARMLESS\"},{\"id\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_HARMLESS_DURABLE\",\"kind\":17,\"label\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_HARMLESS_DURABLE\",\"documentation\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_HARMLESS_DURABLE\",\"detail\":\"EBP.SOVIET.M01_CONSCRIPT_SOLDIER_HARMLESS_DURABLE\"},{\"id\":\"EBP.SOVIET.M01_IL_2_STURMOVIK_ROCKET\",\"kind\":17,\"label\":\"EBP.SOVIET.M01_IL_2_STURMOVIK_ROCKET\",\"documentation\":\"EBP.SOVIET.M01_IL_2_STURMOVIK_ROCKET\",\"detail\":\"EBP.SOVIET.M01_IL_2_STURMOVIK_ROCKET\"},{\"id\":\"EBP.SOVIET.M01_IL2_DOGFIGHT\",\"kind\":17,\"label\":\"EBP.SOVIET.M01_IL2_DOGFIGHT\",\"documentation\":\"EBP.SOVIET.M01_IL2_DOGFIGHT\",\"detail\":\"EBP.SOVIET.M01_IL2_DOGFIGHT\"},{\"id\":\"EBP.SOVIET.M01_MEDIC\",\"kind\":17,\"label\":\"EBP.SOVIET.M01_MEDIC\",\"documentation\":\"EBP.SOVIET.M01_MEDIC\",\"detail\":\"EBP.SOVIET.M01_MEDIC\"},{\"id\":\"EBP.SOVIET.M08_T_34_76_SMALLPATH\",\"kind\":17,\"label\":\"EBP.SOVIET.M08_T_34_76_SMALLPATH\",\"documentation\":\"EBP.SOVIET.M08_T_34_76_SMALLPATH\",\"detail\":\"EBP.SOVIET.M08_T_34_76_SMALLPATH\"},{\"id\":\"EBP.SOVIET.M08_TANK_BUSTER_CONSCRIPT\",\"kind\":17,\"label\":\"EBP.SOVIET.M08_TANK_BUSTER_CONSCRIPT\",\"documentation\":\"EBP.SOVIET.M08_TANK_BUSTER_CONSCRIPT\",\"detail\":\"EBP.SOVIET.M08_TANK_BUSTER_CONSCRIPT\"},{\"id\":\"EBP.SOVIET.M11_ANIA_SNIPER\",\"kind\":17,\"label\":\"EBP.SOVIET.M11_ANIA_SNIPER\",\"documentation\":\"EBP.SOVIET.M11_ANIA_SNIPER\",\"detail\":\"EBP.SOVIET.M11_ANIA_SNIPER\"},{\"id\":\"EBP.SOVIET.M11_ISAKOVICH_RECON\",\"kind\":17,\"label\":\"EBP.SOVIET.M11_ISAKOVICH_RECON\",\"documentation\":\"EBP.SOVIET.M11_ISAKOVICH_RECON\",\"detail\":\"EBP.SOVIET.M11_ISAKOVICH_RECON\"},{\"id\":\"EBP.SOVIET.M11_PARTISAN_TROOP_KAR98K\",\"kind\":17,\"label\":\"EBP.SOVIET.M11_PARTISAN_TROOP_KAR98K\",\"documentation\":\"EBP.SOVIET.M11_PARTISAN_TROOP_KAR98K\",\"detail\":\"EBP.SOVIET.M11_PARTISAN_TROOP_KAR98K\"},{\"id\":\"EBP.SOVIET.M11_PARTISAN_TROOP_NAGANT\",\"kind\":17,\"label\":\"EBP.SOVIET.M11_PARTISAN_TROOP_NAGANT\",\"documentation\":\"EBP.SOVIET.M11_PARTISAN_TROOP_NAGANT\",\"detail\":\"EBP.SOVIET.M11_PARTISAN_TROOP_NAGANT\"},{\"id\":\"EBP.SOVIET.M11_PARTISAN_TROOP_NOWEAPON\",\"kind\":17,\"label\":\"EBP.SOVIET.M11_PARTISAN_TROOP_NOWEAPON\",\"documentation\":\"EBP.SOVIET.M11_PARTISAN_TROOP_NOWEAPON\",\"detail\":\"EBP.SOVIET.M11_PARTISAN_TROOP_NOWEAPON\"},{\"id\":\"EBP.SOVIET.M11_SNIPER\",\"kind\":17,\"label\":\"EBP.SOVIET.M11_SNIPER\",\"documentation\":\"EBP.SOVIET.M11_SNIPER\",\"detail\":\"EBP.SOVIET.M11_SNIPER\"},{\"id\":\"EBP.SOVIET.M11_SNIPER_RECON\",\"kind\":17,\"label\":\"EBP.SOVIET.M11_SNIPER_RECON\",\"documentation\":\"EBP.SOVIET.M11_SNIPER_RECON\",\"detail\":\"EBP.SOVIET.M11_SNIPER_RECON\"},{\"id\":\"EBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN\",\"kind\":17,\"label\":\"EBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN\",\"documentation\":\"EBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN\",\"detail\":\"EBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN\"},{\"id\":\"EBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_MP\",\"documentation\":\"EBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_MP\",\"detail\":\"EBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_MP\"},{\"id\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY\",\"kind\":17,\"label\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY\",\"documentation\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY\",\"detail\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY\"},{\"id\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_COMMANDER_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_COMMANDER_MP\",\"documentation\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_COMMANDER_MP\",\"detail\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_COMMANDER_MP\"},{\"id\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_MP\",\"documentation\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_MP\",\"detail\":\"EBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_MP\"},{\"id\":\"EBP.SOVIET.M1937_152MM_ML_20_ARTILLERY\",\"kind\":17,\"label\":\"EBP.SOVIET.M1937_152MM_ML_20_ARTILLERY\",\"documentation\":\"EBP.SOVIET.M1937_152MM_ML_20_ARTILLERY\",\"detail\":\"EBP.SOVIET.M1937_152MM_ML_20_ARTILLERY\"},{\"id\":\"EBP.SOVIET.M1937_152MM_ML_20_ARTILLERY_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.M1937_152MM_ML_20_ARTILLERY_MP\",\"documentation\":\"EBP.SOVIET.M1937_152MM_ML_20_ARTILLERY_MP\",\"detail\":\"EBP.SOVIET.M1937_152MM_ML_20_ARTILLERY_MP\"},{\"id\":\"EBP.SOVIET.M1937_53_K_45MM_AT_GUN\",\"kind\":17,\"label\":\"EBP.SOVIET.M1937_53_K_45MM_AT_GUN\",\"documentation\":\"EBP.SOVIET.M1937_53_K_45MM_AT_GUN\",\"detail\":\"EBP.SOVIET.M1937_53_K_45MM_AT_GUN\"},{\"id\":\"EBP.SOVIET.M1937_53_K_45MM_AT_GUN_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.M1937_53_K_45MM_AT_GUN_MP\",\"documentation\":\"EBP.SOVIET.M1937_53_K_45MM_AT_GUN_MP\",\"detail\":\"EBP.SOVIET.M1937_53_K_45MM_AT_GUN_MP\"},{\"id\":\"EBP.SOVIET.M1942_76MM_DIVISIONAL_GUN_ZIS_3\",\"kind\":17,\"label\":\"EBP.SOVIET.M1942_76MM_DIVISIONAL_GUN_ZIS_3\",\"documentation\":\"EBP.SOVIET.M1942_76MM_DIVISIONAL_GUN_ZIS_3\",\"detail\":\"EBP.SOVIET.M1942_76MM_DIVISIONAL_GUN_ZIS_3\"},{\"id\":\"EBP.SOVIET.M1942_76MM_DIVISIONAL_GUN_ZIS_3_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.M1942_76MM_DIVISIONAL_GUN_ZIS_3_MP\",\"documentation\":\"EBP.SOVIET.M1942_76MM_DIVISIONAL_GUN_ZIS_3_MP\",\"detail\":\"EBP.SOVIET.M1942_76MM_DIVISIONAL_GUN_ZIS_3_MP\"},{\"id\":\"EBP.SOVIET.M3A1_SCOUT_CAR\",\"kind\":17,\"label\":\"EBP.SOVIET.M3A1_SCOUT_CAR\",\"documentation\":\"EBP.SOVIET.M3A1_SCOUT_CAR\",\"detail\":\"EBP.SOVIET.M3A1_SCOUT_CAR\"},{\"id\":\"EBP.SOVIET.M3A1_SCOUT_CAR_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.M3A1_SCOUT_CAR_MP\",\"documentation\":\"EBP.SOVIET.M3A1_SCOUT_CAR_MP\",\"detail\":\"EBP.SOVIET.M3A1_SCOUT_CAR_MP\"},{\"id\":\"EBP.SOVIET.M5_HALFTRACK\",\"kind\":17,\"label\":\"EBP.SOVIET.M5_HALFTRACK\",\"documentation\":\"EBP.SOVIET.M5_HALFTRACK\",\"detail\":\"EBP.SOVIET.M5_HALFTRACK\"},{\"id\":\"EBP.SOVIET.M5_HALFTRACK_ASSAULT_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.M5_HALFTRACK_ASSAULT_MP\",\"documentation\":\"EBP.SOVIET.M5_HALFTRACK_ASSAULT_MP\",\"detail\":\"EBP.SOVIET.M5_HALFTRACK_ASSAULT_MP\"},{\"id\":\"EBP.SOVIET.M5_HALFTRACK_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.M5_HALFTRACK_MP\",\"documentation\":\"EBP.SOVIET.M5_HALFTRACK_MP\",\"detail\":\"EBP.SOVIET.M5_HALFTRACK_MP\"},{\"id\":\"EBP.SOVIET.MACHINE_GUN_NEST\",\"kind\":17,\"label\":\"EBP.SOVIET.MACHINE_GUN_NEST\",\"documentation\":\"EBP.SOVIET.MACHINE_GUN_NEST\",\"detail\":\"EBP.SOVIET.MACHINE_GUN_NEST\"},{\"id\":\"EBP.SOVIET.MACHINE_GUN_NEST_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.MACHINE_GUN_NEST_MP\",\"documentation\":\"EBP.SOVIET.MACHINE_GUN_NEST_MP\",\"detail\":\"EBP.SOVIET.MACHINE_GUN_NEST_MP\"},{\"id\":\"EBP.SOVIET.MAXIM_WEAPON_CREW\",\"kind\":17,\"label\":\"EBP.SOVIET.MAXIM_WEAPON_CREW\",\"documentation\":\"EBP.SOVIET.MAXIM_WEAPON_CREW\",\"detail\":\"EBP.SOVIET.MAXIM_WEAPON_CREW\"},{\"id\":\"EBP.SOVIET.MAXIM_WEAPON_CREW_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.MAXIM_WEAPON_CREW_MP\",\"documentation\":\"EBP.SOVIET.MAXIM_WEAPON_CREW_MP\",\"detail\":\"EBP.SOVIET.MAXIM_WEAPON_CREW_MP\"},{\"id\":\"EBP.SOVIET.MEDIC\",\"kind\":17,\"label\":\"EBP.SOVIET.MEDIC\",\"documentation\":\"EBP.SOVIET.MEDIC\",\"detail\":\"EBP.SOVIET.MEDIC\"},{\"id\":\"EBP.SOVIET.MEDIC_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.MEDIC_MP\",\"documentation\":\"EBP.SOVIET.MEDIC_MP\",\"detail\":\"EBP.SOVIET.MEDIC_MP\"},{\"id\":\"EBP.SOVIET.MORTAR_120MM_WEAPON_CREW_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.MORTAR_120MM_WEAPON_CREW_MP\",\"documentation\":\"EBP.SOVIET.MORTAR_120MM_WEAPON_CREW_MP\",\"detail\":\"EBP.SOVIET.MORTAR_120MM_WEAPON_CREW_MP\"},{\"id\":\"EBP.SOVIET.MORTAR_WEAPON_CREW\",\"kind\":17,\"label\":\"EBP.SOVIET.MORTAR_WEAPON_CREW\",\"documentation\":\"EBP.SOVIET.MORTAR_WEAPON_CREW\",\"detail\":\"EBP.SOVIET.MORTAR_WEAPON_CREW\"},{\"id\":\"EBP.SOVIET.MORTAR_WEAPON_CREW_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.MORTAR_WEAPON_CREW_MP\",\"documentation\":\"EBP.SOVIET.MORTAR_WEAPON_CREW_MP\",\"detail\":\"EBP.SOVIET.MORTAR_WEAPON_CREW_MP\"},{\"id\":\"EBP.SOVIET.MOTORPOOL\",\"kind\":17,\"label\":\"EBP.SOVIET.MOTORPOOL\",\"documentation\":\"EBP.SOVIET.MOTORPOOL\",\"detail\":\"EBP.SOVIET.MOTORPOOL\"},{\"id\":\"EBP.SOVIET.MOTORPOOL_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.MOTORPOOL_MP\",\"documentation\":\"EBP.SOVIET.MOTORPOOL_MP\",\"detail\":\"EBP.SOVIET.MOTORPOOL_MP\"},{\"id\":\"EBP.SOVIET.OBSERVATION_POST_FUEL\",\"kind\":17,\"label\":\"EBP.SOVIET.OBSERVATION_POST_FUEL\",\"documentation\":\"EBP.SOVIET.OBSERVATION_POST_FUEL\",\"detail\":\"EBP.SOVIET.OBSERVATION_POST_FUEL\"},{\"id\":\"EBP.SOVIET.OBSERVATION_POST_FUEL_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.OBSERVATION_POST_FUEL_MP\",\"documentation\":\"EBP.SOVIET.OBSERVATION_POST_FUEL_MP\",\"detail\":\"EBP.SOVIET.OBSERVATION_POST_FUEL_MP\"},{\"id\":\"EBP.SOVIET.OBSERVATION_POST_MUNITION\",\"kind\":17,\"label\":\"EBP.SOVIET.OBSERVATION_POST_MUNITION\",\"documentation\":\"EBP.SOVIET.OBSERVATION_POST_MUNITION\",\"detail\":\"EBP.SOVIET.OBSERVATION_POST_MUNITION\"},{\"id\":\"EBP.SOVIET.OBSERVATION_POST_MUNITION_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.OBSERVATION_POST_MUNITION_MP\",\"documentation\":\"EBP.SOVIET.OBSERVATION_POST_MUNITION_MP\",\"detail\":\"EBP.SOVIET.OBSERVATION_POST_MUNITION_MP\"},{\"id\":\"EBP.SOVIET.PARTISAN_SNIPER\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_SNIPER\",\"documentation\":\"EBP.SOVIET.PARTISAN_SNIPER\",\"detail\":\"EBP.SOVIET.PARTISAN_SNIPER\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_2\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_2\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_2\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_2\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_2_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_2_MP\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_2_MP\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_2_MP\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_MP\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_MP\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_MP\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_TOW_BD\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_TOW_BD\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_TOW_BD\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_TOW_BD\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_TOW_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_TOW_MP\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_TOW_MP\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOP_KAR98K_TOW_MP\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT_MP\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT_MP\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT_MP\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT_TOW_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT_TOW_MP\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT_TOW_MP\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOP_NAGANT_TOW_MP\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOPS_ANTITANK\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOPS_ANTITANK\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOPS_ANTITANK\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOPS_ANTITANK\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOPS_LMG\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOPS_LMG\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOPS_LMG\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOPS_LMG\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOPS_RIFLE\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOPS_RIFLE\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOPS_RIFLE\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOPS_RIFLE\"},{\"id\":\"EBP.SOVIET.PARTISAN_TROOPS_SMG\",\"kind\":17,\"label\":\"EBP.SOVIET.PARTISAN_TROOPS_SMG\",\"documentation\":\"EBP.SOVIET.PARTISAN_TROOPS_SMG\",\"detail\":\"EBP.SOVIET.PARTISAN_TROOPS_SMG\"},{\"id\":\"EBP.SOVIET.PENAL_BATTALION_TROOPS\",\"kind\":17,\"label\":\"EBP.SOVIET.PENAL_BATTALION_TROOPS\",\"documentation\":\"EBP.SOVIET.PENAL_BATTALION_TROOPS\",\"detail\":\"EBP.SOVIET.PENAL_BATTALION_TROOPS\"},{\"id\":\"EBP.SOVIET.PENAL_BATTALION_TROOPS_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.PENAL_BATTALION_TROOPS_MP\",\"documentation\":\"EBP.SOVIET.PENAL_BATTALION_TROOPS_MP\",\"detail\":\"EBP.SOVIET.PENAL_BATTALION_TROOPS_MP\"},{\"id\":\"EBP.SOVIET.PM41_82MM_MORTAR\",\"kind\":17,\"label\":\"EBP.SOVIET.PM41_82MM_MORTAR\",\"documentation\":\"EBP.SOVIET.PM41_82MM_MORTAR\",\"detail\":\"EBP.SOVIET.PM41_82MM_MORTAR\"},{\"id\":\"EBP.SOVIET.PM41_82MM_MORTAR_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.PM41_82MM_MORTAR_MP\",\"documentation\":\"EBP.SOVIET.PM41_82MM_MORTAR_MP\",\"detail\":\"EBP.SOVIET.PM41_82MM_MORTAR_MP\"},{\"id\":\"EBP.SOVIET.REFUGEE_FEMALE\",\"kind\":17,\"label\":\"EBP.SOVIET.REFUGEE_FEMALE\",\"documentation\":\"EBP.SOVIET.REFUGEE_FEMALE\",\"detail\":\"EBP.SOVIET.REFUGEE_FEMALE\"},{\"id\":\"EBP.SOVIET.REFUGEE_FEMALE_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.REFUGEE_FEMALE_MP\",\"documentation\":\"EBP.SOVIET.REFUGEE_FEMALE_MP\",\"detail\":\"EBP.SOVIET.REFUGEE_FEMALE_MP\"},{\"id\":\"EBP.SOVIET.REFUGEE_MALE\",\"kind\":17,\"label\":\"EBP.SOVIET.REFUGEE_MALE\",\"documentation\":\"EBP.SOVIET.REFUGEE_MALE\",\"detail\":\"EBP.SOVIET.REFUGEE_MALE\"},{\"id\":\"EBP.SOVIET.REFUGEE_MALE_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.REFUGEE_MALE_MP\",\"documentation\":\"EBP.SOVIET.REFUGEE_MALE_MP\",\"detail\":\"EBP.SOVIET.REFUGEE_MALE_MP\"},{\"id\":\"EBP.SOVIET.REPAIR_ENGINEER\",\"kind\":17,\"label\":\"EBP.SOVIET.REPAIR_ENGINEER\",\"documentation\":\"EBP.SOVIET.REPAIR_ENGINEER\",\"detail\":\"EBP.SOVIET.REPAIR_ENGINEER\"},{\"id\":\"EBP.SOVIET.REPAIR_ENGINEER_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.REPAIR_ENGINEER_MP\",\"documentation\":\"EBP.SOVIET.REPAIR_ENGINEER_MP\",\"detail\":\"EBP.SOVIET.REPAIR_ENGINEER_MP\"},{\"id\":\"EBP.SOVIET.REPAIR_STATION_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.REPAIR_STATION_MP\",\"documentation\":\"EBP.SOVIET.REPAIR_STATION_MP\",\"detail\":\"EBP.SOVIET.REPAIR_STATION_MP\"},{\"id\":\"EBP.SOVIET.SAND_BAG_SOVIET\",\"kind\":17,\"label\":\"EBP.SOVIET.SAND_BAG_SOVIET\",\"documentation\":\"EBP.SOVIET.SAND_BAG_SOVIET\",\"detail\":\"EBP.SOVIET.SAND_BAG_SOVIET\"},{\"id\":\"EBP.SOVIET.SAND_BAG_SOVIET_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.SAND_BAG_SOVIET_MP\",\"documentation\":\"EBP.SOVIET.SAND_BAG_SOVIET_MP\",\"detail\":\"EBP.SOVIET.SAND_BAG_SOVIET_MP\"},{\"id\":\"EBP.SOVIET.SAND_BAG_SOVIET_TUTORIAL\",\"kind\":17,\"label\":\"EBP.SOVIET.SAND_BAG_SOVIET_TUTORIAL\",\"documentation\":\"EBP.SOVIET.SAND_BAG_SOVIET_TUTORIAL\",\"detail\":\"EBP.SOVIET.SAND_BAG_SOVIET_TUTORIAL\"},{\"id\":\"EBP.SOVIET.SHERMAN_SOVIET\",\"kind\":17,\"label\":\"EBP.SOVIET.SHERMAN_SOVIET\",\"documentation\":\"EBP.SOVIET.SHERMAN_SOVIET\",\"detail\":\"EBP.SOVIET.SHERMAN_SOVIET\"},{\"id\":\"EBP.SOVIET.SHOCK_TROOPS\",\"kind\":17,\"label\":\"EBP.SOVIET.SHOCK_TROOPS\",\"documentation\":\"EBP.SOVIET.SHOCK_TROOPS\",\"detail\":\"EBP.SOVIET.SHOCK_TROOPS\"},{\"id\":\"EBP.SOVIET.SHOCK_TROOPS_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.SHOCK_TROOPS_MP\",\"documentation\":\"EBP.SOVIET.SHOCK_TROOPS_MP\",\"detail\":\"EBP.SOVIET.SHOCK_TROOPS_MP\"},{\"id\":\"EBP.SOVIET.SNIPER\",\"kind\":17,\"label\":\"EBP.SOVIET.SNIPER\",\"documentation\":\"EBP.SOVIET.SNIPER\",\"detail\":\"EBP.SOVIET.SNIPER\"},{\"id\":\"EBP.SOVIET.SNIPER_ATK_TARGET\",\"kind\":17,\"label\":\"EBP.SOVIET.SNIPER_ATK_TARGET\",\"documentation\":\"EBP.SOVIET.SNIPER_ATK_TARGET\",\"detail\":\"EBP.SOVIET.SNIPER_ATK_TARGET\"},{\"id\":\"EBP.SOVIET.SNIPER_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.SNIPER_MP\",\"documentation\":\"EBP.SOVIET.SNIPER_MP\",\"detail\":\"EBP.SOVIET.SNIPER_MP\"},{\"id\":\"EBP.SOVIET.SNIPER_RECON\",\"kind\":17,\"label\":\"EBP.SOVIET.SNIPER_RECON\",\"documentation\":\"EBP.SOVIET.SNIPER_RECON\",\"detail\":\"EBP.SOVIET.SNIPER_RECON\"},{\"id\":\"EBP.SOVIET.SNIPER_RECON_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.SNIPER_RECON_MP\",\"documentation\":\"EBP.SOVIET.SNIPER_RECON_MP\",\"detail\":\"EBP.SOVIET.SNIPER_RECON_MP\"},{\"id\":\"EBP.SOVIET.SOVIET_ALLIED_CARGO_PLANE\",\"kind\":17,\"label\":\"EBP.SOVIET.SOVIET_ALLIED_CARGO_PLANE\",\"documentation\":\"EBP.SOVIET.SOVIET_ALLIED_CARGO_PLANE\",\"detail\":\"EBP.SOVIET.SOVIET_ALLIED_CARGO_PLANE\"},{\"id\":\"EBP.SOVIET.SOVIET_BASE_STAMPER\",\"kind\":17,\"label\":\"EBP.SOVIET.SOVIET_BASE_STAMPER\",\"documentation\":\"EBP.SOVIET.SOVIET_BASE_STAMPER\",\"detail\":\"EBP.SOVIET.SOVIET_BASE_STAMPER\"},{\"id\":\"EBP.SOVIET.SOVIET_MINE\",\"kind\":17,\"label\":\"EBP.SOVIET.SOVIET_MINE\",\"documentation\":\"EBP.SOVIET.SOVIET_MINE\",\"detail\":\"EBP.SOVIET.SOVIET_MINE\"},{\"id\":\"EBP.SOVIET.SOVIET_MINE_M08\",\"kind\":17,\"label\":\"EBP.SOVIET.SOVIET_MINE_M08\",\"documentation\":\"EBP.SOVIET.SOVIET_MINE_M08\",\"detail\":\"EBP.SOVIET.SOVIET_MINE_M08\"},{\"id\":\"EBP.SOVIET.SOVIET_MINE_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.SOVIET_MINE_MP\",\"documentation\":\"EBP.SOVIET.SOVIET_MINE_MP\",\"detail\":\"EBP.SOVIET.SOVIET_MINE_MP\"},{\"id\":\"EBP.SOVIET.SOVIET_MINE_SP\",\"kind\":17,\"label\":\"EBP.SOVIET.SOVIET_MINE_SP\",\"documentation\":\"EBP.SOVIET.SOVIET_MINE_SP\",\"detail\":\"EBP.SOVIET.SOVIET_MINE_SP\"},{\"id\":\"EBP.SOVIET.SOVIET_MINE_TOW\",\"kind\":17,\"label\":\"EBP.SOVIET.SOVIET_MINE_TOW\",\"documentation\":\"EBP.SOVIET.SOVIET_MINE_TOW\",\"detail\":\"EBP.SOVIET.SOVIET_MINE_TOW\"},{\"id\":\"EBP.SOVIET.SOVIET_OFFICER\",\"kind\":17,\"label\":\"EBP.SOVIET.SOVIET_OFFICER\",\"documentation\":\"EBP.SOVIET.SOVIET_OFFICER\",\"detail\":\"EBP.SOVIET.SOVIET_OFFICER\"},{\"id\":\"EBP.SOVIET.SOVIET_OFFICER_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.SOVIET_OFFICER_MP\",\"documentation\":\"EBP.SOVIET.SOVIET_OFFICER_MP\",\"detail\":\"EBP.SOVIET.SOVIET_OFFICER_MP\"},{\"id\":\"EBP.SOVIET.STEAM_TRAIN\",\"kind\":17,\"label\":\"EBP.SOVIET.STEAM_TRAIN\",\"documentation\":\"EBP.SOVIET.STEAM_TRAIN\",\"detail\":\"EBP.SOVIET.STEAM_TRAIN\"},{\"id\":\"EBP.SOVIET.SU_76M\",\"kind\":17,\"label\":\"EBP.SOVIET.SU_76M\",\"documentation\":\"EBP.SOVIET.SU_76M\",\"detail\":\"EBP.SOVIET.SU_76M\"},{\"id\":\"EBP.SOVIET.SU_76M_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.SU_76M_MP\",\"documentation\":\"EBP.SOVIET.SU_76M_MP\",\"detail\":\"EBP.SOVIET.SU_76M_MP\"},{\"id\":\"EBP.SOVIET.SU_85\",\"kind\":17,\"label\":\"EBP.SOVIET.SU_85\",\"documentation\":\"EBP.SOVIET.SU_85\",\"detail\":\"EBP.SOVIET.SU_85\"},{\"id\":\"EBP.SOVIET.SU_85_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.SU_85_MP\",\"documentation\":\"EBP.SOVIET.SU_85_MP\",\"detail\":\"EBP.SOVIET.SU_85_MP\"},{\"id\":\"EBP.SOVIET.T_34_76\",\"kind\":17,\"label\":\"EBP.SOVIET.T_34_76\",\"documentation\":\"EBP.SOVIET.T_34_76\",\"detail\":\"EBP.SOVIET.T_34_76\"},{\"id\":\"EBP.SOVIET.T_34_76_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.T_34_76_MP\",\"documentation\":\"EBP.SOVIET.T_34_76_MP\",\"detail\":\"EBP.SOVIET.T_34_76_MP\"},{\"id\":\"EBP.SOVIET.T_34_85\",\"kind\":17,\"label\":\"EBP.SOVIET.T_34_85\",\"documentation\":\"EBP.SOVIET.T_34_85\",\"detail\":\"EBP.SOVIET.T_34_85\"},{\"id\":\"EBP.SOVIET.T_34_85_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.T_34_85_MP\",\"documentation\":\"EBP.SOVIET.T_34_85_MP\",\"detail\":\"EBP.SOVIET.T_34_85_MP\"},{\"id\":\"EBP.SOVIET.T_70M\",\"kind\":17,\"label\":\"EBP.SOVIET.T_70M\",\"documentation\":\"EBP.SOVIET.T_70M\",\"detail\":\"EBP.SOVIET.T_70M\"},{\"id\":\"EBP.SOVIET.T_70M_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.T_70M_MP\",\"documentation\":\"EBP.SOVIET.T_70M_MP\",\"detail\":\"EBP.SOVIET.T_70M_MP\"},{\"id\":\"EBP.SOVIET.TANK_DEPOT\",\"kind\":17,\"label\":\"EBP.SOVIET.TANK_DEPOT\",\"documentation\":\"EBP.SOVIET.TANK_DEPOT\",\"detail\":\"EBP.SOVIET.TANK_DEPOT\"},{\"id\":\"EBP.SOVIET.TANK_DEPOT_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.TANK_DEPOT_MP\",\"documentation\":\"EBP.SOVIET.TANK_DEPOT_MP\",\"detail\":\"EBP.SOVIET.TANK_DEPOT_MP\"},{\"id\":\"EBP.SOVIET.TANKTRAP\",\"kind\":17,\"label\":\"EBP.SOVIET.TANKTRAP\",\"documentation\":\"EBP.SOVIET.TANKTRAP\",\"detail\":\"EBP.SOVIET.TANKTRAP\"},{\"id\":\"EBP.SOVIET.TOW_COLD_WEAETHER_GUARD_TROOPS\",\"kind\":17,\"label\":\"EBP.SOVIET.TOW_COLD_WEAETHER_GUARD_TROOPS\",\"documentation\":\"EBP.SOVIET.TOW_COLD_WEAETHER_GUARD_TROOPS\",\"detail\":\"EBP.SOVIET.TOW_COLD_WEAETHER_GUARD_TROOPS\"},{\"id\":\"EBP.SOVIET.US6_TRUCK\",\"kind\":17,\"label\":\"EBP.SOVIET.US6_TRUCK\",\"documentation\":\"EBP.SOVIET.US6_TRUCK\",\"detail\":\"EBP.SOVIET.US6_TRUCK\"},{\"id\":\"EBP.SOVIET.US6_TRUCK_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.US6_TRUCK_MP\",\"documentation\":\"EBP.SOVIET.US6_TRUCK_MP\",\"detail\":\"EBP.SOVIET.US6_TRUCK_MP\"},{\"id\":\"EBP.SOVIET.WEAPON_SUPPORT_CENTER\",\"kind\":17,\"label\":\"EBP.SOVIET.WEAPON_SUPPORT_CENTER\",\"documentation\":\"EBP.SOVIET.WEAPON_SUPPORT_CENTER\",\"detail\":\"EBP.SOVIET.WEAPON_SUPPORT_CENTER\"},{\"id\":\"EBP.SOVIET.WEAPON_SUPPORT_CENTER_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.WEAPON_SUPPORT_CENTER_MP\",\"documentation\":\"EBP.SOVIET.WEAPON_SUPPORT_CENTER_MP\",\"detail\":\"EBP.SOVIET.WEAPON_SUPPORT_CENTER_MP\"},{\"id\":\"EBP.SOVIET.WIRE_FIELD\",\"kind\":17,\"label\":\"EBP.SOVIET.WIRE_FIELD\",\"documentation\":\"EBP.SOVIET.WIRE_FIELD\",\"detail\":\"EBP.SOVIET.WIRE_FIELD\"},{\"id\":\"EBP.SOVIET.WIRE_FIELD_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.WIRE_FIELD_MP\",\"documentation\":\"EBP.SOVIET.WIRE_FIELD_MP\",\"detail\":\"EBP.SOVIET.WIRE_FIELD_MP\"},{\"id\":\"EBP.SOVIET.ZIS_6_TRANSPORT\",\"kind\":17,\"label\":\"EBP.SOVIET.ZIS_6_TRANSPORT\",\"documentation\":\"EBP.SOVIET.ZIS_6_TRANSPORT\",\"detail\":\"EBP.SOVIET.ZIS_6_TRANSPORT\"},{\"id\":\"EBP.SOVIET.ZIS_6_TRANSPORT_MP\",\"kind\":17,\"label\":\"EBP.SOVIET.ZIS_6_TRANSPORT_MP\",\"documentation\":\"EBP.SOVIET.ZIS_6_TRANSPORT_MP\",\"detail\":\"EBP.SOVIET.ZIS_6_TRANSPORT_MP\"},{\"id\":\"SBP.SOVIET.BASE_CONSCRIPT_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.BASE_CONSCRIPT_SQUAD\",\"documentation\":\"SBP.SOVIET.BASE_CONSCRIPT_SQUAD\",\"detail\":\"SBP.SOVIET.BASE_CONSCRIPT_SQUAD\"},{\"id\":\"SBP.SOVIET.BASE_CONSCRIPT_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.BASE_CONSCRIPT_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.BASE_CONSCRIPT_SQUAD_MP\",\"detail\":\"SBP.SOVIET.BASE_CONSCRIPT_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.BOAT_01\",\"kind\":17,\"label\":\"SBP.SOVIET.BOAT_01\",\"documentation\":\"SBP.SOVIET.BOAT_01\",\"detail\":\"SBP.SOVIET.BOAT_01\"},{\"id\":\"SBP.SOVIET.CARGO_PLANE_SOVIET\",\"kind\":17,\"label\":\"SBP.SOVIET.CARGO_PLANE_SOVIET\",\"documentation\":\"SBP.SOVIET.CARGO_PLANE_SOVIET\",\"detail\":\"SBP.SOVIET.CARGO_PLANE_SOVIET\"},{\"id\":\"SBP.SOVIET.COMBAT_ENGINEER_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.COMBAT_ENGINEER_SQUAD\",\"documentation\":\"SBP.SOVIET.COMBAT_ENGINEER_SQUAD\",\"detail\":\"SBP.SOVIET.COMBAT_ENGINEER_SQUAD\"},{\"id\":\"SBP.SOVIET.COMBAT_ENGINEER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.COMBAT_ENGINEER_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.COMBAT_ENGINEER_SQUAD_MP\",\"detail\":\"SBP.SOVIET.COMBAT_ENGINEER_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.COMMISSAR_227\",\"kind\":17,\"label\":\"SBP.SOVIET.COMMISSAR_227\",\"documentation\":\"SBP.SOVIET.COMMISSAR_227\",\"detail\":\"SBP.SOVIET.COMMISSAR_227\"},{\"id\":\"SBP.SOVIET.COMMISSAR_SQUAD_BATTLE\",\"kind\":17,\"label\":\"SBP.SOVIET.COMMISSAR_SQUAD_BATTLE\",\"documentation\":\"SBP.SOVIET.COMMISSAR_SQUAD_BATTLE\",\"detail\":\"SBP.SOVIET.COMMISSAR_SQUAD_BATTLE\"},{\"id\":\"SBP.SOVIET.COMMISSAR_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.COMMISSAR_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.COMMISSAR_SQUAD_MP\",\"detail\":\"SBP.SOVIET.COMMISSAR_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.COMMISSAR_SQUAD_TOW\",\"kind\":17,\"label\":\"SBP.SOVIET.COMMISSAR_SQUAD_TOW\",\"documentation\":\"SBP.SOVIET.COMMISSAR_SQUAD_TOW\",\"detail\":\"SBP.SOVIET.COMMISSAR_SQUAD_TOW\"},{\"id\":\"SBP.SOVIET.CONSCRIPT_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.CONSCRIPT_SQUAD\",\"documentation\":\"SBP.SOVIET.CONSCRIPT_SQUAD\",\"detail\":\"SBP.SOVIET.CONSCRIPT_SQUAD\"},{\"id\":\"SBP.SOVIET.CONSCRIPT_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.CONSCRIPT_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.CONSCRIPT_SQUAD_MP\",\"detail\":\"SBP.SOVIET.CONSCRIPT_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.CONSCRIPT_SQUAD_TUTORIAL\",\"kind\":17,\"label\":\"SBP.SOVIET.CONSCRIPT_SQUAD_TUTORIAL\",\"documentation\":\"SBP.SOVIET.CONSCRIPT_SQUAD_TUTORIAL\",\"detail\":\"SBP.SOVIET.CONSCRIPT_SQUAD_TUTORIAL\"},{\"id\":\"SBP.SOVIET.DSHK_38_HMG_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.DSHK_38_HMG_SQUAD\",\"documentation\":\"SBP.SOVIET.DSHK_38_HMG_SQUAD\",\"detail\":\"SBP.SOVIET.DSHK_38_HMG_SQUAD\"},{\"id\":\"SBP.SOVIET.DSHK_38_HMG_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.DSHK_38_HMG_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.DSHK_38_HMG_SQUAD_MP\",\"detail\":\"SBP.SOVIET.DSHK_38_HMG_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.GUARDS_TROOPS\",\"kind\":17,\"label\":\"SBP.SOVIET.GUARDS_TROOPS\",\"documentation\":\"SBP.SOVIET.GUARDS_TROOPS\",\"detail\":\"SBP.SOVIET.GUARDS_TROOPS\"},{\"id\":\"SBP.SOVIET.GUARDS_TROOPS_ASSAULT_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.GUARDS_TROOPS_ASSAULT_MP\",\"documentation\":\"SBP.SOVIET.GUARDS_TROOPS_ASSAULT_MP\",\"detail\":\"SBP.SOVIET.GUARDS_TROOPS_ASSAULT_MP\"},{\"id\":\"SBP.SOVIET.GUARDS_TROOPS_M08\",\"kind\":17,\"label\":\"SBP.SOVIET.GUARDS_TROOPS_M08\",\"documentation\":\"SBP.SOVIET.GUARDS_TROOPS_M08\",\"detail\":\"SBP.SOVIET.GUARDS_TROOPS_M08\"},{\"id\":\"SBP.SOVIET.GUARDS_TROOPS_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.GUARDS_TROOPS_MP\",\"documentation\":\"SBP.SOVIET.GUARDS_TROOPS_MP\",\"detail\":\"SBP.SOVIET.GUARDS_TROOPS_MP\"},{\"id\":\"SBP.SOVIET.HM_120_38_MORTAR_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.HM_120_38_MORTAR_SQUAD\",\"documentation\":\"SBP.SOVIET.HM_120_38_MORTAR_SQUAD\",\"detail\":\"SBP.SOVIET.HM_120_38_MORTAR_SQUAD\"},{\"id\":\"SBP.SOVIET.HM_120_38_MORTAR_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.HM_120_38_MORTAR_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.HM_120_38_MORTAR_SQUAD_MP\",\"detail\":\"SBP.SOVIET.HM_120_38_MORTAR_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD\",\"documentation\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD\",\"detail\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD\"},{\"id\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD_ADVANCED_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD_ADVANCED_MP\",\"documentation\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD_ADVANCED_MP\",\"detail\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD_ADVANCED_MP\"},{\"id\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD_MP\",\"detail\":\"SBP.SOVIET.IL_2_STUMOVIK_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.IL_2_STURMOVIK_ANTI_TANK_BOMB_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STURMOVIK_ANTI_TANK_BOMB_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.IL_2_STURMOVIK_ANTI_TANK_BOMB_SQUAD_MP\",\"detail\":\"SBP.SOVIET.IL_2_STURMOVIK_ANTI_TANK_BOMB_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.IL_2_STURMOVIK_MARK_VEHICLE_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STURMOVIK_MARK_VEHICLE_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.IL_2_STURMOVIK_MARK_VEHICLE_SQUAD_MP\",\"detail\":\"SBP.SOVIET.IL_2_STURMOVIK_MARK_VEHICLE_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD\",\"documentation\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD\",\"detail\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD\"},{\"id\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD_MP\",\"detail\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD_SP\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD_SP\",\"documentation\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD_SP\",\"detail\":\"SBP.SOVIET.IL_2_STURMOVIK_RECON_SQUAD_SP\"},{\"id\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP_SQUAD\",\"documentation\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP_SQUAD\",\"detail\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP_SQUAD\"},{\"id\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP_SQUAD_MP\",\"detail\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SP_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SQUAD\",\"documentation\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SQUAD\",\"detail\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SQUAD\"},{\"id\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SQUAD_MP\",\"detail\":\"SBP.SOVIET.IL_2_STURMOVIK_ROCKET_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.IS_2\",\"kind\":17,\"label\":\"SBP.SOVIET.IS_2\",\"documentation\":\"SBP.SOVIET.IS_2\",\"detail\":\"SBP.SOVIET.IS_2\"},{\"id\":\"SBP.SOVIET.IS_2_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.IS_2_MP\",\"documentation\":\"SBP.SOVIET.IS_2_MP\",\"detail\":\"SBP.SOVIET.IS_2_MP\"},{\"id\":\"SBP.SOVIET.IS_2_TOW\",\"kind\":17,\"label\":\"SBP.SOVIET.IS_2_TOW\",\"documentation\":\"SBP.SOVIET.IS_2_TOW\",\"detail\":\"SBP.SOVIET.IS_2_TOW\"},{\"id\":\"SBP.SOVIET.ISU_152\",\"kind\":17,\"label\":\"SBP.SOVIET.ISU_152\",\"documentation\":\"SBP.SOVIET.ISU_152\",\"detail\":\"SBP.SOVIET.ISU_152\"},{\"id\":\"SBP.SOVIET.ISU_152_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.ISU_152_MP\",\"documentation\":\"SBP.SOVIET.ISU_152_MP\",\"detail\":\"SBP.SOVIET.ISU_152_MP\"},{\"id\":\"SBP.SOVIET.KATYUSHA_BM_13N_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.KATYUSHA_BM_13N_SQUAD\",\"documentation\":\"SBP.SOVIET.KATYUSHA_BM_13N_SQUAD\",\"detail\":\"SBP.SOVIET.KATYUSHA_BM_13N_SQUAD\"},{\"id\":\"SBP.SOVIET.KATYUSHA_BM_13N_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.KATYUSHA_BM_13N_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.KATYUSHA_BM_13N_SQUAD_MP\",\"detail\":\"SBP.SOVIET.KATYUSHA_BM_13N_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.KV_1\",\"kind\":17,\"label\":\"SBP.SOVIET.KV_1\",\"documentation\":\"SBP.SOVIET.KV_1\",\"detail\":\"SBP.SOVIET.KV_1\"},{\"id\":\"SBP.SOVIET.KV_1_COMMANDER_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.KV_1_COMMANDER_MP\",\"documentation\":\"SBP.SOVIET.KV_1_COMMANDER_MP\",\"detail\":\"SBP.SOVIET.KV_1_COMMANDER_MP\"},{\"id\":\"SBP.SOVIET.KV_1_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.KV_1_MP\",\"documentation\":\"SBP.SOVIET.KV_1_MP\",\"detail\":\"SBP.SOVIET.KV_1_MP\"},{\"id\":\"SBP.SOVIET.KV_1_SP\",\"kind\":17,\"label\":\"SBP.SOVIET.KV_1_SP\",\"documentation\":\"SBP.SOVIET.KV_1_SP\",\"detail\":\"SBP.SOVIET.KV_1_SP\"},{\"id\":\"SBP.SOVIET.KV_2\",\"kind\":17,\"label\":\"SBP.SOVIET.KV_2\",\"documentation\":\"SBP.SOVIET.KV_2\",\"detail\":\"SBP.SOVIET.KV_2\"},{\"id\":\"SBP.SOVIET.KV_2_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.KV_2_MP\",\"documentation\":\"SBP.SOVIET.KV_2_MP\",\"detail\":\"SBP.SOVIET.KV_2_MP\"},{\"id\":\"SBP.SOVIET.KV_2_TOW\",\"kind\":17,\"label\":\"SBP.SOVIET.KV_2_TOW\",\"documentation\":\"SBP.SOVIET.KV_2_TOW\",\"detail\":\"SBP.SOVIET.KV_2_TOW\"},{\"id\":\"SBP.SOVIET.KV_2_TOW_BATTLE\",\"kind\":17,\"label\":\"SBP.SOVIET.KV_2_TOW_BATTLE\",\"documentation\":\"SBP.SOVIET.KV_2_TOW_BATTLE\",\"detail\":\"SBP.SOVIET.KV_2_TOW_BATTLE\"},{\"id\":\"SBP.SOVIET.KV_8\",\"kind\":17,\"label\":\"SBP.SOVIET.KV_8\",\"documentation\":\"SBP.SOVIET.KV_8\",\"detail\":\"SBP.SOVIET.KV_8\"},{\"id\":\"SBP.SOVIET.KV_8_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.KV_8_MP\",\"documentation\":\"SBP.SOVIET.KV_8_MP\",\"detail\":\"SBP.SOVIET.KV_8_MP\"},{\"id\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_DOCKS\",\"kind\":17,\"label\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_DOCKS\",\"documentation\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_DOCKS\",\"detail\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_DOCKS\"},{\"id\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_HARMLESS\",\"kind\":17,\"label\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_HARMLESS\",\"documentation\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_HARMLESS\",\"detail\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_HARMLESS\"},{\"id\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_HARMLESS_DURABLE\",\"kind\":17,\"label\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_HARMLESS_DURABLE\",\"documentation\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_HARMLESS_DURABLE\",\"detail\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_HARMLESS_DURABLE\"},{\"id\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_WOUNDED\",\"kind\":17,\"label\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_WOUNDED\",\"documentation\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_WOUNDED\",\"detail\":\"SBP.SOVIET.M01_CONSCRIPT_SQUAD_WOUNDED\"},{\"id\":\"SBP.SOVIET.M01_IL_2_STURMOVIK_ROCKET_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M01_IL_2_STURMOVIK_ROCKET_SQUAD\",\"documentation\":\"SBP.SOVIET.M01_IL_2_STURMOVIK_ROCKET_SQUAD\",\"detail\":\"SBP.SOVIET.M01_IL_2_STURMOVIK_ROCKET_SQUAD\"},{\"id\":\"SBP.SOVIET.M01_IL2_DOGFIGHT\",\"kind\":17,\"label\":\"SBP.SOVIET.M01_IL2_DOGFIGHT\",\"documentation\":\"SBP.SOVIET.M01_IL2_DOGFIGHT\",\"detail\":\"SBP.SOVIET.M01_IL2_DOGFIGHT\"},{\"id\":\"SBP.SOVIET.M01_MEDIC\",\"kind\":17,\"label\":\"SBP.SOVIET.M01_MEDIC\",\"documentation\":\"SBP.SOVIET.M01_MEDIC\",\"detail\":\"SBP.SOVIET.M01_MEDIC\"},{\"id\":\"SBP.SOVIET.M02_COMBAT_ENGINEER_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M02_COMBAT_ENGINEER_SQUAD\",\"documentation\":\"SBP.SOVIET.M02_COMBAT_ENGINEER_SQUAD\",\"detail\":\"SBP.SOVIET.M02_COMBAT_ENGINEER_SQUAD\"},{\"id\":\"SBP.SOVIET.M02_REFUGEE_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M02_REFUGEE_SQUAD\",\"documentation\":\"SBP.SOVIET.M02_REFUGEE_SQUAD\",\"detail\":\"SBP.SOVIET.M02_REFUGEE_SQUAD\"},{\"id\":\"SBP.SOVIET.M08_COMBAT_ENGINEER_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M08_COMBAT_ENGINEER_SQUAD\",\"documentation\":\"SBP.SOVIET.M08_COMBAT_ENGINEER_SQUAD\",\"detail\":\"SBP.SOVIET.M08_COMBAT_ENGINEER_SQUAD\"},{\"id\":\"SBP.SOVIET.M08_T_34_76_SQUAD_SMALLPATH\",\"kind\":17,\"label\":\"SBP.SOVIET.M08_T_34_76_SQUAD_SMALLPATH\",\"documentation\":\"SBP.SOVIET.M08_T_34_76_SQUAD_SMALLPATH\",\"detail\":\"SBP.SOVIET.M08_T_34_76_SQUAD_SMALLPATH\"},{\"id\":\"SBP.SOVIET.M08_TANK_BUSTER_CONSCRIPT_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M08_TANK_BUSTER_CONSCRIPT_SQUAD\",\"documentation\":\"SBP.SOVIET.M08_TANK_BUSTER_CONSCRIPT_SQUAD\",\"detail\":\"SBP.SOVIET.M08_TANK_BUSTER_CONSCRIPT_SQUAD\"},{\"id\":\"SBP.SOVIET.M11_ANIA_SNIPER_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M11_ANIA_SNIPER_SQUAD\",\"documentation\":\"SBP.SOVIET.M11_ANIA_SNIPER_SQUAD\",\"detail\":\"SBP.SOVIET.M11_ANIA_SNIPER_SQUAD\"},{\"id\":\"SBP.SOVIET.M11_ISAKOVICH_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M11_ISAKOVICH_SQUAD\",\"documentation\":\"SBP.SOVIET.M11_ISAKOVICH_SQUAD\",\"detail\":\"SBP.SOVIET.M11_ISAKOVICH_SQUAD\"},{\"id\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_KAR98K_RIFLE\",\"kind\":17,\"label\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_KAR98K_RIFLE\",\"documentation\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_KAR98K_RIFLE\",\"detail\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_KAR98K_RIFLE\"},{\"id\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_NAGANT_RIFLE\",\"kind\":17,\"label\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_NAGANT_RIFLE\",\"documentation\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_NAGANT_RIFLE\",\"detail\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_NAGANT_RIFLE\"},{\"id\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_NOWEAPON\",\"kind\":17,\"label\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_NOWEAPON\",\"documentation\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_NOWEAPON\",\"detail\":\"SBP.SOVIET.M11_PARTISAN_SQUAD_NOWEAPON\"},{\"id\":\"SBP.SOVIET.M11_SNIPER_TEAM\",\"kind\":17,\"label\":\"SBP.SOVIET.M11_SNIPER_TEAM\",\"documentation\":\"SBP.SOVIET.M11_SNIPER_TEAM\",\"detail\":\"SBP.SOVIET.M11_SNIPER_TEAM\"},{\"id\":\"SBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_SQUAD\",\"documentation\":\"SBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_SQUAD\",\"detail\":\"SBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_SQUAD\"},{\"id\":\"SBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_SQUAD_MP\",\"detail\":\"SBP.SOVIET.M1910_MAXIM_HEAVY_MACHINE_GUN_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY\",\"kind\":17,\"label\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY\",\"documentation\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY\",\"detail\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY\"},{\"id\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_COMMANDER_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_COMMANDER_MP\",\"documentation\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_COMMANDER_MP\",\"detail\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_COMMANDER_MP\"},{\"id\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_MP\",\"documentation\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_MP\",\"detail\":\"SBP.SOVIET.M1931_203MM_B_4_HOWITZER_ARTILLERY_MP\"},{\"id\":\"SBP.SOVIET.M1937_152MM_ML_20_ARTILLERY\",\"kind\":17,\"label\":\"SBP.SOVIET.M1937_152MM_ML_20_ARTILLERY\",\"documentation\":\"SBP.SOVIET.M1937_152MM_ML_20_ARTILLERY\",\"detail\":\"SBP.SOVIET.M1937_152MM_ML_20_ARTILLERY\"},{\"id\":\"SBP.SOVIET.M1937_152MM_ML_20_ARTILLERY_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.M1937_152MM_ML_20_ARTILLERY_MP\",\"documentation\":\"SBP.SOVIET.M1937_152MM_ML_20_ARTILLERY_MP\",\"detail\":\"SBP.SOVIET.M1937_152MM_ML_20_ARTILLERY_MP\"},{\"id\":\"SBP.SOVIET.M1937_53_K_45MM_AT_GUN_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M1937_53_K_45MM_AT_GUN_SQUAD\",\"documentation\":\"SBP.SOVIET.M1937_53_K_45MM_AT_GUN_SQUAD\",\"detail\":\"SBP.SOVIET.M1937_53_K_45MM_AT_GUN_SQUAD\"},{\"id\":\"SBP.SOVIET.M1937_53_K_45MM_AT_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.M1937_53_K_45MM_AT_GUN_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.M1937_53_K_45MM_AT_GUN_SQUAD_MP\",\"detail\":\"SBP.SOVIET.M1937_53_K_45MM_AT_GUN_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.M1942_ZIS_3_76MM_AT_GUN_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M1942_ZIS_3_76MM_AT_GUN_SQUAD\",\"documentation\":\"SBP.SOVIET.M1942_ZIS_3_76MM_AT_GUN_SQUAD\",\"detail\":\"SBP.SOVIET.M1942_ZIS_3_76MM_AT_GUN_SQUAD\"},{\"id\":\"SBP.SOVIET.M1942_ZIS_3_76MM_AT_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.M1942_ZIS_3_76MM_AT_GUN_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.M1942_ZIS_3_76MM_AT_GUN_SQUAD_MP\",\"detail\":\"SBP.SOVIET.M1942_ZIS_3_76MM_AT_GUN_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.M3A1_SCOUT_CAR_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M3A1_SCOUT_CAR_SQUAD\",\"documentation\":\"SBP.SOVIET.M3A1_SCOUT_CAR_SQUAD\",\"detail\":\"SBP.SOVIET.M3A1_SCOUT_CAR_SQUAD\"},{\"id\":\"SBP.SOVIET.M3A1_SCOUT_CAR_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.M3A1_SCOUT_CAR_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.M3A1_SCOUT_CAR_SQUAD_MP\",\"detail\":\"SBP.SOVIET.M3A1_SCOUT_CAR_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.M5_HALFTRACK__ASSAULT_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.M5_HALFTRACK__ASSAULT_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.M5_HALFTRACK__ASSAULT_SQUAD_MP\",\"detail\":\"SBP.SOVIET.M5_HALFTRACK__ASSAULT_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.M5_HALFTRACK_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.M5_HALFTRACK_SQUAD\",\"documentation\":\"SBP.SOVIET.M5_HALFTRACK_SQUAD\",\"detail\":\"SBP.SOVIET.M5_HALFTRACK_SQUAD\"},{\"id\":\"SBP.SOVIET.M5_HALFTRACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.M5_HALFTRACK_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.M5_HALFTRACK_SQUAD_MP\",\"detail\":\"SBP.SOVIET.M5_HALFTRACK_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_GRANATEWERFER_34_81MM_MORTAR\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_GRANATEWERFER_34_81MM_MORTAR\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_GRANATEWERFER_34_81MM_MORTAR\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_GRANATEWERFER_34_81MM_MORTAR\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_GRANATEWERFER_34_81MM_MORTAR_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_GRANATEWERFER_34_81MM_MORTAR_MP\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_GRANATEWERFER_34_81MM_MORTAR_MP\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_GRANATEWERFER_34_81MM_MORTAR_MP\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_KAR98K_RIFLE\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_KAR98K_RIFLE\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_KAR98K_RIFLE\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_KAR98K_RIFLE\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_KAR98K_RIFLE_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_KAR98K_RIFLE_MP\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_KAR98K_RIFLE_MP\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_KAR98K_RIFLE_MP\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_MAXIM_HMG\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_MAXIM_HMG\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_MAXIM_HMG\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_MAXIM_HMG\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_MAXIM_HMG_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_MAXIM_HMG_MP\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_MAXIM_HMG_MP\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_MAXIM_HMG_MP\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_MG42_HMG\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_MG42_HMG\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_MG42_HMG\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_MG42_HMG\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_MG42_HMG_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_MG42_HMG_MP\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_MG42_HMG_MP\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_MG42_HMG_MP\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_NAGANT_RIFLE\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_NAGANT_RIFLE\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_NAGANT_RIFLE\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_NAGANT_RIFLE\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_NAGANT_RIFLE_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_NAGANT_RIFLE_MP\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_NAGANT_RIFLE_MP\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_NAGANT_RIFLE_MP\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_PM_82_41_MORTAR\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_PM_82_41_MORTAR\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_PM_82_41_MORTAR\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_PM_82_41_MORTAR\"},{\"id\":\"SBP.SOVIET.PARTISAN_SQUAD_PM_82_41_MORTAR_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISAN_SQUAD_PM_82_41_MORTAR_MP\",\"documentation\":\"SBP.SOVIET.PARTISAN_SQUAD_PM_82_41_MORTAR_MP\",\"detail\":\"SBP.SOVIET.PARTISAN_SQUAD_PM_82_41_MORTAR_MP\"},{\"id\":\"SBP.SOVIET.PARTISANS_LMG_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISANS_LMG_MP\",\"documentation\":\"SBP.SOVIET.PARTISANS_LMG_MP\",\"detail\":\"SBP.SOVIET.PARTISANS_LMG_MP\"},{\"id\":\"SBP.SOVIET.PARTISANS_PANZERSCHRECK_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISANS_PANZERSCHRECK_MP\",\"documentation\":\"SBP.SOVIET.PARTISANS_PANZERSCHRECK_MP\",\"detail\":\"SBP.SOVIET.PARTISANS_PANZERSCHRECK_MP\"},{\"id\":\"SBP.SOVIET.PARTISANS_PTRS_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISANS_PTRS_MP\",\"documentation\":\"SBP.SOVIET.PARTISANS_PTRS_MP\",\"detail\":\"SBP.SOVIET.PARTISANS_PTRS_MP\"},{\"id\":\"SBP.SOVIET.PARTISANS_RIFLE_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISANS_RIFLE_MP\",\"documentation\":\"SBP.SOVIET.PARTISANS_RIFLE_MP\",\"detail\":\"SBP.SOVIET.PARTISANS_RIFLE_MP\"},{\"id\":\"SBP.SOVIET.PARTISANS_SMG_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PARTISANS_SMG_MP\",\"documentation\":\"SBP.SOVIET.PARTISANS_SMG_MP\",\"detail\":\"SBP.SOVIET.PARTISANS_SMG_MP\"},{\"id\":\"SBP.SOVIET.PENAL_BATTALION\",\"kind\":17,\"label\":\"SBP.SOVIET.PENAL_BATTALION\",\"documentation\":\"SBP.SOVIET.PENAL_BATTALION\",\"detail\":\"SBP.SOVIET.PENAL_BATTALION\"},{\"id\":\"SBP.SOVIET.PENAL_BATTALION_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PENAL_BATTALION_MP\",\"documentation\":\"SBP.SOVIET.PENAL_BATTALION_MP\",\"detail\":\"SBP.SOVIET.PENAL_BATTALION_MP\"},{\"id\":\"SBP.SOVIET.PM_82_41_MORTAR_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.PM_82_41_MORTAR_SQUAD\",\"documentation\":\"SBP.SOVIET.PM_82_41_MORTAR_SQUAD\",\"detail\":\"SBP.SOVIET.PM_82_41_MORTAR_SQUAD\"},{\"id\":\"SBP.SOVIET.PM_82_41_MORTAR_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.PM_82_41_MORTAR_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.PM_82_41_MORTAR_SQUAD_MP\",\"detail\":\"SBP.SOVIET.PM_82_41_MORTAR_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.SHOCK_TROOPS\",\"kind\":17,\"label\":\"SBP.SOVIET.SHOCK_TROOPS\",\"documentation\":\"SBP.SOVIET.SHOCK_TROOPS\",\"detail\":\"SBP.SOVIET.SHOCK_TROOPS\"},{\"id\":\"SBP.SOVIET.SHOCK_TROOPS_M11\",\"kind\":17,\"label\":\"SBP.SOVIET.SHOCK_TROOPS_M11\",\"documentation\":\"SBP.SOVIET.SHOCK_TROOPS_M11\",\"detail\":\"SBP.SOVIET.SHOCK_TROOPS_M11\"},{\"id\":\"SBP.SOVIET.SHOCK_TROOPS_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.SHOCK_TROOPS_MP\",\"documentation\":\"SBP.SOVIET.SHOCK_TROOPS_MP\",\"detail\":\"SBP.SOVIET.SHOCK_TROOPS_MP\"},{\"id\":\"SBP.SOVIET.SNIPER_TEAM\",\"kind\":17,\"label\":\"SBP.SOVIET.SNIPER_TEAM\",\"documentation\":\"SBP.SOVIET.SNIPER_TEAM\",\"detail\":\"SBP.SOVIET.SNIPER_TEAM\"},{\"id\":\"SBP.SOVIET.SNIPER_TEAM_MALE\",\"kind\":17,\"label\":\"SBP.SOVIET.SNIPER_TEAM_MALE\",\"documentation\":\"SBP.SOVIET.SNIPER_TEAM_MALE\",\"detail\":\"SBP.SOVIET.SNIPER_TEAM_MALE\"},{\"id\":\"SBP.SOVIET.SNIPER_TEAM_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.SNIPER_TEAM_MP\",\"documentation\":\"SBP.SOVIET.SNIPER_TEAM_MP\",\"detail\":\"SBP.SOVIET.SNIPER_TEAM_MP\"},{\"id\":\"SBP.SOVIET.SOVIET_76MM_SHERMAN_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.SOVIET_76MM_SHERMAN_MP\",\"documentation\":\"SBP.SOVIET.SOVIET_76MM_SHERMAN_MP\",\"detail\":\"SBP.SOVIET.SOVIET_76MM_SHERMAN_MP\"},{\"id\":\"SBP.SOVIET.SOVIET_ALLIED_CARGO_PLANE\",\"kind\":17,\"label\":\"SBP.SOVIET.SOVIET_ALLIED_CARGO_PLANE\",\"documentation\":\"SBP.SOVIET.SOVIET_ALLIED_CARGO_PLANE\",\"detail\":\"SBP.SOVIET.SOVIET_ALLIED_CARGO_PLANE\"},{\"id\":\"SBP.SOVIET.SOVIET_OFFICER_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.SOVIET_OFFICER_SQUAD\",\"documentation\":\"SBP.SOVIET.SOVIET_OFFICER_SQUAD\",\"detail\":\"SBP.SOVIET.SOVIET_OFFICER_SQUAD\"},{\"id\":\"SBP.SOVIET.SOVIET_OFFICER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.SOVIET_OFFICER_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.SOVIET_OFFICER_SQUAD_MP\",\"detail\":\"SBP.SOVIET.SOVIET_OFFICER_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.STEAM_TRAIN\",\"kind\":17,\"label\":\"SBP.SOVIET.STEAM_TRAIN\",\"documentation\":\"SBP.SOVIET.STEAM_TRAIN\",\"detail\":\"SBP.SOVIET.STEAM_TRAIN\"},{\"id\":\"SBP.SOVIET.SU_76M\",\"kind\":17,\"label\":\"SBP.SOVIET.SU_76M\",\"documentation\":\"SBP.SOVIET.SU_76M\",\"detail\":\"SBP.SOVIET.SU_76M\"},{\"id\":\"SBP.SOVIET.SU_76M_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.SU_76M_MP\",\"documentation\":\"SBP.SOVIET.SU_76M_MP\",\"detail\":\"SBP.SOVIET.SU_76M_MP\"},{\"id\":\"SBP.SOVIET.SU_76M_TOW\",\"kind\":17,\"label\":\"SBP.SOVIET.SU_76M_TOW\",\"documentation\":\"SBP.SOVIET.SU_76M_TOW\",\"detail\":\"SBP.SOVIET.SU_76M_TOW\"},{\"id\":\"SBP.SOVIET.SU_85\",\"kind\":17,\"label\":\"SBP.SOVIET.SU_85\",\"documentation\":\"SBP.SOVIET.SU_85\",\"detail\":\"SBP.SOVIET.SU_85\"},{\"id\":\"SBP.SOVIET.SU_85_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.SU_85_MP\",\"documentation\":\"SBP.SOVIET.SU_85_MP\",\"detail\":\"SBP.SOVIET.SU_85_MP\"},{\"id\":\"SBP.SOVIET.T_34_76_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.T_34_76_SQUAD\",\"documentation\":\"SBP.SOVIET.T_34_76_SQUAD\",\"detail\":\"SBP.SOVIET.T_34_76_SQUAD\"},{\"id\":\"SBP.SOVIET.T_34_76_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.T_34_76_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.T_34_76_SQUAD_MP\",\"detail\":\"SBP.SOVIET.T_34_76_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.T_34_85_ADVANCED_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.T_34_85_ADVANCED_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.T_34_85_ADVANCED_SQUAD_MP\",\"detail\":\"SBP.SOVIET.T_34_85_ADVANCED_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.T_34_85_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.T_34_85_SQUAD\",\"documentation\":\"SBP.SOVIET.T_34_85_SQUAD\",\"detail\":\"SBP.SOVIET.T_34_85_SQUAD\"},{\"id\":\"SBP.SOVIET.T_34_85_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.T_34_85_SQUAD_MP\",\"documentation\":\"SBP.SOVIET.T_34_85_SQUAD_MP\",\"detail\":\"SBP.SOVIET.T_34_85_SQUAD_MP\"},{\"id\":\"SBP.SOVIET.T_70M\",\"kind\":17,\"label\":\"SBP.SOVIET.T_70M\",\"documentation\":\"SBP.SOVIET.T_70M\",\"detail\":\"SBP.SOVIET.T_70M\"},{\"id\":\"SBP.SOVIET.T_70M_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.T_70M_MP\",\"documentation\":\"SBP.SOVIET.T_70M_MP\",\"detail\":\"SBP.SOVIET.T_70M_MP\"},{\"id\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_AT\",\"kind\":17,\"label\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_AT\",\"documentation\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_AT\",\"detail\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_AT\"},{\"id\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_BASE\",\"kind\":17,\"label\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_BASE\",\"documentation\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_BASE\",\"detail\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_BASE\"},{\"id\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_MAXIM\",\"kind\":17,\"label\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_MAXIM\",\"documentation\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_MAXIM\",\"detail\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_MAXIM\"},{\"id\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_MORTAR\",\"kind\":17,\"label\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_MORTAR\",\"documentation\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_MORTAR\",\"detail\":\"SBP.SOVIET.TOW_BRIDGE_PARTISAN_SQUAD_MORTAR\"},{\"id\":\"SBP.SOVIET.TOW_COLD_WEATHER_GUARDS_TROOPS\",\"kind\":17,\"label\":\"SBP.SOVIET.TOW_COLD_WEATHER_GUARDS_TROOPS\",\"documentation\":\"SBP.SOVIET.TOW_COLD_WEATHER_GUARDS_TROOPS\",\"detail\":\"SBP.SOVIET.TOW_COLD_WEATHER_GUARDS_TROOPS\"},{\"id\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_KAR98K_RIFLE_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_KAR98K_RIFLE_MP\",\"documentation\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_KAR98K_RIFLE_MP\",\"detail\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_KAR98K_RIFLE_MP\"},{\"id\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_LMG_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_LMG_SQUAD\",\"documentation\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_LMG_SQUAD\",\"detail\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_LMG_SQUAD\"},{\"id\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_MAXIM_HMG_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_MAXIM_HMG_MP\",\"documentation\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_MAXIM_HMG_MP\",\"detail\":\"SBP.SOVIET.TOW_PARTISAN_SQUAD_MAXIM_HMG_MP\"},{\"id\":\"SBP.SOVIET.US6_TRUCK_SQUAD\",\"kind\":17,\"label\":\"SBP.SOVIET.US6_TRUCK_SQUAD\",\"documentation\":\"SBP.SOVIET.US6_TRUCK_SQUAD\",\"detail\":\"SBP.SOVIET.US6_TRUCK_SQUAD\"},{\"id\":\"SBP.SOVIET.ZIS_6_TRANSPORT_TRUCK\",\"kind\":17,\"label\":\"SBP.SOVIET.ZIS_6_TRANSPORT_TRUCK\",\"documentation\":\"SBP.SOVIET.ZIS_6_TRANSPORT_TRUCK\",\"detail\":\"SBP.SOVIET.ZIS_6_TRANSPORT_TRUCK\"},{\"id\":\"SBP.SOVIET.ZIS_6_TRANSPORT_TRUCK_MP\",\"kind\":17,\"label\":\"SBP.SOVIET.ZIS_6_TRANSPORT_TRUCK_MP\",\"documentation\":\"SBP.SOVIET.ZIS_6_TRANSPORT_TRUCK_MP\",\"detail\":\"SBP.SOVIET.ZIS_6_TRANSPORT_TRUCK_MP\"},{\"id\":\"ABILITY.SOVIET.ALLIED_AIR_SUPPLIES\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ALLIED_AIR_SUPPLIES\",\"documentation\":\"ABILITY.SOVIET.ALLIED_AIR_SUPPLIES\",\"detail\":\"ABILITY.SOVIET.ALLIED_AIR_SUPPLIES\"},{\"id\":\"ABILITY.SOVIET.ANTI_PERSONNEL_MINES\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ANTI_PERSONNEL_MINES\",\"documentation\":\"ABILITY.SOVIET.ANTI_PERSONNEL_MINES\",\"detail\":\"ABILITY.SOVIET.ANTI_PERSONNEL_MINES\"},{\"id\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE\",\"documentation\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE\",\"detail\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE\"},{\"id\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_ASSAULT\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_ASSAULT\",\"documentation\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_ASSAULT\",\"detail\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_ASSAULT\"},{\"id\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_MP\",\"documentation\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_MP\",\"detail\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_MP\"},{\"id\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_NO_REQUIREMENTS_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_NO_REQUIREMENTS_MP\",\"documentation\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_NO_REQUIREMENTS_MP\",\"detail\":\"ABILITY.SOVIET.ANTI_TANK_GRENADE_NO_REQUIREMENTS_MP\"},{\"id\":\"ABILITY.SOVIET.AT_76MM_HE_BARRAGE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.AT_76MM_HE_BARRAGE_ABILITY\",\"documentation\":\"ABILITY.SOVIET.AT_76MM_HE_BARRAGE_ABILITY\",\"detail\":\"ABILITY.SOVIET.AT_76MM_HE_BARRAGE_ABILITY\"},{\"id\":\"ABILITY.SOVIET.AT_76MM_HE_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.AT_76MM_HE_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.AT_76MM_HE_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.AT_76MM_HE_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.AT_GUN_AMBUSH_TACTICS\",\"kind\":17,\"label\":\"ABILITY.SOVIET.AT_GUN_AMBUSH_TACTICS\",\"documentation\":\"ABILITY.SOVIET.AT_GUN_AMBUSH_TACTICS\",\"detail\":\"ABILITY.SOVIET.AT_GUN_AMBUSH_TACTICS\"},{\"id\":\"ABILITY.SOVIET.B4_203MM_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.B4_203MM_BARRAGE\",\"documentation\":\"ABILITY.SOVIET.B4_203MM_BARRAGE\",\"detail\":\"ABILITY.SOVIET.B4_203MM_BARRAGE\"},{\"id\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_MP\",\"documentation\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_MP\",\"detail\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_MP\"},{\"id\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_PRECISE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_PRECISE_MP\",\"documentation\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_PRECISE_MP\",\"detail\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_PRECISE_MP\"},{\"id\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_VET3_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_VET3_MP\",\"documentation\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_VET3_MP\",\"detail\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_VET3_MP\"},{\"id\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_VICTORTARGET_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_VICTORTARGET_MP\",\"documentation\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_VICTORTARGET_MP\",\"detail\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_COMMANDER_VICTORTARGET_MP\"},{\"id\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_MP\",\"documentation\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_MP\",\"detail\":\"ABILITY.SOVIET.B4_203MM_BARRAGE_MP\"},{\"id\":\"ABILITY.SOVIET.B4_203MM_DIRECT_FIRE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.B4_203MM_DIRECT_FIRE\",\"documentation\":\"ABILITY.SOVIET.B4_203MM_DIRECT_FIRE\",\"detail\":\"ABILITY.SOVIET.B4_203MM_DIRECT_FIRE\"},{\"id\":\"ABILITY.SOVIET.B4_203MM_HOWITZER\",\"kind\":17,\"label\":\"ABILITY.SOVIET.B4_203MM_HOWITZER\",\"documentation\":\"ABILITY.SOVIET.B4_203MM_HOWITZER\",\"detail\":\"ABILITY.SOVIET.B4_203MM_HOWITZER\"},{\"id\":\"ABILITY.SOVIET.BASE_CONSCRIPT_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.SOVIET.BASE_CONSCRIPT_DISPATCH\",\"documentation\":\"ABILITY.SOVIET.BASE_CONSCRIPT_DISPATCH\",\"detail\":\"ABILITY.SOVIET.BASE_CONSCRIPT_DISPATCH\"},{\"id\":\"ABILITY.SOVIET.BASE_CONSCRIPT_DISPATCH_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.BASE_CONSCRIPT_DISPATCH_MP\",\"documentation\":\"ABILITY.SOVIET.BASE_CONSCRIPT_DISPATCH_MP\",\"detail\":\"ABILITY.SOVIET.BASE_CONSCRIPT_DISPATCH_MP\"},{\"id\":\"ABILITY.SOVIET.BOMBARDMENT_FX\",\"kind\":17,\"label\":\"ABILITY.SOVIET.BOMBARDMENT_FX\",\"documentation\":\"ABILITY.SOVIET.BOMBARDMENT_FX\",\"detail\":\"ABILITY.SOVIET.BOMBARDMENT_FX\"},{\"id\":\"ABILITY.SOVIET.BOOBY_TRAP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.BOOBY_TRAP\",\"documentation\":\"ABILITY.SOVIET.BOOBY_TRAP\",\"detail\":\"ABILITY.SOVIET.BOOBY_TRAP\"},{\"id\":\"ABILITY.SOVIET.BUTTON_VEHICLE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.BUTTON_VEHICLE\",\"documentation\":\"ABILITY.SOVIET.BUTTON_VEHICLE\",\"detail\":\"ABILITY.SOVIET.BUTTON_VEHICLE\"},{\"id\":\"ABILITY.SOVIET.BUTTON_VEHICLE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.BUTTON_VEHICLE_MP\",\"documentation\":\"ABILITY.SOVIET.BUTTON_VEHICLE_MP\",\"detail\":\"ABILITY.SOVIET.BUTTON_VEHICLE_MP\"},{\"id\":\"ABILITY.SOVIET.BUTTON_VEHICLE_TOW\",\"kind\":17,\"label\":\"ABILITY.SOVIET.BUTTON_VEHICLE_TOW\",\"documentation\":\"ABILITY.SOVIET.BUTTON_VEHICLE_TOW\",\"detail\":\"ABILITY.SOVIET.BUTTON_VEHICLE_TOW\"},{\"id\":\"ABILITY.SOVIET.CAMPAIGN_SHOCK_FIRE_SUPERIORITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CAMPAIGN_SHOCK_FIRE_SUPERIORITY\",\"documentation\":\"ABILITY.SOVIET.CAMPAIGN_SHOCK_FIRE_SUPERIORITY\",\"detail\":\"ABILITY.SOVIET.CAMPAIGN_SHOCK_FIRE_SUPERIORITY\"},{\"id\":\"ABILITY.SOVIET.CMD_120MM_MORTAR_CREW\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_120MM_MORTAR_CREW\",\"documentation\":\"ABILITY.SOVIET.CMD_120MM_MORTAR_CREW\",\"detail\":\"ABILITY.SOVIET.CMD_120MM_MORTAR_CREW\"},{\"id\":\"ABILITY.SOVIET.CMD_ADVANCED_T34_85_MEDIUM_TANK\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_ADVANCED_T34_85_MEDIUM_TANK\",\"documentation\":\"ABILITY.SOVIET.CMD_ADVANCED_T34_85_MEDIUM_TANK\",\"detail\":\"ABILITY.SOVIET.CMD_ADVANCED_T34_85_MEDIUM_TANK\"},{\"id\":\"ABILITY.SOVIET.CMD_AT_GUN_AMBUSH_TACTICS_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_AT_GUN_AMBUSH_TACTICS_MP\",\"documentation\":\"ABILITY.SOVIET.CMD_AT_GUN_AMBUSH_TACTICS_MP\",\"detail\":\"ABILITY.SOVIET.CMD_AT_GUN_AMBUSH_TACTICS_MP\"},{\"id\":\"ABILITY.SOVIET.CMD_CONSCRIPT_ASSAULT_PACKAGE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_CONSCRIPT_ASSAULT_PACKAGE\",\"documentation\":\"ABILITY.SOVIET.CMD_CONSCRIPT_ASSAULT_PACKAGE\",\"detail\":\"ABILITY.SOVIET.CMD_CONSCRIPT_ASSAULT_PACKAGE\"},{\"id\":\"ABILITY.SOVIET.CMD_CONSCRIPT_EVASIVE_TACTICS\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_CONSCRIPT_EVASIVE_TACTICS\",\"documentation\":\"ABILITY.SOVIET.CMD_CONSCRIPT_EVASIVE_TACTICS\",\"detail\":\"ABILITY.SOVIET.CMD_CONSCRIPT_EVASIVE_TACTICS\"},{\"id\":\"ABILITY.SOVIET.CMD_CONSCRIPT_REPAIR_KIT\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_CONSCRIPT_REPAIR_KIT\",\"documentation\":\"ABILITY.SOVIET.CMD_CONSCRIPT_REPAIR_KIT\",\"detail\":\"ABILITY.SOVIET.CMD_CONSCRIPT_REPAIR_KIT\"},{\"id\":\"ABILITY.SOVIET.CMD_GUARD_TROOPS\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_GUARD_TROOPS\",\"documentation\":\"ABILITY.SOVIET.CMD_GUARD_TROOPS\",\"detail\":\"ABILITY.SOVIET.CMD_GUARD_TROOPS\"},{\"id\":\"ABILITY.SOVIET.CMD_IS2_HEAVY_TANK\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_IS2_HEAVY_TANK\",\"documentation\":\"ABILITY.SOVIET.CMD_IS2_HEAVY_TANK\",\"detail\":\"ABILITY.SOVIET.CMD_IS2_HEAVY_TANK\"},{\"id\":\"ABILITY.SOVIET.CMD_ISU_152\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_ISU_152\",\"documentation\":\"ABILITY.SOVIET.CMD_ISU_152\",\"detail\":\"ABILITY.SOVIET.CMD_ISU_152\"},{\"id\":\"ABILITY.SOVIET.CMD_KATYUSHA\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_KATYUSHA\",\"documentation\":\"ABILITY.SOVIET.CMD_KATYUSHA\",\"detail\":\"ABILITY.SOVIET.CMD_KATYUSHA\"},{\"id\":\"ABILITY.SOVIET.CMD_KV_1_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_KV_1_UNLOCK\",\"documentation\":\"ABILITY.SOVIET.CMD_KV_1_UNLOCK\",\"detail\":\"ABILITY.SOVIET.CMD_KV_1_UNLOCK\"},{\"id\":\"ABILITY.SOVIET.CMD_KV_8_UNLOCK_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_KV_8_UNLOCK_MP\",\"documentation\":\"ABILITY.SOVIET.CMD_KV_8_UNLOCK_MP\",\"detail\":\"ABILITY.SOVIET.CMD_KV_8_UNLOCK_MP\"},{\"id\":\"ABILITY.SOVIET.CMD_ML_20\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_ML_20\",\"documentation\":\"ABILITY.SOVIET.CMD_ML_20\",\"detail\":\"ABILITY.SOVIET.CMD_ML_20\"},{\"id\":\"ABILITY.SOVIET.CMD_PENAL_BATTALION\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_PENAL_BATTALION\",\"documentation\":\"ABILITY.SOVIET.CMD_PENAL_BATTALION\",\"detail\":\"ABILITY.SOVIET.CMD_PENAL_BATTALION\"},{\"id\":\"ABILITY.SOVIET.CMD_RADIO_INTERCEPT\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_RADIO_INTERCEPT\",\"documentation\":\"ABILITY.SOVIET.CMD_RADIO_INTERCEPT\",\"detail\":\"ABILITY.SOVIET.CMD_RADIO_INTERCEPT\"},{\"id\":\"ABILITY.SOVIET.CMD_SHOCK_TROOPS\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_SHOCK_TROOPS\",\"documentation\":\"ABILITY.SOVIET.CMD_SHOCK_TROOPS\",\"detail\":\"ABILITY.SOVIET.CMD_SHOCK_TROOPS\"},{\"id\":\"ABILITY.SOVIET.CMD_SOVIET_INDUSTRY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_SOVIET_INDUSTRY\",\"documentation\":\"ABILITY.SOVIET.CMD_SOVIET_INDUSTRY\",\"detail\":\"ABILITY.SOVIET.CMD_SOVIET_INDUSTRY\"},{\"id\":\"ABILITY.SOVIET.CMD_T34_85_MEDIUM_TANK\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_T34_85_MEDIUM_TANK\",\"documentation\":\"ABILITY.SOVIET.CMD_T34_85_MEDIUM_TANK\",\"detail\":\"ABILITY.SOVIET.CMD_T34_85_MEDIUM_TANK\"},{\"id\":\"ABILITY.SOVIET.CMD_VEHICLE_CREW_REPAIR_TRAINING\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CMD_VEHICLE_CREW_REPAIR_TRAINING\",\"documentation\":\"ABILITY.SOVIET.CMD_VEHICLE_CREW_REPAIR_TRAINING\",\"detail\":\"ABILITY.SOVIET.CMD_VEHICLE_CREW_REPAIR_TRAINING\"},{\"id\":\"ABILITY.SOVIET.COMMISSAR_SQUAD_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.COMMISSAR_SQUAD_MP\",\"documentation\":\"ABILITY.SOVIET.COMMISSAR_SQUAD_MP\",\"detail\":\"ABILITY.SOVIET.COMMISSAR_SQUAD_MP\"},{\"id\":\"ABILITY.SOVIET.CONE_LOS_TOGGLE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CONE_LOS_TOGGLE_ABILITY\",\"documentation\":\"ABILITY.SOVIET.CONE_LOS_TOGGLE_ABILITY\",\"detail\":\"ABILITY.SOVIET.CONE_LOS_TOGGLE_ABILITY\"},{\"id\":\"ABILITY.SOVIET.CONE_LOS_TOGGLE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CONE_LOS_TOGGLE_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.CONE_LOS_TOGGLE_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.CONE_LOS_TOGGLE_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.CONSCRIPT_ANTI_TANK_GRENADE_ASSAULT_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CONSCRIPT_ANTI_TANK_GRENADE_ASSAULT_MP\",\"documentation\":\"ABILITY.SOVIET.CONSCRIPT_ANTI_TANK_GRENADE_ASSAULT_MP\",\"detail\":\"ABILITY.SOVIET.CONSCRIPT_ANTI_TANK_GRENADE_ASSAULT_MP\"},{\"id\":\"ABILITY.SOVIET.CONSCRIPT_DISPATCH_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CONSCRIPT_DISPATCH_MP\",\"documentation\":\"ABILITY.SOVIET.CONSCRIPT_DISPATCH_MP\",\"detail\":\"ABILITY.SOVIET.CONSCRIPT_DISPATCH_MP\"},{\"id\":\"ABILITY.SOVIET.CONSCRIPT_EVASIVE_TACTICS\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CONSCRIPT_EVASIVE_TACTICS\",\"documentation\":\"ABILITY.SOVIET.CONSCRIPT_EVASIVE_TACTICS\",\"detail\":\"ABILITY.SOVIET.CONSCRIPT_EVASIVE_TACTICS\"},{\"id\":\"ABILITY.SOVIET.CONSCRIPT_EVASIVE_TACTICS_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CONSCRIPT_EVASIVE_TACTICS_MP\",\"documentation\":\"ABILITY.SOVIET.CONSCRIPT_EVASIVE_TACTICS_MP\",\"detail\":\"ABILITY.SOVIET.CONSCRIPT_EVASIVE_TACTICS_MP\"},{\"id\":\"ABILITY.SOVIET.CONSCRIPT_MOLOTOV_COCKTAIL\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CONSCRIPT_MOLOTOV_COCKTAIL\",\"documentation\":\"ABILITY.SOVIET.CONSCRIPT_MOLOTOV_COCKTAIL\",\"detail\":\"ABILITY.SOVIET.CONSCRIPT_MOLOTOV_COCKTAIL\"},{\"id\":\"ABILITY.SOVIET.CONSCRIPT_MOLOTOV_COCKTAIL_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CONSCRIPT_MOLOTOV_COCKTAIL_MP\",\"documentation\":\"ABILITY.SOVIET.CONSCRIPT_MOLOTOV_COCKTAIL_MP\",\"detail\":\"ABILITY.SOVIET.CONSCRIPT_MOLOTOV_COCKTAIL_MP\"},{\"id\":\"ABILITY.SOVIET.CONSCRIPT_OORAH\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CONSCRIPT_OORAH\",\"documentation\":\"ABILITY.SOVIET.CONSCRIPT_OORAH\",\"detail\":\"ABILITY.SOVIET.CONSCRIPT_OORAH\"},{\"id\":\"ABILITY.SOVIET.CONSCRIPT_OORAH_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CONSCRIPT_OORAH_MP\",\"documentation\":\"ABILITY.SOVIET.CONSCRIPT_OORAH_MP\",\"detail\":\"ABILITY.SOVIET.CONSCRIPT_OORAH_MP\"},{\"id\":\"ABILITY.SOVIET.CONSCRIPT_PTRS_UPGRADE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.CONSCRIPT_PTRS_UPGRADE\",\"documentation\":\"ABILITY.SOVIET.CONSCRIPT_PTRS_UPGRADE\",\"detail\":\"ABILITY.SOVIET.CONSCRIPT_PTRS_UPGRADE\"},{\"id\":\"ABILITY.SOVIET.DSHK_ARMOR_PIERCING\",\"kind\":17,\"label\":\"ABILITY.SOVIET.DSHK_ARMOR_PIERCING\",\"documentation\":\"ABILITY.SOVIET.DSHK_ARMOR_PIERCING\",\"detail\":\"ABILITY.SOVIET.DSHK_ARMOR_PIERCING\"},{\"id\":\"ABILITY.SOVIET.DSHK_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.DSHK_MP\",\"documentation\":\"ABILITY.SOVIET.DSHK_MP\",\"detail\":\"ABILITY.SOVIET.DSHK_MP\"},{\"id\":\"ABILITY.SOVIET.ENGINEER_SALVAGE_WRECK\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ENGINEER_SALVAGE_WRECK\",\"documentation\":\"ABILITY.SOVIET.ENGINEER_SALVAGE_WRECK\",\"detail\":\"ABILITY.SOVIET.ENGINEER_SALVAGE_WRECK\"},{\"id\":\"ABILITY.SOVIET.FATALITY_FEAR_PROPAGANDA_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.FATALITY_FEAR_PROPAGANDA_ARTILLERY\",\"documentation\":\"ABILITY.SOVIET.FATALITY_FEAR_PROPAGANDA_ARTILLERY\",\"detail\":\"ABILITY.SOVIET.FATALITY_FEAR_PROPAGANDA_ARTILLERY\"},{\"id\":\"ABILITY.SOVIET.FATALITY_INCENDIARY_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.FATALITY_INCENDIARY_ARTILLERY\",\"documentation\":\"ABILITY.SOVIET.FATALITY_INCENDIARY_ARTILLERY\",\"detail\":\"ABILITY.SOVIET.FATALITY_INCENDIARY_ARTILLERY\"},{\"id\":\"ABILITY.SOVIET.FATALITY_KATYUSHA_ROCKETS\",\"kind\":17,\"label\":\"ABILITY.SOVIET.FATALITY_KATYUSHA_ROCKETS\",\"documentation\":\"ABILITY.SOVIET.FATALITY_KATYUSHA_ROCKETS\",\"detail\":\"ABILITY.SOVIET.FATALITY_KATYUSHA_ROCKETS\"},{\"id\":\"ABILITY.SOVIET.FEAR_PROPAGANDA_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.FEAR_PROPAGANDA_ARTILLERY\",\"documentation\":\"ABILITY.SOVIET.FEAR_PROPAGANDA_ARTILLERY\",\"detail\":\"ABILITY.SOVIET.FEAR_PROPAGANDA_ARTILLERY\"},{\"id\":\"ABILITY.SOVIET.FIELDCRAFT_TRIP_FLARE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.FIELDCRAFT_TRIP_FLARE\",\"documentation\":\"ABILITY.SOVIET.FIELDCRAFT_TRIP_FLARE\",\"detail\":\"ABILITY.SOVIET.FIELDCRAFT_TRIP_FLARE\"},{\"id\":\"ABILITY.SOVIET.FIELDCRAFT_TRIP_FLARE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.FIELDCRAFT_TRIP_FLARE_MP\",\"documentation\":\"ABILITY.SOVIET.FIELDCRAFT_TRIP_FLARE_MP\",\"detail\":\"ABILITY.SOVIET.FIELDCRAFT_TRIP_FLARE_MP\"},{\"id\":\"ABILITY.SOVIET.FIRE_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.FIRE_ARTILLERY\",\"documentation\":\"ABILITY.SOVIET.FIRE_ARTILLERY\",\"detail\":\"ABILITY.SOVIET.FIRE_ARTILLERY\"},{\"id\":\"ABILITY.SOVIET.FOR_MOTHER_RUSSIA_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.FOR_MOTHER_RUSSIA_ABILITY\",\"documentation\":\"ABILITY.SOVIET.FOR_MOTHER_RUSSIA_ABILITY\",\"detail\":\"ABILITY.SOVIET.FOR_MOTHER_RUSSIA_ABILITY\"},{\"id\":\"ABILITY.SOVIET.FORWARD_HQ\",\"kind\":17,\"label\":\"ABILITY.SOVIET.FORWARD_HQ\",\"documentation\":\"ABILITY.SOVIET.FORWARD_HQ\",\"detail\":\"ABILITY.SOVIET.FORWARD_HQ\"},{\"id\":\"ABILITY.SOVIET.FRONTOVIKI_CONSCRIPT_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.SOVIET.FRONTOVIKI_CONSCRIPT_DISPATCH\",\"documentation\":\"ABILITY.SOVIET.FRONTOVIKI_CONSCRIPT_DISPATCH\",\"detail\":\"ABILITY.SOVIET.FRONTOVIKI_CONSCRIPT_DISPATCH\"},{\"id\":\"ABILITY.SOVIET.GUARDS_THROW_DEFENSIVE_GRENADE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.GUARDS_THROW_DEFENSIVE_GRENADE\",\"documentation\":\"ABILITY.SOVIET.GUARDS_THROW_DEFENSIVE_GRENADE\",\"detail\":\"ABILITY.SOVIET.GUARDS_THROW_DEFENSIVE_GRENADE\"},{\"id\":\"ABILITY.SOVIET.GUARDS_THROW_DEFENSIVE_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.GUARDS_THROW_DEFENSIVE_GRENADE_MP\",\"documentation\":\"ABILITY.SOVIET.GUARDS_THROW_DEFENSIVE_GRENADE_MP\",\"detail\":\"ABILITY.SOVIET.GUARDS_THROW_DEFENSIVE_GRENADE_MP\"},{\"id\":\"ABILITY.SOVIET.HOLD_THE_LINE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.HOLD_THE_LINE\",\"documentation\":\"ABILITY.SOVIET.HOLD_THE_LINE\",\"detail\":\"ABILITY.SOVIET.HOLD_THE_LINE\"},{\"id\":\"ABILITY.SOVIET.IL_2_ANTI_TANK_BOMB_STRIKE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_ANTI_TANK_BOMB_STRIKE\",\"documentation\":\"ABILITY.SOVIET.IL_2_ANTI_TANK_BOMB_STRIKE\",\"detail\":\"ABILITY.SOVIET.IL_2_ANTI_TANK_BOMB_STRIKE\"},{\"id\":\"ABILITY.SOVIET.IL_2_ATTACK_STRAFE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_ATTACK_STRAFE\",\"documentation\":\"ABILITY.SOVIET.IL_2_ATTACK_STRAFE\",\"detail\":\"ABILITY.SOVIET.IL_2_ATTACK_STRAFE\"},{\"id\":\"ABILITY.SOVIET.IL_2_BOMBING_RUN_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_BOMBING_RUN_SP\",\"documentation\":\"ABILITY.SOVIET.IL_2_BOMBING_RUN_SP\",\"detail\":\"ABILITY.SOVIET.IL_2_BOMBING_RUN_SP\"},{\"id\":\"ABILITY.SOVIET.IL_2_PRECISION_BOMB_STRIKE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_PRECISION_BOMB_STRIKE\",\"documentation\":\"ABILITY.SOVIET.IL_2_PRECISION_BOMB_STRIKE\",\"detail\":\"ABILITY.SOVIET.IL_2_PRECISION_BOMB_STRIKE\"},{\"id\":\"ABILITY.SOVIET.IL_2_RECON\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_RECON\",\"documentation\":\"ABILITY.SOVIET.IL_2_RECON\",\"detail\":\"ABILITY.SOVIET.IL_2_RECON\"},{\"id\":\"ABILITY.SOVIET.IL_2_RECON_SINGLEPASS_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_RECON_SINGLEPASS_SP\",\"documentation\":\"ABILITY.SOVIET.IL_2_RECON_SINGLEPASS_SP\",\"detail\":\"ABILITY.SOVIET.IL_2_RECON_SINGLEPASS_SP\"},{\"id\":\"ABILITY.SOVIET.IL_2_RECON_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_RECON_SP\",\"documentation\":\"ABILITY.SOVIET.IL_2_RECON_SP\",\"detail\":\"ABILITY.SOVIET.IL_2_RECON_SP\"},{\"id\":\"ABILITY.SOVIET.IL_2_STURMOVIK_ATTACK\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_STURMOVIK_ATTACK\",\"documentation\":\"ABILITY.SOVIET.IL_2_STURMOVIK_ATTACK\",\"detail\":\"ABILITY.SOVIET.IL_2_STURMOVIK_ATTACK\"},{\"id\":\"ABILITY.SOVIET.IL_2_STURMOVIK_ATTACK_ADVANCED\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_STURMOVIK_ATTACK_ADVANCED\",\"documentation\":\"ABILITY.SOVIET.IL_2_STURMOVIK_ATTACK_ADVANCED\",\"detail\":\"ABILITY.SOVIET.IL_2_STURMOVIK_ATTACK_ADVANCED\"},{\"id\":\"ABILITY.SOVIET.IL_2_SUPPORT\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_SUPPORT\",\"documentation\":\"ABILITY.SOVIET.IL_2_SUPPORT\",\"detail\":\"ABILITY.SOVIET.IL_2_SUPPORT\"},{\"id\":\"ABILITY.SOVIET.IL_2_SUPPORT_PRECISION_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_SUPPORT_PRECISION_SP\",\"documentation\":\"ABILITY.SOVIET.IL_2_SUPPORT_PRECISION_SP\",\"detail\":\"ABILITY.SOVIET.IL_2_SUPPORT_PRECISION_SP\"},{\"id\":\"ABILITY.SOVIET.IL_2_SUPPORT_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IL_2_SUPPORT_SP\",\"documentation\":\"ABILITY.SOVIET.IL_2_SUPPORT_SP\",\"detail\":\"ABILITY.SOVIET.IL_2_SUPPORT_SP\"},{\"id\":\"ABILITY.SOVIET.IS2_DISPATCH_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IS2_DISPATCH_SP\",\"documentation\":\"ABILITY.SOVIET.IS2_DISPATCH_SP\",\"detail\":\"ABILITY.SOVIET.IS2_DISPATCH_SP\"},{\"id\":\"ABILITY.SOVIET.IS2_TANK_DEFENSIVE_WEAPON_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.IS2_TANK_DEFENSIVE_WEAPON_MP\",\"documentation\":\"ABILITY.SOVIET.IS2_TANK_DEFENSIVE_WEAPON_MP\",\"detail\":\"ABILITY.SOVIET.IS2_TANK_DEFENSIVE_WEAPON_MP\"},{\"id\":\"ABILITY.SOVIET.ISU_152_DISPATCH_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ISU_152_DISPATCH_SP\",\"documentation\":\"ABILITY.SOVIET.ISU_152_DISPATCH_SP\",\"detail\":\"ABILITY.SOVIET.ISU_152_DISPATCH_SP\"},{\"id\":\"ABILITY.SOVIET.ISU_152_PIERCING_SHOT_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ISU_152_PIERCING_SHOT_ABILITY\",\"documentation\":\"ABILITY.SOVIET.ISU_152_PIERCING_SHOT_ABILITY\",\"detail\":\"ABILITY.SOVIET.ISU_152_PIERCING_SHOT_ABILITY\"},{\"id\":\"ABILITY.SOVIET.ISU_152_PIERCING_SHOT_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ISU_152_PIERCING_SHOT_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.ISU_152_PIERCING_SHOT_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.ISU_152_PIERCING_SHOT_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.ISU152_AMMO_SWITCH_AP_SHELL_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ISU152_AMMO_SWITCH_AP_SHELL_MP\",\"documentation\":\"ABILITY.SOVIET.ISU152_AMMO_SWITCH_AP_SHELL_MP\",\"detail\":\"ABILITY.SOVIET.ISU152_AMMO_SWITCH_AP_SHELL_MP\"},{\"id\":\"ABILITY.SOVIET.ISU152_AMMO_SWITCH_HE_SHELL_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ISU152_AMMO_SWITCH_HE_SHELL_MP\",\"documentation\":\"ABILITY.SOVIET.ISU152_AMMO_SWITCH_HE_SHELL_MP\",\"detail\":\"ABILITY.SOVIET.ISU152_AMMO_SWITCH_HE_SHELL_MP\"},{\"id\":\"ABILITY.SOVIET.ISU152_CONCRETE_PIERCING_ROUND_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ISU152_CONCRETE_PIERCING_ROUND_MP\",\"documentation\":\"ABILITY.SOVIET.ISU152_CONCRETE_PIERCING_ROUND_MP\",\"detail\":\"ABILITY.SOVIET.ISU152_CONCRETE_PIERCING_ROUND_MP\"},{\"id\":\"ABILITY.SOVIET.KATUSHYA_CREEPING_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.KATUSHYA_CREEPING_BARRAGE_MP\",\"documentation\":\"ABILITY.SOVIET.KATUSHYA_CREEPING_BARRAGE_MP\",\"detail\":\"ABILITY.SOVIET.KATUSHYA_CREEPING_BARRAGE_MP\"},{\"id\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE\",\"documentation\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE\",\"detail\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE\"},{\"id\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_MP\",\"documentation\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_MP\",\"detail\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_MP\"},{\"id\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_VET3_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_VET3_MP\",\"documentation\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_VET3_MP\",\"detail\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_VET3_MP\"},{\"id\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_VICTORTARGET_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_VICTORTARGET_MP\",\"documentation\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_VICTORTARGET_MP\",\"detail\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_BARRAGE_VICTORTARGET_MP\"},{\"id\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_CREEPING_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_CREEPING_BARRAGE_MP\",\"documentation\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_CREEPING_BARRAGE_MP\",\"detail\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_CREEPING_BARRAGE_MP\"},{\"id\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_PRECISION_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_PRECISION_BARRAGE\",\"documentation\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_PRECISION_BARRAGE\",\"detail\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_PRECISION_BARRAGE\"},{\"id\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_PRECISION_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_PRECISION_BARRAGE_MP\",\"documentation\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_PRECISION_BARRAGE_MP\",\"detail\":\"ABILITY.SOVIET.KAYTUSHA_ROCKET_TRUCK_PRECISION_BARRAGE_MP\"},{\"id\":\"ABILITY.SOVIET.KV_2\",\"kind\":17,\"label\":\"ABILITY.SOVIET.KV_2\",\"documentation\":\"ABILITY.SOVIET.KV_2\",\"detail\":\"ABILITY.SOVIET.KV_2\"},{\"id\":\"ABILITY.SOVIET.KV_2_SEIGE_MODE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.KV_2_SEIGE_MODE\",\"documentation\":\"ABILITY.SOVIET.KV_2_SEIGE_MODE\",\"detail\":\"ABILITY.SOVIET.KV_2_SEIGE_MODE\"},{\"id\":\"ABILITY.SOVIET.KV_8_FLAME_45MM_TOGGLE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.KV_8_FLAME_45MM_TOGGLE_MP\",\"documentation\":\"ABILITY.SOVIET.KV_8_FLAME_45MM_TOGGLE_MP\",\"detail\":\"ABILITY.SOVIET.KV_8_FLAME_45MM_TOGGLE_MP\"},{\"id\":\"ABILITY.SOVIET.LIGHT_ANTI_VEHICLE_MINES\",\"kind\":17,\"label\":\"ABILITY.SOVIET.LIGHT_ANTI_VEHICLE_MINES\",\"documentation\":\"ABILITY.SOVIET.LIGHT_ANTI_VEHICLE_MINES\",\"detail\":\"ABILITY.SOVIET.LIGHT_ANTI_VEHICLE_MINES\"},{\"id\":\"ABILITY.SOVIET.M_42_AT_GUN\",\"kind\":17,\"label\":\"ABILITY.SOVIET.M_42_AT_GUN\",\"documentation\":\"ABILITY.SOVIET.M_42_AT_GUN\",\"detail\":\"ABILITY.SOVIET.M_42_AT_GUN\"},{\"id\":\"ABILITY.SOVIET.M11_PARTISANS_DISPATCH_KARK98K\",\"kind\":17,\"label\":\"ABILITY.SOVIET.M11_PARTISANS_DISPATCH_KARK98K\",\"documentation\":\"ABILITY.SOVIET.M11_PARTISANS_DISPATCH_KARK98K\",\"detail\":\"ABILITY.SOVIET.M11_PARTISANS_DISPATCH_KARK98K\"},{\"id\":\"ABILITY.SOVIET.M11_PARTISANS_DISPATCH_NAGANT\",\"kind\":17,\"label\":\"ABILITY.SOVIET.M11_PARTISANS_DISPATCH_NAGANT\",\"documentation\":\"ABILITY.SOVIET.M11_PARTISANS_DISPATCH_NAGANT\",\"detail\":\"ABILITY.SOVIET.M11_PARTISANS_DISPATCH_NAGANT\"},{\"id\":\"ABILITY.SOVIET.M11_SNIPER_DISPATCH02\",\"kind\":17,\"label\":\"ABILITY.SOVIET.M11_SNIPER_DISPATCH02\",\"documentation\":\"ABILITY.SOVIET.M11_SNIPER_DISPATCH02\",\"detail\":\"ABILITY.SOVIET.M11_SNIPER_DISPATCH02\"},{\"id\":\"ABILITY.SOVIET.M11_SNIPER_DISPATCH02_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.M11_SNIPER_DISPATCH02_MP\",\"documentation\":\"ABILITY.SOVIET.M11_SNIPER_DISPATCH02_MP\",\"detail\":\"ABILITY.SOVIET.M11_SNIPER_DISPATCH02_MP\"},{\"id\":\"ABILITY.SOVIET.M11_SNIPER_HOLD_FIRE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.M11_SNIPER_HOLD_FIRE\",\"documentation\":\"ABILITY.SOVIET.M11_SNIPER_HOLD_FIRE\",\"detail\":\"ABILITY.SOVIET.M11_SNIPER_HOLD_FIRE\"},{\"id\":\"ABILITY.SOVIET.M3A1_M5_MOVING_ACCURACY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.M3A1_M5_MOVING_ACCURACY_MP\",\"documentation\":\"ABILITY.SOVIET.M3A1_M5_MOVING_ACCURACY_MP\",\"detail\":\"ABILITY.SOVIET.M3A1_M5_MOVING_ACCURACY_MP\"},{\"id\":\"ABILITY.SOVIET.M5_HALFTRACK_ASSAULT\",\"kind\":17,\"label\":\"ABILITY.SOVIET.M5_HALFTRACK_ASSAULT\",\"documentation\":\"ABILITY.SOVIET.M5_HALFTRACK_ASSAULT\",\"detail\":\"ABILITY.SOVIET.M5_HALFTRACK_ASSAULT\"},{\"id\":\"ABILITY.SOVIET.M5_M3A1_OVERDRIVE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.M5_M3A1_OVERDRIVE\",\"documentation\":\"ABILITY.SOVIET.M5_M3A1_OVERDRIVE\",\"detail\":\"ABILITY.SOVIET.M5_M3A1_OVERDRIVE\"},{\"id\":\"ABILITY.SOVIET.M5_M3A1_OVERDRIVE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.M5_M3A1_OVERDRIVE_MP\",\"documentation\":\"ABILITY.SOVIET.M5_M3A1_OVERDRIVE_MP\",\"detail\":\"ABILITY.SOVIET.M5_M3A1_OVERDRIVE_MP\"},{\"id\":\"ABILITY.SOVIET.MANPOWER_BLITZ\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MANPOWER_BLITZ\",\"documentation\":\"ABILITY.SOVIET.MANPOWER_BLITZ\",\"detail\":\"ABILITY.SOVIET.MANPOWER_BLITZ\"},{\"id\":\"ABILITY.SOVIET.MARK_VEHICLE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MARK_VEHICLE\",\"documentation\":\"ABILITY.SOVIET.MARK_VEHICLE\",\"detail\":\"ABILITY.SOVIET.MARK_VEHICLE\"},{\"id\":\"ABILITY.SOVIET.MAXIM_HMG_DISPATCH_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MAXIM_HMG_DISPATCH_SP\",\"documentation\":\"ABILITY.SOVIET.MAXIM_HMG_DISPATCH_SP\",\"detail\":\"ABILITY.SOVIET.MAXIM_HMG_DISPATCH_SP\"},{\"id\":\"ABILITY.SOVIET.MERGE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MERGE_ABILITY\",\"documentation\":\"ABILITY.SOVIET.MERGE_ABILITY\",\"detail\":\"ABILITY.SOVIET.MERGE_ABILITY\"},{\"id\":\"ABILITY.SOVIET.MERGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MERGE_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.MERGE_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.MERGE_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY\",\"documentation\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY\",\"detail\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY\"},{\"id\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_SLOW\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_SLOW\",\"documentation\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_SLOW\",\"detail\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_SLOW\"},{\"id\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_SLOW_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_SLOW_MP\",\"documentation\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_SLOW_MP\",\"detail\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_SLOW_MP\"},{\"id\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VET_1_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VET_1_MP\",\"documentation\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VET_1_MP\",\"detail\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VET_1_MP\"},{\"id\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VET3_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VET3_MP\",\"documentation\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VET3_MP\",\"detail\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VET3_MP\"},{\"id\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VICTORTARGET_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VICTORTARGET_MP\",\"documentation\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VICTORTARGET_MP\",\"detail\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_ABILITY_VICTORTARGET_MP\"},{\"id\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_PRECISON_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_PRECISON_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_PRECISON_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.ML_20_152MM_BARRAGE_PRECISON_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.MORTAR_EXPLOSION_FX\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MORTAR_EXPLOSION_FX\",\"documentation\":\"ABILITY.SOVIET.MORTAR_EXPLOSION_FX\",\"detail\":\"ABILITY.SOVIET.MORTAR_EXPLOSION_FX\"},{\"id\":\"ABILITY.SOVIET.MORTAR_EXPLOSION_FX_ICE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MORTAR_EXPLOSION_FX_ICE\",\"documentation\":\"ABILITY.SOVIET.MORTAR_EXPLOSION_FX_ICE\",\"detail\":\"ABILITY.SOVIET.MORTAR_EXPLOSION_FX_ICE\"},{\"id\":\"ABILITY.SOVIET.MORTAR_FIRE_FLARES_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MORTAR_FIRE_FLARES_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.MORTAR_FIRE_FLARES_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.MORTAR_FIRE_FLARES_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_120MM_VET\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_120MM_VET\",\"documentation\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_120MM_VET\",\"detail\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_120MM_VET\"},{\"id\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_120MM_VET_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_120MM_VET_MP\",\"documentation\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_120MM_VET_MP\",\"detail\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_120MM_VET_MP\"},{\"id\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_82MM\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_82MM\",\"documentation\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_82MM\",\"detail\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_82MM\"},{\"id\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_82MM_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_82MM_MP\",\"documentation\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_82MM_MP\",\"detail\":\"ABILITY.SOVIET.MORTAR_PRECISION_BARRAGE_82MM_MP\"},{\"id\":\"ABILITY.SOVIET.NO_RETREAT_NO_SURRENDER\",\"kind\":17,\"label\":\"ABILITY.SOVIET.NO_RETREAT_NO_SURRENDER\",\"documentation\":\"ABILITY.SOVIET.NO_RETREAT_NO_SURRENDER\",\"detail\":\"ABILITY.SOVIET.NO_RETREAT_NO_SURRENDER\"},{\"id\":\"ABILITY.SOVIET.PARTISAN_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.SOVIET.PARTISAN_DISPATCH\",\"documentation\":\"ABILITY.SOVIET.PARTISAN_DISPATCH\",\"detail\":\"ABILITY.SOVIET.PARTISAN_DISPATCH\"},{\"id\":\"ABILITY.SOVIET.PARTISAN_DISPATCH_TOW\",\"kind\":17,\"label\":\"ABILITY.SOVIET.PARTISAN_DISPATCH_TOW\",\"documentation\":\"ABILITY.SOVIET.PARTISAN_DISPATCH_TOW\",\"detail\":\"ABILITY.SOVIET.PARTISAN_DISPATCH_TOW\"},{\"id\":\"ABILITY.SOVIET.PARTISAN_MOLOTOV_COCKTAIL_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.PARTISAN_MOLOTOV_COCKTAIL_MP\",\"documentation\":\"ABILITY.SOVIET.PARTISAN_MOLOTOV_COCKTAIL_MP\",\"detail\":\"ABILITY.SOVIET.PARTISAN_MOLOTOV_COCKTAIL_MP\"},{\"id\":\"ABILITY.SOVIET.PARTISANS_COMMANDER_ANTI_INFANTRY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.PARTISANS_COMMANDER_ANTI_INFANTRY\",\"documentation\":\"ABILITY.SOVIET.PARTISANS_COMMANDER_ANTI_INFANTRY\",\"detail\":\"ABILITY.SOVIET.PARTISANS_COMMANDER_ANTI_INFANTRY\"},{\"id\":\"ABILITY.SOVIET.PARTISANS_COMMANDER_ANTI_VEHICLE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.PARTISANS_COMMANDER_ANTI_VEHICLE\",\"documentation\":\"ABILITY.SOVIET.PARTISANS_COMMANDER_ANTI_VEHICLE\",\"detail\":\"ABILITY.SOVIET.PARTISANS_COMMANDER_ANTI_VEHICLE\"},{\"id\":\"ABILITY.SOVIET.PENAL_OORAH_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.PENAL_OORAH_MP\",\"documentation\":\"ABILITY.SOVIET.PENAL_OORAH_MP\",\"detail\":\"ABILITY.SOVIET.PENAL_OORAH_MP\"},{\"id\":\"ABILITY.SOVIET.PENAL_TROOP_DISPATCH_SINGLE_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.PENAL_TROOP_DISPATCH_SINGLE_SP\",\"documentation\":\"ABILITY.SOVIET.PENAL_TROOP_DISPATCH_SINGLE_SP\",\"detail\":\"ABILITY.SOVIET.PENAL_TROOP_DISPATCH_SINGLE_SP\"},{\"id\":\"ABILITY.SOVIET.PENAL_TROOP_DISPATCH_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.PENAL_TROOP_DISPATCH_SP\",\"documentation\":\"ABILITY.SOVIET.PENAL_TROOP_DISPATCH_SP\",\"detail\":\"ABILITY.SOVIET.PENAL_TROOP_DISPATCH_SP\"},{\"id\":\"ABILITY.SOVIET.RAPID_CONSCRIPTION\",\"kind\":17,\"label\":\"ABILITY.SOVIET.RAPID_CONSCRIPTION\",\"documentation\":\"ABILITY.SOVIET.RAPID_CONSCRIPTION\",\"detail\":\"ABILITY.SOVIET.RAPID_CONSCRIPTION\"},{\"id\":\"ABILITY.SOVIET.REPAIR_STATION\",\"kind\":17,\"label\":\"ABILITY.SOVIET.REPAIR_STATION\",\"documentation\":\"ABILITY.SOVIET.REPAIR_STATION\",\"detail\":\"ABILITY.SOVIET.REPAIR_STATION\"},{\"id\":\"ABILITY.SOVIET.RG_42_ANTI_PERSONNEL_GRENADE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.RG_42_ANTI_PERSONNEL_GRENADE\",\"documentation\":\"ABILITY.SOVIET.RG_42_ANTI_PERSONNEL_GRENADE\",\"detail\":\"ABILITY.SOVIET.RG_42_ANTI_PERSONNEL_GRENADE\"},{\"id\":\"ABILITY.SOVIET.RG_42_ANTI_PERSONNEL_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.RG_42_ANTI_PERSONNEL_GRENADE_MP\",\"documentation\":\"ABILITY.SOVIET.RG_42_ANTI_PERSONNEL_GRENADE_MP\",\"detail\":\"ABILITY.SOVIET.RG_42_ANTI_PERSONNEL_GRENADE_MP\"},{\"id\":\"ABILITY.SOVIET.RGD_1_SMOKE_GRENADE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.RGD_1_SMOKE_GRENADE\",\"documentation\":\"ABILITY.SOVIET.RGD_1_SMOKE_GRENADE\",\"detail\":\"ABILITY.SOVIET.RGD_1_SMOKE_GRENADE\"},{\"id\":\"ABILITY.SOVIET.RGD_1_SMOKE_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.RGD_1_SMOKE_GRENADE_MP\",\"documentation\":\"ABILITY.SOVIET.RGD_1_SMOKE_GRENADE_MP\",\"detail\":\"ABILITY.SOVIET.RGD_1_SMOKE_GRENADE_MP\"},{\"id\":\"ABILITY.SOVIET.RGD_33_PARTISAN_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.RGD_33_PARTISAN_GRENADE_MP\",\"documentation\":\"ABILITY.SOVIET.RGD_33_PARTISAN_GRENADE_MP\",\"detail\":\"ABILITY.SOVIET.RGD_33_PARTISAN_GRENADE_MP\"},{\"id\":\"ABILITY.SOVIET.SALVAGE_KITS\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SALVAGE_KITS\",\"documentation\":\"ABILITY.SOVIET.SALVAGE_KITS\",\"detail\":\"ABILITY.SOVIET.SALVAGE_KITS\"},{\"id\":\"ABILITY.SOVIET.SATCHEL_CHARGE_THROW_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SATCHEL_CHARGE_THROW_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.SATCHEL_CHARGE_THROW_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.SATCHEL_CHARGE_THROW_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.SCORCHED_EARTH_POLICY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SCORCHED_EARTH_POLICY\",\"documentation\":\"ABILITY.SOVIET.SCORCHED_EARTH_POLICY\",\"detail\":\"ABILITY.SOVIET.SCORCHED_EARTH_POLICY\"},{\"id\":\"ABILITY.SOVIET.SCORCHED_EARTH_POLICY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SCORCHED_EARTH_POLICY_MP\",\"documentation\":\"ABILITY.SOVIET.SCORCHED_EARTH_POLICY_MP\",\"detail\":\"ABILITY.SOVIET.SCORCHED_EARTH_POLICY_MP\"},{\"id\":\"ABILITY.SOVIET.SHERMAN_SOVIET_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SHERMAN_SOVIET_DISPATCH\",\"documentation\":\"ABILITY.SOVIET.SHERMAN_SOVIET_DISPATCH\",\"detail\":\"ABILITY.SOVIET.SHERMAN_SOVIET_DISPATCH\"},{\"id\":\"ABILITY.SOVIET.SHERMAN76MM_AMMO_SWITCH_AP_SHELL_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SHERMAN76MM_AMMO_SWITCH_AP_SHELL_MP\",\"documentation\":\"ABILITY.SOVIET.SHERMAN76MM_AMMO_SWITCH_AP_SHELL_MP\",\"detail\":\"ABILITY.SOVIET.SHERMAN76MM_AMMO_SWITCH_AP_SHELL_MP\"},{\"id\":\"ABILITY.SOVIET.SHERMAN76MM_AMMO_SWITCH_HE_SHELL_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SHERMAN76MM_AMMO_SWITCH_HE_SHELL_MP\",\"documentation\":\"ABILITY.SOVIET.SHERMAN76MM_AMMO_SWITCH_HE_SHELL_MP\",\"detail\":\"ABILITY.SOVIET.SHERMAN76MM_AMMO_SWITCH_HE_SHELL_MP\"},{\"id\":\"ABILITY.SOVIET.SHOCK_TROOP_DISPATCH_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SHOCK_TROOP_DISPATCH_SP\",\"documentation\":\"ABILITY.SOVIET.SHOCK_TROOP_DISPATCH_SP\",\"detail\":\"ABILITY.SOVIET.SHOCK_TROOP_DISPATCH_SP\"},{\"id\":\"ABILITY.SOVIET.SHOCK_TROOP_SMOKE_GRENADES\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SHOCK_TROOP_SMOKE_GRENADES\",\"documentation\":\"ABILITY.SOVIET.SHOCK_TROOP_SMOKE_GRENADES\",\"detail\":\"ABILITY.SOVIET.SHOCK_TROOP_SMOKE_GRENADES\"},{\"id\":\"ABILITY.SOVIET.SMOKE_120MM_MORTAR_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SMOKE_120MM_MORTAR_BARRAGE\",\"documentation\":\"ABILITY.SOVIET.SMOKE_120MM_MORTAR_BARRAGE\",\"detail\":\"ABILITY.SOVIET.SMOKE_120MM_MORTAR_BARRAGE\"},{\"id\":\"ABILITY.SOVIET.SMOKE_120MM_MORTAR_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SMOKE_120MM_MORTAR_BARRAGE_MP\",\"documentation\":\"ABILITY.SOVIET.SMOKE_120MM_MORTAR_BARRAGE_MP\",\"detail\":\"ABILITY.SOVIET.SMOKE_120MM_MORTAR_BARRAGE_MP\"},{\"id\":\"ABILITY.SOVIET.SMOKE_SYNC_MORTAR_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SMOKE_SYNC_MORTAR_BARRAGE\",\"documentation\":\"ABILITY.SOVIET.SMOKE_SYNC_MORTAR_BARRAGE\",\"detail\":\"ABILITY.SOVIET.SMOKE_SYNC_MORTAR_BARRAGE\"},{\"id\":\"ABILITY.SOVIET.SMOKE_SYNC_MORTAR_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SMOKE_SYNC_MORTAR_BARRAGE_MP\",\"documentation\":\"ABILITY.SOVIET.SMOKE_SYNC_MORTAR_BARRAGE_MP\",\"detail\":\"ABILITY.SOVIET.SMOKE_SYNC_MORTAR_BARRAGE_MP\"},{\"id\":\"ABILITY.SOVIET.SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE\",\"documentation\":\"ABILITY.SOVIET.SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE\",\"detail\":\"ABILITY.SOVIET.SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE\"},{\"id\":\"ABILITY.SOVIET.SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\",\"documentation\":\"ABILITY.SOVIET.SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\",\"detail\":\"ABILITY.SOVIET.SNIPER_DELAYED_COVER_AUTO_CAMOUFLAGE_MP\"},{\"id\":\"ABILITY.SOVIET.SNIPER_FIRE_FLARES_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_FIRE_FLARES_ABILITY\",\"documentation\":\"ABILITY.SOVIET.SNIPER_FIRE_FLARES_ABILITY\",\"detail\":\"ABILITY.SOVIET.SNIPER_FIRE_FLARES_ABILITY\"},{\"id\":\"ABILITY.SOVIET.SNIPER_FIRE_FLARES_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_FIRE_FLARES_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.SNIPER_FIRE_FLARES_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.SNIPER_FIRE_FLARES_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.SNIPER_HMG_SPRINT\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_HMG_SPRINT\",\"documentation\":\"ABILITY.SOVIET.SNIPER_HMG_SPRINT\",\"detail\":\"ABILITY.SOVIET.SNIPER_HMG_SPRINT\"},{\"id\":\"ABILITY.SOVIET.SNIPER_HMG_SPRINT_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_HMG_SPRINT_MP\",\"documentation\":\"ABILITY.SOVIET.SNIPER_HMG_SPRINT_MP\",\"detail\":\"ABILITY.SOVIET.SNIPER_HMG_SPRINT_MP\"},{\"id\":\"ABILITY.SOVIET.SNIPER_HOLD_FIRE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_HOLD_FIRE\",\"documentation\":\"ABILITY.SOVIET.SNIPER_HOLD_FIRE\",\"detail\":\"ABILITY.SOVIET.SNIPER_HOLD_FIRE\"},{\"id\":\"ABILITY.SOVIET.SNIPER_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.SOVIET.SNIPER_HOLD_FIRE_MP\",\"detail\":\"ABILITY.SOVIET.SNIPER_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.SOVIET.SNIPER_IN_COVER_AUTO_CAMOUFLAGE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_IN_COVER_AUTO_CAMOUFLAGE\",\"documentation\":\"ABILITY.SOVIET.SNIPER_IN_COVER_AUTO_CAMOUFLAGE\",\"detail\":\"ABILITY.SOVIET.SNIPER_IN_COVER_AUTO_CAMOUFLAGE\"},{\"id\":\"ABILITY.SOVIET.SNIPER_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"documentation\":\"ABILITY.SOVIET.SNIPER_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"detail\":\"ABILITY.SOVIET.SNIPER_IN_COVER_AUTO_CAMOUFLAGE_MP\"},{\"id\":\"ABILITY.SOVIET.SNIPER_SUPPRESSION_FIRE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_SUPPRESSION_FIRE_ABILITY\",\"documentation\":\"ABILITY.SOVIET.SNIPER_SUPPRESSION_FIRE_ABILITY\",\"detail\":\"ABILITY.SOVIET.SNIPER_SUPPRESSION_FIRE_ABILITY\"},{\"id\":\"ABILITY.SOVIET.SNIPER_SUPPRESSION_FIRE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SNIPER_SUPPRESSION_FIRE_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.SNIPER_SUPPRESSION_FIRE_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.SNIPER_SUPPRESSION_FIRE_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.SOV_VEHICLE_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SOV_VEHICLE_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.SOVIET.SOV_VEHICLE_HOLD_FIRE_MP\",\"detail\":\"ABILITY.SOVIET.SOV_VEHICLE_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.SOVIET.SOVIET_BARBED_WIRE_CUTTING_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SOVIET_BARBED_WIRE_CUTTING_ABILITY\",\"documentation\":\"ABILITY.SOVIET.SOVIET_BARBED_WIRE_CUTTING_ABILITY\",\"detail\":\"ABILITY.SOVIET.SOVIET_BARBED_WIRE_CUTTING_ABILITY\"},{\"id\":\"ABILITY.SOVIET.SOVIET_BARBED_WIRE_CUTTING_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SOVIET_BARBED_WIRE_CUTTING_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.SOVIET_BARBED_WIRE_CUTTING_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.SOVIET_BARBED_WIRE_CUTTING_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.SOVIET_CAMO_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SOVIET_CAMO_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.SOVIET.SOVIET_CAMO_HOLD_FIRE_MP\",\"detail\":\"ABILITY.SOVIET.SOVIET_CAMO_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.SOVIET.SOVIET_CONSCRIPT_REPAIR_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SOVIET_CONSCRIPT_REPAIR_ABILITY\",\"documentation\":\"ABILITY.SOVIET.SOVIET_CONSCRIPT_REPAIR_ABILITY\",\"detail\":\"ABILITY.SOVIET.SOVIET_CONSCRIPT_REPAIR_ABILITY\"},{\"id\":\"ABILITY.SOVIET.SOVIET_CONSCRIPT_REPAIR_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SOVIET_CONSCRIPT_REPAIR_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.SOVIET_CONSCRIPT_REPAIR_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.SOVIET_CONSCRIPT_REPAIR_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.SOVIET_HQ_ENGINEER_CALL_IN\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SOVIET_HQ_ENGINEER_CALL_IN\",\"documentation\":\"ABILITY.SOVIET.SOVIET_HQ_ENGINEER_CALL_IN\",\"detail\":\"ABILITY.SOVIET.SOVIET_HQ_ENGINEER_CALL_IN\"},{\"id\":\"ABILITY.SOVIET.SOVIET_INDUSTRY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SOVIET_INDUSTRY\",\"documentation\":\"ABILITY.SOVIET.SOVIET_INDUSTRY\",\"detail\":\"ABILITY.SOVIET.SOVIET_INDUSTRY\"},{\"id\":\"ABILITY.SOVIET.SOVIET_REPAIR_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SOVIET_REPAIR_ABILITY\",\"documentation\":\"ABILITY.SOVIET.SOVIET_REPAIR_ABILITY\",\"detail\":\"ABILITY.SOVIET.SOVIET_REPAIR_ABILITY\"},{\"id\":\"ABILITY.SOVIET.SOVIET_REPAIR_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SOVIET_REPAIR_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.SOVIET_REPAIR_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.SOVIET_REPAIR_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.SOVIET_WAR_MACHINE_SP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SOVIET_WAR_MACHINE_SP\",\"documentation\":\"ABILITY.SOVIET.SOVIET_WAR_MACHINE_SP\",\"detail\":\"ABILITY.SOVIET.SOVIET_WAR_MACHINE_SP\"},{\"id\":\"ABILITY.SOVIET.SPY_NETWORK\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SPY_NETWORK\",\"documentation\":\"ABILITY.SOVIET.SPY_NETWORK\",\"detail\":\"ABILITY.SOVIET.SPY_NETWORK\"},{\"id\":\"ABILITY.SOVIET.SU_76_BARRAGE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SU_76_BARRAGE_ABILITY\",\"documentation\":\"ABILITY.SOVIET.SU_76_BARRAGE_ABILITY\",\"detail\":\"ABILITY.SOVIET.SU_76_BARRAGE_ABILITY\"},{\"id\":\"ABILITY.SOVIET.SU_76_BARRAGE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SU_76_BARRAGE_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.SU_76_BARRAGE_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.SU_76_BARRAGE_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.SU76_SU85_ZIS3_53K_ISU152_INFANTRY_TRACKING\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SU76_SU85_ZIS3_53K_ISU152_INFANTRY_TRACKING\",\"documentation\":\"ABILITY.SOVIET.SU76_SU85_ZIS3_53K_ISU152_INFANTRY_TRACKING\",\"detail\":\"ABILITY.SOVIET.SU76_SU85_ZIS3_53K_ISU152_INFANTRY_TRACKING\"},{\"id\":\"ABILITY.SOVIET.SU76_SU85_ZIS3_53K_ISU152_INFANTRY_TRACKING_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SU76_SU85_ZIS3_53K_ISU152_INFANTRY_TRACKING_MP\",\"documentation\":\"ABILITY.SOVIET.SU76_SU85_ZIS3_53K_ISU152_INFANTRY_TRACKING_MP\",\"detail\":\"ABILITY.SOVIET.SU76_SU85_ZIS3_53K_ISU152_INFANTRY_TRACKING_MP\"},{\"id\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE\",\"documentation\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE\",\"detail\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE\"},{\"id\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM\",\"documentation\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM\",\"detail\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM\"},{\"id\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM_MP\",\"documentation\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM_MP\",\"detail\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM_MP\"},{\"id\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM_VICTORTARGET_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM_VICTORTARGET_MP\",\"documentation\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM_VICTORTARGET_MP\",\"detail\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_120MM_VICTORTARGET_MP\"},{\"id\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_MP\",\"documentation\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_MP\",\"detail\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_MP\"},{\"id\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_VICTORTARGET_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_VICTORTARGET_MP\",\"documentation\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_VICTORTARGET_MP\",\"detail\":\"ABILITY.SOVIET.SYNC_MORTAR_BARRAGE_VICTORTARGET_MP\"},{\"id\":\"ABILITY.SOVIET.T_34_RAMMING_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.T_34_RAMMING_ABILITY\",\"documentation\":\"ABILITY.SOVIET.T_34_RAMMING_ABILITY\",\"detail\":\"ABILITY.SOVIET.T_34_RAMMING_ABILITY\"},{\"id\":\"ABILITY.SOVIET.T_34_RAMMING_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.T_34_RAMMING_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.T_34_RAMMING_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.T_34_RAMMING_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.T70_CREW_REPAIR_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.T70_CREW_REPAIR_ABILITY\",\"documentation\":\"ABILITY.SOVIET.T70_CREW_REPAIR_ABILITY\",\"detail\":\"ABILITY.SOVIET.T70_CREW_REPAIR_ABILITY\"},{\"id\":\"ABILITY.SOVIET.T70_CREW_REPAIR_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.T70_CREW_REPAIR_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.T70_CREW_REPAIR_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.T70_CREW_REPAIR_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.TANK_DETECTION_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.TANK_DETECTION_ABILITY\",\"documentation\":\"ABILITY.SOVIET.TANK_DETECTION_ABILITY\",\"detail\":\"ABILITY.SOVIET.TANK_DETECTION_ABILITY\"},{\"id\":\"ABILITY.SOVIET.TANK_TRAPS\",\"kind\":17,\"label\":\"ABILITY.SOVIET.TANK_TRAPS\",\"documentation\":\"ABILITY.SOVIET.TANK_TRAPS\",\"detail\":\"ABILITY.SOVIET.TANK_TRAPS\"},{\"id\":\"ABILITY.SOVIET.TANK_VET_POINT_CAPTURE_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.TANK_VET_POINT_CAPTURE_ABILITY\",\"documentation\":\"ABILITY.SOVIET.TANK_VET_POINT_CAPTURE_ABILITY\",\"detail\":\"ABILITY.SOVIET.TANK_VET_POINT_CAPTURE_ABILITY\"},{\"id\":\"ABILITY.SOVIET.TANK_VET_POINT_CAPTURE_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.TANK_VET_POINT_CAPTURE_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.TANK_VET_POINT_CAPTURE_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.TANK_VET_POINT_CAPTURE_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.TO_THE_LAST_MAN_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.TO_THE_LAST_MAN_MP\",\"documentation\":\"ABILITY.SOVIET.TO_THE_LAST_MAN_MP\",\"detail\":\"ABILITY.SOVIET.TO_THE_LAST_MAN_MP\"},{\"id\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_ABILITY\",\"kind\":17,\"label\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_ABILITY\",\"documentation\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_ABILITY\",\"detail\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_ABILITY\"},{\"id\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_ABILITY_MP\",\"documentation\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_ABILITY_MP\",\"detail\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_ABILITY_MP\"},{\"id\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_TOGGLE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_TOGGLE_MP\",\"documentation\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_TOGGLE_MP\",\"detail\":\"ABILITY.SOVIET.VEHICLE_CREW_REPAIR_TOGGLE_MP\"},{\"id\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE\",\"kind\":17,\"label\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE\",\"documentation\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE\",\"detail\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE\"},{\"id\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE_MP\",\"documentation\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE_MP\",\"detail\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE_MP\"},{\"id\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE_VET2_MP\",\"kind\":17,\"label\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE_VET2_MP\",\"documentation\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE_VET2_MP\",\"detail\":\"ABILITY.SOVIET.VEHICLE_RECON_TOGGLE_VET2_MP\"},{\"id\":\"UPG.SOVIET.ABILITY_LOCK_OUT_CONSCRIPT\",\"kind\":17,\"label\":\"UPG.SOVIET.ABILITY_LOCK_OUT_CONSCRIPT\",\"documentation\":\"UPG.SOVIET.ABILITY_LOCK_OUT_CONSCRIPT\",\"detail\":\"UPG.SOVIET.ABILITY_LOCK_OUT_CONSCRIPT\"},{\"id\":\"UPG.SOVIET.ABILITY_LOCK_OUT_CONSCRIPT_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.ABILITY_LOCK_OUT_CONSCRIPT_MP\",\"documentation\":\"UPG.SOVIET.ABILITY_LOCK_OUT_CONSCRIPT_MP\",\"detail\":\"UPG.SOVIET.ABILITY_LOCK_OUT_CONSCRIPT_MP\"},{\"id\":\"UPG.SOVIET.ALLIED_AIR_SUPPLIES\",\"kind\":17,\"label\":\"UPG.SOVIET.ALLIED_AIR_SUPPLIES\",\"documentation\":\"UPG.SOVIET.ALLIED_AIR_SUPPLIES\",\"detail\":\"UPG.SOVIET.ALLIED_AIR_SUPPLIES\"},{\"id\":\"UPG.SOVIET.ANTI_PERSONNEL_MINES\",\"kind\":17,\"label\":\"UPG.SOVIET.ANTI_PERSONNEL_MINES\",\"documentation\":\"UPG.SOVIET.ANTI_PERSONNEL_MINES\",\"detail\":\"UPG.SOVIET.ANTI_PERSONNEL_MINES\"},{\"id\":\"UPG.SOVIET.ANTI_TANK_GUN_AMBUSH_TACTICS\",\"kind\":17,\"label\":\"UPG.SOVIET.ANTI_TANK_GUN_AMBUSH_TACTICS\",\"documentation\":\"UPG.SOVIET.ANTI_TANK_GUN_AMBUSH_TACTICS\",\"detail\":\"UPG.SOVIET.ANTI_TANK_GUN_AMBUSH_TACTICS\"},{\"id\":\"UPG.SOVIET.BASE_CONSCRIPT_AT_GRENADE_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.BASE_CONSCRIPT_AT_GRENADE_UNLOCK\",\"documentation\":\"UPG.SOVIET.BASE_CONSCRIPT_AT_GRENADE_UNLOCK\",\"detail\":\"UPG.SOVIET.BASE_CONSCRIPT_AT_GRENADE_UNLOCK\"},{\"id\":\"UPG.SOVIET.BASE_CONSCRIPT_AT_GRENADE_UNLOCK_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.BASE_CONSCRIPT_AT_GRENADE_UNLOCK_MP\",\"documentation\":\"UPG.SOVIET.BASE_CONSCRIPT_AT_GRENADE_UNLOCK_MP\",\"detail\":\"UPG.SOVIET.BASE_CONSCRIPT_AT_GRENADE_UNLOCK_MP\"},{\"id\":\"UPG.SOVIET.BASE_CONSCRIPT_MOLOTOV_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.BASE_CONSCRIPT_MOLOTOV_UNLOCK\",\"documentation\":\"UPG.SOVIET.BASE_CONSCRIPT_MOLOTOV_UNLOCK\",\"detail\":\"UPG.SOVIET.BASE_CONSCRIPT_MOLOTOV_UNLOCK\"},{\"id\":\"UPG.SOVIET.BASE_CONSCRIPT_MOLOTOV_UNLOCK_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.BASE_CONSCRIPT_MOLOTOV_UNLOCK_MP\",\"documentation\":\"UPG.SOVIET.BASE_CONSCRIPT_MOLOTOV_UNLOCK_MP\",\"detail\":\"UPG.SOVIET.BASE_CONSCRIPT_MOLOTOV_UNLOCK_MP\"},{\"id\":\"UPG.SOVIET.BASE_CONSCRIPT_OORAH_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.BASE_CONSCRIPT_OORAH_UNLOCK\",\"documentation\":\"UPG.SOVIET.BASE_CONSCRIPT_OORAH_UNLOCK\",\"detail\":\"UPG.SOVIET.BASE_CONSCRIPT_OORAH_UNLOCK\"},{\"id\":\"UPG.SOVIET.BASE_CONSCRIPT_OORAH_UNLOCK_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.BASE_CONSCRIPT_OORAH_UNLOCK_MP\",\"documentation\":\"UPG.SOVIET.BASE_CONSCRIPT_OORAH_UNLOCK_MP\",\"detail\":\"UPG.SOVIET.BASE_CONSCRIPT_OORAH_UNLOCK_MP\"},{\"id\":\"UPG.SOVIET.BASE_CONSCRIPT_REPAIR_UNLOCK_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.BASE_CONSCRIPT_REPAIR_UNLOCK_MP\",\"documentation\":\"UPG.SOVIET.BASE_CONSCRIPT_REPAIR_UNLOCK_MP\",\"detail\":\"UPG.SOVIET.BASE_CONSCRIPT_REPAIR_UNLOCK_MP\"},{\"id\":\"UPG.SOVIET.BASE_CONSCRIPT_RIFLE_UNLOCK_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.BASE_CONSCRIPT_RIFLE_UNLOCK_MP\",\"documentation\":\"UPG.SOVIET.BASE_CONSCRIPT_RIFLE_UNLOCK_MP\",\"detail\":\"UPG.SOVIET.BASE_CONSCRIPT_RIFLE_UNLOCK_MP\"},{\"id\":\"UPG.SOVIET.BOOBY_TRAP\",\"kind\":17,\"label\":\"UPG.SOVIET.BOOBY_TRAP\",\"documentation\":\"UPG.SOVIET.BOOBY_TRAP\",\"detail\":\"UPG.SOVIET.BOOBY_TRAP\"},{\"id\":\"UPG.SOVIET.CAMOUFLAGE_NET_ACTIVATED_SOVIET\",\"kind\":17,\"label\":\"UPG.SOVIET.CAMOUFLAGE_NET_ACTIVATED_SOVIET\",\"documentation\":\"UPG.SOVIET.CAMOUFLAGE_NET_ACTIVATED_SOVIET\",\"detail\":\"UPG.SOVIET.CAMOUFLAGE_NET_ACTIVATED_SOVIET\"},{\"id\":\"UPG.SOVIET.COMMANDER_T34_85_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.COMMANDER_T34_85_MP\",\"documentation\":\"UPG.SOVIET.COMMANDER_T34_85_MP\",\"detail\":\"UPG.SOVIET.COMMANDER_T34_85_MP\"},{\"id\":\"UPG.SOVIET.COMMISSAR_SQUAD\",\"kind\":17,\"label\":\"UPG.SOVIET.COMMISSAR_SQUAD\",\"documentation\":\"UPG.SOVIET.COMMISSAR_SQUAD\",\"detail\":\"UPG.SOVIET.COMMISSAR_SQUAD\"},{\"id\":\"UPG.SOVIET.CONSCRIPT_ASSAULT_PACKAGE\",\"kind\":17,\"label\":\"UPG.SOVIET.CONSCRIPT_ASSAULT_PACKAGE\",\"documentation\":\"UPG.SOVIET.CONSCRIPT_ASSAULT_PACKAGE\",\"detail\":\"UPG.SOVIET.CONSCRIPT_ASSAULT_PACKAGE\"},{\"id\":\"UPG.SOVIET.CONSCRIPT_ASSAULT_PACKAGE_INGAME\",\"kind\":17,\"label\":\"UPG.SOVIET.CONSCRIPT_ASSAULT_PACKAGE_INGAME\",\"documentation\":\"UPG.SOVIET.CONSCRIPT_ASSAULT_PACKAGE_INGAME\",\"detail\":\"UPG.SOVIET.CONSCRIPT_ASSAULT_PACKAGE_INGAME\"},{\"id\":\"UPG.SOVIET.CONSCRIPT_AT_GRENADE_ASSAULT\",\"kind\":17,\"label\":\"UPG.SOVIET.CONSCRIPT_AT_GRENADE_ASSAULT\",\"documentation\":\"UPG.SOVIET.CONSCRIPT_AT_GRENADE_ASSAULT\",\"detail\":\"UPG.SOVIET.CONSCRIPT_AT_GRENADE_ASSAULT\"},{\"id\":\"UPG.SOVIET.CONSCRIPT_DP_28_LMG_PACKAGE\",\"kind\":17,\"label\":\"UPG.SOVIET.CONSCRIPT_DP_28_LMG_PACKAGE\",\"documentation\":\"UPG.SOVIET.CONSCRIPT_DP_28_LMG_PACKAGE\",\"detail\":\"UPG.SOVIET.CONSCRIPT_DP_28_LMG_PACKAGE\"},{\"id\":\"UPG.SOVIET.CONSCRIPT_EVASIVE_TACTICS\",\"kind\":17,\"label\":\"UPG.SOVIET.CONSCRIPT_EVASIVE_TACTICS\",\"documentation\":\"UPG.SOVIET.CONSCRIPT_EVASIVE_TACTICS\",\"detail\":\"UPG.SOVIET.CONSCRIPT_EVASIVE_TACTICS\"},{\"id\":\"UPG.SOVIET.CONSCRIPT_MOBILIZE_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.CONSCRIPT_MOBILIZE_UNLOCK\",\"documentation\":\"UPG.SOVIET.CONSCRIPT_MOBILIZE_UNLOCK\",\"detail\":\"UPG.SOVIET.CONSCRIPT_MOBILIZE_UNLOCK\"},{\"id\":\"UPG.SOVIET.CONSCRIPT_PTRS\",\"kind\":17,\"label\":\"UPG.SOVIET.CONSCRIPT_PTRS\",\"documentation\":\"UPG.SOVIET.CONSCRIPT_PTRS\",\"detail\":\"UPG.SOVIET.CONSCRIPT_PTRS\"},{\"id\":\"UPG.SOVIET.CONSCRIPT_PTRS_PACKAGE\",\"kind\":17,\"label\":\"UPG.SOVIET.CONSCRIPT_PTRS_PACKAGE\",\"documentation\":\"UPG.SOVIET.CONSCRIPT_PTRS_PACKAGE\",\"detail\":\"UPG.SOVIET.CONSCRIPT_PTRS_PACKAGE\"},{\"id\":\"UPG.SOVIET.CONSCRIPT_REPAIR_KIT\",\"kind\":17,\"label\":\"UPG.SOVIET.CONSCRIPT_REPAIR_KIT\",\"documentation\":\"UPG.SOVIET.CONSCRIPT_REPAIR_KIT\",\"detail\":\"UPG.SOVIET.CONSCRIPT_REPAIR_KIT\"},{\"id\":\"UPG.SOVIET.DEMO_IL_2_STRAFING_RUN\",\"kind\":17,\"label\":\"UPG.SOVIET.DEMO_IL_2_STRAFING_RUN\",\"documentation\":\"UPG.SOVIET.DEMO_IL_2_STRAFING_RUN\",\"detail\":\"UPG.SOVIET.DEMO_IL_2_STRAFING_RUN\"},{\"id\":\"UPG.SOVIET.DSHK_MACHINEGUN\",\"kind\":17,\"label\":\"UPG.SOVIET.DSHK_MACHINEGUN\",\"documentation\":\"UPG.SOVIET.DSHK_MACHINEGUN\",\"detail\":\"UPG.SOVIET.DSHK_MACHINEGUN\"},{\"id\":\"UPG.SOVIET.ENGINEER_FLAMETHROWER\",\"kind\":17,\"label\":\"UPG.SOVIET.ENGINEER_FLAMETHROWER\",\"documentation\":\"UPG.SOVIET.ENGINEER_FLAMETHROWER\",\"detail\":\"UPG.SOVIET.ENGINEER_FLAMETHROWER\"},{\"id\":\"UPG.SOVIET.ENGINEER_FLAMETHROWER_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.ENGINEER_FLAMETHROWER_MP\",\"documentation\":\"UPG.SOVIET.ENGINEER_FLAMETHROWER_MP\",\"detail\":\"UPG.SOVIET.ENGINEER_FLAMETHROWER_MP\"},{\"id\":\"UPG.SOVIET.ENGINEER_MINESWEEPER\",\"kind\":17,\"label\":\"UPG.SOVIET.ENGINEER_MINESWEEPER\",\"documentation\":\"UPG.SOVIET.ENGINEER_MINESWEEPER\",\"detail\":\"UPG.SOVIET.ENGINEER_MINESWEEPER\"},{\"id\":\"UPG.SOVIET.ENGINEER_MINESWEEPER_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.ENGINEER_MINESWEEPER_MP\",\"documentation\":\"UPG.SOVIET.ENGINEER_MINESWEEPER_MP\",\"detail\":\"UPG.SOVIET.ENGINEER_MINESWEEPER_MP\"},{\"id\":\"UPG.SOVIET.ENGINEER_SALVAGE_KIT\",\"kind\":17,\"label\":\"UPG.SOVIET.ENGINEER_SALVAGE_KIT\",\"documentation\":\"UPG.SOVIET.ENGINEER_SALVAGE_KIT\",\"detail\":\"UPG.SOVIET.ENGINEER_SALVAGE_KIT\"},{\"id\":\"UPG.SOVIET.ENGINEER_SALVAGE_KITS_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.ENGINEER_SALVAGE_KITS_UNLOCK\",\"documentation\":\"UPG.SOVIET.ENGINEER_SALVAGE_KITS_UNLOCK\",\"detail\":\"UPG.SOVIET.ENGINEER_SALVAGE_KITS_UNLOCK\"},{\"id\":\"UPG.SOVIET.EVASIVE_TACTICS_IS_ON\",\"kind\":17,\"label\":\"UPG.SOVIET.EVASIVE_TACTICS_IS_ON\",\"documentation\":\"UPG.SOVIET.EVASIVE_TACTICS_IS_ON\",\"detail\":\"UPG.SOVIET.EVASIVE_TACTICS_IS_ON\"},{\"id\":\"UPG.SOVIET.FEAR_PROPAGANDA\",\"kind\":17,\"label\":\"UPG.SOVIET.FEAR_PROPAGANDA\",\"documentation\":\"UPG.SOVIET.FEAR_PROPAGANDA\",\"detail\":\"UPG.SOVIET.FEAR_PROPAGANDA\"},{\"id\":\"UPG.SOVIET.FIRE_ARTILLERY\",\"kind\":17,\"label\":\"UPG.SOVIET.FIRE_ARTILLERY\",\"documentation\":\"UPG.SOVIET.FIRE_ARTILLERY\",\"detail\":\"UPG.SOVIET.FIRE_ARTILLERY\"},{\"id\":\"UPG.SOVIET.FOR_MOTHER_RUSSIA\",\"kind\":17,\"label\":\"UPG.SOVIET.FOR_MOTHER_RUSSIA\",\"documentation\":\"UPG.SOVIET.FOR_MOTHER_RUSSIA\",\"detail\":\"UPG.SOVIET.FOR_MOTHER_RUSSIA\"},{\"id\":\"UPG.SOVIET.FORWARD_HQ\",\"kind\":17,\"label\":\"UPG.SOVIET.FORWARD_HQ\",\"documentation\":\"UPG.SOVIET.FORWARD_HQ\",\"detail\":\"UPG.SOVIET.FORWARD_HQ\"},{\"id\":\"UPG.SOVIET.FORWARD_HQ_AURA\",\"kind\":17,\"label\":\"UPG.SOVIET.FORWARD_HQ_AURA\",\"documentation\":\"UPG.SOVIET.FORWARD_HQ_AURA\",\"detail\":\"UPG.SOVIET.FORWARD_HQ_AURA\"},{\"id\":\"UPG.SOVIET.GUARD_ARCHETYPE\",\"kind\":17,\"label\":\"UPG.SOVIET.GUARD_ARCHETYPE\",\"documentation\":\"UPG.SOVIET.GUARD_ARCHETYPE\",\"detail\":\"UPG.SOVIET.GUARD_ARCHETYPE\"},{\"id\":\"UPG.SOVIET.GUARD_DP_28_LMG_PACKAGE\",\"kind\":17,\"label\":\"UPG.SOVIET.GUARD_DP_28_LMG_PACKAGE\",\"documentation\":\"UPG.SOVIET.GUARD_DP_28_LMG_PACKAGE\",\"detail\":\"UPG.SOVIET.GUARD_DP_28_LMG_PACKAGE\"},{\"id\":\"UPG.SOVIET.GUARD_DP_28_LMG_PACKAGE_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.GUARD_DP_28_LMG_PACKAGE_MP\",\"documentation\":\"UPG.SOVIET.GUARD_DP_28_LMG_PACKAGE_MP\",\"detail\":\"UPG.SOVIET.GUARD_DP_28_LMG_PACKAGE_MP\"},{\"id\":\"UPG.SOVIET.GUARD_TROOPS\",\"kind\":17,\"label\":\"UPG.SOVIET.GUARD_TROOPS\",\"documentation\":\"UPG.SOVIET.GUARD_TROOPS\",\"detail\":\"UPG.SOVIET.GUARD_TROOPS\"},{\"id\":\"UPG.SOVIET.HM120_MORTAR_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.HM120_MORTAR_UNLOCK\",\"documentation\":\"UPG.SOVIET.HM120_MORTAR_UNLOCK\",\"detail\":\"UPG.SOVIET.HM120_MORTAR_UNLOCK\"},{\"id\":\"UPG.SOVIET.HOLD_FIRE_SOVIET_CAMMO\",\"kind\":17,\"label\":\"UPG.SOVIET.HOLD_FIRE_SOVIET_CAMMO\",\"documentation\":\"UPG.SOVIET.HOLD_FIRE_SOVIET_CAMMO\",\"detail\":\"UPG.SOVIET.HOLD_FIRE_SOVIET_CAMMO\"},{\"id\":\"UPG.SOVIET.HOLD_THE_LINE\",\"kind\":17,\"label\":\"UPG.SOVIET.HOLD_THE_LINE\",\"documentation\":\"UPG.SOVIET.HOLD_THE_LINE\",\"detail\":\"UPG.SOVIET.HOLD_THE_LINE\"},{\"id\":\"UPG.SOVIET.HOWTIZER_203MM\",\"kind\":17,\"label\":\"UPG.SOVIET.HOWTIZER_203MM\",\"documentation\":\"UPG.SOVIET.HOWTIZER_203MM\",\"detail\":\"UPG.SOVIET.HOWTIZER_203MM\"},{\"id\":\"UPG.SOVIET.HQ_ANTI_TANK_GRENADE\",\"kind\":17,\"label\":\"UPG.SOVIET.HQ_ANTI_TANK_GRENADE\",\"documentation\":\"UPG.SOVIET.HQ_ANTI_TANK_GRENADE\",\"detail\":\"UPG.SOVIET.HQ_ANTI_TANK_GRENADE\"},{\"id\":\"UPG.SOVIET.HQ_ANTI_TANK_GRENADE_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.HQ_ANTI_TANK_GRENADE_MP\",\"documentation\":\"UPG.SOVIET.HQ_ANTI_TANK_GRENADE_MP\",\"detail\":\"UPG.SOVIET.HQ_ANTI_TANK_GRENADE_MP\"},{\"id\":\"UPG.SOVIET.HQ_CONSCRIPT_REPAIR_KIT\",\"kind\":17,\"label\":\"UPG.SOVIET.HQ_CONSCRIPT_REPAIR_KIT\",\"documentation\":\"UPG.SOVIET.HQ_CONSCRIPT_REPAIR_KIT\",\"detail\":\"UPG.SOVIET.HQ_CONSCRIPT_REPAIR_KIT\"},{\"id\":\"UPG.SOVIET.HQ_HEALING_AURA\",\"kind\":17,\"label\":\"UPG.SOVIET.HQ_HEALING_AURA\",\"documentation\":\"UPG.SOVIET.HQ_HEALING_AURA\",\"detail\":\"UPG.SOVIET.HQ_HEALING_AURA\"},{\"id\":\"UPG.SOVIET.HQ_HEALING_AURA_M13\",\"kind\":17,\"label\":\"UPG.SOVIET.HQ_HEALING_AURA_M13\",\"documentation\":\"UPG.SOVIET.HQ_HEALING_AURA_M13\",\"detail\":\"UPG.SOVIET.HQ_HEALING_AURA_M13\"},{\"id\":\"UPG.SOVIET.HQ_HEALING_AURA_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.HQ_HEALING_AURA_MP\",\"documentation\":\"UPG.SOVIET.HQ_HEALING_AURA_MP\",\"detail\":\"UPG.SOVIET.HQ_HEALING_AURA_MP\"},{\"id\":\"UPG.SOVIET.HQ_MOLOTOV_GRENADE_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.HQ_MOLOTOV_GRENADE_MP\",\"documentation\":\"UPG.SOVIET.HQ_MOLOTOV_GRENADE_MP\",\"detail\":\"UPG.SOVIET.HQ_MOLOTOV_GRENADE_MP\"},{\"id\":\"UPG.SOVIET.IL_2_ANTI_TANK_BOMB\",\"kind\":17,\"label\":\"UPG.SOVIET.IL_2_ANTI_TANK_BOMB\",\"documentation\":\"UPG.SOVIET.IL_2_ANTI_TANK_BOMB\",\"detail\":\"UPG.SOVIET.IL_2_ANTI_TANK_BOMB\"},{\"id\":\"UPG.SOVIET.IL_2_BOMB_STRIKE\",\"kind\":17,\"label\":\"UPG.SOVIET.IL_2_BOMB_STRIKE\",\"documentation\":\"UPG.SOVIET.IL_2_BOMB_STRIKE\",\"detail\":\"UPG.SOVIET.IL_2_BOMB_STRIKE\"},{\"id\":\"UPG.SOVIET.IL_2_RECON\",\"kind\":17,\"label\":\"UPG.SOVIET.IL_2_RECON\",\"documentation\":\"UPG.SOVIET.IL_2_RECON\",\"detail\":\"UPG.SOVIET.IL_2_RECON\"},{\"id\":\"UPG.SOVIET.IL_2_STURMOVIK_ATTACK\",\"kind\":17,\"label\":\"UPG.SOVIET.IL_2_STURMOVIK_ATTACK\",\"documentation\":\"UPG.SOVIET.IL_2_STURMOVIK_ATTACK\",\"detail\":\"UPG.SOVIET.IL_2_STURMOVIK_ATTACK\"},{\"id\":\"UPG.SOVIET.IL_2_STURMOVIK_ATTACK_ADVANCED\",\"kind\":17,\"label\":\"UPG.SOVIET.IL_2_STURMOVIK_ATTACK_ADVANCED\",\"documentation\":\"UPG.SOVIET.IL_2_STURMOVIK_ATTACK_ADVANCED\",\"detail\":\"UPG.SOVIET.IL_2_STURMOVIK_ATTACK_ADVANCED\"},{\"id\":\"UPG.SOVIET.IL_2_SUPPORT\",\"kind\":17,\"label\":\"UPG.SOVIET.IL_2_SUPPORT\",\"documentation\":\"UPG.SOVIET.IL_2_SUPPORT\",\"detail\":\"UPG.SOVIET.IL_2_SUPPORT\"},{\"id\":\"UPG.SOVIET.IS_2_SUPPORT\",\"kind\":17,\"label\":\"UPG.SOVIET.IS_2_SUPPORT\",\"documentation\":\"UPG.SOVIET.IS_2_SUPPORT\",\"detail\":\"UPG.SOVIET.IS_2_SUPPORT\"},{\"id\":\"UPG.SOVIET.IS2_TOP_GUNNER\",\"kind\":17,\"label\":\"UPG.SOVIET.IS2_TOP_GUNNER\",\"documentation\":\"UPG.SOVIET.IS2_TOP_GUNNER\",\"detail\":\"UPG.SOVIET.IS2_TOP_GUNNER\"},{\"id\":\"UPG.SOVIET.IS2_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.IS2_TOP_GUNNER_MP\",\"documentation\":\"UPG.SOVIET.IS2_TOP_GUNNER_MP\",\"detail\":\"UPG.SOVIET.IS2_TOP_GUNNER_MP\"},{\"id\":\"UPG.SOVIET.ISAKOVICH_A01\",\"kind\":17,\"label\":\"UPG.SOVIET.ISAKOVICH_A01\",\"documentation\":\"UPG.SOVIET.ISAKOVICH_A01\",\"detail\":\"UPG.SOVIET.ISAKOVICH_A01\"},{\"id\":\"UPG.SOVIET.ISU152_HE_ROUNDS\",\"kind\":17,\"label\":\"UPG.SOVIET.ISU152_HE_ROUNDS\",\"documentation\":\"UPG.SOVIET.ISU152_HE_ROUNDS\",\"detail\":\"UPG.SOVIET.ISU152_HE_ROUNDS\"},{\"id\":\"UPG.SOVIET.ISU152_TOP_GUNNER\",\"kind\":17,\"label\":\"UPG.SOVIET.ISU152_TOP_GUNNER\",\"documentation\":\"UPG.SOVIET.ISU152_TOP_GUNNER\",\"detail\":\"UPG.SOVIET.ISU152_TOP_GUNNER\"},{\"id\":\"UPG.SOVIET.ISU152_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.ISU152_TOP_GUNNER_MP\",\"documentation\":\"UPG.SOVIET.ISU152_TOP_GUNNER_MP\",\"detail\":\"UPG.SOVIET.ISU152_TOP_GUNNER_MP\"},{\"id\":\"UPG.SOVIET.ISU152_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.ISU152_UNLOCK\",\"documentation\":\"UPG.SOVIET.ISU152_UNLOCK\",\"detail\":\"UPG.SOVIET.ISU152_UNLOCK\"},{\"id\":\"UPG.SOVIET.KATYUSHA_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.KATYUSHA_UNLOCK\",\"documentation\":\"UPG.SOVIET.KATYUSHA_UNLOCK\",\"detail\":\"UPG.SOVIET.KATYUSHA_UNLOCK\"},{\"id\":\"UPG.SOVIET.KV_1_UNLOCK_DEMO\",\"kind\":17,\"label\":\"UPG.SOVIET.KV_1_UNLOCK_DEMO\",\"documentation\":\"UPG.SOVIET.KV_1_UNLOCK_DEMO\",\"detail\":\"UPG.SOVIET.KV_1_UNLOCK_DEMO\"},{\"id\":\"UPG.SOVIET.KV_8_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.KV_8_UNLOCK\",\"documentation\":\"UPG.SOVIET.KV_8_UNLOCK\",\"detail\":\"UPG.SOVIET.KV_8_UNLOCK\"},{\"id\":\"UPG.SOVIET.KV1_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.KV1_UNLOCK\",\"documentation\":\"UPG.SOVIET.KV1_UNLOCK\",\"detail\":\"UPG.SOVIET.KV1_UNLOCK\"},{\"id\":\"UPG.SOVIET.KV2_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.KV2_UNLOCK\",\"documentation\":\"UPG.SOVIET.KV2_UNLOCK\",\"detail\":\"UPG.SOVIET.KV2_UNLOCK\"},{\"id\":\"UPG.SOVIET.LIGHT_ANTI_VEHICLE_MINES\",\"kind\":17,\"label\":\"UPG.SOVIET.LIGHT_ANTI_VEHICLE_MINES\",\"documentation\":\"UPG.SOVIET.LIGHT_ANTI_VEHICLE_MINES\",\"detail\":\"UPG.SOVIET.LIGHT_ANTI_VEHICLE_MINES\"},{\"id\":\"UPG.SOVIET.M_42_AT_GUN\",\"kind\":17,\"label\":\"UPG.SOVIET.M_42_AT_GUN\",\"documentation\":\"UPG.SOVIET.M_42_AT_GUN\",\"detail\":\"UPG.SOVIET.M_42_AT_GUN\"},{\"id\":\"UPG.SOVIET.M3_HALFTRACK_ASSAULT\",\"kind\":17,\"label\":\"UPG.SOVIET.M3_HALFTRACK_ASSAULT\",\"documentation\":\"UPG.SOVIET.M3_HALFTRACK_ASSAULT\",\"detail\":\"UPG.SOVIET.M3_HALFTRACK_ASSAULT\"},{\"id\":\"UPG.SOVIET.M5_HALFTRACK_72K_AA_GUN_PACKAGE\",\"kind\":17,\"label\":\"UPG.SOVIET.M5_HALFTRACK_72K_AA_GUN_PACKAGE\",\"documentation\":\"UPG.SOVIET.M5_HALFTRACK_72K_AA_GUN_PACKAGE\",\"detail\":\"UPG.SOVIET.M5_HALFTRACK_72K_AA_GUN_PACKAGE\"},{\"id\":\"UPG.SOVIET.M5_HALFTRACK_72K_AA_GUN_PACKAGE_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.M5_HALFTRACK_72K_AA_GUN_PACKAGE_MP\",\"documentation\":\"UPG.SOVIET.M5_HALFTRACK_72K_AA_GUN_PACKAGE_MP\",\"detail\":\"UPG.SOVIET.M5_HALFTRACK_72K_AA_GUN_PACKAGE_MP\"},{\"id\":\"UPG.SOVIET.MANPOWER_BLITZ\",\"kind\":17,\"label\":\"UPG.SOVIET.MANPOWER_BLITZ\",\"documentation\":\"UPG.SOVIET.MANPOWER_BLITZ\",\"detail\":\"UPG.SOVIET.MANPOWER_BLITZ\"},{\"id\":\"UPG.SOVIET.MARK_VEHICLE\",\"kind\":17,\"label\":\"UPG.SOVIET.MARK_VEHICLE\",\"documentation\":\"UPG.SOVIET.MARK_VEHICLE\",\"detail\":\"UPG.SOVIET.MARK_VEHICLE\"},{\"id\":\"UPG.SOVIET.ML_20_HOWITZER_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.ML_20_HOWITZER_UNLOCK\",\"documentation\":\"UPG.SOVIET.ML_20_HOWITZER_UNLOCK\",\"detail\":\"UPG.SOVIET.ML_20_HOWITZER_UNLOCK\"},{\"id\":\"UPG.SOVIET.NKVD_ARCHETYPE\",\"kind\":17,\"label\":\"UPG.SOVIET.NKVD_ARCHETYPE\",\"documentation\":\"UPG.SOVIET.NKVD_ARCHETYPE\",\"detail\":\"UPG.SOVIET.NKVD_ARCHETYPE\"},{\"id\":\"UPG.SOVIET.ORDER_227_DISABLE\",\"kind\":17,\"label\":\"UPG.SOVIET.ORDER_227_DISABLE\",\"documentation\":\"UPG.SOVIET.ORDER_227_DISABLE\",\"detail\":\"UPG.SOVIET.ORDER_227_DISABLE\"},{\"id\":\"UPG.SOVIET.ORDER_227_LOCKDOWN\",\"kind\":17,\"label\":\"UPG.SOVIET.ORDER_227_LOCKDOWN\",\"documentation\":\"UPG.SOVIET.ORDER_227_LOCKDOWN\",\"detail\":\"UPG.SOVIET.ORDER_227_LOCKDOWN\"},{\"id\":\"UPG.SOVIET.ORDER227\",\"kind\":17,\"label\":\"UPG.SOVIET.ORDER227\",\"documentation\":\"UPG.SOVIET.ORDER227\",\"detail\":\"UPG.SOVIET.ORDER227\"},{\"id\":\"UPG.SOVIET.PARTISAN_COMMANDER_ANTIVEHICLE_TROOPS\",\"kind\":17,\"label\":\"UPG.SOVIET.PARTISAN_COMMANDER_ANTIVEHICLE_TROOPS\",\"documentation\":\"UPG.SOVIET.PARTISAN_COMMANDER_ANTIVEHICLE_TROOPS\",\"detail\":\"UPG.SOVIET.PARTISAN_COMMANDER_ANTIVEHICLE_TROOPS\"},{\"id\":\"UPG.SOVIET.PARTISAN_COMMANDER_TROOPS\",\"kind\":17,\"label\":\"UPG.SOVIET.PARTISAN_COMMANDER_TROOPS\",\"documentation\":\"UPG.SOVIET.PARTISAN_COMMANDER_TROOPS\",\"detail\":\"UPG.SOVIET.PARTISAN_COMMANDER_TROOPS\"},{\"id\":\"UPG.SOVIET.PARTISAN_HEALTH_UPGRADE\",\"kind\":17,\"label\":\"UPG.SOVIET.PARTISAN_HEALTH_UPGRADE\",\"documentation\":\"UPG.SOVIET.PARTISAN_HEALTH_UPGRADE\",\"detail\":\"UPG.SOVIET.PARTISAN_HEALTH_UPGRADE\"},{\"id\":\"UPG.SOVIET.PARTISAN_HEALTH_UPGRADE_TANK_HUNTER\",\"kind\":17,\"label\":\"UPG.SOVIET.PARTISAN_HEALTH_UPGRADE_TANK_HUNTER\",\"documentation\":\"UPG.SOVIET.PARTISAN_HEALTH_UPGRADE_TANK_HUNTER\",\"detail\":\"UPG.SOVIET.PARTISAN_HEALTH_UPGRADE_TANK_HUNTER\"},{\"id\":\"UPG.SOVIET.PARTISAN_TROOPS\",\"kind\":17,\"label\":\"UPG.SOVIET.PARTISAN_TROOPS\",\"documentation\":\"UPG.SOVIET.PARTISAN_TROOPS\",\"detail\":\"UPG.SOVIET.PARTISAN_TROOPS\"},{\"id\":\"UPG.SOVIET.PARTISAN_TROOPS_TOW\",\"kind\":17,\"label\":\"UPG.SOVIET.PARTISAN_TROOPS_TOW\",\"documentation\":\"UPG.SOVIET.PARTISAN_TROOPS_TOW\",\"detail\":\"UPG.SOVIET.PARTISAN_TROOPS_TOW\"},{\"id\":\"UPG.SOVIET.PENAL_BATTALION\",\"kind\":17,\"label\":\"UPG.SOVIET.PENAL_BATTALION\",\"documentation\":\"UPG.SOVIET.PENAL_BATTALION\",\"detail\":\"UPG.SOVIET.PENAL_BATTALION\"},{\"id\":\"UPG.SOVIET.PENAL_BATTALION_FLAMETHROWER_PACKAGE\",\"kind\":17,\"label\":\"UPG.SOVIET.PENAL_BATTALION_FLAMETHROWER_PACKAGE\",\"documentation\":\"UPG.SOVIET.PENAL_BATTALION_FLAMETHROWER_PACKAGE\",\"detail\":\"UPG.SOVIET.PENAL_BATTALION_FLAMETHROWER_PACKAGE\"},{\"id\":\"UPG.SOVIET.PENAL_BATTALION_FLAMETHROWER_PACKAGE_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.PENAL_BATTALION_FLAMETHROWER_PACKAGE_MP\",\"documentation\":\"UPG.SOVIET.PENAL_BATTALION_FLAMETHROWER_PACKAGE_MP\",\"detail\":\"UPG.SOVIET.PENAL_BATTALION_FLAMETHROWER_PACKAGE_MP\"},{\"id\":\"UPG.SOVIET.PPSH_41_SUB_MACHINE_GUN_UPGRADE\",\"kind\":17,\"label\":\"UPG.SOVIET.PPSH_41_SUB_MACHINE_GUN_UPGRADE\",\"documentation\":\"UPG.SOVIET.PPSH_41_SUB_MACHINE_GUN_UPGRADE\",\"detail\":\"UPG.SOVIET.PPSH_41_SUB_MACHINE_GUN_UPGRADE\"},{\"id\":\"UPG.SOVIET.PPSH_41_SUB_MACHINE_GUN_UPGRADE_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.PPSH_41_SUB_MACHINE_GUN_UPGRADE_MP\",\"documentation\":\"UPG.SOVIET.PPSH_41_SUB_MACHINE_GUN_UPGRADE_MP\",\"detail\":\"UPG.SOVIET.PPSH_41_SUB_MACHINE_GUN_UPGRADE_MP\"},{\"id\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP\",\"kind\":17,\"label\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP\",\"documentation\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP\",\"detail\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP\"},{\"id\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_ASSAULT_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_ASSAULT_MP\",\"documentation\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_ASSAULT_MP\",\"detail\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_ASSAULT_MP\"},{\"id\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_BETTER_BALANCED\",\"kind\":17,\"label\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_BETTER_BALANCED\",\"documentation\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_BETTER_BALANCED\",\"detail\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_BETTER_BALANCED\"},{\"id\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_MP\",\"documentation\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_MP\",\"detail\":\"UPG.SOVIET.PTRS_41_AT_RIFLE_PACKAGE_GUARD_TROOP_MP\"},{\"id\":\"UPG.SOVIET.RADIO_INTERCEPT\",\"kind\":17,\"label\":\"UPG.SOVIET.RADIO_INTERCEPT\",\"documentation\":\"UPG.SOVIET.RADIO_INTERCEPT\",\"detail\":\"UPG.SOVIET.RADIO_INTERCEPT\"},{\"id\":\"UPG.SOVIET.RAPID_CONSCRIPTION\",\"kind\":17,\"label\":\"UPG.SOVIET.RAPID_CONSCRIPTION\",\"documentation\":\"UPG.SOVIET.RAPID_CONSCRIPTION\",\"detail\":\"UPG.SOVIET.RAPID_CONSCRIPTION\"},{\"id\":\"UPG.SOVIET.REPAIR_BUNKER\",\"kind\":17,\"label\":\"UPG.SOVIET.REPAIR_BUNKER\",\"documentation\":\"UPG.SOVIET.REPAIR_BUNKER\",\"detail\":\"UPG.SOVIET.REPAIR_BUNKER\"},{\"id\":\"UPG.SOVIET.SCORCHED_EARTH_POLICY\",\"kind\":17,\"label\":\"UPG.SOVIET.SCORCHED_EARTH_POLICY\",\"documentation\":\"UPG.SOVIET.SCORCHED_EARTH_POLICY\",\"detail\":\"UPG.SOVIET.SCORCHED_EARTH_POLICY\"},{\"id\":\"UPG.SOVIET.SCORCHED_EARTH_POLICY_MP\",\"kind\":17,\"label\":\"UPG.SOVIET.SCORCHED_EARTH_POLICY_MP\",\"documentation\":\"UPG.SOVIET.SCORCHED_EARTH_POLICY_MP\",\"detail\":\"UPG.SOVIET.SCORCHED_EARTH_POLICY_MP\"},{\"id\":\"UPG.SOVIET.SHERMAN_SOVIET_DISPATCH\",\"kind\":17,\"label\":\"UPG.SOVIET.SHERMAN_SOVIET_DISPATCH\",\"documentation\":\"UPG.SOVIET.SHERMAN_SOVIET_DISPATCH\",\"detail\":\"UPG.SOVIET.SHERMAN_SOVIET_DISPATCH\"},{\"id\":\"UPG.SOVIET.SHERMAN_SOVIET_TOP_GUNNER\",\"kind\":17,\"label\":\"UPG.SOVIET.SHERMAN_SOVIET_TOP_GUNNER\",\"documentation\":\"UPG.SOVIET.SHERMAN_SOVIET_TOP_GUNNER\",\"detail\":\"UPG.SOVIET.SHERMAN_SOVIET_TOP_GUNNER\"},{\"id\":\"UPG.SOVIET.SHOCK_ARCHETYPE\",\"kind\":17,\"label\":\"UPG.SOVIET.SHOCK_ARCHETYPE\",\"documentation\":\"UPG.SOVIET.SHOCK_ARCHETYPE\",\"detail\":\"UPG.SOVIET.SHOCK_ARCHETYPE\"},{\"id\":\"UPG.SOVIET.SHOCK_TROOPS\",\"kind\":17,\"label\":\"UPG.SOVIET.SHOCK_TROOPS\",\"documentation\":\"UPG.SOVIET.SHOCK_TROOPS\",\"detail\":\"UPG.SOVIET.SHOCK_TROOPS\"},{\"id\":\"UPG.SOVIET.SHOCK_TROOPS_SP\",\"kind\":17,\"label\":\"UPG.SOVIET.SHOCK_TROOPS_SP\",\"documentation\":\"UPG.SOVIET.SHOCK_TROOPS_SP\",\"detail\":\"UPG.SOVIET.SHOCK_TROOPS_SP\"},{\"id\":\"UPG.SOVIET.SOVIET_GRENADES_LONG_TIMER\",\"kind\":17,\"label\":\"UPG.SOVIET.SOVIET_GRENADES_LONG_TIMER\",\"documentation\":\"UPG.SOVIET.SOVIET_GRENADES_LONG_TIMER\",\"detail\":\"UPG.SOVIET.SOVIET_GRENADES_LONG_TIMER\"},{\"id\":\"UPG.SOVIET.SOVIET_INDUSTRY\",\"kind\":17,\"label\":\"UPG.SOVIET.SOVIET_INDUSTRY\",\"documentation\":\"UPG.SOVIET.SOVIET_INDUSTRY\",\"detail\":\"UPG.SOVIET.SOVIET_INDUSTRY\"},{\"id\":\"UPG.SOVIET.SPY_NETWORK\",\"kind\":17,\"label\":\"UPG.SOVIET.SPY_NETWORK\",\"documentation\":\"UPG.SOVIET.SPY_NETWORK\",\"detail\":\"UPG.SOVIET.SPY_NETWORK\"},{\"id\":\"UPG.SOVIET.T34_85_ADVANCED_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.T34_85_ADVANCED_UNLOCK\",\"documentation\":\"UPG.SOVIET.T34_85_ADVANCED_UNLOCK\",\"detail\":\"UPG.SOVIET.T34_85_ADVANCED_UNLOCK\"},{\"id\":\"UPG.SOVIET.T34_85_UNLOCK\",\"kind\":17,\"label\":\"UPG.SOVIET.T34_85_UNLOCK\",\"documentation\":\"UPG.SOVIET.T34_85_UNLOCK\",\"detail\":\"UPG.SOVIET.T34_85_UNLOCK\"},{\"id\":\"UPG.SOVIET.TANK_DETECTION\",\"kind\":17,\"label\":\"UPG.SOVIET.TANK_DETECTION\",\"documentation\":\"UPG.SOVIET.TANK_DETECTION\",\"detail\":\"UPG.SOVIET.TANK_DETECTION\"},{\"id\":\"UPG.SOVIET.TANK_RAID_ENABLED\",\"kind\":17,\"label\":\"UPG.SOVIET.TANK_RAID_ENABLED\",\"documentation\":\"UPG.SOVIET.TANK_RAID_ENABLED\",\"detail\":\"UPG.SOVIET.TANK_RAID_ENABLED\"},{\"id\":\"UPG.SOVIET.TANK_TRAPS\",\"kind\":17,\"label\":\"UPG.SOVIET.TANK_TRAPS\",\"documentation\":\"UPG.SOVIET.TANK_TRAPS\",\"detail\":\"UPG.SOVIET.TANK_TRAPS\"},{\"id\":\"UPG.SOVIET.TOW_1941_SOVIET\",\"kind\":17,\"label\":\"UPG.SOVIET.TOW_1941_SOVIET\",\"documentation\":\"UPG.SOVIET.TOW_1941_SOVIET\",\"detail\":\"UPG.SOVIET.TOW_1941_SOVIET\"},{\"id\":\"UPG.SOVIET.VEHICLE_SELF_REPAIR_TRAINING\",\"kind\":17,\"label\":\"UPG.SOVIET.VEHICLE_SELF_REPAIR_TRAINING\",\"documentation\":\"UPG.SOVIET.VEHICLE_SELF_REPAIR_TRAINING\",\"detail\":\"UPG.SOVIET.VEHICLE_SELF_REPAIR_TRAINING\"},{\"id\":\"EBP.WEST_GERMAN.ANTI_TANK_GUN_CREW_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.ANTI_TANK_GUN_CREW_MP\",\"documentation\":\"EBP.WEST_GERMAN.ANTI_TANK_GUN_CREW_MP\",\"detail\":\"EBP.WEST_GERMAN.ANTI_TANK_GUN_CREW_MP\"},{\"id\":\"EBP.WEST_GERMAN.ARMORED_CAR_SDKFZ_223\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.ARMORED_CAR_SDKFZ_223\",\"documentation\":\"EBP.WEST_GERMAN.ARMORED_CAR_SDKFZ_223\",\"detail\":\"EBP.WEST_GERMAN.ARMORED_CAR_SDKFZ_223\"},{\"id\":\"EBP.WEST_GERMAN.ARTY_CREW_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.ARTY_CREW_MP\",\"documentation\":\"EBP.WEST_GERMAN.ARTY_CREW_MP\",\"detail\":\"EBP.WEST_GERMAN.ARTY_CREW_MP\"},{\"id\":\"EBP.WEST_GERMAN.ASSAULT_PIONEER_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.ASSAULT_PIONEER_MP\",\"documentation\":\"EBP.WEST_GERMAN.ASSAULT_PIONEER_MP\",\"detail\":\"EBP.WEST_GERMAN.ASSAULT_PIONEER_MP\"},{\"id\":\"EBP.WEST_GERMAN.ASSAULT_PIONEERS_HEAVY_MINE_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.ASSAULT_PIONEERS_HEAVY_MINE_MP\",\"documentation\":\"EBP.WEST_GERMAN.ASSAULT_PIONEERS_HEAVY_MINE_MP\",\"detail\":\"EBP.WEST_GERMAN.ASSAULT_PIONEERS_HEAVY_MINE_MP\"},{\"id\":\"EBP.WEST_GERMAN.BASE_FLAK_GUN_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.BASE_FLAK_GUN_MP\",\"documentation\":\"EBP.WEST_GERMAN.BASE_FLAK_GUN_MP\",\"detail\":\"EBP.WEST_GERMAN.BASE_FLAK_GUN_MP\"},{\"id\":\"EBP.WEST_GERMAN.BASE_FLAK_SANDBAGS\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.BASE_FLAK_SANDBAGS\",\"documentation\":\"EBP.WEST_GERMAN.BASE_FLAK_SANDBAGS\",\"detail\":\"EBP.WEST_GERMAN.BASE_FLAK_SANDBAGS\"},{\"id\":\"EBP.WEST_GERMAN.BUNKER_WESTGERMAN_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.BUNKER_WESTGERMAN_MP\",\"documentation\":\"EBP.WEST_GERMAN.BUNKER_WESTGERMAN_MP\",\"detail\":\"EBP.WEST_GERMAN.BUNKER_WESTGERMAN_MP\"},{\"id\":\"EBP.WEST_GERMAN.FALLSCHIRMJAGER_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.FALLSCHIRMJAGER_MP\",\"documentation\":\"EBP.WEST_GERMAN.FALLSCHIRMJAGER_MP\",\"detail\":\"EBP.WEST_GERMAN.FALLSCHIRMJAGER_MP\"},{\"id\":\"EBP.WEST_GERMAN.FIELD_OFFICER_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.FIELD_OFFICER_MP\",\"documentation\":\"EBP.WEST_GERMAN.FIELD_OFFICER_MP\",\"detail\":\"EBP.WEST_GERMAN.FIELD_OFFICER_MP\"},{\"id\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT\",\"documentation\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT\",\"detail\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT\"},{\"id\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_BASE\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_BASE\",\"documentation\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_BASE\",\"detail\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_BASE\"},{\"id\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_CREW\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_CREW\",\"documentation\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_CREW\",\"detail\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_CREW\"},{\"id\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_CREW_BASE\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_CREW_BASE\",\"documentation\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_CREW_BASE\",\"detail\":\"EBP.WEST_GERMAN.FLAK_EMPLACEMENT_CREW_BASE\"},{\"id\":\"EBP.WEST_GERMAN.GOLIATH_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.GOLIATH_MP\",\"documentation\":\"EBP.WEST_GERMAN.GOLIATH_MP\",\"detail\":\"EBP.WEST_GERMAN.GOLIATH_MP\"},{\"id\":\"EBP.WEST_GERMAN.GRANATWERFER_34_81MM_MORTAR_WG_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.GRANATWERFER_34_81MM_MORTAR_WG_MP\",\"documentation\":\"EBP.WEST_GERMAN.GRANATWERFER_34_81MM_MORTAR_WG_MP\",\"detail\":\"EBP.WEST_GERMAN.GRANATWERFER_34_81MM_MORTAR_WG_MP\"},{\"id\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_17_FLAK_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_17_FLAK_MP\",\"documentation\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_17_FLAK_MP\",\"detail\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_17_FLAK_MP\"},{\"id\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_20_IR_SEARCHLIGHT_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_20_IR_SEARCHLIGHT_MP\",\"documentation\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_20_IR_SEARCHLIGHT_MP\",\"detail\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_20_IR_SEARCHLIGHT_MP\"},{\"id\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_20_IR_SEARCHLIGHT_SP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_20_IR_SEARCHLIGHT_SP\",\"documentation\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_20_IR_SEARCHLIGHT_SP\",\"detail\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_20_IR_SEARCHLIGHT_SP\"},{\"id\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_MP_2\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_MP_2\",\"documentation\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_MP_2\",\"detail\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_MP_2\"},{\"id\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_WURFRAHMEN_40_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_WURFRAHMEN_40_MP\",\"documentation\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_WURFRAHMEN_40_MP\",\"detail\":\"EBP.WEST_GERMAN.HALFTRACK_SDKFZ_251_WURFRAHMEN_40_MP\"},{\"id\":\"EBP.WEST_GERMAN.HEAVY_ARMOR_SUPPORT_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.HEAVY_ARMOR_SUPPORT_MP\",\"documentation\":\"EBP.WEST_GERMAN.HEAVY_ARMOR_SUPPORT_MP\",\"detail\":\"EBP.WEST_GERMAN.HEAVY_ARMOR_SUPPORT_MP\"},{\"id\":\"EBP.WEST_GERMAN.HEAVY_ARMOR_SUPPORT_PREPLACED\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.HEAVY_ARMOR_SUPPORT_PREPLACED\",\"documentation\":\"EBP.WEST_GERMAN.HEAVY_ARMOR_SUPPORT_PREPLACED\",\"detail\":\"EBP.WEST_GERMAN.HEAVY_ARMOR_SUPPORT_PREPLACED\"},{\"id\":\"EBP.WEST_GERMAN.HETZER_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.HETZER_MP\",\"documentation\":\"EBP.WEST_GERMAN.HETZER_MP\",\"detail\":\"EBP.WEST_GERMAN.HETZER_MP\"},{\"id\":\"EBP.WEST_GERMAN.HMG_CREW_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.HMG_CREW_MP\",\"documentation\":\"EBP.WEST_GERMAN.HMG_CREW_MP\",\"detail\":\"EBP.WEST_GERMAN.HMG_CREW_MP\"},{\"id\":\"EBP.WEST_GERMAN.HOWITZER_105MM_LE_FH18_MINICHALLENGE\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.HOWITZER_105MM_LE_FH18_MINICHALLENGE\",\"documentation\":\"EBP.WEST_GERMAN.HOWITZER_105MM_LE_FH18_MINICHALLENGE\",\"detail\":\"EBP.WEST_GERMAN.HOWITZER_105MM_LE_FH18_MINICHALLENGE\"},{\"id\":\"EBP.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE\",\"documentation\":\"EBP.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE\",\"detail\":\"EBP.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE\"},{\"id\":\"EBP.WEST_GERMAN.INFANTRY_SUPPORT_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.INFANTRY_SUPPORT_MP\",\"documentation\":\"EBP.WEST_GERMAN.INFANTRY_SUPPORT_MP\",\"detail\":\"EBP.WEST_GERMAN.INFANTRY_SUPPORT_MP\"},{\"id\":\"EBP.WEST_GERMAN.INFANTRY_SUPPORT_PREPLACED\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.INFANTRY_SUPPORT_PREPLACED\",\"documentation\":\"EBP.WEST_GERMAN.INFANTRY_SUPPORT_PREPLACED\",\"detail\":\"EBP.WEST_GERMAN.INFANTRY_SUPPORT_PREPLACED\"},{\"id\":\"EBP.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON\",\"documentation\":\"EBP.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON\",\"detail\":\"EBP.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON\"},{\"id\":\"EBP.WEST_GERMAN.JAGDPANZER_IV_SDKFZ_162_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.JAGDPANZER_IV_SDKFZ_162_MP\",\"documentation\":\"EBP.WEST_GERMAN.JAGDPANZER_IV_SDKFZ_162_MP\",\"detail\":\"EBP.WEST_GERMAN.JAGDPANZER_IV_SDKFZ_162_MP\"},{\"id\":\"EBP.WEST_GERMAN.JAGDTIGER_SDKFZ_186_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.JAGDTIGER_SDKFZ_186_MP\",\"documentation\":\"EBP.WEST_GERMAN.JAGDTIGER_SDKFZ_186_MP\",\"detail\":\"EBP.WEST_GERMAN.JAGDTIGER_SDKFZ_186_MP\"},{\"id\":\"EBP.WEST_GERMAN.JU52_PARATROOPER_PLANE\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.JU52_PARATROOPER_PLANE\",\"documentation\":\"EBP.WEST_GERMAN.JU52_PARATROOPER_PLANE\",\"detail\":\"EBP.WEST_GERMAN.JU52_PARATROOPER_PLANE\"},{\"id\":\"EBP.WEST_GERMAN.JU52_PLANE\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.JU52_PLANE\",\"documentation\":\"EBP.WEST_GERMAN.JU52_PLANE\",\"detail\":\"EBP.WEST_GERMAN.JU52_PLANE\"},{\"id\":\"EBP.WEST_GERMAN.KING_TIGER_SDKFZ_182_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.KING_TIGER_SDKFZ_182_MP\",\"documentation\":\"EBP.WEST_GERMAN.KING_TIGER_SDKFZ_182_MP\",\"detail\":\"EBP.WEST_GERMAN.KING_TIGER_SDKFZ_182_MP\"},{\"id\":\"EBP.WEST_GERMAN.KUBELWAGEN_TYPE_82_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.KUBELWAGEN_TYPE_82_MP\",\"documentation\":\"EBP.WEST_GERMAN.KUBELWAGEN_TYPE_82_MP\",\"detail\":\"EBP.WEST_GERMAN.KUBELWAGEN_TYPE_82_MP\"},{\"id\":\"EBP.WEST_GERMAN.LE_IG_18_INF_SUPPORT_GUN_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.LE_IG_18_INF_SUPPORT_GUN_MP\",\"documentation\":\"EBP.WEST_GERMAN.LE_IG_18_INF_SUPPORT_GUN_MP\",\"detail\":\"EBP.WEST_GERMAN.LE_IG_18_INF_SUPPORT_GUN_MP\"},{\"id\":\"EBP.WEST_GERMAN.LIGHT_ARMOR_SUPPORT_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.LIGHT_ARMOR_SUPPORT_MP\",\"documentation\":\"EBP.WEST_GERMAN.LIGHT_ARMOR_SUPPORT_MP\",\"detail\":\"EBP.WEST_GERMAN.LIGHT_ARMOR_SUPPORT_MP\"},{\"id\":\"EBP.WEST_GERMAN.LIGHT_ARMOR_SUPPORT_PREPLACED\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.LIGHT_ARMOR_SUPPORT_PREPLACED\",\"documentation\":\"EBP.WEST_GERMAN.LIGHT_ARMOR_SUPPORT_PREPLACED\",\"detail\":\"EBP.WEST_GERMAN.LIGHT_ARMOR_SUPPORT_PREPLACED\"},{\"id\":\"EBP.WEST_GERMAN.MED_SUPPLY_STASH\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.MED_SUPPLY_STASH\",\"documentation\":\"EBP.WEST_GERMAN.MED_SUPPLY_STASH\",\"detail\":\"EBP.WEST_GERMAN.MED_SUPPLY_STASH\"},{\"id\":\"EBP.WEST_GERMAN.MG34_HMG_CREW\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.MG34_HMG_CREW\",\"documentation\":\"EBP.WEST_GERMAN.MG34_HMG_CREW\",\"detail\":\"EBP.WEST_GERMAN.MG34_HMG_CREW\"},{\"id\":\"EBP.WEST_GERMAN.MG34_HMG_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.MG34_HMG_MP\",\"documentation\":\"EBP.WEST_GERMAN.MG34_HMG_MP\",\"detail\":\"EBP.WEST_GERMAN.MG34_HMG_MP\"},{\"id\":\"EBP.WEST_GERMAN.MG42_HMG_WG_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.MG42_HMG_WG_MP\",\"documentation\":\"EBP.WEST_GERMAN.MG42_HMG_WG_MP\",\"detail\":\"EBP.WEST_GERMAN.MG42_HMG_WG_MP\"},{\"id\":\"EBP.WEST_GERMAN.MINE_FIELD_WESTGERMAN_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.MINE_FIELD_WESTGERMAN_MP\",\"documentation\":\"EBP.WEST_GERMAN.MINE_FIELD_WESTGERMAN_MP\",\"detail\":\"EBP.WEST_GERMAN.MINE_FIELD_WESTGERMAN_MP\"},{\"id\":\"EBP.WEST_GERMAN.MORTAR_TEAM_CREW_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.MORTAR_TEAM_CREW_MP\",\"documentation\":\"EBP.WEST_GERMAN.MORTAR_TEAM_CREW_MP\",\"detail\":\"EBP.WEST_GERMAN.MORTAR_TEAM_CREW_MP\"},{\"id\":\"EBP.WEST_GERMAN.OBERSOLDATEN_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.OBERSOLDATEN_MP\",\"documentation\":\"EBP.WEST_GERMAN.OBERSOLDATEN_MP\",\"detail\":\"EBP.WEST_GERMAN.OBERSOLDATEN_MP\"},{\"id\":\"EBP.WEST_GERMAN.OKW_HOWITZER_105MM_LE_FH18_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.OKW_HOWITZER_105MM_LE_FH18_MP\",\"documentation\":\"EBP.WEST_GERMAN.OKW_HOWITZER_105MM_LE_FH18_MP\",\"detail\":\"EBP.WEST_GERMAN.OKW_HOWITZER_105MM_LE_FH18_MP\"},{\"id\":\"EBP.WEST_GERMAN.OKW_HOWITZER_CREW_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.OKW_HOWITZER_CREW_MP\",\"documentation\":\"EBP.WEST_GERMAN.OKW_HOWITZER_CREW_MP\",\"detail\":\"EBP.WEST_GERMAN.OKW_HOWITZER_CREW_MP\"},{\"id\":\"EBP.WEST_GERMAN.OSTWIND_FLAK_PANZER_WEST_GERMAN_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.OSTWIND_FLAK_PANZER_WEST_GERMAN_MP\",\"documentation\":\"EBP.WEST_GERMAN.OSTWIND_FLAK_PANZER_WEST_GERMAN_MP\",\"detail\":\"EBP.WEST_GERMAN.OSTWIND_FLAK_PANZER_WEST_GERMAN_MP\"},{\"id\":\"EBP.WEST_GERMAN.PAK40_75MM_AT_GUN_WG_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.PAK40_75MM_AT_GUN_WG_MP\",\"documentation\":\"EBP.WEST_GERMAN.PAK40_75MM_AT_GUN_WG_MP\",\"detail\":\"EBP.WEST_GERMAN.PAK40_75MM_AT_GUN_WG_MP\"},{\"id\":\"EBP.WEST_GERMAN.PAK43_88MM_AT_GUN_WESTGERMAN_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.PAK43_88MM_AT_GUN_WESTGERMAN_MP\",\"documentation\":\"EBP.WEST_GERMAN.PAK43_88MM_AT_GUN_WESTGERMAN_MP\",\"detail\":\"EBP.WEST_GERMAN.PAK43_88MM_AT_GUN_WESTGERMAN_MP\"},{\"id\":\"EBP.WEST_GERMAN.PANTHER_SDKFZ_171_AUSF_G_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.PANTHER_SDKFZ_171_AUSF_G_MP\",\"documentation\":\"EBP.WEST_GERMAN.PANTHER_SDKFZ_171_AUSF_G_MP\",\"detail\":\"EBP.WEST_GERMAN.PANTHER_SDKFZ_171_AUSF_G_MP\"},{\"id\":\"EBP.WEST_GERMAN.PANTHER_SDKFZ_171_COMMANDER_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.PANTHER_SDKFZ_171_COMMANDER_MP\",\"documentation\":\"EBP.WEST_GERMAN.PANTHER_SDKFZ_171_COMMANDER_MP\",\"detail\":\"EBP.WEST_GERMAN.PANTHER_SDKFZ_171_COMMANDER_MP\"},{\"id\":\"EBP.WEST_GERMAN.PANZER_II_LUCHS_SDKFZ_123_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.PANZER_II_LUCHS_SDKFZ_123_MP\",\"documentation\":\"EBP.WEST_GERMAN.PANZER_II_LUCHS_SDKFZ_123_MP\",\"detail\":\"EBP.WEST_GERMAN.PANZER_II_LUCHS_SDKFZ_123_MP\"},{\"id\":\"EBP.WEST_GERMAN.PANZER_IV_SDKFZ_AUSF_J_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.PANZER_IV_SDKFZ_AUSF_J_MP\",\"documentation\":\"EBP.WEST_GERMAN.PANZER_IV_SDKFZ_AUSF_J_MP\",\"detail\":\"EBP.WEST_GERMAN.PANZER_IV_SDKFZ_AUSF_J_MP\"},{\"id\":\"EBP.WEST_GERMAN.PANZERFUSILIER_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.PANZERFUSILIER_MP\",\"documentation\":\"EBP.WEST_GERMAN.PANZERFUSILIER_MP\",\"detail\":\"EBP.WEST_GERMAN.PANZERFUSILIER_MP\"},{\"id\":\"EBP.WEST_GERMAN.PUMA_SDKFZ_234_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.PUMA_SDKFZ_234_MP\",\"documentation\":\"EBP.WEST_GERMAN.PUMA_SDKFZ_234_MP\",\"detail\":\"EBP.WEST_GERMAN.PUMA_SDKFZ_234_MP\"},{\"id\":\"EBP.WEST_GERMAN.RAKETENWERFER43_88MM_PUPPCHEN_ANTITANK_GUN_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.RAKETENWERFER43_88MM_PUPPCHEN_ANTITANK_GUN_MP\",\"documentation\":\"EBP.WEST_GERMAN.RAKETENWERFER43_88MM_PUPPCHEN_ANTITANK_GUN_MP\",\"detail\":\"EBP.WEST_GERMAN.RAKETENWERFER43_88MM_PUPPCHEN_ANTITANK_GUN_MP\"},{\"id\":\"EBP.WEST_GERMAN.REINFORCED_BARBED_WIRE_FENCE_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.REINFORCED_BARBED_WIRE_FENCE_MP\",\"documentation\":\"EBP.WEST_GERMAN.REINFORCED_BARBED_WIRE_FENCE_MP\",\"detail\":\"EBP.WEST_GERMAN.REINFORCED_BARBED_WIRE_FENCE_MP\"},{\"id\":\"EBP.WEST_GERMAN.REINFORCED_BARBED_WIRE_TANK_TRAP_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.REINFORCED_BARBED_WIRE_TANK_TRAP_MP\",\"documentation\":\"EBP.WEST_GERMAN.REINFORCED_BARBED_WIRE_TANK_TRAP_MP\",\"detail\":\"EBP.WEST_GERMAN.REINFORCED_BARBED_WIRE_TANK_TRAP_MP\"},{\"id\":\"EBP.WEST_GERMAN.SCHU_MINE_42_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.SCHU_MINE_42_MP\",\"documentation\":\"EBP.WEST_GERMAN.SCHU_MINE_42_MP\",\"detail\":\"EBP.WEST_GERMAN.SCHU_MINE_42_MP\"},{\"id\":\"EBP.WEST_GERMAN.SIPHON_STRUCTURE\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.SIPHON_STRUCTURE\",\"documentation\":\"EBP.WEST_GERMAN.SIPHON_STRUCTURE\",\"detail\":\"EBP.WEST_GERMAN.SIPHON_STRUCTURE\"},{\"id\":\"EBP.WEST_GERMAN.STURMTIGER_606_38CM_RW_61_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.STURMTIGER_606_38CM_RW_61_MP\",\"documentation\":\"EBP.WEST_GERMAN.STURMTIGER_606_38CM_RW_61_MP\",\"detail\":\"EBP.WEST_GERMAN.STURMTIGER_606_38CM_RW_61_MP\"},{\"id\":\"EBP.WEST_GERMAN.SWS_HALFTRACK_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.SWS_HALFTRACK_MP\",\"documentation\":\"EBP.WEST_GERMAN.SWS_HALFTRACK_MP\",\"detail\":\"EBP.WEST_GERMAN.SWS_HALFTRACK_MP\"},{\"id\":\"EBP.WEST_GERMAN.SWS_HALFTRACK_SP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.SWS_HALFTRACK_SP\",\"documentation\":\"EBP.WEST_GERMAN.SWS_HALFTRACK_SP\",\"detail\":\"EBP.WEST_GERMAN.SWS_HALFTRACK_SP\"},{\"id\":\"EBP.WEST_GERMAN.TERROR_OFFICER_GUARD_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.TERROR_OFFICER_GUARD_MP\",\"documentation\":\"EBP.WEST_GERMAN.TERROR_OFFICER_GUARD_MP\",\"detail\":\"EBP.WEST_GERMAN.TERROR_OFFICER_GUARD_MP\"},{\"id\":\"EBP.WEST_GERMAN.TERROR_OFFICER_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.TERROR_OFFICER_MP\",\"documentation\":\"EBP.WEST_GERMAN.TERROR_OFFICER_MP\",\"detail\":\"EBP.WEST_GERMAN.TERROR_OFFICER_MP\"},{\"id\":\"EBP.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"documentation\":\"EBP.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"detail\":\"EBP.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\"},{\"id\":\"EBP.WEST_GERMAN.VOLKSGRENADIER_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.VOLKSGRENADIER_MP\",\"documentation\":\"EBP.WEST_GERMAN.VOLKSGRENADIER_MP\",\"detail\":\"EBP.WEST_GERMAN.VOLKSGRENADIER_MP\"},{\"id\":\"EBP.WEST_GERMAN.WEST_GERMAN_BASE_STAMPER\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WEST_GERMAN_BASE_STAMPER\",\"documentation\":\"EBP.WEST_GERMAN.WEST_GERMAN_BASE_STAMPER\",\"detail\":\"EBP.WEST_GERMAN.WEST_GERMAN_BASE_STAMPER\"},{\"id\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_BARREL\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_BARREL\",\"documentation\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_BARREL\",\"detail\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_BARREL\"},{\"id\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_CRATES_01\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_CRATES_01\",\"documentation\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_CRATES_01\",\"detail\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_CRATES_01\"},{\"id\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_CRATES_02\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_CRATES_02\",\"documentation\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_CRATES_02\",\"detail\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_CRATES_02\"},{\"id\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_GENERATOR\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_GENERATOR\",\"documentation\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_GENERATOR\",\"detail\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_GENERATOR\"},{\"id\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_SANDBAG_01\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_SANDBAG_01\",\"documentation\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_SANDBAG_01\",\"detail\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_SANDBAG_01\"},{\"id\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_SANDBAG_02\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_SANDBAG_02\",\"documentation\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_SANDBAG_02\",\"detail\":\"EBP.WEST_GERMAN.WEST_GERMAN_COMMAND_POST_SANDBAG_02\"},{\"id\":\"EBP.WEST_GERMAN.WEST_GERMAN_HQ_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WEST_GERMAN_HQ_MP\",\"documentation\":\"EBP.WEST_GERMAN.WEST_GERMAN_HQ_MP\",\"detail\":\"EBP.WEST_GERMAN.WEST_GERMAN_HQ_MP\"},{\"id\":\"EBP.WEST_GERMAN.WEST_GERMAN_HQ_WRECK_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WEST_GERMAN_HQ_WRECK_MP\",\"documentation\":\"EBP.WEST_GERMAN.WEST_GERMAN_HQ_WRECK_MP\",\"detail\":\"EBP.WEST_GERMAN.WEST_GERMAN_HQ_WRECK_MP\"},{\"id\":\"EBP.WEST_GERMAN.WEST_GERMAN_INVISI_REPAIR_STATION_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WEST_GERMAN_INVISI_REPAIR_STATION_MP\",\"documentation\":\"EBP.WEST_GERMAN.WEST_GERMAN_INVISI_REPAIR_STATION_MP\",\"detail\":\"EBP.WEST_GERMAN.WEST_GERMAN_INVISI_REPAIR_STATION_MP\"},{\"id\":\"EBP.WEST_GERMAN.WG_BARBED_WIRE_FENCE_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WG_BARBED_WIRE_FENCE_MP\",\"documentation\":\"EBP.WEST_GERMAN.WG_BARBED_WIRE_FENCE_MP\",\"detail\":\"EBP.WEST_GERMAN.WG_BARBED_WIRE_FENCE_MP\"},{\"id\":\"EBP.WEST_GERMAN.WG_SANDBAG_FENCE_MP\",\"kind\":17,\"label\":\"EBP.WEST_GERMAN.WG_SANDBAG_FENCE_MP\",\"documentation\":\"EBP.WEST_GERMAN.WG_SANDBAG_FENCE_MP\",\"detail\":\"EBP.WEST_GERMAN.WG_SANDBAG_FENCE_MP\"},{\"id\":\"SBP.WEST_GERMAN.ARMORED_CAR_SDKFZ_234_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.ARMORED_CAR_SDKFZ_234_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.ARMORED_CAR_SDKFZ_234_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.ARMORED_CAR_SDKFZ_234_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.ASSAULT_PIONEER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.ASSAULT_PIONEER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.ASSAULT_PIONEER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.ASSAULT_PIONEER_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.COMMAND_KING_TIGER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.COMMAND_KING_TIGER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.COMMAND_KING_TIGER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.COMMAND_KING_TIGER_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.FALLSCHIRMJAGER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.FALLSCHIRMJAGER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.FALLSCHIRMJAGER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.FALLSCHIRMJAGER_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.FIELD_OFFICER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.FIELD_OFFICER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.FIELD_OFFICER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.FIELD_OFFICER_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.FLAK_EMPLACEMENT\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.FLAK_EMPLACEMENT\",\"documentation\":\"SBP.WEST_GERMAN.FLAK_EMPLACEMENT\",\"detail\":\"SBP.WEST_GERMAN.FLAK_EMPLACEMENT\"},{\"id\":\"SBP.WEST_GERMAN.FLAK_EMPLACEMENT_BASE\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.FLAK_EMPLACEMENT_BASE\",\"documentation\":\"SBP.WEST_GERMAN.FLAK_EMPLACEMENT_BASE\",\"detail\":\"SBP.WEST_GERMAN.FLAK_EMPLACEMENT_BASE\"},{\"id\":\"SBP.WEST_GERMAN.GOLIATH_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.GOLIATH_MP\",\"documentation\":\"SBP.WEST_GERMAN.GOLIATH_MP\",\"detail\":\"SBP.WEST_GERMAN.GOLIATH_MP\"},{\"id\":\"SBP.WEST_GERMAN.GRW34_81MM_MORTAR_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.GRW34_81MM_MORTAR_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.GRW34_81MM_MORTAR_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.GRW34_81MM_MORTAR_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.HETZER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.HETZER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.HETZER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.HETZER_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY_MINICHALLENGE\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY_MINICHALLENGE\",\"documentation\":\"SBP.WEST_GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY_MINICHALLENGE\",\"detail\":\"SBP.WEST_GERMAN.HOWITZER_105MM_LE_FH18_ARTILLERY_MINICHALLENGE\"},{\"id\":\"SBP.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE\",\"documentation\":\"SBP.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE\",\"detail\":\"SBP.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE\"},{\"id\":\"SBP.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.JAGDPANZER_TANK_DESTROYER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.JAGDPANZER_TANK_DESTROYER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.JAGDPANZER_TANK_DESTROYER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.JAGDPANZER_TANK_DESTROYER_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.JAGDTIGER_TD_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.JAGDTIGER_TD_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.JAGDTIGER_TD_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.JAGDTIGER_TD_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.JU52_PARATROOPER_PLANE\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.JU52_PARATROOPER_PLANE\",\"documentation\":\"SBP.WEST_GERMAN.JU52_PARATROOPER_PLANE\",\"detail\":\"SBP.WEST_GERMAN.JU52_PARATROOPER_PLANE\"},{\"id\":\"SBP.WEST_GERMAN.JU52_PLANE\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.JU52_PLANE\",\"documentation\":\"SBP.WEST_GERMAN.JU52_PLANE\",\"detail\":\"SBP.WEST_GERMAN.JU52_PLANE\"},{\"id\":\"SBP.WEST_GERMAN.KING_TIGER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.KING_TIGER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.KING_TIGER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.KING_TIGER_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.KUBELWAGEN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.KUBELWAGEN_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.KUBELWAGEN_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.KUBELWAGEN_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.LE_IG_18_INF_SUPPORT_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.LE_IG_18_INF_SUPPORT_GUN_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.LE_IG_18_INF_SUPPORT_GUN_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.LE_IG_18_INF_SUPPORT_GUN_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.MG34_HEAVY_MACHINE_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.MG34_HEAVY_MACHINE_GUN_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.MG34_HEAVY_MACHINE_GUN_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.MG34_HEAVY_MACHINE_GUN_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD_WG_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD_WG_MP\",\"documentation\":\"SBP.WEST_GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD_WG_MP\",\"detail\":\"SBP.WEST_GERMAN.MG42_HEAVY_MACHINE_GUN_SQUAD_WG_MP\"},{\"id\":\"SBP.WEST_GERMAN.MORTAR_250_HALFTRACK_SQUAD_WESTGERMAN_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.MORTAR_250_HALFTRACK_SQUAD_WESTGERMAN_MP\",\"documentation\":\"SBP.WEST_GERMAN.MORTAR_250_HALFTRACK_SQUAD_WESTGERMAN_MP\",\"detail\":\"SBP.WEST_GERMAN.MORTAR_250_HALFTRACK_SQUAD_WESTGERMAN_MP\"},{\"id\":\"SBP.WEST_GERMAN.OBERSOLDATEN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.OBERSOLDATEN_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.OBERSOLDATEN_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.OBERSOLDATEN_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.OKW_HOWITZER_105MM_LE_FH18_ARTILLERY_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.OKW_HOWITZER_105MM_LE_FH18_ARTILLERY_MP\",\"documentation\":\"SBP.WEST_GERMAN.OKW_HOWITZER_105MM_LE_FH18_ARTILLERY_MP\",\"detail\":\"SBP.WEST_GERMAN.OKW_HOWITZER_105MM_LE_FH18_ARTILLERY_MP\"},{\"id\":\"SBP.WEST_GERMAN.OSTWIND_SQUAD_WESTGERMAN_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.OSTWIND_SQUAD_WESTGERMAN_MP\",\"documentation\":\"SBP.WEST_GERMAN.OSTWIND_SQUAD_WESTGERMAN_MP\",\"detail\":\"SBP.WEST_GERMAN.OSTWIND_SQUAD_WESTGERMAN_MP\"},{\"id\":\"SBP.WEST_GERMAN.PAK40_75MM_AT_GUN_SQUAD_WG_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.PAK40_75MM_AT_GUN_SQUAD_WG_MP\",\"documentation\":\"SBP.WEST_GERMAN.PAK40_75MM_AT_GUN_SQUAD_WG_MP\",\"detail\":\"SBP.WEST_GERMAN.PAK40_75MM_AT_GUN_SQUAD_WG_MP\"},{\"id\":\"SBP.WEST_GERMAN.PAK43_88MM_AT_GUN_SQUAD_WESTGERMAN_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.PAK43_88MM_AT_GUN_SQUAD_WESTGERMAN_MP\",\"documentation\":\"SBP.WEST_GERMAN.PAK43_88MM_AT_GUN_SQUAD_WESTGERMAN_MP\",\"detail\":\"SBP.WEST_GERMAN.PAK43_88MM_AT_GUN_SQUAD_WESTGERMAN_MP\"},{\"id\":\"SBP.WEST_GERMAN.PANTHER_AUSF_G_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.PANTHER_AUSF_G_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.PANTHER_AUSF_G_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.PANTHER_AUSF_G_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.PANTHER_COMMANDER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.PANTHER_COMMANDER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.PANTHER_COMMANDER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.PANTHER_COMMANDER_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.PANZER_II_LUCHS_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.PANZER_II_LUCHS_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.PANZER_II_LUCHS_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.PANZER_II_LUCHS_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.PANZER_IV_AUSF_J_BATTLE_GROUP_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.PANZER_IV_AUSF_J_BATTLE_GROUP_MP\",\"documentation\":\"SBP.WEST_GERMAN.PANZER_IV_AUSF_J_BATTLE_GROUP_MP\",\"detail\":\"SBP.WEST_GERMAN.PANZER_IV_AUSF_J_BATTLE_GROUP_MP\"},{\"id\":\"SBP.WEST_GERMAN.PANZERFUSILIER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.PANZERFUSILIER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.PANZERFUSILIER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.PANZERFUSILIER_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.RAKETENWERFER43_88MM_PUPPCHEN_ANTITANK_GUN_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.RAKETENWERFER43_88MM_PUPPCHEN_ANTITANK_GUN_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.RAKETENWERFER43_88MM_PUPPCHEN_ANTITANK_GUN_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.RAKETENWERFER43_88MM_PUPPCHEN_ANTITANK_GUN_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.SCOUTCAR_223_SQUAD\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.SCOUTCAR_223_SQUAD\",\"documentation\":\"SBP.WEST_GERMAN.SCOUTCAR_223_SQUAD\",\"detail\":\"SBP.WEST_GERMAN.SCOUTCAR_223_SQUAD\"},{\"id\":\"SBP.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.SDKFZ_251_20_IR_SEARCHLIGHT_HALFTRACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.SDKFZ_251_20_IR_SEARCHLIGHT_HALFTRACK_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.SDKFZ_251_20_IR_SEARCHLIGHT_HALFTRACK_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.SDKFZ_251_20_IR_SEARCHLIGHT_HALFTRACK_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.SDKFZ_251_20_IR_SEARCHLIGHT_HALFTRACK_SQUAD_SP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.SDKFZ_251_20_IR_SEARCHLIGHT_HALFTRACK_SQUAD_SP\",\"documentation\":\"SBP.WEST_GERMAN.SDKFZ_251_20_IR_SEARCHLIGHT_HALFTRACK_SQUAD_SP\",\"detail\":\"SBP.WEST_GERMAN.SDKFZ_251_20_IR_SEARCHLIGHT_HALFTRACK_SQUAD_SP\"},{\"id\":\"SBP.WEST_GERMAN.SDKFZ_251_HALFTRACK_SQUAD_MP_2\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.SDKFZ_251_HALFTRACK_SQUAD_MP_2\",\"documentation\":\"SBP.WEST_GERMAN.SDKFZ_251_HALFTRACK_SQUAD_MP_2\",\"detail\":\"SBP.WEST_GERMAN.SDKFZ_251_HALFTRACK_SQUAD_MP_2\"},{\"id\":\"SBP.WEST_GERMAN.SDKFZ_251_WURFRAHMEN_40_HALFTRACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.SDKFZ_251_WURFRAHMEN_40_HALFTRACK_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.SDKFZ_251_WURFRAHMEN_40_HALFTRACK_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.SDKFZ_251_WURFRAHMEN_40_HALFTRACK_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.STURMTIGER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.STURMTIGER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.STURMTIGER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.STURMTIGER_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.SWS_HALFTRACK_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.SWS_HALFTRACK_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.SWS_HALFTRACK_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.SWS_HALFTRACK_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.SWS_HALFTRACK_SQUAD_SP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.SWS_HALFTRACK_SQUAD_SP\",\"documentation\":\"SBP.WEST_GERMAN.SWS_HALFTRACK_SQUAD_SP\",\"detail\":\"SBP.WEST_GERMAN.SWS_HALFTRACK_SQUAD_SP\"},{\"id\":\"SBP.WEST_GERMAN.TERROR_OFFICER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.TERROR_OFFICER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.TERROR_OFFICER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.TERROR_OFFICER_SQUAD_MP\"},{\"id\":\"SBP.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"documentation\":\"SBP.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"detail\":\"SBP.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\"},{\"id\":\"SBP.WEST_GERMAN.VOLKSGRENADIER_SQUAD_MP\",\"kind\":17,\"label\":\"SBP.WEST_GERMAN.VOLKSGRENADIER_SQUAD_MP\",\"documentation\":\"SBP.WEST_GERMAN.VOLKSGRENADIER_SQUAD_MP\",\"detail\":\"SBP.WEST_GERMAN.VOLKSGRENADIER_SQUAD_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.ADVANCED_SIPHON\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.ADVANCED_SIPHON\",\"documentation\":\"ABILITY.WEST_GERMAN.ADVANCED_SIPHON\",\"detail\":\"ABILITY.WEST_GERMAN.ADVANCED_SIPHON\"},{\"id\":\"ABILITY.WEST_GERMAN.AIRBORNE_ASSAULT\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.AIRBORNE_ASSAULT\",\"documentation\":\"ABILITY.WEST_GERMAN.AIRBORNE_ASSAULT\",\"detail\":\"ABILITY.WEST_GERMAN.AIRBORNE_ASSAULT\"},{\"id\":\"ABILITY.WEST_GERMAN.ARMOR_BLITZ_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.ARMOR_BLITZ_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.ARMOR_BLITZ_MP\",\"detail\":\"ABILITY.WEST_GERMAN.ARMOR_BLITZ_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.ASSAULT_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.ASSAULT_ARTILLERY\",\"documentation\":\"ABILITY.WEST_GERMAN.ASSAULT_ARTILLERY\",\"detail\":\"ABILITY.WEST_GERMAN.ASSAULT_ARTILLERY\"},{\"id\":\"ABILITY.WEST_GERMAN.ASSAULT_MOVE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.ASSAULT_MOVE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.ASSAULT_MOVE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.ASSAULT_MOVE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.ASSAULT_PIONEER_BARBED_WIRE_CUTTING_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.ASSAULT_PIONEER_BARBED_WIRE_CUTTING_ABILITY_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.ASSAULT_PIONEER_BARBED_WIRE_CUTTING_ABILITY_MP\",\"detail\":\"ABILITY.WEST_GERMAN.ASSAULT_PIONEER_BARBED_WIRE_CUTTING_ABILITY_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.ASSAULT_PIONEER_DROP_MEDPACK_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.ASSAULT_PIONEER_DROP_MEDPACK_ABILITY_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.ASSAULT_PIONEER_DROP_MEDPACK_ABILITY_MP\",\"detail\":\"ABILITY.WEST_GERMAN.ASSAULT_PIONEER_DROP_MEDPACK_ABILITY_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.BARRAGE_ABILITY_MC\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.BARRAGE_ABILITY_MC\",\"documentation\":\"ABILITY.WEST_GERMAN.BARRAGE_ABILITY_MC\",\"detail\":\"ABILITY.WEST_GERMAN.BARRAGE_ABILITY_MC\"},{\"id\":\"ABILITY.WEST_GERMAN.BASE_BUILDING_RETREAT_POINT_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.BASE_BUILDING_RETREAT_POINT_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.BASE_BUILDING_RETREAT_POINT_MP\",\"detail\":\"ABILITY.WEST_GERMAN.BASE_BUILDING_RETREAT_POINT_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.BLENDKORPER_2H_WAFFEN_ELITE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.BLENDKORPER_2H_WAFFEN_ELITE\",\"documentation\":\"ABILITY.WEST_GERMAN.BLENDKORPER_2H_WAFFEN_ELITE\",\"detail\":\"ABILITY.WEST_GERMAN.BLENDKORPER_2H_WAFFEN_ELITE\"},{\"id\":\"ABILITY.WEST_GERMAN.BREAKTHROUGH_2\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.BREAKTHROUGH_2\",\"documentation\":\"ABILITY.WEST_GERMAN.BREAKTHROUGH_2\",\"detail\":\"ABILITY.WEST_GERMAN.BREAKTHROUGH_2\"},{\"id\":\"ABILITY.WEST_GERMAN.BREAKTHROUGH_TACTICS\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.BREAKTHROUGH_TACTICS\",\"documentation\":\"ABILITY.WEST_GERMAN.BREAKTHROUGH_TACTICS\",\"detail\":\"ABILITY.WEST_GERMAN.BREAKTHROUGH_TACTICS\"},{\"id\":\"ABILITY.WEST_GERMAN.BUILDING_SELF_DESTRUCT\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.BUILDING_SELF_DESTRUCT\",\"documentation\":\"ABILITY.WEST_GERMAN.BUILDING_SELF_DESTRUCT\",\"detail\":\"ABILITY.WEST_GERMAN.BUILDING_SELF_DESTRUCT\"},{\"id\":\"ABILITY.WEST_GERMAN.BUILDING_SWITCH_FUEL\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.BUILDING_SWITCH_FUEL\",\"documentation\":\"ABILITY.WEST_GERMAN.BUILDING_SWITCH_FUEL\",\"detail\":\"ABILITY.WEST_GERMAN.BUILDING_SWITCH_FUEL\"},{\"id\":\"ABILITY.WEST_GERMAN.BUILDING_SWITCH_MUNITIONS\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.BUILDING_SWITCH_MUNITIONS\",\"documentation\":\"ABILITY.WEST_GERMAN.BUILDING_SWITCH_MUNITIONS\",\"detail\":\"ABILITY.WEST_GERMAN.BUILDING_SWITCH_MUNITIONS\"},{\"id\":\"ABILITY.WEST_GERMAN.COMBAT_BLITZ_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.COMBAT_BLITZ_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.COMBAT_BLITZ_MP\",\"detail\":\"ABILITY.WEST_GERMAN.COMBAT_BLITZ_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.COMMAND_MARK_VEHICLE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.COMMAND_MARK_VEHICLE\",\"documentation\":\"ABILITY.WEST_GERMAN.COMMAND_MARK_VEHICLE\",\"detail\":\"ABILITY.WEST_GERMAN.COMMAND_MARK_VEHICLE\"},{\"id\":\"ABILITY.WEST_GERMAN.COMMAND_PANTHER\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.COMMAND_PANTHER\",\"documentation\":\"ABILITY.WEST_GERMAN.COMMAND_PANTHER\",\"detail\":\"ABILITY.WEST_GERMAN.COMMAND_PANTHER\"},{\"id\":\"ABILITY.WEST_GERMAN.COMMAND_ROYAL_TIGER_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.COMMAND_ROYAL_TIGER_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.COMMAND_ROYAL_TIGER_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.COMMAND_ROYAL_TIGER_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.CONSTRUCT_ARMORED_INFANTRY_COMMAND\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.CONSTRUCT_ARMORED_INFANTRY_COMMAND\",\"documentation\":\"ABILITY.WEST_GERMAN.CONSTRUCT_ARMORED_INFANTRY_COMMAND\",\"detail\":\"ABILITY.WEST_GERMAN.CONSTRUCT_ARMORED_INFANTRY_COMMAND\"},{\"id\":\"ABILITY.WEST_GERMAN.CONSTRUCT_INFANTRY_BARRACKS\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.CONSTRUCT_INFANTRY_BARRACKS\",\"documentation\":\"ABILITY.WEST_GERMAN.CONSTRUCT_INFANTRY_BARRACKS\",\"detail\":\"ABILITY.WEST_GERMAN.CONSTRUCT_INFANTRY_BARRACKS\"},{\"id\":\"ABILITY.WEST_GERMAN.CONSTRUCT_TANK_COMMAND\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.CONSTRUCT_TANK_COMMAND\",\"documentation\":\"ABILITY.WEST_GERMAN.CONSTRUCT_TANK_COMMAND\",\"detail\":\"ABILITY.WEST_GERMAN.CONSTRUCT_TANK_COMMAND\"},{\"id\":\"ABILITY.WEST_GERMAN.COORDINATED_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.COORDINATED_BARRAGE\",\"documentation\":\"ABILITY.WEST_GERMAN.COORDINATED_BARRAGE\",\"detail\":\"ABILITY.WEST_GERMAN.COORDINATED_BARRAGE\"},{\"id\":\"ABILITY.WEST_GERMAN.DEFENSIVE_MOVE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.DEFENSIVE_MOVE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.DEFENSIVE_MOVE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.DEFENSIVE_MOVE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.EARLY_WARNING_FLARES\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.EARLY_WARNING_FLARES\",\"documentation\":\"ABILITY.WEST_GERMAN.EARLY_WARNING_FLARES\",\"detail\":\"ABILITY.WEST_GERMAN.EARLY_WARNING_FLARES\"},{\"id\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER\",\"documentation\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER\",\"detail\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER\"},{\"id\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER_GREANDE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER_GREANDE\",\"documentation\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER_GREANDE\",\"detail\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER_GREANDE\"},{\"id\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER_PANZERFAUST\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER_PANZERFAUST\",\"documentation\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER_PANZERFAUST\",\"detail\":\"ABILITY.WEST_GERMAN.FALLSCHIRMJAEGER_PANZERFAUST\"},{\"id\":\"ABILITY.WEST_GERMAN.FALLSCHRIMJAEGER_CAMO\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FALLSCHRIMJAEGER_CAMO\",\"documentation\":\"ABILITY.WEST_GERMAN.FALLSCHRIMJAEGER_CAMO\",\"detail\":\"ABILITY.WEST_GERMAN.FALLSCHRIMJAEGER_CAMO\"},{\"id\":\"ABILITY.WEST_GERMAN.FATALITY_FLARE_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FATALITY_FLARE_ARTILLERY\",\"documentation\":\"ABILITY.WEST_GERMAN.FATALITY_FLARE_ARTILLERY\",\"detail\":\"ABILITY.WEST_GERMAN.FATALITY_FLARE_ARTILLERY\"},{\"id\":\"ABILITY.WEST_GERMAN.FATALITY_STUKA_FRAGMENTATION_AIRSTRIKE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FATALITY_STUKA_FRAGMENTATION_AIRSTRIKE\",\"documentation\":\"ABILITY.WEST_GERMAN.FATALITY_STUKA_FRAGMENTATION_AIRSTRIKE\",\"detail\":\"ABILITY.WEST_GERMAN.FATALITY_STUKA_FRAGMENTATION_AIRSTRIKE\"},{\"id\":\"ABILITY.WEST_GERMAN.FATALITY_STURMTIGER_SATURATION\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FATALITY_STURMTIGER_SATURATION\",\"documentation\":\"ABILITY.WEST_GERMAN.FATALITY_STURMTIGER_SATURATION\",\"detail\":\"ABILITY.WEST_GERMAN.FATALITY_STURMTIGER_SATURATION\"},{\"id\":\"ABILITY.WEST_GERMAN.FATALITY_WALKING_STUKA_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FATALITY_WALKING_STUKA_BARRAGE\",\"documentation\":\"ABILITY.WEST_GERMAN.FATALITY_WALKING_STUKA_BARRAGE\",\"detail\":\"ABILITY.WEST_GERMAN.FATALITY_WALKING_STUKA_BARRAGE\"},{\"id\":\"ABILITY.WEST_GERMAN.FIELD_DEFENSES\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FIELD_DEFENSES\",\"documentation\":\"ABILITY.WEST_GERMAN.FIELD_DEFENSES\",\"detail\":\"ABILITY.WEST_GERMAN.FIELD_DEFENSES\"},{\"id\":\"ABILITY.WEST_GERMAN.FLAK_EMPLACEMENT_SELF_REPAIR\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FLAK_EMPLACEMENT_SELF_REPAIR\",\"documentation\":\"ABILITY.WEST_GERMAN.FLAK_EMPLACEMENT_SELF_REPAIR\",\"detail\":\"ABILITY.WEST_GERMAN.FLAK_EMPLACEMENT_SELF_REPAIR\"},{\"id\":\"ABILITY.WEST_GERMAN.FLAK_HALFTRACK_CONCEALING_SMOKE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FLAK_HALFTRACK_CONCEALING_SMOKE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.FLAK_HALFTRACK_CONCEALING_SMOKE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.FLAK_HALFTRACK_CONCEALING_SMOKE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.FLAME_HALTRACK_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FLAME_HALTRACK_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.FLAME_HALTRACK_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.FLAME_HALTRACK_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.FLARE_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FLARE_ARTILLERY\",\"documentation\":\"ABILITY.WEST_GERMAN.FLARE_ARTILLERY\",\"detail\":\"ABILITY.WEST_GERMAN.FLARE_ARTILLERY\"},{\"id\":\"ABILITY.WEST_GERMAN.FLARE_TRAP_CAPTURE_POINT\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FLARE_TRAP_CAPTURE_POINT\",\"documentation\":\"ABILITY.WEST_GERMAN.FLARE_TRAP_CAPTURE_POINT\",\"detail\":\"ABILITY.WEST_GERMAN.FLARE_TRAP_CAPTURE_POINT\"},{\"id\":\"ABILITY.WEST_GERMAN.FOR_THE_FATHERLAND\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FOR_THE_FATHERLAND\",\"documentation\":\"ABILITY.WEST_GERMAN.FOR_THE_FATHERLAND\",\"detail\":\"ABILITY.WEST_GERMAN.FOR_THE_FATHERLAND\"},{\"id\":\"ABILITY.WEST_GERMAN.FORTIFY_POSITION_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FORTIFY_POSITION_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.FORTIFY_POSITION_MP\",\"detail\":\"ABILITY.WEST_GERMAN.FORTIFY_POSITION_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.FORWARD_RECIEVERS\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.FORWARD_RECIEVERS\",\"documentation\":\"ABILITY.WEST_GERMAN.FORWARD_RECIEVERS\",\"detail\":\"ABILITY.WEST_GERMAN.FORWARD_RECIEVERS\"},{\"id\":\"ABILITY.WEST_GERMAN.GOLIATH_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.GOLIATH_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.GOLIATH_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.GOLIATH_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_COUNTER_BARRAGE_ATTACK_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_COUNTER_BARRAGE_ATTACK_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_COUNTER_BARRAGE_ATTACK_MP\",\"detail\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_COUNTER_BARRAGE_ATTACK_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_COUNTER_BARRAGE_WEAPON_WG_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_COUNTER_BARRAGE_WEAPON_WG_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_COUNTER_BARRAGE_WEAPON_WG_MP\",\"detail\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_COUNTER_BARRAGE_WEAPON_WG_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_MORTAR_BARRAGE_WG_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_MORTAR_BARRAGE_WG_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_MORTAR_BARRAGE_WG_MP\",\"detail\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_MORTAR_BARRAGE_WG_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_MORTAR_VICTORTARGET_BARRAGE_WG_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_MORTAR_VICTORTARGET_BARRAGE_WG_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_MORTAR_VICTORTARGET_BARRAGE_WG_MP\",\"detail\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_MORTAR_VICTORTARGET_BARRAGE_WG_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_SMOKE_BARRAGE_WG_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_SMOKE_BARRAGE_WG_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_SMOKE_BARRAGE_WG_MP\",\"detail\":\"ABILITY.WEST_GERMAN.GRW34_MORTAR_TEAM_SMOKE_BARRAGE_WG_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.HEAT_SHELLS_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.HEAT_SHELLS_ABILITY_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.HEAT_SHELLS_ABILITY_MP\",\"detail\":\"ABILITY.WEST_GERMAN.HEAT_SHELLS_ABILITY_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.HEAT_SHELLS_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.HEAT_SHELLS_UNLOCK\",\"documentation\":\"ABILITY.WEST_GERMAN.HEAT_SHELLS_UNLOCK\",\"detail\":\"ABILITY.WEST_GERMAN.HEAT_SHELLS_UNLOCK\"},{\"id\":\"ABILITY.WEST_GERMAN.HEAVY_FORTIFICATIONS\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.HEAVY_FORTIFICATIONS\",\"documentation\":\"ABILITY.WEST_GERMAN.HEAVY_FORTIFICATIONS\",\"detail\":\"ABILITY.WEST_GERMAN.HEAVY_FORTIFICATIONS\"},{\"id\":\"ABILITY.WEST_GERMAN.HETZER_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.HETZER_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.HETZER_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.HETZER_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_EMPLACEMENT_UNLOCK_OKW\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_EMPLACEMENT_UNLOCK_OKW\",\"documentation\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_EMPLACEMENT_UNLOCK_OKW\",\"detail\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_EMPLACEMENT_UNLOCK_OKW\"},{\"id\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE_BARRAGE\",\"documentation\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE_BARRAGE\",\"detail\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_LONG_RANGE_BARRAGE\"},{\"id\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_OFFMAP_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_OFFMAP_BARRAGE\",\"documentation\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_OFFMAP_BARRAGE\",\"detail\":\"ABILITY.WEST_GERMAN.HOWITZER_105MM_OFFMAP_BARRAGE\"},{\"id\":\"ABILITY.WEST_GERMAN.HOWITZER_TOGGLE_FIRE_PM\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.HOWITZER_TOGGLE_FIRE_PM\",\"documentation\":\"ABILITY.WEST_GERMAN.HOWITZER_TOGGLE_FIRE_PM\",\"detail\":\"ABILITY.WEST_GERMAN.HOWITZER_TOGGLE_FIRE_PM\"},{\"id\":\"ABILITY.WEST_GERMAN.INFILTRATION_TACTICS_GRENADE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.INFILTRATION_TACTICS_GRENADE\",\"documentation\":\"ABILITY.WEST_GERMAN.INFILTRATION_TACTICS_GRENADE\",\"detail\":\"ABILITY.WEST_GERMAN.INFILTRATION_TACTICS_GRENADE\"},{\"id\":\"ABILITY.WEST_GERMAN.INFILTRATION_TACTICS_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.INFILTRATION_TACTICS_UNLOCK\",\"documentation\":\"ABILITY.WEST_GERMAN.INFILTRATION_TACTICS_UNLOCK\",\"detail\":\"ABILITY.WEST_GERMAN.INFILTRATION_TACTICS_UNLOCK\"},{\"id\":\"ABILITY.WEST_GERMAN.INFRARED_STG44\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.INFRARED_STG44\",\"documentation\":\"ABILITY.WEST_GERMAN.INFRARED_STG44\",\"detail\":\"ABILITY.WEST_GERMAN.INFRARED_STG44\"},{\"id\":\"ABILITY.WEST_GERMAN.JAEGER_BOOBY_TRAP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.JAEGER_BOOBY_TRAP\",\"documentation\":\"ABILITY.WEST_GERMAN.JAEGER_BOOBY_TRAP\",\"detail\":\"ABILITY.WEST_GERMAN.JAEGER_BOOBY_TRAP\"},{\"id\":\"ABILITY.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_CAMO\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_CAMO\",\"documentation\":\"ABILITY.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_CAMO\",\"detail\":\"ABILITY.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_CAMO\"},{\"id\":\"ABILITY.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.JAGDTIGER\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.JAGDTIGER\",\"documentation\":\"ABILITY.WEST_GERMAN.JAGDTIGER\",\"detail\":\"ABILITY.WEST_GERMAN.JAGDTIGER\"},{\"id\":\"ABILITY.WEST_GERMAN.JAGDTIGER_128MM_SUPPORTING_FIRE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.JAGDTIGER_128MM_SUPPORTING_FIRE\",\"documentation\":\"ABILITY.WEST_GERMAN.JAGDTIGER_128MM_SUPPORTING_FIRE\",\"detail\":\"ABILITY.WEST_GERMAN.JAGDTIGER_128MM_SUPPORTING_FIRE\"},{\"id\":\"ABILITY.WEST_GERMAN.JAGDTIGER_PIERCING_SHELL_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.JAGDTIGER_PIERCING_SHELL_ABILITY_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.JAGDTIGER_PIERCING_SHELL_ABILITY_MP\",\"detail\":\"ABILITY.WEST_GERMAN.JAGDTIGER_PIERCING_SHELL_ABILITY_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.KING_TIGER_COMMAND_MODE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.KING_TIGER_COMMAND_MODE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.KING_TIGER_COMMAND_MODE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.KING_TIGER_COMMAND_MODE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.KING_TIGER_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.KING_TIGER_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.KING_TIGER_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.KING_TIGER_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_DETECTION_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_DETECTION_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_DETECTION_MP\",\"detail\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_DETECTION_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_HOLD_FIRE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.KUBELWAGEN_IN_COVER_AUTO_CAMOUFLAGE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.LE_IG_18_BARRAGE_WG_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.LE_IG_18_BARRAGE_WG_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.LE_IG_18_BARRAGE_WG_MP\",\"detail\":\"ABILITY.WEST_GERMAN.LE_IG_18_BARRAGE_WG_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.LE_IG_18_BARRAGE_WG_VET_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.LE_IG_18_BARRAGE_WG_VET_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.LE_IG_18_BARRAGE_WG_VET_MP\",\"detail\":\"ABILITY.WEST_GERMAN.LE_IG_18_BARRAGE_WG_VET_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.LE_IG_18_HOLLOW_CHARGE_BARRAGE_WG_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.LE_IG_18_HOLLOW_CHARGE_BARRAGE_WG_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.LE_IG_18_HOLLOW_CHARGE_BARRAGE_WG_MP\",\"detail\":\"ABILITY.WEST_GERMAN.LE_IG_18_HOLLOW_CHARGE_BARRAGE_WG_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.LE_IG_18_HOLLOW_CHARGE_BARRAGE_WG_VET_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.LE_IG_18_HOLLOW_CHARGE_BARRAGE_WG_VET_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.LE_IG_18_HOLLOW_CHARGE_BARRAGE_WG_VET_MP\",\"detail\":\"ABILITY.WEST_GERMAN.LE_IG_18_HOLLOW_CHARGE_BARRAGE_WG_VET_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.MG34_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.MG34_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.MG34_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.MG34_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.MG34_PHOSPHORUS_ROUNDS_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.MG34_PHOSPHORUS_ROUNDS_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.MG34_PHOSPHORUS_ROUNDS_MP\",\"detail\":\"ABILITY.WEST_GERMAN.MG34_PHOSPHORUS_ROUNDS_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.MINESWEEPER_DEPLOY_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.MINESWEEPER_DEPLOY_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.MINESWEEPER_DEPLOY_MP\",\"detail\":\"ABILITY.WEST_GERMAN.MINESWEEPER_DEPLOY_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.MINESWEEPER_PUT_AWAY_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.MINESWEEPER_PUT_AWAY_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.MINESWEEPER_PUT_AWAY_MP\",\"detail\":\"ABILITY.WEST_GERMAN.MINESWEEPER_PUT_AWAY_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.MORTAR_HALFTRACK_WEST_GERMAN\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.MORTAR_HALFTRACK_WEST_GERMAN\",\"documentation\":\"ABILITY.WEST_GERMAN.MORTAR_HALFTRACK_WEST_GERMAN\",\"detail\":\"ABILITY.WEST_GERMAN.MORTAR_HALFTRACK_WEST_GERMAN\"},{\"id\":\"ABILITY.WEST_GERMAN.OFFMAP_NEBEL_BARRAGE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.OFFMAP_NEBEL_BARRAGE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.OFFMAP_NEBEL_BARRAGE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.OFFMAP_NEBEL_BARRAGE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.OKW_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.OKW_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.OKW_HOLD_FIRE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.OKW_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.OKW_RATKEN_VEHICLE_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.OKW_RATKEN_VEHICLE_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.OKW_RATKEN_VEHICLE_HOLD_FIRE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.OKW_RATKEN_VEHICLE_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.OKW_SECTOR_ASSAULT\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.OKW_SECTOR_ASSAULT\",\"documentation\":\"ABILITY.WEST_GERMAN.OKW_SECTOR_ASSAULT\",\"detail\":\"ABILITY.WEST_GERMAN.OKW_SECTOR_ASSAULT\"},{\"id\":\"ABILITY.WEST_GERMAN.OKW_STUKA_AERIAL_SUPERIORITY_RECON\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.OKW_STUKA_AERIAL_SUPERIORITY_RECON\",\"documentation\":\"ABILITY.WEST_GERMAN.OKW_STUKA_AERIAL_SUPERIORITY_RECON\",\"detail\":\"ABILITY.WEST_GERMAN.OKW_STUKA_AERIAL_SUPERIORITY_RECON\"},{\"id\":\"ABILITY.WEST_GERMAN.OKW_VEHICLE_HOLD_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.OKW_VEHICLE_HOLD_FIRE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.OKW_VEHICLE_HOLD_FIRE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.OKW_VEHICLE_HOLD_FIRE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.OSTWIND_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.OSTWIND_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.OSTWIND_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.OSTWIND_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.PAK40_CRITICAL_SHOTS_WG_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PAK40_CRITICAL_SHOTS_WG_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.PAK40_CRITICAL_SHOTS_WG_MP\",\"detail\":\"ABILITY.WEST_GERMAN.PAK40_CRITICAL_SHOTS_WG_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.PANZER_IV_GROUP_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PANZER_IV_GROUP_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.PANZER_IV_GROUP_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.PANZER_IV_GROUP_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.PANZERFUSILIER_AT_RIFLE_GRENADE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PANZERFUSILIER_AT_RIFLE_GRENADE\",\"documentation\":\"ABILITY.WEST_GERMAN.PANZERFUSILIER_AT_RIFLE_GRENADE\",\"detail\":\"ABILITY.WEST_GERMAN.PANZERFUSILIER_AT_RIFLE_GRENADE\"},{\"id\":\"ABILITY.WEST_GERMAN.PANZERFUSILIER_GRENADE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PANZERFUSILIER_GRENADE\",\"documentation\":\"ABILITY.WEST_GERMAN.PANZERFUSILIER_GRENADE\",\"detail\":\"ABILITY.WEST_GERMAN.PANZERFUSILIER_GRENADE\"},{\"id\":\"ABILITY.WEST_GERMAN.PANZERFUSILIERS_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PANZERFUSILIERS_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.PANZERFUSILIERS_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.PANZERFUSILIERS_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.PANZERFUSILIERS_FLARE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PANZERFUSILIERS_FLARE\",\"documentation\":\"ABILITY.WEST_GERMAN.PANZERFUSILIERS_FLARE\",\"detail\":\"ABILITY.WEST_GERMAN.PANZERFUSILIERS_FLARE\"},{\"id\":\"ABILITY.WEST_GERMAN.PIONEER_STUN_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PIONEER_STUN_GRENADE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.PIONEER_STUN_GRENADE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.PIONEER_STUN_GRENADE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.PIONEER_VOLKS_SALVAGE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PIONEER_VOLKS_SALVAGE\",\"documentation\":\"ABILITY.WEST_GERMAN.PIONEER_VOLKS_SALVAGE\",\"detail\":\"ABILITY.WEST_GERMAN.PIONEER_VOLKS_SALVAGE\"},{\"id\":\"ABILITY.WEST_GERMAN.PIONEER_VOLKS_THROUGH_SALVAGE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PIONEER_VOLKS_THROUGH_SALVAGE\",\"documentation\":\"ABILITY.WEST_GERMAN.PIONEER_VOLKS_THROUGH_SALVAGE\",\"detail\":\"ABILITY.WEST_GERMAN.PIONEER_VOLKS_THROUGH_SALVAGE\"},{\"id\":\"ABILITY.WEST_GERMAN.PUMA_AIMED_SHOT_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PUMA_AIMED_SHOT_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.PUMA_AIMED_SHOT_MP\",\"detail\":\"ABILITY.WEST_GERMAN.PUMA_AIMED_SHOT_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.PUMA_SMOKE_SCREEN\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PUMA_SMOKE_SCREEN\",\"documentation\":\"ABILITY.WEST_GERMAN.PUMA_SMOKE_SCREEN\",\"detail\":\"ABILITY.WEST_GERMAN.PUMA_SMOKE_SCREEN\"},{\"id\":\"ABILITY.WEST_GERMAN.PYRO_VOLKS\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.PYRO_VOLKS\",\"documentation\":\"ABILITY.WEST_GERMAN.PYRO_VOLKS\",\"detail\":\"ABILITY.WEST_GERMAN.PYRO_VOLKS\"},{\"id\":\"ABILITY.WEST_GERMAN.RADIO_SILENCE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.RADIO_SILENCE\",\"documentation\":\"ABILITY.WEST_GERMAN.RADIO_SILENCE\",\"detail\":\"ABILITY.WEST_GERMAN.RADIO_SILENCE\"},{\"id\":\"ABILITY.WEST_GERMAN.RAKETEN_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.RAKETEN_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.RAKETEN_IN_COVER_AUTO_CAMOUFLAGE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.RAKETEN_IN_COVER_AUTO_CAMOUFLAGE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.RAKTEN_CAMOUFLAGE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.RAKTEN_CAMOUFLAGE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.RAKTEN_CAMOUFLAGE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.RAKTEN_CAMOUFLAGE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.RECON_STANCE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.RECON_STANCE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.RECON_STANCE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.RECON_STANCE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.RECOUP_LOSSES\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.RECOUP_LOSSES\",\"documentation\":\"ABILITY.WEST_GERMAN.RECOUP_LOSSES\",\"detail\":\"ABILITY.WEST_GERMAN.RECOUP_LOSSES\"},{\"id\":\"ABILITY.WEST_GERMAN.REFUEL_TANK_WG_SP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.REFUEL_TANK_WG_SP\",\"documentation\":\"ABILITY.WEST_GERMAN.REFUEL_TANK_WG_SP\",\"detail\":\"ABILITY.WEST_GERMAN.REFUEL_TANK_WG_SP\"},{\"id\":\"ABILITY.WEST_GERMAN.ROCKET_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.ROCKET_BARRAGE\",\"documentation\":\"ABILITY.WEST_GERMAN.ROCKET_BARRAGE\",\"detail\":\"ABILITY.WEST_GERMAN.ROCKET_BARRAGE\"},{\"id\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_DEFENS\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_DEFENS\",\"documentation\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_DEFENS\",\"detail\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_DEFENS\"},{\"id\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_WEAPON\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_WEAPON\",\"documentation\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_WEAPON\",\"detail\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_WEAPON\"},{\"id\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_WEAPON_VET\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_WEAPON_VET\",\"documentation\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_WEAPON_VET\",\"detail\":\"ABILITY.WEST_GERMAN.SDKFZ_251_17_FLAK_HALFTRACK_DEPLOY_WEAPON_VET\"},{\"id\":\"ABILITY.WEST_GERMAN.SIGNAL_FLAGS\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SIGNAL_FLAGS\",\"documentation\":\"ABILITY.WEST_GERMAN.SIGNAL_FLAGS\",\"detail\":\"ABILITY.WEST_GERMAN.SIGNAL_FLAGS\"},{\"id\":\"ABILITY.WEST_GERMAN.SIPHON_INCREASE_RESOURCES_ADVANCED_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SIPHON_INCREASE_RESOURCES_ADVANCED_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.SIPHON_INCREASE_RESOURCES_ADVANCED_MP\",\"detail\":\"ABILITY.WEST_GERMAN.SIPHON_INCREASE_RESOURCES_ADVANCED_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.SIPHON_INCREASE_RESOURCES_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SIPHON_INCREASE_RESOURCES_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.SIPHON_INCREASE_RESOURCES_MP\",\"detail\":\"ABILITY.WEST_GERMAN.SIPHON_INCREASE_RESOURCES_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.SPEARHEAD_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SPEARHEAD_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.SPEARHEAD_MP\",\"detail\":\"ABILITY.WEST_GERMAN.SPEARHEAD_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.STALKER_STATE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.STALKER_STATE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.STALKER_STATE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.STALKER_STATE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.STURMTIGER_380MM_ROCKET_ATTACK\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.STURMTIGER_380MM_ROCKET_ATTACK\",\"documentation\":\"ABILITY.WEST_GERMAN.STURMTIGER_380MM_ROCKET_ATTACK\",\"detail\":\"ABILITY.WEST_GERMAN.STURMTIGER_380MM_ROCKET_ATTACK\"},{\"id\":\"ABILITY.WEST_GERMAN.STURMTIGER_380MM_ROCKET_RELOAD\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.STURMTIGER_380MM_ROCKET_RELOAD\",\"documentation\":\"ABILITY.WEST_GERMAN.STURMTIGER_380MM_ROCKET_RELOAD\",\"detail\":\"ABILITY.WEST_GERMAN.STURMTIGER_380MM_ROCKET_RELOAD\"},{\"id\":\"ABILITY.WEST_GERMAN.STURMTIGER_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.STURMTIGER_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.STURMTIGER_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.STURMTIGER_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.STURMTIGER_NAHVW_CLOSE_RANGE_GRENADE_TARGETED\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.STURMTIGER_NAHVW_CLOSE_RANGE_GRENADE_TARGETED\",\"documentation\":\"ABILITY.WEST_GERMAN.STURMTIGER_NAHVW_CLOSE_RANGE_GRENADE_TARGETED\",\"detail\":\"ABILITY.WEST_GERMAN.STURMTIGER_NAHVW_CLOSE_RANGE_GRENADE_TARGETED\"},{\"id\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_GAIN_RESOURCECS\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_GAIN_RESOURCECS\",\"documentation\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_GAIN_RESOURCECS\",\"detail\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_GAIN_RESOURCECS\"},{\"id\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_TARGET_SETUP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_TARGET_SETUP\",\"documentation\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_TARGET_SETUP\",\"detail\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_TARGET_SETUP\"},{\"id\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_TARGET_UNSETUP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_TARGET_UNSETUP\",\"documentation\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_TARGET_UNSETUP\",\"detail\":\"ABILITY.WEST_GERMAN.SUPPORT_TRUCK_TARGET_UNSETUP\"},{\"id\":\"ABILITY.WEST_GERMAN.SUPPRESSIVE_FIRE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SUPPRESSIVE_FIRE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.SUPPRESSIVE_FIRE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.SUPPRESSIVE_FIRE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_FORWARD_RECEIVERS\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_FORWARD_RECEIVERS\",\"documentation\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_FORWARD_RECEIVERS\",\"detail\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_FORWARD_RECEIVERS\"},{\"id\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_INTERVAL_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_INTERVAL_DISPATCH\",\"documentation\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_INTERVAL_DISPATCH\",\"detail\":\"ABILITY.WEST_GERMAN.SWS_HALFTRACK_INTERVAL_DISPATCH\"},{\"id\":\"ABILITY.WEST_GERMAN.TANK_COMMANDER_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.TANK_COMMANDER_UNLOCK\",\"documentation\":\"ABILITY.WEST_GERMAN.TANK_COMMANDER_UNLOCK\",\"detail\":\"ABILITY.WEST_GERMAN.TANK_COMMANDER_UNLOCK\"},{\"id\":\"ABILITY.WEST_GERMAN.TANK_THROW_DEFENSIVE_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.TANK_THROW_DEFENSIVE_GRENADE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.TANK_THROW_DEFENSIVE_GRENADE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.TANK_THROW_DEFENSIVE_GRENADE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.TANK_THROW_DEFENSIVE_GRENADE_UNLOCK_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.TANK_THROW_DEFENSIVE_GRENADE_UNLOCK_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.TANK_THROW_DEFENSIVE_GRENADE_UNLOCK_MP\",\"detail\":\"ABILITY.WEST_GERMAN.TANK_THROW_DEFENSIVE_GRENADE_UNLOCK_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER\",\"documentation\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER\",\"detail\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER\"},{\"id\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER_FORCE_RETREAT\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER_FORCE_RETREAT\",\"documentation\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER_FORCE_RETREAT\",\"detail\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER_FORCE_RETREAT\"},{\"id\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER_MARK_TARGET\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER_MARK_TARGET\",\"documentation\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER_MARK_TARGET\",\"detail\":\"ABILITY.WEST_GERMAN.TERROR_OFFICER_MARK_TARGET\"},{\"id\":\"ABILITY.WEST_GERMAN.THROUGH_SALVAGE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.THROUGH_SALVAGE\",\"documentation\":\"ABILITY.WEST_GERMAN.THROUGH_SALVAGE\",\"detail\":\"ABILITY.WEST_GERMAN.THROUGH_SALVAGE\"},{\"id\":\"ABILITY.WEST_GERMAN.TIGER_PROWL_JAGDPANZER_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.TIGER_PROWL_JAGDPANZER_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.TIGER_PROWL_JAGDPANZER_MP\",\"detail\":\"ABILITY.WEST_GERMAN.TIGER_PROWL_JAGDPANZER_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.TIGER_PROWL_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.TIGER_PROWL_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.TIGER_PROWL_MP\",\"detail\":\"ABILITY.WEST_GERMAN.TIGER_PROWL_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"documentation\":\"ABILITY.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"detail\":\"ABILITY.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\"},{\"id\":\"ABILITY.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY_THROW_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY_THROW_ABILITY_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY_THROW_ABILITY_MP\",\"detail\":\"ABILITY.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY_THROW_ABILITY_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.VALIANT_ASSAULT\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.VALIANT_ASSAULT\",\"documentation\":\"ABILITY.WEST_GERMAN.VALIANT_ASSAULT\",\"detail\":\"ABILITY.WEST_GERMAN.VALIANT_ASSAULT\"},{\"id\":\"ABILITY.WEST_GERMAN.VEHICLE_CRITICAL_REPAIR_UNLOCK\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.VEHICLE_CRITICAL_REPAIR_UNLOCK\",\"documentation\":\"ABILITY.WEST_GERMAN.VEHICLE_CRITICAL_REPAIR_UNLOCK\",\"detail\":\"ABILITY.WEST_GERMAN.VEHICLE_CRITICAL_REPAIR_UNLOCK\"},{\"id\":\"ABILITY.WEST_GERMAN.VEHICLE_EMERGENCY_REPAIR_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.VEHICLE_EMERGENCY_REPAIR_ABILITY_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.VEHICLE_EMERGENCY_REPAIR_ABILITY_MP\",\"detail\":\"ABILITY.WEST_GERMAN.VEHICLE_EMERGENCY_REPAIR_ABILITY_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.VEHICLE_EMERGENCY_REPAIR_ABILITY_SWS_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.VEHICLE_EMERGENCY_REPAIR_ABILITY_SWS_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.VEHICLE_EMERGENCY_REPAIR_ABILITY_SWS_MP\",\"detail\":\"ABILITY.WEST_GERMAN.VEHICLE_EMERGENCY_REPAIR_ABILITY_SWS_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.VOLKS_PANZERFAUST_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.VOLKS_PANZERFAUST_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.VOLKS_PANZERFAUST_MP\",\"detail\":\"ABILITY.WEST_GERMAN.VOLKS_PANZERFAUST_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_FIRE_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_FIRE_GRENADE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_FIRE_GRENADE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_FIRE_GRENADE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_GRENADE_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_GRENADE_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_GRENADE_MP\",\"detail\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_GRENADE_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_PANZERFAUST_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_PANZERFAUST_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_PANZERFAUST_MP\",\"detail\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_PANZERFAUST_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_PANZERFAUST_VET_4_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_PANZERFAUST_VET_4_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_PANZERFAUST_VET_4_MP\",\"detail\":\"ABILITY.WEST_GERMAN.VOLKSGRENADIER_PANZERFAUST_VET_4_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.WAFFEN_BOOBY_TRAP_CAPTURE_POINT\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.WAFFEN_BOOBY_TRAP_CAPTURE_POINT\",\"documentation\":\"ABILITY.WEST_GERMAN.WAFFEN_BOOBY_TRAP_CAPTURE_POINT\",\"detail\":\"ABILITY.WEST_GERMAN.WAFFEN_BOOBY_TRAP_CAPTURE_POINT\"},{\"id\":\"ABILITY.WEST_GERMAN.WAFFEN_ELITE_BUNDLED_ASSAULT_GRENADE\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.WAFFEN_ELITE_BUNDLED_ASSAULT_GRENADE\",\"documentation\":\"ABILITY.WEST_GERMAN.WAFFEN_ELITE_BUNDLED_ASSAULT_GRENADE\",\"detail\":\"ABILITY.WEST_GERMAN.WAFFEN_ELITE_BUNDLED_ASSAULT_GRENADE\"},{\"id\":\"ABILITY.WEST_GERMAN.WALKING_STUKA_ROCKET_BARRAGE_CREEPING_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.WALKING_STUKA_ROCKET_BARRAGE_CREEPING_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.WALKING_STUKA_ROCKET_BARRAGE_CREEPING_MP\",\"detail\":\"ABILITY.WEST_GERMAN.WALKING_STUKA_ROCKET_BARRAGE_CREEPING_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.WALKING_STUKA_ROCKET_BARRAGE_CREEPING_NAPALM_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.WALKING_STUKA_ROCKET_BARRAGE_CREEPING_NAPALM_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.WALKING_STUKA_ROCKET_BARRAGE_CREEPING_NAPALM_MP\",\"detail\":\"ABILITY.WEST_GERMAN.WALKING_STUKA_ROCKET_BARRAGE_CREEPING_NAPALM_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.WEST_GERMAN_REPAIR_ABILITY_MP\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.WEST_GERMAN_REPAIR_ABILITY_MP\",\"documentation\":\"ABILITY.WEST_GERMAN.WEST_GERMAN_REPAIR_ABILITY_MP\",\"detail\":\"ABILITY.WEST_GERMAN.WEST_GERMAN_REPAIR_ABILITY_MP\"},{\"id\":\"ABILITY.WEST_GERMAN.WG_HQ_PIONEER_CALL_IN\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.WG_HQ_PIONEER_CALL_IN\",\"documentation\":\"ABILITY.WEST_GERMAN.WG_HQ_PIONEER_CALL_IN\",\"detail\":\"ABILITY.WEST_GERMAN.WG_HQ_PIONEER_CALL_IN\"},{\"id\":\"ABILITY.WEST_GERMAN.ZEROING_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.WEST_GERMAN.ZEROING_ARTILLERY\",\"documentation\":\"ABILITY.WEST_GERMAN.ZEROING_ARTILLERY\",\"detail\":\"ABILITY.WEST_GERMAN.ZEROING_ARTILLERY\"},{\"id\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_STURMTIGER_NOT_RELOADED\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_STURMTIGER_NOT_RELOADED\",\"documentation\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_STURMTIGER_NOT_RELOADED\",\"detail\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_STURMTIGER_NOT_RELOADED\"},{\"id\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_STURMTIGER_RELOADING\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_STURMTIGER_RELOADING\",\"documentation\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_STURMTIGER_RELOADING\",\"detail\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_STURMTIGER_RELOADING\"},{\"id\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_SWS_TRUCK\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_SWS_TRUCK\",\"documentation\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_SWS_TRUCK\",\"detail\":\"UPG.WEST_GERMAN.ABILITY_LOCK_OUT_SWS_TRUCK\"},{\"id\":\"UPG.WEST_GERMAN.ADVANCED_SIPHON\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.ADVANCED_SIPHON\",\"documentation\":\"UPG.WEST_GERMAN.ADVANCED_SIPHON\",\"detail\":\"UPG.WEST_GERMAN.ADVANCED_SIPHON\"},{\"id\":\"UPG.WEST_GERMAN.AERIAL_SUPERIORITY_STUKA_RECON_PLANE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.AERIAL_SUPERIORITY_STUKA_RECON_PLANE\",\"documentation\":\"UPG.WEST_GERMAN.AERIAL_SUPERIORITY_STUKA_RECON_PLANE\",\"detail\":\"UPG.WEST_GERMAN.AERIAL_SUPERIORITY_STUKA_RECON_PLANE\"},{\"id\":\"UPG.WEST_GERMAN.AIRBORNE_ASSAULT\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.AIRBORNE_ASSAULT\",\"documentation\":\"UPG.WEST_GERMAN.AIRBORNE_ASSAULT\",\"detail\":\"UPG.WEST_GERMAN.AIRBORNE_ASSAULT\"},{\"id\":\"UPG.WEST_GERMAN.ASSAULT_ARTILLERY\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.ASSAULT_ARTILLERY\",\"documentation\":\"UPG.WEST_GERMAN.ASSAULT_ARTILLERY\",\"detail\":\"UPG.WEST_GERMAN.ASSAULT_ARTILLERY\"},{\"id\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_COMBAT_UPGRADE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_COMBAT_UPGRADE\",\"documentation\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_COMBAT_UPGRADE\",\"detail\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_COMBAT_UPGRADE\"},{\"id\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_PANZERSCHRECK_UPGRADE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_PANZERSCHRECK_UPGRADE\",\"documentation\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_PANZERSCHRECK_UPGRADE\",\"detail\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_PANZERSCHRECK_UPGRADE\"},{\"id\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_REPAIR_UPGRADE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_REPAIR_UPGRADE\",\"documentation\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_REPAIR_UPGRADE\",\"detail\":\"UPG.WEST_GERMAN.ASSAULT_PIONEER_REPAIR_UPGRADE\"},{\"id\":\"UPG.WEST_GERMAN.BREAKTHROUGH_2\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.BREAKTHROUGH_2\",\"documentation\":\"UPG.WEST_GERMAN.BREAKTHROUGH_2\",\"detail\":\"UPG.WEST_GERMAN.BREAKTHROUGH_2\"},{\"id\":\"UPG.WEST_GERMAN.BREAKTHROUGH_TACTICS\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.BREAKTHROUGH_TACTICS\",\"documentation\":\"UPG.WEST_GERMAN.BREAKTHROUGH_TACTICS\",\"detail\":\"UPG.WEST_GERMAN.BREAKTHROUGH_TACTICS\"},{\"id\":\"UPG.WEST_GERMAN.BUILDING_1\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.BUILDING_1\",\"documentation\":\"UPG.WEST_GERMAN.BUILDING_1\",\"detail\":\"UPG.WEST_GERMAN.BUILDING_1\"},{\"id\":\"UPG.WEST_GERMAN.BUILDING_2\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.BUILDING_2\",\"documentation\":\"UPG.WEST_GERMAN.BUILDING_2\",\"detail\":\"UPG.WEST_GERMAN.BUILDING_2\"},{\"id\":\"UPG.WEST_GERMAN.BUILDING_3\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.BUILDING_3\",\"documentation\":\"UPG.WEST_GERMAN.BUILDING_3\",\"detail\":\"UPG.WEST_GERMAN.BUILDING_3\"},{\"id\":\"UPG.WEST_GERMAN.COMMAND_PANTHER\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.COMMAND_PANTHER\",\"documentation\":\"UPG.WEST_GERMAN.COMMAND_PANTHER\",\"detail\":\"UPG.WEST_GERMAN.COMMAND_PANTHER\"},{\"id\":\"UPG.WEST_GERMAN.COMMAND_ROYAL_TIGER_DISPATCH\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.COMMAND_ROYAL_TIGER_DISPATCH\",\"documentation\":\"UPG.WEST_GERMAN.COMMAND_ROYAL_TIGER_DISPATCH\",\"detail\":\"UPG.WEST_GERMAN.COMMAND_ROYAL_TIGER_DISPATCH\"},{\"id\":\"UPG.WEST_GERMAN.CONSTRUCT_BASE_BUILDING_UPGRADE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.CONSTRUCT_BASE_BUILDING_UPGRADE\",\"documentation\":\"UPG.WEST_GERMAN.CONSTRUCT_BASE_BUILDING_UPGRADE\",\"detail\":\"UPG.WEST_GERMAN.CONSTRUCT_BASE_BUILDING_UPGRADE\"},{\"id\":\"UPG.WEST_GERMAN.FALLSCHRIMJAGER_DISPATCH\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.FALLSCHRIMJAGER_DISPATCH\",\"documentation\":\"UPG.WEST_GERMAN.FALLSCHRIMJAGER_DISPATCH\",\"detail\":\"UPG.WEST_GERMAN.FALLSCHRIMJAGER_DISPATCH\"},{\"id\":\"UPG.WEST_GERMAN.FIELD_DEFENSES\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.FIELD_DEFENSES\",\"documentation\":\"UPG.WEST_GERMAN.FIELD_DEFENSES\",\"detail\":\"UPG.WEST_GERMAN.FIELD_DEFENSES\"},{\"id\":\"UPG.WEST_GERMAN.FIRST_SWS_HALFTRACK_LOCKOUT\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.FIRST_SWS_HALFTRACK_LOCKOUT\",\"documentation\":\"UPG.WEST_GERMAN.FIRST_SWS_HALFTRACK_LOCKOUT\",\"detail\":\"UPG.WEST_GERMAN.FIRST_SWS_HALFTRACK_LOCKOUT\"},{\"id\":\"UPG.WEST_GERMAN.FLAK_GUN_UNLOCK_UPGRADE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.FLAK_GUN_UNLOCK_UPGRADE\",\"documentation\":\"UPG.WEST_GERMAN.FLAK_GUN_UNLOCK_UPGRADE\",\"detail\":\"UPG.WEST_GERMAN.FLAK_GUN_UNLOCK_UPGRADE\"},{\"id\":\"UPG.WEST_GERMAN.FLAK_PANZER_DEFENSIVES\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.FLAK_PANZER_DEFENSIVES\",\"documentation\":\"UPG.WEST_GERMAN.FLAK_PANZER_DEFENSIVES\",\"detail\":\"UPG.WEST_GERMAN.FLAK_PANZER_DEFENSIVES\"},{\"id\":\"UPG.WEST_GERMAN.FLAK_PANZER_IS_SETUP\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.FLAK_PANZER_IS_SETUP\",\"documentation\":\"UPG.WEST_GERMAN.FLAK_PANZER_IS_SETUP\",\"detail\":\"UPG.WEST_GERMAN.FLAK_PANZER_IS_SETUP\"},{\"id\":\"UPG.WEST_GERMAN.FLAME_HALFTRACK_DISPATCH\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.FLAME_HALFTRACK_DISPATCH\",\"documentation\":\"UPG.WEST_GERMAN.FLAME_HALFTRACK_DISPATCH\",\"detail\":\"UPG.WEST_GERMAN.FLAME_HALFTRACK_DISPATCH\"},{\"id\":\"UPG.WEST_GERMAN.FLAMMPANZER_38T_HETZER\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.FLAMMPANZER_38T_HETZER\",\"documentation\":\"UPG.WEST_GERMAN.FLAMMPANZER_38T_HETZER\",\"detail\":\"UPG.WEST_GERMAN.FLAMMPANZER_38T_HETZER\"},{\"id\":\"UPG.WEST_GERMAN.FLARE_ARTILLERY\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.FLARE_ARTILLERY\",\"documentation\":\"UPG.WEST_GERMAN.FLARE_ARTILLERY\",\"detail\":\"UPG.WEST_GERMAN.FLARE_ARTILLERY\"},{\"id\":\"UPG.WEST_GERMAN.FOR_THE_FATHER_LAND\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.FOR_THE_FATHER_LAND\",\"documentation\":\"UPG.WEST_GERMAN.FOR_THE_FATHER_LAND\",\"detail\":\"UPG.WEST_GERMAN.FOR_THE_FATHER_LAND\"},{\"id\":\"UPG.WEST_GERMAN.FORWARD_RECIEVERS\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.FORWARD_RECIEVERS\",\"documentation\":\"UPG.WEST_GERMAN.FORWARD_RECIEVERS\",\"detail\":\"UPG.WEST_GERMAN.FORWARD_RECIEVERS\"},{\"id\":\"UPG.WEST_GERMAN.GOLIATH_REMOTE_CONTROLLED_BOMB\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.GOLIATH_REMOTE_CONTROLLED_BOMB\",\"documentation\":\"UPG.WEST_GERMAN.GOLIATH_REMOTE_CONTROLLED_BOMB\",\"detail\":\"UPG.WEST_GERMAN.GOLIATH_REMOTE_CONTROLLED_BOMB\"},{\"id\":\"UPG.WEST_GERMAN.HEALING_POINT_UNLOCK_UPGRADE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.HEALING_POINT_UNLOCK_UPGRADE\",\"documentation\":\"UPG.WEST_GERMAN.HEALING_POINT_UNLOCK_UPGRADE\",\"detail\":\"UPG.WEST_GERMAN.HEALING_POINT_UNLOCK_UPGRADE\"},{\"id\":\"UPG.WEST_GERMAN.HEAT_SHELLS\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.HEAT_SHELLS\",\"documentation\":\"UPG.WEST_GERMAN.HEAT_SHELLS\",\"detail\":\"UPG.WEST_GERMAN.HEAT_SHELLS\"},{\"id\":\"UPG.WEST_GERMAN.HEAVY_FORTIFICATIONS\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.HEAVY_FORTIFICATIONS\",\"documentation\":\"UPG.WEST_GERMAN.HEAVY_FORTIFICATIONS\",\"detail\":\"UPG.WEST_GERMAN.HEAVY_FORTIFICATIONS\"},{\"id\":\"UPG.WEST_GERMAN.HOWITZER_105MM_EMPLACEMENT_OKW\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.HOWITZER_105MM_EMPLACEMENT_OKW\",\"documentation\":\"UPG.WEST_GERMAN.HOWITZER_105MM_EMPLACEMENT_OKW\",\"detail\":\"UPG.WEST_GERMAN.HOWITZER_105MM_EMPLACEMENT_OKW\"},{\"id\":\"UPG.WEST_GERMAN.HOWITZER_105MM_OFFMAP_BARRAGE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.HOWITZER_105MM_OFFMAP_BARRAGE\",\"documentation\":\"UPG.WEST_GERMAN.HOWITZER_105MM_OFFMAP_BARRAGE\",\"detail\":\"UPG.WEST_GERMAN.HOWITZER_105MM_OFFMAP_BARRAGE\"},{\"id\":\"UPG.WEST_GERMAN.INFILTRATION_TACTICS\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.INFILTRATION_TACTICS\",\"documentation\":\"UPG.WEST_GERMAN.INFILTRATION_TACTICS\",\"detail\":\"UPG.WEST_GERMAN.INFILTRATION_TACTICS\"},{\"id\":\"UPG.WEST_GERMAN.INFRARED_STG44\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.INFRARED_STG44\",\"documentation\":\"UPG.WEST_GERMAN.INFRARED_STG44\",\"detail\":\"UPG.WEST_GERMAN.INFRARED_STG44\"},{\"id\":\"UPG.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_DISPATCH\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_DISPATCH\",\"documentation\":\"UPG.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_DISPATCH\",\"detail\":\"UPG.WEST_GERMAN.JAEGER_LIGHT_INFANTRY_RECON_DISPATCH\"},{\"id\":\"UPG.WEST_GERMAN.JAGDTIGER\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.JAGDTIGER\",\"documentation\":\"UPG.WEST_GERMAN.JAGDTIGER\",\"detail\":\"UPG.WEST_GERMAN.JAGDTIGER\"},{\"id\":\"UPG.WEST_GERMAN.JAGDTIGER_ABILITY_AP_LOCK_OUT\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.JAGDTIGER_ABILITY_AP_LOCK_OUT\",\"documentation\":\"UPG.WEST_GERMAN.JAGDTIGER_ABILITY_AP_LOCK_OUT\",\"detail\":\"UPG.WEST_GERMAN.JAGDTIGER_ABILITY_AP_LOCK_OUT\"},{\"id\":\"UPG.WEST_GERMAN.JAGDTIGER_ABILITY_BARRAGE_LOCK_OUT\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.JAGDTIGER_ABILITY_BARRAGE_LOCK_OUT\",\"documentation\":\"UPG.WEST_GERMAN.JAGDTIGER_ABILITY_BARRAGE_LOCK_OUT\",\"detail\":\"UPG.WEST_GERMAN.JAGDTIGER_ABILITY_BARRAGE_LOCK_OUT\"},{\"id\":\"UPG.WEST_GERMAN.JAGDTIGER_ENGINE_IMPROVEMENTS_I_MP\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.JAGDTIGER_ENGINE_IMPROVEMENTS_I_MP\",\"documentation\":\"UPG.WEST_GERMAN.JAGDTIGER_ENGINE_IMPROVEMENTS_I_MP\",\"detail\":\"UPG.WEST_GERMAN.JAGDTIGER_ENGINE_IMPROVEMENTS_I_MP\"},{\"id\":\"UPG.WEST_GERMAN.KING_TIGER_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.KING_TIGER_TOP_GUNNER_MP\",\"documentation\":\"UPG.WEST_GERMAN.KING_TIGER_TOP_GUNNER_MP\",\"detail\":\"UPG.WEST_GERMAN.KING_TIGER_TOP_GUNNER_MP\"},{\"id\":\"UPG.WEST_GERMAN.MEDIC_HEALING_MP\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.MEDIC_HEALING_MP\",\"documentation\":\"UPG.WEST_GERMAN.MEDIC_HEALING_MP\",\"detail\":\"UPG.WEST_GERMAN.MEDIC_HEALING_MP\"},{\"id\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_0_USES_REMAINING\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_0_USES_REMAINING\",\"documentation\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_0_USES_REMAINING\",\"detail\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_0_USES_REMAINING\"},{\"id\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_1_USE_REMAINING\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_1_USE_REMAINING\",\"documentation\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_1_USE_REMAINING\",\"detail\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_1_USE_REMAINING\"},{\"id\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_2_USES_REMAINING\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_2_USES_REMAINING\",\"documentation\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_2_USES_REMAINING\",\"detail\":\"UPG.WEST_GERMAN.MEDICAL_SUPPLIES_2_USES_REMAINING\"},{\"id\":\"UPG.WEST_GERMAN.MG34_DISPATCH\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.MG34_DISPATCH\",\"documentation\":\"UPG.WEST_GERMAN.MG34_DISPATCH\",\"detail\":\"UPG.WEST_GERMAN.MG34_DISPATCH\"},{\"id\":\"UPG.WEST_GERMAN.OKW_SECTOR_ASSAULT\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.OKW_SECTOR_ASSAULT\",\"documentation\":\"UPG.WEST_GERMAN.OKW_SECTOR_ASSAULT\",\"detail\":\"UPG.WEST_GERMAN.OKW_SECTOR_ASSAULT\"},{\"id\":\"UPG.WEST_GERMAN.OSTWIND_DISPATCH\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.OSTWIND_DISPATCH\",\"documentation\":\"UPG.WEST_GERMAN.OSTWIND_DISPATCH\",\"detail\":\"UPG.WEST_GERMAN.OSTWIND_DISPATCH\"},{\"id\":\"UPG.WEST_GERMAN.PANZER_IV_GROUP_DISPATCH\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.PANZER_IV_GROUP_DISPATCH\",\"documentation\":\"UPG.WEST_GERMAN.PANZER_IV_GROUP_DISPATCH\",\"detail\":\"UPG.WEST_GERMAN.PANZER_IV_GROUP_DISPATCH\"},{\"id\":\"UPG.WEST_GERMAN.PANZER_IV_SIDE_SKIRTS_MP\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.PANZER_IV_SIDE_SKIRTS_MP\",\"documentation\":\"UPG.WEST_GERMAN.PANZER_IV_SIDE_SKIRTS_MP\",\"detail\":\"UPG.WEST_GERMAN.PANZER_IV_SIDE_SKIRTS_MP\"},{\"id\":\"UPG.WEST_GERMAN.PANZERFUSILER_DISPATCH\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.PANZERFUSILER_DISPATCH\",\"documentation\":\"UPG.WEST_GERMAN.PANZERFUSILER_DISPATCH\",\"detail\":\"UPG.WEST_GERMAN.PANZERFUSILER_DISPATCH\"},{\"id\":\"UPG.WEST_GERMAN.PANZERFUSILIER_G43\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.PANZERFUSILIER_G43\",\"documentation\":\"UPG.WEST_GERMAN.PANZERFUSILIER_G43\",\"detail\":\"UPG.WEST_GERMAN.PANZERFUSILIER_G43\"},{\"id\":\"UPG.WEST_GERMAN.PANZERSCHRECK_UNLOCKED\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.PANZERSCHRECK_UNLOCKED\",\"documentation\":\"UPG.WEST_GERMAN.PANZERSCHRECK_UNLOCKED\",\"detail\":\"UPG.WEST_GERMAN.PANZERSCHRECK_UNLOCKED\"},{\"id\":\"UPG.WEST_GERMAN.PYRO_VOLKS\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.PYRO_VOLKS\",\"documentation\":\"UPG.WEST_GERMAN.PYRO_VOLKS\",\"detail\":\"UPG.WEST_GERMAN.PYRO_VOLKS\"},{\"id\":\"UPG.WEST_GERMAN.RADIO_SILENCE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.RADIO_SILENCE\",\"documentation\":\"UPG.WEST_GERMAN.RADIO_SILENCE\",\"detail\":\"UPG.WEST_GERMAN.RADIO_SILENCE\"},{\"id\":\"UPG.WEST_GERMAN.RECOUP_ACTIVE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.RECOUP_ACTIVE\",\"documentation\":\"UPG.WEST_GERMAN.RECOUP_ACTIVE\",\"detail\":\"UPG.WEST_GERMAN.RECOUP_ACTIVE\"},{\"id\":\"UPG.WEST_GERMAN.RECOUP_LOSS\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.RECOUP_LOSS\",\"documentation\":\"UPG.WEST_GERMAN.RECOUP_LOSS\",\"detail\":\"UPG.WEST_GERMAN.RECOUP_LOSS\"},{\"id\":\"UPG.WEST_GERMAN.REPAIR_ENGINEERS_MP\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.REPAIR_ENGINEERS_MP\",\"documentation\":\"UPG.WEST_GERMAN.REPAIR_ENGINEERS_MP\",\"detail\":\"UPG.WEST_GERMAN.REPAIR_ENGINEERS_MP\"},{\"id\":\"UPG.WEST_GERMAN.REPAIR_POINT_UNLOCK_UPGRADE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.REPAIR_POINT_UNLOCK_UPGRADE\",\"documentation\":\"UPG.WEST_GERMAN.REPAIR_POINT_UNLOCK_UPGRADE\",\"detail\":\"UPG.WEST_GERMAN.REPAIR_POINT_UNLOCK_UPGRADE\"},{\"id\":\"UPG.WEST_GERMAN.RESOURCE_POINT_SIPHON\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.RESOURCE_POINT_SIPHON\",\"documentation\":\"UPG.WEST_GERMAN.RESOURCE_POINT_SIPHON\",\"detail\":\"UPG.WEST_GERMAN.RESOURCE_POINT_SIPHON\"},{\"id\":\"UPG.WEST_GERMAN.RETREAT_POINT_UNLOCK_UPGRADE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.RETREAT_POINT_UNLOCK_UPGRADE\",\"documentation\":\"UPG.WEST_GERMAN.RETREAT_POINT_UNLOCK_UPGRADE\",\"detail\":\"UPG.WEST_GERMAN.RETREAT_POINT_UNLOCK_UPGRADE\"},{\"id\":\"UPG.WEST_GERMAN.ROCKET_BARRAGE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.ROCKET_BARRAGE\",\"documentation\":\"UPG.WEST_GERMAN.ROCKET_BARRAGE\",\"detail\":\"UPG.WEST_GERMAN.ROCKET_BARRAGE\"},{\"id\":\"UPG.WEST_GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE_MP_2\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE_MP_2\",\"documentation\":\"UPG.WEST_GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE_MP_2\",\"detail\":\"UPG.WEST_GERMAN.SDKFZ_251_HALFTRACK_FLAMMPANZERWAGEN_UPGRADE_MP_2\"},{\"id\":\"UPG.WEST_GERMAN.SIGNAL_FLAGS\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.SIGNAL_FLAGS\",\"documentation\":\"UPG.WEST_GERMAN.SIGNAL_FLAGS\",\"detail\":\"UPG.WEST_GERMAN.SIGNAL_FLAGS\"},{\"id\":\"UPG.WEST_GERMAN.SIPHON_LOCK_OUT\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.SIPHON_LOCK_OUT\",\"documentation\":\"UPG.WEST_GERMAN.SIPHON_LOCK_OUT\",\"detail\":\"UPG.WEST_GERMAN.SIPHON_LOCK_OUT\"},{\"id\":\"UPG.WEST_GERMAN.STURMTIGER_DISPATCH\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.STURMTIGER_DISPATCH\",\"documentation\":\"UPG.WEST_GERMAN.STURMTIGER_DISPATCH\",\"detail\":\"UPG.WEST_GERMAN.STURMTIGER_DISPATCH\"},{\"id\":\"UPG.WEST_GERMAN.SWS_INTERVAL_UNLOCK\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.SWS_INTERVAL_UNLOCK\",\"documentation\":\"UPG.WEST_GERMAN.SWS_INTERVAL_UNLOCK\",\"detail\":\"UPG.WEST_GERMAN.SWS_INTERVAL_UNLOCK\"},{\"id\":\"UPG.WEST_GERMAN.SWS_STARTING_DISPATCH_UNLOCK\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.SWS_STARTING_DISPATCH_UNLOCK\",\"documentation\":\"UPG.WEST_GERMAN.SWS_STARTING_DISPATCH_UNLOCK\",\"detail\":\"UPG.WEST_GERMAN.SWS_STARTING_DISPATCH_UNLOCK\"},{\"id\":\"UPG.WEST_GERMAN.TANK_COMMANDER\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.TANK_COMMANDER\",\"documentation\":\"UPG.WEST_GERMAN.TANK_COMMANDER\",\"detail\":\"UPG.WEST_GERMAN.TANK_COMMANDER\"},{\"id\":\"UPG.WEST_GERMAN.TANK_COMMANDER_UNLOCK\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.TANK_COMMANDER_UNLOCK\",\"documentation\":\"UPG.WEST_GERMAN.TANK_COMMANDER_UNLOCK\",\"detail\":\"UPG.WEST_GERMAN.TANK_COMMANDER_UNLOCK\"},{\"id\":\"UPG.WEST_GERMAN.TANK_GRENADE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.TANK_GRENADE\",\"documentation\":\"UPG.WEST_GERMAN.TANK_GRENADE\",\"detail\":\"UPG.WEST_GERMAN.TANK_GRENADE\"},{\"id\":\"UPG.WEST_GERMAN.TERROR_OFFICER\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.TERROR_OFFICER\",\"documentation\":\"UPG.WEST_GERMAN.TERROR_OFFICER\",\"detail\":\"UPG.WEST_GERMAN.TERROR_OFFICER\"},{\"id\":\"UPG.WEST_GERMAN.THROUGH_SALVAGE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.THROUGH_SALVAGE\",\"documentation\":\"UPG.WEST_GERMAN.THROUGH_SALVAGE\",\"detail\":\"UPG.WEST_GERMAN.THROUGH_SALVAGE\"},{\"id\":\"UPG.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"documentation\":\"UPG.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\",\"detail\":\"UPG.WEST_GERMAN.URBAN_ASSAULT_LIGHT_INFANTRY\"},{\"id\":\"UPG.WEST_GERMAN.VALIANT_ASSAULT\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.VALIANT_ASSAULT\",\"documentation\":\"UPG.WEST_GERMAN.VALIANT_ASSAULT\",\"detail\":\"UPG.WEST_GERMAN.VALIANT_ASSAULT\"},{\"id\":\"UPG.WEST_GERMAN.VEHICLE_CRITICAL_REPAIR\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.VEHICLE_CRITICAL_REPAIR\",\"documentation\":\"UPG.WEST_GERMAN.VEHICLE_CRITICAL_REPAIR\",\"detail\":\"UPG.WEST_GERMAN.VEHICLE_CRITICAL_REPAIR\"},{\"id\":\"UPG.WEST_GERMAN.VOLKS_FLAMETHROWER_MP\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.VOLKS_FLAMETHROWER_MP\",\"documentation\":\"UPG.WEST_GERMAN.VOLKS_FLAMETHROWER_MP\",\"detail\":\"UPG.WEST_GERMAN.VOLKS_FLAMETHROWER_MP\"},{\"id\":\"UPG.WEST_GERMAN.VOLKS_STG44_UPGRADE\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.VOLKS_STG44_UPGRADE\",\"documentation\":\"UPG.WEST_GERMAN.VOLKS_STG44_UPGRADE\",\"detail\":\"UPG.WEST_GERMAN.VOLKS_STG44_UPGRADE\"},{\"id\":\"UPG.WEST_GERMAN.WAFFEN_INFRARED_STG44\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.WAFFEN_INFRARED_STG44\",\"documentation\":\"UPG.WEST_GERMAN.WAFFEN_INFRARED_STG44\",\"detail\":\"UPG.WEST_GERMAN.WAFFEN_INFRARED_STG44\"},{\"id\":\"UPG.WEST_GERMAN.WAFFEN_MG34_LMG_MP\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.WAFFEN_MG34_LMG_MP\",\"documentation\":\"UPG.WEST_GERMAN.WAFFEN_MG34_LMG_MP\",\"detail\":\"UPG.WEST_GERMAN.WAFFEN_MG34_LMG_MP\"},{\"id\":\"UPG.WEST_GERMAN.WARNING_FLARES\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.WARNING_FLARES\",\"documentation\":\"UPG.WEST_GERMAN.WARNING_FLARES\",\"detail\":\"UPG.WEST_GERMAN.WARNING_FLARES\"},{\"id\":\"UPG.WEST_GERMAN.WG_HETZER_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.WG_HETZER_TOP_GUNNER_MP\",\"documentation\":\"UPG.WEST_GERMAN.WG_HETZER_TOP_GUNNER_MP\",\"detail\":\"UPG.WEST_GERMAN.WG_HETZER_TOP_GUNNER_MP\"},{\"id\":\"UPG.WEST_GERMAN.WG_PANTHER_TOP_GUNNER_MP\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.WG_PANTHER_TOP_GUNNER_MP\",\"documentation\":\"UPG.WEST_GERMAN.WG_PANTHER_TOP_GUNNER_MP\",\"detail\":\"UPG.WEST_GERMAN.WG_PANTHER_TOP_GUNNER_MP\"},{\"id\":\"UPG.WEST_GERMAN.ZEROING_ARTILLERY\",\"kind\":17,\"label\":\"UPG.WEST_GERMAN.ZEROING_ARTILLERY\",\"documentation\":\"UPG.WEST_GERMAN.ZEROING_ARTILLERY\",\"detail\":\"UPG.WEST_GERMAN.ZEROING_ARTILLERY\"},{\"id\":\"ABILITY.GLOBAL.ARMY_ITEM_GLOBAL_COVER_TRAINING\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.ARMY_ITEM_GLOBAL_COVER_TRAINING\",\"documentation\":\"ABILITY.GLOBAL.ARMY_ITEM_GLOBAL_COVER_TRAINING\",\"detail\":\"ABILITY.GLOBAL.ARMY_ITEM_GLOBAL_COVER_TRAINING\"},{\"id\":\"ABILITY.GLOBAL.ARMY_ITEM_SOVIET_NOT_GONNA_DIE_LIKE_THIS\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.ARMY_ITEM_SOVIET_NOT_GONNA_DIE_LIKE_THIS\",\"documentation\":\"ABILITY.GLOBAL.ARMY_ITEM_SOVIET_NOT_GONNA_DIE_LIKE_THIS\",\"detail\":\"ABILITY.GLOBAL.ARMY_ITEM_SOVIET_NOT_GONNA_DIE_LIKE_THIS\"},{\"id\":\"ABILITY.GLOBAL.AT_76MM_SINGLE_SHOT_ACCURATE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.AT_76MM_SINGLE_SHOT_ACCURATE\",\"documentation\":\"ABILITY.GLOBAL.AT_76MM_SINGLE_SHOT_ACCURATE\",\"detail\":\"ABILITY.GLOBAL.AT_76MM_SINGLE_SHOT_ACCURATE\"},{\"id\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT\",\"documentation\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT\",\"detail\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT\"},{\"id\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_DEEP_SNOW_CAMO\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_DEEP_SNOW_CAMO\",\"documentation\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_DEEP_SNOW_CAMO\",\"detail\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_DEEP_SNOW_CAMO\"},{\"id\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_MORTARS\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_MORTARS\",\"documentation\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_MORTARS\",\"detail\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_MORTARS\"},{\"id\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_VEHICLE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_VEHICLE\",\"documentation\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_VEHICLE\",\"detail\":\"ABILITY.GLOBAL.BLIZZARD_EFFECT_VEHICLE\"},{\"id\":\"ABILITY.GLOBAL.BLIZZARD_HOWITZER\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BLIZZARD_HOWITZER\",\"documentation\":\"ABILITY.GLOBAL.BLIZZARD_HOWITZER\",\"detail\":\"ABILITY.GLOBAL.BLIZZARD_HOWITZER\"},{\"id\":\"ABILITY.GLOBAL.BONUS_0\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BONUS_0\",\"documentation\":\"ABILITY.GLOBAL.BONUS_0\",\"detail\":\"ABILITY.GLOBAL.BONUS_0\"},{\"id\":\"ABILITY.GLOBAL.BONUS_1\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BONUS_1\",\"documentation\":\"ABILITY.GLOBAL.BONUS_1\",\"detail\":\"ABILITY.GLOBAL.BONUS_1\"},{\"id\":\"ABILITY.GLOBAL.BONUS_2\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BONUS_2\",\"documentation\":\"ABILITY.GLOBAL.BONUS_2\",\"detail\":\"ABILITY.GLOBAL.BONUS_2\"},{\"id\":\"ABILITY.GLOBAL.BONUS_2B\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BONUS_2B\",\"documentation\":\"ABILITY.GLOBAL.BONUS_2B\",\"detail\":\"ABILITY.GLOBAL.BONUS_2B\"},{\"id\":\"ABILITY.GLOBAL.BONUS_3\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BONUS_3\",\"documentation\":\"ABILITY.GLOBAL.BONUS_3\",\"detail\":\"ABILITY.GLOBAL.BONUS_3\"},{\"id\":\"ABILITY.GLOBAL.BONUS_3B\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BONUS_3B\",\"documentation\":\"ABILITY.GLOBAL.BONUS_3B\",\"detail\":\"ABILITY.GLOBAL.BONUS_3B\"},{\"id\":\"ABILITY.GLOBAL.BONUS_3C\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BONUS_3C\",\"documentation\":\"ABILITY.GLOBAL.BONUS_3C\",\"detail\":\"ABILITY.GLOBAL.BONUS_3C\"},{\"id\":\"ABILITY.GLOBAL.BONUS_BACK\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BONUS_BACK\",\"documentation\":\"ABILITY.GLOBAL.BONUS_BACK\",\"detail\":\"ABILITY.GLOBAL.BONUS_BACK\"},{\"id\":\"ABILITY.GLOBAL.BREAKTHROUGH_TOW\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.BREAKTHROUGH_TOW\",\"documentation\":\"ABILITY.GLOBAL.BREAKTHROUGH_TOW\",\"detail\":\"ABILITY.GLOBAL.BREAKTHROUGH_TOW\"},{\"id\":\"ABILITY.GLOBAL.CAMOUFLAGE_CONSTRUCTION\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.CAMOUFLAGE_CONSTRUCTION\",\"documentation\":\"ABILITY.GLOBAL.CAMOUFLAGE_CONSTRUCTION\",\"detail\":\"ABILITY.GLOBAL.CAMOUFLAGE_CONSTRUCTION\"},{\"id\":\"ABILITY.GLOBAL.CAMOUFLAGE_CONSTRUCTION_ANIA\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.CAMOUFLAGE_CONSTRUCTION_ANIA\",\"documentation\":\"ABILITY.GLOBAL.CAMOUFLAGE_CONSTRUCTION_ANIA\",\"detail\":\"ABILITY.GLOBAL.CAMOUFLAGE_CONSTRUCTION_ANIA\"},{\"id\":\"ABILITY.GLOBAL.CAMPAIGN_STUKA_STRAFE_LONG\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.CAMPAIGN_STUKA_STRAFE_LONG\",\"documentation\":\"ABILITY.GLOBAL.CAMPAIGN_STUKA_STRAFE_LONG\",\"detail\":\"ABILITY.GLOBAL.CAMPAIGN_STUKA_STRAFE_LONG\"},{\"id\":\"ABILITY.GLOBAL.CAPTURE_SPEED\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.CAPTURE_SPEED\",\"documentation\":\"ABILITY.GLOBAL.CAPTURE_SPEED\",\"detail\":\"ABILITY.GLOBAL.CAPTURE_SPEED\"},{\"id\":\"ABILITY.GLOBAL.COMMISSAR_SHOT_227\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.COMMISSAR_SHOT_227\",\"documentation\":\"ABILITY.GLOBAL.COMMISSAR_SHOT_227\",\"detail\":\"ABILITY.GLOBAL.COMMISSAR_SHOT_227\"},{\"id\":\"ABILITY.GLOBAL.COMMISSAR_SHOT_227_ENEMY\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.COMMISSAR_SHOT_227_ENEMY\",\"documentation\":\"ABILITY.GLOBAL.COMMISSAR_SHOT_227_ENEMY\",\"detail\":\"ABILITY.GLOBAL.COMMISSAR_SHOT_227_ENEMY\"},{\"id\":\"ABILITY.GLOBAL.COMMISSAR_SQUAD_TOW\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.COMMISSAR_SQUAD_TOW\",\"documentation\":\"ABILITY.GLOBAL.COMMISSAR_SQUAD_TOW\",\"detail\":\"ABILITY.GLOBAL.COMMISSAR_SQUAD_TOW\"},{\"id\":\"ABILITY.GLOBAL.CONVOY_BUILDBARRICADE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.CONVOY_BUILDBARRICADE\",\"documentation\":\"ABILITY.GLOBAL.CONVOY_BUILDBARRICADE\",\"detail\":\"ABILITY.GLOBAL.CONVOY_BUILDBARRICADE\"},{\"id\":\"ABILITY.GLOBAL.COVER_ANIMATION_TEST\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.COVER_ANIMATION_TEST\",\"documentation\":\"ABILITY.GLOBAL.COVER_ANIMATION_TEST\",\"detail\":\"ABILITY.GLOBAL.COVER_ANIMATION_TEST\"},{\"id\":\"ABILITY.GLOBAL.DIG_OUT_OF_MUD\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.DIG_OUT_OF_MUD\",\"documentation\":\"ABILITY.GLOBAL.DIG_OUT_OF_MUD\",\"detail\":\"ABILITY.GLOBAL.DIG_OUT_OF_MUD\"},{\"id\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN\",\"documentation\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN\",\"detail\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN\"},{\"id\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_AT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_AT\",\"documentation\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_AT\",\"detail\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_AT\"},{\"id\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_HMG\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_HMG\",\"documentation\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_HMG\",\"detail\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_HMG\"},{\"id\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_MORTAR\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_MORTAR\",\"documentation\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_MORTAR\",\"detail\":\"ABILITY.GLOBAL.DISPATCH_BRIDGE_PARTISAN_MORTAR\"},{\"id\":\"ABILITY.GLOBAL.DROP_WEAPONS\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.DROP_WEAPONS\",\"documentation\":\"ABILITY.GLOBAL.DROP_WEAPONS\",\"detail\":\"ABILITY.GLOBAL.DROP_WEAPONS\"},{\"id\":\"ABILITY.GLOBAL.FATALITY_BULLSEYE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FATALITY_BULLSEYE\",\"documentation\":\"ABILITY.GLOBAL.FATALITY_BULLSEYE\",\"detail\":\"ABILITY.GLOBAL.FATALITY_BULLSEYE\"},{\"id\":\"ABILITY.GLOBAL.FATALITY_COORDINATED_MORTAR_BOMBARDMENT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FATALITY_COORDINATED_MORTAR_BOMBARDMENT\",\"documentation\":\"ABILITY.GLOBAL.FATALITY_COORDINATED_MORTAR_BOMBARDMENT\",\"detail\":\"ABILITY.GLOBAL.FATALITY_COORDINATED_MORTAR_BOMBARDMENT\"},{\"id\":\"ABILITY.GLOBAL.FATALITY_DEFAULT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FATALITY_DEFAULT\",\"documentation\":\"ABILITY.GLOBAL.FATALITY_DEFAULT\",\"detail\":\"ABILITY.GLOBAL.FATALITY_DEFAULT\"},{\"id\":\"ABILITY.GLOBAL.FATALITY_HOWITZER_105MM_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FATALITY_HOWITZER_105MM_BARRAGE\",\"documentation\":\"ABILITY.GLOBAL.FATALITY_HOWITZER_105MM_BARRAGE\",\"detail\":\"ABILITY.GLOBAL.FATALITY_HOWITZER_105MM_BARRAGE\"},{\"id\":\"ABILITY.GLOBAL.FATALITY_HOWITZER_240MM\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FATALITY_HOWITZER_240MM\",\"documentation\":\"ABILITY.GLOBAL.FATALITY_HOWITZER_240MM\",\"detail\":\"ABILITY.GLOBAL.FATALITY_HOWITZER_240MM\"},{\"id\":\"ABILITY.GLOBAL.FATALITY_LIGHT_SUPPORT_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FATALITY_LIGHT_SUPPORT_ARTILLERY\",\"documentation\":\"ABILITY.GLOBAL.FATALITY_LIGHT_SUPPORT_ARTILLERY\",\"detail\":\"ABILITY.GLOBAL.FATALITY_LIGHT_SUPPORT_ARTILLERY\"},{\"id\":\"ABILITY.GLOBAL.FATALITY_PROTOTYPE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FATALITY_PROTOTYPE\",\"documentation\":\"ABILITY.GLOBAL.FATALITY_PROTOTYPE\",\"detail\":\"ABILITY.GLOBAL.FATALITY_PROTOTYPE\"},{\"id\":\"ABILITY.GLOBAL.FATALITY_RAILWAY_GUN_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FATALITY_RAILWAY_GUN_ARTILLERY\",\"documentation\":\"ABILITY.GLOBAL.FATALITY_RAILWAY_GUN_ARTILLERY\",\"detail\":\"ABILITY.GLOBAL.FATALITY_RAILWAY_GUN_ARTILLERY\"},{\"id\":\"ABILITY.GLOBAL.FATALITY_TIME_ON_TARGET_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FATALITY_TIME_ON_TARGET_ARTILLERY\",\"documentation\":\"ABILITY.GLOBAL.FATALITY_TIME_ON_TARGET_ARTILLERY\",\"detail\":\"ABILITY.GLOBAL.FATALITY_TIME_ON_TARGET_ARTILLERY\"},{\"id\":\"ABILITY.GLOBAL.FIRE_DOT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FIRE_DOT\",\"documentation\":\"ABILITY.GLOBAL.FIRE_DOT\",\"detail\":\"ABILITY.GLOBAL.FIRE_DOT\"},{\"id\":\"ABILITY.GLOBAL.FLAME_THROWER_ABILITY\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FLAME_THROWER_ABILITY\",\"documentation\":\"ABILITY.GLOBAL.FLAME_THROWER_ABILITY\",\"detail\":\"ABILITY.GLOBAL.FLAME_THROWER_ABILITY\"},{\"id\":\"ABILITY.GLOBAL.FORWARD_REPAIR_STATION_TOW\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FORWARD_REPAIR_STATION_TOW\",\"documentation\":\"ABILITY.GLOBAL.FORWARD_REPAIR_STATION_TOW\",\"detail\":\"ABILITY.GLOBAL.FORWARD_REPAIR_STATION_TOW\"},{\"id\":\"ABILITY.GLOBAL.FROZEN_ICON_TEST\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.FROZEN_ICON_TEST\",\"documentation\":\"ABILITY.GLOBAL.FROZEN_ICON_TEST\",\"detail\":\"ABILITY.GLOBAL.FROZEN_ICON_TEST\"},{\"id\":\"ABILITY.GLOBAL.GARRISONED_SQUAD_FACING\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.GARRISONED_SQUAD_FACING\",\"documentation\":\"ABILITY.GLOBAL.GARRISONED_SQUAD_FACING\",\"detail\":\"ABILITY.GLOBAL.GARRISONED_SQUAD_FACING\"},{\"id\":\"ABILITY.GLOBAL.GARRISONED_SQUAD_FACING_UNSET\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.GARRISONED_SQUAD_FACING_UNSET\",\"documentation\":\"ABILITY.GLOBAL.GARRISONED_SQUAD_FACING_UNSET\",\"detail\":\"ABILITY.GLOBAL.GARRISONED_SQUAD_FACING_UNSET\"},{\"id\":\"ABILITY.GLOBAL.HEAL_IN_COVER\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.HEAL_IN_COVER\",\"documentation\":\"ABILITY.GLOBAL.HEAL_IN_COVER\",\"detail\":\"ABILITY.GLOBAL.HEAL_IN_COVER\"},{\"id\":\"ABILITY.GLOBAL.HOWITZER_105MM_BARRAGE_SHORT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.HOWITZER_105MM_BARRAGE_SHORT\",\"documentation\":\"ABILITY.GLOBAL.HOWITZER_105MM_BARRAGE_SHORT\",\"detail\":\"ABILITY.GLOBAL.HOWITZER_105MM_BARRAGE_SHORT\"},{\"id\":\"ABILITY.GLOBAL.HOWITZER_105MM_BARRAGE_SHORT_PRECISE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.HOWITZER_105MM_BARRAGE_SHORT_PRECISE\",\"documentation\":\"ABILITY.GLOBAL.HOWITZER_105MM_BARRAGE_SHORT_PRECISE\",\"detail\":\"ABILITY.GLOBAL.HOWITZER_105MM_BARRAGE_SHORT_PRECISE\"},{\"id\":\"ABILITY.GLOBAL.HOWITZER_105MM_DUMMY\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.HOWITZER_105MM_DUMMY\",\"documentation\":\"ABILITY.GLOBAL.HOWITZER_105MM_DUMMY\",\"detail\":\"ABILITY.GLOBAL.HOWITZER_105MM_DUMMY\"},{\"id\":\"ABILITY.GLOBAL.IL_2_ATTACK_STRAFE_HMG\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.IL_2_ATTACK_STRAFE_HMG\",\"documentation\":\"ABILITY.GLOBAL.IL_2_ATTACK_STRAFE_HMG\",\"detail\":\"ABILITY.GLOBAL.IL_2_ATTACK_STRAFE_HMG\"},{\"id\":\"ABILITY.GLOBAL.IL_2_PRECISION_BOMB_STRIKE_TOW\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.IL_2_PRECISION_BOMB_STRIKE_TOW\",\"documentation\":\"ABILITY.GLOBAL.IL_2_PRECISION_BOMB_STRIKE_TOW\",\"detail\":\"ABILITY.GLOBAL.IL_2_PRECISION_BOMB_STRIKE_TOW\"},{\"id\":\"ABILITY.GLOBAL.KV_2_TOW\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.KV_2_TOW\",\"documentation\":\"ABILITY.GLOBAL.KV_2_TOW\",\"detail\":\"ABILITY.GLOBAL.KV_2_TOW\"},{\"id\":\"ABILITY.GLOBAL.LIGHT_ARTILLERY_M10\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.LIGHT_ARTILLERY_M10\",\"documentation\":\"ABILITY.GLOBAL.LIGHT_ARTILLERY_M10\",\"detail\":\"ABILITY.GLOBAL.LIGHT_ARTILLERY_M10\"},{\"id\":\"ABILITY.GLOBAL.M01_IL2_DOGFIGHT_PASS\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M01_IL2_DOGFIGHT_PASS\",\"documentation\":\"ABILITY.GLOBAL.M01_IL2_DOGFIGHT_PASS\",\"detail\":\"ABILITY.GLOBAL.M01_IL2_DOGFIGHT_PASS\"},{\"id\":\"ABILITY.GLOBAL.M01_IL2_PRECISION_BOMB_STRIKE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M01_IL2_PRECISION_BOMB_STRIKE\",\"documentation\":\"ABILITY.GLOBAL.M01_IL2_PRECISION_BOMB_STRIKE\",\"detail\":\"ABILITY.GLOBAL.M01_IL2_PRECISION_BOMB_STRIKE\"},{\"id\":\"ABILITY.GLOBAL.M01_MEDIC_HEAL\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M01_MEDIC_HEAL\",\"documentation\":\"ABILITY.GLOBAL.M01_MEDIC_HEAL\",\"detail\":\"ABILITY.GLOBAL.M01_MEDIC_HEAL\"},{\"id\":\"ABILITY.GLOBAL.M01_MEDIC_HEAL_CONSTANT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M01_MEDIC_HEAL_CONSTANT\",\"documentation\":\"ABILITY.GLOBAL.M01_MEDIC_HEAL_CONSTANT\",\"detail\":\"ABILITY.GLOBAL.M01_MEDIC_HEAL_CONSTANT\"},{\"id\":\"ABILITY.GLOBAL.M01_MORTAR_SINGLE_PRECISE_HARMLESS\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M01_MORTAR_SINGLE_PRECISE_HARMLESS\",\"documentation\":\"ABILITY.GLOBAL.M01_MORTAR_SINGLE_PRECISE_HARMLESS\",\"detail\":\"ABILITY.GLOBAL.M01_MORTAR_SINGLE_PRECISE_HARMLESS\"},{\"id\":\"ABILITY.GLOBAL.M01_SPRINT_OUT_OF_COMBAT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M01_SPRINT_OUT_OF_COMBAT\",\"documentation\":\"ABILITY.GLOBAL.M01_SPRINT_OUT_OF_COMBAT\",\"detail\":\"ABILITY.GLOBAL.M01_SPRINT_OUT_OF_COMBAT\"},{\"id\":\"ABILITY.GLOBAL.M01_STUKA_BOMBING_STRIKE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M01_STUKA_BOMBING_STRIKE\",\"documentation\":\"ABILITY.GLOBAL.M01_STUKA_BOMBING_STRIKE\",\"detail\":\"ABILITY.GLOBAL.M01_STUKA_BOMBING_STRIKE\"},{\"id\":\"ABILITY.GLOBAL.M01_STUKA_DOGFIGHT_PASS\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M01_STUKA_DOGFIGHT_PASS\",\"documentation\":\"ABILITY.GLOBAL.M01_STUKA_DOGFIGHT_PASS\",\"detail\":\"ABILITY.GLOBAL.M01_STUKA_DOGFIGHT_PASS\"},{\"id\":\"ABILITY.GLOBAL.M01_STUKA_STRAFE_FAST\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M01_STUKA_STRAFE_FAST\",\"documentation\":\"ABILITY.GLOBAL.M01_STUKA_STRAFE_FAST\",\"detail\":\"ABILITY.GLOBAL.M01_STUKA_STRAFE_FAST\"},{\"id\":\"ABILITY.GLOBAL.M01_WOUNDED\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M01_WOUNDED\",\"documentation\":\"ABILITY.GLOBAL.M01_WOUNDED\",\"detail\":\"ABILITY.GLOBAL.M01_WOUNDED\"},{\"id\":\"ABILITY.GLOBAL.M11_LIGHT_FIRE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M11_LIGHT_FIRE\",\"documentation\":\"ABILITY.GLOBAL.M11_LIGHT_FIRE\",\"detail\":\"ABILITY.GLOBAL.M11_LIGHT_FIRE\"},{\"id\":\"ABILITY.GLOBAL.M12_HOWITZER_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M12_HOWITZER_BARRAGE\",\"documentation\":\"ABILITY.GLOBAL.M12_HOWITZER_BARRAGE\",\"detail\":\"ABILITY.GLOBAL.M12_HOWITZER_BARRAGE\"},{\"id\":\"ABILITY.GLOBAL.M14_GUARD_TROOP_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M14_GUARD_TROOP_DISPATCH\",\"documentation\":\"ABILITY.GLOBAL.M14_GUARD_TROOP_DISPATCH\",\"detail\":\"ABILITY.GLOBAL.M14_GUARD_TROOP_DISPATCH\"},{\"id\":\"ABILITY.GLOBAL.M14_OFF_MAP_SMOKE_BARRAGE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M14_OFF_MAP_SMOKE_BARRAGE\",\"documentation\":\"ABILITY.GLOBAL.M14_OFF_MAP_SMOKE_BARRAGE\",\"detail\":\"ABILITY.GLOBAL.M14_OFF_MAP_SMOKE_BARRAGE\"},{\"id\":\"ABILITY.GLOBAL.M24_ANTI_TANK_BUNDLED_GRENADE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.M24_ANTI_TANK_BUNDLED_GRENADE\",\"documentation\":\"ABILITY.GLOBAL.M24_ANTI_TANK_BUNDLED_GRENADE\",\"detail\":\"ABILITY.GLOBAL.M24_ANTI_TANK_BUNDLED_GRENADE\"},{\"id\":\"ABILITY.GLOBAL.MECHANIZED_ASSAULT_GROUP_TOW\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.MECHANIZED_ASSAULT_GROUP_TOW\",\"documentation\":\"ABILITY.GLOBAL.MECHANIZED_ASSAULT_GROUP_TOW\",\"detail\":\"ABILITY.GLOBAL.MECHANIZED_ASSAULT_GROUP_TOW\"},{\"id\":\"ABILITY.GLOBAL.MOLTKE_DET_PACK\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.MOLTKE_DET_PACK\",\"documentation\":\"ABILITY.GLOBAL.MOLTKE_DET_PACK\",\"detail\":\"ABILITY.GLOBAL.MOLTKE_DET_PACK\"},{\"id\":\"ABILITY.GLOBAL.MUDDY_POINT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.MUDDY_POINT\",\"documentation\":\"ABILITY.GLOBAL.MUDDY_POINT\",\"detail\":\"ABILITY.GLOBAL.MUDDY_POINT\"},{\"id\":\"ABILITY.GLOBAL.NO_RETREAT_NO_SURRENDER_TOW\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.NO_RETREAT_NO_SURRENDER_TOW\",\"documentation\":\"ABILITY.GLOBAL.NO_RETREAT_NO_SURRENDER_TOW\",\"detail\":\"ABILITY.GLOBAL.NO_RETREAT_NO_SURRENDER_TOW\"},{\"id\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY\",\"documentation\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY\",\"detail\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY\"},{\"id\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE\",\"documentation\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE\",\"detail\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE\"},{\"id\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE_FAST\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE_FAST\",\"documentation\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE_FAST\",\"detail\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE_FAST\"},{\"id\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE_SEP\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE_SEP\",\"documentation\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE_SEP\",\"detail\":\"ABILITY.GLOBAL.OFF_MAP_ARTILLERY_PERCISE_SEP\"},{\"id\":\"ABILITY.GLOBAL.OFF_MAP_ARTY_SINGLE_SHOT_INSTANT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.OFF_MAP_ARTY_SINGLE_SHOT_INSTANT\",\"documentation\":\"ABILITY.GLOBAL.OFF_MAP_ARTY_SINGLE_SHOT_INSTANT\",\"detail\":\"ABILITY.GLOBAL.OFF_MAP_ARTY_SINGLE_SHOT_INSTANT\"},{\"id\":\"ABILITY.GLOBAL.OFFICER_AIR_RECON\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.OFFICER_AIR_RECON\",\"documentation\":\"ABILITY.GLOBAL.OFFICER_AIR_RECON\",\"detail\":\"ABILITY.GLOBAL.OFFICER_AIR_RECON\"},{\"id\":\"ABILITY.GLOBAL.OFFICER_CLOSE_AIR_SUPPORT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.OFFICER_CLOSE_AIR_SUPPORT\",\"documentation\":\"ABILITY.GLOBAL.OFFICER_CLOSE_AIR_SUPPORT\",\"detail\":\"ABILITY.GLOBAL.OFFICER_CLOSE_AIR_SUPPORT\"},{\"id\":\"ABILITY.GLOBAL.OFFICER_FRAGMENTATION_BOMB\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.OFFICER_FRAGMENTATION_BOMB\",\"documentation\":\"ABILITY.GLOBAL.OFFICER_FRAGMENTATION_BOMB\",\"detail\":\"ABILITY.GLOBAL.OFFICER_FRAGMENTATION_BOMB\"},{\"id\":\"ABILITY.GLOBAL.PARTISAN_REPAIR_ABILITY\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.PARTISAN_REPAIR_ABILITY\",\"documentation\":\"ABILITY.GLOBAL.PARTISAN_REPAIR_ABILITY\",\"detail\":\"ABILITY.GLOBAL.PARTISAN_REPAIR_ABILITY\"},{\"id\":\"ABILITY.GLOBAL.PARTISAN_SPRINT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.PARTISAN_SPRINT\",\"documentation\":\"ABILITY.GLOBAL.PARTISAN_SPRINT\",\"detail\":\"ABILITY.GLOBAL.PARTISAN_SPRINT\"},{\"id\":\"ABILITY.GLOBAL.PREVENT_SUPPRESSION\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.PREVENT_SUPPRESSION\",\"documentation\":\"ABILITY.GLOBAL.PREVENT_SUPPRESSION\",\"detail\":\"ABILITY.GLOBAL.PREVENT_SUPPRESSION\"},{\"id\":\"ABILITY.GLOBAL.PRODUCTION_SPEED\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.PRODUCTION_SPEED\",\"documentation\":\"ABILITY.GLOBAL.PRODUCTION_SPEED\",\"detail\":\"ABILITY.GLOBAL.PRODUCTION_SPEED\"},{\"id\":\"ABILITY.GLOBAL.RADIO_TOWER_REVEAL\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.RADIO_TOWER_REVEAL\",\"documentation\":\"ABILITY.GLOBAL.RADIO_TOWER_REVEAL\",\"detail\":\"ABILITY.GLOBAL.RADIO_TOWER_REVEAL\"},{\"id\":\"ABILITY.GLOBAL.RAILWAY_GUN_ARTILLERY_SINGLE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.RAILWAY_GUN_ARTILLERY_SINGLE\",\"documentation\":\"ABILITY.GLOBAL.RAILWAY_GUN_ARTILLERY_SINGLE\",\"detail\":\"ABILITY.GLOBAL.RAILWAY_GUN_ARTILLERY_SINGLE\"},{\"id\":\"ABILITY.GLOBAL.READY_UP\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.READY_UP\",\"documentation\":\"ABILITY.GLOBAL.READY_UP\",\"detail\":\"ABILITY.GLOBAL.READY_UP\"},{\"id\":\"ABILITY.GLOBAL.REV_OUT_OF_MUD\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.REV_OUT_OF_MUD\",\"documentation\":\"ABILITY.GLOBAL.REV_OUT_OF_MUD\",\"detail\":\"ABILITY.GLOBAL.REV_OUT_OF_MUD\"},{\"id\":\"ABILITY.GLOBAL.SHOCK_TROOP_FULL_AUTO\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.SHOCK_TROOP_FULL_AUTO\",\"documentation\":\"ABILITY.GLOBAL.SHOCK_TROOP_FULL_AUTO\",\"detail\":\"ABILITY.GLOBAL.SHOCK_TROOP_FULL_AUTO\"},{\"id\":\"ABILITY.GLOBAL.SP_DROP_WEAPONS\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.SP_DROP_WEAPONS\",\"documentation\":\"ABILITY.GLOBAL.SP_DROP_WEAPONS\",\"detail\":\"ABILITY.GLOBAL.SP_DROP_WEAPONS\"},{\"id\":\"ABILITY.GLOBAL.SP_OFF_MAP_ARTY_HARMLESS\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.SP_OFF_MAP_ARTY_HARMLESS\",\"documentation\":\"ABILITY.GLOBAL.SP_OFF_MAP_ARTY_HARMLESS\",\"detail\":\"ABILITY.GLOBAL.SP_OFF_MAP_ARTY_HARMLESS\"},{\"id\":\"ABILITY.GLOBAL.SP_OFF_MAP_ARTY_REAL\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.SP_OFF_MAP_ARTY_REAL\",\"documentation\":\"ABILITY.GLOBAL.SP_OFF_MAP_ARTY_REAL\",\"detail\":\"ABILITY.GLOBAL.SP_OFF_MAP_ARTY_REAL\"},{\"id\":\"ABILITY.GLOBAL.SP_SINGLE_SHOT_MORTAR\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.SP_SINGLE_SHOT_MORTAR\",\"documentation\":\"ABILITY.GLOBAL.SP_SINGLE_SHOT_MORTAR\",\"detail\":\"ABILITY.GLOBAL.SP_SINGLE_SHOT_MORTAR\"},{\"id\":\"ABILITY.GLOBAL.SP_SINGLE_SHOT_MORTAR_M01\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.SP_SINGLE_SHOT_MORTAR_M01\",\"documentation\":\"ABILITY.GLOBAL.SP_SINGLE_SHOT_MORTAR_M01\",\"detail\":\"ABILITY.GLOBAL.SP_SINGLE_SHOT_MORTAR_M01\"},{\"id\":\"ABILITY.GLOBAL.SP_SPRINT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.SP_SPRINT\",\"documentation\":\"ABILITY.GLOBAL.SP_SPRINT\",\"detail\":\"ABILITY.GLOBAL.SP_SPRINT\"},{\"id\":\"ABILITY.GLOBAL.SP_SPRINT_TOGGLEABLE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.SP_SPRINT_TOGGLEABLE\",\"documentation\":\"ABILITY.GLOBAL.SP_SPRINT_TOGGLEABLE\",\"detail\":\"ABILITY.GLOBAL.SP_SPRINT_TOGGLEABLE\"},{\"id\":\"ABILITY.GLOBAL.SPY_NETWORK_TOW\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.SPY_NETWORK_TOW\",\"documentation\":\"ABILITY.GLOBAL.SPY_NETWORK_TOW\",\"detail\":\"ABILITY.GLOBAL.SPY_NETWORK_TOW\"},{\"id\":\"ABILITY.GLOBAL.STUKA_BOMBING_STRIKE_W_SMOKE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.STUKA_BOMBING_STRIKE_W_SMOKE\",\"documentation\":\"ABILITY.GLOBAL.STUKA_BOMBING_STRIKE_W_SMOKE\",\"detail\":\"ABILITY.GLOBAL.STUKA_BOMBING_STRIKE_W_SMOKE\"},{\"id\":\"ABILITY.GLOBAL.STUKA_FAKE_BOMBING_STRIKE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.STUKA_FAKE_BOMBING_STRIKE\",\"documentation\":\"ABILITY.GLOBAL.STUKA_FAKE_BOMBING_STRIKE\",\"detail\":\"ABILITY.GLOBAL.STUKA_FAKE_BOMBING_STRIKE\"},{\"id\":\"ABILITY.GLOBAL.STUKA_FAKE_STRAFE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.STUKA_FAKE_STRAFE\",\"documentation\":\"ABILITY.GLOBAL.STUKA_FAKE_STRAFE\",\"detail\":\"ABILITY.GLOBAL.STUKA_FAKE_STRAFE\"},{\"id\":\"ABILITY.GLOBAL.STUKA_STRAFE\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.STUKA_STRAFE\",\"documentation\":\"ABILITY.GLOBAL.STUKA_STRAFE\",\"detail\":\"ABILITY.GLOBAL.STUKA_STRAFE\"},{\"id\":\"ABILITY.GLOBAL.STUKA_STRAFE_M02\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.STUKA_STRAFE_M02\",\"documentation\":\"ABILITY.GLOBAL.STUKA_STRAFE_M02\",\"detail\":\"ABILITY.GLOBAL.STUKA_STRAFE_M02\"},{\"id\":\"ABILITY.GLOBAL.STUKA_STRAFE_M09\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.STUKA_STRAFE_M09\",\"documentation\":\"ABILITY.GLOBAL.STUKA_STRAFE_M09\",\"detail\":\"ABILITY.GLOBAL.STUKA_STRAFE_M09\"},{\"id\":\"ABILITY.GLOBAL.TANK_BUSTER_CONSCRIPT_DISPATCH\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TANK_BUSTER_CONSCRIPT_DISPATCH\",\"documentation\":\"ABILITY.GLOBAL.TANK_BUSTER_CONSCRIPT_DISPATCH\",\"detail\":\"ABILITY.GLOBAL.TANK_BUSTER_CONSCRIPT_DISPATCH\"},{\"id\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV1\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV1\",\"documentation\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV1\",\"detail\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV1\"},{\"id\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV2\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV2\",\"documentation\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV2\",\"detail\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV2\"},{\"id\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV8\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV8\",\"documentation\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV8\",\"detail\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_KV8\"},{\"id\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_T34\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_T34\",\"documentation\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_T34\",\"detail\":\"ABILITY.GLOBAL.TOW_AIRFIELD_DISPATCH_T34\"},{\"id\":\"ABILITY.GLOBAL.TOW_AIRFIELD_STUKA_BOMBING_RUN\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TOW_AIRFIELD_STUKA_BOMBING_RUN\",\"documentation\":\"ABILITY.GLOBAL.TOW_AIRFIELD_STUKA_BOMBING_RUN\",\"detail\":\"ABILITY.GLOBAL.TOW_AIRFIELD_STUKA_BOMBING_RUN\"},{\"id\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_IS2\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_IS2\",\"documentation\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_IS2\",\"detail\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_IS2\"},{\"id\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_KAT\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_KAT\",\"documentation\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_KAT\",\"detail\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_KAT\"},{\"id\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_KV1\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_KV1\",\"documentation\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_KV1\",\"detail\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_KV1\"},{\"id\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_SU76\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_SU76\",\"documentation\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_SU76\",\"detail\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_SU76\"},{\"id\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_T34\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_T34\",\"documentation\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_T34\",\"detail\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_T34\"},{\"id\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_T70\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_T70\",\"documentation\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_T70\",\"detail\":\"ABILITY.GLOBAL.TOW_STALINGRAD_DISPATCH_T70\"},{\"id\":\"ABILITY.GLOBAL.TRANSFER_ORDERS\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TRANSFER_ORDERS\",\"documentation\":\"ABILITY.GLOBAL.TRANSFER_ORDERS\",\"detail\":\"ABILITY.GLOBAL.TRANSFER_ORDERS\"},{\"id\":\"ABILITY.GLOBAL.TROOP_TRAINING_TOW\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TROOP_TRAINING_TOW\",\"documentation\":\"ABILITY.GLOBAL.TROOP_TRAINING_TOW\",\"detail\":\"ABILITY.GLOBAL.TROOP_TRAINING_TOW\"},{\"id\":\"ABILITY.GLOBAL.TUNSTEN_SHELLS_TOW\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.TUNSTEN_SHELLS_TOW\",\"documentation\":\"ABILITY.GLOBAL.TUNSTEN_SHELLS_TOW\",\"detail\":\"ABILITY.GLOBAL.TUNSTEN_SHELLS_TOW\"},{\"id\":\"ABILITY.GLOBAL.WARMING_ANIMATION_TEST\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.WARMING_ANIMATION_TEST\",\"documentation\":\"ABILITY.GLOBAL.WARMING_ANIMATION_TEST\",\"detail\":\"ABILITY.GLOBAL.WARMING_ANIMATION_TEST\"},{\"id\":\"ABILITY.GLOBAL.WE_SURRENDER\",\"kind\":17,\"label\":\"ABILITY.GLOBAL.WE_SURRENDER\",\"documentation\":\"ABILITY.GLOBAL.WE_SURRENDER\",\"detail\":\"ABILITY.GLOBAL.WE_SURRENDER\"},{\"id\":\"SLOT_ITEM.AEC_TARGET_OPTICS_SLOT_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.AEC_TARGET_OPTICS_SLOT_ITEM_MP\",\"documentation\":\"SLOT_ITEM.AEC_TARGET_OPTICS_SLOT_ITEM_MP\",\"detail\":\"SLOT_ITEM.AEC_TARGET_OPTICS_SLOT_ITEM_MP\"},{\"id\":\"SLOT_ITEM.AEC_TARGET_TURRET_SLOT_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.AEC_TARGET_TURRET_SLOT_ITEM_MP\",\"documentation\":\"SLOT_ITEM.AEC_TARGET_TURRET_SLOT_ITEM_MP\",\"detail\":\"SLOT_ITEM.AEC_TARGET_TURRET_SLOT_ITEM_MP\"},{\"id\":\"SLOT_ITEM.AEC_TREAD_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.AEC_TREAD_SHOT_MP\",\"documentation\":\"SLOT_ITEM.AEC_TREAD_SHOT_MP\",\"detail\":\"SLOT_ITEM.AEC_TREAD_SHOT_MP\"},{\"id\":\"SLOT_ITEM.AEF_CALLIOPE_DUMMY_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.AEF_CALLIOPE_DUMMY_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.AEF_CALLIOPE_DUMMY_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.AEF_CALLIOPE_DUMMY_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.AEF_SHERMAN_DUMMY_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.AEF_SHERMAN_DUMMY_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.AEF_SHERMAN_DUMMY_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.AEF_SHERMAN_DUMMY_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.AEF_VEHICLE_ENTERS_INFANTRY_BUFF_APPLIED\",\"kind\":17,\"label\":\"SLOT_ITEM.AEF_VEHICLE_ENTERS_INFANTRY_BUFF_APPLIED\",\"documentation\":\"SLOT_ITEM.AEF_VEHICLE_ENTERS_INFANTRY_BUFF_APPLIED\",\"detail\":\"SLOT_ITEM.AEF_VEHICLE_ENTERS_INFANTRY_BUFF_APPLIED\"},{\"id\":\"SLOT_ITEM.AEF_WHITE_PHOSPHOROUS_MORTAR_UI_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.AEF_WHITE_PHOSPHOROUS_MORTAR_UI_ITEM\",\"documentation\":\"SLOT_ITEM.AEF_WHITE_PHOSPHOROUS_MORTAR_UI_ITEM\",\"detail\":\"SLOT_ITEM.AEF_WHITE_PHOSPHOROUS_MORTAR_UI_ITEM\"},{\"id\":\"SLOT_ITEM.AEF_WHITE_PHOSPHOROUS_SHELLS_UI_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.AEF_WHITE_PHOSPHOROUS_SHELLS_UI_ITEM\",\"documentation\":\"SLOT_ITEM.AEF_WHITE_PHOSPHOROUS_SHELLS_UI_ITEM\",\"detail\":\"SLOT_ITEM.AEF_WHITE_PHOSPHOROUS_SHELLS_UI_ITEM\"},{\"id\":\"SLOT_ITEM.AEF_WRENCH_ICON_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.AEF_WRENCH_ICON_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.AEF_WRENCH_ICON_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.AEF_WRENCH_ICON_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.AMBUSH_CAMO_PORTRAIT_ICON_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.AMBUSH_CAMO_PORTRAIT_ICON_ITEM\",\"documentation\":\"SLOT_ITEM.AMBUSH_CAMO_PORTRAIT_ICON_ITEM\",\"detail\":\"SLOT_ITEM.AMBUSH_CAMO_PORTRAIT_ICON_ITEM\"},{\"id\":\"SLOT_ITEM.AMBUSH_CAMO_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.AMBUSH_CAMO_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.AMBUSH_CAMO_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.AMBUSH_CAMO_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.AMBUSH_CAMO_VISUAL_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.AMBUSH_CAMO_VISUAL_ITEM\",\"documentation\":\"SLOT_ITEM.AMBUSH_CAMO_VISUAL_ITEM\",\"detail\":\"SLOT_ITEM.AMBUSH_CAMO_VISUAL_ITEM\"},{\"id\":\"SLOT_ITEM.ARMOR_BLITZ_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.ARMOR_BLITZ_ITEM\",\"documentation\":\"SLOT_ITEM.ARMOR_BLITZ_ITEM\",\"detail\":\"SLOT_ITEM.ARMOR_BLITZ_ITEM\"},{\"id\":\"SLOT_ITEM.ASSAULT_ENGINEER_FLAMETHROWER\",\"kind\":17,\"label\":\"SLOT_ITEM.ASSAULT_ENGINEER_FLAMETHROWER\",\"documentation\":\"SLOT_ITEM.ASSAULT_ENGINEER_FLAMETHROWER\",\"detail\":\"SLOT_ITEM.ASSAULT_ENGINEER_FLAMETHROWER\"},{\"id\":\"SLOT_ITEM.ASSAULT_MOVE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.ASSAULT_MOVE_ITEM\",\"documentation\":\"SLOT_ITEM.ASSAULT_MOVE_ITEM\",\"detail\":\"SLOT_ITEM.ASSAULT_MOVE_ITEM\"},{\"id\":\"SLOT_ITEM.AT_76MM_HE_ROUND_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.AT_76MM_HE_ROUND_ITEM\",\"documentation\":\"SLOT_ITEM.AT_76MM_HE_ROUND_ITEM\",\"detail\":\"SLOT_ITEM.AT_76MM_HE_ROUND_ITEM\"},{\"id\":\"SLOT_ITEM.AT_76MM_HE_ROUND_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.AT_76MM_HE_ROUND_ITEM_MP\",\"documentation\":\"SLOT_ITEM.AT_76MM_HE_ROUND_ITEM_MP\",\"detail\":\"SLOT_ITEM.AT_76MM_HE_ROUND_ITEM_MP\"},{\"id\":\"SLOT_ITEM.AVRE_CREW_SHRAPNEL_GRENADE_SLOT_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.AVRE_CREW_SHRAPNEL_GRENADE_SLOT_ITEM_MP\",\"documentation\":\"SLOT_ITEM.AVRE_CREW_SHRAPNEL_GRENADE_SLOT_ITEM_MP\",\"detail\":\"SLOT_ITEM.AVRE_CREW_SHRAPNEL_GRENADE_SLOT_ITEM_MP\"},{\"id\":\"SLOT_ITEM.AVRE_RELOAD_ACTIVE\",\"kind\":17,\"label\":\"SLOT_ITEM.AVRE_RELOAD_ACTIVE\",\"documentation\":\"SLOT_ITEM.AVRE_RELOAD_ACTIVE\",\"detail\":\"SLOT_ITEM.AVRE_RELOAD_ACTIVE\"},{\"id\":\"SLOT_ITEM.AVRE_SPIGOT_MORTAR_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.AVRE_SPIGOT_MORTAR_MP\",\"documentation\":\"SLOT_ITEM.AVRE_SPIGOT_MORTAR_MP\",\"detail\":\"SLOT_ITEM.AVRE_SPIGOT_MORTAR_MP\"},{\"id\":\"SLOT_ITEM.AVRE_SPIGOT_MORTAR_VET_3_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.AVRE_SPIGOT_MORTAR_VET_3_MP\",\"documentation\":\"SLOT_ITEM.AVRE_SPIGOT_MORTAR_VET_3_MP\",\"detail\":\"SLOT_ITEM.AVRE_SPIGOT_MORTAR_VET_3_MP\"},{\"id\":\"SLOT_ITEM.AXIS_ASSAULT_GRENADIER_GRENADE\",\"kind\":17,\"label\":\"SLOT_ITEM.AXIS_ASSAULT_GRENADIER_GRENADE\",\"documentation\":\"SLOT_ITEM.AXIS_ASSAULT_GRENADIER_GRENADE\",\"detail\":\"SLOT_ITEM.AXIS_ASSAULT_GRENADIER_GRENADE\"},{\"id\":\"SLOT_ITEM.AXIS_BLINDING_GRENADE\",\"kind\":17,\"label\":\"SLOT_ITEM.AXIS_BLINDING_GRENADE\",\"documentation\":\"SLOT_ITEM.AXIS_BLINDING_GRENADE\",\"detail\":\"SLOT_ITEM.AXIS_BLINDING_GRENADE\"},{\"id\":\"SLOT_ITEM.AXIS_BLINDING_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.AXIS_BLINDING_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.AXIS_BLINDING_GRENADE_MP\",\"detail\":\"SLOT_ITEM.AXIS_BLINDING_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.AXIS_PANZER_GRENADIER_GRENADE\",\"kind\":17,\"label\":\"SLOT_ITEM.AXIS_PANZER_GRENADIER_GRENADE\",\"documentation\":\"SLOT_ITEM.AXIS_PANZER_GRENADIER_GRENADE\",\"detail\":\"SLOT_ITEM.AXIS_PANZER_GRENADIER_GRENADE\"},{\"id\":\"SLOT_ITEM.AXIS_PANZER_GRENADIER_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.AXIS_PANZER_GRENADIER_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.AXIS_PANZER_GRENADIER_GRENADE_MP\",\"detail\":\"SLOT_ITEM.AXIS_PANZER_GRENADIER_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.AXIS_PG_GRENADE_CAMPAIGN\",\"kind\":17,\"label\":\"SLOT_ITEM.AXIS_PG_GRENADE_CAMPAIGN\",\"documentation\":\"SLOT_ITEM.AXIS_PG_GRENADE_CAMPAIGN\",\"detail\":\"SLOT_ITEM.AXIS_PG_GRENADE_CAMPAIGN\"},{\"id\":\"SLOT_ITEM.AXIS_PG_GRENADE_CAMPAIGN_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.AXIS_PG_GRENADE_CAMPAIGN_MP\",\"documentation\":\"SLOT_ITEM.AXIS_PG_GRENADE_CAMPAIGN_MP\",\"detail\":\"SLOT_ITEM.AXIS_PG_GRENADE_CAMPAIGN_MP\"},{\"id\":\"SLOT_ITEM.AXIS_PG_GRENADE_TUTORIAL\",\"kind\":17,\"label\":\"SLOT_ITEM.AXIS_PG_GRENADE_TUTORIAL\",\"documentation\":\"SLOT_ITEM.AXIS_PG_GRENADE_TUTORIAL\",\"detail\":\"SLOT_ITEM.AXIS_PG_GRENADE_TUTORIAL\"},{\"id\":\"SLOT_ITEM.BAZOOKA_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.BAZOOKA_MP\",\"documentation\":\"SLOT_ITEM.BAZOOKA_MP\",\"detail\":\"SLOT_ITEM.BAZOOKA_MP\"},{\"id\":\"SLOT_ITEM.BLENDKORPER_2H_SMOKE_GRENADE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.BLENDKORPER_2H_SMOKE_GRENADE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.BLENDKORPER_2H_SMOKE_GRENADE_ITEM_MP\",\"detail\":\"SLOT_ITEM.BLENDKORPER_2H_SMOKE_GRENADE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.BOFOR_40MM_AA_MODE_ACTIVATED_MAIN_GUN\",\"kind\":17,\"label\":\"SLOT_ITEM.BOFOR_40MM_AA_MODE_ACTIVATED_MAIN_GUN\",\"documentation\":\"SLOT_ITEM.BOFOR_40MM_AA_MODE_ACTIVATED_MAIN_GUN\",\"detail\":\"SLOT_ITEM.BOFOR_40MM_AA_MODE_ACTIVATED_MAIN_GUN\"},{\"id\":\"SLOT_ITEM.BOFORS_HOLD_FULL\",\"kind\":17,\"label\":\"SLOT_ITEM.BOFORS_HOLD_FULL\",\"documentation\":\"SLOT_ITEM.BOFORS_HOLD_FULL\",\"detail\":\"SLOT_ITEM.BOFORS_HOLD_FULL\"},{\"id\":\"SLOT_ITEM.BOFORS_SUPPRESSIVE_BARRAGE_ROUND_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.BOFORS_SUPPRESSIVE_BARRAGE_ROUND_ITEM_MP\",\"documentation\":\"SLOT_ITEM.BOFORS_SUPPRESSIVE_BARRAGE_ROUND_ITEM_MP\",\"detail\":\"SLOT_ITEM.BOFORS_SUPPRESSIVE_BARRAGE_ROUND_ITEM_MP\"},{\"id\":\"SLOT_ITEM.BOFORS_SUPPRESSIVE_BARRAGE_ROUND_ITEM_VICTOR_TARGET_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.BOFORS_SUPPRESSIVE_BARRAGE_ROUND_ITEM_VICTOR_TARGET_MP\",\"documentation\":\"SLOT_ITEM.BOFORS_SUPPRESSIVE_BARRAGE_ROUND_ITEM_VICTOR_TARGET_MP\",\"detail\":\"SLOT_ITEM.BOFORS_SUPPRESSIVE_BARRAGE_ROUND_ITEM_VICTOR_TARGET_MP\"},{\"id\":\"SLOT_ITEM.BOOT_STOMP\",\"kind\":17,\"label\":\"SLOT_ITEM.BOOT_STOMP\",\"documentation\":\"SLOT_ITEM.BOOT_STOMP\",\"detail\":\"SLOT_ITEM.BOOT_STOMP\"},{\"id\":\"SLOT_ITEM.BOYS_ANTI_TANK_RIFLE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.BOYS_ANTI_TANK_RIFLE_MP\",\"documentation\":\"SLOT_ITEM.BOYS_ANTI_TANK_RIFLE_MP\",\"detail\":\"SLOT_ITEM.BOYS_ANTI_TANK_RIFLE_MP\"},{\"id\":\"SLOT_ITEM.BOYS_ANTI_TANK_RIFLE_SNIPER_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.BOYS_ANTI_TANK_RIFLE_SNIPER_MP\",\"documentation\":\"SLOT_ITEM.BOYS_ANTI_TANK_RIFLE_SNIPER_MP\",\"detail\":\"SLOT_ITEM.BOYS_ANTI_TANK_RIFLE_SNIPER_MP\"},{\"id\":\"SLOT_ITEM.BOYS_SNIPER_RIFLE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.BOYS_SNIPER_RIFLE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.BOYS_SNIPER_RIFLE_ITEM_MP\",\"detail\":\"SLOT_ITEM.BOYS_SNIPER_RIFLE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.BREN_LMG_ICON_DUMMY\",\"kind\":17,\"label\":\"SLOT_ITEM.BREN_LMG_ICON_DUMMY\",\"documentation\":\"SLOT_ITEM.BREN_LMG_ICON_DUMMY\",\"detail\":\"SLOT_ITEM.BREN_LMG_ICON_DUMMY\"},{\"id\":\"SLOT_ITEM.BRIT_17_POUNDER_FLARE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_17_POUNDER_FLARE_MP\",\"documentation\":\"SLOT_ITEM.BRIT_17_POUNDER_FLARE_MP\",\"detail\":\"SLOT_ITEM.BRIT_17_POUNDER_FLARE_MP\"},{\"id\":\"SLOT_ITEM.BRIT_17_POUNDER_HOLD_FULL\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_17_POUNDER_HOLD_FULL\",\"documentation\":\"SLOT_ITEM.BRIT_17_POUNDER_HOLD_FULL\",\"detail\":\"SLOT_ITEM.BRIT_17_POUNDER_HOLD_FULL\"},{\"id\":\"SLOT_ITEM.BRIT_17_POUNDER_PIERCING_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_17_POUNDER_PIERCING_SHOT_MP\",\"documentation\":\"SLOT_ITEM.BRIT_17_POUNDER_PIERCING_SHOT_MP\",\"detail\":\"SLOT_ITEM.BRIT_17_POUNDER_PIERCING_SHOT_MP\"},{\"id\":\"SLOT_ITEM.BRIT_COMMAND_VEHICLE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_COMMAND_VEHICLE_ITEM\",\"documentation\":\"SLOT_ITEM.BRIT_COMMAND_VEHICLE_ITEM\",\"detail\":\"SLOT_ITEM.BRIT_COMMAND_VEHICLE_ITEM\"},{\"id\":\"SLOT_ITEM.BRIT_CROC_DUMMY_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_CROC_DUMMY_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.BRIT_CROC_DUMMY_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.BRIT_CROC_DUMMY_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.BRIT_EMPLACEMENT_BRACED\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_EMPLACEMENT_BRACED\",\"documentation\":\"SLOT_ITEM.BRIT_EMPLACEMENT_BRACED\",\"detail\":\"SLOT_ITEM.BRIT_EMPLACEMENT_BRACED\"},{\"id\":\"SLOT_ITEM.BRIT_EMPLACEMENT_HOLD_FIRE\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_EMPLACEMENT_HOLD_FIRE\",\"documentation\":\"SLOT_ITEM.BRIT_EMPLACEMENT_HOLD_FIRE\",\"detail\":\"SLOT_ITEM.BRIT_EMPLACEMENT_HOLD_FIRE\"},{\"id\":\"SLOT_ITEM.BRIT_FIREFLY_TULIP_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_FIREFLY_TULIP_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.BRIT_FIREFLY_TULIP_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.BRIT_FIREFLY_TULIP_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.BRIT_HOLD_THE_LINE\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_HOLD_THE_LINE\",\"documentation\":\"SLOT_ITEM.BRIT_HOLD_THE_LINE\",\"detail\":\"SLOT_ITEM.BRIT_HOLD_THE_LINE\"},{\"id\":\"SLOT_ITEM.BRIT_MORTAR_PIT_HOLD_FULL\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_MORTAR_PIT_HOLD_FULL\",\"documentation\":\"SLOT_ITEM.BRIT_MORTAR_PIT_HOLD_FULL\",\"detail\":\"SLOT_ITEM.BRIT_MORTAR_PIT_HOLD_FULL\"},{\"id\":\"SLOT_ITEM.BRIT_REINFORCE_THE_FRONT\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_REINFORCE_THE_FRONT\",\"documentation\":\"SLOT_ITEM.BRIT_REINFORCE_THE_FRONT\",\"detail\":\"SLOT_ITEM.BRIT_REINFORCE_THE_FRONT\"},{\"id\":\"SLOT_ITEM.BRIT_SNIPER_BOYS_ANTI_TANK_CRITICAL_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_SNIPER_BOYS_ANTI_TANK_CRITICAL_SHOT_MP\",\"documentation\":\"SLOT_ITEM.BRIT_SNIPER_BOYS_ANTI_TANK_CRITICAL_SHOT_MP\",\"detail\":\"SLOT_ITEM.BRIT_SNIPER_BOYS_ANTI_TANK_CRITICAL_SHOT_MP\"},{\"id\":\"SLOT_ITEM.BRIT_UNIT_LOCK_OUT_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.BRIT_UNIT_LOCK_OUT_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.BRIT_UNIT_LOCK_OUT_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.BRIT_UNIT_LOCK_OUT_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.BRUMMBAR_CRITICAL_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.BRUMMBAR_CRITICAL_SHOT_MP\",\"documentation\":\"SLOT_ITEM.BRUMMBAR_CRITICAL_SHOT_MP\",\"detail\":\"SLOT_ITEM.BRUMMBAR_CRITICAL_SHOT_MP\"},{\"id\":\"SLOT_ITEM.CAPTAIN_GARRISON_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.CAPTAIN_GARRISON_ITEM\",\"documentation\":\"SLOT_ITEM.CAPTAIN_GARRISON_ITEM\",\"detail\":\"SLOT_ITEM.CAPTAIN_GARRISON_ITEM\"},{\"id\":\"SLOT_ITEM.CAPTURE_INTEL_SLOTITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.CAPTURE_INTEL_SLOTITEM\",\"documentation\":\"SLOT_ITEM.CAPTURE_INTEL_SLOTITEM\",\"detail\":\"SLOT_ITEM.CAPTURE_INTEL_SLOTITEM\"},{\"id\":\"SLOT_ITEM.CARRIER_SUPPRESS_ACTIVE\",\"kind\":17,\"label\":\"SLOT_ITEM.CARRIER_SUPPRESS_ACTIVE\",\"documentation\":\"SLOT_ITEM.CARRIER_SUPPRESS_ACTIVE\",\"detail\":\"SLOT_ITEM.CARRIER_SUPPRESS_ACTIVE\"},{\"id\":\"SLOT_ITEM.CAVALRY_AT_SATCHEL_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.CAVALRY_AT_SATCHEL_ITEM\",\"documentation\":\"SLOT_ITEM.CAVALRY_AT_SATCHEL_ITEM\",\"detail\":\"SLOT_ITEM.CAVALRY_AT_SATCHEL_ITEM\"},{\"id\":\"SLOT_ITEM.CENTUAR_AA_MODE_ACTIVATED_MAIN_GUN\",\"kind\":17,\"label\":\"SLOT_ITEM.CENTUAR_AA_MODE_ACTIVATED_MAIN_GUN\",\"documentation\":\"SLOT_ITEM.CENTUAR_AA_MODE_ACTIVATED_MAIN_GUN\",\"detail\":\"SLOT_ITEM.CENTUAR_AA_MODE_ACTIVATED_MAIN_GUN\"},{\"id\":\"SLOT_ITEM.CHURUCHILL_SUPPORT_NEGATE\",\"kind\":17,\"label\":\"SLOT_ITEM.CHURUCHILL_SUPPORT_NEGATE\",\"documentation\":\"SLOT_ITEM.CHURUCHILL_SUPPORT_NEGATE\",\"detail\":\"SLOT_ITEM.CHURUCHILL_SUPPORT_NEGATE\"},{\"id\":\"SLOT_ITEM.COMET_SMOKE_SHELL_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.COMET_SMOKE_SHELL_SHOT_MP\",\"documentation\":\"SLOT_ITEM.COMET_SMOKE_SHELL_SHOT_MP\",\"detail\":\"SLOT_ITEM.COMET_SMOKE_SHELL_SHOT_MP\"},{\"id\":\"SLOT_ITEM.COMET_SMOKE_SHELL_WP_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.COMET_SMOKE_SHELL_WP_SHOT_MP\",\"documentation\":\"SLOT_ITEM.COMET_SMOKE_SHELL_WP_SHOT_MP\",\"detail\":\"SLOT_ITEM.COMET_SMOKE_SHELL_WP_SHOT_MP\"},{\"id\":\"SLOT_ITEM.COMMAND_PANTHER_AURA\",\"kind\":17,\"label\":\"SLOT_ITEM.COMMAND_PANTHER_AURA\",\"documentation\":\"SLOT_ITEM.COMMAND_PANTHER_AURA\",\"detail\":\"SLOT_ITEM.COMMAND_PANTHER_AURA\"},{\"id\":\"SLOT_ITEM.COMMANDO_BREN_LMG_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.COMMANDO_BREN_LMG_MP\",\"documentation\":\"SLOT_ITEM.COMMANDO_BREN_LMG_MP\",\"detail\":\"SLOT_ITEM.COMMANDO_BREN_LMG_MP\"},{\"id\":\"SLOT_ITEM.COMMANDO_DE_LISLE_CARBINE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.COMMANDO_DE_LISLE_CARBINE_MP\",\"documentation\":\"SLOT_ITEM.COMMANDO_DE_LISLE_CARBINE_MP\",\"detail\":\"SLOT_ITEM.COMMANDO_DE_LISLE_CARBINE_MP\"},{\"id\":\"SLOT_ITEM.COMMANDO_DE_LISLE_CARBINE_SLOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.COMMANDO_DE_LISLE_CARBINE_SLOT_MP\",\"documentation\":\"SLOT_ITEM.COMMANDO_DE_LISLE_CARBINE_SLOT_MP\",\"detail\":\"SLOT_ITEM.COMMANDO_DE_LISLE_CARBINE_SLOT_MP\"},{\"id\":\"SLOT_ITEM.COMMANDO_N69_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.COMMANDO_N69_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.COMMANDO_N69_GRENADE_MP\",\"detail\":\"SLOT_ITEM.COMMANDO_N69_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.COMMANDO_THOMPSON_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.COMMANDO_THOMPSON_MP\",\"documentation\":\"SLOT_ITEM.COMMANDO_THOMPSON_MP\",\"detail\":\"SLOT_ITEM.COMMANDO_THOMPSON_MP\"},{\"id\":\"SLOT_ITEM.COMMANDO_THOMPSON_SLOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.COMMANDO_THOMPSON_SLOT_MP\",\"documentation\":\"SLOT_ITEM.COMMANDO_THOMPSON_SLOT_MP\",\"detail\":\"SLOT_ITEM.COMMANDO_THOMPSON_SLOT_MP\"},{\"id\":\"SLOT_ITEM.COMMISSAR_SHOT_227\",\"kind\":17,\"label\":\"SLOT_ITEM.COMMISSAR_SHOT_227\",\"documentation\":\"SLOT_ITEM.COMMISSAR_SHOT_227\",\"detail\":\"SLOT_ITEM.COMMISSAR_SHOT_227\"},{\"id\":\"SLOT_ITEM.COMMISSAR_SHOT_227_ENEMY\",\"kind\":17,\"label\":\"SLOT_ITEM.COMMISSAR_SHOT_227_ENEMY\",\"documentation\":\"SLOT_ITEM.COMMISSAR_SHOT_227_ENEMY\",\"detail\":\"SLOT_ITEM.COMMISSAR_SHOT_227_ENEMY\"},{\"id\":\"SLOT_ITEM.CONSCRIPT_MOLOTOV\",\"kind\":17,\"label\":\"SLOT_ITEM.CONSCRIPT_MOLOTOV\",\"documentation\":\"SLOT_ITEM.CONSCRIPT_MOLOTOV\",\"detail\":\"SLOT_ITEM.CONSCRIPT_MOLOTOV\"},{\"id\":\"SLOT_ITEM.CONSCRIPT_MOLOTOV_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.CONSCRIPT_MOLOTOV_MP\",\"documentation\":\"SLOT_ITEM.CONSCRIPT_MOLOTOV_MP\",\"detail\":\"SLOT_ITEM.CONSCRIPT_MOLOTOV_MP\"},{\"id\":\"SLOT_ITEM.COVER_SMOKE_GRENADE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.COVER_SMOKE_GRENADE_ITEM\",\"documentation\":\"SLOT_ITEM.COVER_SMOKE_GRENADE_ITEM\",\"detail\":\"SLOT_ITEM.COVER_SMOKE_GRENADE_ITEM\"},{\"id\":\"SLOT_ITEM.DEF_MOVE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.DEF_MOVE_ITEM\",\"documentation\":\"SLOT_ITEM.DEF_MOVE_ITEM\",\"detail\":\"SLOT_ITEM.DEF_MOVE_ITEM\"},{\"id\":\"SLOT_ITEM.DOUBLE_SWEEP\",\"kind\":17,\"label\":\"SLOT_ITEM.DOUBLE_SWEEP\",\"documentation\":\"SLOT_ITEM.DOUBLE_SWEEP\",\"detail\":\"SLOT_ITEM.DOUBLE_SWEEP\"},{\"id\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE\",\"kind\":17,\"label\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE\",\"documentation\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE\",\"detail\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE\"},{\"id\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MOVING_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MOVING_MP\",\"documentation\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MOVING_MP\",\"detail\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MOVING_MP\"},{\"id\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MOVING_NO_PRONE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MOVING_NO_PRONE_MP\",\"documentation\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MOVING_NO_PRONE_MP\",\"detail\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MOVING_NO_PRONE_MP\"},{\"id\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MP\",\"documentation\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MP\",\"detail\":\"SLOT_ITEM.DP_28_LIGHT_MACHINE_GUN_PACKAGE_MP\"},{\"id\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_IS2\",\"kind\":17,\"label\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_IS2\",\"documentation\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_IS2\",\"detail\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_IS2\"},{\"id\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_IS2_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_IS2_MP\",\"documentation\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_IS2_MP\",\"detail\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_IS2_MP\"},{\"id\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_ISU152\",\"kind\":17,\"label\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_ISU152\",\"documentation\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_ISU152\",\"detail\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_ISU152\"},{\"id\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_ISU152_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_ISU152_MP\",\"documentation\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_ISU152_MP\",\"detail\":\"SLOT_ITEM.DSHK38_TURRET_MOUNTED_ISU152_MP\"},{\"id\":\"SLOT_ITEM.DUMMY_FORTIFIED__SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.DUMMY_FORTIFIED__SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.DUMMY_FORTIFIED__SLOT_ITEM\",\"detail\":\"SLOT_ITEM.DUMMY_FORTIFIED__SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.DUMMY_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.DUMMY_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.DUMMY_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.DUMMY_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.DUMMY_SLOT_ITEM_QUAD\",\"kind\":17,\"label\":\"SLOT_ITEM.DUMMY_SLOT_ITEM_QUAD\",\"documentation\":\"SLOT_ITEM.DUMMY_SLOT_ITEM_QUAD\",\"detail\":\"SLOT_ITEM.DUMMY_SLOT_ITEM_QUAD\"},{\"id\":\"SLOT_ITEM.ELEFANT_CRITICAL_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.ELEFANT_CRITICAL_SHOT_MP\",\"documentation\":\"SLOT_ITEM.ELEFANT_CRITICAL_SHOT_MP\",\"detail\":\"SLOT_ITEM.ELEFANT_CRITICAL_SHOT_MP\"},{\"id\":\"SLOT_ITEM.ENGINEER_SALVAGE_KIT_DUMMY\",\"kind\":17,\"label\":\"SLOT_ITEM.ENGINEER_SALVAGE_KIT_DUMMY\",\"documentation\":\"SLOT_ITEM.ENGINEER_SALVAGE_KIT_DUMMY\",\"detail\":\"SLOT_ITEM.ENGINEER_SALVAGE_KIT_DUMMY\"},{\"id\":\"SLOT_ITEM.FLAK_HALFTRACK_ICON_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.FLAK_HALFTRACK_ICON_ITEM\",\"documentation\":\"SLOT_ITEM.FLAK_HALFTRACK_ICON_ITEM\",\"detail\":\"SLOT_ITEM.FLAK_HALFTRACK_ICON_ITEM\"},{\"id\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ACCESSORY\",\"kind\":17,\"label\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ACCESSORY\",\"documentation\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ACCESSORY\",\"detail\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ACCESSORY\"},{\"id\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_FAKE\",\"kind\":17,\"label\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_FAKE\",\"documentation\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_FAKE\",\"detail\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_FAKE\"},{\"id\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ITEM\",\"documentation\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ITEM\",\"detail\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ITEM\"},{\"id\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ITEM_MP\",\"documentation\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ITEM_MP\",\"detail\":\"SLOT_ITEM.FLAMETHROWER_ROKS3_ITEM_MP\"},{\"id\":\"SLOT_ITEM.FOR_THE_FATHERLAND_ACTIVE\",\"kind\":17,\"label\":\"SLOT_ITEM.FOR_THE_FATHERLAND_ACTIVE\",\"documentation\":\"SLOT_ITEM.FOR_THE_FATHERLAND_ACTIVE\",\"detail\":\"SLOT_ITEM.FOR_THE_FATHERLAND_ACTIVE\"},{\"id\":\"SLOT_ITEM.FRWD_HQ_SMOKE_MARKER_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.FRWD_HQ_SMOKE_MARKER_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.FRWD_HQ_SMOKE_MARKER_GRENADE_MP\",\"detail\":\"SLOT_ITEM.FRWD_HQ_SMOKE_MARKER_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.FWD_HQ_EMPLACEMENT_SUPPORT\",\"kind\":17,\"label\":\"SLOT_ITEM.FWD_HQ_EMPLACEMENT_SUPPORT\",\"documentation\":\"SLOT_ITEM.FWD_HQ_EMPLACEMENT_SUPPORT\",\"detail\":\"SLOT_ITEM.FWD_HQ_EMPLACEMENT_SUPPORT\"},{\"id\":\"SLOT_ITEM.G43_SNIPER_INCENDIARY_SLOT_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.G43_SNIPER_INCENDIARY_SLOT_ITEM_MP\",\"documentation\":\"SLOT_ITEM.G43_SNIPER_INCENDIARY_SLOT_ITEM_MP\",\"detail\":\"SLOT_ITEM.G43_SNIPER_INCENDIARY_SLOT_ITEM_MP\"},{\"id\":\"SLOT_ITEM.GENERIC_MG34_LMG_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.GENERIC_MG34_LMG_MP\",\"documentation\":\"SLOT_ITEM.GENERIC_MG34_LMG_MP\",\"detail\":\"SLOT_ITEM.GENERIC_MG34_LMG_MP\"},{\"id\":\"SLOT_ITEM.GRENADIER_MG42_LMG\",\"kind\":17,\"label\":\"SLOT_ITEM.GRENADIER_MG42_LMG\",\"documentation\":\"SLOT_ITEM.GRENADIER_MG42_LMG\",\"detail\":\"SLOT_ITEM.GRENADIER_MG42_LMG\"},{\"id\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MOVING_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MOVING_MP\",\"documentation\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MOVING_MP\",\"detail\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MOVING_MP\"},{\"id\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MOVING_NO_PRONE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MOVING_NO_PRONE_MP\",\"documentation\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MOVING_NO_PRONE_MP\",\"detail\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MOVING_NO_PRONE_MP\"},{\"id\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MP\",\"documentation\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MP\",\"detail\":\"SLOT_ITEM.GRENADIER_MG42_LMG_MP\"},{\"id\":\"SLOT_ITEM.GRENADIER_PANZERFAUST\",\"kind\":17,\"label\":\"SLOT_ITEM.GRENADIER_PANZERFAUST\",\"documentation\":\"SLOT_ITEM.GRENADIER_PANZERFAUST\",\"detail\":\"SLOT_ITEM.GRENADIER_PANZERFAUST\"},{\"id\":\"SLOT_ITEM.GRENADIER_PANZERFAUST_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.GRENADIER_PANZERFAUST_MP\",\"documentation\":\"SLOT_ITEM.GRENADIER_PANZERFAUST_MP\",\"detail\":\"SLOT_ITEM.GRENADIER_PANZERFAUST_MP\"},{\"id\":\"SLOT_ITEM.GROUND_ATTACK_SNIPER_RIFLE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.GROUND_ATTACK_SNIPER_RIFLE_ITEM\",\"documentation\":\"SLOT_ITEM.GROUND_ATTACK_SNIPER_RIFLE_ITEM\",\"detail\":\"SLOT_ITEM.GROUND_ATTACK_SNIPER_RIFLE_ITEM\"},{\"id\":\"SLOT_ITEM.GUARD_TROOP_ASSAULT_PACKAGE\",\"kind\":17,\"label\":\"SLOT_ITEM.GUARD_TROOP_ASSAULT_PACKAGE\",\"documentation\":\"SLOT_ITEM.GUARD_TROOP_ASSAULT_PACKAGE\",\"detail\":\"SLOT_ITEM.GUARD_TROOP_ASSAULT_PACKAGE\"},{\"id\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_LEFT\",\"kind\":17,\"label\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_LEFT\",\"documentation\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_LEFT\",\"detail\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_LEFT\"},{\"id\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_LEFT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_LEFT_MP\",\"documentation\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_LEFT_MP\",\"detail\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_LEFT_MP\"},{\"id\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_RIGHT\",\"kind\":17,\"label\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_RIGHT\",\"documentation\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_RIGHT\",\"detail\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_RIGHT\"},{\"id\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_RIGHT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_RIGHT_MP\",\"documentation\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_RIGHT_MP\",\"detail\":\"SLOT_ITEM.HALFTRACK_FLAMETHROWER_RIGHT_MP\"},{\"id\":\"SLOT_ITEM.HETZER_FLAMETHROWER_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.HETZER_FLAMETHROWER_ITEM_MP\",\"documentation\":\"SLOT_ITEM.HETZER_FLAMETHROWER_ITEM_MP\",\"detail\":\"SLOT_ITEM.HETZER_FLAMETHROWER_ITEM_MP\"},{\"id\":\"SLOT_ITEM.HULLDOWN_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.HULLDOWN_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.HULLDOWN_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.HULLDOWN_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.INFRARED_SQUAD_SETUP\",\"kind\":17,\"label\":\"SLOT_ITEM.INFRARED_SQUAD_SETUP\",\"documentation\":\"SLOT_ITEM.INFRARED_SQUAD_SETUP\",\"detail\":\"SLOT_ITEM.INFRARED_SQUAD_SETUP\"},{\"id\":\"SLOT_ITEM.ISU_PIERCING_SHOT_ROUND_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.ISU_PIERCING_SHOT_ROUND_ITEM\",\"documentation\":\"SLOT_ITEM.ISU_PIERCING_SHOT_ROUND_ITEM\",\"detail\":\"SLOT_ITEM.ISU_PIERCING_SHOT_ROUND_ITEM\"},{\"id\":\"SLOT_ITEM.ISU_PIERCING_SHOT_ROUND_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.ISU_PIERCING_SHOT_ROUND_ITEM_MP\",\"documentation\":\"SLOT_ITEM.ISU_PIERCING_SHOT_ROUND_ITEM_MP\",\"detail\":\"SLOT_ITEM.ISU_PIERCING_SHOT_ROUND_ITEM_MP\"},{\"id\":\"SLOT_ITEM.JAEGER_G43_RIFLE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.JAEGER_G43_RIFLE_ITEM\",\"documentation\":\"SLOT_ITEM.JAEGER_G43_RIFLE_ITEM\",\"detail\":\"SLOT_ITEM.JAEGER_G43_RIFLE_ITEM\"},{\"id\":\"SLOT_ITEM.JAEGER_G43_RIFLE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.JAEGER_G43_RIFLE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.JAEGER_G43_RIFLE_ITEM_MP\",\"detail\":\"SLOT_ITEM.JAEGER_G43_RIFLE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.JAEGER_LIGHT_RECON_G43\",\"kind\":17,\"label\":\"SLOT_ITEM.JAEGER_LIGHT_RECON_G43\",\"documentation\":\"SLOT_ITEM.JAEGER_LIGHT_RECON_G43\",\"detail\":\"SLOT_ITEM.JAEGER_LIGHT_RECON_G43\"},{\"id\":\"SLOT_ITEM.JAEGER_PANZERGREN_G43_RIFLE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.JAEGER_PANZERGREN_G43_RIFLE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.JAEGER_PANZERGREN_G43_RIFLE_ITEM_MP\",\"detail\":\"SLOT_ITEM.JAEGER_PANZERGREN_G43_RIFLE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.KAR_98K_ANTITANK_RIFLE_GRENADE_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.KAR_98K_ANTITANK_RIFLE_GRENADE_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.KAR_98K_ANTITANK_RIFLE_GRENADE_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.KAR_98K_ANTITANK_RIFLE_GRENADE_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.KAR_98K_ANTITANK_RIFLE_GRENADE_SLOT_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.KAR_98K_ANTITANK_RIFLE_GRENADE_SLOT_ITEM_MP\",\"documentation\":\"SLOT_ITEM.KAR_98K_ANTITANK_RIFLE_GRENADE_SLOT_ITEM_MP\",\"detail\":\"SLOT_ITEM.KAR_98K_ANTITANK_RIFLE_GRENADE_SLOT_ITEM_MP\"},{\"id\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM_MP\",\"documentation\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM_MP\",\"detail\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM_MP\"},{\"id\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM_TUTORIAL\",\"kind\":17,\"label\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM_TUTORIAL\",\"documentation\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM_TUTORIAL\",\"detail\":\"SLOT_ITEM.KAR_98K_RIFLE_GRENADE_SLOT_ITEM_TUTORIAL\"},{\"id\":\"SLOT_ITEM.KV_8_45MM_GUN_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.KV_8_45MM_GUN_ITEM\",\"documentation\":\"SLOT_ITEM.KV_8_45MM_GUN_ITEM\",\"detail\":\"SLOT_ITEM.KV_8_45MM_GUN_ITEM\"},{\"id\":\"SLOT_ITEM.KV_8_ATO_41_FLAMETHROWER_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.KV_8_ATO_41_FLAMETHROWER_ITEM_MP\",\"documentation\":\"SLOT_ITEM.KV_8_ATO_41_FLAMETHROWER_ITEM_MP\",\"detail\":\"SLOT_ITEM.KV_8_ATO_41_FLAMETHROWER_ITEM_MP\"},{\"id\":\"SLOT_ITEM.KWK_20MM_222_ARMORED_CAR_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.KWK_20MM_222_ARMORED_CAR_MP\",\"documentation\":\"SLOT_ITEM.KWK_20MM_222_ARMORED_CAR_MP\",\"detail\":\"SLOT_ITEM.KWK_20MM_222_ARMORED_CAR_MP\"},{\"id\":\"SLOT_ITEM.LAND_MATTRESS_25LB_ROCKET\",\"kind\":17,\"label\":\"SLOT_ITEM.LAND_MATTRESS_25LB_ROCKET\",\"documentation\":\"SLOT_ITEM.LAND_MATTRESS_25LB_ROCKET\",\"detail\":\"SLOT_ITEM.LAND_MATTRESS_25LB_ROCKET\"},{\"id\":\"SLOT_ITEM.LAND_MATTRESS_60LB_ROCKET\",\"kind\":17,\"label\":\"SLOT_ITEM.LAND_MATTRESS_60LB_ROCKET\",\"documentation\":\"SLOT_ITEM.LAND_MATTRESS_60LB_ROCKET\",\"detail\":\"SLOT_ITEM.LAND_MATTRESS_60LB_ROCKET\"},{\"id\":\"SLOT_ITEM.LAND_MATTRESS_EMPTY\",\"kind\":17,\"label\":\"SLOT_ITEM.LAND_MATTRESS_EMPTY\",\"documentation\":\"SLOT_ITEM.LAND_MATTRESS_EMPTY\",\"detail\":\"SLOT_ITEM.LAND_MATTRESS_EMPTY\"},{\"id\":\"SLOT_ITEM.LAND_MATTRESS_PHOSPHORUS_ROCKET\",\"kind\":17,\"label\":\"SLOT_ITEM.LAND_MATTRESS_PHOSPHORUS_ROCKET\",\"documentation\":\"SLOT_ITEM.LAND_MATTRESS_PHOSPHORUS_ROCKET\",\"detail\":\"SLOT_ITEM.LAND_MATTRESS_PHOSPHORUS_ROCKET\"},{\"id\":\"SLOT_ITEM.LAND_MATTRESS_ROCKET_MARKER\",\"kind\":17,\"label\":\"SLOT_ITEM.LAND_MATTRESS_ROCKET_MARKER\",\"documentation\":\"SLOT_ITEM.LAND_MATTRESS_ROCKET_MARKER\",\"detail\":\"SLOT_ITEM.LAND_MATTRESS_ROCKET_MARKER\"},{\"id\":\"SLOT_ITEM.LEE_ENFIELD_RIFLE_GRENADE_SLOT_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.LEE_ENFIELD_RIFLE_GRENADE_SLOT_ITEM_MP\",\"documentation\":\"SLOT_ITEM.LEE_ENFIELD_RIFLE_GRENADE_SLOT_ITEM_MP\",\"detail\":\"SLOT_ITEM.LEE_ENFIELD_RIFLE_GRENADE_SLOT_ITEM_MP\"},{\"id\":\"SLOT_ITEM.LIEUTENANT_GARRISON_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.LIEUTENANT_GARRISON_ITEM\",\"documentation\":\"SLOT_ITEM.LIEUTENANT_GARRISON_ITEM\",\"detail\":\"SLOT_ITEM.LIEUTENANT_GARRISON_ITEM\"},{\"id\":\"SLOT_ITEM.LIGHT_AT_MINE_RECENTLY_HIT_HEAVY_VEHICLE\",\"kind\":17,\"label\":\"SLOT_ITEM.LIGHT_AT_MINE_RECENTLY_HIT_HEAVY_VEHICLE\",\"documentation\":\"SLOT_ITEM.LIGHT_AT_MINE_RECENTLY_HIT_HEAVY_VEHICLE\",\"detail\":\"SLOT_ITEM.LIGHT_AT_MINE_RECENTLY_HIT_HEAVY_VEHICLE\"},{\"id\":\"SLOT_ITEM.LIGHT_AT_MINE_RECENTLY_HIT_LIGHT_VEHICLE\",\"kind\":17,\"label\":\"SLOT_ITEM.LIGHT_AT_MINE_RECENTLY_HIT_LIGHT_VEHICLE\",\"documentation\":\"SLOT_ITEM.LIGHT_AT_MINE_RECENTLY_HIT_LIGHT_VEHICLE\",\"detail\":\"SLOT_ITEM.LIGHT_AT_MINE_RECENTLY_HIT_LIGHT_VEHICLE\"},{\"id\":\"SLOT_ITEM.M01_CONSCRIPT_MOSIN_NAGANT\",\"kind\":17,\"label\":\"SLOT_ITEM.M01_CONSCRIPT_MOSIN_NAGANT\",\"documentation\":\"SLOT_ITEM.M01_CONSCRIPT_MOSIN_NAGANT\",\"detail\":\"SLOT_ITEM.M01_CONSCRIPT_MOSIN_NAGANT\"},{\"id\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED\",\"kind\":17,\"label\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED\",\"documentation\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED\",\"detail\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED\"},{\"id\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED_LEFT\",\"kind\":17,\"label\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED_LEFT\",\"documentation\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED_LEFT\",\"detail\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED_LEFT\"},{\"id\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED_MAIN_GUN\",\"kind\":17,\"label\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED_MAIN_GUN\",\"documentation\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED_MAIN_GUN\",\"detail\":\"SLOT_ITEM.M15A1_AA_MODE_ACTIVATED_MAIN_GUN\"},{\"id\":\"SLOT_ITEM.M17_RIFLE_GRENADE_SLOT_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.M17_RIFLE_GRENADE_SLOT_ITEM_MP\",\"documentation\":\"SLOT_ITEM.M17_RIFLE_GRENADE_SLOT_ITEM_MP\",\"detail\":\"SLOT_ITEM.M17_RIFLE_GRENADE_SLOT_ITEM_MP\"},{\"id\":\"SLOT_ITEM.M1919A6_LMG_ICON_DUMMY\",\"kind\":17,\"label\":\"SLOT_ITEM.M1919A6_LMG_ICON_DUMMY\",\"documentation\":\"SLOT_ITEM.M1919A6_LMG_ICON_DUMMY\",\"detail\":\"SLOT_ITEM.M1919A6_LMG_ICON_DUMMY\"},{\"id\":\"SLOT_ITEM.M1C_GARAND\",\"kind\":17,\"label\":\"SLOT_ITEM.M1C_GARAND\",\"documentation\":\"SLOT_ITEM.M1C_GARAND\",\"detail\":\"SLOT_ITEM.M1C_GARAND\"},{\"id\":\"SLOT_ITEM.M1C_PATHFINDER_GARAND\",\"kind\":17,\"label\":\"SLOT_ITEM.M1C_PATHFINDER_GARAND\",\"documentation\":\"SLOT_ITEM.M1C_PATHFINDER_GARAND\",\"detail\":\"SLOT_ITEM.M1C_PATHFINDER_GARAND\"},{\"id\":\"SLOT_ITEM.M23_SMOKE_STREAM_GRENADE_ANTI_TANK_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.M23_SMOKE_STREAM_GRENADE_ANTI_TANK_ITEM_MP\",\"documentation\":\"SLOT_ITEM.M23_SMOKE_STREAM_GRENADE_ANTI_TANK_ITEM_MP\",\"detail\":\"SLOT_ITEM.M23_SMOKE_STREAM_GRENADE_ANTI_TANK_ITEM_MP\"},{\"id\":\"SLOT_ITEM.M23_SMOKE_STREAM_GRENADE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.M23_SMOKE_STREAM_GRENADE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.M23_SMOKE_STREAM_GRENADE_ITEM_MP\",\"detail\":\"SLOT_ITEM.M23_SMOKE_STREAM_GRENADE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.M24_ANTI_TANK_GRENADIER_GRENADE\",\"kind\":17,\"label\":\"SLOT_ITEM.M24_ANTI_TANK_GRENADIER_GRENADE\",\"documentation\":\"SLOT_ITEM.M24_ANTI_TANK_GRENADIER_GRENADE\",\"detail\":\"SLOT_ITEM.M24_ANTI_TANK_GRENADIER_GRENADE\"},{\"id\":\"SLOT_ITEM.M2HB_50CAL_SHERMAN\",\"kind\":17,\"label\":\"SLOT_ITEM.M2HB_50CAL_SHERMAN\",\"documentation\":\"SLOT_ITEM.M2HB_50CAL_SHERMAN\",\"detail\":\"SLOT_ITEM.M2HB_50CAL_SHERMAN\"},{\"id\":\"SLOT_ITEM.M2HB_TURRET_MOUNTED_M8_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.M2HB_TURRET_MOUNTED_M8_MP\",\"documentation\":\"SLOT_ITEM.M2HB_TURRET_MOUNTED_M8_MP\",\"detail\":\"SLOT_ITEM.M2HB_TURRET_MOUNTED_M8_MP\"},{\"id\":\"SLOT_ITEM.M2HB_TURRET_MOUNTED_SHERMAN_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.M2HB_TURRET_MOUNTED_SHERMAN_MP\",\"documentation\":\"SLOT_ITEM.M2HB_TURRET_MOUNTED_SHERMAN_MP\",\"detail\":\"SLOT_ITEM.M2HB_TURRET_MOUNTED_SHERMAN_MP\"},{\"id\":\"SLOT_ITEM.M5_STUART_DAMAGE_ENGINE_SHOT_SLOT_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.M5_STUART_DAMAGE_ENGINE_SHOT_SLOT_ITEM_MP\",\"documentation\":\"SLOT_ITEM.M5_STUART_DAMAGE_ENGINE_SHOT_SLOT_ITEM_MP\",\"detail\":\"SLOT_ITEM.M5_STUART_DAMAGE_ENGINE_SHOT_SLOT_ITEM_MP\"},{\"id\":\"SLOT_ITEM.M5_STUART_SHELL_SHOCK_SHOT_SLOT_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.M5_STUART_SHELL_SHOCK_SHOT_SLOT_ITEM_MP\",\"documentation\":\"SLOT_ITEM.M5_STUART_SHELL_SHOCK_SHOT_SLOT_ITEM_MP\",\"detail\":\"SLOT_ITEM.M5_STUART_SHELL_SHOCK_SHOT_SLOT_ITEM_MP\"},{\"id\":\"SLOT_ITEM.M8_CANISTER_SHOT_SLOT_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.M8_CANISTER_SHOT_SLOT_ITEM_MP\",\"documentation\":\"SLOT_ITEM.M8_CANISTER_SHOT_SLOT_ITEM_MP\",\"detail\":\"SLOT_ITEM.M8_CANISTER_SHOT_SLOT_ITEM_MP\"},{\"id\":\"SLOT_ITEM.M8_GREYHOUND_RECON_ACTIVATED\",\"kind\":17,\"label\":\"SLOT_ITEM.M8_GREYHOUND_RECON_ACTIVATED\",\"documentation\":\"SLOT_ITEM.M8_GREYHOUND_RECON_ACTIVATED\",\"detail\":\"SLOT_ITEM.M8_GREYHOUND_RECON_ACTIVATED\"},{\"id\":\"SLOT_ITEM.MAJOR_GARRISON_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.MAJOR_GARRISON_ITEM\",\"documentation\":\"SLOT_ITEM.MAJOR_GARRISON_ITEM\",\"detail\":\"SLOT_ITEM.MAJOR_GARRISON_ITEM\"},{\"id\":\"SLOT_ITEM.MG34_PINTLE_HETZER\",\"kind\":17,\"label\":\"SLOT_ITEM.MG34_PINTLE_HETZER\",\"documentation\":\"SLOT_ITEM.MG34_PINTLE_HETZER\",\"detail\":\"SLOT_ITEM.MG34_PINTLE_HETZER\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_BRUMMBAR\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_BRUMMBAR\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_BRUMMBAR\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_BRUMMBAR\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_BRUMMBAR_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_BRUMMBAR_MP\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_BRUMMBAR_MP\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_BRUMMBAR_MP\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_KING_TIGER_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_KING_TIGER_MP\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_KING_TIGER_MP\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_KING_TIGER_MP\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER_MP\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER_MP\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER_MP\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER_WG_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER_WG_MP\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER_WG_MP\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PANTHER_WG_MP\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PZIV\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PZIV\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PZIV\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PZIV\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PZIV_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PZIV_MP\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PZIV_MP\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_PZIV_MP\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_STUGIV\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_STUGIV\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_STUGIV\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_STUGIV\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_STUGIV_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_STUGIV_MP\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_STUGIV_MP\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_STUGIV_MP\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER_MP\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER_MP\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER_MP\"},{\"id\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER_TOW\",\"kind\":17,\"label\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER_TOW\",\"documentation\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER_TOW\",\"detail\":\"SLOT_ITEM.MG42_TURRET_MOUNTED_TIGER_TOW\"},{\"id\":\"SLOT_ITEM.MINESWEEPER\",\"kind\":17,\"label\":\"SLOT_ITEM.MINESWEEPER\",\"documentation\":\"SLOT_ITEM.MINESWEEPER\",\"detail\":\"SLOT_ITEM.MINESWEEPER\"},{\"id\":\"SLOT_ITEM.MORTAR_FLARE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.MORTAR_FLARE_MP\",\"documentation\":\"SLOT_ITEM.MORTAR_FLARE_MP\",\"detail\":\"SLOT_ITEM.MORTAR_FLARE_MP\"},{\"id\":\"SLOT_ITEM.MOSIN_NAGANT_SNIPER_RIFLE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.MOSIN_NAGANT_SNIPER_RIFLE_ITEM\",\"documentation\":\"SLOT_ITEM.MOSIN_NAGANT_SNIPER_RIFLE_ITEM\",\"detail\":\"SLOT_ITEM.MOSIN_NAGANT_SNIPER_RIFLE_ITEM\"},{\"id\":\"SLOT_ITEM.MOSIN_NAGANT_SNIPER_RIFLE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.MOSIN_NAGANT_SNIPER_RIFLE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.MOSIN_NAGANT_SNIPER_RIFLE_ITEM_MP\",\"detail\":\"SLOT_ITEM.MOSIN_NAGANT_SNIPER_RIFLE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.OBERSOLDATEN_MG34_LMG_MOVING_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.OBERSOLDATEN_MG34_LMG_MOVING_MP\",\"documentation\":\"SLOT_ITEM.OBERSOLDATEN_MG34_LMG_MOVING_MP\",\"detail\":\"SLOT_ITEM.OBERSOLDATEN_MG34_LMG_MOVING_MP\"},{\"id\":\"SLOT_ITEM.OBERSOLDATEN_MG34_LMG_MOVING_NO_PRONE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.OBERSOLDATEN_MG34_LMG_MOVING_NO_PRONE_MP\",\"documentation\":\"SLOT_ITEM.OBERSOLDATEN_MG34_LMG_MOVING_NO_PRONE_MP\",\"detail\":\"SLOT_ITEM.OBERSOLDATEN_MG34_LMG_MOVING_NO_PRONE_MP\"},{\"id\":\"SLOT_ITEM.OBERSOLDATEN_MP44_INFARED\",\"kind\":17,\"label\":\"SLOT_ITEM.OBERSOLDATEN_MP44_INFARED\",\"documentation\":\"SLOT_ITEM.OBERSOLDATEN_MP44_INFARED\",\"detail\":\"SLOT_ITEM.OBERSOLDATEN_MP44_INFARED\"},{\"id\":\"SLOT_ITEM.OPEL_SUPPLY_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.OPEL_SUPPLY_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.OPEL_SUPPLY_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.OPEL_SUPPLY_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.PAK40_CRITICAL_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PAK40_CRITICAL_SHOT_MP\",\"documentation\":\"SLOT_ITEM.PAK40_CRITICAL_SHOT_MP\",\"detail\":\"SLOT_ITEM.PAK40_CRITICAL_SHOT_MP\"},{\"id\":\"SLOT_ITEM.PAK43_CRITICAL_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PAK43_CRITICAL_SHOT_MP\",\"documentation\":\"SLOT_ITEM.PAK43_CRITICAL_SHOT_MP\",\"detail\":\"SLOT_ITEM.PAK43_CRITICAL_SHOT_MP\"},{\"id\":\"SLOT_ITEM.PANZER_GRENADIER_MP44_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZER_GRENADIER_MP44_ITEM\",\"documentation\":\"SLOT_ITEM.PANZER_GRENADIER_MP44_ITEM\",\"detail\":\"SLOT_ITEM.PANZER_GRENADIER_MP44_ITEM\"},{\"id\":\"SLOT_ITEM.PANZER_GRENADIER_MP44_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZER_GRENADIER_MP44_ITEM_MP\",\"documentation\":\"SLOT_ITEM.PANZER_GRENADIER_MP44_ITEM_MP\",\"detail\":\"SLOT_ITEM.PANZER_GRENADIER_MP44_ITEM_MP\"},{\"id\":\"SLOT_ITEM.PANZERBUSCHE_39\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERBUSCHE_39\",\"documentation\":\"SLOT_ITEM.PANZERBUSCHE_39\",\"detail\":\"SLOT_ITEM.PANZERBUSCHE_39\"},{\"id\":\"SLOT_ITEM.PANZERBUSCHE_39_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERBUSCHE_39_MP\",\"documentation\":\"SLOT_ITEM.PANZERBUSCHE_39_MP\",\"detail\":\"SLOT_ITEM.PANZERBUSCHE_39_MP\"},{\"id\":\"SLOT_ITEM.PANZERFUISILIER_FLARE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERFUISILIER_FLARE_MP\",\"documentation\":\"SLOT_ITEM.PANZERFUISILIER_FLARE_MP\",\"detail\":\"SLOT_ITEM.PANZERFUISILIER_FLARE_MP\"},{\"id\":\"SLOT_ITEM.PANZERFUSILIER_AT_RIFLE_GRENADE\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERFUSILIER_AT_RIFLE_GRENADE\",\"documentation\":\"SLOT_ITEM.PANZERFUSILIER_AT_RIFLE_GRENADE\",\"detail\":\"SLOT_ITEM.PANZERFUSILIER_AT_RIFLE_GRENADE\"},{\"id\":\"SLOT_ITEM.PANZERFUSILIER_G43\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERFUSILIER_G43\",\"documentation\":\"SLOT_ITEM.PANZERFUSILIER_G43\",\"detail\":\"SLOT_ITEM.PANZERFUSILIER_G43\"},{\"id\":\"SLOT_ITEM.PANZERFUSILIER_GRENADE\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERFUSILIER_GRENADE\",\"documentation\":\"SLOT_ITEM.PANZERFUSILIER_GRENADE\",\"detail\":\"SLOT_ITEM.PANZERFUSILIER_GRENADE\"},{\"id\":\"SLOT_ITEM.PANZERSHRECK\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERSHRECK\",\"documentation\":\"SLOT_ITEM.PANZERSHRECK\",\"detail\":\"SLOT_ITEM.PANZERSHRECK\"},{\"id\":\"SLOT_ITEM.PANZERSHRECK_AT_WEAPON_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERSHRECK_AT_WEAPON_ITEM\",\"documentation\":\"SLOT_ITEM.PANZERSHRECK_AT_WEAPON_ITEM\",\"detail\":\"SLOT_ITEM.PANZERSHRECK_AT_WEAPON_ITEM\"},{\"id\":\"SLOT_ITEM.PANZERSHRECK_DESTROY_ENGINE\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERSHRECK_DESTROY_ENGINE\",\"documentation\":\"SLOT_ITEM.PANZERSHRECK_DESTROY_ENGINE\",\"detail\":\"SLOT_ITEM.PANZERSHRECK_DESTROY_ENGINE\"},{\"id\":\"SLOT_ITEM.PANZERSHRECK_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERSHRECK_MP\",\"documentation\":\"SLOT_ITEM.PANZERSHRECK_MP\",\"detail\":\"SLOT_ITEM.PANZERSHRECK_MP\"},{\"id\":\"SLOT_ITEM.PANZERSHRECK_SLOT1\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERSHRECK_SLOT1\",\"documentation\":\"SLOT_ITEM.PANZERSHRECK_SLOT1\",\"detail\":\"SLOT_ITEM.PANZERSHRECK_SLOT1\"},{\"id\":\"SLOT_ITEM.PANZERSHRECK_SLOT1_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERSHRECK_SLOT1_MP\",\"documentation\":\"SLOT_ITEM.PANZERSHRECK_SLOT1_MP\",\"detail\":\"SLOT_ITEM.PANZERSHRECK_SLOT1_MP\"},{\"id\":\"SLOT_ITEM.PANZERSHRECK_SLOT2\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERSHRECK_SLOT2\",\"documentation\":\"SLOT_ITEM.PANZERSHRECK_SLOT2\",\"detail\":\"SLOT_ITEM.PANZERSHRECK_SLOT2\"},{\"id\":\"SLOT_ITEM.PANZERSHRECK_SLOT2_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PANZERSHRECK_SLOT2_MP\",\"documentation\":\"SLOT_ITEM.PANZERSHRECK_SLOT2_MP\",\"detail\":\"SLOT_ITEM.PANZERSHRECK_SLOT2_MP\"},{\"id\":\"SLOT_ITEM.PARADROP_REINFORCE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.PARADROP_REINFORCE_ITEM\",\"documentation\":\"SLOT_ITEM.PARADROP_REINFORCE_ITEM\",\"detail\":\"SLOT_ITEM.PARADROP_REINFORCE_ITEM\"},{\"id\":\"SLOT_ITEM.PARATROOPER_M1919A6_LMG_MOVING_NO_PRONE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PARATROOPER_M1919A6_LMG_MOVING_NO_PRONE_MP\",\"documentation\":\"SLOT_ITEM.PARATROOPER_M1919A6_LMG_MOVING_NO_PRONE_MP\",\"detail\":\"SLOT_ITEM.PARATROOPER_M1919A6_LMG_MOVING_NO_PRONE_MP\"},{\"id\":\"SLOT_ITEM.PARATROOPER_M1919A6_LMG_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PARATROOPER_M1919A6_LMG_MP\",\"documentation\":\"SLOT_ITEM.PARATROOPER_M1919A6_LMG_MP\",\"detail\":\"SLOT_ITEM.PARATROOPER_M1919A6_LMG_MP\"},{\"id\":\"SLOT_ITEM.PARATROOPER_MK2_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PARATROOPER_MK2_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.PARATROOPER_MK2_GRENADE_MP\",\"detail\":\"SLOT_ITEM.PARATROOPER_MK2_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.PARATROOPER_THOMPSON_DUMMY\",\"kind\":17,\"label\":\"SLOT_ITEM.PARATROOPER_THOMPSON_DUMMY\",\"documentation\":\"SLOT_ITEM.PARATROOPER_THOMPSON_DUMMY\",\"detail\":\"SLOT_ITEM.PARATROOPER_THOMPSON_DUMMY\"},{\"id\":\"SLOT_ITEM.PARATROOPER_THOMPSON_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PARATROOPER_THOMPSON_MP\",\"documentation\":\"SLOT_ITEM.PARATROOPER_THOMPSON_MP\",\"detail\":\"SLOT_ITEM.PARATROOPER_THOMPSON_MP\"},{\"id\":\"SLOT_ITEM.PARTISAN_DP_28_LIGHT_MACHINE_GUN_PACKAGE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PARTISAN_DP_28_LIGHT_MACHINE_GUN_PACKAGE_MP\",\"documentation\":\"SLOT_ITEM.PARTISAN_DP_28_LIGHT_MACHINE_GUN_PACKAGE_MP\",\"detail\":\"SLOT_ITEM.PARTISAN_DP_28_LIGHT_MACHINE_GUN_PACKAGE_MP\"},{\"id\":\"SLOT_ITEM.PARTISAN_MG42_LMG_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PARTISAN_MG42_LMG_MP\",\"documentation\":\"SLOT_ITEM.PARTISAN_MG42_LMG_MP\",\"detail\":\"SLOT_ITEM.PARTISAN_MG42_LMG_MP\"},{\"id\":\"SLOT_ITEM.PATHFINDERS_SNIPER_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.PATHFINDERS_SNIPER_ITEM\",\"documentation\":\"SLOT_ITEM.PATHFINDERS_SNIPER_ITEM\",\"detail\":\"SLOT_ITEM.PATHFINDERS_SNIPER_ITEM\"},{\"id\":\"SLOT_ITEM.PENAL_TROOP_SATCHEL_CHARGE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PENAL_TROOP_SATCHEL_CHARGE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.PENAL_TROOP_SATCHEL_CHARGE_ITEM_MP\",\"detail\":\"SLOT_ITEM.PENAL_TROOP_SATCHEL_CHARGE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.PERSHING_HVAP_PIERCING_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PERSHING_HVAP_PIERCING_ITEM_MP\",\"documentation\":\"SLOT_ITEM.PERSHING_HVAP_PIERCING_ITEM_MP\",\"detail\":\"SLOT_ITEM.PERSHING_HVAP_PIERCING_ITEM_MP\"},{\"id\":\"SLOT_ITEM.PIAT_SPIGOT_MORTAR_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PIAT_SPIGOT_MORTAR_MP\",\"documentation\":\"SLOT_ITEM.PIAT_SPIGOT_MORTAR_MP\",\"detail\":\"SLOT_ITEM.PIAT_SPIGOT_MORTAR_MP\"},{\"id\":\"SLOT_ITEM.PIONEER_FLAMETHROWER\",\"kind\":17,\"label\":\"SLOT_ITEM.PIONEER_FLAMETHROWER\",\"documentation\":\"SLOT_ITEM.PIONEER_FLAMETHROWER\",\"detail\":\"SLOT_ITEM.PIONEER_FLAMETHROWER\"},{\"id\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_ABILITY\",\"kind\":17,\"label\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_ABILITY\",\"documentation\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_ABILITY\",\"detail\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_ABILITY\"},{\"id\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_ABILITY_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_ABILITY_MP\",\"documentation\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_ABILITY_MP\",\"detail\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_ABILITY_MP\"},{\"id\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_MP\",\"documentation\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_MP\",\"detail\":\"SLOT_ITEM.PIONEER_FLAMETHROWER_MP\"},{\"id\":\"SLOT_ITEM.PIONEER_STUN_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PIONEER_STUN_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.PIONEER_STUN_GRENADE_MP\",\"detail\":\"SLOT_ITEM.PIONEER_STUN_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.PM_AEF_OFFENSIVE_PUNCH_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.PM_AEF_OFFENSIVE_PUNCH_ITEM\",\"documentation\":\"SLOT_ITEM.PM_AEF_OFFENSIVE_PUNCH_ITEM\",\"detail\":\"SLOT_ITEM.PM_AEF_OFFENSIVE_PUNCH_ITEM\"},{\"id\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE\",\"kind\":17,\"label\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE\",\"documentation\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE\",\"detail\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE\"},{\"id\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE_DUMMY_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE_DUMMY_ITEM_MP\",\"documentation\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE_DUMMY_ITEM_MP\",\"detail\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE_DUMMY_ITEM_MP\"},{\"id\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE_MP\",\"documentation\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE_MP\",\"detail\":\"SLOT_ITEM.PPSH41_ASSAULT_PACKAGE_MP\"},{\"id\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_CONSCRIPT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_CONSCRIPT_MP\",\"documentation\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_CONSCRIPT_MP\",\"detail\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_CONSCRIPT_MP\"},{\"id\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP\",\"kind\":17,\"label\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP\",\"documentation\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP\",\"detail\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP\"},{\"id\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP_ASSAULT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP_ASSAULT_MP\",\"documentation\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP_ASSAULT_MP\",\"detail\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP_ASSAULT_MP\"},{\"id\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP_MP\",\"documentation\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP_MP\",\"detail\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_GUARD_TROOP_MP\"},{\"id\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_PARTISAN_TROOP_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_PARTISAN_TROOP_MP\",\"documentation\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_PARTISAN_TROOP_MP\",\"detail\":\"SLOT_ITEM.PTRS_41_ANTI_TANK_RIFLE_PARTISAN_TROOP_MP\"},{\"id\":\"SLOT_ITEM.PUMA_AIMED_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PUMA_AIMED_SHOT_MP\",\"documentation\":\"SLOT_ITEM.PUMA_AIMED_SHOT_MP\",\"detail\":\"SLOT_ITEM.PUMA_AIMED_SHOT_MP\"},{\"id\":\"SLOT_ITEM.PUMA_CRITICAL_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.PUMA_CRITICAL_SHOT_MP\",\"documentation\":\"SLOT_ITEM.PUMA_CRITICAL_SHOT_MP\",\"detail\":\"SLOT_ITEM.PUMA_CRITICAL_SHOT_MP\"},{\"id\":\"SLOT_ITEM.RANGER_PANZERSHRECK_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.RANGER_PANZERSHRECK_MP\",\"documentation\":\"SLOT_ITEM.RANGER_PANZERSHRECK_MP\",\"detail\":\"SLOT_ITEM.RANGER_PANZERSHRECK_MP\"},{\"id\":\"SLOT_ITEM.REAR_ECHELON_RIFLE_GRENADE_ACTIVATED\",\"kind\":17,\"label\":\"SLOT_ITEM.REAR_ECHELON_RIFLE_GRENADE_ACTIVATED\",\"documentation\":\"SLOT_ITEM.REAR_ECHELON_RIFLE_GRENADE_ACTIVATED\",\"detail\":\"SLOT_ITEM.REAR_ECHELON_RIFLE_GRENADE_ACTIVATED\"},{\"id\":\"SLOT_ITEM.REAR_ECHELON_RIFLE_VOLLEY_FIRE\",\"kind\":17,\"label\":\"SLOT_ITEM.REAR_ECHELON_RIFLE_VOLLEY_FIRE\",\"documentation\":\"SLOT_ITEM.REAR_ECHELON_RIFLE_VOLLEY_FIRE\",\"detail\":\"SLOT_ITEM.REAR_ECHELON_RIFLE_VOLLEY_FIRE\"},{\"id\":\"SLOT_ITEM.RECOUP_ACTIVE\",\"kind\":17,\"label\":\"SLOT_ITEM.RECOUP_ACTIVE\",\"documentation\":\"SLOT_ITEM.RECOUP_ACTIVE\",\"detail\":\"SLOT_ITEM.RECOUP_ACTIVE\"},{\"id\":\"SLOT_ITEM.RGD_1_SMOKE_GRENADE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.RGD_1_SMOKE_GRENADE_ITEM\",\"documentation\":\"SLOT_ITEM.RGD_1_SMOKE_GRENADE_ITEM\",\"detail\":\"SLOT_ITEM.RGD_1_SMOKE_GRENADE_ITEM\"},{\"id\":\"SLOT_ITEM.RGD_1_SMOKE_GRENADE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.RGD_1_SMOKE_GRENADE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.RGD_1_SMOKE_GRENADE_ITEM_MP\",\"detail\":\"SLOT_ITEM.RGD_1_SMOKE_GRENADE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM\",\"documentation\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM\",\"detail\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM\"},{\"id\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM_LONGTIMER\",\"kind\":17,\"label\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM_LONGTIMER\",\"documentation\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM_LONGTIMER\",\"detail\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM_LONGTIMER\"},{\"id\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM_MP\",\"detail\":\"SLOT_ITEM.RGD_33_SLEEVED_GRENADE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.RIFLEMAN_AT_RIFLE_GRENADE\",\"kind\":17,\"label\":\"SLOT_ITEM.RIFLEMAN_AT_RIFLE_GRENADE\",\"documentation\":\"SLOT_ITEM.RIFLEMAN_AT_RIFLE_GRENADE\",\"detail\":\"SLOT_ITEM.RIFLEMAN_AT_RIFLE_GRENADE\"},{\"id\":\"SLOT_ITEM.RIFLEMEN_30_CAL\",\"kind\":17,\"label\":\"SLOT_ITEM.RIFLEMEN_30_CAL\",\"documentation\":\"SLOT_ITEM.RIFLEMEN_30_CAL\",\"detail\":\"SLOT_ITEM.RIFLEMEN_30_CAL\"},{\"id\":\"SLOT_ITEM.RIFLEMEN_FLARE\",\"kind\":17,\"label\":\"SLOT_ITEM.RIFLEMEN_FLARE\",\"documentation\":\"SLOT_ITEM.RIFLEMEN_FLARE\",\"detail\":\"SLOT_ITEM.RIFLEMEN_FLARE\"},{\"id\":\"SLOT_ITEM.RIFLEMEN_M1918_BAR_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.RIFLEMEN_M1918_BAR_MP\",\"documentation\":\"SLOT_ITEM.RIFLEMEN_M1918_BAR_MP\",\"detail\":\"SLOT_ITEM.RIFLEMEN_M1918_BAR_MP\"},{\"id\":\"SLOT_ITEM.RIFLEMEN_MK2_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.RIFLEMEN_MK2_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.RIFLEMEN_MK2_GRENADE_MP\",\"detail\":\"SLOT_ITEM.RIFLEMEN_MK2_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.RIFLEMEN_TRAINING_DUMMY_CARBINE\",\"kind\":17,\"label\":\"SLOT_ITEM.RIFLEMEN_TRAINING_DUMMY_CARBINE\",\"documentation\":\"SLOT_ITEM.RIFLEMEN_TRAINING_DUMMY_CARBINE\",\"detail\":\"SLOT_ITEM.RIFLEMEN_TRAINING_DUMMY_CARBINE\"},{\"id\":\"SLOT_ITEM.RIFLEMEN_TRAINING_SATCHEL_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.RIFLEMEN_TRAINING_SATCHEL_ITEM\",\"documentation\":\"SLOT_ITEM.RIFLEMEN_TRAINING_SATCHEL_ITEM\",\"detail\":\"SLOT_ITEM.RIFLEMEN_TRAINING_SATCHEL_ITEM\"},{\"id\":\"SLOT_ITEM.ROKS_2_FLAMETHROWER_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.ROKS_2_FLAMETHROWER_ITEM\",\"documentation\":\"SLOT_ITEM.ROKS_2_FLAMETHROWER_ITEM\",\"detail\":\"SLOT_ITEM.ROKS_2_FLAMETHROWER_ITEM\"},{\"id\":\"SLOT_ITEM.ROKS_2_FLAMETHROWER_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.ROKS_2_FLAMETHROWER_ITEM_MP\",\"documentation\":\"SLOT_ITEM.ROKS_2_FLAMETHROWER_ITEM_MP\",\"detail\":\"SLOT_ITEM.ROKS_2_FLAMETHROWER_ITEM_MP\"},{\"id\":\"SLOT_ITEM.RPG_40_ANTI_TANK_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.RPG_40_ANTI_TANK_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.RPG_40_ANTI_TANK_GRENADE_MP\",\"detail\":\"SLOT_ITEM.RPG_40_ANTI_TANK_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.RPG_43_ANTI_TANK_GRENADE\",\"kind\":17,\"label\":\"SLOT_ITEM.RPG_43_ANTI_TANK_GRENADE\",\"documentation\":\"SLOT_ITEM.RPG_43_ANTI_TANK_GRENADE\",\"detail\":\"SLOT_ITEM.RPG_43_ANTI_TANK_GRENADE\"},{\"id\":\"SLOT_ITEM.RPG_43_ANTI_TANK_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.RPG_43_ANTI_TANK_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.RPG_43_ANTI_TANK_GRENADE_MP\",\"detail\":\"SLOT_ITEM.RPG_43_ANTI_TANK_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.SAPPER_BREN_LIGHT_MACHINE_GUN_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.SAPPER_BREN_LIGHT_MACHINE_GUN_MP\",\"documentation\":\"SLOT_ITEM.SAPPER_BREN_LIGHT_MACHINE_GUN_MP\",\"detail\":\"SLOT_ITEM.SAPPER_BREN_LIGHT_MACHINE_GUN_MP\"},{\"id\":\"SLOT_ITEM.SAPPER_STUN_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.SAPPER_STUN_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.SAPPER_STUN_GRENADE_MP\",\"detail\":\"SLOT_ITEM.SAPPER_STUN_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.SAPPER_VICKERS_K_LIGHT_MACHINE_GUN_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.SAPPER_VICKERS_K_LIGHT_MACHINE_GUN_MP\",\"documentation\":\"SLOT_ITEM.SAPPER_VICKERS_K_LIGHT_MACHINE_GUN_MP\",\"detail\":\"SLOT_ITEM.SAPPER_VICKERS_K_LIGHT_MACHINE_GUN_MP\"},{\"id\":\"SLOT_ITEM.SATCHEL_CHARGE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.SATCHEL_CHARGE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.SATCHEL_CHARGE_ITEM_MP\",\"detail\":\"SLOT_ITEM.SATCHEL_CHARGE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.SELF_REPAIR_DUMMY_SLOT_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.SELF_REPAIR_DUMMY_SLOT_ITEM\",\"documentation\":\"SLOT_ITEM.SELF_REPAIR_DUMMY_SLOT_ITEM\",\"detail\":\"SLOT_ITEM.SELF_REPAIR_DUMMY_SLOT_ITEM\"},{\"id\":\"SLOT_ITEM.SHERMAN_BATTLE_GROUP_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.SHERMAN_BATTLE_GROUP_ITEM_MP\",\"documentation\":\"SLOT_ITEM.SHERMAN_BATTLE_GROUP_ITEM_MP\",\"detail\":\"SLOT_ITEM.SHERMAN_BATTLE_GROUP_ITEM_MP\"},{\"id\":\"SLOT_ITEM.SHOCK_TROOP_RG_42_GRENADE\",\"kind\":17,\"label\":\"SLOT_ITEM.SHOCK_TROOP_RG_42_GRENADE\",\"documentation\":\"SLOT_ITEM.SHOCK_TROOP_RG_42_GRENADE\",\"detail\":\"SLOT_ITEM.SHOCK_TROOP_RG_42_GRENADE\"},{\"id\":\"SLOT_ITEM.SHOCK_TROOP_RG_42_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.SHOCK_TROOP_RG_42_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.SHOCK_TROOP_RG_42_GRENADE_MP\",\"detail\":\"SLOT_ITEM.SHOCK_TROOP_RG_42_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.SIPHON_ACTIVE\",\"kind\":17,\"label\":\"SLOT_ITEM.SIPHON_ACTIVE\",\"documentation\":\"SLOT_ITEM.SIPHON_ACTIVE\",\"detail\":\"SLOT_ITEM.SIPHON_ACTIVE\"},{\"id\":\"SLOT_ITEM.SNIPER_FLARE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.SNIPER_FLARE_MP\",\"documentation\":\"SLOT_ITEM.SNIPER_FLARE_MP\",\"detail\":\"SLOT_ITEM.SNIPER_FLARE_MP\"},{\"id\":\"SLOT_ITEM.SNIPER_RIFLE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.SNIPER_RIFLE_ITEM\",\"documentation\":\"SLOT_ITEM.SNIPER_RIFLE_ITEM\",\"detail\":\"SLOT_ITEM.SNIPER_RIFLE_ITEM\"},{\"id\":\"SLOT_ITEM.SNIPER_RIFLE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.SNIPER_RIFLE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.SNIPER_RIFLE_ITEM_MP\",\"detail\":\"SLOT_ITEM.SNIPER_RIFLE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.SNIPER_SMOKE_MARKER_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.SNIPER_SMOKE_MARKER_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.SNIPER_SMOKE_MARKER_GRENADE_MP\",\"detail\":\"SLOT_ITEM.SNIPER_SMOKE_MARKER_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.SNIPER_SUPPRESSIVE_VOLLEY_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.SNIPER_SUPPRESSIVE_VOLLEY_MP\",\"documentation\":\"SLOT_ITEM.SNIPER_SUPPRESSIVE_VOLLEY_MP\",\"detail\":\"SLOT_ITEM.SNIPER_SUPPRESSIVE_VOLLEY_MP\"},{\"id\":\"SLOT_ITEM.SOVIET_FLAG\",\"kind\":17,\"label\":\"SLOT_ITEM.SOVIET_FLAG\",\"documentation\":\"SLOT_ITEM.SOVIET_FLAG\",\"detail\":\"SLOT_ITEM.SOVIET_FLAG\"},{\"id\":\"SLOT_ITEM.SPEARHEAD_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.SPEARHEAD_ITEM\",\"documentation\":\"SLOT_ITEM.SPEARHEAD_ITEM\",\"detail\":\"SLOT_ITEM.SPEARHEAD_ITEM\"},{\"id\":\"SLOT_ITEM.STALK_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.STALK_ITEM\",\"documentation\":\"SLOT_ITEM.STALK_ITEM\",\"detail\":\"SLOT_ITEM.STALK_ITEM\"},{\"id\":\"SLOT_ITEM.STORMTROOPER_MP44_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.STORMTROOPER_MP44_MP\",\"documentation\":\"SLOT_ITEM.STORMTROOPER_MP44_MP\",\"detail\":\"SLOT_ITEM.STORMTROOPER_MP44_MP\"},{\"id\":\"SLOT_ITEM.STUG_CRITICAL_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.STUG_CRITICAL_SHOT_MP\",\"documentation\":\"SLOT_ITEM.STUG_CRITICAL_SHOT_MP\",\"detail\":\"SLOT_ITEM.STUG_CRITICAL_SHOT_MP\"},{\"id\":\"SLOT_ITEM.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOT\",\"kind\":17,\"label\":\"SLOT_ITEM.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOT\",\"documentation\":\"SLOT_ITEM.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOT\",\"detail\":\"SLOT_ITEM.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOT\"},{\"id\":\"SLOT_ITEM.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOT_MP\",\"documentation\":\"SLOT_ITEM.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOT_MP\",\"detail\":\"SLOT_ITEM.STUG_ELEFANT_PAK40_PAK43_BRUMMBAR_CRITICAL_SHOT_MP\"},{\"id\":\"SLOT_ITEM.STURMTIGER_RELOAD_ACTIVE\",\"kind\":17,\"label\":\"SLOT_ITEM.STURMTIGER_RELOAD_ACTIVE\",\"documentation\":\"SLOT_ITEM.STURMTIGER_RELOAD_ACTIVE\",\"detail\":\"SLOT_ITEM.STURMTIGER_RELOAD_ACTIVE\"},{\"id\":\"SLOT_ITEM.SU76M_HE_ROUND_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.SU76M_HE_ROUND_ITEM\",\"documentation\":\"SLOT_ITEM.SU76M_HE_ROUND_ITEM\",\"detail\":\"SLOT_ITEM.SU76M_HE_ROUND_ITEM\"},{\"id\":\"SLOT_ITEM.SU76M_HE_ROUND_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.SU76M_HE_ROUND_ITEM_MP\",\"documentation\":\"SLOT_ITEM.SU76M_HE_ROUND_ITEM_MP\",\"detail\":\"SLOT_ITEM.SU76M_HE_ROUND_ITEM_MP\"},{\"id\":\"SLOT_ITEM.SUPPORT_SQUAD_SETUP\",\"kind\":17,\"label\":\"SLOT_ITEM.SUPPORT_SQUAD_SETUP\",\"documentation\":\"SLOT_ITEM.SUPPORT_SQUAD_SETUP\",\"detail\":\"SLOT_ITEM.SUPPORT_SQUAD_SETUP\"},{\"id\":\"SLOT_ITEM.SUPPRESS_FIRE_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.SUPPRESS_FIRE_ITEM\",\"documentation\":\"SLOT_ITEM.SUPPRESS_FIRE_ITEM\",\"detail\":\"SLOT_ITEM.SUPPRESS_FIRE_ITEM\"},{\"id\":\"SLOT_ITEM.SWS_LOCKDOWN_SETUP\",\"kind\":17,\"label\":\"SLOT_ITEM.SWS_LOCKDOWN_SETUP\",\"documentation\":\"SLOT_ITEM.SWS_LOCKDOWN_SETUP\",\"detail\":\"SLOT_ITEM.SWS_LOCKDOWN_SETUP\"},{\"id\":\"SLOT_ITEM.TANK_HUNTER_SHOCK_BAZOOKA_VET\",\"kind\":17,\"label\":\"SLOT_ITEM.TANK_HUNTER_SHOCK_BAZOOKA_VET\",\"documentation\":\"SLOT_ITEM.TANK_HUNTER_SHOCK_BAZOOKA_VET\",\"detail\":\"SLOT_ITEM.TANK_HUNTER_SHOCK_BAZOOKA_VET\"},{\"id\":\"SLOT_ITEM.TIGER_ACE_CRITICAL_SHOT_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.TIGER_ACE_CRITICAL_SHOT_MP\",\"documentation\":\"SLOT_ITEM.TIGER_ACE_CRITICAL_SHOT_MP\",\"detail\":\"SLOT_ITEM.TIGER_ACE_CRITICAL_SHOT_MP\"},{\"id\":\"SLOT_ITEM.TIGER_FLARE_TOW\",\"kind\":17,\"label\":\"SLOT_ITEM.TIGER_FLARE_TOW\",\"documentation\":\"SLOT_ITEM.TIGER_FLARE_TOW\",\"detail\":\"SLOT_ITEM.TIGER_FLARE_TOW\"},{\"id\":\"SLOT_ITEM.TOMMY_BREN_LIGHT_MACHINE_GUN_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.TOMMY_BREN_LIGHT_MACHINE_GUN_MP\",\"documentation\":\"SLOT_ITEM.TOMMY_BREN_LIGHT_MACHINE_GUN_MP\",\"detail\":\"SLOT_ITEM.TOMMY_BREN_LIGHT_MACHINE_GUN_MP\"},{\"id\":\"SLOT_ITEM.TOMMY_FLAMETHROWER\",\"kind\":17,\"label\":\"SLOT_ITEM.TOMMY_FLAMETHROWER\",\"documentation\":\"SLOT_ITEM.TOMMY_FLAMETHROWER\",\"detail\":\"SLOT_ITEM.TOMMY_FLAMETHROWER\"},{\"id\":\"SLOT_ITEM.TOMMY_GAMMON_BOMB_HEAVY\",\"kind\":17,\"label\":\"SLOT_ITEM.TOMMY_GAMMON_BOMB_HEAVY\",\"documentation\":\"SLOT_ITEM.TOMMY_GAMMON_BOMB_HEAVY\",\"detail\":\"SLOT_ITEM.TOMMY_GAMMON_BOMB_HEAVY\"},{\"id\":\"SLOT_ITEM.TOMMY_GAMMON_BOMB_MEDIUM\",\"kind\":17,\"label\":\"SLOT_ITEM.TOMMY_GAMMON_BOMB_MEDIUM\",\"documentation\":\"SLOT_ITEM.TOMMY_GAMMON_BOMB_MEDIUM\",\"detail\":\"SLOT_ITEM.TOMMY_GAMMON_BOMB_MEDIUM\"},{\"id\":\"SLOT_ITEM.TOMMY_HEAT_GRENADE\",\"kind\":17,\"label\":\"SLOT_ITEM.TOMMY_HEAT_GRENADE\",\"documentation\":\"SLOT_ITEM.TOMMY_HEAT_GRENADE\",\"detail\":\"SLOT_ITEM.TOMMY_HEAT_GRENADE\"},{\"id\":\"SLOT_ITEM.TOMMY_MILLS_BOMB\",\"kind\":17,\"label\":\"SLOT_ITEM.TOMMY_MILLS_BOMB\",\"documentation\":\"SLOT_ITEM.TOMMY_MILLS_BOMB\",\"detail\":\"SLOT_ITEM.TOMMY_MILLS_BOMB\"},{\"id\":\"SLOT_ITEM.TOMMY_MILLS_BOMB_ASSAULT\",\"kind\":17,\"label\":\"SLOT_ITEM.TOMMY_MILLS_BOMB_ASSAULT\",\"documentation\":\"SLOT_ITEM.TOMMY_MILLS_BOMB_ASSAULT\",\"detail\":\"SLOT_ITEM.TOMMY_MILLS_BOMB_ASSAULT\"},{\"id\":\"SLOT_ITEM.TOMMY_OFFICER_SMOKE_MARKER_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.TOMMY_OFFICER_SMOKE_MARKER_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.TOMMY_OFFICER_SMOKE_MARKER_GRENADE_MP\",\"detail\":\"SLOT_ITEM.TOMMY_OFFICER_SMOKE_MARKER_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.TOMMY_SCOPED_RIFLE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.TOMMY_SCOPED_RIFLE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.TOMMY_SCOPED_RIFLE_ITEM_MP\",\"detail\":\"SLOT_ITEM.TOMMY_SCOPED_RIFLE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.TOMMY_STEN_SMG\",\"kind\":17,\"label\":\"SLOT_ITEM.TOMMY_STEN_SMG\",\"documentation\":\"SLOT_ITEM.TOMMY_STEN_SMG\",\"detail\":\"SLOT_ITEM.TOMMY_STEN_SMG\"},{\"id\":\"SLOT_ITEM.TROOP_SUPPORT_DUMMY_MEDIC\",\"kind\":17,\"label\":\"SLOT_ITEM.TROOP_SUPPORT_DUMMY_MEDIC\",\"documentation\":\"SLOT_ITEM.TROOP_SUPPORT_DUMMY_MEDIC\",\"detail\":\"SLOT_ITEM.TROOP_SUPPORT_DUMMY_MEDIC\"},{\"id\":\"SLOT_ITEM.UNIVERSAL_CARRIER_VICKERS_K_PACKAGE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.UNIVERSAL_CARRIER_VICKERS_K_PACKAGE_MP\",\"documentation\":\"SLOT_ITEM.UNIVERSAL_CARRIER_VICKERS_K_PACKAGE_MP\",\"detail\":\"SLOT_ITEM.UNIVERSAL_CARRIER_VICKERS_K_PACKAGE_MP\"},{\"id\":\"SLOT_ITEM.UNIVERSAL_CARRIER_VICKERS_MMG_SUPPRESSIVE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.UNIVERSAL_CARRIER_VICKERS_MMG_SUPPRESSIVE_MP\",\"documentation\":\"SLOT_ITEM.UNIVERSAL_CARRIER_VICKERS_MMG_SUPPRESSIVE_MP\",\"detail\":\"SLOT_ITEM.UNIVERSAL_CARRIER_VICKERS_MMG_SUPPRESSIVE_MP\"},{\"id\":\"SLOT_ITEM.URBAN_ASSAULT_FLAMETHROWER_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.URBAN_ASSAULT_FLAMETHROWER_MP\",\"documentation\":\"SLOT_ITEM.URBAN_ASSAULT_FLAMETHROWER_MP\",\"detail\":\"SLOT_ITEM.URBAN_ASSAULT_FLAMETHROWER_MP\"},{\"id\":\"SLOT_ITEM.URBAN_ASSAULT_SATCHEL_CHARGE_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.URBAN_ASSAULT_SATCHEL_CHARGE_ITEM_MP\",\"documentation\":\"SLOT_ITEM.URBAN_ASSAULT_SATCHEL_CHARGE_ITEM_MP\",\"detail\":\"SLOT_ITEM.URBAN_ASSAULT_SATCHEL_CHARGE_ITEM_MP\"},{\"id\":\"SLOT_ITEM.VALENTINE_SMOKE_MARKER_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.VALENTINE_SMOKE_MARKER_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.VALENTINE_SMOKE_MARKER_GRENADE_MP\",\"detail\":\"SLOT_ITEM.VALENTINE_SMOKE_MARKER_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.VICKERS_K_LIGHT_MACHINE_GUN_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.VICKERS_K_LIGHT_MACHINE_GUN_MP\",\"documentation\":\"SLOT_ITEM.VICKERS_K_LIGHT_MACHINE_GUN_MP\",\"detail\":\"SLOT_ITEM.VICKERS_K_LIGHT_MACHINE_GUN_MP\"},{\"id\":\"SLOT_ITEM.VOLKSGRENADIER_FIRE_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.VOLKSGRENADIER_FIRE_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.VOLKSGRENADIER_FIRE_GRENADE_MP\",\"detail\":\"SLOT_ITEM.VOLKSGRENADIER_FIRE_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.VOLKSGRENADIER_GRENADE_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.VOLKSGRENADIER_GRENADE_MP\",\"documentation\":\"SLOT_ITEM.VOLKSGRENADIER_GRENADE_MP\",\"detail\":\"SLOT_ITEM.VOLKSGRENADIER_GRENADE_MP\"},{\"id\":\"SLOT_ITEM.VOLKSGRENADIER_MP44_ITEM_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.VOLKSGRENADIER_MP44_ITEM_MP\",\"documentation\":\"SLOT_ITEM.VOLKSGRENADIER_MP44_ITEM_MP\",\"detail\":\"SLOT_ITEM.VOLKSGRENADIER_MP44_ITEM_MP\"},{\"id\":\"SLOT_ITEM.VOLKSGRENADIER_PANZERFAUST_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.VOLKSGRENADIER_PANZERFAUST_MP\",\"documentation\":\"SLOT_ITEM.VOLKSGRENADIER_PANZERFAUST_MP\",\"detail\":\"SLOT_ITEM.VOLKSGRENADIER_PANZERFAUST_MP\"},{\"id\":\"SLOT_ITEM.VOLKSGRENADIER_PANZERFAUST_VET_4_MP\",\"kind\":17,\"label\":\"SLOT_ITEM.VOLKSGRENADIER_PANZERFAUST_VET_4_MP\",\"documentation\":\"SLOT_ITEM.VOLKSGRENADIER_PANZERFAUST_VET_4_MP\",\"detail\":\"SLOT_ITEM.VOLKSGRENADIER_PANZERFAUST_VET_4_MP\"},{\"id\":\"SLOT_ITEM.WAFFEN_BUNDLED_ASSAULT_GRENADE\",\"kind\":17,\"label\":\"SLOT_ITEM.WAFFEN_BUNDLED_ASSAULT_GRENADE\",\"documentation\":\"SLOT_ITEM.WAFFEN_BUNDLED_ASSAULT_GRENADE\",\"detail\":\"SLOT_ITEM.WAFFEN_BUNDLED_ASSAULT_GRENADE\"},{\"id\":\"SLOT_ITEM.WEST_GERMAN_MINESWEEPER\",\"kind\":17,\"label\":\"SLOT_ITEM.WEST_GERMAN_MINESWEEPER\",\"documentation\":\"SLOT_ITEM.WEST_GERMAN_MINESWEEPER\",\"detail\":\"SLOT_ITEM.WEST_GERMAN_MINESWEEPER\"},{\"id\":\"SLOT_ITEM.WG_BLENDKORPER_SMOKE_UI_ITEM\",\"kind\":17,\"label\":\"SLOT_ITEM.WG_BLENDKORPER_SMOKE_UI_ITEM\",\"documentation\":\"SLOT_ITEM.WG_BLENDKORPER_SMOKE_UI_ITEM\",\"detail\":\"SLOT_ITEM.WG_BLENDKORPER_SMOKE_UI_ITEM\"},{\"id\":\"SLOT_ITEM.WG_PANZER_IV_ARMORED_SKIRTS\",\"kind\":17,\"label\":\"SLOT_ITEM.WG_PANZER_IV_ARMORED_SKIRTS\",\"documentation\":\"SLOT_ITEM.WG_PANZER_IV_ARMORED_SKIRTS\",\"detail\":\"SLOT_ITEM.WG_PANZER_IV_ARMORED_SKIRTS\"},{\"id\":\"CRIT._NO_CRITICAL\",\"kind\":17,\"label\":\"CRIT._NO_CRITICAL\",\"documentation\":\"CRIT._NO_CRITICAL\",\"detail\":\"CRIT._NO_CRITICAL\"},{\"id\":\"CRIT._NO_CRITICAL_MINE\",\"kind\":17,\"label\":\"CRIT._NO_CRITICAL_MINE\",\"documentation\":\"CRIT._NO_CRITICAL_MINE\",\"detail\":\"CRIT._NO_CRITICAL_MINE\"},{\"id\":\"CRIT._NO_CRITICAL_REAR\",\"kind\":17,\"label\":\"CRIT._NO_CRITICAL_REAR\",\"documentation\":\"CRIT._NO_CRITICAL_REAR\",\"detail\":\"CRIT._NO_CRITICAL_REAR\"},{\"id\":\"CRIT._SP_ANIA_EXPLOSIVE\",\"kind\":17,\"label\":\"CRIT._SP_ANIA_EXPLOSIVE\",\"documentation\":\"CRIT._SP_ANIA_EXPLOSIVE\",\"detail\":\"CRIT._SP_ANIA_EXPLOSIVE\"},{\"id\":\"CRIT._SP_ANIA_KILLED\",\"kind\":17,\"label\":\"CRIT._SP_ANIA_KILLED\",\"documentation\":\"CRIT._SP_ANIA_KILLED\",\"detail\":\"CRIT._SP_ANIA_KILLED\"},{\"id\":\"CRIT.ASSAULT_MODIFIERS\",\"kind\":17,\"label\":\"CRIT.ASSAULT_MODIFIERS\",\"documentation\":\"CRIT.ASSAULT_MODIFIERS\",\"detail\":\"CRIT.ASSAULT_MODIFIERS\"},{\"id\":\"CRIT.ATTACK_PLAN_MODIFIERS\",\"kind\":17,\"label\":\"CRIT.ATTACK_PLAN_MODIFIERS\",\"documentation\":\"CRIT.ATTACK_PLAN_MODIFIERS\",\"detail\":\"CRIT.ATTACK_PLAN_MODIFIERS\"},{\"id\":\"CRIT.AXIS_ASSAULT_MODIFIERS\",\"kind\":17,\"label\":\"CRIT.AXIS_ASSAULT_MODIFIERS\",\"documentation\":\"CRIT.AXIS_ASSAULT_MODIFIERS\",\"detail\":\"CRIT.AXIS_ASSAULT_MODIFIERS\"},{\"id\":\"CRIT.BRIDGE_DEMOLITION_MAKE_WRECK\",\"kind\":17,\"label\":\"CRIT.BRIDGE_DEMOLITION_MAKE_WRECK\",\"documentation\":\"CRIT.BRIDGE_DEMOLITION_MAKE_WRECK\",\"detail\":\"CRIT.BRIDGE_DEMOLITION_MAKE_WRECK\"},{\"id\":\"CRIT.BRIDGE_MAKE_WRECK\",\"kind\":17,\"label\":\"CRIT.BRIDGE_MAKE_WRECK\",\"documentation\":\"CRIT.BRIDGE_MAKE_WRECK\",\"detail\":\"CRIT.BRIDGE_MAKE_WRECK\"},{\"id\":\"CRIT.BUILDING_ABANDON\",\"kind\":17,\"label\":\"CRIT.BUILDING_ABANDON\",\"documentation\":\"CRIT.BUILDING_ABANDON\",\"detail\":\"CRIT.BUILDING_ABANDON\"},{\"id\":\"CRIT.BUILDING_BRACED\",\"kind\":17,\"label\":\"CRIT.BUILDING_BRACED\",\"documentation\":\"CRIT.BUILDING_BRACED\",\"detail\":\"CRIT.BUILDING_BRACED\"},{\"id\":\"CRIT.BUILDING_DESTROY\",\"kind\":17,\"label\":\"CRIT.BUILDING_DESTROY\",\"documentation\":\"CRIT.BUILDING_DESTROY\",\"detail\":\"CRIT.BUILDING_DESTROY\"},{\"id\":\"CRIT.BUILDING_DESTROY_CONSTRUCTION\",\"kind\":17,\"label\":\"CRIT.BUILDING_DESTROY_CONSTRUCTION\",\"documentation\":\"CRIT.BUILDING_DESTROY_CONSTRUCTION\",\"detail\":\"CRIT.BUILDING_DESTROY_CONSTRUCTION\"},{\"id\":\"CRIT.BUILDING_DESTROY_SUPPLY_CENTER\",\"kind\":17,\"label\":\"CRIT.BUILDING_DESTROY_SUPPLY_CENTER\",\"documentation\":\"CRIT.BUILDING_DESTROY_SUPPLY_CENTER\",\"detail\":\"CRIT.BUILDING_DESTROY_SUPPLY_CENTER\"},{\"id\":\"CRIT.BUILDING_FIRE_DAMAGE_DOT\",\"kind\":17,\"label\":\"CRIT.BUILDING_FIRE_DAMAGE_DOT\",\"documentation\":\"CRIT.BUILDING_FIRE_DAMAGE_DOT\",\"detail\":\"CRIT.BUILDING_FIRE_DAMAGE_DOT\"},{\"id\":\"CRIT.BUILDING_FIRE_DAMAGE_PANEL\",\"kind\":17,\"label\":\"CRIT.BUILDING_FIRE_DAMAGE_PANEL\",\"documentation\":\"CRIT.BUILDING_FIRE_DAMAGE_PANEL\",\"detail\":\"CRIT.BUILDING_FIRE_DAMAGE_PANEL\"},{\"id\":\"CRIT.BUILDING_PANEL_DAMAGE_CRITICAL\",\"kind\":17,\"label\":\"CRIT.BUILDING_PANEL_DAMAGE_CRITICAL\",\"documentation\":\"CRIT.BUILDING_PANEL_DAMAGE_CRITICAL\",\"detail\":\"CRIT.BUILDING_PANEL_DAMAGE_CRITICAL\"},{\"id\":\"CRIT.BUILDING_RED_BUILD_TIME_INCREASE\",\"kind\":17,\"label\":\"CRIT.BUILDING_RED_BUILD_TIME_INCREASE\",\"documentation\":\"CRIT.BUILDING_RED_BUILD_TIME_INCREASE\",\"detail\":\"CRIT.BUILDING_RED_BUILD_TIME_INCREASE\"},{\"id\":\"CRIT.BUILDING_STRONG_CRITICAL\",\"kind\":17,\"label\":\"CRIT.BUILDING_STRONG_CRITICAL\",\"documentation\":\"CRIT.BUILDING_STRONG_CRITICAL\",\"detail\":\"CRIT.BUILDING_STRONG_CRITICAL\"},{\"id\":\"CRIT.BUILDING_WEAK_CRITICAL\",\"kind\":17,\"label\":\"CRIT.BUILDING_WEAK_CRITICAL\",\"documentation\":\"CRIT.BUILDING_WEAK_CRITICAL\",\"detail\":\"CRIT.BUILDING_WEAK_CRITICAL\"},{\"id\":\"CRIT.BUILDING_YELLOW_BUILD_TIME_INCREASE\",\"kind\":17,\"label\":\"CRIT.BUILDING_YELLOW_BUILD_TIME_INCREASE\",\"documentation\":\"CRIT.BUILDING_YELLOW_BUILD_TIME_INCREASE\",\"detail\":\"CRIT.BUILDING_YELLOW_BUILD_TIME_INCREASE\"},{\"id\":\"CRIT.BULLET_HIT_CRITICAL\",\"kind\":17,\"label\":\"CRIT.BULLET_HIT_CRITICAL\",\"documentation\":\"CRIT.BULLET_HIT_CRITICAL\",\"detail\":\"CRIT.BULLET_HIT_CRITICAL\"},{\"id\":\"CRIT.BURN\",\"kind\":17,\"label\":\"CRIT.BURN\",\"documentation\":\"CRIT.BURN\",\"detail\":\"CRIT.BURN\"},{\"id\":\"CRIT.BURN_DEATH\",\"kind\":17,\"label\":\"CRIT.BURN_DEATH\",\"documentation\":\"CRIT.BURN_DEATH\",\"detail\":\"CRIT.BURN_DEATH\"},{\"id\":\"CRIT.BURN_DEATH_OUT_OF_CONTROL\",\"kind\":17,\"label\":\"CRIT.BURN_DEATH_OUT_OF_CONTROL\",\"documentation\":\"CRIT.BURN_DEATH_OUT_OF_CONTROL\",\"detail\":\"CRIT.BURN_DEATH_OUT_OF_CONTROL\"},{\"id\":\"CRIT.BURN_WORLD_OBJECT\",\"kind\":17,\"label\":\"CRIT.BURN_WORLD_OBJECT\",\"documentation\":\"CRIT.BURN_WORLD_OBJECT\",\"detail\":\"CRIT.BURN_WORLD_OBJECT\"},{\"id\":\"CRIT.BURN_WORLD_OBJECT_DEATH\",\"kind\":17,\"label\":\"CRIT.BURN_WORLD_OBJECT_DEATH\",\"documentation\":\"CRIT.BURN_WORLD_OBJECT_DEATH\",\"detail\":\"CRIT.BURN_WORLD_OBJECT_DEATH\"},{\"id\":\"CRIT.CAMOUFLAGE_MINE\",\"kind\":17,\"label\":\"CRIT.CAMOUFLAGE_MINE\",\"documentation\":\"CRIT.CAMOUFLAGE_MINE\",\"detail\":\"CRIT.CAMOUFLAGE_MINE\"},{\"id\":\"CRIT.CHURCHILL_TANK_SHOCK_MODIFIERS\",\"kind\":17,\"label\":\"CRIT.CHURCHILL_TANK_SHOCK_MODIFIERS\",\"documentation\":\"CRIT.CHURCHILL_TANK_SHOCK_MODIFIERS\",\"detail\":\"CRIT.CHURCHILL_TANK_SHOCK_MODIFIERS\"},{\"id\":\"CRIT.DETONATE_BANGALORE\",\"kind\":17,\"label\":\"CRIT.DETONATE_BANGALORE\",\"documentation\":\"CRIT.DETONATE_BANGALORE\",\"detail\":\"CRIT.DETONATE_BANGALORE\"},{\"id\":\"CRIT.DETONATE_DEMOLITION_CHARGE\",\"kind\":17,\"label\":\"CRIT.DETONATE_DEMOLITION_CHARGE\",\"documentation\":\"CRIT.DETONATE_DEMOLITION_CHARGE\",\"detail\":\"CRIT.DETONATE_DEMOLITION_CHARGE\"},{\"id\":\"CRIT.DETONATE_MINE\",\"kind\":17,\"label\":\"CRIT.DETONATE_MINE\",\"documentation\":\"CRIT.DETONATE_MINE\",\"detail\":\"CRIT.DETONATE_MINE\"},{\"id\":\"CRIT.EMPLACEMENT_EMPTY\",\"kind\":17,\"label\":\"CRIT.EMPLACEMENT_EMPTY\",\"documentation\":\"CRIT.EMPLACEMENT_EMPTY\",\"detail\":\"CRIT.EMPLACEMENT_EMPTY\"},{\"id\":\"CRIT.EMPLACEMENT_FLAME_CRITICAL\",\"kind\":17,\"label\":\"CRIT.EMPLACEMENT_FLAME_CRITICAL\",\"documentation\":\"CRIT.EMPLACEMENT_FLAME_CRITICAL\",\"detail\":\"CRIT.EMPLACEMENT_FLAME_CRITICAL\"},{\"id\":\"CRIT.EMPLACEMENT_KILL_LOADER\",\"kind\":17,\"label\":\"CRIT.EMPLACEMENT_KILL_LOADER\",\"documentation\":\"CRIT.EMPLACEMENT_KILL_LOADER\",\"detail\":\"CRIT.EMPLACEMENT_KILL_LOADER\"},{\"id\":\"CRIT.EXPLOSIVE_DESTROY\",\"kind\":17,\"label\":\"CRIT.EXPLOSIVE_DESTROY\",\"documentation\":\"CRIT.EXPLOSIVE_DESTROY\",\"detail\":\"CRIT.EXPLOSIVE_DESTROY\"},{\"id\":\"CRIT.GOLIATH_DESTROY\",\"kind\":17,\"label\":\"CRIT.GOLIATH_DESTROY\",\"documentation\":\"CRIT.GOLIATH_DESTROY\",\"detail\":\"CRIT.GOLIATH_DESTROY\"},{\"id\":\"CRIT.HEROIC_CHARGE_FATIGUE\",\"kind\":17,\"label\":\"CRIT.HEROIC_CHARGE_FATIGUE\",\"documentation\":\"CRIT.HEROIC_CHARGE_FATIGUE\",\"detail\":\"CRIT.HEROIC_CHARGE_FATIGUE\"},{\"id\":\"CRIT.MAKE_CASUALTY\",\"kind\":17,\"label\":\"CRIT.MAKE_CASUALTY\",\"documentation\":\"CRIT.MAKE_CASUALTY\",\"detail\":\"CRIT.MAKE_CASUALTY\"},{\"id\":\"CRIT.SOLDIER_BLIND\",\"kind\":17,\"label\":\"CRIT.SOLDIER_BLIND\",\"documentation\":\"CRIT.SOLDIER_BLIND\",\"detail\":\"CRIT.SOLDIER_BLIND\"},{\"id\":\"CRIT.SOLDIER_EXECUTED\",\"kind\":17,\"label\":\"CRIT.SOLDIER_EXECUTED\",\"documentation\":\"CRIT.SOLDIER_EXECUTED\",\"detail\":\"CRIT.SOLDIER_EXECUTED\"},{\"id\":\"CRIT.SOLDIER_EXPLOSIVE_ROUND\",\"kind\":17,\"label\":\"CRIT.SOLDIER_EXPLOSIVE_ROUND\",\"documentation\":\"CRIT.SOLDIER_EXPLOSIVE_ROUND\",\"detail\":\"CRIT.SOLDIER_EXPLOSIVE_ROUND\"},{\"id\":\"CRIT.SOLDIER_FLAMETHROWER_EXPLODE\",\"kind\":17,\"label\":\"CRIT.SOLDIER_FLAMETHROWER_EXPLODE\",\"documentation\":\"CRIT.SOLDIER_FLAMETHROWER_EXPLODE\",\"detail\":\"CRIT.SOLDIER_FLAMETHROWER_EXPLODE\"},{\"id\":\"CRIT.SOLDIER_FORCE_RETREAT\",\"kind\":17,\"label\":\"CRIT.SOLDIER_FORCE_RETREAT\",\"documentation\":\"CRIT.SOLDIER_FORCE_RETREAT\",\"detail\":\"CRIT.SOLDIER_FORCE_RETREAT\"},{\"id\":\"CRIT.SOLDIER_FROZEN\",\"kind\":17,\"label\":\"CRIT.SOLDIER_FROZEN\",\"documentation\":\"CRIT.SOLDIER_FROZEN\",\"detail\":\"CRIT.SOLDIER_FROZEN\"},{\"id\":\"CRIT.SOLDIER_KILLED\",\"kind\":17,\"label\":\"CRIT.SOLDIER_KILLED\",\"documentation\":\"CRIT.SOLDIER_KILLED\",\"detail\":\"CRIT.SOLDIER_KILLED\"},{\"id\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_100\",\"kind\":17,\"label\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_100\",\"documentation\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_100\",\"detail\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_100\"},{\"id\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_30\",\"kind\":17,\"label\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_30\",\"documentation\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_30\",\"detail\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_30\"},{\"id\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_60\",\"kind\":17,\"label\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_60\",\"documentation\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_60\",\"detail\":\"CRIT.SOLDIER_KILLED_DEATH_INTENSITY_60\"},{\"id\":\"CRIT.SOLDIER_KILLED_HMG_DEATH\",\"kind\":17,\"label\":\"CRIT.SOLDIER_KILLED_HMG_DEATH\",\"documentation\":\"CRIT.SOLDIER_KILLED_HMG_DEATH\",\"detail\":\"CRIT.SOLDIER_KILLED_HMG_DEATH\"},{\"id\":\"CRIT.SOLDIER_PIN\",\"kind\":17,\"label\":\"CRIT.SOLDIER_PIN\",\"documentation\":\"CRIT.SOLDIER_PIN\",\"detail\":\"CRIT.SOLDIER_PIN\"},{\"id\":\"CRIT.SOLDIER_SLOW\",\"kind\":17,\"label\":\"CRIT.SOLDIER_SLOW\",\"documentation\":\"CRIT.SOLDIER_SLOW\",\"detail\":\"CRIT.SOLDIER_SLOW\"},{\"id\":\"CRIT.SOLDIER_SNIPED\",\"kind\":17,\"label\":\"CRIT.SOLDIER_SNIPED\",\"documentation\":\"CRIT.SOLDIER_SNIPED\",\"detail\":\"CRIT.SOLDIER_SNIPED\"},{\"id\":\"CRIT.SOLDIER_SNIPED_IN_HALFTRACK\",\"kind\":17,\"label\":\"CRIT.SOLDIER_SNIPED_IN_HALFTRACK\",\"documentation\":\"CRIT.SOLDIER_SNIPED_IN_HALFTRACK\",\"detail\":\"CRIT.SOLDIER_SNIPED_IN_HALFTRACK\"},{\"id\":\"CRIT.SOLDIER_SNIPED_MAKE_CASUALTY\",\"kind\":17,\"label\":\"CRIT.SOLDIER_SNIPED_MAKE_CASUALTY\",\"documentation\":\"CRIT.SOLDIER_SNIPED_MAKE_CASUALTY\",\"detail\":\"CRIT.SOLDIER_SNIPED_MAKE_CASUALTY\"},{\"id\":\"CRIT.SOLDIER_SNIPED_STILL_ALIVE\",\"kind\":17,\"label\":\"CRIT.SOLDIER_SNIPED_STILL_ALIVE\",\"documentation\":\"CRIT.SOLDIER_SNIPED_STILL_ALIVE\",\"detail\":\"CRIT.SOLDIER_SNIPED_STILL_ALIVE\"},{\"id\":\"CRIT.SOLDIER_STUN\",\"kind\":17,\"label\":\"CRIT.SOLDIER_STUN\",\"documentation\":\"CRIT.SOLDIER_STUN\",\"detail\":\"CRIT.SOLDIER_STUN\"},{\"id\":\"CRIT.SOLDIER_SUPPRESS\",\"kind\":17,\"label\":\"CRIT.SOLDIER_SUPPRESS\",\"documentation\":\"CRIT.SOLDIER_SUPPRESS\",\"detail\":\"CRIT.SOLDIER_SUPPRESS\"},{\"id\":\"CRIT.SQUAD_ITEM_DAMAGED\",\"kind\":17,\"label\":\"CRIT.SQUAD_ITEM_DAMAGED\",\"documentation\":\"CRIT.SQUAD_ITEM_DAMAGED\",\"detail\":\"CRIT.SQUAD_ITEM_DAMAGED\"},{\"id\":\"CRIT.STUNNED_CANNOT_SHOOT_10_SECONDS\",\"kind\":17,\"label\":\"CRIT.STUNNED_CANNOT_SHOOT_10_SECONDS\",\"documentation\":\"CRIT.STUNNED_CANNOT_SHOOT_10_SECONDS\",\"detail\":\"CRIT.STUNNED_CANNOT_SHOOT_10_SECONDS\"},{\"id\":\"CRIT.STUNNED_CANNOT_SHOOT_MOVE_10_SECONDS\",\"kind\":17,\"label\":\"CRIT.STUNNED_CANNOT_SHOOT_MOVE_10_SECONDS\",\"documentation\":\"CRIT.STUNNED_CANNOT_SHOOT_MOVE_10_SECONDS\",\"detail\":\"CRIT.STUNNED_CANNOT_SHOOT_MOVE_10_SECONDS\"},{\"id\":\"CRIT.SUPPLY_DROP_BLOW_UP\",\"kind\":17,\"label\":\"CRIT.SUPPLY_DROP_BLOW_UP\",\"documentation\":\"CRIT.SUPPLY_DROP_BLOW_UP\",\"detail\":\"CRIT.SUPPLY_DROP_BLOW_UP\"},{\"id\":\"CRIT.TANK_TRAP_DESTROY\",\"kind\":17,\"label\":\"CRIT.TANK_TRAP_DESTROY\",\"documentation\":\"CRIT.TANK_TRAP_DESTROY\",\"detail\":\"CRIT.TANK_TRAP_DESTROY\"},{\"id\":\"CRIT.TEAM_WEAPON_DISABLING_SHOT\",\"kind\":17,\"label\":\"CRIT.TEAM_WEAPON_DISABLING_SHOT\",\"documentation\":\"CRIT.TEAM_WEAPON_DISABLING_SHOT\",\"detail\":\"CRIT.TEAM_WEAPON_DISABLING_SHOT\"},{\"id\":\"CRIT.VEHICLE_ABANDON\",\"kind\":17,\"label\":\"CRIT.VEHICLE_ABANDON\",\"documentation\":\"CRIT.VEHICLE_ABANDON\",\"detail\":\"CRIT.VEHICLE_ABANDON\"},{\"id\":\"CRIT.VEHICLE_ABANDON_STURMTIGER\",\"kind\":17,\"label\":\"CRIT.VEHICLE_ABANDON_STURMTIGER\",\"documentation\":\"CRIT.VEHICLE_ABANDON_STURMTIGER\",\"detail\":\"CRIT.VEHICLE_ABANDON_STURMTIGER\"},{\"id\":\"CRIT.VEHICLE_AEC_TEMP_ENGINE_DAMAGE\",\"kind\":17,\"label\":\"CRIT.VEHICLE_AEC_TEMP_ENGINE_DAMAGE\",\"documentation\":\"CRIT.VEHICLE_AEC_TEMP_ENGINE_DAMAGE\",\"detail\":\"CRIT.VEHICLE_AEC_TEMP_ENGINE_DAMAGE\"},{\"id\":\"CRIT.VEHICLE_AEC_TEMP_IMMOBILITY\",\"kind\":17,\"label\":\"CRIT.VEHICLE_AEC_TEMP_IMMOBILITY\",\"documentation\":\"CRIT.VEHICLE_AEC_TEMP_IMMOBILITY\",\"detail\":\"CRIT.VEHICLE_AEC_TEMP_IMMOBILITY\"},{\"id\":\"CRIT.VEHICLE_BLIND\",\"kind\":17,\"label\":\"CRIT.VEHICLE_BLIND\",\"documentation\":\"CRIT.VEHICLE_BLIND\",\"detail\":\"CRIT.VEHICLE_BLIND\"},{\"id\":\"CRIT.VEHICLE_CREW_DAZED_JAGDTIGER\",\"kind\":17,\"label\":\"CRIT.VEHICLE_CREW_DAZED_JAGDTIGER\",\"documentation\":\"CRIT.VEHICLE_CREW_DAZED_JAGDTIGER\",\"detail\":\"CRIT.VEHICLE_CREW_DAZED_JAGDTIGER\"},{\"id\":\"CRIT.VEHICLE_CREW_SHOCKED\",\"kind\":17,\"label\":\"CRIT.VEHICLE_CREW_SHOCKED\",\"documentation\":\"CRIT.VEHICLE_CREW_SHOCKED\",\"detail\":\"CRIT.VEHICLE_CREW_SHOCKED\"},{\"id\":\"CRIT.VEHICLE_CREW_STUNNED\",\"kind\":17,\"label\":\"CRIT.VEHICLE_CREW_STUNNED\",\"documentation\":\"CRIT.VEHICLE_CREW_STUNNED\",\"detail\":\"CRIT.VEHICLE_CREW_STUNNED\"},{\"id\":\"CRIT.VEHICLE_CREW_STUNNED_2\",\"kind\":17,\"label\":\"CRIT.VEHICLE_CREW_STUNNED_2\",\"documentation\":\"CRIT.VEHICLE_CREW_STUNNED_2\",\"detail\":\"CRIT.VEHICLE_CREW_STUNNED_2\"},{\"id\":\"CRIT.VEHICLE_DAMAGE_ENGINE\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DAMAGE_ENGINE\",\"documentation\":\"CRIT.VEHICLE_DAMAGE_ENGINE\",\"detail\":\"CRIT.VEHICLE_DAMAGE_ENGINE\"},{\"id\":\"CRIT.VEHICLE_DAMAGE_ENGINE_INCREMENTAL\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DAMAGE_ENGINE_INCREMENTAL\",\"documentation\":\"CRIT.VEHICLE_DAMAGE_ENGINE_INCREMENTAL\",\"detail\":\"CRIT.VEHICLE_DAMAGE_ENGINE_INCREMENTAL\"},{\"id\":\"CRIT.VEHICLE_DAMAGE_ENGINE_REAR\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DAMAGE_ENGINE_REAR\",\"documentation\":\"CRIT.VEHICLE_DAMAGE_ENGINE_REAR\",\"detail\":\"CRIT.VEHICLE_DAMAGE_ENGINE_REAR\"},{\"id\":\"CRIT.VEHICLE_DAMAGE_ENGINE_REAR_RAMMING\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DAMAGE_ENGINE_REAR_RAMMING\",\"documentation\":\"CRIT.VEHICLE_DAMAGE_ENGINE_REAR_RAMMING\",\"detail\":\"CRIT.VEHICLE_DAMAGE_ENGINE_REAR_RAMMING\"},{\"id\":\"CRIT.VEHICLE_DAMAGE_ENGINE_SNARE\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DAMAGE_ENGINE_SNARE\",\"documentation\":\"CRIT.VEHICLE_DAMAGE_ENGINE_SNARE\",\"detail\":\"CRIT.VEHICLE_DAMAGE_ENGINE_SNARE\"},{\"id\":\"CRIT.VEHICLE_DECREW\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DECREW\",\"documentation\":\"CRIT.VEHICLE_DECREW\",\"detail\":\"CRIT.VEHICLE_DECREW\"},{\"id\":\"CRIT.VEHICLE_DESTROY\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DESTROY\",\"documentation\":\"CRIT.VEHICLE_DESTROY\",\"detail\":\"CRIT.VEHICLE_DESTROY\"},{\"id\":\"CRIT.VEHICLE_DESTROY_BREW_UP\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DESTROY_BREW_UP\",\"documentation\":\"CRIT.VEHICLE_DESTROY_BREW_UP\",\"detail\":\"CRIT.VEHICLE_DESTROY_BREW_UP\"},{\"id\":\"CRIT.VEHICLE_DESTROY_ENGINE\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DESTROY_ENGINE\",\"documentation\":\"CRIT.VEHICLE_DESTROY_ENGINE\",\"detail\":\"CRIT.VEHICLE_DESTROY_ENGINE\"},{\"id\":\"CRIT.VEHICLE_DESTROY_ENGINE_REAR\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DESTROY_ENGINE_REAR\",\"documentation\":\"CRIT.VEHICLE_DESTROY_ENGINE_REAR\",\"detail\":\"CRIT.VEHICLE_DESTROY_ENGINE_REAR\"},{\"id\":\"CRIT.VEHICLE_DESTROY_MAINGUN\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DESTROY_MAINGUN\",\"documentation\":\"CRIT.VEHICLE_DESTROY_MAINGUN\",\"detail\":\"CRIT.VEHICLE_DESTROY_MAINGUN\"},{\"id\":\"CRIT.VEHICLE_DESTROY_MAINGUN_RAMMING\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DESTROY_MAINGUN_RAMMING\",\"documentation\":\"CRIT.VEHICLE_DESTROY_MAINGUN_RAMMING\",\"detail\":\"CRIT.VEHICLE_DESTROY_MAINGUN_RAMMING\"},{\"id\":\"CRIT.VEHICLE_DESTROY_QUAD_50\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DESTROY_QUAD_50\",\"documentation\":\"CRIT.VEHICLE_DESTROY_QUAD_50\",\"detail\":\"CRIT.VEHICLE_DESTROY_QUAD_50\"},{\"id\":\"CRIT.VEHICLE_DESTROY_SEARCHLIGHT_IR_HALFTRACK\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DESTROY_SEARCHLIGHT_IR_HALFTRACK\",\"documentation\":\"CRIT.VEHICLE_DESTROY_SEARCHLIGHT_IR_HALFTRACK\",\"detail\":\"CRIT.VEHICLE_DESTROY_SEARCHLIGHT_IR_HALFTRACK\"},{\"id\":\"CRIT.VEHICLE_DESTROY_WEAPON_TEAM\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DESTROY_WEAPON_TEAM\",\"documentation\":\"CRIT.VEHICLE_DESTROY_WEAPON_TEAM\",\"detail\":\"CRIT.VEHICLE_DESTROY_WEAPON_TEAM\"},{\"id\":\"CRIT.VEHICLE_DRIVER_INJURED\",\"kind\":17,\"label\":\"CRIT.VEHICLE_DRIVER_INJURED\",\"documentation\":\"CRIT.VEHICLE_DRIVER_INJURED\",\"detail\":\"CRIT.VEHICLE_DRIVER_INJURED\"},{\"id\":\"CRIT.VEHICLE_ENGINE_BURNING\",\"kind\":17,\"label\":\"CRIT.VEHICLE_ENGINE_BURNING\",\"documentation\":\"CRIT.VEHICLE_ENGINE_BURNING\",\"detail\":\"CRIT.VEHICLE_ENGINE_BURNING\"},{\"id\":\"CRIT.VEHICLE_EXHAUST_DAMAGED\",\"kind\":17,\"label\":\"CRIT.VEHICLE_EXHAUST_DAMAGED\",\"documentation\":\"CRIT.VEHICLE_EXHAUST_DAMAGED\",\"detail\":\"CRIT.VEHICLE_EXHAUST_DAMAGED\"},{\"id\":\"CRIT.VEHICLE_GUNNER_INJURED\",\"kind\":17,\"label\":\"CRIT.VEHICLE_GUNNER_INJURED\",\"documentation\":\"CRIT.VEHICLE_GUNNER_INJURED\",\"detail\":\"CRIT.VEHICLE_GUNNER_INJURED\"},{\"id\":\"CRIT.VEHICLE_KILL_BRIT_TANK_COMMANDER\",\"kind\":17,\"label\":\"CRIT.VEHICLE_KILL_BRIT_TANK_COMMANDER\",\"documentation\":\"CRIT.VEHICLE_KILL_BRIT_TANK_COMMANDER\",\"detail\":\"CRIT.VEHICLE_KILL_BRIT_TANK_COMMANDER\"},{\"id\":\"CRIT.VEHICLE_KILL_COMMANDER\",\"kind\":17,\"label\":\"CRIT.VEHICLE_KILL_COMMANDER\",\"documentation\":\"CRIT.VEHICLE_KILL_COMMANDER\",\"detail\":\"CRIT.VEHICLE_KILL_COMMANDER\"},{\"id\":\"CRIT.VEHICLE_KILL_DRIVER_RUSSIAN\",\"kind\":17,\"label\":\"CRIT.VEHICLE_KILL_DRIVER_RUSSIAN\",\"documentation\":\"CRIT.VEHICLE_KILL_DRIVER_RUSSIAN\",\"detail\":\"CRIT.VEHICLE_KILL_DRIVER_RUSSIAN\"},{\"id\":\"CRIT.VEHICLE_KILL_GUNNER_RUSSIAN\",\"kind\":17,\"label\":\"CRIT.VEHICLE_KILL_GUNNER_RUSSIAN\",\"documentation\":\"CRIT.VEHICLE_KILL_GUNNER_RUSSIAN\",\"detail\":\"CRIT.VEHICLE_KILL_GUNNER_RUSSIAN\"},{\"id\":\"CRIT.VEHICLE_KILL_RELOADER_RUSSIAN\",\"kind\":17,\"label\":\"CRIT.VEHICLE_KILL_RELOADER_RUSSIAN\",\"documentation\":\"CRIT.VEHICLE_KILL_RELOADER_RUSSIAN\",\"detail\":\"CRIT.VEHICLE_KILL_RELOADER_RUSSIAN\"},{\"id\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_1\",\"kind\":17,\"label\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_1\",\"documentation\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_1\",\"detail\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_1\"},{\"id\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_2\",\"kind\":17,\"label\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_2\",\"documentation\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_2\",\"detail\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_2\"},{\"id\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_4\",\"kind\":17,\"label\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_4\",\"documentation\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_4\",\"detail\":\"CRIT.VEHICLE_KILL_TOP_GUNNER_HARDPOINT_4\"},{\"id\":\"CRIT.VEHICLE_LIGHT_DAMAGE_ENGINE\",\"kind\":17,\"label\":\"CRIT.VEHICLE_LIGHT_DAMAGE_ENGINE\",\"documentation\":\"CRIT.VEHICLE_LIGHT_DAMAGE_ENGINE\",\"detail\":\"CRIT.VEHICLE_LIGHT_DAMAGE_ENGINE\"},{\"id\":\"CRIT.VEHICLE_LIGHT_DAMAGE_ENGINE_REAR\",\"kind\":17,\"label\":\"CRIT.VEHICLE_LIGHT_DAMAGE_ENGINE_REAR\",\"documentation\":\"CRIT.VEHICLE_LIGHT_DAMAGE_ENGINE_REAR\",\"detail\":\"CRIT.VEHICLE_LIGHT_DAMAGE_ENGINE_REAR\"},{\"id\":\"CRIT.VEHICLE_LIGHT_DESTROY_ENGINE\",\"kind\":17,\"label\":\"CRIT.VEHICLE_LIGHT_DESTROY_ENGINE\",\"documentation\":\"CRIT.VEHICLE_LIGHT_DESTROY_ENGINE\",\"detail\":\"CRIT.VEHICLE_LIGHT_DESTROY_ENGINE\"},{\"id\":\"CRIT.VEHICLE_LIGHT_DESTROY_ENGINE_REAR\",\"kind\":17,\"label\":\"CRIT.VEHICLE_LIGHT_DESTROY_ENGINE_REAR\",\"documentation\":\"CRIT.VEHICLE_LIGHT_DESTROY_ENGINE_REAR\",\"detail\":\"CRIT.VEHICLE_LIGHT_DESTROY_ENGINE_REAR\"},{\"id\":\"CRIT.VEHICLE_LOADER_INJURED\",\"kind\":17,\"label\":\"CRIT.VEHICLE_LOADER_INJURED\",\"documentation\":\"CRIT.VEHICLE_LOADER_INJURED\",\"detail\":\"CRIT.VEHICLE_LOADER_INJURED\"},{\"id\":\"CRIT.VEHICLE_LOSE_TREADS_OR_WHEELS\",\"kind\":17,\"label\":\"CRIT.VEHICLE_LOSE_TREADS_OR_WHEELS\",\"documentation\":\"CRIT.VEHICLE_LOSE_TREADS_OR_WHEELS\",\"detail\":\"CRIT.VEHICLE_LOSE_TREADS_OR_WHEELS\"},{\"id\":\"CRIT.VEHICLE_MAKE_WRECK\",\"kind\":17,\"label\":\"CRIT.VEHICLE_MAKE_WRECK\",\"documentation\":\"CRIT.VEHICLE_MAKE_WRECK\",\"detail\":\"CRIT.VEHICLE_MAKE_WRECK\"},{\"id\":\"CRIT.VEHICLE_OPTICS_DAMAGED\",\"kind\":17,\"label\":\"CRIT.VEHICLE_OPTICS_DAMAGED\",\"documentation\":\"CRIT.VEHICLE_OPTICS_DAMAGED\",\"detail\":\"CRIT.VEHICLE_OPTICS_DAMAGED\"},{\"id\":\"CRIT.VEHICLE_OPTICS_DAMAGED_TEMP\",\"kind\":17,\"label\":\"CRIT.VEHICLE_OPTICS_DAMAGED_TEMP\",\"documentation\":\"CRIT.VEHICLE_OPTICS_DAMAGED_TEMP\",\"detail\":\"CRIT.VEHICLE_OPTICS_DAMAGED_TEMP\"},{\"id\":\"CRIT.VEHICLE_OUT_OF_CONTROL_FAST\",\"kind\":17,\"label\":\"CRIT.VEHICLE_OUT_OF_CONTROL_FAST\",\"documentation\":\"CRIT.VEHICLE_OUT_OF_CONTROL_FAST\",\"detail\":\"CRIT.VEHICLE_OUT_OF_CONTROL_FAST\"},{\"id\":\"CRIT.VEHICLE_OUT_OF_CONTROL_SLOW\",\"kind\":17,\"label\":\"CRIT.VEHICLE_OUT_OF_CONTROL_SLOW\",\"documentation\":\"CRIT.VEHICLE_OUT_OF_CONTROL_SLOW\",\"detail\":\"CRIT.VEHICLE_OUT_OF_CONTROL_SLOW\"},{\"id\":\"CRIT.VEHICLE_OUT_OF_FUEL_GERMAN_SP\",\"kind\":17,\"label\":\"CRIT.VEHICLE_OUT_OF_FUEL_GERMAN_SP\",\"documentation\":\"CRIT.VEHICLE_OUT_OF_FUEL_GERMAN_SP\",\"detail\":\"CRIT.VEHICLE_OUT_OF_FUEL_GERMAN_SP\"},{\"id\":\"CRIT.VEHICLE_SHELL_SHOCKED\",\"kind\":17,\"label\":\"CRIT.VEHICLE_SHELL_SHOCKED\",\"documentation\":\"CRIT.VEHICLE_SHELL_SHOCKED\",\"detail\":\"CRIT.VEHICLE_SHELL_SHOCKED\"},{\"id\":\"CRIT.VEHICLE_SNIPER_SLOW\",\"kind\":17,\"label\":\"CRIT.VEHICLE_SNIPER_SLOW\",\"documentation\":\"CRIT.VEHICLE_SNIPER_SLOW\",\"detail\":\"CRIT.VEHICLE_SNIPER_SLOW\"},{\"id\":\"CRIT.VEHICLE_STUCK_IN_MUD\",\"kind\":17,\"label\":\"CRIT.VEHICLE_STUCK_IN_MUD\",\"documentation\":\"CRIT.VEHICLE_STUCK_IN_MUD\",\"detail\":\"CRIT.VEHICLE_STUCK_IN_MUD\"},{\"id\":\"CRIT.VEHICLE_TANK_GRAB_ABANDON_SP\",\"kind\":17,\"label\":\"CRIT.VEHICLE_TANK_GRAB_ABANDON_SP\",\"documentation\":\"CRIT.VEHICLE_TANK_GRAB_ABANDON_SP\",\"detail\":\"CRIT.VEHICLE_TANK_GRAB_ABANDON_SP\"},{\"id\":\"CRIT.VEHICLE_TEMP_IMMOBILITY\",\"kind\":17,\"label\":\"CRIT.VEHICLE_TEMP_IMMOBILITY\",\"documentation\":\"CRIT.VEHICLE_TEMP_IMMOBILITY\",\"detail\":\"CRIT.VEHICLE_TEMP_IMMOBILITY\"},{\"id\":\"CRIT.VEHICLE_TURRET_DISABLED_TEMP\",\"kind\":17,\"label\":\"CRIT.VEHICLE_TURRET_DISABLED_TEMP\",\"documentation\":\"CRIT.VEHICLE_TURRET_DISABLED_TEMP\",\"detail\":\"CRIT.VEHICLE_TURRET_DISABLED_TEMP\"},{\"id\":\"CRIT.VEHICLE_UNIVERSAL_CARRIER_FLAMETHROWER_EXPLODE\",\"kind\":17,\"label\":\"CRIT.VEHICLE_UNIVERSAL_CARRIER_FLAMETHROWER_EXPLODE\",\"documentation\":\"CRIT.VEHICLE_UNIVERSAL_CARRIER_FLAMETHROWER_EXPLODE\",\"detail\":\"CRIT.VEHICLE_UNIVERSAL_CARRIER_FLAMETHROWER_EXPLODE\"},{\"id\":\"CRIT.VEHICLE_VISION\",\"kind\":17,\"label\":\"CRIT.VEHICLE_VISION\",\"documentation\":\"CRIT.VEHICLE_VISION\",\"detail\":\"CRIT.VEHICLE_VISION\"},{\"id\":\"CRIT.VEHICLE_VISON_BLOCK_DAMAGED\",\"kind\":17,\"label\":\"CRIT.VEHICLE_VISON_BLOCK_DAMAGED\",\"documentation\":\"CRIT.VEHICLE_VISON_BLOCK_DAMAGED\",\"detail\":\"CRIT.VEHICLE_VISON_BLOCK_DAMAGED\"},{\"id\":\"CRIT.VEHICLE_WEAPON_DISABLED_TEMP\",\"kind\":17,\"label\":\"CRIT.VEHICLE_WEAPON_DISABLED_TEMP\",\"documentation\":\"CRIT.VEHICLE_WEAPON_DISABLED_TEMP\",\"detail\":\"CRIT.VEHICLE_WEAPON_DISABLED_TEMP\"},{\"id\":\"CRIT.WORLD_DESTROY_BARRIER\",\"kind\":17,\"label\":\"CRIT.WORLD_DESTROY_BARRIER\",\"documentation\":\"CRIT.WORLD_DESTROY_BARRIER\",\"detail\":\"CRIT.WORLD_DESTROY_BARRIER\"},{\"id\":\"CRIT.WORLD_OBJECT_DESTROY\",\"kind\":17,\"label\":\"CRIT.WORLD_OBJECT_DESTROY\",\"documentation\":\"CRIT.WORLD_OBJECT_DESTROY\",\"detail\":\"CRIT.WORLD_OBJECT_DESTROY\"},{\"id\":\"CRIT.WORLD_OWNED_VEHICLE_ABANDON\",\"kind\":17,\"label\":\"CRIT.WORLD_OWNED_VEHICLE_ABANDON\",\"documentation\":\"CRIT.WORLD_OWNED_VEHICLE_ABANDON\",\"detail\":\"CRIT.WORLD_OWNED_VEHICLE_ABANDON\"},{\"id\":\"workspace_BridgeReplace_OnInit\",\"name\":\"BridgeReplace_OnInit\",\"filepath\":\"e:coh2_mods2p_bridge_replacescar2p_bridge_replace.scar\",\"kind\":8,\"label\":\"BridgeReplace_OnInit\",\"detail\":\"BridgeReplace_OnInit()\",\"documentation\":\"File: e:coh2_mods2p_bridge_replacescar2p_bridge_replace.scar, line 3\"},{\"id\":\"workspace_SkinPreviewCapture_Init\",\"name\":\"SkinPreviewCapture_Init\",\"filepath\":\"e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar\",\"kind\":8,\"label\":\"SkinPreviewCapture_Init\",\"detail\":\"SkinPreviewCapture_Init()\",\"documentation\":\"File: e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar, line 21\"},{\"id\":\"workspace_SkinPreviewCapture_SpawnVehicles\",\"name\":\"SkinPreviewCapture_SpawnVehicles\",\"filepath\":\"e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar\",\"kind\":8,\"label\":\"SkinPreviewCapture_SpawnVehicles\",\"detail\":\"SkinPreviewCapture_SpawnVehicles()\",\"documentation\":\"File: e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar, line 72\"},{\"id\":\"workspace_SkinPreviewCapture_UIInit\",\"name\":\"SkinPreviewCapture_UIInit\",\"filepath\":\"e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar\",\"kind\":8,\"label\":\"SkinPreviewCapture_UIInit\",\"detail\":\"SkinPreviewCapture_UIInit()\",\"documentation\":\"File: e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar, line 125\"},{\"id\":\"workspace_SkinPreviewCapture_CycleAndCaptureScreenshots\",\"name\":\"SkinPreviewCapture_CycleAndCaptureScreenshots\",\"filepath\":\"e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar\",\"kind\":8,\"label\":\"SkinPreviewCapture_CycleAndCaptureScreenshots\",\"detail\":\"SkinPreviewCapture_CycleAndCaptureScreenshots()\",\"documentation\":\"File: e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar, line 247\"},{\"id\":\"workspace_SkinPreviewCapture_Begin\",\"name\":\"SkinPreviewCapture_Begin\",\"filepath\":\"e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar\",\"kind\":8,\"label\":\"SkinPreviewCapture_Begin\",\"detail\":\"SkinPreviewCapture_Begin()\",\"documentation\":\"File: e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar, line 268\"},{\"id\":\"workspace_SkinPreviewCapture_BeginCountdown\",\"name\":\"SkinPreviewCapture_BeginCountdown\",\"filepath\":\"e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar\",\"kind\":8,\"label\":\"SkinPreviewCapture_BeginCountdown\",\"detail\":\"SkinPreviewCapture_BeginCountdown()\",\"documentation\":\"File: e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar, line 323\"},{\"id\":\"workspace_SkinPreviewCapture_ExitCountdown\",\"name\":\"SkinPreviewCapture_ExitCountdown\",\"filepath\":\"e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar\",\"kind\":8,\"label\":\"SkinPreviewCapture_ExitCountdown\",\"detail\":\"SkinPreviewCapture_ExitCountdown()\",\"documentation\":\"File: e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar, line 334\"},{\"id\":\"workspace_SkinPreviewCapture_Exit\",\"name\":\"SkinPreviewCapture_Exit\",\"filepath\":\"e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar\",\"kind\":8,\"label\":\"SkinPreviewCapture_Exit\",\"detail\":\"SkinPreviewCapture_Exit()\",\"documentation\":\"File: e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar, line 345\"},{\"id\":\"workspace_SkinPreviewCapture_StartCountdown\",\"name\":\"SkinPreviewCapture_StartCountdown\",\"filepath\":\"e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar\",\"kind\":8,\"label\":\"SkinPreviewCapture_StartCountdown\",\"detail\":\"SkinPreviewCapture_StartCountdown()\",\"documentation\":\"File: e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture.scar, line 351\"},{\"id\":\"workspace_Map_PreInit\",\"name\":\"Map_PreInit\",\"filepath\":\"e:coh2_mods2p_skin_preview_mapsharedscar2p_skin_preview_map.scar\",\"kind\":8,\"label\":\"Map_PreInit\",\"detail\":\"Map_PreInit()\",\"documentation\":\"File: e:coh2_mods2p_skin_preview_mapsharedscar2p_skin_preview_map.scar, line 29\"},{\"id\":\"workspace_SkinPreviewCapture_Configure\",\"name\":\"SkinPreviewCapture_Configure\",\"filepath\":\"e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture_config.scar\",\"kind\":8,\"label\":\"SkinPreviewCapture_Configure\",\"detail\":\"SkinPreviewCapture_Configure()\",\"documentation\":\"File: e:coh2_mods2p_skin_preview_mapsharedscarskinpreviewcapture_config.scar, line 1\"},{\"id\":\"workspace_AOH_PreInit\",\"name\":\"AOH_PreInit\",\"filepath\":\"e:coh2_modsage_of_heroes_oldaoh_wincondition_packscaraoh_core.scar\",\"kind\":8,\"label\":\"AOH_PreInit\",\"detail\":\"AOH_PreInit()\",\"documentation\":\"File: e:coh2_modsage_of_heroes_oldaoh_wincondition_packscaraoh_core.scar, line 3\"},{\"id\":\"workspace_AV_PreInit\",\"name\":\"AV_PreInit\",\"filepath\":\"e:coh2_modsautovictoryscarautovictory_core.scar\",\"kind\":8,\"label\":\"AV_PreInit\",\"detail\":\"AV_PreInit()\",\"documentation\":\"File: e:coh2_modsautovictoryscarautovictory_core.scar, line 8\"},{\"id\":\"workspace_AV_Init\",\"name\":\"AV_Init\",\"filepath\":\"e:coh2_modsautovictoryscarautovictory.scar\",\"kind\":8,\"label\":\"AV_Init\",\"detail\":\"AV_Init()\",\"documentation\":\"File: e:coh2_modsautovictoryscarautovictory.scar, line 8\"},{\"id\":\"workspace_AV_UpdateObjectiveTimer\",\"name\":\"AV_UpdateObjectiveTimer\",\"filepath\":\"e:coh2_modsautovictoryscarautovictory.scar\",\"kind\":8,\"label\":\"AV_UpdateObjectiveTimer\",\"detail\":\"AV_UpdateObjectiveTimer()\",\"documentation\":\"File: e:coh2_modsautovictoryscarautovictory.scar, line 15\"},{\"id\":\"workspace_AV_UIInit\",\"name\":\"AV_UIInit\",\"filepath\":\"e:coh2_modsautovictoryscarautovictory.scar\",\"kind\":8,\"label\":\"AV_UIInit\",\"detail\":\"AV_UIInit()\",\"documentation\":\"File: e:coh2_modsautovictoryscarautovictory.scar, line 46\"},{\"id\":\"workspace_AV_End\",\"name\":\"AV_End\",\"filepath\":\"e:coh2_modsautovictoryscarautovictory.scar\",\"kind\":8,\"label\":\"AV_End\",\"detail\":\"AV_End()\",\"documentation\":\"File: e:coh2_modsautovictoryscarautovictory.scar, line 105\"},{\"id\":\"workspace_CCM_ActionSpawnUKFSpawner\",\"name\":\"CCM_ActionSpawnUKFSpawner\",\"filepath\":\"e:coh2_modsccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionSpawnUKFSpawner\",\"detail\":\"CCM_ActionSpawnUKFSpawner(caster, target)\",\"documentation\":\"File: e:coh2_modsccmscarccm_action.scar, line 261\"},{\"id\":\"workspace_CCM_ActionSpawnUKFMiscSpawner\",\"name\":\"CCM_ActionSpawnUKFMiscSpawner\",\"filepath\":\"e:coh2_modsccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionSpawnUKFMiscSpawner\",\"detail\":\"CCM_ActionSpawnUKFMiscSpawner(caster, target)\",\"documentation\":\"File: e:coh2_modsccmscarccm_action.scar, line 301\"},{\"id\":\"workspace_Squad_ToClipboardData\",\"name\":\"Squad_ToClipboardData\",\"filepath\":\"e:coh2_modsccm_v2scarccm_clipboard.scar\",\"kind\":8,\"label\":\"Squad_ToClipboardData\",\"detail\":\"Squad_ToClipboardData(squad)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_clipboard.scar, line 22\"},{\"id\":\"workspace_Squad_FromClipboardData\",\"name\":\"Squad_FromClipboardData\",\"filepath\":\"e:coh2_modsccm_v2scarccm_clipboard.scar\",\"kind\":8,\"label\":\"Squad_FromClipboardData\",\"detail\":\"Squad_FromClipboardData(data, pos)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_clipboard.scar, line 52\"},{\"id\":\"workspace_Entity_FromClipboardData\",\"name\":\"Entity_FromClipboardData\",\"filepath\":\"e:coh2_modsccm_v2scarccm_clipboard.scar\",\"kind\":8,\"label\":\"Entity_FromClipboardData\",\"detail\":\"Entity_FromClipboardData(data, pos)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_clipboard.scar, line 125\"},{\"id\":\"workspace_Entity_ToDataParameters\",\"name\":\"Entity_ToDataParameters\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Entity_ToDataParameters\",\"detail\":\"Entity_ToDataParameters(entity)\",\"documentation\":\"****************************************************************************************--n*************************************** ENTITY *****************************************--n****************************************************************************************-- File: e:coh2_modsccm_v2scarccm_helpers.scar, line 26\"},{\"id\":\"workspace_Entity_GetHealthPointsString\",\"name\":\"Entity_GetHealthPointsString\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Entity_GetHealthPointsString\",\"detail\":\"Entity_GetHealthPointsString(entity)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 30\"},{\"id\":\"workspace_Squad_ToDataParameters\",\"name\":\"Squad_ToDataParameters\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Squad_ToDataParameters\",\"detail\":\"Squad_ToDataParameters(squad)\",\"documentation\":\"****************************************************************************************--n*************************************** SQUAD ******************************************--n****************************************************************************************-- File: e:coh2_modsccm_v2scarccm_helpers.scar, line 37\"},{\"id\":\"workspace_Squad_GetHealthPointsString\",\"name\":\"Squad_GetHealthPointsString\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Squad_GetHealthPointsString\",\"detail\":\"Squad_GetHealthPointsString(squad)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 41\"},{\"id\":\"workspace_Player_ToDataParameters\",\"name\":\"Player_ToDataParameters\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Player_ToDataParameters\",\"detail\":\"Player_ToDataParameters(player)\",\"documentation\":\"****************************************************************************************--n*************************************** PLAYER *****************************************--n****************************************************************************************-- File: e:coh2_modsccm_v2scarccm_helpers.scar, line 48\"},{\"id\":\"workspace_Player_GetSetting\",\"name\":\"Player_GetSetting\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Player_GetSetting\",\"detail\":\"Player_GetSetting(player, name)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 52\"},{\"id\":\"workspace_Player_SetSetting\",\"name\":\"Player_SetSetting\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Player_SetSetting\",\"detail\":\"Player_SetSetting(player, name, value)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 56\"},{\"id\":\"workspace_Player_GetSettings\",\"name\":\"Player_GetSettings\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Player_GetSettings\",\"detail\":\"Player_GetSettings(player)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 60\"},{\"id\":\"workspace_LocalPlayer_GetSettings\",\"name\":\"LocalPlayer_GetSettings\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"LocalPlayer_GetSettings\",\"detail\":\"LocalPlayer_GetSettings()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 64\"},{\"id\":\"workspace_Data_GetHealthModifiedString\",\"name\":\"Data_GetHealthModifiedString\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Data_GetHealthModifiedString\",\"detail\":\"Data_GetHealthModifiedString(playerData, data, itemType, valueUnit, editMethod)\",\"documentation\":\"****************************************************************************************--n**************************************** MISC ******************************************--n****************************************************************************************-- File: e:coh2_modsccm_v2scarccm_helpers.scar, line 70\"},{\"id\":\"workspace_Data_GetOwnerChangedString\",\"name\":\"Data_GetOwnerChangedString\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Data_GetOwnerChangedString\",\"detail\":\"Data_GetOwnerChangedString(playerData, data, newOwner)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 105\"},{\"id\":\"workspace_CCM_EventCueClickManger\",\"name\":\"CCM_EventCueClickManger\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_EventCueClickManger\",\"detail\":\"CCM_EventCueClickManger(id)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 128\"},{\"id\":\"workspace_CCM_EventMessage\",\"name\":\"CCM_EventMessage\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_EventMessage\",\"detail\":\"CCM_EventMessage(msg, pos)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 134\"},{\"id\":\"workspace_CCM_EventKickerMessage\",\"name\":\"CCM_EventKickerMessage\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_EventKickerMessage\",\"detail\":\"CCM_EventKickerMessage(msg, pos, color)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 140\"},{\"id\":\"workspace_CCM_EventKickerMessageEval\",\"name\":\"CCM_EventKickerMessageEval\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_EventKickerMessageEval\",\"detail\":\"CCM_EventKickerMessageEval(msg, pos, eval, prependTrue, prependFalse, colorTrue, colorFalse)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 154\"},{\"id\":\"workspace_CCM_EventKickerHealthMessageEval\",\"name\":\"CCM_EventKickerHealthMessageEval\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_EventKickerHealthMessageEval\",\"detail\":\"CCM_EventKickerHealthMessageEval(msg, pos, eval, prependTrue, prependFalse, colorTrue, colorFalse)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 170\"},{\"id\":\"workspace_CCM_ErrorMessage\",\"name\":\"CCM_ErrorMessage\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_ErrorMessage\",\"detail\":\"CCM_ErrorMessage(msg, pos)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 188\"},{\"id\":\"workspace_Item_GetEnemyPlayer\",\"name\":\"Item_GetEnemyPlayer\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Item_GetEnemyPlayer\",\"detail\":\"Item_GetEnemyPlayer(item)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 194\"},{\"id\":\"workspace_CCM_SpawnQueueTick\",\"name\":\"CCM_SpawnQueueTick\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_SpawnQueueTick\",\"detail\":\"CCM_SpawnQueueTick()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 218\"},{\"id\":\"workspace_CCM_SpawnQueueInit\",\"name\":\"CCM_SpawnQueueInit\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_SpawnQueueInit\",\"detail\":\"CCM_SpawnQueueInit()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 239\"},{\"id\":\"workspace_CCM_SpawnQueueAdd\",\"name\":\"CCM_SpawnQueueAdd\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_SpawnQueueAdd\",\"detail\":\"CCM_SpawnQueueAdd(command, parameters)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 245\"},{\"id\":\"workspace_CCM_DummyMessage\",\"name\":\"CCM_DummyMessage\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_DummyMessage\",\"detail\":\"CCM_DummyMessage()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 249\"},{\"id\":\"workspace_CCM_PlayerCommandIssued\",\"name\":\"CCM_PlayerCommandIssued\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_PlayerCommandIssued\",\"detail\":\"CCM_PlayerCommandIssued(caster, command, target)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 264\"},{\"id\":\"workspace_CCM_SquadCommandIssued\",\"name\":\"CCM_SquadCommandIssued\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_SquadCommandIssued\",\"detail\":\"CCM_SquadCommandIssued(caster, command, target)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 269\"},{\"id\":\"workspace_CCM_EntityCommandIssued\",\"name\":\"CCM_EntityCommandIssued\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_EntityCommandIssued\",\"detail\":\"CCM_EntityCommandIssued(caster, command, target)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 274\"},{\"id\":\"workspace_CCM_CustomUIEvent\",\"name\":\"CCM_CustomUIEvent\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_CustomUIEvent\",\"detail\":\"CCM_CustomUIEvent()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 280\"},{\"id\":\"workspace_Variable_FromG\",\"name\":\"Variable_FromG\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Variable_FromG\",\"detail\":\"Variable_FromG(var)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 287\"},{\"id\":\"workspace_Ternary\",\"name\":\"Ternary\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"Ternary\",\"detail\":\"Ternary(var, _true, _false)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 297\"},{\"id\":\"workspace_CCM_PlayerCommandIssued2\",\"name\":\"CCM_PlayerCommandIssued2\",\"filepath\":\"e:coh2_modsccm_v2scarccm_helpers.scar\",\"kind\":8,\"label\":\"CCM_PlayerCommandIssued2\",\"detail\":\"CCM_PlayerCommandIssued2()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_helpers.scar, line 301\"},{\"id\":\"workspace_CCM_ConfigInit\",\"name\":\"CCM_ConfigInit\",\"filepath\":\"e:coh2_modsccm_v2scarccm_config.scar\",\"kind\":8,\"label\":\"CCM_ConfigInit\",\"detail\":\"CCM_ConfigInit()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_config.scar, line 28\"},{\"id\":\"workspace___subMenu_SetUpdateRate\",\"name\":\"__subMenu_SetUpdateRate\",\"filepath\":\"e:coh2_modsccm_v2scarccm_config.scar\",\"kind\":8,\"label\":\"__subMenu_SetUpdateRate\",\"detail\":\"__subMenu_SetUpdateRate(setterFunction, settingName)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_config.scar, line 2483\"},{\"id\":\"workspace___subMenu_SpawnUnits\",\"name\":\"__subMenu_SpawnUnits\",\"filepath\":\"e:coh2_modsccm_v2scarccm_config.scar\",\"kind\":8,\"label\":\"__subMenu_SpawnUnits\",\"detail\":\"__subMenu_SpawnUnits(name, units, icon)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_config.scar, line 2506\"},{\"id\":\"workspace___subMenu_ManipulateSquadMembers\",\"name\":\"__subMenu_ManipulateSquadMembers\",\"filepath\":\"e:coh2_modsccm_v2scarccm_config.scar\",\"kind\":8,\"label\":\"__subMenu_ManipulateSquadMembers\",\"detail\":\"__subMenu_ManipulateSquadMembers(func)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_config.scar, line 2651\"},{\"id\":\"workspace___panel_SelectionHealth\",\"name\":\"__panel_SelectionHealth\",\"filepath\":\"e:coh2_modsccm_v2scarccm_config.scar\",\"kind\":8,\"label\":\"__panel_SelectionHealth\",\"detail\":\"__panel_SelectionHealth()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_config.scar, line 2700\"},{\"id\":\"workspace_TestFormAdd\",\"name\":\"TestFormAdd\",\"filepath\":\"e:coh2_modsccm_v2scarccm_config.scar\",\"kind\":8,\"label\":\"TestFormAdd\",\"detail\":\"TestFormAdd()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_config.scar, line 2843\"},{\"id\":\"workspace_TestFormRender\",\"name\":\"TestFormRender\",\"filepath\":\"e:coh2_modsccm_v2scarccm_config.scar\",\"kind\":8,\"label\":\"TestFormRender\",\"detail\":\"TestFormRender()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_config.scar, line 2932\"},{\"id\":\"workspace_Test_SlotItemRemoveSpam\",\"name\":\"Test_SlotItemRemoveSpam\",\"filepath\":\"e:coh2_modsccm_v2scarccm_config.scar\",\"kind\":8,\"label\":\"Test_SlotItemRemoveSpam\",\"detail\":\"Test_SlotItemRemoveSpam()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_config.scar, line 2940\"},{\"id\":\"workspace_Test_SlotItemRemoveSpam_Tick\",\"name\":\"Test_SlotItemRemoveSpam_Tick\",\"filepath\":\"e:coh2_modsccm_v2scarccm_config.scar\",\"kind\":8,\"label\":\"Test_SlotItemRemoveSpam_Tick\",\"detail\":\"Test_SlotItemRemoveSpam_Tick()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_config.scar, line 2944\"},{\"id\":\"workspace_CCM_HealthMonitor_Tick\",\"name\":\"CCM_HealthMonitor_Tick\",\"filepath\":\"e:coh2_modsccm_v2scarccm_healthmonitor.scar\",\"kind\":8,\"label\":\"CCM_HealthMonitor_Tick\",\"detail\":\"CCM_HealthMonitor_Tick()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_healthmonitor.scar, line 24\"},{\"id\":\"workspace_CCM_HealthMonitor_HandleHealthMessage\",\"name\":\"CCM_HealthMonitor_HandleHealthMessage\",\"filepath\":\"e:coh2_modsccm_v2scarccm_healthmonitor.scar\",\"kind\":8,\"label\":\"CCM_HealthMonitor_HandleHealthMessage\",\"detail\":\"CCM_HealthMonitor_HandleHealthMessage(player, difference, pos, item)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_healthmonitor.scar, line 76\"},{\"id\":\"workspace_CCM_HealthMonitor_RegisterNewItem\",\"name\":\"CCM_HealthMonitor_RegisterNewItem\",\"filepath\":\"e:coh2_modsccm_v2scarccm_healthmonitor.scar\",\"kind\":8,\"label\":\"CCM_HealthMonitor_RegisterNewItem\",\"detail\":\"CCM_HealthMonitor_RegisterNewItem(item)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_healthmonitor.scar, line 108\"},{\"id\":\"workspace_CCM_HealthMonitorInit\",\"name\":\"CCM_HealthMonitorInit\",\"filepath\":\"e:coh2_modsccm_v2scarccm_healthmonitor.scar\",\"kind\":8,\"label\":\"CCM_HealthMonitorInit\",\"detail\":\"CCM_HealthMonitorInit()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_healthmonitor.scar, line 134\"},{\"id\":\"workspace_CCM_SuppressionMonitor_Tick\",\"name\":\"CCM_SuppressionMonitor_Tick\",\"filepath\":\"e:coh2_modsccm_v2scarccm_suppressionmonitor.scar\",\"kind\":8,\"label\":\"CCM_SuppressionMonitor_Tick\",\"detail\":\"CCM_SuppressionMonitor_Tick()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_suppressionmonitor.scar, line 24\"},{\"id\":\"workspace_CCM_SuppressionMonitor_HandleMessage\",\"name\":\"CCM_SuppressionMonitor_HandleMessage\",\"filepath\":\"e:coh2_modsccm_v2scarccm_suppressionmonitor.scar\",\"kind\":8,\"label\":\"CCM_SuppressionMonitor_HandleMessage\",\"detail\":\"CCM_SuppressionMonitor_HandleMessage(player, suppression, pos, item)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_suppressionmonitor.scar, line 53\"},{\"id\":\"workspace_CCM_SuppressionhMonitor_RegisterNewItem\",\"name\":\"CCM_SuppressionhMonitor_RegisterNewItem\",\"filepath\":\"e:coh2_modsccm_v2scarccm_suppressionmonitor.scar\",\"kind\":8,\"label\":\"CCM_SuppressionhMonitor_RegisterNewItem\",\"detail\":\"CCM_SuppressionhMonitor_RegisterNewItem(item)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_suppressionmonitor.scar, line 74\"},{\"id\":\"workspace_CCM_SuppressionMonitorInit\",\"name\":\"CCM_SuppressionMonitorInit\",\"filepath\":\"e:coh2_modsccm_v2scarccm_suppressionmonitor.scar\",\"kind\":8,\"label\":\"CCM_SuppressionMonitorInit\",\"detail\":\"CCM_SuppressionMonitorInit()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_suppressionmonitor.scar, line 88\"},{\"id\":\"workspace_CCM_Init\",\"name\":\"CCM_Init\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_Init\",\"detail\":\"CCM_Init()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 22\"},{\"id\":\"workspace_CCM_UIInit\",\"name\":\"CCM_UIInit\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_UIInit\",\"detail\":\"CCM_UIInit()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 165\"},{\"id\":\"workspace_CCM_BroadcastMessageReceived\",\"name\":\"CCM_BroadcastMessageReceived\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_BroadcastMessageReceived\",\"detail\":\"CCM_BroadcastMessageReceived(player, command, data)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 227\"},{\"id\":\"workspace_CCM_Broadcast\",\"name\":\"CCM_Broadcast\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_Broadcast\",\"detail\":\"CCM_Broadcast(command, data)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1132\"},{\"id\":\"workspace_CCM_ShowCrosshair\",\"name\":\"CCM_ShowCrosshair\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_ShowCrosshair\",\"detail\":\"CCM_ShowCrosshair()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1139\"},{\"id\":\"workspace_CCM_HideCrosshair\",\"name\":\"CCM_HideCrosshair\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_HideCrosshair\",\"detail\":\"CCM_HideCrosshair()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1145\"},{\"id\":\"workspace_CCM_DisableUI\",\"name\":\"CCM_DisableUI\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_DisableUI\",\"detail\":\"CCM_DisableUI(renableSeconds)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1151\"},{\"id\":\"workspace_CCM_EnableUI\",\"name\":\"CCM_EnableUI\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_EnableUI\",\"detail\":\"CCM_EnableUI()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1165\"},{\"id\":\"workspace_CCM_KillSelection\",\"name\":\"CCM_KillSelection\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_KillSelection\",\"detail\":\"CCM_KillSelection()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1171\"},{\"id\":\"workspace_CCM_DeleteSelection\",\"name\":\"CCM_DeleteSelection\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_DeleteSelection\",\"detail\":\"CCM_DeleteSelection()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1180\"},{\"id\":\"workspace_CCM_KillSquad\",\"name\":\"CCM_KillSquad\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_KillSquad\",\"detail\":\"CCM_KillSquad(squad)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1189\"},{\"id\":\"workspace_CCM_DeleteSquad\",\"name\":\"CCM_DeleteSquad\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_DeleteSquad\",\"detail\":\"CCM_DeleteSquad(squad)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1193\"},{\"id\":\"workspace_CCM_KillEntity\",\"name\":\"CCM_KillEntity\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_KillEntity\",\"detail\":\"CCM_KillEntity(entity)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1197\"},{\"id\":\"workspace_CCM_DeleteEntity\",\"name\":\"CCM_DeleteEntity\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_DeleteEntity\",\"detail\":\"CCM_DeleteEntity(entity)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1201\"},{\"id\":\"workspace_CCM_EnableFOW\",\"name\":\"CCM_EnableFOW\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_EnableFOW\",\"detail\":\"CCM_EnableFOW()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1205\"},{\"id\":\"workspace_CCM_DisableFOW\",\"name\":\"CCM_DisableFOW\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_DisableFOW\",\"detail\":\"CCM_DisableFOW()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1209\"},{\"id\":\"workspace_CCM_EnableAI\",\"name\":\"CCM_EnableAI\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_EnableAI\",\"detail\":\"CCM_EnableAI(player)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1213\"},{\"id\":\"workspace_CCM_DisableAI\",\"name\":\"CCM_DisableAI\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_DisableAI\",\"detail\":\"CCM_DisableAI(player)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1217\"},{\"id\":\"workspace_CCM_SetAIDifficulty\",\"name\":\"CCM_SetAIDifficulty\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetAIDifficulty\",\"detail\":\"CCM_SetAIDifficulty(player, difficulty)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1221\"},{\"id\":\"workspace_CCM_SetSelectionHealth\",\"name\":\"CCM_SetSelectionHealth\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetSelectionHealth\",\"detail\":\"CCM_SetSelectionHealth(percentage)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1225\"},{\"id\":\"workspace_CCM_AddSelectionHealthPercentage\",\"name\":\"CCM_AddSelectionHealthPercentage\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_AddSelectionHealthPercentage\",\"detail\":\"CCM_AddSelectionHealthPercentage(percentageAdd)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1235\"},{\"id\":\"workspace_CCM_AddSelectionHealthPoints\",\"name\":\"CCM_AddSelectionHealthPoints\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_AddSelectionHealthPoints\",\"detail\":\"CCM_AddSelectionHealthPoints(pointsAdd)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1245\"},{\"id\":\"workspace_CCM_SetSelectionInvulnerability\",\"name\":\"CCM_SetSelectionInvulnerability\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetSelectionInvulnerability\",\"detail\":\"CCM_SetSelectionInvulnerability(enabled)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1256\"},{\"id\":\"workspace_CCM_SetSelectionOwner\",\"name\":\"CCM_SetSelectionOwner\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetSelectionOwner\",\"detail\":\"CCM_SetSelectionOwner(owner)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1266\"},{\"id\":\"workspace_CCM_AddResource\",\"name\":\"CCM_AddResource\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_AddResource\",\"detail\":\"CCM_AddResource(player, resourceType, amount)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1291\"},{\"id\":\"workspace_CCM_ResetResource\",\"name\":\"CCM_ResetResource\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_ResetResource\",\"detail\":\"CCM_ResetResource(player, resourceType)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1295\"},{\"id\":\"workspace_CCM_AddPopulationCap\",\"name\":\"CCM_AddPopulationCap\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_AddPopulationCap\",\"detail\":\"CCM_AddPopulationCap(player, amount)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1299\"},{\"id\":\"workspace_CCM_SetInstantProductionEnabled\",\"name\":\"CCM_SetInstantProductionEnabled\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetInstantProductionEnabled\",\"detail\":\"CCM_SetInstantProductionEnabled(player, enabled)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1303\"},{\"id\":\"workspace_CCM_SetInstantConstructionEnabled\",\"name\":\"CCM_SetInstantConstructionEnabled\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetInstantConstructionEnabled\",\"detail\":\"CCM_SetInstantConstructionEnabled(player, enabled)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1307\"},{\"id\":\"workspace_CCM_SetInstantAbilityRechargeEnabled\",\"name\":\"CCM_SetInstantAbilityRechargeEnabled\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetInstantAbilityRechargeEnabled\",\"detail\":\"CCM_SetInstantAbilityRechargeEnabled(player, enabled)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1311\"},{\"id\":\"workspace_CCM_SpawnSquad\",\"name\":\"CCM_SpawnSquad\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SpawnSquad\",\"detail\":\"CCM_SpawnSquad(player, sbp)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1315\"},{\"id\":\"workspace_CCM_SpawnEntity\",\"name\":\"CCM_SpawnEntity\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SpawnEntity\",\"detail\":\"CCM_SpawnEntity(player, ebp)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1321\"},{\"id\":\"workspace_CCM_SpawnSlotItem\",\"name\":\"CCM_SpawnSlotItem\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SpawnSlotItem\",\"detail\":\"CCM_SpawnSlotItem(player, slotItem)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1326\"},{\"id\":\"workspace_CCM_IncreaseSelectionXP\",\"name\":\"CCM_IncreaseSelectionXP\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_IncreaseSelectionXP\",\"detail\":\"CCM_IncreaseSelectionXP(amount)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1331\"},{\"id\":\"workspace_CCM_IncreaseSelectionVeterancyLevel\",\"name\":\"CCM_IncreaseSelectionVeterancyLevel\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_IncreaseSelectionVeterancyLevel\",\"detail\":\"CCM_IncreaseSelectionVeterancyLevel(amount)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1341\"},{\"id\":\"workspace_CCM_InstantReinforceSelection\",\"name\":\"CCM_InstantReinforceSelection\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_InstantReinforceSelection\",\"detail\":\"CCM_InstantReinforceSelection(amount)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1347\"},{\"id\":\"workspace_CCM_SplitSelection\",\"name\":\"CCM_SplitSelection\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SplitSelection\",\"detail\":\"CCM_SplitSelection()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1353\"},{\"id\":\"workspace_CCM_RemoveSelectionCriticals\",\"name\":\"CCM_RemoveSelectionCriticals\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_RemoveSelectionCriticals\",\"detail\":\"CCM_RemoveSelectionCriticals()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1359\"},{\"id\":\"workspace_CCM_RemoveSquadCritical\",\"name\":\"CCM_RemoveSquadCritical\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_RemoveSquadCritical\",\"detail\":\"CCM_RemoveSquadCritical(squad, crit)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1368\"},{\"id\":\"workspace_CCM_RemoveEntityCritical\",\"name\":\"CCM_RemoveEntityCritical\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_RemoveEntityCritical\",\"detail\":\"CCM_RemoveEntityCritical(entity, crit)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1372\"},{\"id\":\"workspace_CCM_ApplyCriticalToSelection\",\"name\":\"CCM_ApplyCriticalToSelection\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_ApplyCriticalToSelection\",\"detail\":\"CCM_ApplyCriticalToSelection(crit)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1376\"},{\"id\":\"workspace_CCM_SetSquadAutoTargetting\",\"name\":\"CCM_SetSquadAutoTargetting\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetSquadAutoTargetting\",\"detail\":\"CCM_SetSquadAutoTargetting(squad, enabled)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1385\"},{\"id\":\"workspace_CCM_RemoveSquadUpgrade\",\"name\":\"CCM_RemoveSquadUpgrade\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_RemoveSquadUpgrade\",\"detail\":\"CCM_RemoveSquadUpgrade(squad, upgrade)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1389\"},{\"id\":\"workspace_CCM_RemoveEntityUpgrade\",\"name\":\"CCM_RemoveEntityUpgrade\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_RemoveEntityUpgrade\",\"detail\":\"CCM_RemoveEntityUpgrade(entity, upgrade)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1393\"},{\"id\":\"workspace_CCM_RemoveSquadSlotItem\",\"name\":\"CCM_RemoveSquadSlotItem\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_RemoveSquadSlotItem\",\"detail\":\"CCM_RemoveSquadSlotItem(squad, slotItem)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1397\"},{\"id\":\"workspace_CCM_SetSelectionFacing\",\"name\":\"CCM_SetSelectionFacing\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetSelectionFacing\",\"detail\":\"CCM_SetSelectionFacing()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1401\"},{\"id\":\"workspace_CCM_TeleportSelection\",\"name\":\"CCM_TeleportSelection\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_TeleportSelection\",\"detail\":\"CCM_TeleportSelection()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1409\"},{\"id\":\"workspace_CCM_KillEverything\",\"name\":\"CCM_KillEverything\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_KillEverything\",\"detail\":\"CCM_KillEverything(radius)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1420\"},{\"id\":\"workspace_CCM_DeleteEverything\",\"name\":\"CCM_DeleteEverything\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_DeleteEverything\",\"detail\":\"CCM_DeleteEverything(radius)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1425\"},{\"id\":\"workspace_CCM_RotateEntity\",\"name\":\"CCM_RotateEntity\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_RotateEntity\",\"detail\":\"CCM_RotateEntity(amount)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1430\"},{\"id\":\"workspace_CCM_SetHealthMonitorEnabled\",\"name\":\"CCM_SetHealthMonitorEnabled\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetHealthMonitorEnabled\",\"detail\":\"CCM_SetHealthMonitorEnabled(enabled)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1452\"},{\"id\":\"workspace_CCM_SetSuppressionMonitorEnabled\",\"name\":\"CCM_SetSuppressionMonitorEnabled\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetSuppressionMonitorEnabled\",\"detail\":\"CCM_SetSuppressionMonitorEnabled(enabled)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1456\"},{\"id\":\"workspace_CCM_SelectedTeamWeaponGarrisonFacePosition\",\"name\":\"CCM_SelectedTeamWeaponGarrisonFacePosition\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SelectedTeamWeaponGarrisonFacePosition\",\"detail\":\"CCM_SelectedTeamWeaponGarrisonFacePosition()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1460\"},{\"id\":\"workspace_CCM_CancelTeamWeaponGarrisonFacingOrder\",\"name\":\"CCM_CancelTeamWeaponGarrisonFacingOrder\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_CancelTeamWeaponGarrisonFacingOrder\",\"detail\":\"CCM_CancelTeamWeaponGarrisonFacingOrder()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1470\"},{\"id\":\"workspace_CCM_AddSelectionSuppression\",\"name\":\"CCM_AddSelectionSuppression\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_AddSelectionSuppression\",\"detail\":\"CCM_AddSelectionSuppression(amount)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1478\"},{\"id\":\"workspace_CCM_SetAllAIPlayersEnabled\",\"name\":\"CCM_SetAllAIPlayersEnabled\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetAllAIPlayersEnabled\",\"detail\":\"CCM_SetAllAIPlayersEnabled(enabled)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1486\"},{\"id\":\"workspace_CCM_ResetSelectionVeterancy\",\"name\":\"CCM_ResetSelectionVeterancy\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_ResetSelectionVeterancy\",\"detail\":\"CCM_ResetSelectionVeterancy()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1490\"},{\"id\":\"workspace_CCM_SetResourceIncomeEnabled\",\"name\":\"CCM_SetResourceIncomeEnabled\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetResourceIncomeEnabled\",\"detail\":\"CCM_SetResourceIncomeEnabled(player, enabled)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1496\"},{\"id\":\"workspace_CCM_SetHealthMonitorUpdateRate\",\"name\":\"CCM_SetHealthMonitorUpdateRate\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetHealthMonitorUpdateRate\",\"detail\":\"CCM_SetHealthMonitorUpdateRate(rate)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1500\"},{\"id\":\"workspace_CCM_SetSuppressionMonitorUpdateRate\",\"name\":\"CCM_SetSuppressionMonitorUpdateRate\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetSuppressionMonitorUpdateRate\",\"detail\":\"CCM_SetSuppressionMonitorUpdateRate(rate)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1504\"},{\"id\":\"workspace_CCM_UnlockCommanderAbility\",\"name\":\"CCM_UnlockCommanderAbility\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_UnlockCommanderAbility\",\"detail\":\"CCM_UnlockCommanderAbility(player, ability, upgrade, abilityName)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1508\"},{\"id\":\"workspace_CCM_ClearCommanderAbilities\",\"name\":\"CCM_ClearCommanderAbilities\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_ClearCommanderAbilities\",\"detail\":\"CCM_ClearCommanderAbilities(player)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1518\"},{\"id\":\"workspace_CCM_ModifySquadMovementSpeed\",\"name\":\"CCM_ModifySquadMovementSpeed\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_ModifySquadMovementSpeed\",\"detail\":\"CCM_ModifySquadMovementSpeed(squad, addition)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1522\"},{\"id\":\"workspace_CCM_SetSelectionOwnerToEnemy\",\"name\":\"CCM_SetSelectionOwnerToEnemy\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetSelectionOwnerToEnemy\",\"detail\":\"CCM_SetSelectionOwnerToEnemy()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1526\"},{\"id\":\"workspace_CCM_SquadToEntity\",\"name\":\"CCM_SquadToEntity\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SquadToEntity\",\"detail\":\"CCM_SquadToEntity(squad)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1535\"},{\"id\":\"workspace_CCM_SetEntityAnimatorState\",\"name\":\"CCM_SetEntityAnimatorState\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetEntityAnimatorState\",\"detail\":\"CCM_SetEntityAnimatorState(entity, state, value)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1539\"},{\"id\":\"workspace_CCM_SetSquadAnimatorState\",\"name\":\"CCM_SetSquadAnimatorState\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetSquadAnimatorState\",\"detail\":\"CCM_SetSquadAnimatorState(squad, state, value)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1543\"},{\"id\":\"workspace_CCM_SetSelectionAnimatorState\",\"name\":\"CCM_SetSelectionAnimatorState\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetSelectionAnimatorState\",\"detail\":\"CCM_SetSelectionAnimatorState(state, value)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1547\"},{\"id\":\"workspace_CCM_SetSelectionSkinType\",\"name\":\"CCM_SetSelectionSkinType\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SetSelectionSkinType\",\"detail\":\"CCM_SetSelectionSkinType(skinType)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1556\"},{\"id\":\"workspace_CCM_DropSelectionWeapons\",\"name\":\"CCM_DropSelectionWeapons\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_DropSelectionWeapons\",\"detail\":\"CCM_DropSelectionWeapons()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1567\"},{\"id\":\"workspace_CCM_CaptureAllTerritorySectors\",\"name\":\"CCM_CaptureAllTerritorySectors\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_CaptureAllTerritorySectors\",\"detail\":\"CCM_CaptureAllTerritorySectors()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1573\"},{\"id\":\"workspace_CCM_NeutralizeAllTerritorySectors\",\"name\":\"CCM_NeutralizeAllTerritorySectors\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_NeutralizeAllTerritorySectors\",\"detail\":\"CCM_NeutralizeAllTerritorySectors()\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1578\"},{\"id\":\"workspace_CCM_SquadToSkinPreviewEntity\",\"name\":\"CCM_SquadToSkinPreviewEntity\",\"filepath\":\"e:coh2_modsccm_v2scarccm_v2_core.scar\",\"kind\":8,\"label\":\"CCM_SquadToSkinPreviewEntity\",\"detail\":\"CCM_SquadToSkinPreviewEntity(squad)\",\"documentation\":\"File: e:coh2_modsccm_v2scarccm_v2_core.scar, line 1582\"},{\"id\":\"workspace_Enhanced_Init\",\"name\":\"Enhanced_Init\",\"filepath\":\"e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar\",\"kind\":8,\"label\":\"Enhanced_Init\",\"detail\":\"Enhanced_Init()\",\"documentation\":\"File: e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar, line 22\"},{\"id\":\"workspace_Enhanced_SystemInit\",\"name\":\"Enhanced_SystemInit\",\"filepath\":\"e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar\",\"kind\":8,\"label\":\"Enhanced_SystemInit\",\"detail\":\"Enhanced_SystemInit()\",\"documentation\":\"File: e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar, line 56\"},{\"id\":\"workspace_Enhanced_BroadcastMessageReceived\",\"name\":\"Enhanced_BroadcastMessageReceived\",\"filepath\":\"e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar\",\"kind\":8,\"label\":\"Enhanced_BroadcastMessageReceived\",\"detail\":\"Enhanced_BroadcastMessageReceived(player, command, data)\",\"documentation\":\"File: e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar, line 62\"},{\"id\":\"workspace_Enhanced_UITick\",\"name\":\"Enhanced_UITick\",\"filepath\":\"e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar\",\"kind\":8,\"label\":\"Enhanced_UITick\",\"detail\":\"Enhanced_UITick()\",\"documentation\":\"File: e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar, line 162\"},{\"id\":\"workspace_Enhanced_SetButtonsEnabled\",\"name\":\"Enhanced_SetButtonsEnabled\",\"filepath\":\"e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar\",\"kind\":8,\"label\":\"Enhanced_SetButtonsEnabled\",\"detail\":\"Enhanced_SetButtonsEnabled(enabled)\",\"documentation\":\"File: e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar, line 203\"},{\"id\":\"workspace_Enhanced_ResetButtonIcons\",\"name\":\"Enhanced_ResetButtonIcons\",\"filepath\":\"e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar\",\"kind\":8,\"label\":\"Enhanced_ResetButtonIcons\",\"detail\":\"Enhanced_ResetButtonIcons()\",\"documentation\":\"File: e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar, line 210\"},{\"id\":\"workspace_Enhanced_SetButtonsVisible\",\"name\":\"Enhanced_SetButtonsVisible\",\"filepath\":\"e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar\",\"kind\":8,\"label\":\"Enhanced_SetButtonsVisible\",\"detail\":\"Enhanced_SetButtonsVisible(visible)\",\"documentation\":\"File: e:coh2_modscoh2_enhancedscarenhancedenhanced_core.scar, line 217\"},{\"id\":\"workspace_Enhanced_PreInit\",\"name\":\"Enhanced_PreInit\",\"filepath\":\"e:coh2_modscoh2_enhancedscarenhancedenhanced_init.scar\",\"kind\":8,\"label\":\"Enhanced_PreInit\",\"detail\":\"Enhanced_PreInit()\",\"documentation\":\"File: e:coh2_modscoh2_enhancedscarenhancedenhanced_init.scar, line 29\"},{\"id\":\"workspace_Enhanced_UIInit\",\"name\":\"Enhanced_UIInit\",\"filepath\":\"e:coh2_modscoh2_enhancedscarenhancedenhanced_ui.scar\",\"kind\":8,\"label\":\"Enhanced_UIInit\",\"detail\":\"Enhanced_UIInit()\",\"documentation\":\"File: e:coh2_modscoh2_enhancedscarenhancedenhanced_ui.scar, line 1\"},{\"id\":\"workspace_Dude\",\"name\":\"Dude\",\"filepath\":\"e:coh2_modsdemodemo.lua\",\"kind\":8,\"label\":\"Dude\",\"detail\":\"Dude()\",\"documentation\":\"File: e:coh2_modsdemodemo.lua, line 1\"},{\"id\":\"workspace_MyMap_OnInit\",\"name\":\"MyMap_OnInit\",\"filepath\":\"e:coh2_modsdemodemo.scar\",\"kind\":8,\"label\":\"MyMap_OnInit\",\"detail\":\"MyMap_OnInit()\",\"documentation\":\"File: e:coh2_modsdemodemo.scar, line 1\"},{\"id\":\"workspace_MyMap_BonusUnitKilled\",\"name\":\"MyMap_BonusUnitKilled\",\"filepath\":\"e:coh2_modsdemodemo.scar\",\"kind\":8,\"label\":\"MyMap_BonusUnitKilled\",\"detail\":\"MyMap_BonusUnitKilled(squad, killer)\",\"documentation\":\"File: e:coh2_modsdemodemo.scar, line 35\"},{\"id\":\"workspace_prnt\",\"name\":\"prnt\",\"filepath\":\"e:coh2_modsdemodemo2.scar\",\"kind\":8,\"label\":\"prnt\",\"detail\":\"prnt(str)\",\"documentation\":\"File: e:coh2_modsdemodemo2.scar, line 32\"},{\"id\":\"workspace_toCharArray\",\"name\":\"toCharArray\",\"filepath\":\"e:coh2_modsdemodemo2.scar\",\"kind\":8,\"label\":\"toCharArray\",\"detail\":\"toCharArray(s)\",\"documentation\":\"File: e:coh2_modsdemodemo2.scar, line 38\"},{\"id\":\"workspace_export\",\"name\":\"export\",\"filepath\":\"e:coh2_modsdemodemo2.scar\",\"kind\":8,\"label\":\"export\",\"detail\":\"export(path, output)\",\"documentation\":\"File: e:coh2_modsdemodemo2.scar, line 48\"},{\"id\":\"workspace_include\",\"name\":\"include\",\"filepath\":\"e:coh2_modsdemodemo2.scar\",\"kind\":8,\"label\":\"include\",\"detail\":\"include(path)\",\"documentation\":\"File: e:coh2_modsdemodemo2.scar, line 60\"},{\"id\":\"workspace_getBlueprintIfItExists\",\"name\":\"getBlueprintIfItExists\",\"filepath\":\"e:coh2_modsdemodemo2.scar\",\"kind\":8,\"label\":\"getBlueprintIfItExists\",\"detail\":\"getBlueprintIfItExists(blueprintFunction, blueprintName)\",\"documentation\":\"File: e:coh2_modsdemodemo2.scar, line 119\"},{\"id\":\"workspace_getBlueprintName\",\"name\":\"getBlueprintName\",\"filepath\":\"e:coh2_modsdemodemo2.scar\",\"kind\":8,\"label\":\"getBlueprintName\",\"detail\":\"getBlueprintName(blueprint)\",\"documentation\":\"File: e:coh2_modsdemodemo2.scar, line 130\"},{\"id\":\"workspace_instanceOf\",\"name\":\"instanceOf\",\"filepath\":\"e:coh2_modsdemodemo2.scar\",\"kind\":8,\"label\":\"instanceOf\",\"detail\":\"instanceOf(subClass, class)\",\"documentation\":\"File: e:coh2_modsdemodemo2.scar, line 134\"},{\"id\":\"workspace_parent\",\"name\":\"parent\",\"filepath\":\"e:coh2_modsdemodemo2.scar\",\"kind\":8,\"label\":\"parent\",\"detail\":\"parent(child)\",\"documentation\":\"File: e:coh2_modsdemodemo2.scar, line 149\"},{\"id\":\"workspace_Loc_Create\",\"name\":\"Loc_Create\",\"filepath\":\"e:coh2_modsdemodemo2.scar\",\"kind\":8,\"label\":\"Loc_Create\",\"detail\":\"Loc_Create(text)\",\"documentation\":\"File: e:coh2_modsdemodemo2.scar, line 153\"},{\"id\":\"workspace_broadcastMessage\",\"name\":\"broadcastMessage\",\"filepath\":\"e:coh2_modsdemodemo2.scar\",\"kind\":8,\"label\":\"broadcastMessage\",\"detail\":\"broadcastMessage(messageType, message)\",\"documentation\":\"File: e:coh2_modsdemodemo2.scar, line 160\"},{\"id\":\"workspace_delayedStart\",\"name\":\"delayedStart\",\"filepath\":\"e:coh2_modsdemodemo2.scar\",\"kind\":8,\"label\":\"delayedStart\",\"detail\":\"delayedStart()\",\"documentation\":\"File: e:coh2_modsdemodemo2.scar, line 184\"},{\"id\":\"workspace_Map_PlayerBonusUnitKilled\",\"name\":\"Map_PlayerBonusUnitKilled\",\"filepath\":\"e:coh2_modsdemodemo4.scar\",\"kind\":8,\"label\":\"Map_PlayerBonusUnitKilled\",\"detail\":\"Map_PlayerBonusUnitKilled(squad, killer)\",\"documentation\":\"File: e:coh2_modsdemodemo4.scar, line 34\"},{\"id\":\"workspace_MyFunction\",\"name\":\"MyFunction\",\"filepath\":\"e:coh2_modsdemodemo4.scar\",\"kind\":8,\"label\":\"MyFunction\",\"detail\":\"MyFunction()\",\"documentation\":\"File: e:coh2_modsdemodemo4.scar, line 44\"},{\"id\":\"workspace_Map_OnInit\",\"name\":\"Map_OnInit\",\"filepath\":\"e:coh2_modsdemosnowrail.scar\",\"kind\":8,\"label\":\"Map_OnInit\",\"detail\":\"Map_OnInit()\",\"documentation\":\"File: e:coh2_modsdemosnowrail.scar, line 1\"},{\"id\":\"workspace_Gardeners_PreInit\",\"name\":\"Gardeners_PreInit\",\"filepath\":\"e:coh2_modsgardenersscargardeners_core.scar\",\"kind\":8,\"label\":\"Gardeners_PreInit\",\"detail\":\"Gardeners_PreInit()\",\"documentation\":\"File: e:coh2_modsgardenersscargardeners_core.scar, line 2\"},{\"id\":\"workspace_AutoAbandonManager\",\"name\":\"AutoAbandonManager\",\"filepath\":\"e:coh2_modsgenericscarlibautoabandon.scar\",\"kind\":8,\"label\":\"AutoAbandonManager\",\"detail\":\"AutoAbandonManager()\",\"documentation\":\"File: e:coh2_modsgenericscarlibautoabandon.scar, line 32\"},{\"id\":\"workspace_AutoAbandon_Add\",\"name\":\"AutoAbandon_Add\",\"filepath\":\"e:coh2_modsgenericscarlibautoabandon.scar\",\"kind\":8,\"label\":\"AutoAbandon_Add\",\"detail\":\"AutoAbandon_Add(squad, config, all, abandonCrit, spawnFakeCrew, crewRace, crewReatreatPos)\",\"documentation\":\"File: e:coh2_modsgenericscarlibautoabandon.scar, line 120\"},{\"id\":\"workspace_AutoAbandon_Remove\",\"name\":\"AutoAbandon_Remove\",\"filepath\":\"e:coh2_modsgenericscarlibautoabandon.scar\",\"kind\":8,\"label\":\"AutoAbandon_Remove\",\"detail\":\"AutoAbandon_Remove(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibautoabandon.scar, line 144\"},{\"id\":\"workspace_AutoDeleteManager\",\"name\":\"AutoDeleteManager\",\"filepath\":\"e:coh2_modsgenericscarlibautodelete.scar\",\"kind\":8,\"label\":\"AutoDeleteManager\",\"detail\":\"AutoDeleteManager()\",\"documentation\":\"File: e:coh2_modsgenericscarlibautodelete.scar, line 25\"},{\"id\":\"workspace_AutoDelete_Add\",\"name\":\"AutoDelete_Add\",\"filepath\":\"e:coh2_modsgenericscarlibautodelete.scar\",\"kind\":8,\"label\":\"AutoDelete_Add\",\"detail\":\"AutoDelete_Add(squad, pos, distance)\",\"documentation\":\"File: e:coh2_modsgenericscarlibautodelete.scar, line 40\"},{\"id\":\"workspace_AutoDelete_Remove\",\"name\":\"AutoDelete_Remove\",\"filepath\":\"e:coh2_modsgenericscarlibautodelete.scar\",\"kind\":8,\"label\":\"AutoDelete_Remove\",\"detail\":\"AutoDelete_Remove(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibautodelete.scar, line 62\"},{\"id\":\"workspace_AutoRetreatManager\",\"name\":\"AutoRetreatManager\",\"filepath\":\"e:coh2_modsgenericscarlibautoretreat.scar\",\"kind\":8,\"label\":\"AutoRetreatManager\",\"detail\":\"AutoRetreatManager()\",\"documentation\":\"File: e:coh2_modsgenericscarlibautoretreat.scar, line 30\"},{\"id\":\"workspace_AutoRetreat_Add\",\"name\":\"AutoRetreat_Add\",\"filepath\":\"e:coh2_modsgenericscarlibautoretreat.scar\",\"kind\":8,\"label\":\"AutoRetreat_Add\",\"detail\":\"AutoRetreat_Add(squad, retreatLocation, retreatCondition, retreatThreshold, autoDelete, autoDeleteDistance, encounter, callback, removeAfterRetreat)\",\"documentation\":\"File: e:coh2_modsgenericscarlibautoretreat.scar, line 82\"},{\"id\":\"workspace_AutoRetreat_Remove\",\"name\":\"AutoRetreat_Remove\",\"filepath\":\"e:coh2_modsgenericscarlibautoretreat.scar\",\"kind\":8,\"label\":\"AutoRetreat_Remove\",\"detail\":\"AutoRetreat_Remove(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibautoretreat.scar, line 111\"},{\"id\":\"workspace_Parameters_ToStringData\",\"name\":\"Parameters_ToStringData\",\"filepath\":\"e:coh2_modsgenericscarlibbroadcastparameters.scar\",\"kind\":8,\"label\":\"Parameters_ToStringData\",\"detail\":\"Parameters_ToStringData(parameters, delimeter)\",\"documentation\":\"File: e:coh2_modsgenericscarlibbroadcastparameters.scar, line 24\"},{\"id\":\"workspace_Parameters_FromStringData\",\"name\":\"Parameters_FromStringData\",\"filepath\":\"e:coh2_modsgenericscarlibbroadcastparameters.scar\",\"kind\":8,\"label\":\"Parameters_FromStringData\",\"detail\":\"Parameters_FromStringData(data, delimeter)\",\"documentation\":\"File: e:coh2_modsgenericscarlibbroadcastparameters.scar, line 52\"},{\"id\":\"workspace_Player_FromStringData\",\"name\":\"Player_FromStringData\",\"filepath\":\"e:coh2_modsgenericscarlibbroadcastparameters.scar\",\"kind\":8,\"label\":\"Player_FromStringData\",\"detail\":\"Player_FromStringData(data, nameWithFaction, delimeter)\",\"documentation\":\"File: e:coh2_modsgenericscarlibbroadcastparameters.scar, line 115\"},{\"id\":\"workspace_Squad_FromStringData\",\"name\":\"Squad_FromStringData\",\"filepath\":\"e:coh2_modsgenericscarlibbroadcastparameters.scar\",\"kind\":8,\"label\":\"Squad_FromStringData\",\"detail\":\"Squad_FromStringData(data, delimeter)\",\"documentation\":\"File: e:coh2_modsgenericscarlibbroadcastparameters.scar, line 145\"},{\"id\":\"workspace_Entity_FromStringData\",\"name\":\"Entity_FromStringData\",\"filepath\":\"e:coh2_modsgenericscarlibbroadcastparameters.scar\",\"kind\":8,\"label\":\"Entity_FromStringData\",\"detail\":\"Entity_FromStringData(data, delimeter)\",\"documentation\":\"File: e:coh2_modsgenericscarlibbroadcastparameters.scar, line 163\"},{\"id\":\"workspace_Broadcast\",\"name\":\"Broadcast\",\"filepath\":\"e:coh2_modsgenericscarlibbroadcastparameters.scar\",\"kind\":8,\"label\":\"Broadcast\",\"detail\":\"Broadcast(command, data)\",\"documentation\":\"File: e:coh2_modsgenericscarlibbroadcastparameters.scar, line 179\"},{\"id\":\"workspace_Camera_MoveToCallback\",\"name\":\"Camera_MoveToCallback\",\"filepath\":\"e:coh2_modsgenericscarlibcamera.scar\",\"kind\":8,\"label\":\"Camera_MoveToCallback\",\"detail\":\"Camera_MoveToCallback(where, pan, panRate, lockInput, callback)\",\"documentation\":\"File: e:coh2_modsgenericscarlibcamera.scar, line 25\"},{\"id\":\"workspace_Camera_MoveToCallback_Tick\",\"name\":\"Camera_MoveToCallback_Tick\",\"filepath\":\"e:coh2_modsgenericscarlibcamera.scar\",\"kind\":8,\"label\":\"Camera_MoveToCallback_Tick\",\"detail\":\"Camera_MoveToCallback_Tick()\",\"documentation\":\"File: e:coh2_modsgenericscarlibcamera.scar, line 42\"},{\"id\":\"workspace_CameraPosition\",\"name\":\"CameraPosition\",\"filepath\":\"e:coh2_modsgenericscarlibclassescameraposition.scar\",\"kind\":8,\"label\":\"CameraPosition\",\"detail\":\"CameraPosition(child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassescameraposition.scar, line 23\"},{\"id\":\"workspace_Class\",\"name\":\"Class\",\"filepath\":\"e:coh2_modsgenericscarlibclassesclass.scar\",\"kind\":8,\"label\":\"Class\",\"detail\":\"Class(child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesclass.scar, line 22\"},{\"id\":\"workspace_Color\",\"name\":\"Color\",\"filepath\":\"e:coh2_modsgenericscarlibclassescolor.scar\",\"kind\":8,\"label\":\"Color\",\"detail\":\"Color(r, g, b, a, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassescolor.scar, line 23\"},{\"id\":\"workspace_Margin\",\"name\":\"Margin\",\"filepath\":\"e:coh2_modsgenericscarlibclassesmargin.scar\",\"kind\":8,\"label\":\"Margin\",\"detail\":\"Margin(data, right, bottom, left, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesmargin.scar, line 23\"},{\"id\":\"workspace_Padding\",\"name\":\"Padding\",\"filepath\":\"e:coh2_modsgenericscarlibclassespadding.scar\",\"kind\":8,\"label\":\"Padding\",\"detail\":\"Padding(data, right, bottom, left, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassespadding.scar, line 23\"},{\"id\":\"workspace_Player\",\"name\":\"Player\",\"filepath\":\"e:coh2_modsgenericscarlibclassesplayer.scar\",\"kind\":8,\"label\":\"Player\",\"detail\":\"Player(index)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesplayer.scar, line 22\"},{\"id\":\"workspace_Control\",\"name\":\"Control\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuicontrol.scar\",\"kind\":8,\"label\":\"Control\",\"detail\":\"Control(x, y, width, height, margin, color, data, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuicontrol.scar, line 23\"},{\"id\":\"workspace_Button_CreateConfig\",\"name\":\"Button_CreateConfig\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuibutton.scar\",\"kind\":8,\"label\":\"Button_CreateConfig\",\"detail\":\"Button_CreateConfig(steps)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuibutton.scar, line 22\"},{\"id\":\"workspace_Button_GetIcon\",\"name\":\"Button_GetIcon\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuibutton.scar\",\"kind\":8,\"label\":\"Button_GetIcon\",\"detail\":\"Button_GetIcon(button)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuibutton.scar, line 57\"},{\"id\":\"workspace_Button\",\"name\":\"Button\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuibutton.scar\",\"kind\":8,\"label\":\"Button\",\"detail\":\"Button(data, x, y, width, height, icon, callback, tag, enabled, buttonIconStyle, margin, color, autoIcon, autoIconArrow, autoIconActive, checkButton, checked, _data, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuibutton.scar, line 104\"},{\"id\":\"workspace_FormControl_Init\",\"name\":\"FormControl_Init\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuiform.scar\",\"kind\":8,\"label\":\"FormControl_Init\",\"detail\":\"FormControl_Init()\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuiform.scar, line 25\"},{\"id\":\"workspace_FormControl_Refresh\",\"name\":\"FormControl_Refresh\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuiform.scar\",\"kind\":8,\"label\":\"FormControl_Refresh\",\"detail\":\"FormControl_Refresh()\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuiform.scar, line 33\"},{\"id\":\"workspace_Form\",\"name\":\"Form\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuiform.scar\",\"kind\":8,\"label\":\"Form\",\"detail\":\"Form(data, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuiform.scar, line 46\"},{\"id\":\"workspace_Icon\",\"name\":\"Icon\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuiicon.scar\",\"kind\":8,\"label\":\"Icon\",\"detail\":\"Icon(data, x, y, width, height, margin, color, _data, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuiicon.scar, line 23\"},{\"id\":\"workspace_Label\",\"name\":\"Label\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuilabel.scar\",\"kind\":8,\"label\":\"Label\",\"detail\":\"Label(data, x, y, width, height, fontSize, bold, italic, labelAlignHorizontal, labelAlignVertical, margin, color, _data, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuilabel.scar, line 23\"},{\"id\":\"workspace_NumericUpDown_CreateIconConfig\",\"name\":\"NumericUpDown_CreateIconConfig\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuinumericupdown.scar\",\"kind\":8,\"label\":\"NumericUpDown_CreateIconConfig\",\"detail\":\"NumericUpDown_CreateIconConfig(name, buttonWidth, inputAreaPartWidth, buttonIconStyle)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuinumericupdown.scar, line 23\"},{\"id\":\"workspace_NumericUpDownScroll_Tick\",\"name\":\"NumericUpDownScroll_Tick\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuinumericupdown.scar\",\"kind\":8,\"label\":\"NumericUpDownScroll_Tick\",\"detail\":\"NumericUpDownScroll_Tick()\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuinumericupdown.scar, line 39\"},{\"id\":\"workspace_NumericUpDown_RegisterAutoScroll\",\"name\":\"NumericUpDown_RegisterAutoScroll\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuinumericupdown.scar\",\"kind\":8,\"label\":\"NumericUpDown_RegisterAutoScroll\",\"detail\":\"NumericUpDown_RegisterAutoScroll(control)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuinumericupdown.scar, line 51\"},{\"id\":\"workspace_NumericUpDown_UnregisterAutoScroll\",\"name\":\"NumericUpDown_UnregisterAutoScroll\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuinumericupdown.scar\",\"kind\":8,\"label\":\"NumericUpDown_UnregisterAutoScroll\",\"detail\":\"NumericUpDown_UnregisterAutoScroll(control)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuinumericupdown.scar, line 57\"},{\"id\":\"workspace_NumericUpDown\",\"name\":\"NumericUpDown\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuinumericupdown.scar\",\"kind\":8,\"label\":\"NumericUpDown\",\"detail\":\"NumericUpDown(data, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuinumericupdown.scar, line 61\"},{\"id\":\"workspace_MenuControl_Init\",\"name\":\"MenuControl_Init\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuimenu.scar\",\"kind\":8,\"label\":\"MenuControl_Init\",\"detail\":\"MenuControl_Init()\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuimenu.scar, line 30\"},{\"id\":\"workspace_Menu_AutoRefresh\",\"name\":\"Menu_AutoRefresh\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuimenu.scar\",\"kind\":8,\"label\":\"Menu_AutoRefresh\",\"detail\":\"Menu_AutoRefresh()\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuimenu.scar, line 41\"},{\"id\":\"workspace_Menu_AutoCheckEnabledScan\",\"name\":\"Menu_AutoCheckEnabledScan\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuimenu.scar\",\"kind\":8,\"label\":\"Menu_AutoCheckEnabledScan\",\"detail\":\"Menu_AutoCheckEnabledScan()\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuimenu.scar, line 58\"},{\"id\":\"workspace_Menu_AutoCheckCheckedScan\",\"name\":\"Menu_AutoCheckCheckedScan\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuimenu.scar\",\"kind\":8,\"label\":\"Menu_AutoCheckCheckedScan\",\"detail\":\"Menu_AutoCheckCheckedScan()\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuimenu.scar, line 69\"},{\"id\":\"workspace_CloseMenus\",\"name\":\"CloseMenus\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuimenu.scar\",\"kind\":8,\"label\":\"CloseMenus\",\"detail\":\"CloseMenus(menuID, level)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuimenu.scar, line 77\"},{\"id\":\"workspace_Menu\",\"name\":\"Menu\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuimenu.scar\",\"kind\":8,\"label\":\"Menu\",\"detail\":\"Menu(data, parentMenu, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuimenu.scar, line 90\"},{\"id\":\"workspace_Menu_CreateBorderImage\",\"name\":\"Menu_CreateBorderImage\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuipanel.scar\",\"kind\":8,\"label\":\"Menu_CreateBorderImage\",\"detail\":\"Menu_CreateBorderImage(baseName, size)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuipanel.scar, line 22\"},{\"id\":\"workspace_Panel_GetMultipartBackground\",\"name\":\"Panel_GetMultipartBackground\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuipanel.scar\",\"kind\":8,\"label\":\"Panel_GetMultipartBackground\",\"detail\":\"Panel_GetMultipartBackground(panel)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuipanel.scar, line 40\"},{\"id\":\"workspace_Panel\",\"name\":\"Panel\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuipanel.scar\",\"kind\":8,\"label\":\"Panel\",\"detail\":\"Panel(data, y, width, height, background, padding, margin, color, controls, autoWidth, autoHeight, uniformItemWidth, removeAfterLastChildRemoved, _data, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuipanel.scar, line 62\"},{\"id\":\"workspace_PanelColumn\",\"name\":\"PanelColumn\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuipanelcolumn.scar\",\"kind\":8,\"label\":\"PanelColumn\",\"detail\":\"PanelColumn(panel, index, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuipanelcolumn.scar, line 23\"},{\"id\":\"workspace_PanelColumnCollection\",\"name\":\"PanelColumnCollection\",\"filepath\":\"e:coh2_modsgenericscarlibclassesuipanelcolumncollection.scar\",\"kind\":8,\"label\":\"PanelColumnCollection\",\"detail\":\"PanelColumnCollection(panel, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclassesuipanelcolumncollection.scar, line 23\"},{\"id\":\"workspace_Class_GetUniqueID\",\"name\":\"Class_GetUniqueID\",\"filepath\":\"e:coh2_modsgenericscarlibclasssystem.scar\",\"kind\":8,\"label\":\"Class_GetUniqueID\",\"detail\":\"Class_GetUniqueID()\",\"documentation\":\"File: e:coh2_modsgenericscarlibclasssystem.scar, line 25\"},{\"id\":\"workspace_Class_CreateInstance\",\"name\":\"Class_CreateInstance\",\"filepath\":\"e:coh2_modsgenericscarlibclasssystem.scar\",\"kind\":8,\"label\":\"Class_CreateInstance\",\"detail\":\"Class_CreateInstance(classType, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclasssystem.scar, line 30\"},{\"id\":\"workspace_Construct\",\"name\":\"Construct\",\"filepath\":\"e:coh2_modsgenericscarlibclasssystem.scar\",\"kind\":8,\"label\":\"Construct\",\"detail\":\"Construct(this)\",\"documentation\":\"File: e:coh2_modsgenericscarlibclasssystem.scar, line 37\"},{\"id\":\"workspace_CompanyCommander_Create\",\"name\":\"CompanyCommander_Create\",\"filepath\":\"e:coh2_modsgenericscarlibcompanycommander.scar\",\"kind\":8,\"label\":\"CompanyCommander_Create\",\"detail\":\"CompanyCommander_Create()\",\"documentation\":\"File: e:coh2_modsgenericscarlibcompanycommander.scar, line 22\"},{\"id\":\"workspace_ControlSystem_Init\",\"name\":\"ControlSystem_Init\",\"filepath\":\"e:coh2_modsgenericscarlibcontrolsystem.scar\",\"kind\":8,\"label\":\"ControlSystem_Init\",\"detail\":\"ControlSystem_Init()\",\"documentation\":\"File: e:coh2_modsgenericscarlibcontrolsystem.scar, line 23\"},{\"id\":\"workspace_Button_FromTag\",\"name\":\"Button_FromTag\",\"filepath\":\"e:coh2_modsgenericscarlibcontrolsystem.scar\",\"kind\":8,\"label\":\"Button_FromTag\",\"detail\":\"Button_FromTag(tag)\",\"documentation\":\"File: e:coh2_modsgenericscarlibcontrolsystem.scar, line 86\"},{\"id\":\"workspace_ButtonCallbackHandler\",\"name\":\"ButtonCallbackHandler\",\"filepath\":\"e:coh2_modsgenericscarlibcontrolsystem.scar\",\"kind\":8,\"label\":\"ButtonCallbackHandler\",\"detail\":\"ButtonCallbackHandler(tag)\",\"documentation\":\"File: e:coh2_modsgenericscarlibcontrolsystem.scar, line 94\"},{\"id\":\"workspace_Control_GetName\",\"name\":\"Control_GetName\",\"filepath\":\"e:coh2_modsgenericscarlibcontrolsystem.scar\",\"kind\":8,\"label\":\"Control_GetName\",\"detail\":\"Control_GetName(controlType, name)\",\"documentation\":\"File: e:coh2_modsgenericscarlibcontrolsystem.scar, line 103\"},{\"id\":\"workspace_Control_GetX\",\"name\":\"Control_GetX\",\"filepath\":\"e:coh2_modsgenericscarlibcontrolsystem.scar\",\"kind\":8,\"label\":\"Control_GetX\",\"detail\":\"Control_GetX(x, debug)\",\"documentation\":\"File: e:coh2_modsgenericscarlibcontrolsystem.scar, line 115\"},{\"id\":\"workspace_Control_GetY\",\"name\":\"Control_GetY\",\"filepath\":\"e:coh2_modsgenericscarlibcontrolsystem.scar\",\"kind\":8,\"label\":\"Control_GetY\",\"detail\":\"Control_GetY(y, debug)\",\"documentation\":\"File: e:coh2_modsgenericscarlibcontrolsystem.scar, line 130\"},{\"id\":\"workspace_Control_GetPath\",\"name\":\"Control_GetPath\",\"filepath\":\"e:coh2_modsgenericscarlibcontrolsystem.scar\",\"kind\":8,\"label\":\"Control_GetPath\",\"detail\":\"Control_GetPath(parent)\",\"documentation\":\"File: e:coh2_modsgenericscarlibcontrolsystem.scar, line 145\"},{\"id\":\"workspace_Control_GetText\",\"name\":\"Control_GetText\",\"filepath\":\"e:coh2_modsgenericscarlibcontrolsystem.scar\",\"kind\":8,\"label\":\"Control_GetText\",\"detail\":\"Control_GetText(text)\",\"documentation\":\"File: e:coh2_modsgenericscarlibcontrolsystem.scar, line 159\"},{\"id\":\"workspace_Control_GetTag\",\"name\":\"Control_GetTag\",\"filepath\":\"e:coh2_modsgenericscarlibcontrolsystem.scar\",\"kind\":8,\"label\":\"Control_GetTag\",\"detail\":\"Control_GetTag(tag)\",\"documentation\":\"File: e:coh2_modsgenericscarlibcontrolsystem.scar, line 172\"},{\"id\":\"workspace_BPData_GetExtensions\",\"name\":\"BPData_GetExtensions\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"BPData_GetExtensions\",\"detail\":\"BPData_GetExtensions(data, name)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 31\"},{\"id\":\"workspace_Loc_Get\",\"name\":\"Loc_Get\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"Loc_Get\",\"detail\":\"Loc_Get(key)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 50\"},{\"id\":\"workspace_EBP_HasExtension\",\"name\":\"EBP_HasExtension\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"EBP_HasExtension\",\"detail\":\"EBP_HasExtension(ebpName, extensionName)\",\"documentation\":\"****************************************************************************************--n***************************************** EBPS *****************************************--n****************************************************************************************-- File: e:coh2_modsgenericscarlibdatadata.scar, line 60\"},{\"id\":\"workspace_EBPData_HasExtension\",\"name\":\"EBPData_HasExtension\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"EBPData_HasExtension\",\"detail\":\"EBPData_HasExtension(data, extensionName, ebpName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 70\"},{\"id\":\"workspace_EBP_GetScreenName\",\"name\":\"EBP_GetScreenName\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"EBP_GetScreenName\",\"detail\":\"EBP_GetScreenName(ebpName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 83\"},{\"id\":\"workspace_EBP_GetIcon\",\"name\":\"EBP_GetIcon\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"EBP_GetIcon\",\"detail\":\"EBP_GetIcon(ebpName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 95\"},{\"id\":\"workspace_EBPData_GetUIExt\",\"name\":\"EBPData_GetUIExt\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"EBPData_GetUIExt\",\"detail\":\"EBPData_GetUIExt(data, ebpName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 108\"},{\"id\":\"workspace_EBPData_GetScreenName\",\"name\":\"EBPData_GetScreenName\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"EBPData_GetScreenName\",\"detail\":\"EBPData_GetScreenName(data, ebpName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 126\"},{\"id\":\"workspace_EBPData_GetIcon\",\"name\":\"EBPData_GetIcon\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"EBPData_GetIcon\",\"detail\":\"EBPData_GetIcon(data, ebpName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 156\"},{\"id\":\"workspace_SBP_GetScreenName\",\"name\":\"SBP_GetScreenName\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"SBP_GetScreenName\",\"detail\":\"SBP_GetScreenName(sbpName)\",\"documentation\":\"****************************************************************************************--n***************************************** SBPS *****************************************--n****************************************************************************************-- File: e:coh2_modsgenericscarlibdatadata.scar, line 174\"},{\"id\":\"workspace_SBP_GetIcon\",\"name\":\"SBP_GetIcon\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"SBP_GetIcon\",\"detail\":\"SBP_GetIcon(sbpName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 187\"},{\"id\":\"workspace_SBPData_GetRaceUIExt\",\"name\":\"SBPData_GetRaceUIExt\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"SBPData_GetRaceUIExt\",\"detail\":\"SBPData_GetRaceUIExt(data, sbpName, raceName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 200\"},{\"id\":\"workspace_SBPData_GetScreenName\",\"name\":\"SBPData_GetScreenName\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"SBPData_GetScreenName\",\"detail\":\"SBPData_GetScreenName(data, sbpName, raceName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 251\"},{\"id\":\"workspace_SBPData_GetIcon\",\"name\":\"SBPData_GetIcon\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"SBPData_GetIcon\",\"detail\":\"SBPData_GetIcon(data, sbpName, raceName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 276\"},{\"id\":\"workspace_Crit_GetScreenName\",\"name\":\"Crit_GetScreenName\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"Crit_GetScreenName\",\"detail\":\"Crit_GetScreenName(critName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 295\"},{\"id\":\"workspace_CritData_GetUIExt\",\"name\":\"CritData_GetUIExt\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"CritData_GetUIExt\",\"detail\":\"CritData_GetUIExt(data, critName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 308\"},{\"id\":\"workspace_CritData_GetScreenName\",\"name\":\"CritData_GetScreenName\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"CritData_GetScreenName\",\"detail\":\"CritData_GetScreenName(data, critName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 336\"},{\"id\":\"workspace_CritData_GetIcon\",\"name\":\"CritData_GetIcon\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"CritData_GetIcon\",\"detail\":\"CritData_GetIcon(data, critName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 354\"},{\"id\":\"workspace_UPG_GetScreenName\",\"name\":\"UPG_GetScreenName\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"UPG_GetScreenName\",\"detail\":\"UPG_GetScreenName(upgName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 370\"},{\"id\":\"workspace_UPGData_GetScreenName\",\"name\":\"UPGData_GetScreenName\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"UPGData_GetScreenName\",\"detail\":\"UPGData_GetScreenName(data, upgName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 384\"},{\"id\":\"workspace_SlotItem_GetScreenName\",\"name\":\"SlotItem_GetScreenName\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"SlotItem_GetScreenName\",\"detail\":\"SlotItem_GetScreenName(slotItemName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 393\"},{\"id\":\"workspace_SlotItemData_GetScreenName\",\"name\":\"SlotItemData_GetScreenName\",\"filepath\":\"e:coh2_modsgenericscarlibdatadata.scar\",\"kind\":8,\"label\":\"SlotItemData_GetScreenName\",\"detail\":\"SlotItemData_GetScreenName(data, slotItemName)\",\"documentation\":\"File: e:coh2_modsgenericscarlibdatadata.scar, line 407\"},{\"id\":\"workspace_EGroup_ToTable\",\"name\":\"EGroup_ToTable\",\"filepath\":\"e:coh2_modsgenericscarlibegroup.scar\",\"kind\":8,\"label\":\"EGroup_ToTable\",\"detail\":\"EGroup_ToTable(egroup)\",\"documentation\":\"File: e:coh2_modsgenericscarlibegroup.scar, line 66\"},{\"id\":\"workspace_EGroup_IsAlive\",\"name\":\"EGroup_IsAlive\",\"filepath\":\"e:coh2_modsgenericscarlibegroup.scar\",\"kind\":8,\"label\":\"EGroup_IsAlive\",\"detail\":\"EGroup_IsAlive(egroup, all)\",\"documentation\":\"File: e:coh2_modsgenericscarlibegroup.scar, line 76\"},{\"id\":\"workspace_EGroup_IsCapturedByTeam2\",\"name\":\"EGroup_IsCapturedByTeam2\",\"filepath\":\"e:coh2_modsgenericscarlibegroup.scar\",\"kind\":8,\"label\":\"EGroup_IsCapturedByTeam2\",\"detail\":\"EGroup_IsCapturedByTeam2(egroup, teamid, all)\",\"documentation\":\"File: e:coh2_modsgenericscarlibegroup.scar, line 93\"},{\"id\":\"workspace_LocalImport\",\"name\":\"LocalImport\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"LocalImport\",\"detail\":\"LocalImport(file)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 27\"},{\"id\":\"workspace_ImportSystem\",\"name\":\"ImportSystem\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"ImportSystem\",\"detail\":\"ImportSystem(files, relativeRoot, absoluteRoot)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 38\"},{\"id\":\"workspace_ImportDataTables\",\"name\":\"ImportDataTables\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"ImportDataTables\",\"detail\":\"ImportDataTables(files, relativeRoot)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 50\"},{\"id\":\"workspace_Library_Load\",\"name\":\"Library_Load\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Library_Load\",\"detail\":\"Library_Load(relativePath)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 120\"},{\"id\":\"workspace_Lib_EnableMessages\",\"name\":\"Lib_EnableMessages\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Lib_EnableMessages\",\"detail\":\"Lib_EnableMessages()\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 164\"},{\"id\":\"workspace_Lib_SetMessagesEnabled\",\"name\":\"Lib_SetMessagesEnabled\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Lib_SetMessagesEnabled\",\"detail\":\"Lib_SetMessagesEnabled(enable)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 168\"},{\"id\":\"workspace_Lib_SetupMod\",\"name\":\"Lib_SetupMod\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Lib_SetupMod\",\"detail\":\"Lib_SetupMod(guid, name, enableMessages)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 172\"},{\"id\":\"workspace_Mod_GetIcon\",\"name\":\"Mod_GetIcon\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Mod_GetIcon\",\"detail\":\"Mod_GetIcon(icon)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 181\"},{\"id\":\"workspace_Mod_GetAbilityBlueprint\",\"name\":\"Mod_GetAbilityBlueprint\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Mod_GetAbilityBlueprint\",\"detail\":\"Mod_GetAbilityBlueprint(blueprint)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 185\"},{\"id\":\"workspace_Mod_GetSquadBlueprint\",\"name\":\"Mod_GetSquadBlueprint\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Mod_GetSquadBlueprint\",\"detail\":\"Mod_GetSquadBlueprint(blueprint)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 189\"},{\"id\":\"workspace_Mod_GetEntityBlueprint\",\"name\":\"Mod_GetEntityBlueprint\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Mod_GetEntityBlueprint\",\"detail\":\"Mod_GetEntityBlueprint(blueprint)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 193\"},{\"id\":\"workspace_Mod_GetUpgradeBlueprint\",\"name\":\"Mod_GetUpgradeBlueprint\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Mod_GetUpgradeBlueprint\",\"detail\":\"Mod_GetUpgradeBlueprint(blueprint)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 197\"},{\"id\":\"workspace_Msg_Pos\",\"name\":\"Msg_Pos\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Msg_Pos\",\"detail\":\"Msg_Pos(pos, text, r, g, b, frame)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 203\"},{\"id\":\"workspace_Msg_3D\",\"name\":\"Msg_3D\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Msg_3D\",\"detail\":\"Msg_3D(pos, text, r, g, b)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 212\"},{\"id\":\"workspace_Lib_GameOver\",\"name\":\"Lib_GameOver\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Lib_GameOver\",\"detail\":\"Lib_GameOver(winningTeam, losingTeam)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 220\"},{\"id\":\"workspace_Debug_SetMessagesEnabled\",\"name\":\"Debug_SetMessagesEnabled\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Debug_SetMessagesEnabled\",\"detail\":\"Debug_SetMessagesEnabled(enable)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 235\"},{\"id\":\"workspace_TryCatch\",\"name\":\"TryCatch\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"TryCatch\",\"detail\":\"TryCatch(config)\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 240\"},{\"id\":\"workspace_Library_Setup\",\"name\":\"Library_Setup\",\"filepath\":\"e:coh2_modsgenericscarliblibrary.scar\",\"kind\":8,\"label\":\"Library_Setup\",\"detail\":\"Library_Setup()\",\"documentation\":\"File: e:coh2_modsgenericscarliblibrary.scar, line 260\"},{\"id\":\"workspace_Entity_Validate\",\"name\":\"Entity_Validate\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_Validate\",\"detail\":\"Entity_Validate(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 159\"},{\"id\":\"workspace_Entity_AddHealthPercentage\",\"name\":\"Entity_AddHealthPercentage\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_AddHealthPercentage\",\"detail\":\"Entity_AddHealthPercentage(entity, percentage)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 176\"},{\"id\":\"workspace_Entity_AddHealthPoints\",\"name\":\"Entity_AddHealthPoints\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_AddHealthPoints\",\"detail\":\"Entity_AddHealthPoints(entity, points)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 183\"},{\"id\":\"workspace_Entity_GetOwnerString\",\"name\":\"Entity_GetOwnerString\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_GetOwnerString\",\"detail\":\"Entity_GetOwnerString(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 193\"},{\"id\":\"workspace_Entity_GetBPName\",\"name\":\"Entity_GetBPName\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_GetBPName\",\"detail\":\"Entity_GetBPName(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 208\"},{\"id\":\"workspace_Entity_GetCriticals\",\"name\":\"Entity_GetCriticals\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_GetCriticals\",\"detail\":\"Entity_GetCriticals(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 212\"},{\"id\":\"workspace_Entity_RemoveCriticals\",\"name\":\"Entity_RemoveCriticals\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_RemoveCriticals\",\"detail\":\"Entity_RemoveCriticals(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 223\"},{\"id\":\"workspace_Entity_IsTeamWeapon\",\"name\":\"Entity_IsTeamWeapon\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_IsTeamWeapon\",\"detail\":\"Entity_IsTeamWeapon(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 235\"},{\"id\":\"workspace_Entity_IsValidSafe\",\"name\":\"Entity_IsValidSafe\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_IsValidSafe\",\"detail\":\"Entity_IsValidSafe(entityId)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 240\"},{\"id\":\"workspace_Entity_GetUpgrades\",\"name\":\"Entity_GetUpgrades\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_GetUpgrades\",\"detail\":\"Entity_GetUpgrades(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 248\"},{\"id\":\"workspace_Entity_Rotate\",\"name\":\"Entity_Rotate\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_Rotate\",\"detail\":\"Entity_Rotate(entity, amount)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 262\"},{\"id\":\"workspace_Entity_GetTypes\",\"name\":\"Entity_GetTypes\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_GetTypes\",\"detail\":\"Entity_GetTypes(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 271\"},{\"id\":\"workspace_Entity_IsOfType2\",\"name\":\"Entity_IsOfType2\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_IsOfType2\",\"detail\":\"Entity_IsOfType2(entity, ebpType)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 277\"},{\"id\":\"workspace_Entity_HasUpgrades\",\"name\":\"Entity_HasUpgrades\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_HasUpgrades\",\"detail\":\"Entity_HasUpgrades(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 283\"},{\"id\":\"workspace_EBP_GetTypes\",\"name\":\"EBP_GetTypes\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"EBP_GetTypes\",\"detail\":\"EBP_GetTypes(ebp)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 295\"},{\"id\":\"workspace_EBP_IsOfType\",\"name\":\"EBP_IsOfType\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"EBP_IsOfType\",\"detail\":\"EBP_IsOfType(ebp, ebpType)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 306\"},{\"id\":\"workspace_Entity_Decrew\",\"name\":\"Entity_Decrew\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_Decrew\",\"detail\":\"Entity_Decrew(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 331\"},{\"id\":\"workspace_Entity_PrepareForScreenshot\",\"name\":\"Entity_PrepareForScreenshot\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_PrepareForScreenshot\",\"detail\":\"Entity_PrepareForScreenshot(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 336\"},{\"id\":\"workspace_Entity_SetSkinSeason\",\"name\":\"Entity_SetSkinSeason\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_SetSkinSeason\",\"detail\":\"Entity_SetSkinSeason(entity, season)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 348\"},{\"id\":\"workspace_Entity_GetBlueprintName\",\"name\":\"Entity_GetBlueprintName\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_GetBlueprintName\",\"detail\":\"Entity_GetBlueprintName(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 355\"},{\"id\":\"workspace_Entity_HasModifierExt\",\"name\":\"Entity_HasModifierExt\",\"filepath\":\"e:coh2_modsgenericscarlibentity.scar\",\"kind\":8,\"label\":\"Entity_HasModifierExt\",\"detail\":\"Entity_HasModifierExt(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibentity.scar, line 359\"},{\"id\":\"workspace_Percentage_Normalize\",\"name\":\"Percentage_Normalize\",\"filepath\":\"e:coh2_modsgenericscarlibmath.scar\",\"kind\":8,\"label\":\"Percentage_Normalize\",\"detail\":\"Percentage_Normalize(percentage)\",\"documentation\":\"File: e:coh2_modsgenericscarlibmath.scar, line 22\"},{\"id\":\"workspace_Round\",\"name\":\"Round\",\"filepath\":\"e:coh2_modsgenericscarlibmath.scar\",\"kind\":8,\"label\":\"Round\",\"detail\":\"Round(num, decimals, func)\",\"documentation\":\"File: e:coh2_modsgenericscarlibmath.scar, line 32\"},{\"id\":\"workspace_scientific\",\"name\":\"scientific\",\"filepath\":\"e:coh2_modsgenericscarlibmath.scar\",\"kind\":8,\"label\":\"scientific\",\"detail\":\"scientific(num)\",\"documentation\":\"File: e:coh2_modsgenericscarlibmath.scar, line 38\"},{\"id\":\"workspace_Player_GetIndex\",\"name\":\"Player_GetIndex\",\"filepath\":\"e:coh2_modsgenericscarlibplayer.scar\",\"kind\":8,\"label\":\"Player_GetIndex\",\"detail\":\"Player_GetIndex(player)\",\"documentation\":\"File: e:coh2_modsgenericscarlibplayer.scar, line 74\"},{\"id\":\"workspace_Player_SetResourcesEnabled\",\"name\":\"Player_SetResourcesEnabled\",\"filepath\":\"e:coh2_modsgenericscarlibplayer.scar\",\"kind\":8,\"label\":\"Player_SetResourcesEnabled\",\"detail\":\"Player_SetResourcesEnabled(player, enabled, reset)\",\"documentation\":\"File: e:coh2_modsgenericscarlibplayer.scar, line 103\"},{\"id\":\"workspace_Player_ResetResources\",\"name\":\"Player_ResetResources\",\"filepath\":\"e:coh2_modsgenericscarlibplayer.scar\",\"kind\":8,\"label\":\"Player_ResetResources\",\"detail\":\"Player_ResetResources(player)\",\"documentation\":\"File: e:coh2_modsgenericscarlibplayer.scar, line 130\"},{\"id\":\"workspace_Player_GetAllSquads\",\"name\":\"Player_GetAllSquads\",\"filepath\":\"e:coh2_modsgenericscarlibplayer.scar\",\"kind\":8,\"label\":\"Player_GetAllSquads\",\"detail\":\"Player_GetAllSquads(player)\",\"documentation\":\"File: e:coh2_modsgenericscarlibplayer.scar, line 138\"},{\"id\":\"workspace_Player_DestroyAllSquads\",\"name\":\"Player_DestroyAllSquads\",\"filepath\":\"e:coh2_modsgenericscarlibplayer.scar\",\"kind\":8,\"label\":\"Player_DestroyAllSquads\",\"detail\":\"Player_DestroyAllSquads(player)\",\"documentation\":\"File: e:coh2_modsgenericscarlibplayer.scar, line 146\"},{\"id\":\"workspace_Player_GetDisplayRaceName\",\"name\":\"Player_GetDisplayRaceName\",\"filepath\":\"e:coh2_modsgenericscarlibplayer.scar\",\"kind\":8,\"label\":\"Player_GetDisplayRaceName\",\"detail\":\"Player_GetDisplayRaceName(player)\",\"documentation\":\"File: e:coh2_modsgenericscarlibplayer.scar, line 150\"},{\"id\":\"workspace_Player_GetDisplayRaceNameLong\",\"name\":\"Player_GetDisplayRaceNameLong\",\"filepath\":\"e:coh2_modsgenericscarlibplayer.scar\",\"kind\":8,\"label\":\"Player_GetDisplayRaceNameLong\",\"detail\":\"Player_GetDisplayRaceNameLong(player)\",\"documentation\":\"File: e:coh2_modsgenericscarlibplayer.scar, line 168\"},{\"id\":\"workspace_Player_GetNameWithFaction\",\"name\":\"Player_GetNameWithFaction\",\"filepath\":\"e:coh2_modsgenericscarlibplayer.scar\",\"kind\":8,\"label\":\"Player_GetNameWithFaction\",\"detail\":\"Player_GetNameWithFaction(player)\",\"documentation\":\"File: e:coh2_modsgenericscarlibplayer.scar, line 186\"},{\"id\":\"workspace_AIDifficulty_Tostring\",\"name\":\"AIDifficulty_Tostring\",\"filepath\":\"e:coh2_modsgenericscarlibplayer.scar\",\"kind\":8,\"label\":\"AIDifficulty_Tostring\",\"detail\":\"AIDifficulty_Tostring(difficulty)\",\"documentation\":\"File: e:coh2_modsgenericscarlibplayer.scar, line 190\"},{\"id\":\"workspace_Player_IsAI\",\"name\":\"Player_IsAI\",\"filepath\":\"e:coh2_modsgenericscarlibplayer.scar\",\"kind\":8,\"label\":\"Player_IsAI\",\"detail\":\"Player_IsAI(player)\",\"documentation\":\"File: e:coh2_modsgenericscarlibplayer.scar, line 204\"},{\"id\":\"workspace_Player_ForEachSquad\",\"name\":\"Player_ForEachSquad\",\"filepath\":\"e:coh2_modsgenericscarlibplayer.scar\",\"kind\":8,\"label\":\"Player_ForEachSquad\",\"detail\":\"Player_ForEachSquad(player, f)\",\"documentation\":\"File: e:coh2_modsgenericscarlibplayer.scar, line 209\"},{\"id\":\"workspace_Pos_NormalizeHeight\",\"name\":\"Pos_NormalizeHeight\",\"filepath\":\"e:coh2_modsgenericscarlibposition.scar\",\"kind\":8,\"label\":\"Pos_NormalizeHeight\",\"detail\":\"Pos_NormalizeHeight(pos)\",\"documentation\":\"File: e:coh2_modsgenericscarlibposition.scar, line 30\"},{\"id\":\"workspace_Rule_AddIntervalAndRun\",\"name\":\"Rule_AddIntervalAndRun\",\"filepath\":\"e:coh2_modsgenericscarlibrulesystem.scar\",\"kind\":8,\"label\":\"Rule_AddIntervalAndRun\",\"detail\":\"Rule_AddIntervalAndRun(luaFunc, interval)\",\"documentation\":\"File: e:coh2_modsgenericscarlibrulesystem.scar, line 22\"},{\"id\":\"workspace_Rule_AddIfNotExists\",\"name\":\"Rule_AddIfNotExists\",\"filepath\":\"e:coh2_modsgenericscarlibrulesystem.scar\",\"kind\":8,\"label\":\"Rule_AddIfNotExists\",\"detail\":\"Rule_AddIfNotExists(rule)\",\"documentation\":\"File: e:coh2_modsgenericscarlibrulesystem.scar, line 27\"},{\"id\":\"workspace_Rule_AddIntervalIfNotExists\",\"name\":\"Rule_AddIntervalIfNotExists\",\"filepath\":\"e:coh2_modsgenericscarlibrulesystem.scar\",\"kind\":8,\"label\":\"Rule_AddIntervalIfNotExists\",\"detail\":\"Rule_AddIntervalIfNotExists(rule, interval)\",\"documentation\":\"File: e:coh2_modsgenericscarlibrulesystem.scar, line 33\"},{\"id\":\"workspace_Rule_ChangeIntervalIfExists\",\"name\":\"Rule_ChangeIntervalIfExists\",\"filepath\":\"e:coh2_modsgenericscarlibrulesystem.scar\",\"kind\":8,\"label\":\"Rule_ChangeIntervalIfExists\",\"detail\":\"Rule_ChangeIntervalIfExists(rule, newInterval)\",\"documentation\":\"File: e:coh2_modsgenericscarlibrulesystem.scar, line 39\"},{\"id\":\"workspace_Rule_AddDelayed\",\"name\":\"Rule_AddDelayed\",\"filepath\":\"e:coh2_modsgenericscarlibrulesystem.scar\",\"kind\":8,\"label\":\"Rule_AddDelayed\",\"detail\":\"Rule_AddDelayed(rule, delay, priority)\",\"documentation\":\"File: e:coh2_modsgenericscarlibrulesystem.scar, line 45\"},{\"id\":\"workspace_Rule_AddDelayedIfNotExists\",\"name\":\"Rule_AddDelayedIfNotExists\",\"filepath\":\"e:coh2_modsgenericscarlibrulesystem.scar\",\"kind\":8,\"label\":\"Rule_AddDelayedIfNotExists\",\"detail\":\"Rule_AddDelayedIfNotExists(rule, delay, priority)\",\"documentation\":\"File: e:coh2_modsgenericscarlibrulesystem.scar, line 49\"},{\"id\":\"workspace_Modify_SetSquadtAutoTargetting\",\"name\":\"Modify_SetSquadtAutoTargetting\",\"filepath\":\"e:coh2_modsgenericscarlibmodifier.scar\",\"kind\":8,\"label\":\"Modify_SetSquadtAutoTargetting\",\"detail\":\"Modify_SetSquadtAutoTargetting(squad, hardpoint, enable)\",\"documentation\":\"File: e:coh2_modsgenericscarlibmodifier.scar, line 23\"},{\"id\":\"workspace_Modify_SetEntityAutoTargetting\",\"name\":\"Modify_SetEntityAutoTargetting\",\"filepath\":\"e:coh2_modsgenericscarlibmodifier.scar\",\"kind\":8,\"label\":\"Modify_SetEntityAutoTargetting\",\"detail\":\"Modify_SetEntityAutoTargetting(entity, hardpoint, enable)\",\"documentation\":\"File: e:coh2_modsgenericscarlibmodifier.scar, line 34\"},{\"id\":\"workspace_Modify_SetEntityAutoTargettingAllHardpoints\",\"name\":\"Modify_SetEntityAutoTargettingAllHardpoints\",\"filepath\":\"e:coh2_modsgenericscarlibmodifier.scar\",\"kind\":8,\"label\":\"Modify_SetEntityAutoTargettingAllHardpoints\",\"detail\":\"Modify_SetEntityAutoTargettingAllHardpoints(entity, enable)\",\"documentation\":\"File: e:coh2_modsgenericscarlibmodifier.scar, line 47\"},{\"id\":\"workspace_Modify_SetSquadAutoTargettingAllHardpoints\",\"name\":\"Modify_SetSquadAutoTargettingAllHardpoints\",\"filepath\":\"e:coh2_modsgenericscarlibmodifier.scar\",\"kind\":8,\"label\":\"Modify_SetSquadAutoTargettingAllHardpoints\",\"detail\":\"Modify_SetSquadAutoTargettingAllHardpoints(squad, enable)\",\"documentation\":\"File: e:coh2_modsgenericscarlibmodifier.scar, line 66\"},{\"id\":\"workspace_Modify_SetSGroupAutoTargettingAllHardpoints\",\"name\":\"Modify_SetSGroupAutoTargettingAllHardpoints\",\"filepath\":\"e:coh2_modsgenericscarlibmodifier.scar\",\"kind\":8,\"label\":\"Modify_SetSGroupAutoTargettingAllHardpoints\",\"detail\":\"Modify_SetSGroupAutoTargettingAllHardpoints(sgroup, enable)\",\"documentation\":\"File: e:coh2_modsgenericscarlibmodifier.scar, line 75\"},{\"id\":\"workspace_Modify_SetEGroupAutoTargettingAllHardpoints\",\"name\":\"Modify_SetEGroupAutoTargettingAllHardpoints\",\"filepath\":\"e:coh2_modsgenericscarlibmodifier.scar\",\"kind\":8,\"label\":\"Modify_SetEGroupAutoTargettingAllHardpoints\",\"detail\":\"Modify_SetEGroupAutoTargettingAllHardpoints(entity, enable)\",\"documentation\":\"File: e:coh2_modsgenericscarlibmodifier.scar, line 84\"},{\"id\":\"workspace_Modify_SquadTypeEnableCapturing\",\"name\":\"Modify_SquadTypeEnableCapturing\",\"filepath\":\"e:coh2_modsgenericscarlibmodifier.scar\",\"kind\":8,\"label\":\"Modify_SquadTypeEnableCapturing\",\"detail\":\"Modify_SquadTypeEnableCapturing(playerid, blueprint, enabled)\",\"documentation\":\"File: e:coh2_modsgenericscarlibmodifier.scar, line 93\"},{\"id\":\"workspace_Selection_UnselectAll\",\"name\":\"Selection_UnselectAll\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_UnselectAll\",\"detail\":\"Selection_UnselectAll()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 23\"},{\"id\":\"workspace_Selection_IsOneEntity\",\"name\":\"Selection_IsOneEntity\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_IsOneEntity\",\"detail\":\"Selection_IsOneEntity()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 36\"},{\"id\":\"workspace_Selection_IsOneSquad\",\"name\":\"Selection_IsOneSquad\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_IsOneSquad\",\"detail\":\"Selection_IsOneSquad()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 42\"},{\"id\":\"workspace_Selection_IsOneSquadOrOneEntity\",\"name\":\"Selection_IsOneSquadOrOneEntity\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_IsOneSquadOrOneEntity\",\"detail\":\"Selection_IsOneSquadOrOneEntity()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 48\"},{\"id\":\"workspace_Selection_IsOneOrMoreSquads\",\"name\":\"Selection_IsOneOrMoreSquads\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_IsOneOrMoreSquads\",\"detail\":\"Selection_IsOneOrMoreSquads()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 52\"},{\"id\":\"workspace_Selection_IsOneOrMoreEntities\",\"name\":\"Selection_IsOneOrMoreEntities\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_IsOneOrMoreEntities\",\"detail\":\"Selection_IsOneOrMoreEntities()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 59\"},{\"id\":\"workspace_Selection_IsSquadsOrEntities\",\"name\":\"Selection_IsSquadsOrEntities\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_IsSquadsOrEntities\",\"detail\":\"Selection_IsSquadsOrEntities()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 65\"},{\"id\":\"workspace_Selection_IsSquadOrEntity\",\"name\":\"Selection_IsSquadOrEntity\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_IsSquadOrEntity\",\"detail\":\"Selection_IsSquadOrEntity()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 69\"},{\"id\":\"workspace_Selection_GetSquad\",\"name\":\"Selection_GetSquad\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_GetSquad\",\"detail\":\"Selection_GetSquad()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 73\"},{\"id\":\"workspace_Selection_GetEntity\",\"name\":\"Selection_GetEntity\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_GetEntity\",\"detail\":\"Selection_GetEntity()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 81\"},{\"id\":\"workspace_Selection_GetSquads\",\"name\":\"Selection_GetSquads\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_GetSquads\",\"detail\":\"Selection_GetSquads()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 89\"},{\"id\":\"workspace_Selection_GetEntities\",\"name\":\"Selection_GetEntities\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_GetEntities\",\"detail\":\"Selection_GetEntities()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 96\"},{\"id\":\"workspace_Misc_SomethingIsSelected\",\"name\":\"Misc_SomethingIsSelected\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Misc_SomethingIsSelected\",\"detail\":\"Misc_SomethingIsSelected()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 103\"},{\"id\":\"workspace_Selection_ForEachSquad\",\"name\":\"Selection_ForEachSquad\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_ForEachSquad\",\"detail\":\"Selection_ForEachSquad(f)\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 120\"},{\"id\":\"workspace_Selection_ForEachEntity\",\"name\":\"Selection_ForEachEntity\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_ForEachEntity\",\"detail\":\"Selection_ForEachEntity(f)\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 126\"},{\"id\":\"workspace_Selection_IsNotInvulnerable\",\"name\":\"Selection_IsNotInvulnerable\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_IsNotInvulnerable\",\"detail\":\"Selection_IsNotInvulnerable()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 132\"},{\"id\":\"workspace_Selection_IsNotNeutralSquadOrEntity\",\"name\":\"Selection_IsNotNeutralSquadOrEntity\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_IsNotNeutralSquadOrEntity\",\"detail\":\"Selection_IsNotNeutralSquadOrEntity()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 137\"},{\"id\":\"workspace_Selection_CountInvulnerables\",\"name\":\"Selection_CountInvulnerables\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_CountInvulnerables\",\"detail\":\"Selection_CountInvulnerables()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 154\"},{\"id\":\"workspace_Selection_IsInvulnerable\",\"name\":\"Selection_IsInvulnerable\",\"filepath\":\"e:coh2_modsgenericscarlibselection.scar\",\"kind\":8,\"label\":\"Selection_IsInvulnerable\",\"detail\":\"Selection_IsInvulnerable()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselection.scar, line 177\"},{\"id\":\"workspace_SelectionMonitor_Init\",\"name\":\"SelectionMonitor_Init\",\"filepath\":\"e:coh2_modsgenericscarlibselectionmonitor.scar\",\"kind\":8,\"label\":\"SelectionMonitor_Init\",\"detail\":\"SelectionMonitor_Init()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselectionmonitor.scar, line 22\"},{\"id\":\"workspace_SelectionMonitor\",\"name\":\"SelectionMonitor\",\"filepath\":\"e:coh2_modsgenericscarlibselectionmonitor.scar\",\"kind\":8,\"label\":\"SelectionMonitor\",\"detail\":\"SelectionMonitor()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselectionmonitor.scar, line 33\"},{\"id\":\"workspace_SelectionMonitor_GetID\",\"name\":\"SelectionMonitor_GetID\",\"filepath\":\"e:coh2_modsgenericscarlibselectionmonitor.scar\",\"kind\":8,\"label\":\"SelectionMonitor_GetID\",\"detail\":\"SelectionMonitor_GetID()\",\"documentation\":\"File: e:coh2_modsgenericscarlibselectionmonitor.scar, line 86\"},{\"id\":\"workspace_SelectionMonitor_AddSquad\",\"name\":\"SelectionMonitor_AddSquad\",\"filepath\":\"e:coh2_modsgenericscarlibselectionmonitor.scar\",\"kind\":8,\"label\":\"SelectionMonitor_AddSquad\",\"detail\":\"SelectionMonitor_AddSquad(squad, data)\",\"documentation\":\"File: e:coh2_modsgenericscarlibselectionmonitor.scar, line 93\"},{\"id\":\"workspace_SelectionMonitor_AddEntity\",\"name\":\"SelectionMonitor_AddEntity\",\"filepath\":\"e:coh2_modsgenericscarlibselectionmonitor.scar\",\"kind\":8,\"label\":\"SelectionMonitor_AddEntity\",\"detail\":\"SelectionMonitor_AddEntity(entity, data)\",\"documentation\":\"File: e:coh2_modsgenericscarlibselectionmonitor.scar, line 110\"},{\"id\":\"workspace_SelectionMonitor_RemoveSquad\",\"name\":\"SelectionMonitor_RemoveSquad\",\"filepath\":\"e:coh2_modsgenericscarlibselectionmonitor.scar\",\"kind\":8,\"label\":\"SelectionMonitor_RemoveSquad\",\"detail\":\"SelectionMonitor_RemoveSquad(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibselectionmonitor.scar, line 127\"},{\"id\":\"workspace_SelectionMonitor_RemoveEntity\",\"name\":\"SelectionMonitor_RemoveEntity\",\"filepath\":\"e:coh2_modsgenericscarlibselectionmonitor.scar\",\"kind\":8,\"label\":\"SelectionMonitor_RemoveEntity\",\"detail\":\"SelectionMonitor_RemoveEntity(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibselectionmonitor.scar, line 132\"},{\"id\":\"workspace_SelectionMonitor_RemoveItemListener\",\"name\":\"SelectionMonitor_RemoveItemListener\",\"filepath\":\"e:coh2_modsgenericscarlibselectionmonitor.scar\",\"kind\":8,\"label\":\"SelectionMonitor_RemoveItemListener\",\"detail\":\"SelectionMonitor_RemoveItemListener(key, listener)\",\"documentation\":\"File: e:coh2_modsgenericscarlibselectionmonitor.scar, line 137\"},{\"id\":\"workspace_SelectionMonitor_RemoveSquadLister\",\"name\":\"SelectionMonitor_RemoveSquadLister\",\"filepath\":\"e:coh2_modsgenericscarlibselectionmonitor.scar\",\"kind\":8,\"label\":\"SelectionMonitor_RemoveSquadLister\",\"detail\":\"SelectionMonitor_RemoveSquadLister(squad, listener)\",\"documentation\":\"File: e:coh2_modsgenericscarlibselectionmonitor.scar, line 146\"},{\"id\":\"workspace_SelectionSystem_RemoveEntityLister\",\"name\":\"SelectionSystem_RemoveEntityLister\",\"filepath\":\"e:coh2_modsgenericscarlibselectionmonitor.scar\",\"kind\":8,\"label\":\"SelectionSystem_RemoveEntityLister\",\"detail\":\"SelectionSystem_RemoveEntityLister(entity, listener)\",\"documentation\":\"File: e:coh2_modsgenericscarlibselectionmonitor.scar, line 150\"},{\"id\":\"workspace_SGroup_ToTable\",\"name\":\"SGroup_ToTable\",\"filepath\":\"e:coh2_modsgenericscarlibsgroup.scar\",\"kind\":8,\"label\":\"SGroup_ToTable\",\"detail\":\"SGroup_ToTable(sgroup)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsgroup.scar, line 29\"},{\"id\":\"workspace_SGroup_SetPosition\",\"name\":\"SGroup_SetPosition\",\"filepath\":\"e:coh2_modsgenericscarlibsgroup.scar\",\"kind\":8,\"label\":\"SGroup_SetPosition\",\"detail\":\"SGroup_SetPosition(sgroup, pos, variation)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsgroup.scar, line 39\"},{\"id\":\"workspace_SGroup_CountEntities\",\"name\":\"SGroup_CountEntities\",\"filepath\":\"e:coh2_modsgenericscarlibsgroup.scar\",\"kind\":8,\"label\":\"SGroup_CountEntities\",\"detail\":\"SGroup_CountEntities(sgroup, vehicleMultiplier)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsgroup.scar, line 54\"},{\"id\":\"workspace_SGroup_IsAlive2\",\"name\":\"SGroup_IsAlive2\",\"filepath\":\"e:coh2_modsgenericscarlibsgroup.scar\",\"kind\":8,\"label\":\"SGroup_IsAlive2\",\"detail\":\"SGroup_IsAlive2(sgroup, all)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsgroup.scar, line 80\"},{\"id\":\"workspace_Squad_CountSpawned\",\"name\":\"Squad_CountSpawned\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_CountSpawned\",\"detail\":\"Squad_CountSpawned(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 81\"},{\"id\":\"workspace_Squad_IsPlane\",\"name\":\"Squad_IsPlane\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_IsPlane\",\"detail\":\"Squad_IsPlane(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 103\"},{\"id\":\"workspace_Squad_SetSelectable\",\"name\":\"Squad_SetSelectable\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_SetSelectable\",\"detail\":\"Squad_SetSelectable(squad, selectabe)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 113\"},{\"id\":\"workspace_Squad_GetLastAttackerSquad\",\"name\":\"Squad_GetLastAttackerSquad\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_GetLastAttackerSquad\",\"detail\":\"Squad_GetLastAttackerSquad(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 117\"},{\"id\":\"workspace_Squad_IsSelected\",\"name\":\"Squad_IsSelected\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_IsSelected\",\"detail\":\"Squad_IsSelected(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 131\"},{\"id\":\"workspace_Squad_AddHealthPercentage\",\"name\":\"Squad_AddHealthPercentage\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_AddHealthPercentage\",\"detail\":\"Squad_AddHealthPercentage(squad, percentage)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 135\"},{\"id\":\"workspace_Squad_AddHealthPoints\",\"name\":\"Squad_AddHealthPoints\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_AddHealthPoints\",\"detail\":\"Squad_AddHealthPoints(squad, points)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 146\"},{\"id\":\"workspace_Squad_Abandon\",\"name\":\"Squad_Abandon\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_Abandon\",\"detail\":\"Squad_Abandon(squad, vehicleCrit)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 160\"},{\"id\":\"workspace_Squad_GetOwnerString\",\"name\":\"Squad_GetOwnerString\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_GetOwnerString\",\"detail\":\"Squad_GetOwnerString(squad, nameWithFaction)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 190\"},{\"id\":\"workspace_Squad_GetBPName\",\"name\":\"Squad_GetBPName\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_GetBPName\",\"detail\":\"Squad_GetBPName(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 205\"},{\"id\":\"workspace_Squad_GetCriticals\",\"name\":\"Squad_GetCriticals\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_GetCriticals\",\"detail\":\"Squad_GetCriticals(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 209\"},{\"id\":\"workspace_Squad_RemoveCriticals\",\"name\":\"Squad_RemoveCriticals\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_RemoveCriticals\",\"detail\":\"Squad_RemoveCriticals(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 228\"},{\"id\":\"workspace_Squad_IsValidSafe\",\"name\":\"Squad_IsValidSafe\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_IsValidSafe\",\"detail\":\"Squad_IsValidSafe(squadId)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 240\"},{\"id\":\"workspace_Squad_SetAutoTargetting\",\"name\":\"Squad_SetAutoTargetting\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_SetAutoTargetting\",\"detail\":\"Squad_SetAutoTargetting(squad, hardpoint, enable)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 253\"},{\"id\":\"workspace___RegisterSquadAutoTargettingModifier\",\"name\":\"__RegisterSquadAutoTargettingModifier\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"__RegisterSquadAutoTargettingModifier\",\"detail\":\"__RegisterSquadAutoTargettingModifier(squadId, hardpoint, modId)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 307\"},{\"id\":\"workspace___UnRegisterSquadAutoTargettingModifier\",\"name\":\"__UnRegisterSquadAutoTargettingModifier\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"__UnRegisterSquadAutoTargettingModifier\",\"detail\":\"__UnRegisterSquadAutoTargettingModifier(squadId, hardpoint)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 315\"},{\"id\":\"workspace___RegisterEntityAutoTargettingModifier\",\"name\":\"__RegisterEntityAutoTargettingModifier\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"__RegisterEntityAutoTargettingModifier\",\"detail\":\"__RegisterEntityAutoTargettingModifier(entityId, hardpoint, modId)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 321\"},{\"id\":\"workspace___UnRegisterEntityAutoTargettingModifier\",\"name\":\"__UnRegisterEntityAutoTargettingModifier\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"__UnRegisterEntityAutoTargettingModifier\",\"detail\":\"__UnRegisterEntityAutoTargettingModifier(entityId, hardpoint)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 329\"},{\"id\":\"workspace_Squad_SetAllAutoTargetting\",\"name\":\"Squad_SetAllAutoTargetting\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_SetAllAutoTargetting\",\"detail\":\"Squad_SetAllAutoTargetting(squad, enabled)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 335\"},{\"id\":\"workspace_Squad_GetAutoTargetting\",\"name\":\"Squad_GetAutoTargetting\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_GetAutoTargetting\",\"detail\":\"Squad_GetAutoTargetting(squad, hardpoint)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 352\"},{\"id\":\"workspace_Squad_GetAllAutoTargetting\",\"name\":\"Squad_GetAllAutoTargetting\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_GetAllAutoTargetting\",\"detail\":\"Squad_GetAllAutoTargetting(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 357\"},{\"id\":\"workspace_Squad_GetUpgrades\",\"name\":\"Squad_GetUpgrades\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_GetUpgrades\",\"detail\":\"Squad_GetUpgrades(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 371\"},{\"id\":\"workspace_Squad_HasUpgrades\",\"name\":\"Squad_HasUpgrades\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_HasUpgrades\",\"detail\":\"Squad_HasUpgrades(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 397\"},{\"id\":\"workspace_Squad_RemoveSlotItem\",\"name\":\"Squad_RemoveSlotItem\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_RemoveSlotItem\",\"detail\":\"Squad_RemoveSlotItem(squad, slotItem)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 419\"},{\"id\":\"workspace_Squad_RemoveUpgradeFully\",\"name\":\"Squad_RemoveUpgradeFully\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_RemoveUpgradeFully\",\"detail\":\"Squad_RemoveUpgradeFully(squad, upgrade)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 442\"},{\"id\":\"workspace_Squad_ForEachHeldSquad\",\"name\":\"Squad_ForEachHeldSquad\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_ForEachHeldSquad\",\"detail\":\"Squad_ForEachHeldSquad(parentSquad, f)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 454\"},{\"id\":\"workspace_Squad_DestroyHeldSquads\",\"name\":\"Squad_DestroyHeldSquads\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_DestroyHeldSquads\",\"detail\":\"Squad_DestroyHeldSquads(parentSquad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 463\"},{\"id\":\"workspace_Squad_KillHeldSquads\",\"name\":\"Squad_KillHeldSquads\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_KillHeldSquads\",\"detail\":\"Squad_KillHeldSquads(parentSquad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 469\"},{\"id\":\"workspace_Squad_ModifyVehicleSpeed\",\"name\":\"Squad_ModifyVehicleSpeed\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_ModifyVehicleSpeed\",\"detail\":\"Squad_ModifyVehicleSpeed(squad, addition, mathType)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 481\"},{\"id\":\"workspace_Squad_ModifyVehicleRotationSpeed\",\"name\":\"Squad_ModifyVehicleRotationSpeed\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_ModifyVehicleRotationSpeed\",\"detail\":\"Squad_ModifyVehicleRotationSpeed(squad, addition, mathType)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 487\"},{\"id\":\"workspace_Squad_ModifyTurretHorizontalSpeed\",\"name\":\"Squad_ModifyTurretHorizontalSpeed\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_ModifyTurretHorizontalSpeed\",\"detail\":\"Squad_ModifyTurretHorizontalSpeed(squad, addition, mathType, hardpoint)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 493\"},{\"id\":\"workspace_Squad_ModifyMovementSpeed\",\"name\":\"Squad_ModifyMovementSpeed\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_ModifyMovementSpeed\",\"detail\":\"Squad_ModifyMovementSpeed(squad, addition)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 503\"},{\"id\":\"workspace_Squad_GetTypes\",\"name\":\"Squad_GetTypes\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_GetTypes\",\"detail\":\"Squad_GetTypes(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 538\"},{\"id\":\"workspace_Squad_IsOfType\",\"name\":\"Squad_IsOfType\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_IsOfType\",\"detail\":\"Squad_IsOfType(squad, sbpType)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 544\"},{\"id\":\"workspace_SBP_GetTypes\",\"name\":\"SBP_GetTypes\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"SBP_GetTypes\",\"detail\":\"SBP_GetTypes(sbp)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 550\"},{\"id\":\"workspace_SBP_IsOfType\",\"name\":\"SBP_IsOfType\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"SBP_IsOfType\",\"detail\":\"SBP_IsOfType(sbp, sbpType)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 561\"},{\"id\":\"workspace_Squad_GetEntityTable\",\"name\":\"Squad_GetEntityTable\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_GetEntityTable\",\"detail\":\"Squad_GetEntityTable(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 581\"},{\"id\":\"workspace_Squad_ToEntities\",\"name\":\"Squad_ToEntities\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_ToEntities\",\"detail\":\"Squad_ToEntities(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 591\"},{\"id\":\"workspace_Squad_ToEntity\",\"name\":\"Squad_ToEntity\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_ToEntity\",\"detail\":\"Squad_ToEntity(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 608\"},{\"id\":\"workspace_Squad_AddMainGunHorizontalRotation\",\"name\":\"Squad_AddMainGunHorizontalRotation\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_AddMainGunHorizontalRotation\",\"detail\":\"Squad_AddMainGunHorizontalRotation(squad, amount)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 625\"},{\"id\":\"workspace_Squad_SetMainGunHorizontalRotation\",\"name\":\"Squad_SetMainGunHorizontalRotation\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_SetMainGunHorizontalRotation\",\"detail\":\"Squad_SetMainGunHorizontalRotation(squad, rotation)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 637\"},{\"id\":\"workspace_Squad_Decrew\",\"name\":\"Squad_Decrew\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_Decrew\",\"detail\":\"Squad_Decrew(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 643\"},{\"id\":\"workspace_Squad_SetSkinSeason\",\"name\":\"Squad_SetSkinSeason\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_SetSkinSeason\",\"detail\":\"Squad_SetSkinSeason(squad, season)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 657\"},{\"id\":\"workspace_Squad_RemoveSlotItems\",\"name\":\"Squad_RemoveSlotItems\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_RemoveSlotItems\",\"detail\":\"Squad_RemoveSlotItems(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 664\"},{\"id\":\"workspace_Squad_GetEntityStateString\",\"name\":\"Squad_GetEntityStateString\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_GetEntityStateString\",\"detail\":\"Squad_GetEntityStateString(squad)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 672\"},{\"id\":\"workspace_Squad_RemoveUpgradeIfPresent\",\"name\":\"Squad_RemoveUpgradeIfPresent\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_RemoveUpgradeIfPresent\",\"detail\":\"Squad_RemoveUpgradeIfPresent(squad, upgrade)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 681\"},{\"id\":\"workspace_Squad_RemoveUpgradesIfPResent\",\"name\":\"Squad_RemoveUpgradesIfPResent\",\"filepath\":\"e:coh2_modsgenericscarlibsquad.scar\",\"kind\":8,\"label\":\"Squad_RemoveUpgradesIfPResent\",\"detail\":\"Squad_RemoveUpgradesIfPResent(squad, upgrades)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsquad.scar, line 693\"},{\"id\":\"workspace_String_Match\",\"name\":\"String_Match\",\"filepath\":\"e:coh2_modsgenericscarlibstring.scar\",\"kind\":8,\"label\":\"String_Match\",\"detail\":\"String_Match(s, matches)\",\"documentation\":\"File: e:coh2_modsgenericscarlibstring.scar, line 23\"},{\"id\":\"workspace_String_Replace\",\"name\":\"String_Replace\",\"filepath\":\"e:coh2_modsgenericscarlibstring.scar\",\"kind\":8,\"label\":\"String_Replace\",\"detail\":\"String_Replace(s, find, replace)\",\"documentation\":\"File: e:coh2_modsgenericscarlibstring.scar, line 35\"},{\"id\":\"workspace_String_AddGenetive\",\"name\":\"String_AddGenetive\",\"filepath\":\"e:coh2_modsgenericscarlibstring.scar\",\"kind\":8,\"label\":\"String_AddGenetive\",\"detail\":\"String_AddGenetive(str, genetive)\",\"documentation\":\"File: e:coh2_modsgenericscarlibstring.scar, line 68\"},{\"id\":\"workspace_String_Split\",\"name\":\"String_Split\",\"filepath\":\"e:coh2_modsgenericscarlibstring.scar\",\"kind\":8,\"label\":\"String_Split\",\"detail\":\"String_Split(str, separator)\",\"documentation\":\"File: e:coh2_modsgenericscarlibstring.scar, line 81\"},{\"id\":\"workspace_Number_TrailingZeroes\",\"name\":\"Number_TrailingZeroes\",\"filepath\":\"e:coh2_modsgenericscarlibstring.scar\",\"kind\":8,\"label\":\"Number_TrailingZeroes\",\"detail\":\"Number_TrailingZeroes(num, zeroes)\",\"documentation\":\"File: e:coh2_modsgenericscarlibstring.scar, line 94\"},{\"id\":\"workspace_Outpost\",\"name\":\"Outpost\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpost.scar\",\"kind\":8,\"label\":\"Outpost\",\"detail\":\"Outpost(config, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpost.scar, line 23\"},{\"id\":\"workspace_Outpost_Init\",\"name\":\"Outpost_Init\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpost.scar\",\"kind\":8,\"label\":\"Outpost_Init\",\"detail\":\"Outpost_Init()\",\"documentation\":\" File: e:coh2_modsgenericscarlibsystemsoutpostoutpost.scar, line 266\"},{\"id\":\"workspace_OutpostManager_Register\",\"name\":\"OutpostManager_Register\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostmanager.scar\",\"kind\":8,\"label\":\"OutpostManager_Register\",\"detail\":\"OutpostManager_Register(outpost)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostmanager.scar, line 24\"},{\"id\":\"workspace_OutpostManager_Tick\",\"name\":\"OutpostManager_Tick\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostmanager.scar\",\"kind\":8,\"label\":\"OutpostManager_Tick\",\"detail\":\"OutpostManager_Tick()\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostmanager.scar, line 31\"},{\"id\":\"workspace_OutpostPatrol\",\"name\":\"OutpostPatrol\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostpatrol.scar\",\"kind\":8,\"label\":\"OutpostPatrol\",\"detail\":\"OutpostPatrol(config, outpost, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostpatrol.scar, line 23\"},{\"id\":\"workspace_OutpostCaptureTrigger\",\"name\":\"OutpostCaptureTrigger\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostcapturetrigger.scar\",\"kind\":8,\"label\":\"OutpostCaptureTrigger\",\"detail\":\"OutpostCaptureTrigger(triggerType, config, outpost, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostcapturetrigger.scar, line 41\"},{\"id\":\"workspace_OutpostPatrolAlarmedSquads_Register\",\"name\":\"OutpostPatrolAlarmedSquads_Register\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostpatrolalarmedsquadmanager.scar\",\"kind\":8,\"label\":\"OutpostPatrolAlarmedSquads_Register\",\"detail\":\"OutpostPatrolAlarmedSquads_Register(squad, patrol, encounter, radioPost)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostpatrolalarmedsquadmanager.scar, line 24\"},{\"id\":\"workspace_OutpostPatrolAlarmedSquads_Tick\",\"name\":\"OutpostPatrolAlarmedSquads_Tick\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostpatrolalarmedsquadmanager.scar\",\"kind\":8,\"label\":\"OutpostPatrolAlarmedSquads_Tick\",\"detail\":\"OutpostPatrolAlarmedSquads_Tick()\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostpatrolalarmedsquadmanager.scar, line 37\"},{\"id\":\"workspace_OutpostPatrolManager_Register\",\"name\":\"OutpostPatrolManager_Register\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostpatrolmanager.scar\",\"kind\":8,\"label\":\"OutpostPatrolManager_Register\",\"detail\":\"OutpostPatrolManager_Register(enc, patrol)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostpatrolmanager.scar, line 24\"},{\"id\":\"workspace_OutpostPatrolManager_Tick\",\"name\":\"OutpostPatrolManager_Tick\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostpatrolmanager.scar\",\"kind\":8,\"label\":\"OutpostPatrolManager_Tick\",\"detail\":\"OutpostPatrolManager_Tick()\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostpatrolmanager.scar, line 32\"},{\"id\":\"workspace_OutpostRadioPost\",\"name\":\"OutpostRadioPost\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostradiopost.scar\",\"kind\":8,\"label\":\"OutpostRadioPost\",\"detail\":\"OutpostRadioPost(config, outpost, child)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostradiopost.scar, line 23\"},{\"id\":\"workspace_OutpostRadioPostManager_Register\",\"name\":\"OutpostRadioPostManager_Register\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostradiopostmanager.scar\",\"kind\":8,\"label\":\"OutpostRadioPostManager_Register\",\"detail\":\"OutpostRadioPostManager_Register(radio)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostradiopostmanager.scar, line 25\"},{\"id\":\"workspace_OutpostRadioPostManager_Tick\",\"name\":\"OutpostRadioPostManager_Tick\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostradiopostmanager.scar\",\"kind\":8,\"label\":\"OutpostRadioPostManager_Tick\",\"detail\":\"OutpostRadioPostManager_Tick()\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostradiopostmanager.scar, line 29\"},{\"id\":\"workspace_Table_AddTable\",\"name\":\"Table_AddTable\",\"filepath\":\"e:coh2_modsgenericscarlibtable.scar\",\"kind\":8,\"label\":\"Table_AddTable\",\"detail\":\"Table_AddTable(t, add, f)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtable.scar, line 22\"},{\"id\":\"workspace_Table_GetSmallest\",\"name\":\"Table_GetSmallest\",\"filepath\":\"e:coh2_modsgenericscarlibtable.scar\",\"kind\":8,\"label\":\"Table_GetSmallest\",\"detail\":\"Table_GetSmallest(t, itemField)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtable.scar, line 39\"},{\"id\":\"workspace_Table_GetLargest\",\"name\":\"Table_GetLargest\",\"filepath\":\"e:coh2_modsgenericscarlibtable.scar\",\"kind\":8,\"label\":\"Table_GetLargest\",\"detail\":\"Table_GetLargest(t, itemField)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtable.scar, line 62\"},{\"id\":\"workspace_Table_RemoveValue\",\"name\":\"Table_RemoveValue\",\"filepath\":\"e:coh2_modsgenericscarlibtable.scar\",\"kind\":8,\"label\":\"Table_RemoveValue\",\"detail\":\"Table_RemoveValue(t, v)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtable.scar, line 85\"},{\"id\":\"workspace_Table_IsEmpty\",\"name\":\"Table_IsEmpty\",\"filepath\":\"e:coh2_modsgenericscarlibtable.scar\",\"kind\":8,\"label\":\"Table_IsEmpty\",\"detail\":\"Table_IsEmpty(t)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtable.scar, line 93\"},{\"id\":\"workspace_Table_GetRandomBlueprint\",\"name\":\"Table_GetRandomBlueprint\",\"filepath\":\"e:coh2_modsgenericscarlibtable.scar\",\"kind\":8,\"label\":\"Table_GetRandomBlueprint\",\"detail\":\"Table_GetRandomBlueprint(t)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtable.scar, line 104\"},{\"id\":\"workspace_Table_Remove\",\"name\":\"Table_Remove\",\"filepath\":\"e:coh2_modsgenericscarlibtable.scar\",\"kind\":8,\"label\":\"Table_Remove\",\"detail\":\"Table_Remove(t, removeValue)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtable.scar, line 126\"},{\"id\":\"workspace_Table_ToIndexableList\",\"name\":\"Table_ToIndexableList\",\"filepath\":\"e:coh2_modsgenericscarlibtable.scar\",\"kind\":8,\"label\":\"Table_ToIndexableList\",\"detail\":\"Table_ToIndexableList(t)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtable.scar, line 134\"},{\"id\":\"workspace_Table_Count\",\"name\":\"Table_Count\",\"filepath\":\"e:coh2_modsgenericscarlibtable.scar\",\"kind\":8,\"label\":\"Table_Count\",\"detail\":\"Table_Count(t)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtable.scar, line 142\"},{\"id\":\"workspace_Table_Compare\",\"name\":\"Table_Compare\",\"filepath\":\"e:coh2_modsgenericscarlibtable.scar\",\"kind\":8,\"label\":\"Table_Compare\",\"detail\":\"Table_Compare(t1, t2)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtable.scar, line 151\"},{\"id\":\"workspace_RangeTable_GetRandomValue\",\"name\":\"RangeTable_GetRandomValue\",\"filepath\":\"e:coh2_modsgenericscarlibtable.scar\",\"kind\":8,\"label\":\"RangeTable_GetRandomValue\",\"detail\":\"RangeTable_GetRandomValue(t, minMultiplier, maxMultiplier)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtable.scar, line 171\"},{\"id\":\"workspace_OutpostReinforcementsManager_Register\",\"name\":\"OutpostReinforcementsManager_Register\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostreinforcementsmanager.scar\",\"kind\":8,\"label\":\"OutpostReinforcementsManager_Register\",\"detail\":\"OutpostReinforcementsManager_Register(enc, outpost)\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostreinforcementsmanager.scar, line 26\"},{\"id\":\"workspace_OutpostReinforcementsManager_Tick\",\"name\":\"OutpostReinforcementsManager_Tick\",\"filepath\":\"e:coh2_modsgenericscarlibsystemsoutpostoutpostreinforcementsmanager.scar\",\"kind\":8,\"label\":\"OutpostReinforcementsManager_Tick\",\"detail\":\"OutpostReinforcementsManager_Tick()\",\"documentation\":\"File: e:coh2_modsgenericscarlibsystemsoutpostoutpostreinforcementsmanager.scar, line 34\"},{\"id\":\"workspace_Team_GetRandomPlayer\",\"name\":\"Team_GetRandomPlayer\",\"filepath\":\"e:coh2_modsgenericscarlibteam.scar\",\"kind\":8,\"label\":\"Team_GetRandomPlayer\",\"detail\":\"Team_GetRandomPlayer(team)\",\"documentation\":\"File: e:coh2_modsgenericscarlibteam.scar, line 33\"},{\"id\":\"workspace_Team_GetRandomPlayers\",\"name\":\"Team_GetRandomPlayers\",\"filepath\":\"e:coh2_modsgenericscarlibteam.scar\",\"kind\":8,\"label\":\"Team_GetRandomPlayers\",\"detail\":\"Team_GetRandomPlayers(team, amount)\",\"documentation\":\"File: e:coh2_modsgenericscarlibteam.scar, line 37\"},{\"id\":\"workspace_Time_TicksToSeconds\",\"name\":\"Time_TicksToSeconds\",\"filepath\":\"e:coh2_modsgenericscarlibtime.scar\",\"kind\":8,\"label\":\"Time_TicksToSeconds\",\"detail\":\"Time_TicksToSeconds(ticks)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtime.scar, line 22\"},{\"id\":\"workspace_Time_SecondsToTicks\",\"name\":\"Time_SecondsToTicks\",\"filepath\":\"e:coh2_modsgenericscarlibtime.scar\",\"kind\":8,\"label\":\"Time_SecondsToTicks\",\"detail\":\"Time_SecondsToTicks(seconds)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtime.scar, line 26\"},{\"id\":\"workspace_Time_MinutesToTicks\",\"name\":\"Time_MinutesToTicks\",\"filepath\":\"e:coh2_modsgenericscarlibtime.scar\",\"kind\":8,\"label\":\"Time_MinutesToTicks\",\"detail\":\"Time_MinutesToTicks(minutes)\",\"documentation\":\"File: e:coh2_modsgenericscarlibtime.scar, line 30\"},{\"id\":\"workspace_UI_EnableSelectionVisuals\",\"name\":\"UI_EnableSelectionVisuals\",\"filepath\":\"e:coh2_modsgenericscarlibui.scar\",\"kind\":8,\"label\":\"UI_EnableSelectionVisuals\",\"detail\":\"UI_EnableSelectionVisuals(enable)\",\"documentation\":\"File: e:coh2_modsgenericscarlibui.scar, line 24\"},{\"id\":\"workspace_UI_EnableSquadSelectionVisuals\",\"name\":\"UI_EnableSquadSelectionVisuals\",\"filepath\":\"e:coh2_modsgenericscarlibui.scar\",\"kind\":8,\"label\":\"UI_EnableSquadSelectionVisuals\",\"detail\":\"UI_EnableSquadSelectionVisuals(squad, enabled)\",\"documentation\":\"File: e:coh2_modsgenericscarlibui.scar, line 39\"},{\"id\":\"workspace_SelectionVisual_Tick\",\"name\":\"SelectionVisual_Tick\",\"filepath\":\"e:coh2_modsgenericscarlibui.scar\",\"kind\":8,\"label\":\"SelectionVisual_Tick\",\"detail\":\"SelectionVisual_Tick()\",\"documentation\":\"File: e:coh2_modsgenericscarlibui.scar, line 45\"},{\"id\":\"workspace_SelectionVisual_RegisterEntity\",\"name\":\"SelectionVisual_RegisterEntity\",\"filepath\":\"e:coh2_modsgenericscarlibui.scar\",\"kind\":8,\"label\":\"SelectionVisual_RegisterEntity\",\"detail\":\"SelectionVisual_RegisterEntity(entity)\",\"documentation\":\"File: e:coh2_modsgenericscarlibui.scar, line 57\"},{\"id\":\"workspace_UI_ScalePoint\",\"name\":\"UI_ScalePoint\",\"filepath\":\"e:coh2_modsgenericscarlibui.scar\",\"kind\":8,\"label\":\"UI_ScalePoint\",\"detail\":\"UI_ScalePoint(point, baseResolution)\",\"documentation\":\"File: e:coh2_modsgenericscarlibui.scar, line 82\"},{\"id\":\"workspace_Util_DelaySeconds\",\"name\":\"Util_DelaySeconds\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Util_DelaySeconds\",\"detail\":\"Util_DelaySeconds(delay, task)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 50\"},{\"id\":\"workspace_Util_DelayMinutes\",\"name\":\"Util_DelayMinutes\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Util_DelayMinutes\",\"detail\":\"Util_DelayMinutes(delay, task)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 54\"},{\"id\":\"workspace_Util_DelayRandom\",\"name\":\"Util_DelayRandom\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Util_DelayRandom\",\"detail\":\"Util_DelayRandom(minDelay, maxDelay, task)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 58\"},{\"id\":\"workspace_Util_DelayRandomSeconds\",\"name\":\"Util_DelayRandomSeconds\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Util_DelayRandomSeconds\",\"detail\":\"Util_DelayRandomSeconds(minDelay, maxDelay, task)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 62\"},{\"id\":\"workspace_Util_GetRandomPosExtended\",\"name\":\"Util_GetRandomPosExtended\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Util_GetRandomPosExtended\",\"detail\":\"Util_GetRandomPosExtended(pos, minRange, maxRange)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 137\"},{\"id\":\"workspace_Util_GetRandomHeadingPos\",\"name\":\"Util_GetRandomHeadingPos\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Util_GetRandomHeadingPos\",\"detail\":\"Util_GetRandomHeadingPos(pos)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 144\"},{\"id\":\"workspace_UIFrame_Destroy\",\"name\":\"UIFrame_Destroy\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"UIFrame_Destroy\",\"detail\":\"UIFrame_Destroy(frame)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 185\"},{\"id\":\"workspace_Misc_Tester\",\"name\":\"Misc_Tester\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Misc_Tester\",\"detail\":\"Misc_Tester(f, v)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 213\"},{\"id\":\"workspace_Util_DistanceFromLine\",\"name\":\"Util_DistanceFromLine\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Util_DistanceFromLine\",\"detail\":\"Util_DistanceFromLine(vPoint, vBegin, vEnd)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 226\"},{\"id\":\"workspace_Util_DistancePointToTeamShortest\",\"name\":\"Util_DistancePointToTeamShortest\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Util_DistancePointToTeamShortest\",\"detail\":\"Util_DistancePointToTeamShortest(team, point)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 230\"},{\"id\":\"workspace_HintPoints_Remove\",\"name\":\"HintPoints_Remove\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"HintPoints_Remove\",\"detail\":\"HintPoints_Remove(hintpoints)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 257\"},{\"id\":\"workspace_MapIcon_CreateAndFacePosition\",\"name\":\"MapIcon_CreateAndFacePosition\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"MapIcon_CreateAndFacePosition\",\"detail\":\"MapIcon_CreateAndFacePosition(pos, icon, scale, red, green, blue, alpha, face_pos)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 265\"},{\"id\":\"workspace_toboolean\",\"name\":\"toboolean\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"toboolean\",\"detail\":\"toboolean(value)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 271\"},{\"id\":\"workspace_ResourceType_ToString\",\"name\":\"ResourceType_ToString\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"ResourceType_ToString\",\"detail\":\"ResourceType_ToString(resourceType)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 284\"},{\"id\":\"workspace_ResourceType_FromString\",\"name\":\"ResourceType_FromString\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"ResourceType_FromString\",\"detail\":\"ResourceType_FromString(str)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 300\"},{\"id\":\"workspace_ResourceType_ToDisplayString\",\"name\":\"ResourceType_ToDisplayString\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"ResourceType_ToDisplayString\",\"detail\":\"ResourceType_ToDisplayString(resourceType)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 306\"},{\"id\":\"workspace_Selection_GetPlayer\",\"name\":\"Selection_GetPlayer\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Selection_GetPlayer\",\"detail\":\"Selection_GetPlayer(useLocalIfNil)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 322\"},{\"id\":\"workspace_Objective_UpdateTitle\",\"name\":\"Objective_UpdateTitle\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Objective_UpdateTitle\",\"detail\":\"Objective_UpdateTitle(objTable, title, bShowTitle)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 353\"},{\"id\":\"workspace_Objective_StartLocally\",\"name\":\"Objective_StartLocally\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Objective_StartLocally\",\"detail\":\"Objective_StartLocally(objTable, players)\",\"documentation\":\"File: e:coh2_modsgenericscarlibutil.scar, line 357\"},{\"id\":\"workspace_Util_CallFunctionsWithParameters\",\"name\":\"Util_CallFunctionsWithParameters\",\"filepath\":\"e:coh2_modsgenericscarlibutil.scar\",\"kind\":8,\"label\":\"Util_CallFunctionsWithParameters\",\"detail\":\"Util_CallFunctionsWithParameters(functions, )\",\"documentation\":\" Lua 5.1, Lua 5.2 depricates arg and instead ... can be passed on, instead of unpack(arg) File: e:coh2_modsgenericscarlibutil.scar, line 370\"},{\"id\":\"workspace_World_ForEachEntity\",\"name\":\"World_ForEachEntity\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_ForEachEntity\",\"detail\":\"World_ForEachEntity(f)\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 44\"},{\"id\":\"workspace_World_DivideTerritoryBetweenTeams\",\"name\":\"World_DivideTerritoryBetweenTeams\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_DivideTerritoryBetweenTeams\",\"detail\":\"World_DivideTerritoryBetweenTeams()\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 67\"},{\"id\":\"workspace_World_GetWidthRange\",\"name\":\"World_GetWidthRange\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_GetWidthRange\",\"detail\":\"World_GetWidthRange()\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 158\"},{\"id\":\"workspace_World_GetLengthRange\",\"name\":\"World_GetLengthRange\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_GetLengthRange\",\"detail\":\"World_GetLengthRange()\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 162\"},{\"id\":\"workspace_World_RegisterPlayers\",\"name\":\"World_RegisterPlayers\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_RegisterPlayers\",\"detail\":\"World_RegisterPlayers()\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 166\"},{\"id\":\"workspace_World_GetEverythingNearPoint\",\"name\":\"World_GetEverythingNearPoint\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_GetEverythingNearPoint\",\"detail\":\"World_GetEverythingNearPoint(pos, radius)\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 173\"},{\"id\":\"workspace_World_GetAll\",\"name\":\"World_GetAll\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_GetAll\",\"detail\":\"World_GetAll(asTables)\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 204\"},{\"id\":\"workspace_World_GetAllSquads\",\"name\":\"World_GetAllSquads\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_GetAllSquads\",\"detail\":\"World_GetAllSquads(asTables)\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 228\"},{\"id\":\"workspace_World_ForEeachSquad\",\"name\":\"World_ForEeachSquad\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_ForEeachSquad\",\"detail\":\"World_ForEeachSquad(f)\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 247\"},{\"id\":\"workspace_World_OneOrMoreAIPlayerIsEnabled\",\"name\":\"World_OneOrMoreAIPlayerIsEnabled\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_OneOrMoreAIPlayerIsEnabled\",\"detail\":\"World_OneOrMoreAIPlayerIsEnabled()\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 255\"},{\"id\":\"workspace_World_OneOrMoreAIPlayerIsDisabled\",\"name\":\"World_OneOrMoreAIPlayerIsDisabled\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_OneOrMoreAIPlayerIsDisabled\",\"detail\":\"World_OneOrMoreAIPlayerIsDisabled()\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 266\"},{\"id\":\"workspace_World_CleanUpTheDeadAll\",\"name\":\"World_CleanUpTheDeadAll\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_CleanUpTheDeadAll\",\"detail\":\"World_CleanUpTheDeadAll()\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 277\"},{\"id\":\"workspace_World_GetAllTerritoryPointEntities\",\"name\":\"World_GetAllTerritoryPointEntities\",\"filepath\":\"e:coh2_modsgenericscarlibworld.scar\",\"kind\":8,\"label\":\"World_GetAllTerritoryPointEntities\",\"detail\":\"World_GetAllTerritoryPointEntities()\",\"documentation\":\"File: e:coh2_modsgenericscarlibworld.scar, line 283\"},{\"id\":\"workspace_Villagers_PreInit\",\"name\":\"Villagers_PreInit\",\"filepath\":\"e:coh2_modsvillagersscarcore.scar\",\"kind\":8,\"label\":\"Villagers_PreInit\",\"detail\":\"Villagers_PreInit()\",\"documentation\":\"File: e:coh2_modsvillagersscarcore.scar, line 7\"},{\"id\":\"workspace_WarDrive_Init\",\"name\":\"WarDrive_Init\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_Init\",\"detail\":\"WarDrive_Init()\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 2\"},{\"id\":\"workspace__getPlayerMineEBP\",\"name\":\"_getPlayerMineEBP\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"_getPlayerMineEBP\",\"detail\":\"_getPlayerMineEBP(player)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 91\"},{\"id\":\"workspace__spawnMines\",\"name\":\"_spawnMines\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"_spawnMines\",\"detail\":\"_spawnMines(pos)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 107\"},{\"id\":\"workspace_WarDrive_GetPlayerReconAbility\",\"name\":\"WarDrive_GetPlayerReconAbility\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_GetPlayerReconAbility\",\"detail\":\"WarDrive_GetPlayerReconAbility(player)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 953\"},{\"id\":\"workspace_WarDrive_ReconSweepBetweenTeams\",\"name\":\"WarDrive_ReconSweepBetweenTeams\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_ReconSweepBetweenTeams\",\"detail\":\"WarDrive_ReconSweepBetweenTeams()\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 968\"},{\"id\":\"workspace_WarDrive_GetNextEffectDelay\",\"name\":\"WarDrive_GetNextEffectDelay\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_GetNextEffectDelay\",\"detail\":\"WarDrive_GetNextEffectDelay(effect)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 983\"},{\"id\":\"workspace_WarDrive_PickRandomEffect\",\"name\":\"WarDrive_PickRandomEffect\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_PickRandomEffect\",\"detail\":\"WarDrive_PickRandomEffect()\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 992\"},{\"id\":\"workspace_WarDrive_SplitTimeUnits\",\"name\":\"WarDrive_SplitTimeUnits\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_SplitTimeUnits\",\"detail\":\"WarDrive_SplitTimeUnits(t)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1014\"},{\"id\":\"workspace_WarDrive_FormatTime\",\"name\":\"WarDrive_FormatTime\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_FormatTime\",\"detail\":\"WarDrive_FormatTime(t)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1020\"},{\"id\":\"workspace_WarDrive_Monitor\",\"name\":\"WarDrive_Monitor\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_Monitor\",\"detail\":\"WarDrive_Monitor()\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1030\"},{\"id\":\"workspace_Team_HasTerritoryPoint\",\"name\":\"Team_HasTerritoryPoint\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"Team_HasTerritoryPoint\",\"detail\":\"Team_HasTerritoryPoint(team, ebp)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1088\"},{\"id\":\"workspace_WarDrive_EntityKilled\",\"name\":\"WarDrive_EntityKilled\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_EntityKilled\",\"detail\":\"WarDrive_EntityKilled(entity, killerEntity)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1102\"},{\"id\":\"workspace_WarDrive_SquadKilled\",\"name\":\"WarDrive_SquadKilled\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_SquadKilled\",\"detail\":\"WarDrive_SquadKilled(squad)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1125\"},{\"id\":\"workspace_TestEffect\",\"name\":\"TestEffect\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"TestEffect\",\"detail\":\"TestEffect()\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1156\"},{\"id\":\"workspace_WarDrive_EnableEffect\",\"name\":\"WarDrive_EnableEffect\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_EnableEffect\",\"detail\":\"WarDrive_EnableEffect(effect, isOpeningEffect)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1160\"},{\"id\":\"workspace_WarDrive_RemoveModifiers\",\"name\":\"WarDrive_RemoveModifiers\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_RemoveModifiers\",\"detail\":\"WarDrive_RemoveModifiers()\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1199\"},{\"id\":\"workspace_WarDrive_GetIcon\",\"name\":\"WarDrive_GetIcon\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_GetIcon\",\"detail\":\"WarDrive_GetIcon(icon)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1204\"},{\"id\":\"workspace_WarDrive_RegisterModifier\",\"name\":\"WarDrive_RegisterModifier\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_RegisterModifier\",\"detail\":\"WarDrive_RegisterModifier(modifier)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1208\"},{\"id\":\"workspace_Modify_SquadBuildTime\",\"name\":\"Modify_SquadBuildTime\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"Modify_SquadBuildTime\",\"detail\":\"Modify_SquadBuildTime(playerid, blueprint, multiplier)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1212\"},{\"id\":\"workspace_Modify_SquadReinforceTime\",\"name\":\"Modify_SquadReinforceTime\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"Modify_SquadReinforceTime\",\"detail\":\"Modify_SquadReinforceTime(playerid, blueprint, multiplier)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1218\"},{\"id\":\"workspace_Modify_EntityCaptureTime\",\"name\":\"Modify_EntityCaptureTime\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"Modify_EntityCaptureTime\",\"detail\":\"Modify_EntityCaptureTime(entity, factor)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1224\"},{\"id\":\"workspace_WarDrive_ObjectiveInit\",\"name\":\"WarDrive_ObjectiveInit\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_ObjectiveInit\",\"detail\":\"WarDrive_ObjectiveInit()\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1229\"},{\"id\":\"workspace_WarDrive_ObjectiveAfterInt\",\"name\":\"WarDrive_ObjectiveAfterInt\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_ObjectiveAfterInt\",\"detail\":\"WarDrive_ObjectiveAfterInt()\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1247\"},{\"id\":\"workspace_WarDrive_Pager\",\"name\":\"WarDrive_Pager\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_Pager\",\"detail\":\"WarDrive_Pager(caster, target)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1266\"},{\"id\":\"workspace_WarDrive_AbilityExecuted\",\"name\":\"WarDrive_AbilityExecuted\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_AbilityExecuted\",\"detail\":\"WarDrive_AbilityExecuted(caster, ability, target)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1316\"},{\"id\":\"workspace_WarDrive_GetAbilityBlueprint\",\"name\":\"WarDrive_GetAbilityBlueprint\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_core.scar\",\"kind\":8,\"label\":\"WarDrive_GetAbilityBlueprint\",\"detail\":\"WarDrive_GetAbilityBlueprint(blueprint)\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_core.scar, line 1333\"},{\"id\":\"workspace_WarDrive_PreInit\",\"name\":\"WarDrive_PreInit\",\"filepath\":\"e:coh2_modswar_drivescarwar_drive_init.scar\",\"kind\":8,\"label\":\"WarDrive_PreInit\",\"detail\":\"WarDrive_PreInit()\",\"documentation\":\"File: e:coh2_modswar_drivescarwar_drive_init.scar, line 10\"},{\"id\":\"workspace_CCM_AddInfiniteResourcesPopcap\",\"name\":\"CCM_AddInfiniteResourcesPopcap\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_AddInfiniteResourcesPopcap\",\"detail\":\"CCM_AddInfiniteResourcesPopcap(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 3\"},{\"id\":\"workspace_CCM_ActionKillSelection\",\"name\":\"CCM_ActionKillSelection\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionKillSelection\",\"detail\":\"CCM_ActionKillSelection(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 16\"},{\"id\":\"workspace_CCM_ActionDeleteSelection\",\"name\":\"CCM_ActionDeleteSelection\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionDeleteSelection\",\"detail\":\"CCM_ActionDeleteSelection(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 23\"},{\"id\":\"workspace_CCM_ActionTeleportSelection\",\"name\":\"CCM_ActionTeleportSelection\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionTeleportSelection\",\"detail\":\"CCM_ActionTeleportSelection(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 31\"},{\"id\":\"workspace_CCM_ActionIncreaseSelectionVeterancy\",\"name\":\"CCM_ActionIncreaseSelectionVeterancy\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionIncreaseSelectionVeterancy\",\"detail\":\"CCM_ActionIncreaseSelectionVeterancy(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 92\"},{\"id\":\"workspace_CCM_ActionIncreaseSelectionHealth\",\"name\":\"CCM_ActionIncreaseSelectionHealth\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionIncreaseSelectionHealth\",\"detail\":\"CCM_ActionIncreaseSelectionHealth(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 101\"},{\"id\":\"workspace_CCM_ActionDecreaseSelectionHealth\",\"name\":\"CCM_ActionDecreaseSelectionHealth\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionDecreaseSelectionHealth\",\"detail\":\"CCM_ActionDecreaseSelectionHealth(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 105\"},{\"id\":\"workspace_CCM_ModifySelectionHealth\",\"name\":\"CCM_ModifySelectionHealth\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ModifySelectionHealth\",\"detail\":\"CCM_ModifySelectionHealth(caster, target, amount)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 109\"},{\"id\":\"workspace_CCM_ActionAbandonSelected\",\"name\":\"CCM_ActionAbandonSelected\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionAbandonSelected\",\"detail\":\"CCM_ActionAbandonSelected(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 151\"},{\"id\":\"workspace_CCM_ActionRemoveCriticals\",\"name\":\"CCM_ActionRemoveCriticals\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionRemoveCriticals\",\"detail\":\"CCM_ActionRemoveCriticals(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 169\"},{\"id\":\"workspace_CCM_ActionDropSlotItems\",\"name\":\"CCM_ActionDropSlotItems\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionDropSlotItems\",\"detail\":\"CCM_ActionDropSlotItems(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 186\"},{\"id\":\"workspace_CCM_ActionInstantReinforce\",\"name\":\"CCM_ActionInstantReinforce\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionInstantReinforce\",\"detail\":\"CCM_ActionInstantReinforce(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 214\"},{\"id\":\"workspace_CCM_ActionAddPreciseManpower\",\"name\":\"CCM_ActionAddPreciseManpower\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionAddPreciseManpower\",\"detail\":\"CCM_ActionAddPreciseManpower(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 230\"},{\"id\":\"workspace_CCM_ActionAddPreciseFuel\",\"name\":\"CCM_ActionAddPreciseFuel\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionAddPreciseFuel\",\"detail\":\"CCM_ActionAddPreciseFuel(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 235\"},{\"id\":\"workspace_CCM_ActionAddPreciseMunition\",\"name\":\"CCM_ActionAddPreciseMunition\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionAddPreciseMunition\",\"detail\":\"CCM_ActionAddPreciseMunition(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 240\"},{\"id\":\"workspace__CCM_SpawnSpawnerSquad\",\"name\":\"_CCM_SpawnSpawnerSquad\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"_CCM_SpawnSpawnerSquad\",\"detail\":\"_CCM_SpawnSpawnerSquad(caster, target, sbp)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 246\"},{\"id\":\"workspace_CCM_ActionSpawnSovietSpawner\",\"name\":\"CCM_ActionSpawnSovietSpawner\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionSpawnSovietSpawner\",\"detail\":\"CCM_ActionSpawnSovietSpawner(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 255\"},{\"id\":\"workspace_CCM_ActionSpawnAEFSpawner\",\"name\":\"CCM_ActionSpawnAEFSpawner\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionSpawnAEFSpawner\",\"detail\":\"CCM_ActionSpawnAEFSpawner(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 258\"},{\"id\":\"workspace_CCM_ActionSpawnGermanSpawner\",\"name\":\"CCM_ActionSpawnGermanSpawner\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionSpawnGermanSpawner\",\"detail\":\"CCM_ActionSpawnGermanSpawner(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 261\"},{\"id\":\"workspace_CCM_ActionSpawnWestGermanSpawner\",\"name\":\"CCM_ActionSpawnWestGermanSpawner\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionSpawnWestGermanSpawner\",\"detail\":\"CCM_ActionSpawnWestGermanSpawner(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 264\"},{\"id\":\"workspace_CCM_ActionAddFullHealth\",\"name\":\"CCM_ActionAddFullHealth\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionAddFullHealth\",\"detail\":\"CCM_ActionAddFullHealth(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 268\"},{\"id\":\"workspace_CCM_ActionKillOneEntity\",\"name\":\"CCM_ActionKillOneEntity\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionKillOneEntity\",\"detail\":\"CCM_ActionKillOneEntity(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 272\"},{\"id\":\"workspace_CCM_ActionDeleteOneEntity\",\"name\":\"CCM_ActionDeleteOneEntity\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionDeleteOneEntity\",\"detail\":\"CCM_ActionDeleteOneEntity(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 279\"},{\"id\":\"workspace_CCM_ActionSpawnGermanMiscSpawner\",\"name\":\"CCM_ActionSpawnGermanMiscSpawner\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionSpawnGermanMiscSpawner\",\"detail\":\"CCM_ActionSpawnGermanMiscSpawner(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 286\"},{\"id\":\"workspace_CCM_ActionSpawnSovietMiscSpawner\",\"name\":\"CCM_ActionSpawnSovietMiscSpawner\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionSpawnSovietMiscSpawner\",\"detail\":\"CCM_ActionSpawnSovietMiscSpawner(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 289\"},{\"id\":\"workspace_CCM_ActionSpawnWestGermanMiscSpawner\",\"name\":\"CCM_ActionSpawnWestGermanMiscSpawner\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionSpawnWestGermanMiscSpawner\",\"detail\":\"CCM_ActionSpawnWestGermanMiscSpawner(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 292\"},{\"id\":\"workspace_CCM_ActionSpawnAEFMiscSpawner\",\"name\":\"CCM_ActionSpawnAEFMiscSpawner\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_action.scar\",\"kind\":8,\"label\":\"CCM_ActionSpawnAEFMiscSpawner\",\"detail\":\"CCM_ActionSpawnAEFMiscSpawner(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_action.scar, line 295\"},{\"id\":\"workspace_CCM_DataInit\",\"name\":\"CCM_DataInit\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_data.scar\",\"kind\":8,\"label\":\"CCM_DataInit\",\"detail\":\"CCM_DataInit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_data.scar, line 1\"},{\"id\":\"workspace_CCM_CopySelection\",\"name\":\"CCM_CopySelection\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_clipboard.scar\",\"kind\":8,\"label\":\"CCM_CopySelection\",\"detail\":\"CCM_CopySelection(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_clipboard.scar, line 4\"},{\"id\":\"workspace_CCM_PasteSelection\",\"name\":\"CCM_PasteSelection\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_clipboard.scar\",\"kind\":8,\"label\":\"CCM_PasteSelection\",\"detail\":\"CCM_PasteSelection(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_clipboard.scar, line 55\"},{\"id\":\"workspace_Clipboard_Clear\",\"name\":\"Clipboard_Clear\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_clipboard.scar\",\"kind\":8,\"label\":\"Clipboard_Clear\",\"detail\":\"Clipboard_Clear(caster)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_clipboard.scar, line 123\"},{\"id\":\"workspace_CCM_PreInit\",\"name\":\"CCM_PreInit\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"CCM_PreInit\",\"detail\":\"CCM_PreInit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 10\"},{\"id\":\"workspace_CCM_SystemInit\",\"name\":\"CCM_SystemInit\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"CCM_SystemInit\",\"detail\":\"CCM_SystemInit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 21\"},{\"id\":\"workspace_CCM_PlayerResetAbilities\",\"name\":\"CCM_PlayerResetAbilities\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"CCM_PlayerResetAbilities\",\"detail\":\"CCM_PlayerResetAbilities(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 87\"},{\"id\":\"workspace_Player_GetSettingsKey\",\"name\":\"Player_GetSettingsKey\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"Player_GetSettingsKey\",\"detail\":\"Player_GetSettingsKey(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 103\"},{\"id\":\"workspace_CCM_PlayerAbilityCompleteListener\",\"name\":\"CCM_PlayerAbilityCompleteListener\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"CCM_PlayerAbilityCompleteListener\",\"detail\":\"CCM_PlayerAbilityCompleteListener(caster, ability, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 114\"},{\"id\":\"workspace_CCM_PlayerAbilityListener\",\"name\":\"CCM_PlayerAbilityListener\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"CCM_PlayerAbilityListener\",\"detail\":\"CCM_PlayerAbilityListener(caster, ability, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 119\"},{\"id\":\"workspace_CCM_RegisterPlayerAction\",\"name\":\"CCM_RegisterPlayerAction\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"CCM_RegisterPlayerAction\",\"detail\":\"CCM_RegisterPlayerAction(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 173\"},{\"id\":\"workspace_Squad_GetSpawnerRaceIndex\",\"name\":\"Squad_GetSpawnerRaceIndex\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"Squad_GetSpawnerRaceIndex\",\"detail\":\"Squad_GetSpawnerRaceIndex(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 178\"},{\"id\":\"workspace_Squad_GetSpawnerTable\",\"name\":\"Squad_GetSpawnerTable\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"Squad_GetSpawnerTable\",\"detail\":\"Squad_GetSpawnerTable(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 199\"},{\"id\":\"workspace_Squad_GetSpawnAbilityPrefix\",\"name\":\"Squad_GetSpawnAbilityPrefix\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"Squad_GetSpawnAbilityPrefix\",\"detail\":\"Squad_GetSpawnAbilityPrefix(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 220\"},{\"id\":\"workspace_CCM_SquadAbilityListener\",\"name\":\"CCM_SquadAbilityListener\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"CCM_SquadAbilityListener\",\"detail\":\"CCM_SquadAbilityListener(caster, ability, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 241\"},{\"id\":\"workspace_CCM_CountSpawnTableItems\",\"name\":\"CCM_CountSpawnTableItems\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"CCM_CountSpawnTableItems\",\"detail\":\"CCM_CountSpawnTableItems(t)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 325\"},{\"id\":\"workspace__CCM_InitSpawnerSquad\",\"name\":\"_CCM_InitSpawnerSquad\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"_CCM_InitSpawnerSquad\",\"detail\":\"_CCM_InitSpawnerSquad(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 337\"},{\"id\":\"workspace_CCM_AutoHideAbilities\",\"name\":\"CCM_AutoHideAbilities\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_core.scar\",\"kind\":8,\"label\":\"CCM_AutoHideAbilities\",\"detail\":\"CCM_AutoHideAbilities()\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_core.scar, line 343\"},{\"id\":\"workspace_Entity_CreateAndSpawnTowardTeamWeapon\",\"name\":\"Entity_CreateAndSpawnTowardTeamWeapon\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_entity.scar\",\"kind\":8,\"label\":\"Entity_CreateAndSpawnTowardTeamWeapon\",\"detail\":\"Entity_CreateAndSpawnTowardTeamWeapon(ebp, player, pos, toward)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_entity.scar, line 23\"},{\"id\":\"workspace_Entity_GetUpgradeTable\",\"name\":\"Entity_GetUpgradeTable\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_entity.scar\",\"kind\":8,\"label\":\"Entity_GetUpgradeTable\",\"detail\":\"Entity_GetUpgradeTable(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_entity.scar, line 28\"},{\"id\":\"workspace_Entity_ApplyCriticalHit\",\"name\":\"Entity_ApplyCriticalHit\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_entity.scar\",\"kind\":8,\"label\":\"Entity_ApplyCriticalHit\",\"detail\":\"Entity_ApplyCriticalHit(entity, criticals)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_entity.scar, line 41\"},{\"id\":\"workspace_Entity_GetText\",\"name\":\"Entity_GetText\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_entity.scar\",\"kind\":8,\"label\":\"Entity_GetText\",\"detail\":\"Entity_GetText(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_entity.scar, line 67\"},{\"id\":\"workspace_Entity_Abandon\",\"name\":\"Entity_Abandon\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_entity.scar\",\"kind\":8,\"label\":\"Entity_Abandon\",\"detail\":\"Entity_Abandon(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_entity.scar, line 78\"},{\"id\":\"workspace_EntityBP_IsBuilding\",\"name\":\"EntityBP_IsBuilding\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_entity.scar\",\"kind\":8,\"label\":\"EntityBP_IsBuilding\",\"detail\":\"EntityBP_IsBuilding(ebp)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_entity.scar, line 83\"},{\"id\":\"workspace_Util_Destroy\",\"name\":\"Util_Destroy\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Util_Destroy\",\"detail\":\"Util_Destroy(var)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 4\"},{\"id\":\"workspace_Util_GetBPName\",\"name\":\"Util_GetBPName\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Util_GetBPName\",\"detail\":\"Util_GetBPName(var)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 30\"},{\"id\":\"workspace_Misc_CheckForParentSquad\",\"name\":\"Misc_CheckForParentSquad\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Misc_CheckForParentSquad\",\"detail\":\"Misc_CheckForParentSquad(target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 33\"},{\"id\":\"workspace_Squad_GetTableKey\",\"name\":\"Squad_GetTableKey\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Squad_GetTableKey\",\"detail\":\"Squad_GetTableKey(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 46\"},{\"id\":\"workspace_Entity_GetTableKey\",\"name\":\"Entity_GetTableKey\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Entity_GetTableKey\",\"detail\":\"Entity_GetTableKey(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 50\"},{\"id\":\"workspace_Util_GetTablekey\",\"name\":\"Util_GetTablekey\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Util_GetTablekey\",\"detail\":\"Util_GetTablekey(var)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 54\"},{\"id\":\"workspace_Util_SetInvulnerable\",\"name\":\"Util_SetInvulnerable\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Util_SetInvulnerable\",\"detail\":\"Util_SetInvulnerable(target, enable)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 62\"},{\"id\":\"workspace_Player_GetIDSafe\",\"name\":\"Player_GetIDSafe\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Player_GetIDSafe\",\"detail\":\"Player_GetIDSafe(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 70\"},{\"id\":\"workspace_Table_ForEach\",\"name\":\"Table_ForEach\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Table_ForEach\",\"detail\":\"Table_ForEach(t, _mode, f)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 86\"},{\"id\":\"workspace_CCM_Msg\",\"name\":\"CCM_Msg\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"CCM_Msg\",\"detail\":\"CCM_Msg(text)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 93\"},{\"id\":\"workspace_CCM_ClearMSG\",\"name\":\"CCM_ClearMSG\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"CCM_ClearMSG\",\"detail\":\"CCM_ClearMSG()\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 109\"},{\"id\":\"workspace_CCM_GetAbilityBleprint\",\"name\":\"CCM_GetAbilityBleprint\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"CCM_GetAbilityBleprint\",\"detail\":\"CCM_GetAbilityBleprint(blueprint)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 113\"},{\"id\":\"workspace_CCM_GetSquadBlueprint\",\"name\":\"CCM_GetSquadBlueprint\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"CCM_GetSquadBlueprint\",\"detail\":\"CCM_GetSquadBlueprint(blueprint)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 117\"},{\"id\":\"workspace_CCM_GetEntityBlueprint\",\"name\":\"CCM_GetEntityBlueprint\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"CCM_GetEntityBlueprint\",\"detail\":\"CCM_GetEntityBlueprint(blueprint)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 121\"},{\"id\":\"workspace_CCM_GetUpgradeBlueprint\",\"name\":\"CCM_GetUpgradeBlueprint\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"CCM_GetUpgradeBlueprint\",\"detail\":\"CCM_GetUpgradeBlueprint(blueprint)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 124\"},{\"id\":\"workspace_CCM_GetIcon\",\"name\":\"CCM_GetIcon\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"CCM_GetIcon\",\"detail\":\"CCM_GetIcon(icon)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 128\"},{\"id\":\"workspace_CCM_EventCue\",\"name\":\"CCM_EventCue\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"CCM_EventCue\",\"detail\":\"CCM_EventCue(msg)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 132\"},{\"id\":\"workspace_Misc_AddSpawnedItemToSystem\",\"name\":\"Misc_AddSpawnedItemToSystem\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Misc_AddSpawnedItemToSystem\",\"detail\":\"Misc_AddSpawnedItemToSystem(item, caster)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 145\"},{\"id\":\"workspace_Util_AddHealth\",\"name\":\"Util_AddHealth\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Util_AddHealth\",\"detail\":\"Util_AddHealth(item, addition_percentage)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 158\"},{\"id\":\"workspace_Misc_DoPercentageSum\",\"name\":\"Misc_DoPercentageSum\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Misc_DoPercentageSum\",\"detail\":\"Misc_DoPercentageSum(value1, value2)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 170\"},{\"id\":\"workspace_Util_SetPosition\",\"name\":\"Util_SetPosition\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Util_SetPosition\",\"detail\":\"Util_SetPosition(item, pos)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 180\"},{\"id\":\"workspace_Util_GetGameID\",\"name\":\"Util_GetGameID\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Util_GetGameID\",\"detail\":\"Util_GetGameID(item)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 198\"},{\"id\":\"workspace_Util_DecodeGameID\",\"name\":\"Util_DecodeGameID\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Util_DecodeGameID\",\"detail\":\"Util_DecodeGameID(id)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 206\"},{\"id\":\"workspace_Misc_SpawnSlotItemOnGround\",\"name\":\"Misc_SpawnSlotItemOnGround\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_extensions.scar\",\"kind\":8,\"label\":\"Misc_SpawnSlotItemOnGround\",\"detail\":\"Misc_SpawnSlotItemOnGround(item, pos)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_extensions.scar, line 216\"},{\"id\":\"workspace_Squad_ModifySpeed\",\"name\":\"Squad_ModifySpeed\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_ModifySpeed\",\"detail\":\"Squad_ModifySpeed(squad, addition)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 1\"},{\"id\":\"workspace_Squad_GetHealthTable\",\"name\":\"Squad_GetHealthTable\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_GetHealthTable\",\"detail\":\"Squad_GetHealthTable(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 62\"},{\"id\":\"workspace_Squad_ApplyHealthTable\",\"name\":\"Squad_ApplyHealthTable\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_ApplyHealthTable\",\"detail\":\"Squad_ApplyHealthTable(squad, health)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 70\"},{\"id\":\"workspace_Squad_GetPlayerOwnerSafe\",\"name\":\"Squad_GetPlayerOwnerSafe\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_GetPlayerOwnerSafe\",\"detail\":\"Squad_GetPlayerOwnerSafe(squad, safe)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 81\"},{\"id\":\"workspace_Squad_GetHeadingTable\",\"name\":\"Squad_GetHeadingTable\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_GetHeadingTable\",\"detail\":\"Squad_GetHeadingTable(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 93\"},{\"id\":\"workspace_Squad_ApplyHeadingTable\",\"name\":\"Squad_ApplyHeadingTable\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_ApplyHeadingTable\",\"detail\":\"Squad_ApplyHeadingTable(squad, headings)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 101\"},{\"id\":\"workspace_Squad_GetUpgradesTable\",\"name\":\"Squad_GetUpgradesTable\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_GetUpgradesTable\",\"detail\":\"Squad_GetUpgradesTable(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 107\"},{\"id\":\"workspace_Squad_GetText\",\"name\":\"Squad_GetText\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_GetText\",\"detail\":\"Squad_GetText(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 120\"},{\"id\":\"workspace_Squad_GetCriticalsTable\",\"name\":\"Squad_GetCriticalsTable\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_GetCriticalsTable\",\"detail\":\"Squad_GetCriticalsTable(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 137\"},{\"id\":\"workspace_Squad_ApplyCriticalHitTable\",\"name\":\"Squad_ApplyCriticalHitTable\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_ApplyCriticalHitTable\",\"detail\":\"Squad_ApplyCriticalHitTable(squad, criticals)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 149\"},{\"id\":\"workspace_Squad_ModifyDamage\",\"name\":\"Squad_ModifyDamage\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_ModifyDamage\",\"detail\":\"Squad_ModifyDamage(squad, addition)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 161\"},{\"id\":\"workspace_Squad_DropSlotItems\",\"name\":\"Squad_DropSlotItems\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_DropSlotItems\",\"detail\":\"Squad_DropSlotItems(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 198\"},{\"id\":\"workspace_Squad_RemoveUpgrades\",\"name\":\"Squad_RemoveUpgrades\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_RemoveUpgrades\",\"detail\":\"Squad_RemoveUpgrades(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 209\"},{\"id\":\"workspace_Squad_RemoveCritical\",\"name\":\"Squad_RemoveCritical\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_RemoveCritical\",\"detail\":\"Squad_RemoveCritical(squad, critical)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 219\"},{\"id\":\"workspace_Squad_HasCritical\",\"name\":\"Squad_HasCritical\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_HasCritical\",\"detail\":\"Squad_HasCritical(squad, critical)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 227\"},{\"id\":\"workspace_Squad_GetEntityPositionList\",\"name\":\"Squad_GetEntityPositionList\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_GetEntityPositionList\",\"detail\":\"Squad_GetEntityPositionList(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 238\"},{\"id\":\"workspace_Squad_ApplyEntityPositionList\",\"name\":\"Squad_ApplyEntityPositionList\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_ApplyEntityPositionList\",\"detail\":\"Squad_ApplyEntityPositionList(squad, list)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 248\"},{\"id\":\"workspace_Squad_SetHealthPercentage\",\"name\":\"Squad_SetHealthPercentage\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_SetHealthPercentage\",\"detail\":\"Squad_SetHealthPercentage(squad, percentage)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 257\"},{\"id\":\"workspace_Squad_IsVehicle\",\"name\":\"Squad_IsVehicle\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_squad.scar\",\"kind\":8,\"label\":\"Squad_IsVehicle\",\"detail\":\"Squad_IsVehicle(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_squad.scar, line 263\"},{\"id\":\"workspace_CCM_ToggleInstantProduction\",\"name\":\"CCM_ToggleInstantProduction\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"CCM_ToggleInstantProduction\",\"detail\":\"CCM_ToggleInstantProduction(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 5\"},{\"id\":\"workspace_CCM_ToggleFOW\",\"name\":\"CCM_ToggleFOW\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"CCM_ToggleFOW\",\"detail\":\"CCM_ToggleFOW(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 43\"},{\"id\":\"workspace_CCM_ToggleGlobalAI\",\"name\":\"CCM_ToggleGlobalAI\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"CCM_ToggleGlobalAI\",\"detail\":\"CCM_ToggleGlobalAI(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 54\"},{\"id\":\"workspace_CCM_ToggleSelectionInvulnerability\",\"name\":\"CCM_ToggleSelectionInvulnerability\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"CCM_ToggleSelectionInvulnerability\",\"detail\":\"CCM_ToggleSelectionInvulnerability(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 66\"},{\"id\":\"workspace_CCM_ToggleSelectionOwner\",\"name\":\"CCM_ToggleSelectionOwner\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"CCM_ToggleSelectionOwner\",\"detail\":\"CCM_ToggleSelectionOwner(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 83\"},{\"id\":\"workspace_CCM_ToggleDisableWeapons\",\"name\":\"CCM_ToggleDisableWeapons\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"CCM_ToggleDisableWeapons\",\"detail\":\"CCM_ToggleDisableWeapons(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 138\"},{\"id\":\"workspace_CCM_ToggleEngineOrPostureState\",\"name\":\"CCM_ToggleEngineOrPostureState\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"CCM_ToggleEngineOrPostureState\",\"detail\":\"CCM_ToggleEngineOrPostureState(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 162\"},{\"id\":\"workspace_CCM_ToggleHealthMonitor\",\"name\":\"CCM_ToggleHealthMonitor\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"CCM_ToggleHealthMonitor\",\"detail\":\"CCM_ToggleHealthMonitor(caster, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 238\"},{\"id\":\"workspace_CCM_GetSquadKey\",\"name\":\"CCM_GetSquadKey\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"CCM_GetSquadKey\",\"detail\":\"CCM_GetSquadKey(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 245\"},{\"id\":\"workspace_CCM_GetEntityKey\",\"name\":\"CCM_GetEntityKey\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"CCM_GetEntityKey\",\"detail\":\"CCM_GetEntityKey(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 249\"},{\"id\":\"workspace_CCM_HealthMonitor\",\"name\":\"CCM_HealthMonitor\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"CCM_HealthMonitor\",\"detail\":\"CCM_HealthMonitor()\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 253\"},{\"id\":\"workspace__CCM_HealthMonitor_HandleHealth\",\"name\":\"_CCM_HealthMonitor_HandleHealth\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"_CCM_HealthMonitor_HandleHealth\",\"detail\":\"_CCM_HealthMonitor_HandleHealth(currentHealth, unit, pos)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 300\"},{\"id\":\"workspace__CCM_HealthMonitor_KickerMessage\",\"name\":\"_CCM_HealthMonitor_KickerMessage\",\"filepath\":\"e:coh2_mods_from_old_hddccmscarccm_toggle.scar\",\"kind\":8,\"label\":\"_CCM_HealthMonitor_KickerMessage\",\"detail\":\"_CCM_HealthMonitor_KickerMessage(pos, text, color)\",\"documentation\":\"File: e:coh2_mods_from_old_hddccmscarccm_toggle.scar, line 310\"},{\"id\":\"workspace_CTF_PreInit\",\"name\":\"CTF_PreInit\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_PreInit\",\"detail\":\"CTF_PreInit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 5\"},{\"id\":\"workspace_CTFSystem_Init\",\"name\":\"CTFSystem_Init\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTFSystem_Init\",\"detail\":\"CTFSystem_Init()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 13\"},{\"id\":\"workspace_CTF_GetRandomFlagSpawnPosition\",\"name\":\"CTF_GetRandomFlagSpawnPosition\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_GetRandomFlagSpawnPosition\",\"detail\":\"CTF_GetRandomFlagSpawnPosition()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 56\"},{\"id\":\"workspace_CTF_FreeFlagSpawnPosition\",\"name\":\"CTF_FreeFlagSpawnPosition\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_FreeFlagSpawnPosition\",\"detail\":\"CTF_FreeFlagSpawnPosition(pos)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 70\"},{\"id\":\"workspace_CTFSystem_InitDelayed\",\"name\":\"CTFSystem_InitDelayed\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTFSystem_InitDelayed\",\"detail\":\"CTFSystem_InitDelayed()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 80\"},{\"id\":\"workspace_CTF_StartCore\",\"name\":\"CTF_StartCore\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_StartCore\",\"detail\":\"CTF_StartCore()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 202\"},{\"id\":\"workspace_CTF_GetWinScoreLimit\",\"name\":\"CTF_GetWinScoreLimit\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_GetWinScoreLimit\",\"detail\":\"CTF_GetWinScoreLimit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 213\"},{\"id\":\"workspace_CTF_FlagScoreMonitor\",\"name\":\"CTF_FlagScoreMonitor\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_FlagScoreMonitor\",\"detail\":\"CTF_FlagScoreMonitor()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 247\"},{\"id\":\"workspace_CTF_BlinkFlagCarriers\",\"name\":\"CTF_BlinkFlagCarriers\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_BlinkFlagCarriers\",\"detail\":\"CTF_BlinkFlagCarriers()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 257\"},{\"id\":\"workspace_CTF_FlagRespawnMonitor\",\"name\":\"CTF_FlagRespawnMonitor\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_FlagRespawnMonitor\",\"detail\":\"CTF_FlagRespawnMonitor()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 277\"},{\"id\":\"workspace_CTF_FlagStateMonitor\",\"name\":\"CTF_FlagStateMonitor\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_FlagStateMonitor\",\"detail\":\"CTF_FlagStateMonitor()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 350\"},{\"id\":\"workspace_CTF_EnableResources\",\"name\":\"CTF_EnableResources\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_EnableResources\",\"detail\":\"CTF_EnableResources(enable)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 395\"},{\"id\":\"workspace_CTF_UpdateObjectiveUI\",\"name\":\"CTF_UpdateObjectiveUI\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_UpdateObjectiveUI\",\"detail\":\"CTF_UpdateObjectiveUI(flag)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 415\"},{\"id\":\"workspace_CTF_FixFlagColor\",\"name\":\"CTF_FixFlagColor\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_FixFlagColor\",\"detail\":\"CTF_FixFlagColor()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 420\"},{\"id\":\"workspace_CTF_FixFlagColorDelayed\",\"name\":\"CTF_FixFlagColorDelayed\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_FixFlagColorDelayed\",\"detail\":\"CTF_FixFlagColorDelayed()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 430\"},{\"id\":\"workspace_CTF_StopAlarm\",\"name\":\"CTF_StopAlarm\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_StopAlarm\",\"detail\":\"CTF_StopAlarm()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 437\"},{\"id\":\"workspace_CTF_FlagCarrierAbilityExecuted\",\"name\":\"CTF_FlagCarrierAbilityExecuted\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_FlagCarrierAbilityExecuted\",\"detail\":\"CTF_FlagCarrierAbilityExecuted(caster, ability, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 442\"},{\"id\":\"workspace_CTF_DropFlagRequestManager\",\"name\":\"CTF_DropFlagRequestManager\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_DropFlagRequestManager\",\"detail\":\"CTF_DropFlagRequestManager()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 459\"},{\"id\":\"workspace_CTF_PreventFlagCarrierReCrewAndVehicleGarrisoning\",\"name\":\"CTF_PreventFlagCarrierReCrewAndVehicleGarrisoning\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_PreventFlagCarrierReCrewAndVehicleGarrisoning\",\"detail\":\"CTF_PreventFlagCarrierReCrewAndVehicleGarrisoning()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 473\"},{\"id\":\"workspace_CTF_FlagCaptured\",\"name\":\"CTF_FlagCaptured\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_FlagCaptured\",\"detail\":\"CTF_FlagCaptured(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 575\"},{\"id\":\"workspace_CTF_FlagDropped\",\"name\":\"CTF_FlagDropped\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_FlagDropped\",\"detail\":\"CTF_FlagDropped(squad, reset)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 590\"},{\"id\":\"workspace_CTF_FlagScored\",\"name\":\"CTF_FlagScored\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_FlagScored\",\"detail\":\"CTF_FlagScored(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 604\"},{\"id\":\"workspace_CTF_GetOpposingTeam\",\"name\":\"CTF_GetOpposingTeam\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_GetOpposingTeam\",\"detail\":\"CTF_GetOpposingTeam(team)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 640\"},{\"id\":\"workspace_CTF_TeamFlagScore\",\"name\":\"CTF_TeamFlagScore\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_TeamFlagScore\",\"detail\":\"CTF_TeamFlagScore(team)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 647\"},{\"id\":\"workspace_CTF_ObjctiveInit\",\"name\":\"CTF_ObjctiveInit\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_ObjctiveInit\",\"detail\":\"CTF_ObjctiveInit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 655\"},{\"id\":\"workspace_CTF_AddObjectiveUI\",\"name\":\"CTF_AddObjectiveUI\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_AddObjectiveUI\",\"detail\":\"CTF_AddObjectiveUI(flag)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 711\"},{\"id\":\"workspace_Entity_IsReCrewable\",\"name\":\"Entity_IsReCrewable\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Entity_IsReCrewable\",\"detail\":\"Entity_IsReCrewable(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 728\"},{\"id\":\"workspace_Squad_AddFlagCarrierEffects\",\"name\":\"Squad_AddFlagCarrierEffects\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_AddFlagCarrierEffects\",\"detail\":\"Squad_AddFlagCarrierEffects(squad, flag)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 735\"},{\"id\":\"workspace_Squad_RemoveFlagCarrierEffects\",\"name\":\"Squad_RemoveFlagCarrierEffects\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_RemoveFlagCarrierEffects\",\"detail\":\"Squad_RemoveFlagCarrierEffects(squad, flag)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 760\"},{\"id\":\"workspace_Squad_SetCaptureEnabled\",\"name\":\"Squad_SetCaptureEnabled\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_SetCaptureEnabled\",\"detail\":\"Squad_SetCaptureEnabled(squad, enabled)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 774\"},{\"id\":\"workspace_Squad_EnableFlagCarrierUI\",\"name\":\"Squad_EnableFlagCarrierUI\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_EnableFlagCarrierUI\",\"detail\":\"Squad_EnableFlagCarrierUI(squad, flag)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 781\"},{\"id\":\"workspace_Squad_EnableCantHoldUI\",\"name\":\"Squad_EnableCantHoldUI\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_EnableCantHoldUI\",\"detail\":\"Squad_EnableCantHoldUI(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 790\"},{\"id\":\"workspace_Squad_ModifyInfantrySpeed\",\"name\":\"Squad_ModifyInfantrySpeed\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_ModifyInfantrySpeed\",\"detail\":\"Squad_ModifyInfantrySpeed(squad, addition, exclusive)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 806\"},{\"id\":\"workspace_Squad_MonitorDeath\",\"name\":\"Squad_MonitorDeath\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_MonitorDeath\",\"detail\":\"Squad_MonitorDeath(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 817\"},{\"id\":\"workspace_Squad_DisableFlagCarrierUI\",\"name\":\"Squad_DisableFlagCarrierUI\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_DisableFlagCarrierUI\",\"detail\":\"Squad_DisableFlagCarrierUI(squad, dead, flag)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 827\"},{\"id\":\"workspace_isset\",\"name\":\"isset\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"isset\",\"detail\":\"isset(var)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 848\"},{\"id\":\"workspace_Squad_FlagCarrierDeath\",\"name\":\"Squad_FlagCarrierDeath\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_FlagCarrierDeath\",\"detail\":\"Squad_FlagCarrierDeath()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 856\"},{\"id\":\"workspace_Squad_DropFlag\",\"name\":\"Squad_DropFlag\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_DropFlag\",\"detail\":\"Squad_DropFlag(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 906\"},{\"id\":\"workspace_Squad_CarriesFlag\",\"name\":\"Squad_CarriesFlag\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_CarriesFlag\",\"detail\":\"Squad_CarriesFlag(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 920\"},{\"id\":\"workspace_Squad_IsRegisteredFlagCarrier\",\"name\":\"Squad_IsRegisteredFlagCarrier\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_IsRegisteredFlagCarrier\",\"detail\":\"Squad_IsRegisteredFlagCarrier(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 927\"},{\"id\":\"workspace_Squad_RegisterFlagCarrier\",\"name\":\"Squad_RegisterFlagCarrier\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_RegisterFlagCarrier\",\"detail\":\"Squad_RegisterFlagCarrier(squad, flagid)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 935\"},{\"id\":\"workspace_Squad_UnRegisterFlagCarrier\",\"name\":\"Squad_UnRegisterFlagCarrier\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_UnRegisterFlagCarrier\",\"detail\":\"Squad_UnRegisterFlagCarrier(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 955\"},{\"id\":\"workspace_Squad_GetSlotItemTable\",\"name\":\"Squad_GetSlotItemTable\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Squad_GetSlotItemTable\",\"detail\":\"Squad_GetSlotItemTable(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 961\"},{\"id\":\"workspace_Player_EnableMoveFlagHereUI\",\"name\":\"Player_EnableMoveFlagHereUI\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Player_EnableMoveFlagHereUI\",\"detail\":\"Player_EnableMoveFlagHereUI(player, enable)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 994\"},{\"id\":\"workspace_Player_UnlockRetreat\",\"name\":\"Player_UnlockRetreat\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Player_UnlockRetreat\",\"detail\":\"Player_UnlockRetreat(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 1024\"},{\"id\":\"workspace_Player_IsHoldingAnyFlags\",\"name\":\"Player_IsHoldingAnyFlags\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Player_IsHoldingAnyFlags\",\"detail\":\"Player_IsHoldingAnyFlags(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 1029\"},{\"id\":\"workspace_SGroup_IsCarryingFlag\",\"name\":\"SGroup_IsCarryingFlag\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"SGroup_IsCarryingFlag\",\"detail\":\"SGroup_IsCarryingFlag(sgroup)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 1047\"},{\"id\":\"workspace_UI_LocalKickerMessage\",\"name\":\"UI_LocalKickerMessage\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"UI_LocalKickerMessage\",\"detail\":\"UI_LocalKickerMessage(owner, params)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 1062\"},{\"id\":\"workspace_UI_GlobalKickerMessage\",\"name\":\"UI_GlobalKickerMessage\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"UI_GlobalKickerMessage\",\"detail\":\"UI_GlobalKickerMessage(owner, params)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 1068\"},{\"id\":\"workspace_CTF_Msg\",\"name\":\"CTF_Msg\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"CTF_Msg\",\"detail\":\"CTF_Msg(text)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 1072\"},{\"id\":\"workspace_ClearCTF_Msg\",\"name\":\"ClearCTF_Msg\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"ClearCTF_Msg\",\"detail\":\"ClearCTF_Msg()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 1088\"},{\"id\":\"workspace_Listener\",\"name\":\"Listener\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Listener\",\"detail\":\"Listener()\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 1091\"},{\"id\":\"workspace_Table_Shuffle\",\"name\":\"Table_Shuffle\",\"filepath\":\"e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar\",\"kind\":8,\"label\":\"Table_Shuffle\",\"detail\":\"Table_Shuffle(tab)\",\"documentation\":\"File: e:coh2_mods_from_old_hddctf_winconditionscarctf_core.scar, line 1100\"},{\"id\":\"workspace_Ability_GetUniqueKey\",\"name\":\"Ability_GetUniqueKey\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Ability_GetUniqueKey\",\"detail\":\"Ability_GetUniqueKey(ability)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 8\"},{\"id\":\"workspace_Player_AddPopulation\",\"name\":\"Player_AddPopulation\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Player_AddPopulation\",\"detail\":\"Player_AddPopulation(player, amount)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 43\"},{\"id\":\"workspace_Player_ExecuteLocally\",\"name\":\"Player_ExecuteLocally\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Player_ExecuteLocally\",\"detail\":\"Player_ExecuteLocally(player, f)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 48\"},{\"id\":\"workspace_Player_GetEnemyPlayer\",\"name\":\"Player_GetEnemyPlayer\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Player_GetEnemyPlayer\",\"detail\":\"Player_GetEnemyPlayer(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 54\"},{\"id\":\"workspace_Player_SetResourceIncomeNumber\",\"name\":\"Player_SetResourceIncomeNumber\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Player_SetResourceIncomeNumber\",\"detail\":\"Player_SetResourceIncomeNumber(player, resource_type, number, dbg_resname)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 60\"},{\"id\":\"workspace_Team_GetFirstPlayer\",\"name\":\"Team_GetFirstPlayer\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Team_GetFirstPlayer\",\"detail\":\"Team_GetFirstPlayer(team)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 70\"},{\"id\":\"workspace_Team_GetEntitiesNearPoint\",\"name\":\"Team_GetEntitiesNearPoint\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Team_GetEntitiesNearPoint\",\"detail\":\"Team_GetEntitiesNearPoint(team, pos, radius)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 80\"},{\"id\":\"workspace_Team_GetSquadsNearPoint\",\"name\":\"Team_GetSquadsNearPoint\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Team_GetSquadsNearPoint\",\"detail\":\"Team_GetSquadsNearPoint(team, pos, radius)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 93\"},{\"id\":\"workspace_Team_GetPlayerCount\",\"name\":\"Team_GetPlayerCount\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Team_GetPlayerCount\",\"detail\":\"Team_GetPlayerCount(team)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 106\"},{\"id\":\"workspace_Team_ExecuteLocally\",\"name\":\"Team_ExecuteLocally\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Team_ExecuteLocally\",\"detail\":\"Team_ExecuteLocally(team, f)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 130\"},{\"id\":\"workspace_SGroup_CreateTemp\",\"name\":\"SGroup_CreateTemp\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"SGroup_CreateTemp\",\"detail\":\"SGroup_CreateTemp(sgroupName)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 136\"},{\"id\":\"workspace_EGroup_CreateTemp\",\"name\":\"EGroup_CreateTemp\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"EGroup_CreateTemp\",\"detail\":\"EGroup_CreateTemp(egroupName)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 141\"},{\"id\":\"workspace_EGroup_GetClosest\",\"name\":\"EGroup_GetClosest\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"EGroup_GetClosest\",\"detail\":\"EGroup_GetClosest(pos, egroup)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 147\"},{\"id\":\"workspace_EGroup_AddGroup\",\"name\":\"EGroup_AddGroup\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"EGroup_AddGroup\",\"detail\":\"EGroup_AddGroup(egroup, grouptoadd)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 155\"},{\"id\":\"workspace_EGroup_FilterByUnitType\",\"name\":\"EGroup_FilterByUnitType\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"EGroup_FilterByUnitType\",\"detail\":\"EGroup_FilterByUnitType(egroup, filters, filter_mode)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 162\"},{\"id\":\"workspace_Entity_GetGarrisonedSquads\",\"name\":\"Entity_GetGarrisonedSquads\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_GetGarrisonedSquads\",\"detail\":\"Entity_GetGarrisonedSquads(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 188\"},{\"id\":\"workspace_Entity_AutoAlign\",\"name\":\"Entity_AutoAlign\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_AutoAlign\",\"detail\":\"Entity_AutoAlign(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 195\"},{\"id\":\"workspace_Entity_CreateAndSpawnToward\",\"name\":\"Entity_CreateAndSpawnToward\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_CreateAndSpawnToward\",\"detail\":\"Entity_CreateAndSpawnToward(ebp, player, pos, toward, force_construct, auto_align)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 211\"},{\"id\":\"workspace_Entity_CreateAndSpawnTowardDelayed\",\"name\":\"Entity_CreateAndSpawnTowardDelayed\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_CreateAndSpawnTowardDelayed\",\"detail\":\"Entity_CreateAndSpawnTowardDelayed(ebp, player, pos, toward, delay, force_construct, auto_align)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 234\"},{\"id\":\"workspace_Entity_CreateAndSpawnTowardDelayedRandom\",\"name\":\"Entity_CreateAndSpawnTowardDelayedRandom\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_CreateAndSpawnTowardDelayedRandom\",\"detail\":\"Entity_CreateAndSpawnTowardDelayedRandom(ebp, player, pos, toward, force_construct, auto_align)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 259\"},{\"id\":\"workspace_Entity_GetName\",\"name\":\"Entity_GetName\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_GetName\",\"detail\":\"Entity_GetName(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 262\"},{\"id\":\"workspace_Entity_GetTempEGroup\",\"name\":\"Entity_GetTempEGroup\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_GetTempEGroup\",\"detail\":\"Entity_GetTempEGroup(entity, index)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 267\"},{\"id\":\"workspace_Entity_GetOwnerSafe\",\"name\":\"Entity_GetOwnerSafe\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_GetOwnerSafe\",\"detail\":\"Entity_GetOwnerSafe(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 276\"},{\"id\":\"workspace_Entity_Replace\",\"name\":\"Entity_Replace\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_Replace\",\"detail\":\"Entity_Replace(entity, ebp)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 284\"},{\"id\":\"workspace_Entity_IsSelected\",\"name\":\"Entity_IsSelected\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_IsSelected\",\"detail\":\"Entity_IsSelected(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 297\"},{\"id\":\"workspace_Entity_HasProductionQueueItem\",\"name\":\"Entity_HasProductionQueueItem\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_HasProductionQueueItem\",\"detail\":\"Entity_HasProductionQueueItem(entity, queueItem)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 301\"},{\"id\":\"workspace_Entity_IsValidEntity\",\"name\":\"Entity_IsValidEntity\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Entity_IsValidEntity\",\"detail\":\"Entity_IsValidEntity(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 312\"},{\"id\":\"workspace_Squad_GetUniqueKey\",\"name\":\"Squad_GetUniqueKey\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Squad_GetUniqueKey\",\"detail\":\"Squad_GetUniqueKey(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 319\"},{\"id\":\"workspace_Squad_GetName\",\"name\":\"Squad_GetName\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Squad_GetName\",\"detail\":\"Squad_GetName(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 323\"},{\"id\":\"workspace_Squad_IsIdle\",\"name\":\"Squad_IsIdle\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Squad_IsIdle\",\"detail\":\"Squad_IsIdle(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 336\"},{\"id\":\"workspace_Squad_IsConcstructing\",\"name\":\"Squad_IsConcstructing\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Squad_IsConcstructing\",\"detail\":\"Squad_IsConcstructing(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 340\"},{\"id\":\"workspace_Squad_IsHeadingToPosition\",\"name\":\"Squad_IsHeadingToPosition\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Squad_IsHeadingToPosition\",\"detail\":\"Squad_IsHeadingToPosition(squad, pos, distance)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 344\"},{\"id\":\"workspace_Squad_ForEachEntity\",\"name\":\"Squad_ForEachEntity\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Squad_ForEachEntity\",\"detail\":\"Squad_ForEachEntity(squad, f)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 355\"},{\"id\":\"workspace_UI_FlashSquad\",\"name\":\"UI_FlashSquad\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"UI_FlashSquad\",\"detail\":\"UI_FlashSquad(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 362\"},{\"id\":\"workspace_Util_Repeat\",\"name\":\"Util_Repeat\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Util_Repeat\",\"detail\":\"Util_Repeat(times, f)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 378\"},{\"id\":\"workspace_Util_Delay\",\"name\":\"Util_Delay\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Util_Delay\",\"detail\":\"Util_Delay(delay, task)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 384\"},{\"id\":\"workspace_Util_IsPositionInPolygon\",\"name\":\"Util_IsPositionInPolygon\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Util_IsPositionInPolygon\",\"detail\":\"Util_IsPositionInPolygon(polygon, x, y)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 392\"},{\"id\":\"workspace_Util_GetDirectionalOffset\",\"name\":\"Util_GetDirectionalOffset\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Util_GetDirectionalOffset\",\"detail\":\"Util_GetDirectionalOffset(pos, heading, offset, angle)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 418\"},{\"id\":\"workspace_Util_GetDirectionalOffsetPosition\",\"name\":\"Util_GetDirectionalOffsetPosition\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Util_GetDirectionalOffsetPosition\",\"detail\":\"Util_GetDirectionalOffsetPosition(pos, heading, offset, direction)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 430\"},{\"id\":\"workspace_Util_GetRandomPos\",\"name\":\"Util_GetRandomPos\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Util_GetRandomPos\",\"detail\":\"Util_GetRandomPos(pos, range, updateY)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 454\"},{\"id\":\"workspace_Util_GetAngleTowardsPos\",\"name\":\"Util_GetAngleTowardsPos\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Util_GetAngleTowardsPos\",\"detail\":\"Util_GetAngleTowardsPos(pos1, pos2)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 463\"},{\"id\":\"workspace_Util_CopyPosition\",\"name\":\"Util_CopyPosition\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Util_CopyPosition\",\"detail\":\"Util_CopyPosition(pos)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 489\"},{\"id\":\"workspace_Util_CreateUIFrame\",\"name\":\"Util_CreateUIFrame\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Util_CreateUIFrame\",\"detail\":\"Util_CreateUIFrame(name)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 493\"},{\"id\":\"workspace_Util_Tester\",\"name\":\"Util_Tester\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Util_Tester\",\"detail\":\"Util_Tester(f, v)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 500\"},{\"id\":\"workspace_Misc_UnSelectAll\",\"name\":\"Misc_UnSelectAll\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Misc_UnSelectAll\",\"detail\":\"Misc_UnSelectAll()\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 505\"},{\"id\":\"workspace_Util_DefaultValue\",\"name\":\"Util_DefaultValue\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Util_DefaultValue\",\"detail\":\"Util_DefaultValue(value, defaultValue)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 522\"},{\"id\":\"workspace_World_ForEachEntitiesByBlueprint\",\"name\":\"World_ForEachEntitiesByBlueprint\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"World_ForEachEntitiesByBlueprint\",\"detail\":\"World_ForEachEntitiesByBlueprint(ebp, f)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 551\"},{\"id\":\"workspace_World_GetEntitiesOfType\",\"name\":\"World_GetEntitiesOfType\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"World_GetEntitiesOfType\",\"detail\":\"World_GetEntitiesOfType(entityType)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 560\"},{\"id\":\"workspace_Pos_AddHeight\",\"name\":\"Pos_AddHeight\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Pos_AddHeight\",\"detail\":\"Pos_AddHeight(pos, height)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 569\"},{\"id\":\"workspace_Pos_GetString\",\"name\":\"Pos_GetString\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Pos_GetString\",\"detail\":\"Pos_GetString(pos)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 573\"},{\"id\":\"workspace_dr_text3dpos\",\"name\":\"dr_text3dpos\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"dr_text3dpos\",\"detail\":\"dr_text3dpos(frame, pos, text, r, g, b)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 577\"},{\"id\":\"workspace_Heading_Rotate\",\"name\":\"Heading_Rotate\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Heading_Rotate\",\"detail\":\"Heading_Rotate(heading, amount)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 581\"},{\"id\":\"workspace_Squad_InfraRedReveal\",\"name\":\"Squad_InfraRedReveal\",\"filepath\":\"e:coh2_mods_from_old_hddgenericscarlib_generic.scar\",\"kind\":8,\"label\":\"Squad_InfraRedReveal\",\"detail\":\"Squad_InfraRedReveal(squad, duration)\",\"documentation\":\"File: e:coh2_mods_from_old_hddgenericscarlib_generic.scar, line 589\"},{\"id\":\"workspace_WinCondition_PreInit\",\"name\":\"WinCondition_PreInit\",\"filepath\":\"e:coh2_mods_from_old_hddmonobaco_vptestmodmonobaco_vptestmod.scar\",\"kind\":8,\"label\":\"WinCondition_PreInit\",\"detail\":\"WinCondition_PreInit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddmonobaco_vptestmodmonobaco_vptestmod.scar, line 7\"},{\"id\":\"workspace_WinCondition_MonitorVictoryPoints\",\"name\":\"WinCondition_MonitorVictoryPoints\",\"filepath\":\"e:coh2_mods_from_old_hddmonobaco_vptestmodmonobaco_vptestmod.scar\",\"kind\":8,\"label\":\"WinCondition_MonitorVictoryPoints\",\"detail\":\"WinCondition_MonitorVictoryPoints()\",\"documentation\":\"File: e:coh2_mods_from_old_hddmonobaco_vptestmodmonobaco_vptestmod.scar, line 29\"},{\"id\":\"workspace_Team_GetTitle\",\"name\":\"Team_GetTitle\",\"filepath\":\"e:coh2_mods_from_old_hddmonobaco_vptestmodmonobaco_vptestmod.scar\",\"kind\":8,\"label\":\"Team_GetTitle\",\"detail\":\"Team_GetTitle(team)\",\"documentation\":\" misc function for forming a team title of the team player names File: e:coh2_mods_from_old_hddmonobaco_vptestmodmonobaco_vptestmod.scar, line 94\"},{\"id\":\"workspace_Team_GetOpposingTeam\",\"name\":\"Team_GetOpposingTeam\",\"filepath\":\"e:coh2_mods_from_old_hddmonobaco_vptestmodmonobaco_vptestmod.scar\",\"kind\":8,\"label\":\"Team_GetOpposingTeam\",\"detail\":\"Team_GetOpposingTeam(team)\",\"documentation\":\" mis function for getting the opposing team of a team File: e:coh2_mods_from_old_hddmonobaco_vptestmodmonobaco_vptestmod.scar, line 115\"},{\"id\":\"workspace_OKWNoCache_PreInit\",\"name\":\"OKWNoCache_PreInit\",\"filepath\":\"e:coh2_mods_from_old_hddokw no cache incomescarcore.scar\",\"kind\":8,\"label\":\"OKWNoCache_PreInit\",\"detail\":\"OKWNoCache_PreInit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddokw no cache incomescarcore.scar, line 4\"},{\"id\":\"workspace_PK_SystemInit\",\"name\":\"PK_SystemInit\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"PK_SystemInit\",\"detail\":\"PK_SystemInit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 14\"},{\"id\":\"workspace_PK_ScanPlayers\",\"name\":\"PK_ScanPlayers\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"PK_ScanPlayers\",\"detail\":\"PK_ScanPlayers()\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 79\"},{\"id\":\"workspace_PK_PlayerAbilityListener\",\"name\":\"PK_PlayerAbilityListener\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"PK_PlayerAbilityListener\",\"detail\":\"PK_PlayerAbilityListener(caster, ability, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 101\"},{\"id\":\"workspace_Player_RemoveTankDispatchAbilities\",\"name\":\"Player_RemoveTankDispatchAbilities\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"Player_RemoveTankDispatchAbilities\",\"detail\":\"Player_RemoveTankDispatchAbilities(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 137\"},{\"id\":\"workspace_Squad_GetTempSGroup\",\"name\":\"Squad_GetTempSGroup\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"Squad_GetTempSGroup\",\"detail\":\"Squad_GetTempSGroup(squad)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 147\"},{\"id\":\"workspace_Player_GetMapEntryPositionClosest\",\"name\":\"Player_GetMapEntryPositionClosest\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"Player_GetMapEntryPositionClosest\",\"detail\":\"Player_GetMapEntryPositionClosest(player, pos)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 154\"},{\"id\":\"workspace_Util_SortPositionsByClosestImproved\",\"name\":\"Util_SortPositionsByClosestImproved\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"Util_SortPositionsByClosestImproved\",\"detail\":\"Util_SortPositionsByClosestImproved(origin, positions, reverse)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 185\"},{\"id\":\"workspace_undefined\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"detail\":\"undefined(t)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 213\"},{\"id\":\"workspace_Pos_GetXYZString\",\"name\":\"Pos_GetXYZString\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"Pos_GetXYZString\",\"detail\":\"Pos_GetXYZString(pos)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 231\"},{\"id\":\"workspace_PK_Msg\",\"name\":\"PK_Msg\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"PK_Msg\",\"detail\":\"PK_Msg(text)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 241\"},{\"id\":\"workspace_PK_ClearMSG\",\"name\":\"PK_ClearMSG\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"PK_ClearMSG\",\"detail\":\"PK_ClearMSG()\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 258\"},{\"id\":\"workspace_PK_GetAbilityBleprint\",\"name\":\"PK_GetAbilityBleprint\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"PK_GetAbilityBleprint\",\"detail\":\"PK_GetAbilityBleprint(blueprint)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 262\"},{\"id\":\"workspace_PK_GetUpgradeBleprint\",\"name\":\"PK_GetUpgradeBleprint\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"PK_GetUpgradeBleprint\",\"detail\":\"PK_GetUpgradeBleprint(blueprint)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 266\"},{\"id\":\"workspace_PK_GetSquadBleprint\",\"name\":\"PK_GetSquadBleprint\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"PK_GetSquadBleprint\",\"detail\":\"PK_GetSquadBleprint(blueprint)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 270\"},{\"id\":\"workspace_PK_EventCue\",\"name\":\"PK_EventCue\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"PK_EventCue\",\"detail\":\"PK_EventCue(msg)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 274\"},{\"id\":\"workspace_Player_GetRaceIndex\",\"name\":\"Player_GetRaceIndex\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"Player_GetRaceIndex\",\"detail\":\"Player_GetRaceIndex(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkrieg_offscarpanzerkrieg.scar, line 293\"},{\"id\":\"workspace_PK_PreInit\",\"name\":\"PK_PreInit\",\"filepath\":\"e:coh2_mods_from_old_hddpanzerkriegscarpanzerkrieg.scar\",\"kind\":8,\"label\":\"PK_PreInit\",\"detail\":\"PK_PreInit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddpanzerkriegscarpanzerkrieg.scar, line 7\"},{\"id\":\"workspace_RotateThings\",\"name\":\"RotateThings\",\"filepath\":\"e:coh2_mods_from_old_hddrotationtestscarrotationtest.scar\",\"kind\":8,\"label\":\"RotateThings\",\"detail\":\"RotateThings()\",\"documentation\":\"File: e:coh2_mods_from_old_hddrotationtestscarrotationtest.scar, line 62\"},{\"id\":\"workspace_TC_PreInit\",\"name\":\"TC_PreInit\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_PreInit\",\"detail\":\"TC_PreInit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 9\"},{\"id\":\"workspace_TC_Init\",\"name\":\"TC_Init\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_Init\",\"detail\":\"TC_Init()\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 26\"},{\"id\":\"workspace_TC_TogglePlayerCategory\",\"name\":\"TC_TogglePlayerCategory\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_TogglePlayerCategory\",\"detail\":\"TC_TogglePlayerCategory(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 191\"},{\"id\":\"workspace_System_PlayerAbilityComplete\",\"name\":\"System_PlayerAbilityComplete\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"System_PlayerAbilityComplete\",\"detail\":\"System_PlayerAbilityComplete(caster, ability, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 214\"},{\"id\":\"workspace_System_PlayerAbilityExecuted\",\"name\":\"System_PlayerAbilityExecuted\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"System_PlayerAbilityExecuted\",\"detail\":\"System_PlayerAbilityExecuted(caster, ability, target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 224\"},{\"id\":\"workspace_TC_UpdatePlayerCircle\",\"name\":\"TC_UpdatePlayerCircle\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_UpdatePlayerCircle\",\"detail\":\"TC_UpdatePlayerCircle(player, origin, visibility)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 374\"},{\"id\":\"workspace_TC_UpdatePlayerArrow\",\"name\":\"TC_UpdatePlayerArrow\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_UpdatePlayerArrow\",\"detail\":\"TC_UpdatePlayerArrow(player, origin, heading, visibility)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 398\"},{\"id\":\"workspace_TC_GeneralManager\",\"name\":\"TC_GeneralManager\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_GeneralManager\",\"detail\":\"TC_GeneralManager()\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 426\"},{\"id\":\"workspace_TC_GetAbilityBlueprint\",\"name\":\"TC_GetAbilityBlueprint\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_GetAbilityBlueprint\",\"detail\":\"TC_GetAbilityBlueprint(blueprint)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 435\"},{\"id\":\"workspace_TC_GetMineIcon\",\"name\":\"TC_GetMineIcon\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_GetMineIcon\",\"detail\":\"TC_GetMineIcon(name)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 439\"},{\"id\":\"workspace_TC_GetMineIconScale\",\"name\":\"TC_GetMineIconScale\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_GetMineIconScale\",\"detail\":\"TC_GetMineIconScale(name)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 452\"},{\"id\":\"workspace_TC_MineIsAllowedToMark\",\"name\":\"TC_MineIsAllowedToMark\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_MineIsAllowedToMark\",\"detail\":\"TC_MineIsAllowedToMark(name)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 464\"},{\"id\":\"workspace_TC_MineIsPartOfSMineField\",\"name\":\"TC_MineIsPartOfSMineField\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_MineIsPartOfSMineField\",\"detail\":\"TC_MineIsPartOfSMineField(name)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 474\"},{\"id\":\"workspace_TC_GetMineMarkerColor\",\"name\":\"TC_GetMineMarkerColor\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_GetMineMarkerColor\",\"detail\":\"TC_GetMineMarkerColor(planted, mineOwner, displayToPlayer)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 484\"},{\"id\":\"workspace_TC_GetIcon\",\"name\":\"TC_GetIcon\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_GetIcon\",\"detail\":\"TC_GetIcon(icon)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 500\"},{\"id\":\"workspace_TC_MineMarkerManager\",\"name\":\"TC_MineMarkerManager\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_MineMarkerManager\",\"detail\":\"TC_MineMarkerManager()\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 504\"},{\"id\":\"workspace_TC_BlibMinePlanted\",\"name\":\"TC_BlibMinePlanted\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"TC_BlibMinePlanted\",\"detail\":\"TC_BlibMinePlanted(pos, planted, owner, ebpName)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 563\"},{\"id\":\"workspace_System_EntityConstructionCompleted\",\"name\":\"System_EntityConstructionCompleted\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"System_EntityConstructionCompleted\",\"detail\":\"System_EntityConstructionCompleted(caster, ebp)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 593\"},{\"id\":\"workspace_System_EntityKilled\",\"name\":\"System_EntityKilled\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"System_EntityKilled\",\"detail\":\"System_EntityKilled(entityTarget, entityCauser)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 632\"},{\"id\":\"workspace_Player_IsLocalPlayer\",\"name\":\"Player_IsLocalPlayer\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Player_IsLocalPlayer\",\"detail\":\"Player_IsLocalPlayer(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 661\"},{\"id\":\"workspace_Player_GetUniqueKey\",\"name\":\"Player_GetUniqueKey\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Player_GetUniqueKey\",\"detail\":\"Player_GetUniqueKey(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 669\"},{\"id\":\"workspace_Player_GetName\",\"name\":\"Player_GetName\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Player_GetName\",\"detail\":\"Player_GetName(player)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 673\"},{\"id\":\"workspace_Players_ForEach\",\"name\":\"Players_ForEach\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Players_ForEach\",\"detail\":\"Players_ForEach(f)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 677\"},{\"id\":\"workspace_Players_ForEachInTeam\",\"name\":\"Players_ForEachInTeam\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Players_ForEachInTeam\",\"detail\":\"Players_ForEachInTeam(team, f)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 685\"},{\"id\":\"workspace_Entity_GetPlayerOwnerSafe\",\"name\":\"Entity_GetPlayerOwnerSafe\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Entity_GetPlayerOwnerSafe\",\"detail\":\"Entity_GetPlayerOwnerSafe(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 693\"},{\"id\":\"workspace_Entity_GetUniqueKey\",\"name\":\"Entity_GetUniqueKey\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Entity_GetUniqueKey\",\"detail\":\"Entity_GetUniqueKey(entity)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 701\"},{\"id\":\"workspace_Entity_CheckForParentSquad\",\"name\":\"Entity_CheckForParentSquad\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Entity_CheckForParentSquad\",\"detail\":\"Entity_CheckForParentSquad(target)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 705\"},{\"id\":\"workspace_EntityList_ContainsValidEntities\",\"name\":\"EntityList_ContainsValidEntities\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"EntityList_ContainsValidEntities\",\"detail\":\"EntityList_ContainsValidEntities(list)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 717\"},{\"id\":\"workspace_EGroup_GetEntityIds\",\"name\":\"EGroup_GetEntityIds\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"EGroup_GetEntityIds\",\"detail\":\"EGroup_GetEntityIds(egroup)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 726\"},{\"id\":\"workspace_Util_GlobalMessage\",\"name\":\"Util_GlobalMessage\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Util_GlobalMessage\",\"detail\":\"Util_GlobalMessage(title, displaytime)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 734\"},{\"id\":\"workspace_Util_CreateLocString\",\"name\":\"Util_CreateLocString\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Util_CreateLocString\",\"detail\":\"Util_CreateLocString(text)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 738\"},{\"id\":\"workspace_Util_GetBlueprint\",\"name\":\"Util_GetBlueprint\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Util_GetBlueprint\",\"detail\":\"Util_GetBlueprint(item)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 744\"},{\"id\":\"workspace_Util_GetUnitOwner\",\"name\":\"Util_GetUnitOwner\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Util_GetUnitOwner\",\"detail\":\"Util_GetUnitOwner(unit)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 754\"},{\"id\":\"workspace_Game_GetLocalPlayerID\",\"name\":\"Game_GetLocalPlayerID\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Game_GetLocalPlayerID\",\"detail\":\"Game_GetLocalPlayerID()\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 762\"},{\"id\":\"workspace_World_OwnsUnit\",\"name\":\"World_OwnsUnit\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"World_OwnsUnit\",\"detail\":\"World_OwnsUnit(unit)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 766\"},{\"id\":\"workspace_World_GetEntitiesByBlueprint\",\"name\":\"World_GetEntitiesByBlueprint\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"World_GetEntitiesByBlueprint\",\"detail\":\"World_GetEntitiesByBlueprint(ebp)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 774\"},{\"id\":\"workspace_World_ForEachEntities\",\"name\":\"World_ForEachEntities\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"World_ForEachEntities\",\"detail\":\"World_ForEachEntities(f)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 789\"},{\"id\":\"workspace_Msg\",\"name\":\"Msg\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_core.scar\",\"kind\":8,\"label\":\"Msg\",\"detail\":\"Msg(text)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_core.scar, line 796\"},{\"id\":\"workspace_TC_DataInit_Ebps\",\"name\":\"TC_DataInit_Ebps\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_data_ebps.scar\",\"kind\":8,\"label\":\"TC_DataInit_Ebps\",\"detail\":\"TC_DataInit_Ebps()\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_data_ebps.scar, line 1\"},{\"id\":\"workspace_TC_DataInit\",\"name\":\"TC_DataInit\",\"filepath\":\"e:coh2_mods_from_old_hddtactical commandsscartc_data.scar\",\"kind\":8,\"label\":\"TC_DataInit\",\"detail\":\"TC_DataInit()\",\"documentation\":\"File: e:coh2_mods_from_old_hddtactical commandsscartc_data.scar, line 1\"},{\"id\":\"workspace_WinCondition_GameOver\",\"name\":\"WinCondition_GameOver\",\"filepath\":\"e:coh2_mods_from_old_hddtest_mod_for_eli_offscartest_mod_for_eli.scar\",\"kind\":8,\"label\":\"WinCondition_GameOver\",\"detail\":\"WinCondition_GameOver(winningTeam, losingTeam)\",\"documentation\":\"File: e:coh2_mods_from_old_hddtest_mod_for_eli_offscartest_mod_for_eli.scar, line 4\"},{\"id\":\"workspace_WinCondition_Check\",\"name\":\"WinCondition_Check\",\"filepath\":\"e:coh2_mods_from_old_hddtest_mod_for_eli_offscartest_mod_for_eli.scar\",\"kind\":8,\"label\":\"WinCondition_Check\",\"detail\":\"WinCondition_Check()\",\"documentation\":\"File: e:coh2_mods_from_old_hddtest_mod_for_eli_offscartest_mod_for_eli.scar, line 14\"},{\"id\":\"workspace_WinCondition_Init\",\"name\":\"WinCondition_Init\",\"filepath\":\"e:coh2_mods_from_old_hddtest_mod_for_eli_offscartest_mod_for_eli.scar\",\"kind\":8,\"label\":\"WinCondition_Init\",\"detail\":\"WinCondition_Init()\",\"documentation\":\"File: e:coh2_mods_from_old_hddtest_mod_for_eli_offscartest_mod_for_eli.scar, line 55\"}] "}
{"_id":"q-en-vscode-17400e3eb1b18bf8273bbc2589837c2a9475db229f0c1abcfc557ad3f550eab7","text":"resolved \"https://registry.yarnpkg.com/@types/vscode-notebook-renderer/-/vscode-notebook-renderer-1.72.0.tgz#8943dc3cef0ced2dfb1e04c0a933bd289e7d5199\" integrity sha512-5iTjb39DpLn03ULUwrDR3L2Dy59RV4blSUHy0oLdQuIY11PhgWO4mXIcoFS0VxY1GZQ4IcjSf3ooT2Jrrcahnw== \"@vscode/markdown-it-katex@^1.0.3\": version \"1.0.3\" resolved \"https://registry.yarnpkg.com/@vscode/markdown-it-katex/-/markdown-it-katex-1.0.3.tgz#5364e4dbcb0f7e7fd2fdab3847ba5d6b0c3ce9d9\" integrity sha512-a8ppdac0CG2lAQC6E6lT8dxmXkUk9gRtYNtILx31FyrPEwj875AAHc6tpRGeJBpWMpiMtcvz7ymWYBwYgxuFmw== \"@vscode/markdown-it-katex@^1.1.0\": version \"1.1.0\" resolved \"https://registry.yarnpkg.com/@vscode/markdown-it-katex/-/markdown-it-katex-1.1.0.tgz#e991b58f6eb7cf56aef74b98e1a5edc1494649bb\" integrity sha512-9cF2eJpsJOEs2V1cCAoJW/boKz9GQQLvZhNvI030K90z6ZE9lRGc9hDVvKut8zdFO2ObjwylPXXXVYvTdP2O2Q== dependencies: katex \"^0.16.4\""}
{"_id":"q-en-vscode-1795c610eeeffd6dbbf45882e5546dc5ba79b1e2d2c58306150187d548372019","text":"import { INotificationService } from 'vs/platform/notification/common/notification'; import { IQuickInputService } from 'vs/platform/quickinput/common/quickInput'; import { IStorageService, StorageScope, StorageTarget } from 'vs/platform/storage/common/storage'; import { IThemeService } from 'vs/platform/theme/common/themeService'; import { IThemeService, themeColorFromId } from 'vs/platform/theme/common/themeService'; const SEARCH_STRING_MAX_LENGTH = 524288;"}
{"_id":"q-en-vscode-17e8e9afe71548b33bb52264cdd21ba3cc9a516c940991a999b908be15e8ba81","text":"} const outputs = viewCell.outputsViewModels; for (const output of outputs) { for (const output of outputs.slice(0, outputDisplayLimit)) { const [mimeTypes, pick] = output.resolveMimeTypes(this._notebookEditor.textModel!, undefined); if (!mimeTypes.find(mimeType => mimeType.isTrusted) || mimeTypes.length === 0) { continue;"}
{"_id":"q-en-vscode-187216ef7db82bbb463f8a9992acbb44bb92f1cfea2462c03fe4bb957f6d5113","text":"editor.focus(); }, next() { model.next().then(() => show()); contextViewService.hideContextView(); setTimeout(() => model.next().then(() => show()), 50); }, previous() { model.previous().then(() => show()); contextViewService.hideContextView(); setTimeout(() => model.previous().then(() => show()), 50); }, options: this._options });"}
{"_id":"q-en-vscode-18c9d9c66b3266a111a4f01fc311ec87ca2fbb5b81c8df6cbcbbd24c81d88748","text":"order: 11 }); // --- Configure Tabs Layout export class ConfigureEditorTabsAction extends Action2 { static readonly ID = 'workbench.action.configureEditorTabs'; constructor() { super({ id: ConfigureEditorTabsAction.ID, title: localize2('configureTabs', \"Configure Tabs ...\"), category: Categories.View, }); } run(accessor: ServicesAccessor) { const preferencesService = accessor.get(IPreferencesService); preferencesService.openSettings({ jsonEditor: false, query: 'workbench.editor tab' }); } } registerAction2(ConfigureEditorTabsAction); // --- Configure Editor export class ConfigureEditorAction extends Action2 { static readonly ID = 'workbench.action.configureEditor'; constructor() { super({ id: ConfigureEditorAction.ID, title: localize2('configureEditor', \"Configure Editor ...\"), category: Categories.View, }); } run(accessor: ServicesAccessor) { const preferencesService = accessor.get(IPreferencesService); preferencesService.openSettings({ jsonEditor: false, query: 'workbench.editor' }); } } registerAction2(ConfigureEditorAction); // --- Toggle Pinned Tabs On Separate Row registerAction2(class extends Action2 {"}
{"_id":"q-en-vscode-18d26ec6406f2300f118221fb4497766a21b95dd20b20f9430775908149005a5","text":"// never wrap hidden editor result.wordWrapOverride1 = 'off'; result.wordWrapOverride2 = 'off'; result.stickyScroll = { enabled: false }; } else { result.wordWrapOverride1 = this._options.get().diffWordWrap; }"}
{"_id":"q-en-vscode-193c8473f8ec279ced06c08013c66a2ce16d97909dc76cc644cd24c3abf7c4df","text":"type: 'ptyHost', entryPoint: 'vs/platform/terminal/node/ptyHostMain', execArgv, args: ['--logsPath', this._environmentMainService.logsHome.fsPath], env: this._createPtyHostConfiguration(lastPtyId) });"}
{"_id":"q-en-vscode-195cce9332696cbccf83f448754687394a98bb1c60c1d93c6a638e21916fe03d","text":"} } if (typeof anchorElementIndex === 'number') { if (updateScrollTop && typeof anchorElementIndex === 'number') { this.scrollTop = this.elementTop(anchorElementIndex) - anchorElementTopDelta!; }"}
{"_id":"q-en-vscode-198401ea0305579bbf77397a24263f4668459e73a6178ddca3936fa8980513e7","text":"}); } async function runCommand(instance: ITerminalInstance, commandLine: string, addNewLine: boolean): Promise { // Determine whether to send ETX (ctrl+c) before running the command. This should always // happen unless command detection can reliably say that a command is being entered and // there is no content in the prompt if (instance.capabilities.get(TerminalCapability.CommandDetection)?.hasInput !== false) { await instance.sendText('x03', false); // Wait a little before running the command to avoid the sequences being echoed while the ^C // is being evaluated await timeout(100); } // Use bracketed paste mode only when not running the command await instance.sendText(commandLine, addNewLine, !addNewLine); } class TerminalOutputProvider implements ITextModelContentProvider { static scheme = 'TERMINAL_OUTPUT';"}
{"_id":"q-en-vscode-19ef89ae16b533395e9c63712662f4af2a58fe4ee613f8e9d6bbe07bbe5072ee","text":"}; function renderHTML(outputInfo: OutputItem, container: HTMLElement): void { clearContainer(container); const htmlContent = outputInfo.text(); const element = document.createElement('div'); const trustedHtml = ttPolicy?.createHTML(htmlContent) ?? htmlContent;"}
{"_id":"q-en-vscode-1a087ef7822eee00e16710b04c3e8f211690965b2ef4ce3ea273692785962cf1","text":"\"editor.selectionHighlightBackground\": \"#ADD6FF4D\", \"editorSuggestWidget.background\": \"#F3F3F3\", \"activityBarBadge.background\": \"#007ACC\", \"sideBarTitle.foreground\": \"#6F6F6F\" \"sideBarTitle.foreground\": \"#6F6F6F\", \"list.hoverBackground\": \"#e0e0e0\" } } No newline at end of file"}
{"_id":"q-en-vscode-1a17b20d1893f83e03c8bd39c43f8483beeef13404fb5b535672b63df9c69394","text":"throw new Error(nls.localize('restartCode', \"Please restart VS Code before reinstalling {0}.\", this.manifest.displayName || this.manifest.name)); } } } else { // Remove the extension with same version if it is already uninstalled. // Installing a VSIX extension shall replace the existing extension always. const existingWithSameVersion = await this.unsetIfUninstalled(this.extensionKey); if (existingWithSameVersion) { try { await this.extensionsScanner.removeExtension(existingWithSameVersion, 'existing'); } catch (e) { throw new Error(nls.localize('restartCode', \"Please restart VS Code before reinstalling {0}.\", this.manifest.displayName || this.manifest.name)); } } // Remove the extension with same version if it is already uninstalled. // Installing a VSIX extension shall replace the existing extension always. const existingWithSameVersion = await this.unsetIfUninstalled(this.extensionKey); if (existingWithSameVersion) { try { await this.extensionsScanner.removeExtension(existingWithSameVersion, 'existing'); } catch (e) { throw new Error(nls.localize('restartCode', \"Please restart VS Code before reinstalling {0}.\", this.manifest.displayName || this.manifest.name)); } }"}
{"_id":"q-en-vscode-1a59bc9cb6ff424c97dc637f2ad297e829193419e6c48b9b509efbc8f574d83d","text":"super({ id: 'chat.action.focus', title: localize2('actions.interactiveSession.focus', 'Focus Chat List'), precondition: ContextKeyExpr.and(CONTEXT_IN_CHAT_INPUT, CONTEXT_CHAT_LOCATION.isEqualTo(ChatAgentLocation.Panel)), precondition: ContextKeyExpr.and(CONTEXT_IN_CHAT_INPUT), category: CHAT_CATEGORY, keybinding: [ // On mac, require that the cursor is at the top of the input, to avoid stealing cmd+up to move the cursor to the top"}
{"_id":"q-en-vscode-1a609e6dcbea466689a97ace4d04c0259098da639fce92831ff5258400963979","text":".pipe(replace('@@UPDATEURL@@', product.updateUrl || '@@UPDATEURL@@')) .pipe(rename('DEBIAN/postinst')); const all = es.merge(control, postinst, postrm, prerm, desktop, appdata, icon, code); const all = es.merge(control, postinst, postrm, prerm, desktop, desktopUrlHandler, appdata, icon, code); return all.pipe(vfs.dest(destination)); };"}
{"_id":"q-en-vscode-1a69b710cda88b465e06407d2316c35f1514fa445b38829094919bdbed2281e9","text":"default: true, markdownDescription: localize('interactiveWindow.alwaysScrollOnNewCell', \"Automatically scroll the interactive window to show the output of the last statement executed. If this value is false, the window will only scroll if the last cell was already the one scrolled to.\") }, [InteractiveWindowSetting.interactiveWindowHotExit]: { [InteractiveWindowSetting.interactiveWindowRestore]: { type: 'boolean', default: false, markdownDescription: localize('interactiveWindow.hotExit', \"Controls whether the interactive window sessions should be restored when the workspace reloads.\") markdownDescription: localize('interactiveWindow.restore', \"Controls whether the Interactive Window sessions/history should be restored across window reloads. Whether the state of controllers used in Interactive Windows is persisted across window reloads are controlled by extensions contributing controllers.\") } } });"}
{"_id":"q-en-vscode-1a798001f4cc5644f477c3b6d052bfab7cf2f001ef91c1e9712efecc1ff3b0ed","text":"import { ElementsDragAndDropData, ListViewTargetSector } from 'vs/base/browser/ui/list/listView'; import { IAsyncDataSource, ITreeContextMenuEvent, ITreeDragAndDrop, ITreeDragOverReaction, ITreeNode, ITreeRenderer, TreeDragOverBubble } from 'vs/base/browser/ui/tree/tree'; import { CollapseAllAction } from 'vs/base/browser/ui/tree/treeDefaults'; import { ActionRunner, IAction } from 'vs/base/common/actions'; import { ActionRunner, IAction, Separator } from 'vs/base/common/actions'; import { timeout } from 'vs/base/common/async'; import { CancellationToken, CancellationTokenSource } from 'vs/base/common/cancellation'; import { Codicon } from 'vs/base/common/codicons';"}
{"_id":"q-en-vscode-1a9f19154646ba5b6639fcfa2909b9ebc15fc1a9df3ff08d524f187e6c3a0af2","text":"* and searches with the same session object can search the same cache. When the object is garbage-collected, the session is complete and the cache can be cleared. * Please do not store any references to the session object, except via a weak reference (e.g. `WeakRef` or `WeakMap`). */ session: unknown; session: object; /** * The maximum number of results to be returned."}
{"_id":"q-en-vscode-1ab69718c34a5eb8b1ea40ae098d3868774d77af15913ee7fd7a0d69de4fc932","text":"import { IEditableData } from 'vs/workbench/common/views'; import { TerminalFindWidget } from 'vs/workbench/contrib/terminal/browser/terminalFindWidget'; import { ITerminalStatusList } from 'vs/workbench/contrib/terminal/browser/terminalStatusList'; import { ScrollPosition } from 'vs/workbench/contrib/terminal/browser/xterm/markNavigationAddon'; import { ITerminalQuickFixAddon } from 'vs/workbench/contrib/terminal/browser/xterm/quickFixAddon'; import { INavigationMode, IRegisterContributedProfileArgs, IRemoteTerminalAttachTarget, IStartExtensionTerminalRequest, ITerminalBackend, ITerminalConfigHelper, ITerminalFont, ITerminalProcessExtHostProxy } from 'vs/workbench/contrib/terminal/common/terminal'; import { EditorGroupColumn } from 'vs/workbench/services/editor/common/editorGroupColumn';"}
{"_id":"q-en-vscode-1b1119a86d4ba402819bd13f2952994ad7bda9b43c84147a3e7bc5d231533fd4","text":"const os = this._processManager.os || OS; const parsedLinks = detectLinks(text, os); this._logService.trace('terminalLocaLinkDetector#detect text', text); this._logService.trace('terminalLocaLinkDetector#detect parsedLinks', parsedLinks); for (const parsedLink of parsedLinks) { // Don't try resolve any links of excessive length if (parsedLink.path.text.length > Constants.MaxResolvedLinkLength) { continue;"}
{"_id":"q-en-vscode-1b1cbaae1573f1f548af0aa4abc81f813aacdac97a80efdc0c1a27292b4104c2","text":"} })); this.toDispose.push(dom.addDisposableListener(this.selectElement, dom.EventType.MOUSE_UP, (e) => { dom.EventHelper.stop(e); })); this.toDispose.push(dom.addDisposableListener(this.selectElement, dom.EventType.MOUSE_DOWN, (e) => { dom.EventHelper.stop(e); })); // Intercept keyboard handling this.toDispose.push(dom.addDisposableListener(this.selectElement, dom.EventType.KEY_UP, (e: KeyboardEvent) => { dom.EventHelper.stop(e); })); this.toDispose.push(dom.addDisposableListener(this.selectElement, dom.EventType.KEY_DOWN, (e: KeyboardEvent) => { const event = new StandardKeyboardEvent(e); let showDropDown = false;"}
{"_id":"q-en-vscode-1b2a7f91dbb9d729a3154f2fe11cad9189c24b466782a216e106a549f6b4328d","text":"return this._dirty; } isUntitled() { return this._notebook.uri.scheme === Schemas.untitled; } getNotebook(): NotebookTextModel { return this._notebook; }"}
{"_id":"q-en-vscode-1b3a54e47db422092198a3b03d4f7eb26a3bde8a39ffb39a5970b45877317dc3","text":"} }; this._contextViewService.showContextView(delegate); if (lineNumber) { // Context view takes time to show up, so we need to wait for it to show up before we can set the position setTimeout(() => { this._editorWidget.revealLine(lineNumber); this._editorWidget.setSelection({ startLineNumber: lineNumber, startColumn: 1, endLineNumber: lineNumber, endColumn: 1 }); }, 50); } if (symbol && this._currentProvider) { this.showSymbol(this._currentProvider, symbol); }"}
{"_id":"q-en-vscode-1b3abb5f1cb38ddedc4f48287c4558af92dcb5837e7222a2306516095260ae10","text":"getMergeBase(ref1: string, ref2: string): Promise; tag(name: string, upstream: string): Promise; deleteTag(name: string): Promise; status(): Promise; checkout(treeish: string): Promise;"}
{"_id":"q-en-vscode-1b913365c38ca7f3cca06d0ff59f39510ef150c475dcfb8831a64ee29d38791a","text":"parameters: VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }} VSCODE_BUILD_LINUX_ALPINE_ARM64: ${{ parameters.VSCODE_BUILD_LINUX_ALPINE_ARM64 }} VSCODE_BUILD_LINUX_ARM64: ${{ parameters.VSCODE_BUILD_LINUX_ARM64 }} VSCODE_BUILD_LINUX_ARMHF: ${{ parameters.VSCODE_BUILD_LINUX_ARMHF }} - ${{ if eq(variables.VSCODE_BUILD_STAGE_MACOS, true) }}: - job: MacOS - ${{ if eq(parameters.VSCODE_BUILD_MACOS, true) }}: - job: MacOSX64 pool: vmImage: macOS-11 steps:"}
{"_id":"q-en-vscode-1ba426f4b26481ab49f7039e0e36aee1e2ca99c689c463924b4f9f75a3fc2bd1","text":"import { EditorPaneDescriptor, IEditorPaneRegistry } from 'vs/workbench/browser/editor'; import { Extensions as WorkbenchExtensions, IWorkbenchContributionsRegistry } from 'vs/workbench/common/contributions'; import { EditorExtensions, IEditorFactoryRegistry } from 'vs/workbench/common/editor'; import { AcceptAllInput1, AcceptAllInput2, AcceptMerge, CompareInput1WithBaseCommand, CompareInput2WithBaseCommand, GoToNextUnhandledConflict, GoToPreviousUnhandledConflict, OpenBaseFile, OpenMergeEditor, OpenResultResource, ResetToBaseAndAutoMergeCommand, SetColumnLayout, SetMixedLayout, ShowHideAtTopBase, ShowHideBase, ShowNonConflictingChanges, ToggleActiveConflictInput1, ToggleActiveConflictInput2 } from 'vs/workbench/contrib/mergeEditor/browser/commands/commands'; import { AcceptAllInput1, AcceptAllInput2, AcceptMerge, CompareInput1WithBaseCommand, CompareInput2WithBaseCommand, GoToNextUnhandledConflict, GoToPreviousUnhandledConflict, OpenBaseFile, OpenMergeEditor, OpenResultResource, ResetToBaseAndAutoMergeCommand, SetColumnLayout, SetMixedLayout, ShowHideTopBase, ShowHideCenterBase, ShowHideBase, ShowNonConflictingChanges, ToggleActiveConflictInput1, ToggleActiveConflictInput2 } from 'vs/workbench/contrib/mergeEditor/browser/commands/commands'; import { MergeEditorCopyContentsToJSON, MergeEditorLoadContentsFromFolder, MergeEditorSaveContentsToFolder } from 'vs/workbench/contrib/mergeEditor/browser/commands/devCommands'; import { MergeEditorInput } from 'vs/workbench/contrib/mergeEditor/browser/mergeEditorInput'; import { MergeEditor, MergeEditorOpenHandlerContribution, MergeEditorResolverContribution } from 'vs/workbench/contrib/mergeEditor/browser/view/mergeEditor';"}
{"_id":"q-en-vscode-1bbf1589cafe4727a9d8bc6ef94a08a5df9a12f188b8090bf4d0894f7fd511f8","text":"if (lineNumber === undefined) { return; } this.show(provider); this._editorWidget.revealLine(lineNumber); this._editorWidget.setSelection({ startLineNumber: lineNumber, startColumn: 1, endLineNumber: lineNumber, endColumn: 1 }); this.show(provider, undefined, undefined, lineNumber); this._updateContextKeys(provider, true); }"}
{"_id":"q-en-vscode-1bd1ffe0ef61396eff5dde6e87b95ae91bbd5ae1e9c36f88069bd47a521ddb58","text":"} async acceptInput() { assertType(this._activeSession); assertType(this._widget); await this._sessionCtor; assertType(this._activeSession); this._warmupRequestCts?.dispose(true); this._warmupRequestCts = undefined; this._activeSession.addInput(new SessionPrompt(this._widget.inlineChatWidget.value));"}
{"_id":"q-en-vscode-1be4bdf272c4c4d09b0d767eb0b4dcbc22c3bbc80842fec0e7a9f5db1fb2bee9","text":"{ \"displayName\": \"Markdown Math\", \"description\": \"Adds math support to Markdown in notebooks.\", \"config.markdown.math.enabled\": \"Enable/disable rendering math in the built-in Markdown preview.\" \"config.markdown.math.enabled\": \"Enable/disable rendering math in the built-in Markdown preview.\", \"config.markdown.math.macros\": \"A collection of custom macros. Each macro is a key-value pair where the key is a new command name and the value is the expansion of the macro.\" }"}
{"_id":"q-en-vscode-1bea1833304eef9ad6f9e42c75478430cd47af6282ed695a267205069cd467f2","text":"const config = workspace.getConfiguration('git', Uri.file(this.repository.root)); const showActionButton = config.get<{ publish: boolean }>('showActionButton', { publish: true }); // Branch does have an upstream, commit/merge/rebase is in progress, or the button is disabled if (this.state.HEAD?.upstream || this.state.isCommitInProgress || this.state.isMergeInProgress || this.state.isRebaseInProgress || !showActionButton.publish) { return undefined; } // Not a branch (tag, detached), branch does have an upstream, commit/merge/rebase is in progress, or the button is disabled if (!this.state.HEAD?.name || this.state.HEAD?.upstream || this.state.isCommitInProgress || this.state.isMergeInProgress || this.state.isRebaseInProgress || !showActionButton.publish) { return undefined; } // Button icon const icon = this.state.isSyncInProgress ? '$(sync~spin)' : '$(cloud-upload)';"}
{"_id":"q-en-vscode-1beacb0df57aa75ac00ea05c69b026801606a7cea53f74d5ad79a996c64535c5","text":"return (listener: (e: T) => any, thisArgs?: any, disposables?: Disposable[]) => event(e => filter(e) && listener.call(thisArgs, e), null, disposables); } export function runAndSubscribeEvent(event: Event, handler: (e: T) => any, initial: T): IDisposable; export function runAndSubscribeEvent(event: Event, handler: (e: T | undefined) => any): IDisposable; export function runAndSubscribeEvent(event: Event, handler: (e: T | undefined) => any, initial?: T): IDisposable { handler(initial); return event(e => handler(e)); } export function anyEvent(...events: Event[]): Event { return (listener: (e: T) => any, thisArgs?: any, disposables?: Disposable[]) => { const result = combinedDisposable(events.map(event => event(i => listener.call(thisArgs, i))));"}
{"_id":"q-en-vscode-1c05235b3001e4dc7dd768d0543a628bf042840f0a469a8344d3645ccfb27b8c","text":"let mut addr = url::Url::parse(\"https://insiders.vscode.dev\").unwrap(); { let mut ps = addr.path_segments_mut().unwrap(); ps.push(extension_name); ps.push(\"tunnel\"); ps.push(tunnel_name); for segment in &dir { let as_str = segment.to_string_lossy();"}
{"_id":"q-en-vscode-1c19ea03297a8469705f1f64fa82c707a7f19fe10707ddd83c0087a658ddfd44","text":"return super.saveTextEditorViewState(arg1); } if (arg1 instanceof UntitledEditorInput && !arg1.isDisposed()) { if ((arg1 instanceof UntitledEditorInput || arg1 instanceof ResourceEditorInput) && !arg1.isDisposed()) { return super.saveTextEditorViewState(arg1.getResource().toString()); } }"}
{"_id":"q-en-vscode-1c4afcb6eadcd6869eb6d44ea5fb7bde587459d26b0506f3560cdba37867e8c8","text":"} const firstPageElement = this.view.element(firstPageIndex); const currentlyFocusedElement = this.getFocusedElements()[0]; const currentlyFocusedElementIndex = this.getFocus()[0]; const currentlyFocusedElement = this.view.element(currentlyFocusedElementIndex); if (currentlyFocusedElement !== firstPageElement) { if (currentlyFocusedElement !== firstPageElement && currentlyFocusedElementIndex >= firstPageIndex) { const firstGoodPageIndex = this.findNextIndex(firstPageIndex, false, filter); if (firstGoodPageIndex > -1 && currentlyFocusedElement !== this.view.element(firstGoodPageIndex)) {"}
{"_id":"q-en-vscode-1c6bde67d922e63e47799ceb23f70bd9e9f38f205f5224d4ceb9d3ac014d8fad","text":"this._register(this.instantiationService.createInstance(NotebookEditorContextKeys, this)); this._notebookOutline = this.instantiationService.createInstance(NotebookCellOutlineProvider, this, OutlineTarget.QuickPick); this._notebookOutline = this._register(this.instantiationService.createInstance(NotebookCellOutlineProvider, this, OutlineTarget.QuickPick)); this._register(notebookKernelService.onDidChangeSelectedNotebooks(e => { if (isEqual(e.notebook, this.viewModel?.uri)) {"}
{"_id":"q-en-vscode-1c6db5e53def6696134bdf66dc9e6f73d040f7cb02b13d31ec6786111ddc9607","text":"path: 'tmux' } }, additionalProperties: terminalProfileSchema }, 'terminal.integrated.profiles.linux': { markdownDescription: localize("}
{"_id":"q-en-vscode-1caeb264a03c96ebfdd451b3bb4d0d92a71dfa8d4b67e72d21a868359c120f36","text":"// Based on testing, the trigger character is always at the end of the query. // for the ':' trigger, only return suggestions if there was a '@' before it in the same word. const queryParts = query.split(/s/g); if (queryParts[queryParts.length - 1].startsWith('@')) { if (queryParts[queryParts.length - 1].startsWith(`@${LANGUAGE_SETTING_TAG}`)) { return this.languageService.getRegisteredLanguageIds().map(languageId => { return `@${LANGUAGE_SETTING_TAG}${languageId} `; }).sort(); } else if (queryParts[queryParts.length - 1].startsWith('@')) { return SettingsEditor2.SUGGESTIONS.filter(tag => !query.includes(tag)).map(tag => tag.endsWith(':') ? tag : tag + ' '); } return [];"}
{"_id":"q-en-vscode-1cb4f3c202945e4b133e905cf298cdb5c264c27c0b4de3844d9c85da48166ed1","text":"for (( i=0; i < \"${#str}\"; ++i )); do byte=\"${str:$i:1}\" # Escape backslashes, semi-colons specially, then special ASCII chars below space (0x20) # Escape backslashes, semi-colons specially, then special ASCII chars below space (0x20). # This is done in an unwrapped loop instead of using printf as the latter is very slow. if [ \"$byte\" = \"\" ]; then token=\"\" elif [ \"$byte\" = \";\" ]; then token=\"x3b\" elif (( $(builtin printf '%d' \"'$byte\") < 31 )); then token=$(builtin printf 'x%02x' \"'$byte\") elif [ \"$byte\" = $'x00' ]; then token=\"x00\" elif [ \"$byte\" = $'x01' ]; then token=\"x01\" elif [ \"$byte\" = $'x02' ]; then token=\"x02\" elif [ \"$byte\" = $'x03' ]; then token=\"x03\" elif [ \"$byte\" = $'x04' ]; then token=\"x04\" elif [ \"$byte\" = $'x05' ]; then token=\"x05\" elif [ \"$byte\" = $'x06' ]; then token=\"x06\" elif [ \"$byte\" = $'x07' ]; then token=\"x07\" elif [ \"$byte\" = $'x08' ]; then token=\"x08\" elif [ \"$byte\" = $'x09' ]; then token=\"x09\" elif [ \"$byte\" = $'x0a' ]; then token=\"x0a\" elif [ \"$byte\" = $'x0b' ]; then token=\"x0b\" elif [ \"$byte\" = $'x0c' ]; then token=\"x0c\" elif [ \"$byte\" = $'x0d' ]; then token=\"x0d\" elif [ \"$byte\" = $'x0e' ]; then token=\"x0e\" elif [ \"$byte\" = $'x0f' ]; then token=\"x0f\" elif [ \"$byte\" = $'x10' ]; then token=\"x10\" elif [ \"$byte\" = $'x11' ]; then token=\"x11\" elif [ \"$byte\" = $'x12' ]; then token=\"x12\" elif [ \"$byte\" = $'x13' ]; then token=\"x13\" elif [ \"$byte\" = $'x14' ]; then token=\"x14\" elif [ \"$byte\" = $'x15' ]; then token=\"x15\" elif [ \"$byte\" = $'x16' ]; then token=\"x16\" elif [ \"$byte\" = $'x17' ]; then token=\"x17\" elif [ \"$byte\" = $'x18' ]; then token=\"x18\" elif [ \"$byte\" = $'x19' ]; then token=\"x19\" elif [ \"$byte\" = $'x1a' ]; then token=\"x1a\" elif [ \"$byte\" = $'x1b' ]; then token=\"x1b\" elif [ \"$byte\" = $'x1c' ]; then token=\"x1c\" elif [ \"$byte\" = $'x1d' ]; then token=\"x1d\" elif [ \"$byte\" = $'x1e' ]; then token=\"x1e\" elif [ \"$byte\" = $'x1f' ]; then token=\"x1f\" else token=\"$byte\" fi"}
{"_id":"q-en-vscode-1cdb41db0bd54061acdc00be1768312579d5ec87e0808674a57ac176991f9d8c","text":"this.update(); } get valueSelection() { const selection = this.ui.inputBox.getSelection(); if (!selection) { return undefined; } return [selection.start, selection.end]; } set valueSelection(valueSelection: Readonly<[number, number]> | undefined) { set valueSelection(valueSelection: Readonly<[number, number]>) { this._valueSelection = valueSelection; this.valueSelectionUpdated = true; this.update();"}
{"_id":"q-en-vscode-1d31ccdd882cb35a0cf7f5f1949b9c75fde367e6d7998298f30123f6d8fbc498","text":"@IInstantiationService instantiationService: IInstantiationService, @IWorkspaceContextService private contextService: IWorkspaceContextService, @IStorageService storageService: IStorageService, @IHistoryService private historyService: IHistoryService, @ITextResourceConfigurationService configurationService: ITextResourceConfigurationService, @IWorkbenchEditorService private editorService: IWorkbenchEditorService, @IThemeService themeService: IThemeService,"}
{"_id":"q-en-vscode-1d46ec1e2f669e95bc96b89d6e539896386a7afed533ed84d4909efeea58b354","text":"private _sortByLabel = true; private _autoFocusOnList = true; private _keepScrollPosition = false; private _itemActivation = this.ui.isScreenReaderOptimized() ? ItemActivation.NONE /* https://github.com/microsoft/vscode/issues/57501 */ : ItemActivation.FIRST; private _itemActivation = ItemActivation.FIRST; private _activeItems: T[] = []; private activeItemsUpdated = false; private activeItemsToConfirm: T[] | null = [];"}
{"_id":"q-en-vscode-1d50b3843c9bcc4259d222500e1d59977e054026e49946eea796678fbe9b5938","text":"this.element.ariaRoleDescription = localize('terminal.integrated.accessibleBuffer', 'Terminal buffer'); _instance.onDidRequestFocus(() => this.hide(true)); this.updateEditor(); this.add(this.editorWidget.onDidFocusEditorText(async () => { if (this.element.classList.contains(ClassName.Active)) { // the user has focused the editor via mouse or // Go to Command was run so we've already updated the editor return; } // if the editor is focused via tab, we need to update the model // and show it this.registerListeners(); await this.updateEditor(); this.element.classList.add(ClassName.Active); })); // xterm's initial layout call has already happened this.layout(); }"}
{"_id":"q-en-vscode-1d79e55ab58de5fc25ae2db9200d5bbb8f8e92a2ce5c2fa402c1eb765ff7a3b3","text":"\"html.mirrorCursorOnMatchingTag\": { \"type\": \"boolean\", \"scope\": \"resource\", \"default\": true, \"default\": false, \"description\": \"%html.mirrorCursorOnMatchingTag%\" }, \"html.trace.server\": {"}
{"_id":"q-en-vscode-1d94d97f1672be82b05db7e5ef3390a9625846302fe9c03a291c8e96d9aec45e","text":"return; } await ensurePublished(gitRepo, uri); if (shouldEnsurePublished) { await ensurePublished(gitRepo, uri); } let repo: { owner: string; repo: string } | undefined; gitRepo.state.remotes.find(remote => {"}
{"_id":"q-en-vscode-1d9e35d480ac9c2d1ab44fcbb30886bccc30207fb6886846f162c32d19eeebd9","text":"id: ShowCurrentReleaseNotesActionId, title: { value: localize('showReleaseNotes', \"Show Release Notes\"), mnemonicTitle: localize('mshowReleaseNotes', \"Show &&Release Notes\"), mnemonicTitle: localize({ key: 'mshowReleaseNotes', comment: ['&& denotes a mnemonic'] }, \"Show &&Release Notes\"), original: 'Show Release Notes' }, category: { value: product.nameShort, original: product.nameShort },"}
{"_id":"q-en-vscode-1e1873c2c345367e43e4dd0b48765d674def8bed5cc244c2c8cefcb60aa81388","text":"return; } await result.repository.applyStash(result.stash.index); await commands.executeCommand('workbench.action.closeActiveEditor'); await result.repository.applyStash(result.stash.index); } @command('git.stashDrop', { repository: true })"}
{"_id":"q-en-vscode-1e224a37ac62fea9aba9c4c9966d2b62c3960c7e3e9defccb5c08d961c0c6d26","text":" /*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import * as assert from 'assert'; import { Registry } from 'vs/platform/registry/common/platform'; import { IConfigurationRegistry, Extensions as ConfigurationExtensions } from 'vs/platform/configuration/common/configurationRegistry'; suite('ConfigurationRegistry', () => { const configurationRegistry = Registry.as(ConfigurationExtensions.Configuration); test('configuration override', async () => { configurationRegistry.registerConfiguration({ 'id': '_test_default', 'type': 'object', 'properties': { 'config': { 'type': 'object', } } }); configurationRegistry.registerDefaultConfigurations([{ 'config': { a: 1, b: 2 } }]); configurationRegistry.registerDefaultConfigurations([{ '[lang]': { a: 2, c: 3 } }]); assert.deepEqual(configurationRegistry.getConfigurationProperties()['config'].default, { a: 1, b: 2 }); assert.deepEqual(configurationRegistry.getConfigurationProperties()['[lang]'].default, { a: 2, c: 3 }); }); test('configuration override defaults - merges defaults', async () => { configurationRegistry.registerDefaultConfigurations([{ '[lang]': { a: 1, b: 2 } }]); configurationRegistry.registerDefaultConfigurations([{ '[lang]': { a: 2, c: 3 } }]); assert.deepEqual(configurationRegistry.getConfigurationProperties()['[lang]'].default, { a: 2, b: 2, c: 3 }); }); test('configuration defaults - overrides defaults', async () => { configurationRegistry.registerConfiguration({ 'id': '_test_default', 'type': 'object', 'properties': { 'config': { 'type': 'object', } } }); configurationRegistry.registerDefaultConfigurations([{ 'config': { a: 1, b: 2 } }]); configurationRegistry.registerDefaultConfigurations([{ 'config': { a: 2, c: 3 } }]); assert.deepEqual(configurationRegistry.getConfigurationProperties()['config'].default, { a: 2, c: 3 }); }); }); "}
{"_id":"q-en-vscode-1e43ac0b7d3799a4817edd9bdf229a0cc2068f7ed61656cb47baa8143223b4d9","text":"@IFileService private readonly fileService: IFileService ) { super(lifecycleMainService, configurationService, environmentService, requestService, logService); } initialize(): void { super.initialize(); if (getUpdateType() === UpdateType.Setup) { /* __GDPR__"}
{"_id":"q-en-vscode-1ea1374ef70874364dce0e726dde0e9b7a498931353fb218b779e79ac315c2c7","text":"@ITextFileService private readonly textFileService: ITextFileService, @IExplorerService private readonly explorerService: IExplorerService, @IUriIdentityService private readonly uriIdentityService: IUriIdentityService, @IPathService private readonly pathService: IPathService @IPathService private readonly pathService: IPathService, @IConfigurationService private readonly configurationService: IConfigurationService ) { super(TextFileEditor.ID, telemetryService, instantiationService, storageService, textResourceConfigurationService, themeService, editorService, editorGroupService);"}
{"_id":"q-en-vscode-1ea43363c1432bb049a7a72270c10727fb2bfc0dcacc806d6a251de525fb61b6","text":"for (const defaultConfiguration of defaultConfigurations) { for (const key in defaultConfiguration) { properties.push(key); this.defaultValues[key] = defaultConfiguration[key]; if (OVERRIDE_PROPERTY_PATTERN.test(key)) { this.defaultValues[key] = { ...(this.defaultValues[key] || {}), ...defaultConfiguration[key] }; const property: IConfigurationPropertySchema = { type: 'object', default: this.defaultValues[key],"}
{"_id":"q-en-vscode-1eaa64339a05af17cf637793c9d5128a31a2232206295fedc67600d905c9de13","text":"type: string - name: VSCODE_BUILD_MACOS type: boolean default: false - name: VSCODE_BUILD_MACOS_ARM64 type: boolean default: false - name: channel type: string default: stable"}
{"_id":"q-en-vscode-1ee0556c430cb39295e4ef5474d7a9a72d5b455ee3591b47ab944f4d2686a510","text":"return; } const root = element instanceof SearchResult ? null : element; this.tree.setChildren(root, this.createIterator(element, collapseResults)); if (element instanceof SearchResult) { this.tree.setChildren(null, this.createIterator(element, collapseResults)); } else { this.tree.setChildren(element, this.createIterator(element, collapseResults)); this.tree.rerender(element); } }); } }"}
{"_id":"q-en-vscode-1ef7d51773387c8b73f1312c1d88d747e4ecf60fd68ddc828af405b5562a2a9b","text":"id: 'editor.action.inlineSuggest.acceptNextWord', label: nls.localize('action.inlineSuggest.acceptNextWord', \"Accept Next Word Of Inline Suggestion\"), alias: 'Accept Next Word Of Inline Suggestion', precondition: EditorContextKeys.writable precondition: ContextKeyExpr.and(EditorContextKeys.writable, GhostTextController.inlineSuggestionVisible), kbOpts: { weight: 1000, primary: KeyMod.CtrlCmd | KeyCode.RightArrow, } }); }"}
{"_id":"q-en-vscode-1f3cdaf8408ca21ab0bcf3d34be35ed8e3deea3b6ec5585e27cb600700f57341","text":"{ \"scope\": \"markup.heading\", \"settings\": { \"fontStyle\": \"bold\", \"foreground\": \"#6796e6\" } },"}
{"_id":"q-en-vscode-1f7f0e03812975088c4192f11b52a973f31c49a1484333ef1043ecab897ce06b","text":"*/ toString(skipEncoding?: boolean): string; toJSON(): UriComponents; /** * A helper function to revive URIs. * * **Note** that this function should only be used when receiving Uri#toJSON generated data * and that it doesn't do any validation. Use {@link Uri.from} when received \"untrusted\" * uri components such as command arguments or data from storage. * * @param data The Uri components or Uri to revive. * @returns The revived Uri or undefined or null. */ static revive(data: UriComponents | Uri): Uri; static revive(data: UriComponents | Uri | undefined): Uri | undefined; static revive(data: UriComponents | Uri | null): Uri | null;"}
{"_id":"q-en-vscode-1f85882311c589e9f801aac8a9c9f4a53e85b4f89810093b91c97a568038b761","text":"isItemVisible(item: ExplorerItem): boolean; isItemCollapsed(item: ExplorerItem): boolean; hasFocus(): boolean; getFocus(): ExplorerItem[]; focusNext(): void; focusLast(): void; } function getFocus(listService: IListService): unknown | undefined {"}
{"_id":"q-en-vscode-1fb0b0922c02125a2f8dc9e67219945152226cae529c69562127791e9e5975ef","text":"export async function getInlayHints(model: ITextModel, ranges: Range[], token: CancellationToken): Promise { const datas: InlayHintsData[] = []; const providers = InlayHintsProviderRegistry.ordered(model).reverse(); const promises = flatten(providers.map(provider => ranges.map(range => Promise.resolve(provider.provideInlayHints(model, range, token)).then(result => { if (result) { datas.push({ list: result, provider }); } }, err => { onUnexpectedExternalError(err); })))); const promises = flatten(providers.map(provider => ranges.map(range => { return Promise.resolve(provider.provideInlayHints(model, range, token)).then(result => { const itemsInRange = result?.filter(hint => range.containsPosition(hint.position)); if (itemsInRange?.length) { datas.push({ list: itemsInRange, provider }); } }, err => { onUnexpectedExternalError(err); }); }))); await Promise.all(promises);"}
{"_id":"q-en-vscode-1fd8c768e136cdbec9e75db57c3d498e951e4f4bd08ef7604f041fa5190066e5","text":"box-shadow: none; } .hc-black .monaco-menu .monaco-action-bar.vertical .action-item { border: 1px solid transparent; /* prevents jumpig behaviour on hover or focus */ } .hc-black .monaco-menu .monaco-action-bar.vertical .action-item.focused { background: none; border: 1px dotted #f38518;"}
{"_id":"q-en-vscode-204571882684943416f13762ecf7382ce3987cba470b885ed63c59c5a07ba4bb","text":"return this.shouldShowCompositeBar() ? super.getVisiblePaneCompositeIds() : this.acitivityBarPart.getVisiblePaneCompositeIds(); } focusActivityBar(): void { async focusActivityBar(): Promise { if (this.configurationService.getValue(LayoutSettings.ACTIVITY_BAR_LOCATION) === ActivityBarPosition.HIDDEN) { await this.configurationService.updateValue(LayoutSettings.ACTIVITY_BAR_LOCATION, this.getRememberedActivityBarVisiblePosition()); this.onDidChangeActivityBarLocation(); } if (this.shouldShowCompositeBar()) { this.focusComositeBar(); } else { if (!this.layoutService.isVisible(Parts.ACTIVITYBAR_PART)) { this.layoutService.setPartHidden(false, Parts.ACTIVITYBAR_PART); } this.acitivityBarPart.focus(); this.acitivityBarPart.show(true); } }"}
{"_id":"q-en-vscode-2072ca7015ee161cba21a69caa7e01b76e34889fcb1874709cdac5bae741dc20","text":"import { ServiceCollection } from 'vs/platform/instantiation/common/serviceCollection'; import { IStorageService } from 'vs/platform/storage/common/storage'; import { IThemeService } from 'vs/platform/theme/common/themeService'; import { hasCustomTitlebar } from 'vs/platform/window/common/window'; import { hasNativeTitlebar } from 'vs/platform/window/common/window'; import { IEditorGroupView, IEditorPartsView } from 'vs/workbench/browser/parts/editor/editor'; import { EditorPart, IEditorPartUIState } from 'vs/workbench/browser/parts/editor/editorPart'; import { IAuxiliaryTitlebarPart } from 'vs/workbench/browser/parts/titlebar/titlebarPart';"}
{"_id":"q-en-vscode-208b53324191a7abdb3f0b91ae643ae4272cd9e55fe7137d8d4956ab2f135c99","text":"export class ExplorerViewPaneContainer extends ViewPaneContainer { private viewletVisibleContextKey: IContextKey; constructor( @IWorkbenchLayoutService layoutService: IWorkbenchLayoutService, @ITelemetryService telemetryService: ITelemetryService,"}
{"_id":"q-en-vscode-2092bf355270993df707d517984ab499d123be9f48601e8bf0f086821ec8d248","text":"import URI from 'vs/base/common/uri'; import * as errors from 'vs/base/common/errors'; import { TPromise } from 'vs/base/common/winjs.base'; import * as arrays from 'vs/base/common/arrays'; import * as objects from 'vs/base/common/objects'; import * as DOM from 'vs/base/browser/dom'; import { Separator } from 'vs/base/browser/ui/actionbar/actionbar';"}
{"_id":"q-en-vscode-20ad7bbac5b9ed98f274faede237e5d9e379cfca6b449d8905f9c44e225a5447","text":"$Nonce = $env:VSCODE_NONCE $env:VSCODE_NONCE = $null $osVersion = [System.Environment]::OSVersion.Version $isWindows10 = $IsWindows10 -and $osVersion.Major -eq 10 -and $osVersion.Minor -eq 0 -and $osVersion.Build -lt 22000 if ($env:VSCODE_ENV_REPLACE) { $Split = $env:VSCODE_ENV_REPLACE.Split(\":\") foreach ($Item in $Split) {"}
{"_id":"q-en-vscode-21068ec561b522f3932154832746e9c36414cfe5ed92d7bea930898d38dcbcf6","text":"export interface EditSession { version: number; machine?: string; folders: Folder[]; }"}
{"_id":"q-en-vscode-21117b14ee470a137f0d1f496f4c12e0e2b1827b7328bc121103d2fc541bb231","text":"return path.split('/').map((segment) => encodeURIComponent(segment)).join('/'); } export async function getLink(gitAPI: GitAPI, useSelection: boolean, hostPrefix?: string, linkType: 'permalink' | 'headlink' = 'permalink', context?: LinkContext, useRange?: boolean): Promise { export async function getLink(gitAPI: GitAPI, useSelection: boolean, shouldEnsurePublished: boolean, hostPrefix?: string, linkType: 'permalink' | 'headlink' = 'permalink', context?: LinkContext, useRange?: boolean): Promise { hostPrefix = hostPrefix ?? 'https://github.com'; const fileAndPosition = getFileAndPosition(context); if (!fileAndPosition) {"}
{"_id":"q-en-vscode-213cba58e5626ae57d366ef4b109e002dbe93583da3135518313a5d718e4483a","text":"public readonly inlineCompletionVisible = GhostTextController.inlineSuggestionVisible.bindTo(this.contextKeyService); public readonly inlineCompletionSuggestsIndentation = GhostTextController.inlineSuggestionHasIndentation.bindTo(this.contextKeyService); public readonly inlineCompletionSuggestsIndentationLessThanTabSize = GhostTextController.inlineSuggestionHasIndentationLessThanTabSize.bindTo(this.contextKeyService); public readonly inlineSuggestionJustCommitted = GhostTextController.inlineSuggestionJustCommitted.bindTo(this.contextKeyService); constructor(private readonly contextKeyService: IContextKeyService) { }"}
{"_id":"q-en-vscode-21511a386a841270fd5d841053ded93898720a82a76203867137a28a085be2b2","text":"onSelectDropDownKeyDown.filter(e => e.keyCode === KeyCode.Escape).on(e => this.onEscape(e), this, this.toDispose); onSelectDropDownKeyDown.filter(e => e.keyCode === KeyCode.UpArrow).on(this.onUpArrow, this, this.toDispose); onSelectDropDownKeyDown.filter(e => e.keyCode === KeyCode.DownArrow).on(this.onDownArrow, this, this.toDispose); onSelectDropDownKeyDown.filter(e => (e.keyCode >= KeyCode.KEY_0 && e.keyCode <= KeyCode.KEY_Z) || (e.keyCode >= KeyCode.US_SEMICOLON && e.keyCode <= KeyCode.NUMPAD_DIVIDE)).on(this.onCharacter, this, this.toDispose); // SetUp list mouse controller - control navigation, disabled items, focus"}
{"_id":"q-en-vscode-215455aba9b33a9f22f2e7d25fe52fe653bca08db2e3e5215b96bc2910a7d0c6","text":"public commitPartially(): void { this.activeModel?.commitInlineCompletionPartially(); this.activeController?.value?.contextKeys.inlineSuggestionJustCommitted.set(true); } public commit(): void { this.activeModel?.commitInlineCompletion(); this.activeController?.value?.contextKeys.inlineSuggestionJustCommitted.set(true); } public hide(): void {"}
{"_id":"q-en-vscode-21996da858dc959768aa0565231bc59fdab06447218186dba2aebf0cff271ae2","text":"import { Repository, GitResourceGroup } from './repository'; import { Model } from './model'; import { debounce } from './decorators'; import { filterEvent, dispose, anyEvent, fireEvent, PromiseSource, combinedDisposable } from './util'; import { filterEvent, dispose, anyEvent, fireEvent, PromiseSource, combinedDisposable, runAndSubscribeEvent } from './util'; import { Change, GitErrorCodes, Status } from './api/git'; class GitIgnoreDecorationProvider implements FileDecorationProvider {"}
{"_id":"q-en-vscode-22497f59934c2eff2a8ebeed1f8222dcc04de6f7762fe28f480758cc6638a33b","text":"if (isEnabled()) { const katex = require('@vscode/markdown-it-katex').default; const settingsMacros = getMacros(); const options = { globalGroup: true, macros: { ...settingsMacros } }; const options = { enableFencedBlocks: true, globalGroup: true, macros: { ...settingsMacros } }; md.core.ruler.push('reset-katex-macros', () => { options.macros = { ...settingsMacros }; });"}
{"_id":"q-en-vscode-225d53658bf0f507be286f696a309edd4038b88e1b54cf0471c28fd7ad4968f6","text":"export function registerInlineCompletionsProvider(languageId: string, provider: InlineCompletionsProvider): IDisposable; /** * Register an inlay hints provider. */ export function registerInlayHintsProvider(languageId: string, provider: InlayHintsProvider): IDisposable; /** * Contains additional diagnostic information about the context in which * a [code action](#CodeActionProvider.provideCodeActions) is run. */"}
{"_id":"q-en-vscode-2275b0411a66d42f93e1abb854b8b619665750f09fb2353a54cce42015111fa0","text":"this._accessibleViewCurrentProviderId.reset(); } show(provider?: IAccessibleContentProvider, symbol?: IAccessibleViewSymbol, showAccessibleViewHelp?: boolean): void { show(provider?: IAccessibleContentProvider, symbol?: IAccessibleViewSymbol, showAccessibleViewHelp?: boolean, lineNumber?: number): void { provider = provider ?? this._currentProvider; if (!provider) { return;"}
{"_id":"q-en-vscode-22b13318548b8b3312daf9f46ef3fe72cc01ecee1fc2938cf60fd49c56e48a59","text":"isFeatureTerminal: launchConfig.isFeatureTerminal, isExtensionOwnedTerminal: launchConfig.isExtensionOwnedTerminal, useShellEnvironment: launchConfig.useShellEnvironment, disablePersistence: launchConfig.disablePersistence }; const terminal = Promises.withAsyncBody(async r => { const terminal = await this._terminalService.createTerminal({"}
{"_id":"q-en-vscode-23073ea014c6c5cbd0b8b17e46674935237bf9ff27302fcd7c8a7af7346c650c","text":"import { Codicon } from 'vs/base/common/codicons'; import { ICodeEditor } from 'vs/editor/browser/editorBrowser'; import { IModelDecorationOptions, IModelDecorationsChangeAccessor, TrackedRangeStickiness } from 'vs/editor/common/model'; import { IModelDecorationOptions, IModelDecorationsChangeAccessor, MinimapPosition, TrackedRangeStickiness } from 'vs/editor/common/model'; import { ModelDecorationOptions } from 'vs/editor/common/model/textModel'; import { IDecorationProvider } from 'vs/editor/contrib/folding/browser/foldingModel'; import { localize } from 'vs/nls'; import { editorSelectionBackground, iconForeground, registerColor, transparent } from 'vs/platform/theme/common/colorRegistry'; import { registerIcon } from 'vs/platform/theme/common/iconRegistry'; import { ThemeIcon } from 'vs/platform/theme/common/themeService'; import { themeColorFromId, ThemeIcon } from 'vs/platform/theme/common/themeService'; const foldBackground = registerColor('editor.foldBackground', { light: transparent(editorSelectionBackground, 0.3), dark: transparent(editorSelectionBackground, 0.3), hcDark: null, hcLight: null }, localize('foldBackgroundBackground', \"Background color behind folded ranges. The color must not be opaque so as not to hide underlying decorations.\"), true); registerColor('editorGutter.foldingControlForeground', { dark: iconForeground, light: iconForeground, hcDark: iconForeground, hcLight: iconForeground }, localize('editorGutter.foldingControlForeground', 'Color of the folding control in the editor gutter.')); export const foldingExpandedIcon = registerIcon('folding-expanded', Codicon.chevronDown, localize('foldingExpandedIcon', 'Icon for expanded ranges in the editor glyph margin.')); export const foldingCollapsedIcon = registerIcon('folding-collapsed', Codicon.chevronRight, localize('foldingCollapsedIcon', 'Icon for collapsed ranges in the editor glyph margin.')); export const foldingManualCollapsedIcon = registerIcon('folding-manual-collapsed', foldingCollapsedIcon, localize('foldingManualCollapedIcon', 'Icon for manually collapsed ranges in the editor glyph margin.')); export const foldingManualExpandedIcon = registerIcon('folding-manual-expanded', foldingExpandedIcon, localize('foldingManualExpandedIcon', 'Icon for manually expanded ranges in the editor glyph margin.')); const foldedBackgroundMinimap = { color: themeColorFromId(foldBackground), position: MinimapPosition.Inline }; export class FoldingDecorationProvider implements IDecorationProvider { private static readonly COLLAPSED_VISUAL_DECORATION = ModelDecorationOptions.register({"}
{"_id":"q-en-vscode-231a0bc571fafb7f2238ccbd46130352a9278465c29e331917fc497c32879e6f","text":"case FileOperation.DELETE: return await this._fireWillEvent(this._onWillDeleteFile, { files: files.map(f => URI.revive(f.target)) }, timeout, token); case FileOperation.CREATE: case FileOperation.COPY: return await this._fireWillEvent(this._onWillCreateFile, { files: files.map(f => URI.revive(f.target)) }, timeout, token); } return undefined;"}
{"_id":"q-en-vscode-2371cd323ff8028730c4fc345a28cabab241b6c69713b89248694c25bce5b69e","text":"} } export class PreviousMatchFindAction extends MatchFindAction { constructor() {"}
{"_id":"q-en-vscode-237608e1a2e7b6aebe8f870747f1285fc66397661ee0951021420457a5135c36","text":"followsCaret?: boolean; ignoreCharChanges?: boolean; alwaysRevealFirst?: boolean; findResultLoop?: boolean; } const defaultOptions: Options = { followsCaret: true, ignoreCharChanges: true, alwaysRevealFirst: true alwaysRevealFirst: true, findResultLoop: true }; export interface IDiffNavigator {"}
{"_id":"q-en-vscode-23a13560b946c63cb002aeefb3dcae34a1c87cfb55288f9c378c4db6f14d3687","text":"type: 'boolean', default: typeof product.quality === 'string' && product.quality !== 'stable' // only enable as default in insiders }, [NotebookSetting.cellExecutionScroll]: { markdownDescription: nls.localize('notebook.revealNextOnExecuteBehavior.description', \"How far to scroll when revealing the next cell upon exectuting {0}.\", 'notebook.cell.executeAndSelectBelow'), [NotebookSetting.scrollToRevealCell]: { markdownDescription: nls.localize('notebook.scrolling.revealCellBehavior.description', \"How far to scroll when revealing the selected, e.g. when exectuting {0}.\", 'notebook.cell.executeAndSelectBelow'), type: 'string', enum: ['fullCell', 'firstLine', 'none'], markdownEnumDescriptions: [ nls.localize('notebook.revealNextOnExecuteBehavior.fullCell.description', 'Scroll to fully reveal the next cell.'), nls.localize('notebook.revealNextOnExecuteBehavior.firstLine.description', 'Scroll to reveal the first line of the next cell.'), nls.localize('notebook.revealNextOnExecuteBehavior.nonedescription', 'Do not scroll to reveal the next cell.'), nls.localize('notebook.scrolling.revealCellBehavior.fullCell.description', 'Scroll to fully reveal the selected cell.'), nls.localize('notebook.scrolling.revealCellBehavior.firstLine.description', 'Scroll to reveal the first line of the selected cell.'), nls.localize('notebook.scrolling.revealCellBehavior.nonedescription', 'Do not scroll to reveal the selected cell.'), ], default: 'fullCell' }, [NotebookSetting.anchorToFocusedCell]: { markdownDescription: nls.localize('notebook.scrolling.anchorToFocusedCell.description', \"Keep the focused cell steady while surrounding cells change size\"), type: 'string', enum: ['auto', 'true', 'false'], markdownEnumDescriptions: [ nls.localize('notebook.scrolling.anchorToFocusedCell.auto.description', \"Anchor to the focused cell unless {0} is set to {1}\", 'notebook.scrolling.revealCellBehavior', 'none') ], default: 'auto' } } });"}
{"_id":"q-en-vscode-241e24b39c951270c0dac89945eba877ebb1a9317fba8e61e21cf0c94d79facc","text":"private _lastLineRelativePosition: number = 0; private _hoverOnLine: number = -1; private _hoverOnColumn: number = -1; private _state: StickyScrollWidgetState | undefined; constructor( private readonly _editor: ICodeEditor"}
{"_id":"q-en-vscode-245bbb7207241a581688ca6d003d9249d5cbdb894c6dc58d22b789920c21341f","text":"thanks.removeClass('task-panel-hidden'); } yesButton.item(0).on('click', e => { yesButton.on('click', e => { if (!this.storageService.get(this.taskExperimentPart5)) { this.telemetryService.publicLog('taskPanel.yes'); this.storageService.store(this.taskExperimentPart5, true, StorageScope.GLOBAL);"}
{"_id":"q-en-vscode-247d23c3b703d7cbdb2012bc4164ae5ce36698e2076632921f6bb3504e2faa58","text":"public createExtensionTerminal(options: vscode.ExtensionTerminalOptions, internalOptions?: ITerminalInternalOptions): vscode.Terminal { const terminal = new ExtHostTerminal(this._proxy, generateUuid(), options, options.name); const p = new ExtHostPseudoterminal(options.pty); terminal.createExtensionTerminal(options.location, this._serializeParentTerminal(options, internalOptions).resolvedExtHostIdentifier, asTerminalIcon(options.iconPath), asTerminalColor(options.color)).then(id => { terminal.createExtensionTerminal(options.location, internalOptions, this._serializeParentTerminal(options, internalOptions).resolvedExtHostIdentifier, asTerminalIcon(options.iconPath), asTerminalColor(options.color)).then(id => { const disposable = this._setupExtHostProcessListeners(id, p); this._terminalProcessDisposables[id] = disposable; });"}
{"_id":"q-en-vscode-247d4a24f3fb75836873e299b9982d74b39c202dc571805efd0b9c48224ae253","text":"registerAction2(OpenResultResource); registerAction2(SetMixedLayout); registerAction2(SetColumnLayout); registerAction2(ShowHideBase); registerAction2(ShowHideAtTopBase); registerAction2(OpenMergeEditor); registerAction2(OpenBaseFile); registerAction2(ShowNonConflictingChanges); registerAction2(ShowHideBase); registerAction2(ShowHideTopBase); registerAction2(ShowHideCenterBase); registerAction2(GoToNextUnhandledConflict); registerAction2(GoToPreviousUnhandledConflict);"}
{"_id":"q-en-vscode-24dab8538e59a1d55f47b842dcdddd3e9e0cbb294970f2b4de698153ceb581f2","text":"resolved \"https://registry.yarnpkg.com/xterm-addon-unicode11/-/xterm-addon-unicode11-0.5.0.tgz#41c0d96acc1e3bb6c6596eee64e163b6bca74be7\" integrity sha512-Jm4/g4QiTxiKiTbYICQgC791ubhIZyoIwxAIgOW8z8HWFNY+lwk+dwaKEaEeGBfM48Vk8fklsUW9u/PlenYEBg== xterm-addon-webgl@0.15.0-beta.7: version \"0.15.0-beta.7\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.15.0-beta.7.tgz#ab247b499f61e8eebff92e08ec5ca999d87e06af\" integrity sha512-7WCI/D6uFNp3y9TeTsbSo1h7gCy4h/yP2lWn8ZEjCaiGvO11DbKMq17fbiwaR3YmGWXoRKkcLaNIiqxFnjKO4w== xterm-addon-webgl@0.15.0-beta.8: version \"0.15.0-beta.8\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.15.0-beta.8.tgz#2005198582f6f1f4a9b2612b9354c0bcc9f148d8\" integrity sha512-HjTr9bi3FvdOIPaaIpih6qdHX2z+H7sQPluLj5KzwCqRiEVUVRi19dl8SdHjf6dCmN3GahMhjV7D+zxHi2pLTw== xterm-headless@5.2.0-beta.30: version \"5.2.0-beta.30\" resolved \"https://registry.yarnpkg.com/xterm-headless/-/xterm-headless-5.2.0-beta.30.tgz#f40b950f744111537a6403d33782669b1149fabb\" integrity sha512-aW6yljrcuu74kxg3w1DG1CZJSz38nKY/HOX3YOOE7cqxlkVXM7lltXZFEiF0xXDR0GHcmnEwnFWqA2rDmdhoDA== xterm-headless@5.2.0-beta.33: version \"5.2.0-beta.33\" resolved \"https://registry.yarnpkg.com/xterm-headless/-/xterm-headless-5.2.0-beta.33.tgz#a1fbed45b0afbd73fbd6bdd22f1f8f7644244f7c\" integrity sha512-h9gdzCl3jGSrq7FoZ+e0qWdSYhhKA3hkyuIMelYWIMz8HihxbLAZHErYKtYyDhgXRLNM2ZpS1sjeXLrDC7m2dA== xterm@5.2.0-beta.30: version \"5.2.0-beta.30\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-5.2.0-beta.30.tgz#6f50796d1652a61b30eeed7fa2bdd9c485a7d8ee\" integrity sha512-l1YBwMnakKXd638oxbzEg9Y1sWqxcrm/q7i5gBuWaK8N7Tq1NvF51FCamxXtfdL4dostgw8WoM+/6KRlL53t6A== xterm@5.2.0-beta.33: version \"5.2.0-beta.33\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-5.2.0-beta.33.tgz#584fb261ec283573ddb9d3ef4b3ea63a9a359f81\" integrity sha512-HIkQgn0/akWLWLzUJquAeVF1/nqPgqL6KzmhkAOJbOtNHftNZbEK+lDGfzz1dUC/smpXQkKm7X2nn92h3i1tgQ== yallist@^4.0.0: version \"4.0.0\""}
{"_id":"q-en-vscode-24fad79667bd378b3ece3952e59d90ea222fc5e1df0fbad97f4aed54084a1e3f","text":"if (this._xterm.getOption('disableStdin')) { this._attachPressAnyKeyToCloseListener(); } const neverMeasureRenderTime = this._storageService.getBoolean(NEVER_MEASURE_RENDER_TIME_STORAGE_KEY, StorageScope.GLOBAL, false); if (!neverMeasureRenderTime && this._configHelper.config.rendererType === 'auto') { this._measureRenderTime(); } }); } private _measureRenderTime(): void { const textRenderLayer = (this._xterm).renderer._renderLayers[0]; const originalOnGridChanged = textRenderLayer.onGridChanged; textRenderLayer.onGridChanged = (terminal: XTermTerminal, firstRow: number, lastRow: number) => { const startTime = performance.now(); originalOnGridChanged.call(textRenderLayer, terminal, firstRow, lastRow); const renderTimeMilliseconds = performance.now() - startTime; if (renderTimeMilliseconds > SLOW_CANVAS_RENDER_THRESHOLD) { const promptChoices: IPromptChoice[] = [ { label: nls.localize('yes', \"Yes\"), run: () => { this._configurationService.updateValue('terminal.integrated.rendererType', 'dom', ConfigurationTarget.USER).then(() => { this._notificationService.info(nls.localize('terminal.rendererInAllNewTerminals', \"All newly created terminals will use the non-GPU renderer.\")); }); } } as IPromptChoice, { label: nls.localize('no', \"No\") } as IPromptChoice, { label: nls.localize('dontShowAgain', \"Don't Show Again\"), isSecondary: true, run: () => this._storageService.store(NEVER_MEASURE_RENDER_TIME_STORAGE_KEY, true) } as IPromptChoice ]; this._notificationService.prompt( Severity.Warning, nls.localize('terminal.slowRendering', 'The current standard canvas renderer for the integrated terminal appears to be slow on your computer. Using the DOM-based renderer may improve performance, do you want to switch to the DOM-based renderer? [Read more about terminal settings](https://code.visualstudio.com/docs/editor/integrated-terminal#_changing-how-the-terminal-is-rendered).'), promptChoices ); } // Restore original function textRenderLayer.onGridChanged = originalOnGridChanged; }; } public registerLinkMatcher(regex: RegExp, handler: (url: string) => void, matchIndex?: number, validationCallback?: (uri: string, callback: (isValid: boolean) => void) => void): number { return this._linkHandler.registerCustomLinkHandler(regex, handler, matchIndex, validationCallback); }"}
{"_id":"q-en-vscode-2527c0beea19bc38e55aafc9da87c05a9aa479ef7926c81a676d6d1fe7c8dba6","text":"} async delete(item: ITrustedUriItem) { this.table.focusNext(); await this.workspaceTrustManagementService.setUrisTrust([item.uri], false); if (this.table.getFocus().length === 0) { this.table.focusLast(); } this._onDelete.fire(item); this.table.domFocus(); } async edit(item: ITrustedUriItem, usePickerIfPossible?: boolean) {"}
{"_id":"q-en-vscode-2569fbbd7aab8687481c4f5b94a0e7089f400408da4519fb4f1b63a31445250e","text":"declare namespace monaco { // THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. export type Thenable = PromiseLike; export interface IDisposable {"}
{"_id":"q-en-vscode-258d12004a7a7b12832c59fcf06261f0da22b346d2b17b68874a915b081361e2","text":"overviewRulerLanes: IEditorOption; parameterHints: IEditorOption; peekWidgetDefaultFocus: IEditorOption; definitionLinkOpensInPeek: IEditorOption; quickSuggestions: IEditorOption; quickSuggestionsDelay: IEditorOption; readOnly: IEditorOption;"}
{"_id":"q-en-vscode-2597e6c44ee26e74fb713fe9ae6b988301977e1af4176ee37dd8e656faad613d","text":"\"name\": \"Markup Headings\", \"scope\": \"markup.heading\", \"settings\": { \"fontStyle\": \"bold\", \"foreground\": \"#268BD2\" } },"}
{"_id":"q-en-vscode-25d1c25df1aba5b59d11b4cc00b9cea34bc321c909954f8429b070238ba1eb64","text":"private launchJsonChanged: boolean; private firstSessionStart: boolean; private previousState: debug.State; private fetchThreadsSchedulers: Map; constructor( @IStorageService private storageService: IStorageService,"}
{"_id":"q-en-vscode-26334f1a6ea3dc21728121084bd5231aa06e617da1cb91a76fc01838e1d29d23","text":"import { ICodeEditorService } from 'vs/editor/browser/services/codeEditorService'; import { mainWindow } from 'vs/base/browser/window'; import { TestCodeEditorService } from 'vs/editor/test/browser/editorTestServices'; import { IInlineChatService } from 'vs/workbench/contrib/inlineChat/common/inlineChat'; import { InlineChatServiceImpl } from 'vs/workbench/contrib/inlineChat/common/inlineChatServiceImpl'; import { INotebookCellOutlineProviderFactory, NotebookCellOutlineProviderFactory } from 'vs/workbench/contrib/notebook/browser/viewModel/notebookOutlineProviderFactory'; import { ILanguageDetectionService } from 'vs/workbench/services/languageDetection/common/languageDetectionWorkerService';"}
{"_id":"q-en-vscode-264cde82d052e7fcbac7ee884816856917e349dccfc7666c8093c23caaa530d9","text":"\"editorGutter.deletedBackground\": \"#f85149\", \"editorGutter.modifiedBackground\": \"#005FB8\", \"editorIndentGuide.background\": \"#D3D3D3\", \"editorInlayHint.background\": \"#8b949e33\", \"editorInlayHint.foreground\": \"#8b949e\", \"editorInlayHint.typeBackground\": \"#8b949e33\", \"editorInlayHint.typeForeground\": \"#8b949e\", \"editorInlayHint.background\": \"#8b949e1b\", \"editorInlayHint.typeBackground\": \"#8b949e1b\", \"editorLineNumber.activeForeground\": \"#171184\", \"editorLineNumber.foreground\": \"#6e7681\", \"editorOverviewRuler.border\": \"#0000001a\","}
{"_id":"q-en-vscode-265faed8781d50b9a7453ac838bc9a2b728ebb75ed9869864b0cffed126cad2b","text":"this.setInput(input); this.disposables.push(this.onDidChangeSelection(event => { extensionsWorkdbenchService.open(event.elements[0], event.browserEvent instanceof MouseEvent && (event.browserEvent.ctrlKey || event.browserEvent.metaKey || event.browserEvent.altKey)); if (event.browserEvent && event.browserEvent instanceof KeyboardEvent) { extensionsWorkdbenchService.open(event.elements[0].extension, false); } })); } } No newline at end of file"}
{"_id":"q-en-vscode-2683e50d07886814840c51740860b0196f45d6f816e6b03099a6435793109a18","text":"private resetCenteredEditor(layout: boolean = true) { this.centeredEditorLeftMarginRatio = 0.5; this.centeredEditorPreferedSize = Math.floor(this.dimension.width * EditorGroupsControl.GOLDEN_RATIO); this.centeredEditorPreferredSize = Math.floor(this.dimension.width * EditorGroupsControl.GOLDEN_RATIO); if (layout) { this.layoutContainers(); } this.storageServise.remove(EditorGroupsControl.CENTERED_EDITOR_LAYOUT_DATA_STORAGE_KEY, StorageScope.GLOBAL); this.storageService.remove(EditorGroupsControl.CENTERED_EDITOR_LAYOUT_DATA_STORAGE_KEY, StorageScope.GLOBAL); } public getInstantiationService(position: Position): IInstantiationService {"}
{"_id":"q-en-vscode-2697979a7f8c3dc7b0d49b8fade3e73d101e1a125509b4c454082e46ffacb3bf","text":"description: nls.localize('search.globalFindClipboard', \"Controls whether the search view should read or modify the shared find clipboard on macOS.\"), included: platform.isMacintosh }, 'search.location': { type: 'string', enum: ['sidebar', 'panel'], default: 'sidebar', description: nls.localize('search.location', \"Controls whether the search will be shown as a view in the sidebar or as a panel in the panel area for more horizontal space.\"), deprecationMessage: nls.localize('search.location.deprecationMessage', \"This setting is deprecated. Please use the search view's context menu instead.\") }, 'search.collapseResults': { type: 'string', enum: ['auto', 'alwaysCollapse', 'alwaysExpand'],"}
{"_id":"q-en-vscode-26e07c967f45548ec589db11a48470e26a3ee0696cec95df3d3731dedeb89ef6","text":"execution_count: cell.executionSummary?.executionOrder ?? null, source: splitMultilineString(cell.value.replace(/rn/g, 'n')), outputs: (cell.outputs || []).map(translateCellDisplayOutput), metadata: metadata metadata: cellMetadata.metadata }; if (cellMetadata?.id) { codeCell.id = cellMetadata.id;"}
{"_id":"q-en-vscode-27379d983105fcb67a91743ba7aa183920094dc74d4c11be0c6c2a16fe3ef643","text":"if (editorHighlighterContrib.wordHighlighter.decorations.length > 0) { editorHighlighterContrib.wordHighlighter.decorations.clear(); editorHighlighterContrib.wordHighlighter.workerRequest = null; editorHighlighterContrib.wordHighlighter._hasWordHighlights.set(false); } }"}
{"_id":"q-en-vscode-279c23404cf56d834faaf2f410d7d9b470331b3719ec34cea591891240be130d","text":"return true; } if (!this._initialized) { return false; if (this.environmentService.extensionTestsLocationURI) { return true; // trust running tests with vscode-test } // Remote - remote authority explicitly sets workspace trust"}
{"_id":"q-en-vscode-27ab87122f85998700d9b990e70db6cea2672c63a7aeb6bfcccb81708b380d79","text":"label: markActiveWhen(currentSecurityLevel === MarkdownPreviewSecurityLevel.Strict) + localize('strict.title', 'Strict'), description: localize('strict.description', 'Only load secure content'), }, { type: MarkdownPreviewSecurityLevel.AllowInsecureLocalContent, label: markActiveWhen(currentSecurityLevel === MarkdownPreviewSecurityLevel.AllowInsecureLocalContent) + localize('insecureLocalContent.title', 'Allow insecure local content'), description: localize('insecureLocalContent.description', 'Enable loading content over http served from localhost'), }, { type: MarkdownPreviewSecurityLevel.AllowInsecureContent, label: markActiveWhen(currentSecurityLevel === MarkdownPreviewSecurityLevel.AllowInsecureContent) + localize('insecureContent.title', 'Allow insecure content'), description: localize('insecureContent.description', 'Enable loading content over http'),"}
{"_id":"q-en-vscode-27ac81a58eecb723cf0584747f1a7fee341c7464f202b24cf0d4b71a97928416","text":"} if (size > 3 * this.minSize && size < this.centeredEditorAvailableSize) { this.centeredEditorPreferedSize = size; this.centeredEditorPreferredSize = size; position -= EditorGroupsControl.CENTERED_EDITOR_MIN_MARGIN; position = Math.min(position, this.centeredEditorAvailableSize - this.centeredEditorSize); position = Math.max(0, position);"}
{"_id":"q-en-vscode-27c4d6a7c271badf1ed7c246ee7b4a23180126bea98f4742c24ce18f253bd88b","text":"); // Apply extension environment variable collections to the environment if (!shellLaunchConfig.strictEnv) { if (shouldUseEnvironmentVariableCollection(shellLaunchConfig)) { const entries: [string, IEnvironmentVariableCollection][] = []; for (const [k, v, d] of args.envVariableCollections) { entries.push([k, { map: deserializeEnvironmentVariableCollection(v), descriptionMap: deserializeEnvironmentDescriptionMap(d) }]);"}
{"_id":"q-en-vscode-27e3d9cb200e120a597243492faac41bc8de0988059c5ea412fef9004dd33f84","text":"this._cursorBlinking = options.get(EditorOption.cursorBlinking); this._cursorStyle = options.get(EditorOption.cursorStyle); this._cursorSmoothCaretAnimation = options.get(EditorOption.cursorSmoothCaretAnimation); this._experimentalEditContextEnabled = options.get(EditorOption.experimentalEditContextEnabled); this._selectionIsEmpty = true; this._isComposingInput = false;"}
{"_id":"q-en-vscode-27f9b8e8364fb70734d1291bfd50cea1a6658f1dfbc8f33368c7f585d38772a5","text":"if (url.authority) { this._url = this.urlOrCommand; } else { const urlCommand: Promise = this.commandService.executeCommand(this.urlOrCommand); const urlCommand: Promise = this.commandService.executeCommand(this.urlOrCommand).then((result) => { // if executing this command times out, cache its value whenever it eventually resolves this._url = result; return this._url; }); // We must be defensive. The command may never return, meaning that no help at all is ever shown! const emptyString: Promise = new Promise(resolve => setTimeout(() => resolve(''), 500)); this._url = await Promise.race([urlCommand, emptyString]);"}
{"_id":"q-en-vscode-2837bc4f1b871c04d8d44a4697fb34c38169d3de0fe5aa1beff8f9be2d42a3c6","text":"let resolverData: Map | undefined; async function quickResolve(that: AbstractTaskService, identifier: string | TaskIdentifier) { async function quickResolve(that: AbstractTaskService, uri: URI | string, identifier: string | TaskIdentifier) { const foundTasks = await that._findWorkspaceTasks((task: Task | ConfiguringTask): boolean => { const taskUri = ((ConfiguringTask.is(task) || CustomTask.is(task)) ? task._source.config.workspaceFolder?.uri : undefined); const originalUri = (typeof uri === 'string' ? uri : uri.toString()); if (taskUri?.toString() !== originalUri) { return false; } if (Types.isString(identifier)) { return ((task._label === identifier) || (task.configurationProperties.identifier === identifier)); } else {"}
{"_id":"q-en-vscode-287f0a0d809fb84fa3740a8f7866352d63bdd62471f132b73cbf8b26be39ad67","text":"stickiness: TrackedRangeStickiness.AlwaysGrowsWhenTypingAtEdges, afterContentClassName: 'inline-folded', isWholeLine: true, firstLineDecorationClassName: ThemeIcon.asClassName(foldingCollapsedIcon) firstLineDecorationClassName: ThemeIcon.asClassName(foldingCollapsedIcon), }); private static readonly COLLAPSED_HIGHLIGHTED_VISUAL_DECORATION = ModelDecorationOptions.register({"}
{"_id":"q-en-vscode-291e667dea4e7c881c2f55c75b301ada257a99ffb09b8bbc6d4024943c289d91","text":"// Group editors count context groupEditorsCountContext.set(this.count); })); }; this._register(this.onDidModelChange(e => updateGroupContextKeys(e))); // Track the active editor and update context key that reflects // the dirty state of this editor this._register(this.onDidActiveEditorChange(() => { observeActiveEditor(); })); this._register(this.onDidActiveEditorChange(() => observeActiveEditor())); // Update context keys on startup observeActiveEditor(); updateGroupContextKeys({ kind: GroupModelChangeKind.EDITOR_ACTIVE }); updateGroupContextKeys({ kind: GroupModelChangeKind.GROUP_LOCKED }); } private registerContainerListeners(): void {"}
{"_id":"q-en-vscode-2921baca0a6ea8ac5a9982ed796c75408052d8a0cbfd9e541998e95f020485a8","text":"color: var(--vscode-descriptionForeground); } .monaco-workbench .merge-editor .code-view.result > .header > .description { display: inline; flex-shrink: 1; } .monaco-workbench .merge-editor .code-view.result > .header > .detail { flex-shrink: 0; } .monaco-workbench .merge-editor .code-view.result > .header > .toolbar { flex-shrink: 0; } .monaco-workbench .merge-editor .code-view > .header > span.description .codicon { font-size: 14px; color: var(--vscode-descriptionForeground);"}
{"_id":"q-en-vscode-2924088fbc9b4a047e2cf42743bc345cefb8604cdb12c74dfae36b6148373f37","text":"import { IObservableValue, MutableObservableValue, staticObservableValue } from 'vs/workbench/contrib/testing/common/observableValue'; import { IRichLocation, ISerializedTestResults, ITestItem, ITestMessage, ITestOutputMessage, ITestRunTask, ITestTaskState, ResolvedTestRunRequest, TestItemExpandState, TestMessageType, TestResultItem, TestResultState } from 'vs/workbench/contrib/testing/common/testCollection'; import { TestCoverage } from 'vs/workbench/contrib/testing/common/testCoverage'; import { maxPriority, statesInOrder } from 'vs/workbench/contrib/testing/common/testingStates'; import { maxPriority, statesInOrder, terminalStatePriorities } from 'vs/workbench/contrib/testing/common/testingStates'; export interface ITestRunTaskResults extends ITestRunTask { /**"}
{"_id":"q-en-vscode-2983851ba0f449ea9b8dac3a801150b9bf100ceb2724ad2c454e2b16535d7b9b","text":"resource: symbolToOpen.location.uri, options: { preserveFocus: options?.preserveFocus, pinned: options.keyMods.alt || this.configuration.openEditorPinned, pinned: options.keyMods.alt || options.forcePinned || this.configuration.openEditorPinned, selection: symbolToOpen.location.range ? Range.collapseToStart(symbolToOpen.location.range) : undefined } }, options.keyMods.ctrlCmd || options?.forceOpenSideBySide ? SIDE_GROUP : ACTIVE_GROUP);"}
{"_id":"q-en-vscode-298b61266300572456c01476ba689128554e5f39ab66e1b5ab5ebc9dc7435aed","text":"document.body.classList.remove('loading'); }); image.src = decodeURI(settings.src); image.src = settings.src; window.addEventListener('message', e => { switch (e.data.type) {"}
{"_id":"q-en-vscode-29b0770518afb5d9ae054d2d39eb895fbbaa2baf3d94592410a21eea3416b187","text":"notificationService.prompt(Severity.Info, localize('configuringURL', \"Configuring trust for: {0}\", resource.toString()), [{ label: 'Copy', run: () => clipboardService.writeText(resource.toString()) }]); return trustedDomains; case 'trustDomain': case 'trustSubdomain': case 'trustAll': const itemToTrust = pickedResult.id === 'trustDomain' ? domainToConfigure : pickedResult.id === 'trustSubdomain' ? topLevelDomain : '*'; case 'trust': const itemToTrust = pickedResult.toTrust; if (trustedDomains.indexOf(itemToTrust) === -1) { storageService.remove(TRUSTED_DOMAINS_CONTENT_STORAGE_KEY, StorageScope.GLOBAL); storageService.store("}
{"_id":"q-en-vscode-29dee07a6f203193a8c35400dd9de48d84c4d14468e1945f63f2f874ace86a17","text":"'application/x.notebook.stream', 'application/vnd.code.notebook.stderr', 'application/x.notebook.stderr', 'text/plain' 'text/plain', 'text/markdown', 'application/json' ];"}
{"_id":"q-en-vscode-2a042938d2d569014dfbc96817877f7a12bff1c1e81982b780b0a2649923172e","text":"import { EditorOption } from 'vs/editor/common/config/editorOptions'; import * as dom from 'vs/base/browser/dom'; import { hash } from 'vs/base/common/hash'; import { IQuickInputService, IQuickPickItem, IQuickPickSeparator } from 'vs/platform/quickinput/common/quickInput'; export class CodeLensContribution implements IEditorContribution {"}
{"_id":"q-en-vscode-2a4ab89ebff906074f05c7be045d0eb19af78625acd1c5ba6f940eb4ecddfda0","text":"import { TerminalInitialHintSettingId } from 'vs/workbench/contrib/terminalContrib/chat/common/terminalInitialHintConfiguration'; import { ChatAgentLocation, IChatAgent, IChatAgentService } from 'vs/workbench/contrib/chat/common/chatAgents'; import { IStorageService, StorageScope, StorageTarget } from 'vs/platform/storage/common/storage'; import { IContextMenuService } from 'vs/platform/contextview/browser/contextView'; import { StandardMouseEvent } from 'vs/base/browser/mouseEvent'; const $ = dom.$;"}
{"_id":"q-en-vscode-2a8865d1d294f160932d304daa9d0f45c583497d81c632801794d360d083a9a9","text":"this._keyListener = this._register(this._editorWidget.onKeyUp((e) => { if (e.keyCode === KeyCode.Escape) { this._contextViewService.hideContextView(); // Delay to allow the context view to hide #186514 setTimeout(() => provider.onClose(), 100); this._keyListener?.dispose(); } else if (e.keyCode === KeyCode.KeyD && this._configurationService.getValue(settingKey)) { this._configurationService.updateValue(settingKey, false); } else if (e.keyCode === KeyCode.KeyH && provider.options.readMoreUrl) {"}
{"_id":"q-en-vscode-2aaf5d0a2622034386021cbed918b886050efd435ba57be5660309db839479dd","text":"//TODO: update progress in a newly inserted cell below the widget instead of the fake editor const requestCts = new CancellationTokenSource(); this._activeRequestCts?.cancel(); this._activeRequestCts = new CancellationTokenSource(); const progressEdits: TextEdit[][] = []; const progressiveEditsQueue = new Queue(); const progressiveEditsClock = StopWatch.create(); const progressiveEditsAvgDuration = new MovingAverage(); const progressiveEditsCts = new CancellationTokenSource(requestCts.token); const progressiveEditsCts = new CancellationTokenSource(this._activeRequestCts.token); let progressiveChatResponse: IInlineChatMessageAppender | undefined; const progress = new AsyncProgress(async data => { // console.log('received chunk', data, request); if (requestCts.token.isCancellationRequested) { if (this._activeRequestCts?.token.isCancellationRequested) { return; }"}
{"_id":"q-en-vscode-2aca793ded5b93801c8af9006e1e319394c44eb8c22702694c048f56a628c465","text":"border-width: 0 !important; } .action-widget .monaco-list:focus:before { outline: 0 !important; } .action-widget .monaco-list .monaco-scrollable-element .monaco-list-rows { height: 100% !important; }"}
{"_id":"q-en-vscode-2ace5edcba6082cb333e948ae089ed9fcd4a29cfd40e4bf8803b80c8e3df673e","text":"private _tokenizeString(text: string, engine: MarkdownIt) { this._resetSlugCount(); return engine.parse(text.replace(UNICODE_NEWLINE_REGEX, ''), {}); return engine.parse(text, {}); } private _resetSlugCount(): void {"}
{"_id":"q-en-vscode-2af4f29ecef69cb43e3766949048d4658ffc23cf0c2ee617320a6e27c9e08675","text":"} if (!this.storeClient) { this.storeClient = new UserDataSyncStoreClient(URI.parse(this.serverConfiguration.url), this.productService, this.requestService, this.logService, this.environmentService, this.fileService, this.storageService); this.storeClient = new EditSessionsStoreClient(URI.parse(this.serverConfiguration.url), this.productService, this.requestService, this.logService, this.environmentService, this.fileService, this.storageService); this._register(this.storeClient.onTokenFailed(() => { this.logService.info('Clearing edit sessions authentication preference because of successive token failures.'); this.clearAuthenticationPreference(); })); } if (this.machineClient === undefined) { this.machineClient = new UserDataSyncMachinesService(this.environmentService, this.fileService, this.storageService, this.storeClient!, this.logService, this.productService); } // If we already have an existing auth session in memory, use that if (this.#authenticationInfo !== undefined) { return true;"}
{"_id":"q-en-vscode-2bd07009a0bc9230cdc770aa4e372edd66f8b44720371f5c71aa076b81f470ec","text":"container.style.borderColor = borderColor ? borderColor : ''; } show(): void { show(focus?: boolean): void { if (!this.content) { return; } if (this.compositeBar.value) { return; } if (!this.compositeBar.value) { this.compositeBar.value = this.createCompositeBar(); this.compositeBar.value.create(this.content); this.compositeBar.value = this.createCompositeBar(); this.compositeBar.value.create(this.content); if (this.dimension) { this.layout(this.dimension.width, this.dimension.height); } } if (this.dimension) { this.layout(this.dimension.width, this.dimension.height); if (focus) { this.focus(); } }"}
{"_id":"q-en-vscode-2d06de03a16871874fb7fd9ea80a9cb29e839125de5b2cbe67be094141720935","text":"resolved \"https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-9.0.0.tgz#313c6c8792b0507aef35aeb81b6b370b37c44d6c\" integrity sha512-Cl65diFGxz7gpwbav10HqiY/eVYTO1sjQpmRmV991Bj7wAoOAjGQ97PpQcXorDE2Uc4hnGWLY17xme+5t6MlSg== xterm-addon-canvas@0.4.0-beta.7: version \"0.4.0-beta.7\" resolved \"https://registry.yarnpkg.com/xterm-addon-canvas/-/xterm-addon-canvas-0.4.0-beta.7.tgz#ae365d8e10c900292186529f70f7f275ac94b3d5\" integrity sha512-r1hbQTsulI49orR5G3qWrJCwn2dKsEUCrgj6xsmgXuTeoUcGfed6lly+MvYlL3P8aPrxS2fC2TEzSM0Au4SX+w== xterm-addon-canvas@0.4.0-beta.9: version \"0.4.0-beta.9\" resolved \"https://registry.yarnpkg.com/xterm-addon-canvas/-/xterm-addon-canvas-0.4.0-beta.9.tgz#e570fa4592890f92cc86706f2bba0dd128a8641d\" integrity sha512-BWRVWyUW7NY2g4BBMm3ecPQvbdyKXFgABnpmh4m0TVHqFJMNeXdNuTc94KiDbE+cvw8jtAY9NC/OIM4HcgjAIQ== xterm-addon-search@0.11.0: version \"0.11.0\""}
{"_id":"q-en-vscode-2d09b61e04cd422313bb3bdb8693c88db6c19217ea281a6a14b6e020b90f6a34","text":"} } export class ShowHideAtTopBase extends Action2 { export class ShowHideTopBase extends Action2 { constructor() { super({ id: 'merge.showBaseAtTop', id: 'merge.showBaseTop', title: { value: localize('layout.showBaseAtTop', 'Show Base At Top'), original: 'Show Base At Top', value: localize('layout.showBaseTop', 'Show Base Top'), original: 'Show Base Top', }, toggled: ctxMergeEditorShowBaseAtTop.isEqualTo(true), toggled: ContextKeyExpr.and(ctxMergeEditorShowBase, ctxMergeEditorShowBaseAtTop), menu: [ { id: MenuId.EditorTitle, when: ctxIsMergeEditor, when: ContextKeyExpr.and(ctxIsMergeEditor, ctxMergeEditorLayout.isEqualTo('mixed')), group: '2_merge', order: 10, }, ], precondition: ContextKeyExpr.and(ctxIsMergeEditor, ctxMergeEditorShowBase, ctxMergeEditorLayout.isEqualTo('mixed')), }); } run(accessor: ServicesAccessor): void { const { activeEditorPane } = accessor.get(IEditorService); if (activeEditorPane instanceof MergeEditor) { activeEditorPane.toggleShowBaseAtTop(); activeEditorPane.toggleShowBaseTop(); } } } export class ShowHideCenterBase extends Action2 { constructor() { super({ id: 'merge.showBaseCenter', title: { value: localize('layout.showBaseCenter', 'Show Base Center'), original: 'Show Base Center', }, toggled: ContextKeyExpr.and(ctxMergeEditorShowBase, ctxMergeEditorShowBaseAtTop.negate()), menu: [ { id: MenuId.EditorTitle, when: ContextKeyExpr.and(ctxIsMergeEditor, ctxMergeEditorLayout.isEqualTo('mixed')), group: '2_merge', order: 11, }, ], }); } run(accessor: ServicesAccessor): void { const { activeEditorPane } = accessor.get(IEditorService); if (activeEditorPane instanceof MergeEditor) { activeEditorPane.toggleShowBaseCenter(); } } }"}
{"_id":"q-en-vscode-2d61704c5951ff86fc7a1606cc2582a6133b22e767898e8d8276a53bc3c7c214","text":"return this._remoteTerminalChannel.setTerminalLayoutInfo(layout); } public getTerminalLayoutInfo(): Promise { public async getTerminalLayoutInfo(): Promise { await this._remoteTerminalChannel?.listProcesses(true); if (!this._remoteTerminalChannel) { throw new Error(`Cannot call getActiveInstanceId when there is no remote`); }"}
{"_id":"q-en-vscode-2d6d26dd161718ee9424af6a228c7a72d6f1e362970c08ef6068e738a654a285","text":"resolved \"https://registry.yarnpkg.com/@types/mdurl/-/mdurl-1.0.2.tgz#e2ce9d83a613bacf284c7be7d491945e39e1f8e9\" integrity sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA== \"@types/uuid@^8.3.1\": version \"8.3.4\" resolved \"https://registry.yarnpkg.com/@types/uuid/-/uuid-8.3.4.tgz#bd86a43617df0594787d38b735f55c805becf1bc\" integrity sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw== detect-indent@^6.0.0: version \"6.1.0\" resolved \"https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6\" integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== uuid@^8.3.2: version \"8.3.2\" resolved \"https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2\" integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== "}
{"_id":"q-en-vscode-2d7095b7d0c4a58c4a31b365b7f09b4f6ff6ef51f60963cfadcc56d8f812b14c","text":"return; } if (e.browserEvent.defaultPrevented) { return; } const focus = e.index; if (typeof focus === 'undefined') {"}
{"_id":"q-en-vscode-2dd21ebedbfb5344d2d50a6f4611fc85021ad4e89827099bae291da6f4d03b08","text":"} private _getIcon(): TerminalIcon | undefined { const icon = this._shellLaunchConfig.icon || this._shellLaunchConfig.attachPersistentProcess?.icon; if (!icon) { return this._processManager.processState >= ProcessState.Launching ? Codicon.terminal : undefined; if (!this._icon) { this._icon = this._processManager.processState >= ProcessState.Launching ? Codicon.terminal : undefined; } return icon; return this._icon; } private _getColor(): string | undefined {"}
{"_id":"q-en-vscode-2e137beedfc523adbaa7dd05df4baf136f0d20c367c0cb523dc39ee966497144","text":"reviveBuffer: string | undefined, private _icon?: TerminalIcon, private _color?: string, name?: string, fixedDimensions?: IFixedTerminalDimensions ) { super(); if (name) { this.setTitle(name, TitleEventSource.Api); } this._logService.trace('persistentTerminalProcess#ctor', _persistentProcessId, arguments); this._wasRevived = reviveBuffer !== undefined; this._serializer = new XtermSerializer("}
{"_id":"q-en-vscode-2e8009a9d64550e43b81f940fd367a35dad1e9782d5e317895661b210a3af273","text":" fileTypesiniINIinfINFregREGlngcfgCFGurlURL.editorconfignameINIpatternscaptures1namepunctuation.definition.comment.inimatch^s*(;|#).*$n?namecomment.line.semicolon.inicaptures1namepunctuation.definition.section.ini2nameentity.section.ini3namepunctuation.definition.section.inimatch^s*([)(.*?)(])namemeta.tag.section.inicaptures1namemeta.property.ini2namepunctuation.definition.quote.ini3namekeyword.name.ini4namepunctuation.definition.quote.ini5namepunctuation.definition.equals.ini6namemeta.value.ini7namepunctuation.definition.quote.ini8namestring.name.value.ini9namepunctuation.definition.quote.ini10namecomment.declarationline.semicolon.inimatch^(s*([\"']?)(.+?)(2)s*(=))?s*(([\"']?)(.*?)(7))s*(;.*)?$n?namemeta.declaration.iniscopeNamesource.iniuuid957acd74-6d7c-4732-a25b-5f66a1e637cd "}
{"_id":"q-en-vscode-2f0922fc7aabddd4115fcccf7bf133b3050d8a1a8bef9c9b98960039d81a8c24","text":"@IPartService partService: IPartService, @IKeybindingService keybindingService: IKeybindingService, @IInstantiationService instantiationService: IInstantiationService, @IThemeService themeService: IThemeService @IThemeService themeService: IThemeService, @IContextKeyService contextKeyService: IContextKeyService, ) { super( notificationService,"}
{"_id":"q-en-vscode-2f40d7c6898d0247e2e8a286960cb0a92bf708ed3930676481f45d373be97bf2","text":"registerEditorContribution(MarkerController); registerEditorAction(NextMarkerAction); registerEditorAction(PrevMarkerAction); registerEditorAction(NextMarkerInFilesAction); registerEditorAction(PrevMarkerInFilesAction); const CONTEXT_MARKERS_NAVIGATION_VISIBLE = new RawContextKey('markersNavigationVisible', false);"}
{"_id":"q-en-vscode-2f56785438674b359d15740a6ecc18a7ac9baf2e7173922eba1e768dc49b9c55","text":"const keybindingService = accessor.get(IKeybindingService); const contextKeyService = accessor.get(IContextKeyService); const next = keybindingService.lookupKeybinding(AccessibleDiffViewerNext.id)?.getAriaLabel(); const previous = keybindingService.lookupKeybinding(AccessibleDiffViewerPrev.id)?.getAriaLabel(); if (!(editorService.activeTextEditorControl instanceof DiffEditorWidget)) { return; }"}
{"_id":"q-en-vscode-2f7c0bbfc5c8a4c66f6e7e278cf123a8d7f703643e8b4f2c70ff410d9ca8600d","text":"let debugKeybindingLabel = ''; viewsRegistry.registerViewWelcomeContent(WelcomeView.ID, { content: localize( { key: 'runAndDebugAction', comment: [ '{0} will be replaced with a keybinding', 'Please do not translate the word \"command\", it is part of our internal syntax which must not change', '{Locked=\"](command:{1})\"}' ] }, \"[Run and Debug{0}](command:{1})\", debugKeybindingLabel, DEBUG_START_COMMAND_ID), content: `[${localize('runAndDebugAction', \"Run and Debug\")}${debugKeybindingLabel}](command:${DEBUG_START_COMMAND_ID})`, when: CONTEXT_DEBUGGERS_AVAILABLE, group: ViewContentGroups.Debug, // Allow inserting more buttons directly after this one (by setting order to 1)."}
{"_id":"q-en-vscode-2f7df1e93f7570437d3bb23076cba06f77de1de2208b950b16fe5e7683306160","text":"\"vscode-proxy-agent\": \"^0.12.0\", \"vscode-regexpp\": \"^3.1.0\", \"vscode-textmate\": \"7.0.1\", \"xterm\": \"5.0.0-beta.32\", \"xterm-addon-canvas\": \"0.2.0-beta.15\", \"xterm-addon-search\": \"0.10.0-beta.3\", \"xterm-addon-serialize\": \"0.8.0-beta.3\", \"xterm-addon-unicode11\": \"0.4.0-beta.3\", \"xterm-addon-webgl\": \"0.13.0-beta.32\", \"xterm\": \"5.0.0-beta.35\", \"xterm-addon-canvas\": \"0.2.0-beta.17\", \"xterm-addon-search\": \"0.10.0-beta.5\", \"xterm-addon-serialize\": \"0.8.0-beta.5\", \"xterm-addon-unicode11\": \"0.4.0-beta.5\", \"xterm-addon-webgl\": \"0.13.0-beta.35\", \"xterm-headless\": \"5.0.0-beta.5\", \"yauzl\": \"^2.9.2\", \"yazl\": \"^2.4.3\""}
{"_id":"q-en-vscode-2f814c075909f67ae592cd30d74a4367c1d18f125fe4a08898a7014f8af0173e","text":"return undefined; } if ((resolverData === undefined) && (grouped === undefined)) { return (await quickResolve(this, identifier)) ?? fullResolve(this, uri, identifier); return (await quickResolve(this, uri, identifier)) ?? fullResolve(this, uri, identifier); } else { return fullResolve(this, uri, identifier); }"}
{"_id":"q-en-vscode-2f95a8e92847ba335070ba9ff3c5808242ee8e27a1d5848e445781b213564679","text":"private readonly _onDidChangeVisibility = this._register(new Emitter()); readonly onDidChangeVisibility = this._onDidChangeVisibility.event; private readonly _onWillPaste = this._register(new Emitter()); readonly onWillPaste = this._onWillPaste.event; private readonly _onDidPaste = this._register(new Emitter()); readonly onDidPaste = this._onDidPaste.event; constructor( private readonly _terminalShellTypeContextKey: IContextKey, private readonly _terminalInRunCommandPicker: IContextKey,"}
{"_id":"q-en-vscode-2fb0500dc82ecd53030e509cdd7e90e76b043597cb438d77539ff7c763e9fd12","text":"@IChatService chatService: IChatService, @IHoverService hoverService: IHoverService, ) { super(location, { ...options, chatWidgetViewOptions: { editorOverflowWidgetsDomNode: _parentEditor.getOverflowWidgetsDomNode() } }, instantiationService, contextKeyService, keybindingService, accessibilityService, configurationService, accessibleViewService, textModelResolverService, chatService, hoverService); super(location, { ...options, chatWidgetViewOptions: { ...options.chatWidgetViewOptions, editorOverflowWidgetsDomNode: _parentEditor.getOverflowWidgetsDomNode() } }, instantiationService, contextKeyService, keybindingService, accessibilityService, configurationService, accessibleViewService, textModelResolverService, chatService, hoverService); } // --- layout"}
{"_id":"q-en-vscode-302859ae0344fedeb02d6ae0f9801945641f696132bebd0335560f3daefc8fab","text":"export async function pickRemoteSource(model: Model, options: PickRemoteSourceOptions & { branch: true }): Promise; export async function pickRemoteSource(model: Model, options: PickRemoteSourceOptions = {}): Promise { const quickpick = window.createQuickPick<(QuickPickItem & { provider?: RemoteSourceProvider; url?: string })>(); quickpick.ignoreFocusOut = true; quickpick.title = options.title; if (options.providerName) {"}
{"_id":"q-en-vscode-304ead4b89bcb54cfc9d83fcf23c76db9ef035c693d3ae4ac4d0aed6c4e3888f","text":"this._register(this.remoteExplorerService.onEnabledPortsFeatures(() => this._proxy.$registerCandidateFinder(this.processFindingEnabled()))); } this._register(this.configurationService.onDidChangeConfiguration(async (e) => { if (e.affectsConfiguration(PORT_AUTO_FORWARD_SETTING) || e.affectsConfiguration(PORT_AUTO_SOURCE_SETTING)) { if (this.remoteExplorerService.portsFeaturesEnabled && (e.affectsConfiguration(PORT_AUTO_FORWARD_SETTING) || e.affectsConfiguration(PORT_AUTO_SOURCE_SETTING))) { return this._proxy.$registerCandidateFinder(this.processFindingEnabled()); } })); this._register(this.tunnelService.onAddedTunnelProvider(() => { return this._proxy.$registerCandidateFinder(this.processFindingEnabled()); this._register(this.tunnelService.onAddedTunnelProvider(async () => { if (this.remoteExplorerService.portsFeaturesEnabled) { return this._proxy.$registerCandidateFinder(this.processFindingEnabled()); } })); }"}
{"_id":"q-en-vscode-30aeed4e007ccdc6c46ab3256f9d6af5b56d36454d0cce6f77126706fcf62cb0","text":"} try { return super.write(resource, value, options); return await super.write(resource, value, options); } catch (error) { // In case of permission denied, we need to check for readonly"}
{"_id":"q-en-vscode-30dfdcd089d8fbe7d8a11349a6614a5d99417527bea53517a86543b1db9f0cdf","text":"if (seenVersions.has(version.version)) { return; } seenVersions.add(version.version); if (await this.isValidVersion(version, preRelease ? 'prerelease' : 'release', true, allTargetPlatforms, targetPlatform)) { result.push({ version: version.version, date: version.lastUpdated, isPreReleaseVersion: isPreReleaseVersion(version) }); seenVersions.add(version.version); } } catch (error) { /* Ignore error and skip version */ } }));"}
{"_id":"q-en-vscode-30ee40f31d7b62d28229aa910eece878bc61d215599d2a3d55471cba3a923090","text":"* or via Size to Content Width */ fixedDimensions?: IFixedTerminalDimensions; /** * Opt-out of the default terminal persistence on restart and reload */ disablePersistence?: boolean; } export interface ICreateContributedTerminalProfileOptions {"}
{"_id":"q-en-vscode-30f710f7b5109a0be2f81e4d2f369b5424a5cb8527d4b6023b820c52b29901fc","text":"\"list.activeSelectionBackground\": \"#707070\", \"list.focusBackground\": \"#707070\", \"list.inactiveSelectionBackground\": \"#4e4e4e\", \"list.hoverBackground\": \"#707070\", \"list.hoverBackground\": \"#444444\", \"list.highlightForeground\": \"#e58520\", \"button.background\": \"#565656\", \"editor.background\": \"#1e1e1e\","}
{"_id":"q-en-vscode-311cb149c1879e035882dcbf343dee717227b1cbf390bf7042b9654023a1bb34","text":"osx: string[]; windows: string[]; }; altClickMovesCursor: boolean; macOptionIsMeta: boolean; macOptionClickForcesSelection: boolean; rendererType: 'auto' | 'canvas' | 'dom' | 'experimentalWebgl';"}
{"_id":"q-en-vscode-314a1897c848a4e1a99f9c353ee39ac21307e13e3f3e54a7712dddc71d694471","text":"import { INotificationService } from 'vs/platform/notification/common/notification'; import { ILogService } from 'vs/platform/log/common/log'; import { basename } from 'vs/base/common/path'; import { IWorkingCopyService, IWorkingCopyBackup } from 'vs/workbench/services/workingCopy/common/workingCopyService'; import { IWorkingCopyService, IWorkingCopyBackup, WorkingCopyCapabilities } from 'vs/workbench/services/workingCopy/common/workingCopyService'; import { IFilesConfigurationService } from 'vs/workbench/services/filesConfiguration/common/filesConfigurationService'; import { ILabelService } from 'vs/platform/label/common/label'; import { CancellationTokenSource } from 'vs/base/common/cancellation';"}
{"_id":"q-en-vscode-314d9d4c637007f71202399049d0e37f363aebe093e81df173599ee8c193bb5d","text":"return pattern.toLowerCase(); } else if (strings.containsUppercaseCharacter(matches[0][0]) && pattern.length > 0) { return pattern[0].toUpperCase() + pattern.substr(1); } else if (matches[0][0].toUpperCase() !== matches[0][0] && pattern.length > 0) { return pattern[0].toLowerCase() + pattern.substr(1); } else { // we don't understand its pattern yet. return pattern;"}
{"_id":"q-en-vscode-3200653e581acb0460aee011b63c3467e5249a56fa2f716ca1778f6040b32ed8","text":"import { deepClone } from 'vs/base/common/objects'; import { isObject, assertIsDefined, withUndefinedAsNull, withNullAsUndefined } from 'vs/base/common/types'; import { ICodeEditor, IDiffEditor } from 'vs/editor/browser/editorBrowser'; import { IDiffEditorOptions, IEditorOptions as ICodeEditorOptions } from 'vs/editor/common/config/editorOptions'; import { IDiffEditorOptions, EditorOption, IEditorOptions as ICodeEditorOptions } from 'vs/editor/common/config/editorOptions'; import { AbstractTextEditor, IEditorConfiguration } from 'vs/workbench/browser/parts/editor/textEditor'; import { TEXT_DIFF_EDITOR_ID, IEditorFactoryRegistry, EditorExtensions, ITextDiffEditorPane, IEditorOpenContext, EditorInputCapabilities, isEditorInput, isTextEditorViewState } from 'vs/workbench/common/editor'; import { EditorInput } from 'vs/workbench/common/editor/editorInput';"}
{"_id":"q-en-vscode-3249e38a69528a683ebbc46f46ff361e0759b9d7a635423788bbb62f730efad9","text":"override async show(initialInput?: string, options?: IShowNotebookFindWidgetOptions): Promise { const searchStringUpdate = this._state.searchString !== initialInput; super.show(initialInput, options); this._state.change({ searchString: initialInput ?? '', isRevealed: true }, false); this._state.change({ searchString: initialInput ?? this._state.searchString, isRevealed: true }, false); if (typeof options?.matchIndex === 'number') { if (!this._findModel.findMatches.length) {"}
{"_id":"q-en-vscode-3265bd5c54668990a92fd1955622bb7e8573c998ab1276f989a960117351136d","text":"}); inputBox.onDidHide(() => { this.clearDecorations(editor); inputBox.dispose(); }); inputBox.show(); } private clearDecorations(editor: ICodeEditor): void { editor.changeDecorations(changeAccessor => { this._highlightDecorations = changeAccessor.deltaDecorations(this._highlightDecorations, []); }); } private addDecorations(editor: ICodeEditor, range: IRange): void { editor.changeDecorations(changeAccessor => { this._highlightDecorations = changeAccessor.deltaDecorations(this._highlightDecorations, [ { range, options: { description: 'find-match-quick-access-range-highlight', className: 'rangeHighlight', isWholeLine: true } }, { range, options: { description: 'find-match-quick-access-range-highlight-overview', overviewRuler: { color: themeColorFromId(overviewRulerRangeHighlight), position: OverviewRulerLane.Full } } } ]); }); } } export abstract class SelectionMatchFindAction extends EditorAction {"}
{"_id":"q-en-vscode-32767f0a079798c2a213b36632fbfd752ecbc86b1cca858f54403745c4f9fc07","text":"return null; } const linkUrl = this.extractLinkUrl(preprocessedLink); const linkUrl = removeLinkSuffix(preprocessedLink); if (!linkUrl) { this._resolvedLinkCache.set(link, null); return null;"}
{"_id":"q-en-vscode-32ca34c80dda9d2ad58b9b896cfb18763dd10146315db66950b223658500540e","text":"@IEnvironmentService private readonly environmentService: IEnvironmentService, @IRequestService protected requestService: IRequestService, @ILogService protected logService: ILogService, ) { ) { } /** * This must be called before any other call. This is a performance * optimization, to avoid using extra CPU cycles before first window open. * https://github.com/microsoft/vscode/issues/89784 */ initialize(): void { if (!this.environmentService.isBuilt) { return; // updates are never enabled when running out of sources }"}
{"_id":"q-en-vscode-32dd2724fbec2bec82ba3542a1e4ceaee42be95e61ff44bbd4494e8b61a8b92e","text":"import { INotificationService } from 'vs/platform/notification/common/notification'; import { IAction, Action } from 'vs/base/common/actions'; import { normalizeDriveLetter } from 'vs/base/common/labels'; import { RunOnceScheduler } from 'vs/base/common/async'; const DEBUG_BREAKPOINTS_KEY = 'debug.breakpoint'; const DEBUG_BREAKPOINTS_ACTIVATED_KEY = 'debug.breakpointactivated';"}
{"_id":"q-en-vscode-33585692863646e922816ea540861955f503dfe1644fe9c288810255f540b5c1","text":"} }); } public getLenses(): CodeLensWidget[] { return this._lenses; } } export class ShowLensesInCurrentLineCommand extends EditorCommand { public runEditorCommand(accessor: ServicesAccessor, editor: ICodeEditor, args: any): void | Promise { const quickInputService = accessor.get(IQuickInputService); const commandService = accessor.get(ICommandService); const notificationService = accessor.get(INotificationService); const lineNumber = editor.getSelection()?.positionLineNumber; const codelensController = editor.getContribution(CodeLensContribution.ID) as CodeLensContribution; const activeLensesWidgets = codelensController.getLenses().filter(lens => lens.getLineNumber() === lineNumber); const commandArguments: Map = new Map(); const items: (IQuickPickItem | IQuickPickSeparator)[] = []; activeLensesWidgets.forEach(widget => { widget.getItems().forEach(codelens => { const command = codelens.symbol.command; if (!command) { return; } items.push({ id: command.id, label: command.title }); commandArguments.set(command.id, command.arguments); }); }); // We dont want an empty picker if (!items.length) { return; } quickInputService.pick(items, { canPickMany: false }).then(item => { const id = item.id!; commandService.executeCommand(id, ...(commandArguments.get(id) || [])).catch(err => notificationService.error(err)); }); } } registerEditorContribution(CodeLensContribution.ID, CodeLensContribution); const showLensesInCurrentLineCommand = new ShowLensesInCurrentLineCommand({ id: 'codelens.showLensesInCurrentLine', precondition: undefined }); showLensesInCurrentLineCommand.register(); "}
{"_id":"q-en-vscode-335c597379ad39e6f114d3871fa7ef49a56cffd32b7bbed723c36e441afae8c1","text":"} }, { \"name\": \"Markup Headings\", \"scope\": \"markup.heading\", \"settings\": { \"fontStyle\": \"bold\" } }, { \"scope\": \"token.info-token\", \"settings\": { \"foreground\": \"#6796e6\""}
{"_id":"q-en-vscode-336a910c48795d073356730e4b10e0c1b7f364ebe909ee273eceba46f6093c32","text":"} } class ShowCodeVersion extends Action { public static readonly ID = 'workbench.action.showCodeVersion'; public static LABEL = nls.localize('version', \"Show version of '{0}' installed\", product.applicationName); constructor( id: string, label: string, @IMessageService private messageService: IMessageService ) { super(id, label); } run(): TPromise { this.messageService.show(Severity.Info, nls.localize('successFromVersion', \"'{0}' version - {1}\", product.applicationName, IPackageConfiguration.version)); return TPromise.as(null); } } if (process.platform === 'darwin') { const category = nls.localize('shellCommand', \"Shell Command\"); const workbenchActionsRegistry = Registry.as(ActionExtensions.WorkbenchActions); workbenchActionsRegistry.registerWorkbenchAction(new SyncActionDescriptor(InstallAction, InstallAction.ID, InstallAction.LABEL), 'Shell Command: Install 'code' command in PATH', category); workbenchActionsRegistry.registerWorkbenchAction(new SyncActionDescriptor(UninstallAction, UninstallAction.ID, UninstallAction.LABEL), 'Shell Command: Uninstall 'code' command from PATH', category); workbenchActionsRegistry.registerWorkbenchAction(new SyncActionDescriptor(ShowCodeVersion, ShowCodeVersion.ID, ShowCodeVersion.LABEL), 'Shell Command: Show 'code' version', category); }"}
{"_id":"q-en-vscode-338823827aaf1274b7e172dc15f6d58a913ba80b4379a3da05801b95e01ee3b2","text":"// De-prioritze auto-imports // https://github.com/microsoft/vscode/issues/40311 this.sortText = 'uffff' + tsEntry.sortText; // Render \"fancy\" when source is a workspace path const qualifierCandidate = vscode.workspace.asRelativePath(tsEntry.source); if (qualifierCandidate !== tsEntry.source) { this.label2 = { name: tsEntry.name, qualifier: qualifierCandidate }; } } else { this.sortText = tsEntry.sortText; }"}
{"_id":"q-en-vscode-33bb6028ea441588d732d404b12e3e77b11787c4d00b798b37f7a9d5aa0312bf","text":"import { INotebookKernelService } from 'vs/workbench/contrib/notebook/common/notebookKernelService'; import { IEditorService } from 'vs/workbench/services/editor/common/editorService'; export type contextMenuArg = { source?: string; type?: string; value?: string; expression?: string; language?: string; extensionId?: string }; export type contextMenuArg = { source: string; name: string; type?: string; value?: string; expression?: string; language?: string; extensionId?: string }; export class NotebookVariablesView extends ViewPane {"}
{"_id":"q-en-vscode-33bc9e7901296219aa235e2d0fc423e0c1187e34a943df49ba0fb1e2493ec59a","text":"const element = document.createElement('span'); element.classList.add('output-stream'); element.setAttribute('output-item-id', outputInfo.id); const text = outputInfo.text(); insertOutput(outputInfo.id, [text], ctx.settings.lineLimit, ctx.settings.outputScrolling, element);"}
{"_id":"q-en-vscode-33ec62a0a5e131076dbda58d076dc930c0037b23b5cc28de41a6b235245c51fc","text":"promises.push(this.uninstallInServer(server, extensions)); } await Promise.allSettled(promises); const result = await Promise.allSettled(promises); const errors = result.filter(r => r.status === 'rejected').map(r => r.reason); if (errors.length) { throw new Error(errors.map(e => e.message).join('n')); } } private async uninstallInServer(server: IExtensionManagementServer, extensions: UninstallExtensionInfo[]): Promise {"}
{"_id":"q-en-vscode-33ede6b488c4e6c44de76200e14d59a3c9722b3585caaa1eb000fcc99083f549","text":"readonly executingCommandObject: ITerminalCommand | undefined; /** The current cwd at the cursor's position. */ readonly cwd: string | undefined; /** * Whether a command is currently being input. If the a command is current not being input or * the state cannot reliably be detected the fallback of undefined will be used. */ readonly hasInput: boolean | undefined; readonly onCommandStarted: Event; readonly onCommandFinished: Event; readonly onCommandInvalidated: Event;"}
{"_id":"q-en-vscode-33f1d3072ceb83393f58f9c61fd0885b00926d9200cc375f6a15b9fc5dd2c239","text":"import { DomEmitter } from 'vs/base/browser/event'; import { CommentContextKeys } from 'vs/workbench/contrib/comments/common/commentContextKeys'; import { FileAccess } from 'vs/base/common/network'; import { COMMENTS_SECTION, ICommentsConfiguration } from 'vs/workbench/contrib/comments/common/commentsConfiguration'; class CommentsActionRunner extends ActionRunner { protected override async runAction(action: IAction, context: any[]): Promise {"}
{"_id":"q-en-vscode-3484c0eb47ac59ad93f6d7774ae39fde4992ea640e8c0fb7e68a325c774f9afb","text":"import { TreeResourceNavigator, WorkbenchTree } from 'vs/platform/list/browser/listService'; import { INotificationService, Severity } from 'vs/platform/notification/common/notification'; import { IProgressService } from 'vs/platform/progress/common/progress'; import { IPatternInfo, ISearchComplete, ISearchConfiguration, ISearchHistoryService, ISearchHistoryValues, ISearchProgressItem, ITextQuery, VIEW_ID, SearchErrorCode } from 'vs/platform/search/common/search'; import { IPatternInfo, ISearchComplete, ISearchConfiguration, ISearchHistoryService, ISearchHistoryValues, ISearchProgressItem, ITextQuery, VIEW_ID, SearchErrorCode, ISearchConfigurationProperties } from 'vs/platform/search/common/search'; import { IStorageService, StorageScope } from 'vs/platform/storage/common/storage'; import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry'; import { diffInserted, diffInsertedOutline, diffRemoved, diffRemovedOutline, editorFindMatchHighlight, editorFindMatchHighlightBorder, listActiveSelectionForeground } from 'vs/platform/theme/common/colorRegistry';"}
{"_id":"q-en-vscode-34a76792a900d93d38fb01b496c1aba40e8040d624656a1ab57ce531bd2fa3cd","text":"taskPresentationGroup: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.taskPresentationGroup.d.ts', terminalDataWriteEvent: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.terminalDataWriteEvent.d.ts', terminalDimensions: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.terminalDimensions.d.ts', terminalDisablePersistence: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.terminalDisablePersistence.d.ts', terminalNameChangeEvent: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.terminalNameChangeEvent.d.ts', testCoverage: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.testCoverage.d.ts', testObserver: 'https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.proposed.testObserver.d.ts',"}
{"_id":"q-en-vscode-3517b84fd24d63690e96daa65664eccfc963a6599d572f8114dd966de39e3839","text":"} async getRecentlyOpened(): Promise { const workspaces: Array = []; const files: IRecentFile[] = []; return this.mergeEntriesFromStorage(); } await this.addEntriesFromStorage(workspaces, files); private async mergeEntriesFromStorage(existingEntries?: IRecentlyOpened): Promise { return { workspaces, files }; } // Build maps for more efficient lookup of existing entries that // are passed in by storing based on workspace/file identifier const mapWorkspaceIdToWorkspace = new ResourceMap(uri => extUriBiasedIgnorePathCase.getComparisonKey(uri)); if (existingEntries?.workspaces) { for (const workspace of existingEntries.workspaces) { mapWorkspaceIdToWorkspace.set(this.location(workspace), workspace); } } private async addEntriesFromStorage(workspaces: Array, files: IRecentFile[]): Promise { const mapFileIdToFile = new ResourceMap(uri => extUriBiasedIgnorePathCase.getComparisonKey(uri)); if (existingEntries?.files) { for (const file of existingEntries.files) { mapFileIdToFile.set(this.location(file), file); } } // Merge in entries from storage, preserving existing known entries // Get from storage const recents = await this.getRecentlyOpenedFromStorage(); for (const recent of recents.workspaces) { const index = isRecentFolder(recent) ? this.indexOfFolder(workspaces, recent.folderUri) : this.indexOfWorkspace(workspaces, recent.workspace); if (index >= 0) { workspaces[index].label = workspaces[index].label || recent.label; const recentFromStorage = await this.getRecentlyOpenedFromStorage(); for (const recentWorkspaceFromStorage of recentFromStorage.workspaces) { const existingRecentWorkspace = mapWorkspaceIdToWorkspace.get(this.location(recentWorkspaceFromStorage)); if (existingRecentWorkspace) { existingRecentWorkspace.label = existingRecentWorkspace.label ?? recentWorkspaceFromStorage.label; } else { workspaces.push(recent); mapWorkspaceIdToWorkspace.set(this.location(recentWorkspaceFromStorage), recentWorkspaceFromStorage); } } for (const recent of recents.files) { const index = this.indexOfFile(files, recent.fileUri); if (index >= 0) { files[index].label = files[index].label || recent.label; for (const recentFileFromStorage of recentFromStorage.files) { const existingRecentFile = mapFileIdToFile.get(this.location(recentFileFromStorage)); if (existingRecentFile) { existingRecentFile.label = existingRecentFile.label ?? recentFileFromStorage.label; } else { files.push(recent); mapFileIdToFile.set(this.location(recentFileFromStorage), recentFileFromStorage); } } return { workspaces: [...mapWorkspaceIdToWorkspace.values()], files: [...mapFileIdToFile.values()] }; } private async getRecentlyOpenedFromStorage(): Promise {"}
{"_id":"q-en-vscode-3528a417a50e4f629ccc267fb4d6dce8d50ba3dcf545ca5aafc492863d3d7918","text":"import { CancellationToken } from 'vs/base/common/cancellation'; import { IQuickPickItem, IPickOptions, IInputOptions, IQuickNavigateConfiguration, IQuickPick, IQuickInputButton, IInputBox, QuickPickInput } from 'vs/base/parts/quickinput/common/quickInput'; export { IQuickPickItem, IPickOptions, IInputOptions, IQuickNavigateConfiguration, IQuickPick, IQuickInput, IQuickInputButton, IInputBox, IQuickPickItemButtonEvent, QuickPickInput, IQuickPickSeparator, IKeyMods } from 'vs/base/parts/quickinput/common/quickInput'; export * from 'vs/base/parts/quickinput/common/quickInput'; export const IQuickInputService = createDecorator('quickInputService');"}
{"_id":"q-en-vscode-35bc88849180aaeceddd2d25e9c6b009624ac2f88cc0633c24b3ad564190ce57","text":"import { stripIcons } from 'vs/base/common/iconLabels'; import { defaultButtonStyles, defaultCheckboxStyles, defaultDialogStyles, defaultInputBoxStyles } from 'vs/platform/theme/browser/defaultStyles'; import { ResultKind } from 'vs/platform/keybinding/common/keybindingResolver'; import { IUserActivityService } from 'vs/workbench/services/userActivity/common/userActivityService'; export class ProgressService extends Disposable implements IProgressService {"}
{"_id":"q-en-vscode-35e65700226b86e7600c9260f65cefeee369831be21efe00059580af4657b8e2","text":"return; } this.isTreeLayoutViewVisible = visible; this.updateIndentStyles(this.themeService.getFileIconTheme()); this.refreshTree(); }"}
{"_id":"q-en-vscode-3602ca61cf712b0fff620f6f972e3b2993d0d50b0eae0d7abe90809fb6d2ef8a","text":".extension-list-item > .icon-container { position: relative; display: flex; align-items: center; } .extension-list-item > .icon-container > .icon { width: 42px; height: 42px; padding: 10px 14px 10px 0; padding-right: 14px; flex-shrink: 0; object-fit: contain; }"}
{"_id":"q-en-vscode-3606854b760ac0dfcb226de3a1f9379daeb6125c98ee604c450d0786a39ed0e7","text":"} } class PrevMarkerAction extends MarkerNavigationAction { class PrevMarkerInFilesAction extends MarkerNavigationAction { constructor() { super(false, { id: 'editor.action.marker.prev', label: nls.localize('markerAction.previous.label', \"Go to Previous Problem (Error, Warning, Info)\"), alias: 'Go to Previous Error or Warning', super(false, true, { id: 'editor.action.marker.prevInFiles', label: nls.localize('markerAction.previousInFiles.label', \"Go to Previous Problem in Files (Error, Warning, Info)\"), alias: 'Go to Previous Error or Warning in Files', precondition: EditorContextKeys.writable, kbOpts: { kbExpr: EditorContextKeys.focus,"}
{"_id":"q-en-vscode-361c2d99d5d5502a455aa2498bacbe7d10d9c638c82c57a4d5809322166406f8","text":"installed.forEach(ext => this.progressByEvent(`extensionInstalled:${ext.identifier.id.toLowerCase()}`)); }); this._register(this.extensionManagementService.onDidInstallExtensions(async (result) => { const hadLastFoucs = await this.hostService.hadLastFocus(); this._register(this.extensionManagementService.onDidInstallExtensions((result) => { for (const e of result) { const skipWalkthrough = e?.context?.[EXTENSION_INSTALL_SKIP_WALKTHROUGH_CONTEXT] || e?.context?.[EXTENSION_INSTALL_DEP_PACK_CONTEXT]; // If the window had last focus and the install didn't specify to skip the walkthrough // Then add it to the sessionInstallExtensions to be opened if (hadLastFoucs && !skipWalkthrough) { if (!skipWalkthrough) { this.sessionInstalledExtensions.add(e.identifier.id.toLowerCase()); } this.progressByEvent(`extensionInstalled:${e.identifier.id.toLowerCase()}`);"}
{"_id":"q-en-vscode-36561001836bb8dc29ee5a0ae38a572efea38c9b2b69b75ce5fdc71c0ce155a4","text":"import { ILanguageService } from '../../../../common/languages/language.js'; import { ILanguageConfigurationService } from '../../../../common/languages/languageConfigurationRegistry.js'; import { ViewModel } from '../../../../common/viewModel/viewModelImpl.js'; import { CursorWordEndLeft, CursorWordEndLeftSelect, CursorWordEndRight, CursorWordEndRightSelect, CursorWordLeft, CursorWordLeftSelect, CursorWordRight, CursorWordRightSelect, CursorWordStartLeft, CursorWordStartLeftSelect, CursorWordStartRight, CursorWordStartRightSelect, DeleteInsideWord, DeleteWordEndLeft, DeleteWordEndRight, DeleteWordLeft, DeleteWordRight, DeleteWordStartLeft, DeleteWordStartRight } from '../../browser/wordOperations.js'; import { CursorWordAccessibilityLeft, CursorWordAccessibilityLeftSelect, CursorWordAccessibilityRight, CursorWordAccessibilityRightSelect, CursorWordEndLeft, CursorWordEndLeftSelect, CursorWordEndRight, CursorWordEndRightSelect, CursorWordLeft, CursorWordLeftSelect, CursorWordRight, CursorWordRightSelect, CursorWordStartLeft, CursorWordStartLeftSelect, CursorWordStartRight, CursorWordStartRightSelect, DeleteInsideWord, DeleteWordEndLeft, DeleteWordEndRight, DeleteWordLeft, DeleteWordRight, DeleteWordStartLeft, DeleteWordStartRight } from '../../browser/wordOperations.js'; import { deserializePipePositions, serializePipePositions, testRepeatedActionAndExtractPositions } from './wordTestUtils.js'; import { createCodeEditorServices, instantiateTestCodeEditor, withTestCodeEditor } from '../../../../test/browser/testCodeEditor.js'; import { instantiateTextModel } from '../../../../test/common/testTextModel.js';"}
{"_id":"q-en-vscode-36fb9cdcec6aa9485fd8bd67c5746a54edee52c3c01466593114341497ea3e13","text":") { super(); this.markersStatusItem = this._register(this.statusbarService.addEntry(this.getMarkersItem(), 'status.problems', StatusbarAlignment.LEFT, 50 /* Medium Priority */)); this.markersStatusItemOff = this._register(this.statusbarService.addEntry(this.getMarkersItemTurnedOff(), 'error-kind', StatusbarAlignment.LEFT, 49)); this.markersStatusItemOff = this._register(this.statusbarService.addEntry(this.getMarkersItemTurnedOff(), 'status.problemsVisibility', StatusbarAlignment.LEFT, 49)); this._register(this.markerService.onMarkerChanged(() => { this.markersStatusItem.update(this.getMarkersItem()); this.markersStatusItemOff.update(this.getMarkersItemTurnedOff());"}
{"_id":"q-en-vscode-3716d7a0e6b15f9621ebbc20b479c45e1a69142e115c53096f684b574a286f1c","text":"this._zone.widget.updateStatus(message); } override needsMargin(): boolean { return true; } hasFocus(): boolean { return this._zone.widget.hasFocus(); }"}
{"_id":"q-en-vscode-386ede5493b2fe87afd117af578d06f715031f9998887d00faaa2f5c47528677","text":"private validateInput(inputId: string): boolean { const inputElement = (this.getElementById(inputId)); const inputValidationMessage = this.getElementById(`${inputId}-empty-error`); const descriptionShortMessage = this.getElementById(`description-short-error`); if (!inputElement.value) { inputElement.classList.add('invalid-input'); inputValidationMessage?.classList.remove('hidden'); descriptionShortMessage?.classList.add('hidden'); return false; } else { } else if (inputId === 'description' && inputElement.value.length < 10) { inputElement.classList.add('invalid-input'); descriptionShortMessage?.classList.remove('hidden'); inputValidationMessage?.classList.add('hidden'); return false; } else { inputElement.classList.remove('invalid-input'); inputValidationMessage?.classList.add('hidden'); if (inputId === 'description') { descriptionShortMessage?.classList.add('hidden'); } return true; } }"}
{"_id":"q-en-vscode-38a76264ca0f98fd917c69881a3448a25fa6ccbc6ea383b0f495ebb2eb381a06","text":"paddingOnRow?: boolean; ariaLabel?: string; keyboardSupport?: boolean; preventRootFocus?: boolean; } export interface ITreeStyles {"}
{"_id":"q-en-vscode-38c0e94d2a3b0329c370de6e2694c18a71147016dd15f7ed4cad8da6a8a71b90","text":"import { ITextEditorOptions } from 'vs/platform/editor/common/editor'; import { IPaneCompositePartService } from 'vs/workbench/services/panecomposite/browser/panecomposite'; import { IPathService } from 'vs/workbench/services/path/common/pathService'; import { IConfigurationService } from 'vs/platform/configuration/common/configuration'; /** * An implementation of editor for file system resources."}
{"_id":"q-en-vscode-38d194c45dc71946d6f01ed0e84846a8938cd3e52af36a25a191f2ddce5341ff","text":"'onSettingChanged:workbench.colorTheme', 'onCommand:workbench.action.selectTheme' ], when: '!accessibilityModeEnabled', media: { type: 'markdown', path: 'theme_picker', } }, {"}
{"_id":"q-en-vscode-39b3f3384dfa8c12e0060eef9536d2e46b01d479a6d240038277eb213349760c","text":"id: MenuId.NotebookCellTitle, when: ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, NOTEBOOK_EDITOR_EDITABLE), group: CellOverflowToolbarGroups.Copy, order: 3, }, keybinding: platform.isNative ? undefined : { when: ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, ContextKeyExpr.not(InputFocusedContextKey)),"}
{"_id":"q-en-vscode-39caeefa1db4c131f5f5cf7278455c221ed8fdf27721433ff719774047c285a6","text":"return this._overflowContainer; } override getControl(): NotebookEditorWidget | undefined { return undefined; override getControl(): INotebookTextDiffEditor | undefined { return this; } protected override setEditorVisible(visible: boolean, group: IEditorGroup | undefined): void {"}
{"_id":"q-en-vscode-39e02169af7340d07c920d46ad16fd88af3c3fdb402eb2b871c7be1f56504eca","text":"constructor( private readonly _diff: IMergedEnvironmentVariableCollectionDiff, private readonly _terminalId: number, @ITerminalService private readonly _terminalService: ITerminalService @ITerminalService private readonly _terminalService: ITerminalService, @IExtensionService private readonly _extensionService: IExtensionService ) { }"}
{"_id":"q-en-vscode-39fc4c4d9e1a7d8aa06714fa8b3307c778ff0483d3c87e5600e12a45fad91de2","text":"resetScrollbarVisibility(): void { this._wrapperElement.classList.remove('force-scrollbar'); } setParentContextKeyService(parentContextKeyService: IContextKeyService): void { this._scopedContextKeyService.updateParent(parentContextKeyService); } } class TerminalInstanceDragAndDropController extends Disposable implements dom.IDragAndDropObserverCallbacks {"}
{"_id":"q-en-vscode-3a5f16f3899b0e56f83894ac457e1f196ff7adf2ed76034fb52bff9c6c0f8b76","text":"}, dataOverrides); if (issueReporterData.extensionId) { const extensionExists = extensionData.some(extension => extension.id === issueReporterData.extensionId); const extensionExists = extensionData.some(extension => extension.id.toLowerCase() === issueReporterData.extensionId?.toLowerCase()); if (!extensionExists) { console.error(`Extension with ID ${issueReporterData.extensionId} does not exist.`); }"}
{"_id":"q-en-vscode-3a6297f9490cd9f26aba35d52503a5851ea3ba0c4f2b2becff3de3814955cd1a","text":"//#region Workspaces History async addRecentlyOpened(recentToAdd: IRecent[]): Promise { const workspaces: Array = []; const files: IRecentFile[] = []; let workspaces: Array = []; let files: IRecentFile[] = []; for (const recent of recentToAdd) { // Workspace if (isRecentWorkspace(recent)) { if (!this.workspacesManagementMainService.isUntitledWorkspace(recent.workspace) && this.indexOfWorkspace(workspaces, recent.workspace) === -1) { if (!this.workspacesManagementMainService.isUntitledWorkspace(recent.workspace) && !this.containsWorkspace(workspaces, recent.workspace)) { workspaces.push(recent); } } // Folder else if (isRecentFolder(recent)) { if (this.indexOfFolder(workspaces, recent.folderUri) === -1) { if (!this.containsFolder(workspaces, recent.folderUri)) { workspaces.push(recent); } } // File else { const alreadyExistsInHistory = this.indexOfFile(files, recent.fileUri) >= 0; const alreadyExistsInHistory = this.containsFile(files, recent.fileUri); const shouldBeFiltered = recent.fileUri.scheme === Schemas.file && WorkspacesHistoryMainService.COMMON_FILES_FILTER.indexOf(basename(recent.fileUri)) >= 0; if (!alreadyExistsInHistory && !shouldBeFiltered) {"}
{"_id":"q-en-vscode-3a6a0f755cf47d9784a9cbbc9c49f90ca0f7eae5b51c8e78cd93e81f9e9689ae","text":" /*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { ExtensionContext, NotebookDocument, NotebookDocumentChangeEvent, NotebookEdit, workspace, WorkspaceEdit } from 'vscode'; import { getCellMetadata } from './serializers'; import { CellMetadata } from './common'; import { getNotebookMetadata } from './notebookSerializer'; import type * as nbformat from '@jupyterlab/nbformat'; /** * Ensure all new cells in notebooks with nbformat >= 4.5 have an id. * Details of the spec can be found here https://jupyter.org/enhancement-proposals/62-cell-id/cell-id.html# */ export function ensureAllNewCellsHaveCellIds(context: ExtensionContext) { workspace.onDidChangeNotebookDocument(onDidChangeNotebookCells, undefined, context.subscriptions); } function onDidChangeNotebookCells(e: NotebookDocumentChangeEvent) { const nbMetadata = getNotebookMetadata(e.notebook); if (!isCellIdRequired(nbMetadata)) { return; } e.contentChanges.forEach(change => { change.addedCells.forEach(cell => { const cellMetadata = getCellMetadata(cell); if (cellMetadata?.id) { return; } const id = generateCellId(e.notebook); const edit = new WorkspaceEdit(); // Don't edit the metadata directly, always get a clone (prevents accidental singletons and directly editing the objects). const updatedMetadata: CellMetadata = { ...JSON.parse(JSON.stringify(cellMetadata || {})) }; updatedMetadata.id = id; edit.set(cell.notebook.uri, [NotebookEdit.updateCellMetadata(cell.index, { ...(cell.metadata), custom: updatedMetadata })]); workspace.applyEdit(edit); }); }); } /** * Cell ids are required in notebooks only in notebooks with nbformat >= 4.5 */ function isCellIdRequired(metadata: Pick, 'nbformat' | 'nbformat_minor'>) { if ((metadata.nbformat || 0) >= 5) { return true; } if ((metadata.nbformat || 0) === 4 && (metadata.nbformat_minor || 0) >= 5) { return true; } return false; } function generateCellId(notebook: NotebookDocument) { while (true) { // Details of the id can be found here https://jupyter.org/enhancement-proposals/62-cell-id/cell-id.html#adding-an-id-field, // & here https://jupyter.org/enhancement-proposals/62-cell-id/cell-id.html#updating-older-formats const id = generateUuid().replace(/-/g, '').substring(0, 8); let duplicate = false; for (let index = 0; index < notebook.cellCount; index++) { const cell = notebook.cellAt(index); const existingId = getCellMetadata(cell)?.id; if (!existingId) { continue; } if (existingId === id) { duplicate = true; break; } } if (!duplicate) { return id; } } } /** * Copied from src/vs/base/common/uuid.ts */ function generateUuid() { // use `randomValues` if possible function getRandomValues(bucket: Uint8Array): Uint8Array { for (let i = 0; i < bucket.length; i++) { bucket[i] = Math.floor(Math.random() * 256); } return bucket; } // prep-work const _data = new Uint8Array(16); const _hex: string[] = []; for (let i = 0; i < 256; i++) { _hex.push(i.toString(16).padStart(2, '0')); } // get data getRandomValues(_data); // set version bits _data[6] = (_data[6] & 0x0f) | 0x40; _data[8] = (_data[8] & 0x3f) | 0x80; // print as string let i = 0; let result = ''; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += '-'; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += '-'; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += '-'; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += '-'; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; result += _hex[_data[i++]]; return result; } "}
{"_id":"q-en-vscode-3a7a49b887b9364ccb952aed0571e524bae8edfb8d8a2f994ad9f8e41b3c81ef","text":"this._widget?.inlineChatWidget.updateInfo(!this._activeSession.lastExchange ? localize('thinking', \"Thinkingu2026\") : ''); this._ctxHasActiveRequest.set(true); const reply = await raceCancellationError(Promise.resolve(task), requestCts.token); const reply = await raceCancellationError(Promise.resolve(task), this._activeRequestCts.token); if (progressiveEditsQueue.size > 0) { // we must wait for all edits that came in via progress to complete await Event.toPromise(progressiveEditsQueue.onDrained);"}
{"_id":"q-en-vscode-3a834cb8b906a6d248a00a5b86f13f5163e7ce4cceefb655e92ab36afa5661e9","text":"import { extractGitHubRemotesFromGitConfig } from 'vs/workbench/contrib/url/browser/trustedDomains'; function linkAllowedByRules(link: string, rules: string[]) { assert.ok(isURLDomainTrusted(URI.parse(link), rules), `Linkn${link}n should be protected by rulesn${JSON.stringify(rules)}`); assert.ok(isURLDomainTrusted(URI.parse(link), rules), `Linkn${link}n should be allowed by rulesn${JSON.stringify(rules)}`); } function linkNotAllowedByRules(link: string, rules: string[]) { assert.ok(!isURLDomainTrusted(URI.parse(link), rules), `Linkn${link}n should NOT be protected by rulesn${JSON.stringify(rules)}`); assert.ok(!isURLDomainTrusted(URI.parse(link), rules), `Linkn${link}n should NOT be allowed by rulesn${JSON.stringify(rules)}`); } suite('GitHub remote extraction', () => {"}
{"_id":"q-en-vscode-3a96a1e99b7a0cbff549c6e6c1c512f4cd32adf8d415a5a673e8d06fa3f0f721","text":"return null; } } /** * Returns url from link as link may contain line and column information. * * @param link url link which may contain line and column number. */ extractLinkUrl(link: string): string | null { const matches: string[] | null = this._localLinkRegex.exec(link); if (!matches) { return null; } return matches[1]; } } export interface ILineColumnInfo {"}
{"_id":"q-en-vscode-3aa27e49c1db03919a86506e812d3b042265847dc007481dc219a8b0731bcbf9","text":"type: 'boolean', default: false }, 'terminal.integrated.altClickMovesCursor': { description: localize('terminal.integrated.altClickMovesCursor', \"If enabled, alt/option + click will move the prompt cursor to position underneath the mouse. This may not work reliably depending on your shell.\"), type: 'boolean', default: true }, 'terminal.integrated.copyOnSelection': { description: localize('terminal.integrated.copyOnSelection', \"Controls whether text selected in the terminal will be copied to the clipboard.\"), type: 'boolean',"}
{"_id":"q-en-vscode-3acbf3137306315ac6fc702886573ac4ad884e5623290f08bb55a01868027269","text":"resolved \"https://registry.yarnpkg.com/@vscode/vscode-languagedetection/-/vscode-languagedetection-1.0.21.tgz#89b48f293f6aa3341bb888c1118d16ff13b032d3\" integrity sha512-zSUH9HYCw5qsCtd7b31yqkpaCU6jhtkKLkvOOA8yTrIRfBSOFb8PPhgmMicD7B/m+t4PwOJXzU1XDtrM9Fd3/g== \"@xterm/addon-canvas@0.6.0-beta.19\": version \"0.6.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/addon-canvas/-/addon-canvas-0.6.0-beta.19.tgz#5f8896b884d2a558a28eb197f7f4766ac37d33a0\" integrity sha512-i+26DqYgI/PZViCiEK4Vu8c4Fi5J0i+TwnFfBDLcumHH07Al1uRd5BRaVg/i93vk6bRyEIOiOiIToXSf37ov/w== \"@xterm/addon-image@0.7.0-beta.17\": version \"0.7.0-beta.17\" resolved \"https://registry.yarnpkg.com/@xterm/addon-image/-/addon-image-0.7.0-beta.17.tgz#bc3d6f09619ef1f3b68c7009d29ee14003a26b30\" integrity sha512-nnHVoYVoh+CpT4FQN/ALKesr96YvdVNUzQRQo4aAARUKst5DFaHQX9Yn/qLDN5s0WCqI3bgIEo8UAakfHITumA== \"@xterm/addon-search@0.14.0-beta.19\": version \"0.14.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/addon-search/-/addon-search-0.14.0-beta.19.tgz#2bc13378765f0d5e72d9bcb7887e23eee31de7eb\" integrity sha512-Y1pPdtdZj0xRQ/Is4jdO0dyZe+uM6AhWi3v2U4sdJmhz2mxVe/HAKBHkx6tyfMtX9ge/9ZYajd/Sy8rkjIFdmQ== \"@xterm/addon-serialize@0.12.0-beta.19\": version \"0.12.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/addon-serialize/-/addon-serialize-0.12.0-beta.19.tgz#465a9525a420b8f0d12eed419d6e051f9a887814\" integrity sha512-3v6a4/4gxAwoyJsBp6vJBofymgTH8paSHl8K2uQfFuLosOavNyCtrNPiNne7tpppK6t8zCDJ/mVrXNptz4Mlsg== \"@xterm/addon-unicode11@0.7.0-beta.19\": version \"0.7.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/addon-unicode11/-/addon-unicode11-0.7.0-beta.19.tgz#0e81775f84346a97c657fb4cd7702de1cfe4b83f\" integrity sha512-U5O+JLklO4qtptWAWUw14QRWdalLl0bFAQxLKuTtDmusgfn33pNDRD6RH3R+IHhO2e6svAwrw27OcCEcdn0AJQ== \"@xterm/addon-webgl@0.17.0-beta.19\": version \"0.17.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/addon-webgl/-/addon-webgl-0.17.0-beta.19.tgz#fefe44c20b4d4d070363e03ae33087505a88807e\" integrity sha512-L59l9Cd4KTMCwnw2HPi/cUgH4iL5dK7VERK/wSTWEGYMOi3WGTmXqsg8ftfR2jFC9P33eqYNVJDmbr+pF0XsDg== \"@xterm/xterm@5.4.0-beta.19\": version \"5.4.0-beta.19\" resolved \"https://registry.yarnpkg.com/@xterm/xterm/-/xterm-5.4.0-beta.19.tgz#5c9c5cacd0cf2a0719086ce03ab035480b1cfd96\" integrity sha512-Rx/Y/y3YGjpiW6IUq8UlE6qrTYuUlEfpVg/BS6kIPr8/cUOchE1fsKWCMxz/u2bIyQyEovRi892iYcQJ4scstw== \"@xterm/addon-canvas@0.6.0-beta.20\": version \"0.6.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/addon-canvas/-/addon-canvas-0.6.0-beta.20.tgz#078dddef70caf880b2cb121fdda37d301fc13156\" integrity sha512-tHhsuqElE7LNiDJPbZzgVpmbcG2Dk6i2vh1EI+DzSByUWScDqLoeJbVPE5Xd2UW2garo24lxErpnIAlsytcA3A== \"@xterm/addon-image@0.7.0-beta.18\": version \"0.7.0-beta.18\" resolved \"https://registry.yarnpkg.com/@xterm/addon-image/-/addon-image-0.7.0-beta.18.tgz#588ea2d0841cff48c63bde1bfcdf56e9494dc6af\" integrity sha512-+HQ+IBmHPelzjRJ5zO3XkjbeQNr2Zrf5wAlbPhy4EGSD0mDCqHJSfzZ8wKrhx7t8qpfiA8eTpWu/M76WsEnlnA== \"@xterm/addon-search@0.14.0-beta.20\": version \"0.14.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/addon-search/-/addon-search-0.14.0-beta.20.tgz#cac366b1be1eb02cf9fe9537933f26f227d030c8\" integrity sha512-1LOL/OzWSrCBpndiBeeE2S1rxtKKgU1ucYFSG3P68W0J4VQz/Ksci1BgDKsgspj9jzpsGhdql3zwa5WEM7n4Pg== \"@xterm/addon-serialize@0.12.0-beta.20\": version \"0.12.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/addon-serialize/-/addon-serialize-0.12.0-beta.20.tgz#5fe126194ff4dc466b92a0946e081e039a14ad21\" integrity sha512-GdRCQDjLyVNBxCFnhfCWsMmuqv2PryUkOaNl4z5MqB5lBUkiEnRNY0u/s5f34+2zrijp3h0O/f9JDLW4gSUQgw== \"@xterm/addon-unicode11@0.7.0-beta.20\": version \"0.7.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/addon-unicode11/-/addon-unicode11-0.7.0-beta.20.tgz#5d3c97320898dd6766f2dc127deb4f071c8698c2\" integrity sha512-4/uwJ6lV/xJplT7hJc7sO4Im4XNvEXHnUEFIs03FFp8ZUfu3U6wcBk6/GoKMwJKJtGVNxotiD6ZzJ5v8IBH6nA== \"@xterm/addon-webgl@0.17.0-beta.20\": version \"0.17.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/addon-webgl/-/addon-webgl-0.17.0-beta.20.tgz#443845ac5ac755cf762b105ed237b30426b07137\" integrity sha512-iqvXNSTfKIcO9FBraNwdO/ixPrTHok8CBN/wjlnGLv0ZMc4zLAiKE8+PHyg9ZY38QJfS+4Ouo8KsuZwoOYfnNA== \"@xterm/xterm@5.4.0-beta.20\": version \"5.4.0-beta.20\" resolved \"https://registry.yarnpkg.com/@xterm/xterm/-/xterm-5.4.0-beta.20.tgz#28bbbbc73eceb6ef3e1e095de195cf849d0cbfb6\" integrity sha512-nkY91qBy5pe1HlW9LOoLcyG6v4teEsliEtUVshAO42NrJDaPniSn28O5m5832UjZOdjLCY58QlcBkZUquODGrQ== jschardet@3.0.0: version \"3.0.0\""}
{"_id":"q-en-vscode-3afa0769457c0e12746a81d1e60a515da6c40d6f6d0faebdb9835d3665219848","text":"_serviceBrand: undefined; protected readonly url: string | undefined; protected url: string | undefined; private _state: State = State.Uninitialized;"}
{"_id":"q-en-vscode-3b38e81b04f12e021584afb51151c6ec967bd35c9cbcc81fde2dd8d5efebd213","text":"ZDOTDIR=$VSCODE_ZDOTDIR fi if [[ -f $USER_ZDOTDIR/.zsh_history ]]; then if [[ -f $USER_ZDOTDIR/.zsh_history && -z HISTFILE ]]; then HISTFILE=$USER_ZDOTDIR/.zsh_history fi fi"}
{"_id":"q-en-vscode-3b6d96f6d9f8d561580690f33047194d9209c204f4b52a9f451393a9a409198d","text":"export function activate(context: vscode.ExtensionContext) { const serializer = new NotebookSerializer(context); ensureAllNewCellsHaveCellIds(context); keepNotebookModelStoreInSync(context); context.subscriptions.push(vscode.workspace.registerNotebookSerializer('jupyter-notebook', serializer, { transientOutputs: false, transientCellMetadata: {"}
{"_id":"q-en-vscode-3b7181134cb943576924f8efcee6ff677dfd3a281f8b275dae4b5c5141a5e303","text":"import { score } from 'vs/editor/common/languageSelector'; import { Emitter } from 'vs/base/common/event'; import { withNullAsUndefined } from 'vs/base/common/types'; import { IUriIdentityService } from 'vs/platform/uriIdentity/common/uriIdentity'; function createProviderComparer(uri: URI): (a: QuickDiffProvider, b: QuickDiffProvider) => number { return (a, b) => {"}
{"_id":"q-en-vscode-3bcb739c6406c7a661713e5f5226e40716a120b16ab4f18b6eff3ca4a6133595","text":"constructor(label: string | CompletionItemLabel, values: ChatVariableValue[]); } export type ChatExtendedRequestHandler = (request: ChatRequest, context: ChatContext, response: ChatExtendedResponseStream, token: CancellationToken) => ProviderResult; export type ChatExtendedRequestHandler = (request: ChatRequest, context: ChatContext, response: ChatExtendedResponseStream, token: CancellationToken) => ProviderResult; export namespace chat { /**"}
{"_id":"q-en-vscode-3bcee21cc99eeb609e4a1a29ce4afc5c10ec519ea501ec596adc2dd6fe49b763","text":"margin-left: 0.8em; } .search-view.wide .foldermatch .badge, .search-view.wide .filematch .badge { .search-view .foldermatch .badge, .search-view .filematch .badge { margin-left: 10px; }"}
{"_id":"q-en-vscode-3bff03073f192e1d26813fc3e123b1b1978ef2c14845e62cca9ef996c0158a3e","text":"'disable-inspect': { type: 'boolean' }, 'force-user-env': { type: 'boolean' }, // chromium flags 'no-proxy-server': { type: 'boolean' }, 'proxy-server': { type: 'string' }, 'proxy-bypass-list': { type: 'string' }, 'proxy-pac-url': { type: 'string' }, 'js-flags': { type: 'string' }, // chrome js flags 'inspect': { type: 'string' }, 'inspect-brk': { type: 'string' }, 'nolazy': { type: 'boolean' }, // node inspect '_urls': { type: 'string[]' },"}
{"_id":"q-en-vscode-3c37e5bc2a3cf0c3e224ea0e8666af1fc49dfdb98213ee7610b75059d381615e","text":"resolved \"https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f\" integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= xterm-addon-canvas@0.2.0-beta.15: version \"0.2.0-beta.15\" resolved \"https://registry.yarnpkg.com/xterm-addon-canvas/-/xterm-addon-canvas-0.2.0-beta.15.tgz#de863e46410b1de357b153abf1984227777760e4\" integrity sha512-E1pNCDSVTINchwWLysZ9ZD/BPv1WLGV52xRHB00US1PHHELbhtvms+6dZ44WZEDXhtfpptRZ1VBx+QpvfJIuvw== xterm-addon-search@0.10.0-beta.3: version \"0.10.0-beta.3\" resolved \"https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.10.0-beta.3.tgz#5194434d86105637c71f6f20139a9d0b5c1a956a\" integrity sha512-UeGm/ymnp7HUYJJtsP0D+bljOWbdk3MctcLJ+0jv8AmU6YlAzJFtouvYSQrD5SAMyht5CRsvjzFgqic9X02JYg== xterm-addon-serialize@0.8.0-beta.3: version \"0.8.0-beta.3\" resolved \"https://registry.yarnpkg.com/xterm-addon-serialize/-/xterm-addon-serialize-0.8.0-beta.3.tgz#47ade3fedacbb75bd26e63cfe0120586623e0e4f\" integrity sha512-gvfempZCYuAhLqN4O6fA2TuoavPjOxFKlh8hLcOzPackiLUhwKr1jQpDXcnq8VgqUiGgb+XNZpPEbI0Q7EhTgA== xterm-addon-unicode11@0.4.0-beta.3: version \"0.4.0-beta.3\" resolved \"https://registry.yarnpkg.com/xterm-addon-unicode11/-/xterm-addon-unicode11-0.4.0-beta.3.tgz#f350184155fafd5ad0d6fbf31d13e6ca7dea1efa\" integrity sha512-FryZAVwbUjKTmwXnm1trch/2XO60F5JsDvOkZhzobV1hm10sFLVuZpFyHXiUx7TFeeFsvNP+S77LAtWoeT5z+Q== xterm-addon-webgl@0.13.0-beta.32: version \"0.13.0-beta.32\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.13.0-beta.32.tgz#ae7335f788ae611733e03f6ca38280ab7b86d212\" integrity sha512-xOudNzYXaRh9QZ+IigXM5EB3bM8l3/F8F35EpJRYvvsylVxiB6Km8X8l7+nxlWt+uYdnHZs0ka2rvtL8kOP/uw== xterm-addon-canvas@0.2.0-beta.17: version \"0.2.0-beta.17\" resolved \"https://registry.yarnpkg.com/xterm-addon-canvas/-/xterm-addon-canvas-0.2.0-beta.17.tgz#e84a86530b20bd3edcce16b4566f346cd186ab4d\" integrity sha512-2ukPdCA92VTFYQRE56ylzvI3cfaQYDWd/Mc4jlEItI6sV/EA5RnUbbP+2sFIx0JlmHK6nVYXXNY2p6QRB7MRew== xterm-addon-search@0.10.0-beta.5: version \"0.10.0-beta.5\" resolved \"https://registry.yarnpkg.com/xterm-addon-search/-/xterm-addon-search-0.10.0-beta.5.tgz#a2cb16bda4ddf8783b80433155ad94f5822271f8\" integrity sha512-kjog7cm1iEZ2XyQFVs3KAvoI2pKoX0cq2WWjL0FuXYXpKQ9vXmfrWSR7PiJ6zpTIRvr6UtaSGKhmZVHLNA79WA== xterm-addon-serialize@0.8.0-beta.5: version \"0.8.0-beta.5\" resolved \"https://registry.yarnpkg.com/xterm-addon-serialize/-/xterm-addon-serialize-0.8.0-beta.5.tgz#3d2f3be173f4f1c31ae7bf25179e8ecddf2b33b2\" integrity sha512-rkSUaO1XBcy3ipScZMA5PrOKu/DfXo8XC/V7hZlhMiBNbZKlbk2rFb3X0FB1f07hw7oEkHLjuIJEY5Qtxfe9/w== xterm-addon-unicode11@0.4.0-beta.5: version \"0.4.0-beta.5\" resolved \"https://registry.yarnpkg.com/xterm-addon-unicode11/-/xterm-addon-unicode11-0.4.0-beta.5.tgz#3900e66f10d2e506133b61d7421aab6878d32665\" integrity sha512-+g+fuxAd/tkCEJ/jhdnebXKtdPrhsu4VKWNnB/3qM35GbuGQOasmYFYnKL+HYZMpbQ6YqeZcXTVg/wnCTttz0g== xterm-addon-webgl@0.13.0-beta.35: version \"0.13.0-beta.35\" resolved \"https://registry.yarnpkg.com/xterm-addon-webgl/-/xterm-addon-webgl-0.13.0-beta.35.tgz#98b5dc102583120de25c7c6e0f35cd34ab6bef98\" integrity sha512-powgeb3ifEZK7zWwLJuE8YRz/Z0UzDrrVA9NTx9mH7+vWxrGt9ZgroychoeCqZBvKMofiUM5vlf1oWdSmsMfzw== xterm-headless@5.0.0-beta.5: version \"5.0.0-beta.5\" resolved \"https://registry.yarnpkg.com/xterm-headless/-/xterm-headless-5.0.0-beta.5.tgz#e29b6c5081f31f887122b7263ba996b0c46b3c22\" integrity sha512-CMQ1+prBNF92oBMeZzc2rfTcmOaCGfwwSaoPYNTjyziZT6mZsEg7amajYkb0YAnqJ29MFm4kPGZbU78/dX4k2A== xterm@5.0.0-beta.32: version \"5.0.0-beta.32\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-5.0.0-beta.32.tgz#62bb9902429c0055fd2fd85c9eecfbf1756ed31c\" integrity sha512-OAM1GaBs/chK63Cr86XbVhfVCLLXLpNxxFrv3RK9xoyb9dwiY3gaMxK9jeGzTnrbGLWJb+k5nxaC0rx2YsHvUA== xterm@5.0.0-beta.35: version \"5.0.0-beta.35\" resolved \"https://registry.yarnpkg.com/xterm/-/xterm-5.0.0-beta.35.tgz#3bbf5780c98aaaa6476e7590dff1d8f5014fce9d\" integrity sha512-tzJTel1E/FmB0VQDb44xApVB+ln+BifIbHD4V9x9Z3D9m1cMmPHy8J8efdILkn1TxXGlCl7VC35nG122Qq5exw== yallist@^4.0.0: version \"4.0.0\""}
{"_id":"q-en-vscode-3c3994a75e605a67853fe7a2520ff94bfe84096dc6341846e2f3132e619693e0","text":"\"configuration.markdown.links.openLocation.currentGroup\": \"Open links in the active editor group.\", \"configuration.markdown.links.openLocation.beside\": \"Open links beside the active editor.\", \"configuration.markdown.suggest.paths.enabled.description\": \"Enable/disable path suggestions for markdown links\", \"configuration.markdown.editor.drop.enabled\": \"Enable/disable dropping into the markdown editor to insert shift. Requires enabling `#workbenck.experimental.editor.dropIntoEditor.enabled#`.\", \"configuration.markdown.editor.drop.enabled\": \"Enable/disable dropping into the markdown editor to insert shift. Requires enabling `#workbench.experimental.editor.dropIntoEditor.enabled#`.\", \"configuration.markdown.editor.pasteLinks.enabled\": \"Enable/disable pasting files into a Markdown editor inserts Markdown links.\", \"configuration.markdown.experimental.validate.enabled.description\": \"Enable/disable all error reporting in Markdown files.\", \"configuration.markdown.experimental.validate.referenceLinks.enabled.description\": \"Validate reference links in Markdown files, e.g. `[link][ref]`. Requires enabling `#markdown.experimental.validate.enabled#`.\","}
{"_id":"q-en-vscode-3c8b11a338f1825f57e5be1bbf512770d3dd386a3dcc8cb84409d5d8e53a9d63","text":"this.centerInputVertically(); } protected override _onWidth(widthInPixel: number): void { if (typeof this.heightInPx === 'number') { this._doLayout(this.heightInPx, widthInPixel); } } private createBreakpointInput(container: HTMLElement): void { const scopedContextKeyService = this.contextKeyService.createScoped(container); this.toDispose.push(scopedContextKeyService);"}
{"_id":"q-en-vscode-3c957aa9592a3e7ef134d19c568e1efa3c65c6c3e8ffe050c92e7db996a063de","text":"unresponsiveProfile?: IExtensionHostProfile }): Promise { let baseUrl = extension.marketplaceInfo && extension.marketplaceInfo.type === ExtensionType.User && extension.description.repository ? extension.description.repository.url : undefined; if (!baseUrl && extension.description.isBuiltin) { baseUrl = builtinExtensionIssueUrl; } if (!!baseUrl) { baseUrl = `${baseUrl.indexOf('.git') !== -1 ? baseUrl.substr(0, baseUrl.length - 4) : baseUrl}/issues/new/`; } else {"}
{"_id":"q-en-vscode-3cbf9721fbc2a6b43c480762b66b60d3ce544b119765d708361ed50fa8f7bb0b","text":"this._strategy?.cancel(); } if (this._activeSession) { this._inlineChatSessionService.releaseSession(this._activeSession); } this._activeSession = undefined; this._activeRequestCts?.cancel(); } discard() { this._strategy?.cancel(); this._activeRequestCts?.cancel(); this._widget?.discardChange(); this.dismiss(); }"}
{"_id":"q-en-vscode-3cd3ae1d686775f1d9434756b4ee0f3e5b046841bfe03d49a65385602f7972a5","text":"} if (this.watchedIconThemeLocation && this.currentIconTheme && e.contains(this.watchedIconThemeLocation, FileChangeType.UPDATED)) { await this.currentIconTheme.reload(this.fileService); _applyIconTheme(this.currentIconTheme, () => Promise.resolve(this.currentIconTheme)); _applyIconTheme(this.currentIconTheme, () => { this.doSetFileIconTheme(this.currentIconTheme); return Promise.resolve(this.currentIconTheme); }); } }); }"}
{"_id":"q-en-vscode-3cd656a3302075b269667580a2f8f67b99d8b4eeef6e0a2e4fb37c823351f268","text":"width: calc(100% - 4px); } .monaco-workbench .pane-composite-part > .title > .composite-bar-container >.composite-bar > .monaco-action-bar .action-item.icon.checked, .monaco-workbench .pane-composite-part > .header-or-footer > .composite-bar-container >.composite-bar > .monaco-action-bar .action-item.icon.checked { background-color: var(--vscode-activityBarTop-activeBackground); } .monaco-workbench .pane-composite-part > .title > .composite-bar-container > .composite-bar > .monaco-action-bar .action-item.checked .active-item-indicator:before, .monaco-workbench .pane-composite-part > .title > .composite-bar-container > .composite-bar > .monaco-action-bar .action-item:focus .active-item-indicator:before, .monaco-workbench .pane-composite-part > .header-or-footer > .composite-bar-container > .composite-bar > .monaco-action-bar .action-item.checked .active-item-indicator:before,"}
{"_id":"q-en-vscode-3cd67f4627c7336e1b7dca7288c7a8e7a9c4b307ea11be99371d99df858b226e","text":"menu: [{ id: MenuId.ViewTitle, group: 'navigation', order: 3, order: 2, when: ContextKeyExpr.and(ContextKeyExpr.equals('view', VIEW_ID), Constants.InTreeViewKey), }] });"}
{"_id":"q-en-vscode-3d349d81b0d23c2ef92ebc4d5c0e5f24c28859afd543470c5e5ee74fc43b2bb4","text":"} } ] } No newline at end of file } "}
{"_id":"q-en-vscode-3da5e4742abd84d67f5f92b1d6f32ab2c1fa3f9cf96d285b80ea7b8f48942696","text":"replace(variable: string, value: string, options: vscode.EnvironmentVariableMutatorOptions | undefined, scope: vscode.EnvironmentVariableScope | undefined): void { if (this._extension && options) { isProposedApiEnabled(this._extension, 'envCollectionOptions'); checkProposedApiEnabled(this._extension, 'envCollectionOptions'); } this._setIfDiffers(variable, { value, type: EnvironmentVariableMutatorType.Replace, options: options ?? {}, scope }); } append(variable: string, value: string, options: vscode.EnvironmentVariableMutatorOptions | undefined, scope: vscode.EnvironmentVariableScope | undefined): void { if (this._extension && options) { isProposedApiEnabled(this._extension, 'envCollectionOptions'); checkProposedApiEnabled(this._extension, 'envCollectionOptions'); } this._setIfDiffers(variable, { value, type: EnvironmentVariableMutatorType.Append, options: options ?? {}, scope }); } prepend(variable: string, value: string, options: vscode.EnvironmentVariableMutatorOptions | undefined, scope: vscode.EnvironmentVariableScope | undefined): void { if (this._extension && options) { isProposedApiEnabled(this._extension, 'envCollectionOptions'); checkProposedApiEnabled(this._extension, 'envCollectionOptions'); } this._setIfDiffers(variable, { value, type: EnvironmentVariableMutatorType.Prepend, options: options ?? {}, scope }); }"}
{"_id":"q-en-vscode-3dcc346251a3ad73368a4badaba60dc307e068383ddcfaf1bab5ac3a953cb574","text":"this.doCreateGridControl(options); // Centered layout widget this.centeredLayoutWidget = this._register(new CenteredViewLayout(this.container, this.gridWidgetView, this.profileMemento[EditorPart.EDITOR_PART_CENTERED_VIEW_STORAGE_KEY])); this.centeredLayoutWidget = this._register(new CenteredViewLayout(this.container, this.gridWidgetView, this.profileMemento[EditorPart.EDITOR_PART_CENTERED_VIEW_STORAGE_KEY], this._partOptions.centeredLayoutFixedWidth)); this._register(this.onDidChangeEditorPartOptions(e => this.centeredLayoutWidget.setFixedWidth(e.newPartOptions.centeredLayoutFixedWidth ?? false))); // Drag & Drop support"}
{"_id":"q-en-vscode-3df50a1509a7ef09463514584e22828ebb9a9ee556680b41e875ac3d61e3a8c8","text":"}, \"dependencies\": { \"@enonic/fnv-plus\": \"^1.3.0\", \"detect-indent\": \"^6.0.0\", \"uuid\": \"^8.3.2\" \"detect-indent\": \"^6.0.0\" }, \"devDependencies\": { \"@jupyterlab/nbformat\": \"^3.2.9\", \"@types/markdown-it\": \"12.2.3\", \"@types/uuid\": \"^8.3.1\" \"@types/markdown-it\": \"12.2.3\" }, \"repository\": { \"type\": \"git\","}
{"_id":"q-en-vscode-3e019ea6dc28cebeeab7e456bcbe8e3ef9712e95741159a4f198a89335630975","text":"baseEnv = await this._terminalProfileResolverService.getEnvironment(this.remoteAuthority); } const env = await terminalEnvironment.createTerminalEnvironment(shellLaunchConfig, envFromConfigValue, variableResolver, this._productService.version, this._configHelper.config.detectLocale, baseEnv); if (!this._isDisposed && !shellLaunchConfig.strictEnv && !shellLaunchConfig.hideFromUser) { if (!this._isDisposed && shouldUseEnvironmentVariableCollection(shellLaunchConfig)) { this._extEnvironmentVariableCollection = this._environmentVariableService.mergedCollection; this._register(this._environmentVariableService.onDidChangeCollections(newCollection => this._onEnvironmentVariableCollectionChange(newCollection)));"}
{"_id":"q-en-vscode-3e0c1dd43b0f79ae9abd687c093ee396200308fe35111b3e612c86c372b5312f","text":"return cloneAndChange(data, value => { // If it's a trusted value it means it's okay to skip cleaning so we don't clean it if (value instanceof TelemetryTrustedValue || value.hasOwnProperty('isTrustedTelemetryValue')) { if (value instanceof TelemetryTrustedValue || Object.hasOwnProperty.call(value, 'isTrustedTelemetryValue')) { return value.value; }"}
{"_id":"q-en-vscode-3e31f14e97411ded62c0bd660af5cb193b5370db2d937d95c66c51eb0091c565","text":"export const NAVIGATE_ALL_EDITORS_GROUP_PREFIX = 'edt '; export const NAVIGATE_IN_ACTIVE_GROUP_PREFIX = 'edt active '; export const OPEN_EDITOR_AT_INDEX_COMMAND_ID = 'workbench.action.openEditorAtIndex'; export interface ActiveEditorMoveArguments { to?: 'first' | 'last' | 'left' | 'right' | 'up' | 'down' | 'center' | 'position' | 'previous' | 'next'; by?: 'tab' | 'group';"}
{"_id":"q-en-vscode-3e385bd074f50bc86bfdef50a789cda389d6a9c81eb9ce92cbebc4edfbe9c274","text":"if (info.password) { inputOptions.password = info.password; } return this.quickInputService.input(inputOptions).then(resolvedInput => { return resolvedInput; return this.userInputAccessQueue.queue(() => this.quickInputService.input(inputOptions)).then(resolvedInput => { return resolvedInput as string; }); }"}
{"_id":"q-en-vscode-3e689cf54308dbbf8f8693c433fa6159e622e6a3bd07b61aaecc3f5d78d4d22e","text":"'editor.guides.highlightActiveBracketPair': { type: 'boolean', default: defaults.highlightActiveBracketPair, description: nls.localize('editor.guides.highlightActiveBracketPair', \"Controls whether bracket pair guides are enabled or not.\") description: nls.localize('editor.guides.highlightActiveBracketPair', \"Controls whether the editor should highlight the active bracket pair.\") }, 'editor.guides.indentation': { type: 'boolean',"}
{"_id":"q-en-vscode-3e6d23c1b7e0a5111d2017b08f87fb57ad31374ba262827a9b30b9226415425d","text":"} // Find actions available for menu const menuActions = this._getMenuActions(this._editor.getModel(), MenuId.EditorContext); const menuActions = this._getMenuActions(this._editor.getModel(), this._editor.isSimpleWidget ? MenuId.SimpleEditorContext : MenuId.EditorContext); // Show menu if we have actions to show if (menuActions.length > 0) {"}
{"_id":"q-en-vscode-3f371ccd77b5de3908556d58f0144f4ade5687a46e676a11dd0e3b7682461e67","text":"\"license\": \"MIT\", \"description\": \"Dependencies shared by all extensions\", \"dependencies\": { \"typescript\": \"5.1.3\" \"typescript\": \"5.1.6\" }, \"scripts\": { \"postinstall\": \"node ./postinstall.mjs\""}
{"_id":"q-en-vscode-3f680d17f0ee16727ce20d017c2e65cad16ef79106d42489b6f4279684d9b617","text":"let lastTimeScrolled: number | undefined; function flagRecentlyScrolled(node: Element, deltaY?: number) { scrolledElement = node; if (!deltaY) { if (deltaY === undefined) { lastTimeScrolled = Date.now(); previousDelta = undefined; node.setAttribute('recentlyScrolled', 'true');"}
{"_id":"q-en-vscode-3f98a056005edb3daed6dde2bcaf9d902e99dcc2866b4ee538f3dc93678589f1","text":"return data; } else { const result = new Uri(data); result._formatted = (data).external; result._fsPath = (data)._sep === _pathSepMarker ? (data).fsPath : null; result._formatted = (data).external ?? null; result._fsPath = (data)._sep === _pathSepMarker ? (data).fsPath ?? null : null; return result; } }"}
{"_id":"q-en-vscode-3ff1d64b9ee3e7a1a02c33ff8f54b0e6f3e002f3628799237a230a0bf63da909","text":"getId: () => { return null; }, getControl: () => { return { getSelection: () => { return { positionLineNumber: this.mockLineNumber }; } getSelection: () => { return { positionLineNumber: this.mockLineNumber }; }, getModel: () => { return { getValueInRange: () => this.mockSelectedText }; } }; }, focus: () => { },"}
{"_id":"q-en-vscode-3ff71dedb665fc3a4a230afa1e0aaf0b760dba815451748d1a297be7a56da6f6","text":"rangeEqual(matches[i], ranges[i][0], ranges[i][1], ranges[i][2], ranges[i][3]); } }); }); test('/^/ find', () => { var ranges = [ [1, 1, 1, 1], [2, 1, 2, 1], [3, 1, 3, 1], [4, 1, 4, 1], [5, 1, 5, 1] ]; var matches = thisModel.findMatches('^', false, true, false, false); assert.equal(matches.length, ranges.length); for (var i = 0; i < matches.length; i++) { rangeEqual(matches[i], ranges[i][0], ranges[i][1], ranges[i][2], ranges[i][3]); } }); test('/$/ find', () => { var ranges = [ [1, 74, 1, 74], [2, 69, 2, 69], [3, 54, 3, 54], [4, 65, 4, 65], [5, 31, 5, 31] ]; var matches = thisModel.findMatches('$', false, true, false, false); assert.equal(matches.length, ranges.length); for (var i = 0; i < matches.length; i++) { rangeEqual(matches[i], ranges[i][0], ranges[i][1], ranges[i][2], ranges[i][3]); } }); test('/^$/ find', () => { var text = [ 'This is some foo - bar text which contains foo and bar - as in Barcelona.', '', 'And here's a dull line with nothing interesting in it', '', 'Again nothing interesting here' ]; thisModel = new Model.Model(text.join('n'), null); var ranges = [ [2, 1, 2, 1], [4, 1, 4, 1] ]; var matches = thisModel.findMatches('^$', false, true, false, false); assert.equal(matches.length, ranges.length); for (var i = 0; i < matches.length; i++) { rangeEqual(matches[i], ranges[i][0], ranges[i][1], ranges[i][2], ranges[i][3]); } }); }); "}
{"_id":"q-en-vscode-4034c492516cc4c37570d75d239cf1878569618c054d699b05dedf5c2029f4bb","text":"import { TerminalCommandTracker } from 'vs/workbench/parts/terminal/node/terminalCommandTracker'; import { TerminalProcessManager } from './terminalProcessManager'; import { IStorageService, StorageScope } from 'vs/platform/storage/common/storage'; import { execFile } from 'child_process'; // How long in milliseconds should an average frame take to render for a notification to appear // which suggests the fallback DOM-based renderer"}
{"_id":"q-en-vscode-404519baeff8f9868e50265c9c3df6eb6081b885f403dc683960199770b563ed","text":"import { IStringDictionary } from 'vs/base/common/collections'; import { localize } from 'vs/nls'; import { IConfigurationPropertySchema } from 'vs/platform/configuration/common/configurationRegistry'; import product from 'vs/platform/product/common/product'; export const enum TerminalInitialHintSettingId { Enabled = 'terminal.integrated.initialHint'"}
{"_id":"q-en-vscode-4072e4db487d70410d90ab724d4d36186adace5c80cc399e5f160db7bdf8c58f","text":"dependencies: find-up \"^3.0.0\" playwright-core@=0.15.0: version \"0.15.0\" resolved \"https://registry.yarnpkg.com/playwright-core/-/playwright-core-0.15.0.tgz#c605c98a13c81d5a2e2691f15d04758cf302c20a\" integrity sha512-uTm4PoF2U3iXkLMMG9vlTxlGfO8atQGAHDxqi8xV7hEjNSYeLTU7c6HN5zwadeHRVuBbNsZ4yqu9u4hoqC7uxQ== playwright-core@=1.0.1: version \"1.0.1\" resolved \"https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.0.1.tgz#823b6f1afa16917ffd418f3cec0c14688a985738\" integrity sha512-a71FjUDRFqWLG3VBAojVen2TaZiXkuog+ZmI0Nh0+/QndFUbbW3kameOfUTMXFvLUGWx2ipERZx6EQTJMEQDMA== dependencies: debug \"^4.1.1\" extract-zip \"^2.0.0\""}
{"_id":"q-en-vscode-40c0b82f3ce8fde8650e7cc1753cfb81be71dc0b6ddbcb363b93fdb3eaa72964","text":".filter(r => this.repositoryPanels.every(p => p.repository !== r)) .map(r => this.instantiationService.createInstance(RepositoryPanel, r, this)); // Add new selected panels // Add new selected panels and focus repository panel this.repositoryPanels = [...repositoryPanels, ...newRepositoryPanels]; newRepositoryPanels.forEach(panel => { this.addPanel(panel, panel.minimumSize, this.length); panel.repository.focus(); panel.onDidFocus(() => this.lastFocusedRepository = panel.repository); if (newRepositoryPanels.length === 1 || this.lastFocusedRepository === panel.repository) { panel.focus(); } }); // Remove unselected panels"}
{"_id":"q-en-vscode-41a85a8a5e664f38bc914308ac465ab400898df605d493c5e6e4a21dadea93c0","text":"if (!disableServiceWorker) { hostMessaging.onMessage('did-load-resource', (_event, data) => { navigator.serviceWorker.getRegistration().then(registration => { assertIsDefined(registration.active).postMessage({ channel: 'did-load-resource', data }, data.data?.buffer ? [data.data.buffer] : []); assertIsDefined(navigator.serviceWorker.controller).postMessage({ channel: 'did-load-resource', data }, data.data?.buffer ? [data.data.buffer] : []); }); }); hostMessaging.onMessage('did-load-localhost', (_event, data) => { navigator.serviceWorker.getRegistration().then(registration => { assertIsDefined(registration.active).postMessage({ channel: 'did-load-localhost', data }); assertIsDefined(navigator.serviceWorker.controller).postMessage({ channel: 'did-load-localhost', data }); }); }); navigator.serviceWorker.addEventListener('message', event => { switch (event.data.channel) {"}
{"_id":"q-en-vscode-41d2fdf0ab65ac2172410c77845b51632ae1508e5db76fe0b342bef187ee296e","text":"// We're trying to open the welcome page from the Help menu if (!selectedCategory && !selectedStep) { editorService.openEditor({ resource: GettingStartedInput.RESOURCE }); editorService.openEditor({ resource: GettingStartedInput.RESOURCE, options: { preserveFocus: toSide ?? false } }, toSide ? SIDE_GROUP : undefined); return; }"}
{"_id":"q-en-vscode-41d5d748d969564f681a23906210948555d07b36e975d9aa012085d8ebe546c3","text":"\"tas-client-umd\": \"0.1.6\", \"vscode-oniguruma\": \"1.7.0\", \"vscode-textmate\": \"9.0.0\", \"xterm\": \"5.2.0-beta.30\", \"xterm-addon-canvas\": \"0.4.0-beta.7\", \"xterm\": \"5.2.0-beta.33\", \"xterm-addon-canvas\": \"0.4.0-beta.9\", \"xterm-addon-search\": \"0.11.0\", \"xterm-addon-unicode11\": \"0.5.0\", \"xterm-addon-webgl\": \"0.15.0-beta.7\" \"xterm-addon-webgl\": \"0.15.0-beta.8\" } }"}
{"_id":"q-en-vscode-41e7502aa24d0338b6d286a26ea726a23e4f43ab84bb1e1982e3c6b1051b2648","text":"set dataProvider(dataProvider: ITreeViewDataProvider | undefined) { if (dataProvider) { if (this.visible) { this.activate(); } const self = this; this._dataProvider = new class implements ITreeViewDataProvider { private _isEmpty: boolean = true;"}
{"_id":"q-en-vscode-420c418d62e630c3b1201d7518b8add25299522546d1df904ae9d6e0c9158301","text":"this.storageService.store(walkthroughMetadataConfigurationKey, JSON.stringify([...this.metadata.entries()]), StorageScope.PROFILE, StorageTarget.USER); if (sectionToOpen && this.configurationService.getValue('workbench.welcomePage.walkthroughs.openOnInstall')) { const hadLastFoucs = await this.hostService.hadLastFocus(); if (hadLastFoucs && sectionToOpen && this.configurationService.getValue('workbench.welcomePage.walkthroughs.openOnInstall')) { type GettingStartedAutoOpenClassification = { owner: 'lramos15'; comment: 'When a walkthrthrough is opened upon extension installation';"}
{"_id":"q-en-vscode-422a1b34bb02b8888af1cb441b18a86b5b84ce87e409abd6448541265ea837f5","text":"} } abstract class AbstractLaunch { abstract class AbstractLaunch implements ILaunch { abstract readonly uri: uri; abstract readonly name: string; abstract readonly workspace: IWorkspaceFolder | undefined; protected abstract getConfig(): IGlobalConfig | undefined; abstract openConfigFile(options: { preserveFocus: boolean; type?: string | undefined; suppressInitialConfigs?: boolean | undefined }, token?: CancellationToken | undefined): Promise<{ editor: IEditorPane | null; created: boolean }>; constructor( protected configurationManager: ConfigurationManager,"}
{"_id":"q-en-vscode-425292063a5b33e2c11dec5e3eaf3696b850583cd886b3d9764901531bdf1478","text":"} const stashChanges = await repository.showStash(stash.index); const stashParentCommit = stash.parents.length > 0 ? stash.parents[0] : `${stash.hash}^`; if (!stashChanges || stashChanges.length === 0) { return;"}
{"_id":"q-en-vscode-425912b8c16ee311cd9becded3ff639941f120820e5e1d673bd8c37178096207","text":"this._register(DOM.addDisposableListener(document.body, DOM.EventType.DRAG_START, this.onGlobalDragStart.bind(this), true)); this._register(DOM.addDisposableListener(document.body, DOM.EventType.DRAG_END, this.onGlobalDragEnd.bind(this), true)); const addCellDragListener = (eventType: string, handler: (e: CellDragEvent) => void) => { const addCellDragListener = (eventType: string, handler: (e: CellDragEvent) => void, useCapture = false) => { this._register(DOM.addDisposableListener( notebookEditor.getDomNode(), eventType,"}
{"_id":"q-en-vscode-429f67fd8d825cbabf8822144843a9eada86774b6110abaed6bc0ba3f065c7a0","text":"}, { type: 'array', items: [ prefixItems: [ { type: 'string', enum: ['search'] }, { type: 'object',"}
{"_id":"q-en-vscode-42bfb6fe9f01ac978d8072360ede1913035db13604acb65e1c13419cd7d03950","text":"? this.options.installPreReleaseVersion /* Respect the passed flag */ : metadata?.preRelease /* Respect the existing pre-release flag if it was set */); } metadata.pinned = this.options.installGivenVersion ? true : undefined; metadata.pinned = this.options.installGivenVersion ? true : metadata.pinned; this._profileLocation = metadata.isApplicationScoped ? this.userDataProfilesService.defaultProfile.extensionsResource : this.options.profileLocation; const scannedExtension = URI.isUri(this.extension) ? await this.webExtensionsScannerService.addExtension(this.extension, metadata, this.profileLocation)"}
{"_id":"q-en-vscode-42d134d1cbedd927aea590bed9de3bc0ad7279530bea8fca711c62e14d67ff6f","text":"import * as dom from 'vs/base/browser/dom'; import { StandardMouseEvent } from 'vs/base/browser/mouseEvent'; import { createTrustedTypesPolicy } from 'vs/base/browser/trustedTypes'; import { equals } from 'vs/base/common/arrays'; import { Disposable, DisposableStore } from 'vs/base/common/lifecycle'; import 'vs/css!./stickyScroll'; import { ICodeEditor, IOverlayWidget, IOverlayWidgetPosition } from 'vs/editor/browser/editorBrowser';"}
{"_id":"q-en-vscode-42e7880ac5bb7ffd18ee518c3ad589bc969e2c1a576edd287f1bad61371af2cd","text":"\".webmanifest\", \".js.map\", \".css.map\", \".ts.map\", \".har\", \".jslintrc\", \".jsonld\""}
{"_id":"q-en-vscode-430a255a3e439362bba1ec207d9c5fd63932329e67e760d26895dbb512340020","text":"} async setToken(token: IUserDataSyncAuthToken | undefined): Promise { if (token && this._token ? token.token !== this._token.token && token.authenticationProviderId !== this._token.authenticationProviderId : token !== this._token) { if (token && this._token ? token.token !== this._token.token || token.authenticationProviderId !== this._token.authenticationProviderId : token !== this._token) { this._token = token; this._onDidChangeToken.fire(token); }"}
{"_id":"q-en-vscode-432d80c978c957567301a85b0d73a35d099f62dd285b2c9fc820cbdb3d827c4f","text":"export const editorBracketPairGuideActiveBackground5 = registerColor('editorBracketPairGuide.activeBackground5', { dark: '#00000000', light: '#00000000', hcDark: '#00000000', hcLight: '#00000000' }, nls.localize('editorBracketPairGuide.activeBackground5', 'Background color of active bracket pair guides (5). Requires enabling bracket pair guides.')); export const editorBracketPairGuideActiveBackground6 = registerColor('editorBracketPairGuide.activeBackground6', { dark: '#00000000', light: '#00000000', hcDark: '#00000000', hcLight: '#00000000' }, nls.localize('editorBracketPairGuide.activeBackground6', 'Background color of active bracket pair guides (6). Requires enabling bracket pair guides.')); export const editorUnicodeHighlightBorder = registerColor('editorUnicodeHighlight.border', { dark: '#BD9B03', light: '#CEA33D', hcDark: '#ff0000', hcLight: '' }, nls.localize('editorUnicodeHighlight.border', 'Border color used to highlight unicode characters.')); export const editorUnicodeHighlightBackground = registerColor('editorUnicodeHighlight.background', { dark: '#bd9b0326', light: '#cea33d14', hcDark: '#00000000', hcLight: '' }, nls.localize('editorUnicodeHighlight.background', 'Background color used to highlight unicode characters.')); export const editorUnicodeHighlightBorder = registerColor('editorUnicodeHighlight.border', { dark: '#BD9B03', light: '#CEA33D', hcDark: '#ff0000', hcLight: '#CEA33D' }, nls.localize('editorUnicodeHighlight.border', 'Border color used to highlight unicode characters.')); export const editorUnicodeHighlightBackground = registerColor('editorUnicodeHighlight.background', { dark: '#bd9b0326', light: '#cea33d14', hcDark: '#00000000', hcLight: '#cea33d14' }, nls.localize('editorUnicodeHighlight.background', 'Background color used to highlight unicode characters.')); // contains all color rules that used to defined in editor/browser/widget/editor.css"}
{"_id":"q-en-vscode-434c18f5674a5854d65332a4354e7ebe759b1689e5decf4f6f95304c6e47bdd5","text":"return this; } /** * A helper function to revive URIs. * * **Note** that this function should only be used when receiving URI#toJSON generated data * and that it doesn't do any validation. Use {@link URI.from} when received \"untrusted\" * uri components such as command arguments or data from storage. * * @param data The URI components or URI to revive. * @returns The revived URI or undefined or null. */ static revive(data: UriComponents | URI): URI; static revive(data: UriComponents | URI | undefined): URI | undefined; static revive(data: UriComponents | URI | null): URI | null;"}
{"_id":"q-en-vscode-435f215b4e011edb920bcc10643095391caeb5dda17403cd8c2f9c23ef52c45a","text":" /*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ .monaco-editor .rendered-markdown kbd { background-color: var(--vscode-keybindingLabel-background); color: var(--vscode-keybindingLabel-foreground); border-style: solid; border-width: 1px; border-radius: 3px; border-color: var(--vscode-keybindingLabel-border); border-bottom-color: var(--vscode-keybindingLabel-bottomBorder); box-shadow: inset 0 -1px 0 var(--vscode-widget-shadow); vertical-align: middle; padding: 1px 3px; } "}
{"_id":"q-en-vscode-439269ddac3cea3b10b9457ca7b4eb107c61eac4cb82a1352c3d8c5ef95c694a","text":"import { showWithPinnedItems } from 'vs/platform/quickinput/browser/quickPickPin'; import { IStorageService } from 'vs/platform/storage/common/storage'; import { IContextKey } from 'vs/platform/contextkey/common/contextkey'; import { timeout } from 'vs/base/common/async'; export async function showRunRecentQuickPick( accessor: ServicesAccessor,"}
{"_id":"q-en-vscode-440838d11d8f735e6dbaae516f51739e6d7bbabfdd8aa4c263505916a20de2ef","text":"this.secondaryEditorPane.setInput(secondaryInput, undefined, context, token), this.primaryEditorPane.setInput(primaryInput, options, context, token)] ); this.layout(this.dimension); } override updateStyles(): void {"}
{"_id":"q-en-vscode-442c1369af3c824a52cd259ff783b2b8d466a6b67eac22d3ee47769ee079473a","text":"localize('voice.keywordActivation.inlineChat', \"Keyword activation is enabled and listening for 'Hey Code' to start a voice chat session in the active editor.\"), localize('voice.keywordActivation.chatInContext', \"Keyword activation is enabled and listening for 'Hey Code' to start a voice chat session in the active editor or view depending on keyboard focus.\") ], 'description': localize('voice.keywordActivation', \"Controls whether the phrase 'Hey Code' should be speech recognized to start a voice chat session.\"), 'description': localize('voice.keywordActivation', \"Controls whether the keyword phrase 'Hey Code' is recognized to start a voice chat session. Enabling this will start recording from the microphone but the audio is processed locally and never sent to a server.\"), 'default': 'off', 'tags': ['accessibility', 'FeatureInsight'] }"}
{"_id":"q-en-vscode-44677ae764bcdaec5b8130d98999b6e6c5e056a73557da6b1e398933569f4ef6","text":"function cursorWordLeft(editor: ICodeEditor, inSelectionMode: boolean = false): void { runEditorCommand(editor, inSelectionMode ? _cursorWordLeftSelect : _cursorWordLeft); } function cursorWordAccessibilityLeft(editor: ICodeEditor, inSelectionMode: boolean = false): void { runEditorCommand(editor, inSelectionMode ? _cursorWordAccessibilityLeft : _cursorWordAccessibilityLeftSelect); } function cursorWordAccessibilityRight(editor: ICodeEditor, inSelectionMode: boolean = false): void { runEditorCommand(editor, inSelectionMode ? _cursorWordAccessibilityRightSelect : _cursorWordAccessibilityRight); } function cursorWordStartLeft(editor: ICodeEditor, inSelectionMode: boolean = false): void { runEditorCommand(editor, inSelectionMode ? _cursorWordStartLeftSelect : _cursorWordStartLeft); }"}
{"_id":"q-en-vscode-44a12b3c9c3dcfb07687b5323415fed320c89703783833b4b1c365902e7b973e","text":"const body = await this.renderBody(markdownDocument, resourceProvider); if (token.isCancellationRequested) { return { html: '', containingImages: [] }; return { html: '', containingImages: new Set() }; } const html = `"}
{"_id":"q-en-vscode-44a44d48230845871b9da5ef2c46a3c6492abd622d9bd2014c4d96bd4f1ea8ea","text":"const editorService = accessor.get(IEditorService); const sessionId = viewModel.sessionId; const viewState = view.widget.getViewState(); view.clear(); await editorService.openEditor({ resource: ChatEditorInput.getNewEditorUri(), options: { target: { sessionId }, pinned: true } }, moveTo === MoveToNewLocation.Window ? AUX_WINDOW_GROUP : ACTIVE_GROUP); await editorService.openEditor({ resource: ChatEditorInput.getNewEditorUri(), options: { target: { sessionId }, pinned: true, viewState: viewState } }, moveTo === MoveToNewLocation.Window ? AUX_WINDOW_GROUP : ACTIVE_GROUP); } }; }"}
{"_id":"q-en-vscode-44d3cb57c2cc23bb83cce40515058e52e230c47fee05800ce9369bf0c8e00659","text":"return; } this._logService.trace('IPty#pid'); exec('lsof -OPln -p ' + this._ptyProcess.pid + ' | grep cwd', (error, stdout, stderr) => { exec('lsof -OPln -p ' + this._ptyProcess.pid + ' | grep cwd', { env: { ...process.env, LANG: 'en_US.UTF-8' } }, (error, stdout, stderr) => { if (!error && stdout !== '') { resolve(stdout.substring(stdout.indexOf('/'), stdout.length - 1)); } else {"}
{"_id":"q-en-vscode-45f6fda41fac5fff107fcace917ac2e463c9d97d35fcef4eaa0cf6432c8b8ab5","text":"} /** * A result payload for a text search, pertaining to matches within a single file. * A result payload for a text search, pertaining to {@link TextSearchMatchNew matches} * and its associated {@link TextSearchContextNew context} within a single file. */ export type TextSearchResultNew = TextSearchMatchNew | TextSearchContextNew;"}
{"_id":"q-en-vscode-4601faaa3f230f20584362eb91c268b9d927b2dc7f7bfb7cb7bb609eb7befe03","text":"private _containerReadyBarrier: AutoOpenBarrier; private _attachBarrier: AutoOpenBarrier; private _icon: TerminalIcon | undefined; private _messageTitleDisposable: IDisposable | undefined; private _widgetManager: TerminalWidgetManager = this._instantiationService.createInstance(TerminalWidgetManager);"}
{"_id":"q-en-vscode-46115d219067f321c40f1b54279fd6f31f5eb027a66d8334cbd31d3d251c3fdd","text":"* @param path A file system path (see `Uri#fsPath`) */ static file(path: string): Uri; /** * Creates new Uri from uri components. * * Unless `strict` is `true` the scheme is defaults to be `file`. This function performs * validation and should be used for untrusted uri components retrieved from storage, * user input, command arguments etc */ static from(components: { scheme: string; authority?: string; path?: string; query?: string; fragment?: string; }): Uri; }, strict?: boolean): Uri; /** * Join a Uri path with path fragments and normalizes the resulting path. *"}
{"_id":"q-en-vscode-461dc282683b561bd06e57aeccb5ded8c2289256206d4bda40e18ebd20a7dd6e","text":"import { IBufferLine, IBufferRange, Terminal } from 'xterm'; import { ITerminalBackend, ITerminalProcessManager } from 'vs/workbench/contrib/terminal/common/terminal'; import { detectLinks } from 'vs/workbench/contrib/terminalContrib/links/browser/terminalLinkParsing'; import { ILogService } from 'vs/platform/log/common/log'; const enum Constants { /**"}
{"_id":"q-en-vscode-461ea03c41c2fb57e632fe0dd00d315f6ac53804010de0fbdbf36145a1da5f53","text":"return this._repository.add(paths.map(p => Uri.file(p))); } revert(paths: string[]) { return this._repository.revert(paths.map(p => Uri.file(p))); } clean(paths: string[]) { return this._repository.clean(paths.map(p => Uri.file(p))); }"}
{"_id":"q-en-vscode-4644216db7e285ef1b862ad2a7bb71cd8055aec0d4c0764530e3329c1aaa0a19","text":"if (insertIntoNewFileKb) { hint += localize('insertIntoNewFile', \" - Insert the code block into a new file ({0}).n\", insertIntoNewFileKb); } else { hint += localize('insertIntoNewFileNoKb', \" - Insert the code block into a new file by configuring a keybinding for the Chat: Insert at Cursor command.n\"); hint += localize('insertIntoNewFileNoKb', \" - Insert the code block into a new file by configuring a keybinding for the Chat: Insert into New File command.n\"); } if (runInTerminalKb) { hint += localize('runInTerminal', \" - Run the code block in the terminal ({0}).n\", runInTerminalKb);"}
{"_id":"q-en-vscode-46cb50efb4f330b1f1a05d37fb22629ed3caa68a205926e055285a7d75d665e0","text":"\"@iktakahiro/markdown-it-katex@mjbvz/markdown-it-katex\": version \"4.0.3\" resolved \"https://codeload.github.com/mjbvz/markdown-it-katex/tar.gz/58f6637b5883caa8a811f1736bc90b34cd26b395\" version \"4.0.4\" resolved \"https://codeload.github.com/mjbvz/markdown-it-katex/tar.gz/cfcbc640a2780f2349d4e137ad51638f39279aa7\" dependencies: katex \"^0.16.2\""}
{"_id":"q-en-vscode-46e024754194bdb2ed6adbdb810806035021b3019b50da8bb10a6d61a24254d9","text":"const editorService = accessor.get(IEditorService); const editorGroupService = accessor.get(IEditorGroupsService); const openerService = accessor.get(IOpenerService); const pathService = accessor.get(IPathService); const resource = URI.revive(resourceArg); const [columnArg, optionsArg] = columnAndOptions ?? []; // use editor options or editor view column as a hint to use the editor service for opening if (optionsArg || typeof columnArg === 'number') { // use editor options or editor view column or resource scheme // as a hint to use the editor service for opening directly if (optionsArg || typeof columnArg === 'number' || resource.scheme === Schemas.untitled) { const [options, column] = mixinContext(context, optionsArg, columnArg); await editorService.openEditor({ resource, options, label }, columnToEditorGroup(editorGroupService, column)); let input: IResourceEditorInput | IUntitledTextResourceEditorInput; if (resource.scheme === Schemas.untitled && resource.path.length > 1) { // special case for untitled: we are getting a resource with meaningful // path from an extension to use for the untitled editor. as such, we // have to assume it as an associated resource to use when saving. we // do so by setting the `forceUntitled: true` and changing the scheme // to a file based one. the untitled editor service takes care to // associate the path properly then. input = { resource: resource.with({ scheme: pathService.defaultUriScheme }), forceUntitled: true, options, label }; } else { // use any other resource as is input = { resource, options, label }; } await editorService.openEditor(input, columnToEditorGroup(editorGroupService, column)); } // do not allow to execute commands from here"}
{"_id":"q-en-vscode-46e7b5cb19eb8344709da5b2a2132622811976a46fc1f280959f311a3c2dd17a","text":"document.body.appendChild(img); }); vscode.postMessage({ type: 'ready' }); vscode.postMessage({ type: 'ready', userAgent: window.navigator.userAgent }); `); const ready = getMessage(webview); await ready; if ((await ready).userAgent.indexOf('Firefox') >= 0) { // Skip on firefox web for now. // Firefox service workers never seem to get any 'fetch' requests here. Other browsers work fine return; } { const imagePath = webview.webview.asWebviewUri(workspaceFile('image.png')); console.log(imagePath); const response = await sendRecieveMessage(webview, { src: imagePath.toString() }); assert.strictEqual(response.value, true); }"}
{"_id":"q-en-vscode-4707c6f3e77e16683f48efe5c56e0471b43064f1354ca7009d3bb6223cb86250","text":"protected async createReferencedObject(key: string, viewType: string): Promise { const uri = URI.parse(key); const info = await this._notebookService.withNotebookDataProvider(uri); const info = await this._notebookService.withNotebookDataProvider(uri, viewType); let result: IResolvedNotebookEditorModel;"}
{"_id":"q-en-vscode-4725c033a49f6c0b5bb1e8d966419dee081b8d495716d29f43a56e48122b164c","text":"async function copyVscodeDevLink(gitAPI: GitAPI, useSelection: boolean, context: LinkContext, includeRange = true) { try { const permalink = await getLink(gitAPI, useSelection, getVscodeDevHost(), 'headlink', context, includeRange); const permalink = await getLink(gitAPI, useSelection, true, getVscodeDevHost(), 'headlink', context, includeRange); if (permalink) { return vscode.env.clipboard.writeText(permalink); }"}
{"_id":"q-en-vscode-475a270bb0bd4b2e011d9536ec03b1855e306cd89c1acbaf7fed48328305616c","text":"clear(): void; } export interface GlobalEnvironmentVariableCollection extends EnvironmentVariableCollection { /** * Gets scope-specific environment variable collection for the extension. This enables alterations to * terminal environment variables solely within the designated scope, and is applied in addition to (and * after) the global collection. * * Each object obtained through this method is isolated and does not impact objects for other scopes, * including the global collection. * * @param scope The scope to which the environment variable collection applies to. * * If a scope parameter is omitted, collection applicable to all relevant scopes for that parameter is * returned. For instance, if the 'workspaceFolder' parameter is not specified, the collection that applies * across all workspace folders will be returned. */ getScoped(scope: EnvironmentVariableScope): EnvironmentVariableCollection; } export type EnvironmentVariableScope = { /** * Any specific workspace folder to get collection for. */ workspaceFolder?: WorkspaceFolder; }; /** * A location in the editor at which progress information can be shown. It depends on the * location how progress is visually represented."}
{"_id":"q-en-vscode-482dd53516bdfa9fd0993f4151374c74b94957143e9f76765fed7a6b25045a63","text":"private centeredEditorActive: boolean; private centeredEditorSashLeft: Sash; private centeredEditorSashRight: Sash; private centeredEditorPreferedSize: number; private centeredEditorPreferredSize: number; private centeredEditorLeftMarginRatio: number; private centeredEditorDragStartPosition: number; private centeredEditorDragStartSize: number;"}
{"_id":"q-en-vscode-48a121497e42f0df394af4bc7993ef86dd7c27083e772e3a39e9decee40ff5a0","text":":root { --vscode-sash-size: 4px; --vscode-sash-hover-size: 4px; } .monaco-sash {"}
{"_id":"q-en-vscode-48f52d26ac4c37403f103738047612330fbd3af48fee4e994ed299e5de25e7a2","text":"constructor() { this.tokenTypeById = {}; this.tokenModifierById = {}; this.typeHierarchy = {}; this.typeHierarchy = Object.create(null); } public registerTokenType(id: string, description: string, superType?: string, deprecationMessage?: string): void {"}
{"_id":"q-en-vscode-4904d634833cce508fac9d3f9bc8ebfda37562dd2c51c8a3ea23c16d187e85e7","text":"const quickInputService = accessor.get(IQuickInputService); const inputBox = quickInputService.createInputBox(); inputBox.placeholder = nls.localize('findMatchAction.inputPlaceHolder', \"Type a number to go to a specific match (between 1 and {0})\", controller.getState().matchesCount); inputBox.onDidChangeValue(value => { const updatePickerAndEditor = (value: string) => { const index = parseInt(value); if (!isNaN(index) && index > 0 && index <= controller.getState().matchesCount) { // valid inputBox.validationMessage = undefined; controller.goToMatch(index - 1); const currentMatch = controller.getState().currentMatch; if (currentMatch) { this.addDecorations(editor, currentMatch); } } else { inputBox.validationMessage = nls.localize('findMatchAction.inputValidationMessage', \"Please type a number between 1 and {0}\", controller.getState().matchesCount); this.clearDecorations(editor); } }; inputBox.onDidChangeValue(value => { updatePickerAndEditor(value); }); inputBox.onDidAccept(() => {"}
{"_id":"q-en-vscode-4919b05fb4d5618e8b5142d20909cf2172d3ba7dc187a2236c267f55bddd2cb5","text":"*--------------------------------------------------------------------------------------------*/ import { ExtensionContext, NotebookDocument, NotebookDocumentChangeEvent, NotebookEdit, workspace, WorkspaceEdit } from 'vscode'; import { v4 as uuid } from 'uuid'; import { getCellMetadata } from './serializers'; import { CellMetadata } from './common'; import { getNotebookMetadata } from './notebookSerializer';"}
{"_id":"q-en-vscode-494e16f257308d346dce16cabce182011b83ffd1139ba207fb543fca6f692506","text":"readonly extensionPath: string; /** * Gets the extension's environment variable collection for this workspace, enabling changes * to be applied to terminal environment variables. * Gets the extension's global environment variable collection for this workspace, enabling changes to be * applied to terminal environment variables. */ readonly environmentVariableCollection: EnvironmentVariableCollection; readonly environmentVariableCollection: GlobalEnvironmentVariableCollection; /** * Get the absolute path of a resource contained in the extension."}
{"_id":"q-en-vscode-499eb5fab94d30da7c96b7173d0a88740616eb7af259c3ff26c4b908424dcf0e","text":"display: none; } .monaco-editor .suggest-widget.no-icons .monaco-list .monaco-list-row .icon { .monaco-editor .suggest-widget.no-icons .monaco-list .monaco-list-row .icon, .monaco-editor .suggest-widget.no-icons .monaco-list .monaco-list-row .monaco-icon-label.suggest-icon::before { display: none; }"}
{"_id":"q-en-vscode-4a20c8a5dbef8fcdc83961a3bed26a1ca5d469ce49b4f06295a65ca9c4e06c0a","text":"const otherModelsToHighlight = this.getOtherModelsToHighlight(this.editor.getModel()); // 2 cases where we want to send the word // a) there is no stored query model, but there is a word. This signals the editor that drove the highlight is disposed (cell out of viewport, etc) // b) the queried model is not the current model. This signals that the editor that drove the highlight is still in the viewport, but we are highlighting a different cell // otherwise, we send null in place of the word, and the model and selection are used to compute the word // TODO: @Yoyokrazy -- investigate this logic for sendWord const sendWord = (!WordHighlighter.query.modelInfo && WordHighlighter.query.word) || (WordHighlighter.query.modelInfo?.model.uri !== this.model.uri) ? true : false; if (!WordHighlighter.query.modelInfo || (WordHighlighter.query.modelInfo.model.uri !== this.model.uri)) { // use this.model this.workerRequest = this.computeWithModel(this.model, this.editor.getSelection(), sendWord ? WordHighlighter.query.word : null, otherModelsToHighlight); } else { // use stored query model + selection this.workerRequest = this.computeWithModel(WordHighlighter.query.modelInfo.model, WordHighlighter.query.modelInfo.selection, WordHighlighter.query.word, otherModelsToHighlight); // when reaching here, there are two possible states. // \t\t1) we have text focus, and a valid query was updated. // \t\t2) we do not have text focus, and a valid query is cached. // the query will ALWAYS have the correct data for the current highlight request, so it can always be passed to the workerRequest safely if (!WordHighlighter.query.modelInfo || WordHighlighter.query.modelInfo.model.isDisposed()) { return; } this.workerRequest = this.computeWithModel(WordHighlighter.query.modelInfo.model, WordHighlighter.query.modelInfo.selection, WordHighlighter.query.word, otherModelsToHighlight); this.workerRequest?.result.then(data => { if (myRequestId === this.workerRequestTokenId) {"}
{"_id":"q-en-vscode-4a2c043cb7365ff29533596b0d5dac77dffd2e3c4d501ed41af57d62d1989782","text":"return TriggerAction.CLOSE_PICKER; }, accept: async (keyMods, event) => this.openSymbol(provider, symbol, token, { keyMods, preserveFocus: event.inBackground }), accept: async (keyMods, event) => this.openSymbol(provider, symbol, token, { keyMods, preserveFocus: event.inBackground, forcePinned: event.inBackground }), }); } }"}
{"_id":"q-en-vscode-4a624fa9f65df5ba4a09ec458029d4b25fcd45b65f0e78ed284c4667655f15ca","text":"stickiness: TrackedRangeStickiness.AlwaysGrowsWhenTypingAtEdges, afterContentClassName: 'inline-folded', className: 'folded-background', minimap: foldedBackgroundMinimap, isWholeLine: true, firstLineDecorationClassName: ThemeIcon.asClassName(foldingManualCollapsedIcon) });"}
{"_id":"q-en-vscode-4ab3e5b2e195d6438d2492f33269b254259755790adcc9cfacb2d9ef3d2f60dd","text":"]; return toDisposable(() => { blurDisposable.dispose(); done(false, false); if (isFinishableDisposeEvent) { done(false); } else { dispose(toDispose); } }); }"}
{"_id":"q-en-vscode-4ace513ceb2b3d91fea275089403e7e0bbf3c2666575b47c2f9567f5d16435bf","text":"command: 'git.publish', title: l10n.t({ message: '{0} Publish Branch', args: [icon], comment: ['{Locked=\"Branch\"}', 'Do not translate \"Branch\" as it is a git term'] }), tooltip: this.state.isSyncInProgress ? l10n.t({ message: 'Publishing Branch...', comment: ['{Locked=\"Branch\"}', 'Do not translate \"Branch\" as it is a git term'] }) : l10n.t({ message: 'Publish Branch', comment: ['{Locked=\"Branch\"}', 'Do not translate \"Branch\" as it is a git term'] }), (this.state.HEAD?.name ? l10n.t({ message: 'Publishing Branch '{0}'...', args: [this.state.HEAD.name], comment: ['{Locked=\"Branch\"}', 'Do not translate \"Branch\" as it is a git term'] }) : l10n.t({ message: 'Publishing Branch...', comment: ['{Locked=\"Branch\"}', 'Do not translate \"Branch\" as it is a git term'] })) : (this.repository.HEAD?.name ? l10n.t({ message: 'Publish Branch '{0}'', args: [this.state.HEAD?.name], comment: ['{Locked=\"Branch\"}', 'Do not translate \"Branch\" as it is a git term'] }) : l10n.t({ message: 'Publish Branch', comment: ['{Locked=\"Branch\"}', 'Do not translate \"Branch\" as it is a git term'] })), arguments: [this.repository.sourceControl], }, enabled: !this.state.isSyncInProgress"}
{"_id":"q-en-vscode-4af8ca2e3c04638c166478022734e7ac55e1fea287c03914d5e180ac115de098","text":"} public asUrl(filepath: string): Uri { if (filepath.startsWith(TypeScriptServiceClient.WALK_THROUGH_SNIPPET_SCHEME_COLON)) { if (filepath.startsWith(TypeScriptServiceClient.WALK_THROUGH_SNIPPET_SCHEME_COLON) || (filepath.startsWith('untitled:') && this._apiVersion.has213Features()) ) { return Uri.parse(filepath); } return Uri.file(filepath);"}
{"_id":"q-en-vscode-4af8d33b88e2dbbbaf868e1296821c05a55f4bff69ce49e00f7de7afc3ed2ed0","text":"// Actions const registry = Registry.as(ActionExtensions.WorkbenchActions); // Show Search and Find in Files are redundant, but we can't break keybindings by removing one. So it's the same action, same keybinding, registered to different IDs. // Show Search 'when' is redundant but if the two conflict with exactly the same keybinding and 'when' clause, then they can show up as \"unbound\" - #51780 registry.registerWorkbenchAction(SyncActionDescriptor.from(OpenSearchViewletAction), 'View: Show Search', CATEGORIES.View.value); // View: Show Search is used for the keybindings in the View menu and the sidebar #115556, but it should only be enabbled when search.mode == view, or else it will steal priority over opening a search editor #115511 const SEARCH_MODE_CONFIG = 'search.mode'; registry.registerWorkbenchAction( SyncActionDescriptor.from( OpenSearchViewletAction, { primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.KEY_F }, ContextKeyAndExpr.create([Constants.SearchViewVisibleKey.toNegated(), ContextKeyEqualsExpr.create(`config.${SEARCH_MODE_CONFIG}`, 'view')])), 'View: Show Search', CATEGORIES.View.value); // Find in Files by default is the same as View: Show Search, but can be configured to open a search editor instead with the `search.mode` binding KeybindingsRegistry.registerCommandAndKeybindingRule({ description: { description: nls.localize('findInFiles.description', \"Open the search viewlet\"),"}
{"_id":"q-en-vscode-4b578dfd0aa2199293fa538c97e8c8a8d195c6fe146c4740d555d19b3840f686","text":"currentLineIsEmptyOrWhitespace = strings.lastNonWhitespaceIndex(currentLine) === -1; } const deletionRange = new Range(currentLineNumber + 1, 1, lineCount + 1, 1); const deletionRange = model.validateRange(new Range(currentLineNumber + 1, 1, lineCount + 1, 1)); if (!deletionRange.isEmpty()) { model.pushEditOperations(prevSelection, [EditOperation.delete(deletionRange)], edits => prevSelection); }"}
{"_id":"q-en-vscode-4b59baeb71e5428153fed2c9d3b245978e72b989e4f42afe12d47405e0112a72","text":"shellLaunchConfig.args = windowsShellArgs ? combinedShellArgs.join(' ') : combinedShellArgs; if (task.command.presentation && task.command.presentation.echo) { if (needsFolderQualification && workspaceFolder) { shellLaunchConfig.initialText = taskShellIntegrationStartSequence + formatMessageForTerminal(nls.localize({ shellLaunchConfig.initialText = this.taskShellIntegrationStartSequence + formatMessageForTerminal(nls.localize({ key: 'task.executingInFolder', comment: ['The workspace folder the task is running in', 'The task command line or label'] }, 'Executing task in folder {0}: {1}', workspaceFolder.name, commandLine), { excludeLeadingNewLine: true }) + taskShellIntegrationOutputSequence; }, 'Executing task in folder {0}: {1}', workspaceFolder.name, commandLine), { excludeLeadingNewLine: true }) + this.taskShellIntegrationOutputSequence; } else { shellLaunchConfig.initialText = taskShellIntegrationStartSequence + formatMessageForTerminal(nls.localize({ shellLaunchConfig.initialText = this.taskShellIntegrationStartSequence + formatMessageForTerminal(nls.localize({ key: 'task.executing', comment: ['The task command line or label'] }, 'Executing task: {0}', commandLine), { excludeLeadingNewLine: true }) + taskShellIntegrationOutputSequence; }, 'Executing task: {0}', commandLine), { excludeLeadingNewLine: true }) + this.taskShellIntegrationOutputSequence; } } else { shellLaunchConfig.initialText = taskShellIntegrationStartSequence + taskShellIntegrationOutputSequence; shellLaunchConfig.initialText = this.taskShellIntegrationStartSequence + this.taskShellIntegrationOutputSequence; } } else { const commandExecutable = (task.command.runtime !== RuntimeType.CustomExecution) ? CommandString.value(command) : undefined;"}
{"_id":"q-en-vscode-4b720ea1ad4ec3b2d3efd052b06deb17fda97a2b2b4d2d4822cb1b15d17ceb40","text":"return normalizeLink(vscode.Uri.parse(link).with({ scheme: vscode.env.uriScheme }).toString()); } // Support file:// links if (isOfScheme(Schemes.file, link)) { // Ensure link is relative by prepending `/` so that it uses the element URI // when resolving the absolute URL return normalizeLink('/' + link.replace(/^file:/, 'file')); } // If original link doesn't look like a url with a scheme, assume it must be a link to a file in workspace if (!/^[a-z-]+:/i.test(link)) { // Use a fake scheme for parsing"}
{"_id":"q-en-vscode-4be6a27c49f43d79b19bb769b36f4e514ca0f932d6af509ebb51b83a71198008","text":"?? element.separator?.id ?? element.separator?.label ?? ''; } }, }, alwaysConsumeMouseWheel: true }"}
{"_id":"q-en-vscode-4c2a89c6ce667437c3f40cb1386a436f53a12a3ee02c19f6f493a577ee152cfc","text":"}), true); }); test('isUriComponents', function () { assert.ok(isUriComponents(URI.file('a'))); assert.ok(isUriComponents(URI.file('a').toJSON())); assert.ok(isUriComponents(URI.file(''))); assert.ok(isUriComponents(URI.file('').toJSON())); assert.strictEqual(isUriComponents(1), false); assert.strictEqual(isUriComponents(true), false); assert.strictEqual(isUriComponents(\"true\"), false); assert.strictEqual(isUriComponents({}), false); assert.strictEqual(isUriComponents({ scheme: '' }), true); // valid components but INVALID uri assert.strictEqual(isUriComponents({ scheme: 'fo' }), true); assert.strictEqual(isUriComponents({ scheme: 'fo', path: '/p' }), true); assert.strictEqual(isUriComponents({ path: '/p' }), false); }); test('from, from(strict), revive', function () { assert.throws(() => URI.from({ scheme: '' }, true)); assert.strictEqual(URI.from({ scheme: '' }).scheme, 'file'); assert.strictEqual(URI.revive({ scheme: '' }).scheme, ''); }); test('Unable to open '%A0.txt': URI malformed #76506, part 2', function () { assert.strictEqual(URI.parse('file://some/%.txt').toString(), 'file://some/%25.txt'); assert.strictEqual(URI.parse('file://some/%A0.txt').toString(), 'file://some/%25A0.txt');"}
{"_id":"q-en-vscode-4c3a3e735f9af684cb95b163555eb557d057c4f953074d61603697af1d260407","text":"} getFileBasedRecommendations(): IExtensionRecommendation[] { return Object.keys(this._fileBasedRecommendations) .sort((a, b) => { if (this._fileBasedRecommendations[a].recommendedTime === this._fileBasedRecommendations[b].recommendedTime) { if (!product.extensionImportantTips || caseInsensitiveGet(product.extensionImportantTips, a)) { return -1; } if (caseInsensitiveGet(product.extensionImportantTips, b)) { return 1; } return [...this.getRestoredRecommendationsByReason(ExtensionRecommendationReason.File), ...Object.keys(this._fileBasedRecommendations).sort((a, b) => { if (this._fileBasedRecommendations[a].recommendedTime === this._fileBasedRecommendations[b].recommendedTime) { if (!product.extensionImportantTips || caseInsensitiveGet(product.extensionImportantTips, a)) { return -1; } return this._fileBasedRecommendations[a].recommendedTime > this._fileBasedRecommendations[b].recommendedTime ? -1 : 1; }).map(extensionId => ({ extensionId, sources: this._fileBasedRecommendations[extensionId].sources })); if (caseInsensitiveGet(product.extensionImportantTips, b)) { return 1; } } return this._fileBasedRecommendations[a].recommendedTime > this._fileBasedRecommendations[b].recommendedTime ? -1 : 1; })] .map(extensionId => ({ extensionId, sources: this._fileBasedRecommendations[extensionId] ? this._fileBasedRecommendations[extensionId].sources : this._sessionRestoredRecommendations[extensionId.toLowerCase()] ? this._sessionRestoredRecommendations[extensionId.toLowerCase()].sources : [] })); } getOtherRecommendations(): TPromise {"}
{"_id":"q-en-vscode-4d4239e220b48891959f317ee536440344eb16ad0f2502cc57d5402a0795e75a","text":"run: () => { sendTelemetry('accept'); this.telemetryService.getTelemetryInfo().then(info => { this.openerService.open(URI.parse(`${this.productService.cesSurveyUrl}?o=${encodeURIComponent(platform)}&v=${encodeURIComponent(this.productService.version)}&m=${encodeURIComponent(info.machineId)}`)); let surveyUrl = `${this.productService.cesSurveyUrl}?o=${encodeURIComponent(platform)}&v=${encodeURIComponent(this.productService.version)}&m=${encodeURIComponent(info.machineId)}`; const usedParams = this.productService.surveys ?.filter(surveyData => surveyData.surveyId && surveyData.languageId) // Counts provided by contrib/surveys/browser/languageSurveys .filter(surveyData => this.storageService.getNumber(`${surveyData.surveyId}.editedCount`, StorageScope.GLOBAL, 0) > 0) .map(surveyData => `${encodeURIComponent(surveyData.languageId)}Lang=1`) .join('&'); if (usedParams) { surveyUrl += `&${usedParams}`; } this.openerService.open(URI.parse(surveyUrl)); this.skipSurvey(); }); }"}
{"_id":"q-en-vscode-4d4992e0f15065378b4534df246bcf2507d89d98e1ddaebc2cbcb385d0055ae7","text":"original: 'Terminal', mnemonicTitle: localize({ key: 'mTerminal', comment: ['&& denotes a mnemonic'] }, \"&&Terminal\") }, order: 7, when: ContextKeyExpr.has('terminalProcessSupported') order: 7 }); MenuRegistry.appendMenuItem(MenuId.MenubarMainMenu, {"}
{"_id":"q-en-vscode-4d7d820c3a46513784ce493877db4a30345a4457e6d60e3817b7e1b6223b84d2","text":" /*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ 'use strict'; // import * as assert from 'assert'; import { fuzzyContiguousFilter, matchesFuzzy2, matchesFuzzy3, matchesFuzzy4, matchesFuzzy5, fuzzyMatchAndScore } from 'vs/base/common/filters'; const data = <{ label: string }[]>require.__$__nodeRequire(require.toUrl('./filters.perf.data.json')); const patterns = ['cci', 'ida', 'pos', 'CCI', 'enbled', 'callback', 'gGame']; const _enablePerf = true; function perfSuite(name: string, callback: (this: Mocha.ISuiteCallbackContext) => void) { if (_enablePerf) { suite(name, callback); } } perfSuite('Performance - fuzzyMatch', function () { console.log(`Matching ${data.length} items against ${patterns.length} patterns...`); function perfTest(name: string, match: (pattern: string, word: string) => any) { test(name, function () { const t1 = Date.now(); let count = 0; for (const pattern of patterns) { for (const item of data) { if (item.label) { count += 1; match(pattern, item.label); } } } console.log(name, Date.now() - t1, `${(count / (Date.now() - t1)).toPrecision(6)}/ms`); }); } perfTest('fuzzyContiguousFilter', fuzzyContiguousFilter); perfTest('matchesFuzzy2', matchesFuzzy2); perfTest('matchesFuzzy3', matchesFuzzy3); perfTest('matchesFuzzy4', matchesFuzzy4); perfTest('matchesFuzzy5', matchesFuzzy5); perfTest('fuzzyMatchAndScore', fuzzyMatchAndScore); }); "}
{"_id":"q-en-vscode-4d883b4251991e87dc1feca91c66810214ea0639aa2859cce4035bcc86431d7f","text":"{ \"name\": \"code-oss-dev\", \"version\": \"1.84.0\", \"distro\": \"7df09ac7212a2c85067c0e2ef8c1ec89686483d2\", \"distro\": \"7c11ebfa20a4556137f851c95af40923aae11a3d\", \"author\": { \"name\": \"Microsoft Corporation\" },"}
{"_id":"q-en-vscode-4db52cf06f0a12cc6a9399bc63ad742e12c8a8c259b3c5d90ed0e102a7d6ee41","text":"} updateCommentThread(commentThread: languages.CommentThread) { if (this._commentThread !== commentThread) { dispose(this._commentThreadDisposables); } this._commentThread = commentThread; dispose(this._commentThreadDisposables); this._commentThreadDisposables = []; this._bindCommentThreadListeners();"}
{"_id":"q-en-vscode-4dd99f4ef35b6678a3da3ed2a39ac668180726136a503a6107232a60f2e5038e","text":"\"editorGutter.addedBackground\": \"#2ea043\", \"editorGutter.deletedBackground\": \"#f85149\", \"editorGutter.modifiedBackground\": \"#0078d4\", \"editorInlayHint.background\": \"#8b949e33\", \"editorInlayHint.foreground\": \"#8b949e\", \"editorInlayHint.typeBackground\": \"#8b949e33\", \"editorInlayHint.typeForeground\": \"#8b949e\", \"editorInlayHint.background\": \"#8b949e1b\", \"editorInlayHint.typeBackground\": \"#8b949e1b\", \"editorLineNumber.activeForeground\": \"#cccccc\", \"editorLineNumber.foreground\": \"#6e7681\", \"editorOverviewRuler.border\": \"#010409\","}
{"_id":"q-en-vscode-4dfc68e92556453ba1c9b993c55d5aca7f5a7ade501dd48bb5f2e8a8b2f48a82","text":"*--------------------------------------------------------------------------------------------*/ import * as assert from 'assert'; import { Emitter } from 'vs/base/common/event'; import { Emitter, Event } from 'vs/base/common/event'; import { DisposableStore } from 'vs/base/common/lifecycle'; import { ResourceMap } from 'vs/base/common/map'; import { waitForState } from 'vs/base/common/observable';"}
{"_id":"q-en-vscode-4e08d91f25efcb90f0e13714cc2b2048901de0df0bfaec7597a25dfe4db1f8ee","text":"commandsToSkipShell: string[]; cwd: string; confirmOnExit: boolean; env: { linux: { [key: string]: string }; osx: { [key: string]: string }; windows: { [key: string]: string }; }; } export interface ITerminalConfigHelper {"}
{"_id":"q-en-vscode-4e1461199e95145a6568e9923be339bdf85d93fde5f5f35f527380a8550ecf1a","text":"__vsc_prompt_cmd_original() { __vsc_status=\"$?\" builtin local cmd __vsc_restore_exit_code \"${__vsc_status}\" # Evaluate the original PROMPT_COMMAND similarly to how bash would normally # See https://unix.stackexchange.com/a/672843 for technique builtin local cmd for cmd in \"${__vsc_original_prompt_command[@]}\"; do eval \"${cmd:-}\" done"}
{"_id":"q-en-vscode-4e1c03164a760d434c1921ba281f926dfda288aecee94b3b2332ca9ceb3e2640","text":"}); }); suite('image-caching', () => { suite.only('image-caching', () => { const input = ' [](no-img.png)   '; test('Extracts all images', async () => { const engine = createNewMarkdownEngine(); assert.deepStrictEqual((await engine.render(input)), { html: '