-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPython.code-profile
More file actions
1 lines (1 loc) · 122 KB
/
Python.code-profile
File metadata and controls
1 lines (1 loc) · 122 KB
1
{"name":"Python","icon":"star-empty","settings":"{\"settings\":\"{\\n \\\"python.languageServer\\\": \\\"Pylance\\\", // Использование Pylance в качестве сервера языка для Python.\\n \\\"[python]\\\": {\\n \\\"editor.formatOnType\\\": true, // Форматирование при вводе\\n \\\"editor.defaultFormatter\\\": \\\"ms-python.autopep8\\\" // Форматтер по умолчанию для Python\\n },\\n \\\"autopep8.args\\\": [\\n \\\"--ignore=E731\\\", // Игнорировать правило E731\\n \\\"--max-line-length=200\\\" // Максимальная длина строки 200\\n ],\\n \\\"python.analysis.enablePytestSupport\\\": true, // Включение поддержки Pytest.\\n \\\"python.analysis.indexing\\\": true, // Включение индексации кода для ускорения анализа.\\n \\\"editor.rulers\\\": [\\n 120 // Линейки редактора\\n ],\\n \\\"editor.fontSize\\\": 19, // Размер шрифта\\n \\\"editor.letterSpacing\\\": 0.3, // Межбуквенный интервал\\n \\\"scm.inputFontSize\\\": 14, // Размер шрифта ввода в SCM\\n \\\"editor.insertSpaces\\\": true, // Вставка пробелов вместо табуляции\\n \\\"terminal.integrated.enableMultiLinePasteWarning\\\": \\\"never\\\", // Никогда не предупреждать о вставке нескольких строк\\n \\\"terminal.integrated.gpuAcceleration\\\": \\\"on\\\", // Включить ускорение GPU в терминале\\n \\\"editor.fontLigatures\\\": false, // Отключение лигатур\\n \\\"explorer.confirmDragAndDrop\\\": false, // Отключить подтверждение перетаскивания\\n \\\"explorer.confirmDelete\\\": false, // Отключить подтверждение удаления\\n \\\"cSpell.language\\\": \\\"en,ru\\\", // Языки проверки орфографии\\n \\\"interactiveWindow.executeWithShiftEnter\\\": true, // Выполнение с Shift+Enter\\n \\\"cSpell.userWords\\\": [\\n \\\"beegeek\\\",\\n \\\"capfirst\\\",\\n \\\"discription\\\",\\n \\\"endfor\\\",\\n \\\"pylintrc\\\",\\n \\\"stepik\\\",\\n \\\"stylesheet\\\",\\n \\\"toplevel\\\",\\n \\\"venv\\\"\\n ],\\n \\\"python.terminal.activateEnvInCurrentTerminal\\\": true, // Активировать окружение в текущем терминале\\n \\\"indentRainbow.ignoreErrorLanguages\\\": [\\n \\\"python\\\", // Игнорировать ошибки для языков\\n \\\"json\\\", // JSON\\n \\\"html\\\", // HTML\\n \\\"css\\\", // CSS\\n \\\"javascript\\\", // JavaScript\\n \\\"typescript\\\" // TypeScript\\n ],\\n \\\"indentRainbow.indicatorStyle\\\": \\\"light\\\", // Стиль индикатора - светлый\\n \\\"indentRainbow.lightIndicatorStyleLineWidth\\\": 1, // Ширина линии индикатора\\n // \\\"indentRainbow.colors\\\": [\\n // \\\"rgba(255,255,64,0.3)\\\", // Цвета индикатора\\n // \\\"rgba(127,255,127,0.3)\\\",\\n // \\\"rgba(255,127,255,0.3)\\\",\\n // \\\"rgba(79,236,236,0.3)\\\"\\n // ],\\n \\\"terminal.integrated.localEchoStyle\\\": \\\"dim\\\", // Стиль локального эха - приглушенный\\n \\\"workbench.colorCustomizations\\\": {\\n \\\"terminal.foreground\\\": \\\"#AAAAAA\\\" // Цвет текста терминала - серый\\n },\\n \\\"debugpy.debugJustMyCode\\\": true, // Отладка только моего кода\\n \\\"debug.inlineValues\\\": \\\"off\\\", // Включает отображение значений переменных прямо в коде при отладке.\\n \\\"debugpy.showPythonInlineValues\\\": true, // Показать встроенные значения Python\\n \\\"debug.terminal.clearBeforeReusing\\\": true, // Очистка терминала перед повторным использованием\\n \\\"debug.autoExpandLazyVariables\\\": \\\"on\\\", // Автоматически разворачивает ленивые переменные при отладке.\\n \\\"python.analysis.typeCheckingMode\\\": \\\"off\\\", // Отключение проверки типов в Pylance.\\n \\\"python.analysis.diagnosticMode\\\": \\\"openFilesOnly\\\", // Диагностика только для открытых файлов.\\n \\\"python.analysis.autoImportCompletions\\\": true, // Автоматическое завершение импортов.\\n \\\"python.analysis.inlayHints.functionReturnTypes\\\": true, // Включение отображения типов возвращаемых значений функций в виде подсказок.\\n \\\"python.analysis.inlayHints.variableTypes\\\": false, // Включение отображения типов переменных в виде подсказок.\\n \\\"python.analysis.importFormat\\\": \\\"absolute\\\", // Использование абсолютного формата для импортов.\\n \\\"python.analysis.completeFunctionParens\\\": true, // Автоматическое добавление скобок при завершении функций.\\n \\\"git.autoRepositoryDetection\\\": \\\"subFolders\\\", // Автоматическое определение репозиториев Git в подпапках.\\n \\\"python.analysis.autoSearchPaths\\\": true, // Автоматический поиск путей для анализа.\\n \\\"editor.minimap.enabled\\\": true, // Включает отображение миникарты в редакторе.\\n \\\"editor.minimap.scale\\\": 1, // Масштаб миникарты\\n \\\"terminal.integrated.cursorStyle\\\": \\\"line\\\", // Устанавливает стиль курсора в терминале на \\\"линия\\\".\\n \\\"terminal.integrated.cursorBlinking\\\": true, // Включает мигание курсора в терминале.\\n \\\"window.commandCenter\\\": false, // Отключает командный центр.\\n \\\"workbench.startupEditor\\\": \\\"none\\\", // Устанавливает начальный редактор на \\\"нет\\\", т.е. не открывает ничего при запуске.\\n \\\"explorer.autoReveal\\\": false, // Отключает автоматическое раскрытие файлов в проводнике.\\n \\\"explorer.compactFolders\\\": false, // Отключает компактное отображение папок в проводнике.\\n \\\"breadcrumbs.enabled\\\": true, // Отключает хлебные крошки.\\n \\\"editor.lineNumbers\\\": \\\"on\\\", // Показывать номера строк\\n \\\"workbench.colorTheme\\\": \\\"One Dark Pro Darker\\\", // Устанавливает цветовую тему на \\\"One Dark Pro Darker\\\".\\n \\\"editor.mouseWheelZoom\\\": true, // Включает масштабирование в редакторе с помощью колесика мыши.\\n \\\"terminal.integrated.mouseWheelZoom\\\": true, // Устанавливает размер шрифта в терминале на 18.\\n \\\"editor.formatOnSave\\\": true, // Автоматическое форматирование при сохранении.\\n \\\"editor.formatOnType\\\": true, // Автоматическое форматирование при вводе.\\n \\\"workbench.iconTheme\\\": \\\"vscode-icons\\\",\\n \\\"files.autoSave\\\": \\\"afterDelay\\\", // Автосохранение после задержки\\n \\\"emmet.triggerExpansionOnTab\\\": true, // Вызов Emmet по Tab\\n \\\"files.exclude\\\": {\\n \\\"**/.git\\\": false // Не скрывать папку .git\\n }, // отобрежение папок гита в проекте\\n \\\"editor.linkedEditing\\\": false, // Отключение связанного редактирования\\n \\\"[jsonc]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\" // Форматирование JSON\\n },\\n\\n \\\"[html]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\" // Форматирование HTML\\n },\\n \\\"[css]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\" // Форматирование CSS\\n },\\n \\\"editor.formatOnPaste\\\": true, // Форматирование при вставке\\n \\\"explorer.confirmPasteNative\\\": false, // Отключение подтверждения вставки в проводнике\\n \\\"liveServer.settings.donotShowInfoMsg\\\": true, // Отключение сообщения о запуске Live Server\\n \\\"liveServer.settings.donotVerifyTags\\\": true, // Отключение проверки тегов\\n \\\"[javascript]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\" // Форматирование JavaScript\\n },\\n \\\"files.refactoring.autoSave\\\": true, // Автосохранение при рефакторинге\\n \\\"files.autoSaveDelay\\\": 3000, // Задержка автосохранения 3 секунд\\n \\\"[pip-requirements]\\\": {},\\n\\n // \\\"editor.suggestSelection\\\": \\\"recentlyUsedByPrefix\\\", // Вариант автодополнения\\n // \\\"editor.wordBasedSuggestions\\\": \\\"matchingDocuments\\\", // автодополнение на основе слов в файлах проекта\\n // \\\"editor.parameterHints.enabled\\\": true, // Включает подсказки параметров функций и методов\\n // \\\"editor.inlineSuggest.enabled\\\": true, // Отключает автоматическое предложение полного кода\\n // \\\"codeium.disableSupercomplete\\\": true, // Отключает автоматическое дописывание полного кода\\n\\n \\\"vsintellicode.python.completionsEnabled\\\": true, // Включает автодополнение IntelliCode для Python\\n \\\"vsintellicode.modify.editor.suggestSelection\\\": \\\"enabled\\\", // Позволяет IntelliCode корректировать подсказки\\n \\\"intellicodeApiExamples.python.enabled\\\": true,\\n \\\"codeium.enableConfig\\\": {\\n \\\"*\\\": true,\\n \\\"django-html\\\": true,\\n \\\"markdown\\\": true,\\n \\\"properties\\\": true\\n },\\n \\\"github.copilot.chat.localeOverride\\\": \\\"ru\\\",\\n \\\"database-client.autoSync\\\": true,\\n \\\"workbench.editor.empty.hint\\\": \\\"hidden\\\",\\n \\\"terminal.integrated.fontSize\\\": 16,\\n \\\"[dockercompose]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"[sql]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"inferrinizzard.prettier-sql-vscode\\\"\\n },\\n \\\"[json]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n }\\n}\\n\"}","keybindings":"{\"keybindings\":\"\",\"platform\":2}","snippets":"{\"snippets\":{\"globalsnippets.code-snippets\":\"{\\n\\t// Place your GLOBAL snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and \\n\\t// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope \\n\\t// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is \\n\\t// used to trigger the snippet and the body will be expanded and inserted. Possible variables are: \\n\\t// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. \\n\\t// Placeholders with the same ids are connected.\\n\\t// Example:\\n\\t// \\\"Print to console\\\": {\\n\\t// \\t\\\"scope\\\": \\\"javascript,typescript\\\",\\n\\t// \\t\\\"prefix\\\": \\\"log\\\",\\n\\t// \\t\\\"body\\\": [\\n\\t// \\t\\t\\\"console.log('$1');\\\",\\n\\t// \\t\\t\\\"$2\\\"\\n\\t// \\t],\\n\\t// \\t\\\"description\\\": \\\"Log output to console\\\"\\n\\t// }\\n\\t\\\"LessThan\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__lt__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__lt__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __lt__ method\\\"\\n\\t},\\n\\t\\\"GreaterThan\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__gt__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__gt__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __gt__ method\\\"\\n\\t},\\n\\t\\\"LessThanOrEqual\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__le__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__le__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __le__ method\\\"\\n\\t},\\n\\t\\\"GreaterThanOrEqual\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__ge__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__ge__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __ge__ method\\\"\\n\\t},\\n\\t\\\"UnaryPositive\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__pos__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__pos__(self):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __pos__ method\\\"\\n\\t},\\n\\t\\\"UnaryNegative\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__neg__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__neg__(self):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __neg__ method\\\"\\n\\t},\\n\\t\\\"UnaryInvert\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__invert__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__invert__(self):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __invert__ method\\\"\\n\\t},\\n\\t\\\"AbsoluteValue\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__abs__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__abs__(self):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __abs__ method\\\"\\n\\t},\\n\\t\\\"Round\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__round__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__round__(self, n=None):\\\",\\n\\t\\t\\t\\\" if n is None:\\\",\\n\\t\\t\\t\\\" return\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __round__ method\\\"\\n\\t},\\n\\t\\\"Truncate\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__trunc__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__trunc__(self):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __trunc__ method\\\"\\n\\t},\\n\\t\\\"Floor\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__floor__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__floor__(self):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __floor__ method\\\"\\n\\t},\\n\\t\\\"Ceil\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__ceil__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__ceil__(self):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __ceil__ method\\\"\\n\\t},\\n\\t\\\"Add\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__add__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__add__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __add__ method\\\"\\n\\t},\\n\\t\\\"Subtract\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__sub__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__sub__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __sub__ method\\\"\\n\\t},\\n\\t\\\"Multiply\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__mul__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__mul__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __mul__ method\\\"\\n\\t},\\n\\t\\\"ReverseAdd\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__radd__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__radd__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __radd__ method\\\"\\n\\t},\\n\\t\\\"ReverseSubtract\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__rsub__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__rsub__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __rsub__ method\\\"\\n\\t},\\n\\t\\\"ReverseMultiply\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__rmul__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__rmul__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __rmul__ method\\\"\\n\\t},\\n\\t\\\"ReverseTrueDivide\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__rtruediv__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__rtruediv__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __rtruediv__ method\\\"\\n\\t},\\n\\t\\\"ReverseFloorDivide\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__rfloordiv__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__rfloordiv__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __rfloordiv__ method\\\"\\n\\t},\\n\\t\\\"ReverseMod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__rmod__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__rmod__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __rmod__ method\\\"\\n\\t},\\n\\t\\\"InPlaceAdd\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__iadd__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__iadd__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __iadd__ method\\\"\\n\\t},\\n\\t\\\"InPlaceSubtract\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__isub__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__isub__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __isub__ method\\\"\\n\\t},\\n\\t\\\"InPlaceMultiply\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__imul__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__imul__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __imul__ method\\\"\\n\\t},\\n\\t\\\"InPlaceTrueDivide\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__itruediv__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__itruediv__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __itruediv__ method\\\"\\n\\t},\\n\\t\\\"InPlaceFloorDivide\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__ifloordiv__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__ifloordiv__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __ifloordiv__ method\\\"\\n\\t},\\n\\t\\\"InPlaceMod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__imod__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__imod__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __imod__ method\\\"\\n\\t},\\n\\t\\\"IntMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__int__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__int__(self):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __int__ method\\\"\\n\\t},\\n\\t\\\"FloatMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__float__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__float__(self):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __float__ method\\\"\\n\\t},\\n\\t\\\"ComplexMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__complex__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__complex__(self):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __complex__ method\\\"\\n\\t},\\n\\t\\\"IndexMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__index__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__index__(self):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __index__ method\\\"\\n\\t},\\n\\t\\\"GetAttrMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__getattr__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__getattr__(self, name):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __getattr__ method\\\"\\n\\t},\\n\\t\\\"DeleteMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__delete__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__delete__(self, instance):\\\",\\n\\t\\t\\t\\\" del obj.__dict__[self.name]\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __delete__ method\\\"\\n\\t},\\n\\t\\\"GetMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__get__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__get__(self, obj, cls):\\\",\\n\\t\\t\\t\\\" if obj is None:\\\",\\n\\t\\t\\t\\\" return self\\\",\\n\\t\\t\\t\\\" if self.attr in obj.__dict__:\\\",\\n\\t\\t\\t\\\" return obj.__dict__[self.attr]\\\",\\n\\t\\t\\t\\\" raise AttributeError('Атрибут не найден')\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __get__ method\\\"\\n\\t},\\n\\t\\\"SetMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__set__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__set__(self, obj, value):\\\",\\n\\t\\t\\t\\\" obj.__dict__[self.attr] = value\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __set__ method\\\"\\n\\t},\\n\\t\\\"SetNameMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__set_name__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__set_name__(self, cls, attr):\\\",\\n\\t\\t\\t\\\" self.attr = attr\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __set_name__ method\\\"\\n\\t},\\n\\t\\\"LenMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__len__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__len__(self):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __len__ method\\\"\\n\\t},\\n\\t\\\"TrueDivideMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__truediv__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__truediv__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __truediv__ method\\\"\\n\\t},\\n\\t\\\"FloorDivideMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__floordiv__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__floordiv__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __floordiv__ method\\\"\\n\\t},\\n\\t\\\"ModMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__mod__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__mod__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __mod__ method\\\"\\n\\t},\\n\\t\\\"DivModMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__divmod__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__divmod__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __divmod__ method\\\"\\n\\t},\\n\\t\\\"PowerMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__pow__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__pow__(self, other, modulo=None):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __pow__ method\\\"\\n\\t},\\n\\t\\\"LShiftMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__lshift__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__lshift__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __lshift__ method\\\"\\n\\t},\\n\\t\\\"RShiftMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__rshift__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__rshift__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __rshift__ method\\\"\\n\\t},\\n\\t\\\"AndMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__and__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__and__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __and__ method\\\"\\n\\t},\\n\\t\\\"XorMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__xor__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__xor__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __xor__ method\\\"\\n\\t},\\n\\t\\\"RDivModMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__rdivmod__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__rdivmod__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __rdivmod__ method\\\"\\n\\t},\\n\\t\\\"RPowerMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__rpow__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__rpow__(self, other, modulo=None):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __rpow__ method\\\"\\n\\t},\\n\\t\\\"RLShiftMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__rlshift__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__rlshift__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __rlshift__ method\\\"\\n\\t},\\n\\t\\\"RRShiftMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__rrshift__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__rrshift__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __rrshift__ method\\\"\\n\\t},\\n\\t\\\"RAndMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__rand__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__rand__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __rand__ method\\\"\\n\\t},\\n\\t\\\"RXorMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__rxor__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__rxor__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __rxor__ method\\\"\\n\\t},\\n\\t\\\"BoolMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__bool__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__bool__(self):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __bool__ method\\\"\\n\\t},\\n\\t\\\"GetItemMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__getitem__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__getitem__(self, key):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __getitem__ method\\\"\\n\\t},\\n\\t\\\"SetItemMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__setitem__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__setitem__(self, key, value):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __setitem__ method\\\"\\n\\t},\\n\\t\\\"DelItemMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__delitem__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__delitem__(self, key):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __delitem__ method\\\"\\n\\t},\\n\\t\\\"IPowMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__ipow__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__ipow__(self, other, modulo=None):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __ipow__ method\\\"\\n\\t},\\n\\t\\\"ILShiftMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__ilshift__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__ilshift__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __ilshift__ method\\\"\\n\\t},\\n\\t\\\"IRShiftMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__irshift__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__irshift__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __irshift__ method\\\"\\n\\t},\\n\\t\\\"IAndMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__iand__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__iand__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __iand__ method\\\"\\n\\t},\\n\\t\\\"IXorMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__ixor__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__ixor__(self, other):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __ixor__ method\\\"\\n\\t},\\n\\t\\\"ContainsMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__contains__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__contains__(self, item):\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __contains__ method\\\"\\n\\t},\\n\\t\\\"IterMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__iter__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__iter__(self):\\\",\\n\\t\\t\\t\\\" return self\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __iter__ method\\\"\\n\\t},\\n\\t\\\"NextMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__next__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__next__(self):\\\",\\n\\t\\t\\t\\\" raise StopIteration\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __next__ method\\\"\\n\\t},\\n\\t\\\"ReversedMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__reversed__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__reversed__(self):\\\",\\n\\t\\t\\t\\\" return reversed()\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __reversed__ method\\\"\\n\\t},\\n\\t\\\"ExitMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__exit__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__exit__(self, exc_type, exc_value, traceback):\\\",\\n\\t\\t\\t\\\" # Your cleanup code here\\\",\\n\\t\\t\\t\\\" if exc_type is not None:\\\",\\n\\t\\t\\t\\\" # Handle exception if needed\\\",\\n\\t\\t\\t\\\" return False # Propagate exception\\\",\\n\\t\\t\\t\\\" return True # Suppress exception\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __exit__ method\\\"\\n\\t},\\n\\t\\\"EnterMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__enter__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__enter__(self):\\\",\\n\\t\\t\\t\\\" # Your initialization code here\\\",\\n\\t\\t\\t\\\" return self\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __enter__ method\\\"\\n\\t},\\n\\t\\\"MissingMethod\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__missing__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__missing__(self, key):\\\",\\n\\t\\t\\t\\\" return key\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Custom __missing__ method\\\"\\n\\t},\\n\\t\\\"Add __slots__\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__slots__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__slots__ = ('$1')\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Добавить __slots__\\\"\\n\\t},\\n\\t\\\"Old Init Assignment\\\": {\\n\\t\\t\\\"prefix\\\": \\\"oldinit\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"old_init = cls.__init__\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Сниппет для присваивания старого __init__\\\"\\n\\t},\\n\\t\\\"New Init Method with Wraps\\\": {\\n\\t\\t\\\"prefix\\\": \\\"new_init\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"@functools.wraps(old_init)\\\",\\n\\t\\t\\t\\\"def new_init(self, *args, **kwargs):\\\",\\n\\t\\t\\t\\\" old_init(self, *args, **kwargs)\\\",\\n\\t\\t\\t\\\"cls.__init__ = new_init\\\",\\n\\t\\t\\t\\\"return cls\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Сниппет для метода new_init с использованием functools.wraps\\\"\\n\\t},\\n\\t\\\"Post Init Method\\\": {\\n\\t\\t\\\"prefix\\\": \\\"__post_init__\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"__post_init__(self):\\\",\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Метод __post_init__ для инициализации атрибутов после создания объекта.\\\"\\n\\t},\\n\\t\\\"request snippet\\\": {\\n\\t\\t\\\"prefix\\\": \\\"req\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"request\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Expands 'req' to 'request'\\\"\\n\\t},\\n\\t\\\"kwargs snippet\\\": {\\n\\t\\t\\\"prefix\\\": \\\"**kw\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"**kwargs\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Expands '**kw' to '**kwargst'\\\"\\n\\t},\\n\\t\\\"args snippet\\\": {\\n\\t\\t\\\"prefix\\\": \\\"*ar\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"*args\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Expands '*ar' to '*args'\\\"\\n\\t},\\n\\t\\\"Django get_absolute_url\\\": {\\n\\t\\t\\\"prefix\\\": \\\"get_absolute_url\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"get_absolute_url(self):\\\",\\n\\t\\t\\t\\\" return reverse('$1', kwargs={'slug': self.slug})\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Создаёт метод get_absolute_url для Django-модели\\\",\\n\\t\\t\\\"scope\\\": \\\"python\\\"\\n\\t},\\n\\t\\\"Prettier Ignore\\\": {\\n\\t\\t\\\"prefix\\\": \\\"prettier-ignore\\\",\\n\\t\\t\\\"body\\\": [\\n\\t\\t\\t\\\"<!-- prettier-ignore -->\\\",\\n\\t\\t\\t\\\"$0\\\"\\n\\t\\t],\\n\\t\\t\\\"description\\\": \\\"Игнорирует форматирование Prettier\\\"\\n\\t}\\n}\"}}","extensions":"[{\"identifier\":{\"id\":\"akamud.vscode-theme-onedark\",\"uuid\":\"9b2c953d-6ad4-46d1-b18e-7e5992d1d8a6\"},\"displayName\":\"Atom One Dark Theme\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"alexcvzz.vscode-sqlite\",\"uuid\":\"eaee103c-e866-4b73-87f8-3749cab64da2\"},\"displayName\":\"SQLite\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"amazonwebservices.amazon-q-vscode\",\"uuid\":\"ca77fcb4-e1aa-4cab-ba31-cbdd9436df50\"},\"displayName\":\"Amazon Q\",\"disabled\":true,\"applicationScoped\":false},{\"identifier\":{\"id\":\"amazonwebservices.aws-toolkit-vscode\",\"uuid\":\"ac5787df-9b2d-441c-abf0-977d62bc66f0\"},\"displayName\":\"AWS Toolkit\",\"disabled\":true,\"applicationScoped\":false},{\"identifier\":{\"id\":\"codeium.codeium\",\"uuid\":\"acab4f40-b6db-42ec-bcd1-01802cbdd988\"},\"displayName\":\"Windsurf Plugin (formerly Codeium): AI Coding Autocomplete and Chat for Python, JavaScript, TypeScript, and more\",\"disabled\":true,\"applicationScoped\":false},{\"identifier\":{\"id\":\"continue.continue\",\"uuid\":\"c8d442ab-9ee3-4891-a5b0-994f14f54c94\"},\"displayName\":\"Continue - open-source AI code agent\",\"disabled\":true,\"applicationScoped\":false},{\"identifier\":{\"id\":\"cweijan.dbclient-jdbc\",\"uuid\":\"1fe0d785-8db6-44ef-8113-cb0d98a88473\"},\"displayName\":\"Database Client JDBC\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"cweijan.vscode-redis-client\",\"uuid\":\"6c8a94fa-972f-4089-b688-78f8e2875023\"},\"displayName\":\"Redis\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"diz.ecsstractor-port\",\"uuid\":\"4cddf035-c6d4-49a5-961e-dbc89ebd1e58\"},\"displayName\":\"eCSStractor for VSCode\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"docker.docker\",\"uuid\":\"aa98a064-0f79-4961-a4b7-78df16d547ee\"},\"displayName\":\"Docker DX\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"ecmel.vscode-html-css\",\"uuid\":\"aaee577c-f062-495a-9816-0cbd442f1d25\"},\"displayName\":\"HTML CSS Support\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"esbenp.prettier-vscode\",\"uuid\":\"96fa4707-6983-4489-b7c5-d5ffdfdcce90\"},\"displayName\":\"Prettier - Code formatter\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"formulahendry.auto-rename-tag\",\"uuid\":\"6e440e71-8ed9-4f25-bb78-4b13096b8a03\"},\"displayName\":\"Auto Rename Tag\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"github.copilot\",\"uuid\":\"23c4aeee-f844-43cd-b53e-1113e483f1a6\"},\"displayName\":\"GitHub Copilot\",\"applicationScoped\":true},{\"identifier\":{\"id\":\"github.copilot-chat\",\"uuid\":\"7ec7d6e6-b89e-4cc5-a59b-d6c4d238246f\"},\"displayName\":\"GitHub Copilot Chat\",\"applicationScoped\":true},{\"identifier\":{\"id\":\"github.vscode-pull-request-github\",\"uuid\":\"69ddd764-339a-4ecc-97c1-9c4ece58e36d\"},\"displayName\":\"Запросы на вытягивание GitHub\",\"disabled\":true,\"applicationScoped\":false},{\"identifier\":{\"id\":\"humao.rest-client\",\"uuid\":\"dda49fd5-1f3b-4d25-bf61-4fc41905ede5\"},\"displayName\":\"REST Client\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"inferrinizzard.prettier-sql-vscode\",\"uuid\":\"386997b1-f715-42f5-91e4-618a439c19b8\"},\"displayName\":\"Prettier SQL VSCode\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"junstyle.vscode-django-support\",\"uuid\":\"456ea283-639c-48e0-93c4-b7a501567dfb\"},\"displayName\":\"Django Template Support\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"ms-ceintl.vscode-language-pack-ru\",\"uuid\":\"392df454-688b-4d61-8dba-a12956ac6448\"},\"displayName\":\"Russian Language Pack for Visual Studio Code\",\"applicationScoped\":true},{\"identifier\":{\"id\":\"ms-python.autopep8\",\"uuid\":\"5a21b0c3-89ca-46dd-8ada-658518fb94a5\"},\"displayName\":\"autopep8\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"ms-python.black-formatter\",\"uuid\":\"859e640c-c157-47da-8699-9080b81c8371\"},\"displayName\":\"Black Formatter\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"ms-python.debugpy\",\"uuid\":\"4bd5d2c9-9d65-401a-b0b2-7498d9f17615\"},\"displayName\":\"Python Debugger\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"ms-python.pylint\",\"uuid\":\"8dc47276-5882-4c5f-903d-7eef7b9d1584\"},\"displayName\":\"Pylint\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"ms-python.python\",\"uuid\":\"f1f59ae4-9318-4f3c-a9b5-81b2eaa5f8a5\"},\"displayName\":\"Python\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"ms-python.vscode-pylance\",\"uuid\":\"364d2426-116a-433a-a5d8-a5098dc3afbd\"},\"displayName\":\"Pylance\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"ms-python.vscode-python-envs\",\"uuid\":\"b41d8e8a-b6d4-4202-8f07-7189bdda81be\"},\"displayName\":\"Python Environments\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-containers\",\"uuid\":\"93ce222b-5f6f-49b7-9ab1-a0463c6238df\"},\"displayName\":\"Контейнеры разработки\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"ms-vscode.vscode-speech\",\"uuid\":\"e6610e16-9699-4e1d-a5d7-9bb1643db131\"},\"displayName\":\"VS Code Speech\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"ms-vscode.vscode-speech-language-pack-ru-ru\",\"uuid\":\"639f550d-604b-4623-8197-cd6e43e66bcf\"},\"displayName\":\"Russian (Russia) language support for VS Code Speech\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"ms-vscode.vscode-typescript-next\",\"uuid\":\"15305aca-2588-4ca0-8147-ab2c64730b82\"},\"displayName\":\"JavaScript and TypeScript Nightly\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"naumovs.color-highlight\",\"uuid\":\"121396ad-85a1-45ec-9fd1-d95028a847f5\"},\"displayName\":\"Color Highlight\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"oderwat.indent-rainbow\",\"uuid\":\"eaa2127d-cb69-4ab9-8505-a60c9ee5f28b\"},\"applicationScoped\":false},{\"identifier\":{\"id\":\"pkief.material-icon-theme\",\"uuid\":\"5db78037-f674-459f-a236-db622c427c5b\"},\"displayName\":\"Material Icon Theme\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"pranaygp.vscode-css-peek\",\"uuid\":\"0b8f8d63-11a2-4194-969c-ca7488b3413a\"},\"displayName\":\"CSS Peek\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"ritwickdey.liveserver\",\"uuid\":\"46cc5bbd-b098-4568-9b87-f91e07d26f2d\"},\"displayName\":\"Live Server\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"shd101wyy.markdown-preview-enhanced\",\"uuid\":\"3b1db1fc-c7f7-4bd6-9fa4-b499dfa99a8a\"},\"displayName\":\"Markdown Preview Enhanced\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"streetsidesoftware.code-spell-checker\",\"uuid\":\"f6dbd813-b0a0-42c1-90ea-10dde9d925a7\"},\"displayName\":\"Code Spell Checker\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"streetsidesoftware.code-spell-checker-cspell-bundled-dictionaries\",\"uuid\":\"be56a6df-0650-4af6-8231-f902414cf13b\"},\"displayName\":\"CSpell Bundled Dictionaries - Code Spell Checker\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"streetsidesoftware.code-spell-checker-russian\",\"uuid\":\"1ad9763e-4b6c-4eb4-b7af-2e5f0fdaaccb\"},\"displayName\":\"Russian - Code Spell Checker\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"thebarkman.vscode-djaneiro\",\"uuid\":\"7e72252f-e749-4e4a-bc6a-4a8cc2d121bd\"},\"displayName\":\"Djaneiro - Django Snippets\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"tomoki1207.pdf\",\"uuid\":\"6db08635-0c6a-45ba-9a4b-8c3e192c63c2\"},\"displayName\":\"vscode-pdf\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"visualstudioexptteam.intellicode-api-usage-examples\",\"uuid\":\"9fa2a00e-3bfa-4c2a-abc4-a865bb2b5cf3\"},\"displayName\":\"Примеры использования API IntelliCode\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"visualstudioexptteam.vscodeintellicode\",\"uuid\":\"876e8f93-74d0-4f4f-91b7-34a09f19f444\"},\"displayName\":\"IntelliCode\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"vscode-icons-team.vscode-icons\",\"uuid\":\"9ccc1dd7-7ec4-4a46-bd4f-7d7b8b9d322a\"},\"displayName\":\"vscode-icons\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"xabikos.javascriptsnippets\",\"uuid\":\"a2cec723-5349-460d-9de9-0fd1f8d3456f\"},\"displayName\":\"JavaScript (ES6) code snippets\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"zainchen.json\",\"uuid\":\"311c4d7f-e81f-47f8-9956-6a9919ddef43\"},\"displayName\":\"json\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"zhuangtongfa.material-theme\",\"uuid\":\"26a529c9-2654-4b95-a63f-02f6a52429e6\"},\"displayName\":\"One Dark Pro\",\"applicationScoped\":false},{\"identifier\":{\"id\":\"zignd.html-css-class-completion\",\"uuid\":\"7b71fc1b-190d-4f7d-95d1-93e422649b0a\"},\"displayName\":\"IntelliSense for CSS class names in HTML\",\"applicationScoped\":false}]","globalState":"{\"storage\":{\"workbench.explorer.views.state.hidden\":\"[{\\\"id\\\":\\\"outline\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"timeline\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.explorer.openEditorsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.explorer.emptyView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.explorer.fileView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"copilot-chat\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerImages\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerRegistries\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerNetworks\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerVolumes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.dockerContexts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.help\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"npm\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"liveshare.session.explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"PowerShellCommands\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.session\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.help\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.devtools\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"jsonOutline\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"codeium.chatPanelView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workspaceEnvironments\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"pythonEnvironments\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.home\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.launchpad\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.drafts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.workspaces\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.commitDetails\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.pullRequest\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.timeline\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.searchAndCompare\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.patchDetails\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"python-projects\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"env-managers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"cSpellInfoView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"cSpellRegExpView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"jupyterViewVariables\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.graph\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"cSpellIssuesViewByFile\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.graphDetails\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"cSpellIssuesViewByIssue\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"cell-tag\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"github:login\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"pr:github\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"issues:github\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"notifications:github\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"github:conflictResolution\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dataworkspace.views.main\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"objectExplorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"queryHistory\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sqlite.explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"github:createPullRequestWebview\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"github:compareChangesFiles\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"github:compareChangesCommits\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"prStatus:github\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"github:activePullRequest\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"github:activePullRequest:welcome\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-containers.views.containers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-containers.views.images\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-containers.views.registries\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-containers.views.networks\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-containers.views.volumes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-containers.views.dockerContexts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-containers.views.help\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"chat-view\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"continue.continueGUIView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"chat\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"aws.appBuilderForFileExplorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"tabnine.chat\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"tabnine.chat.authenticate\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"tabnine.chat.not_part_of_a_team\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"tabnine.loading\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"aws.amazonq.notifications\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"aws.amazonq.AmazonCommonAuth\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"aws.amazonq.SecurityIssuesTree\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"aws.amazonq.AmazonQChatView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"aws.codeWhisperer.referenceLog\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"aws.toolkit.notifications\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"aws.amazonq.codewhisperer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"aws.explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"aws.cdk\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"aws.appBuilder\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"aws.codecatalyst\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"aws.toolkit.AmazonCommonAuth\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"makefile.outline\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"ri-sidebar\\\",\\\"isHidden\\\":false}]\",\"workbench.view.search.state.hidden\":\"[{\\\"id\\\":\\\"workbench.view.search\\\",\\\"isHidden\\\":false}]\",\"workbench.scm.views.state.hidden\":\"[{\\\"id\\\":\\\"workbench.scm.repositories\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm.history\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.repositories\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"gitlens.views.commits\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.branches\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.remotes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.stashes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.tags\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.worktrees\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.contributors\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.scm.grouped\\\",\\\"isHidden\\\":false}]\",\"workbench.panel.markers.hidden\":\"[{\\\"id\\\":\\\"workbench.panel.markers.view\\\",\\\"isHidden\\\":false}]\",\"workbench.panel.output.hidden\":\"[{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"isHidden\\\":false}]\",\"terminal.hidden\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"isHidden\\\":false}]\",\"workbench.activityBar.location\":\"default\",\"workbench.activity.pinnedViewlets2\":\"[{\\\"id\\\":\\\"workbench.view.search\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":1},{\\\"id\\\":\\\"workbench.view.explorer\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":0},{\\\"id\\\":\\\"workbench.view.debug\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":3},{\\\"id\\\":\\\"workbench.view.extension.context-inspector\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":13},{\\\"id\\\":\\\"workbench.view.extension.json-views\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":17},{\\\"id\\\":\\\"workbench.view.scm\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":2},{\\\"id\\\":\\\"workbench.view.extension.test\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":6},{\\\"id\\\":\\\"workbench.view.remote\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.extension.references-view\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":7},{\\\"id\\\":\\\"workbench.view.extension.cspell-info-explorer\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":15},{\\\"id\\\":\\\"workbench.view.extension.cspell-regexp-explorer\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":16},{\\\"id\\\":\\\"workbench.view.extensions\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.extension.python\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":14},{\\\"id\\\":\\\"workbench.view.extension.github-copilot-completions-debugger-panel\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":11},{\\\"id\\\":\\\"workbench.view.extension.copilot-chat\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":12},{\\\"id\\\":\\\"workbench.view.extension.github-cweijan-mysql\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":8},{\\\"id\\\":\\\"workbench.view.extension.github-dbclient-history\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":9},{\\\"id\\\":\\\"workbench.view.extension.github-cweijan-nosql\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":10},{\\\"id\\\":\\\"workbench.view.sync\\\",\\\"pinned\\\":true,\\\"visible\\\":false},{\\\"id\\\":\\\"workbench.view.editSessions\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\",\"workbench.panel.pinnedPanels\":\"[{\\\"id\\\":\\\"workbench.panel.markers\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":0},{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":1},{\\\"id\\\":\\\"workbench.panel.repl\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":2},{\\\"id\\\":\\\"terminal\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":3},{\\\"id\\\":\\\"workbench.view.extension.dbclient-search-result\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":6},{\\\"id\\\":\\\"workbench.view.extension.dbclient-variable-config-view\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":7},{\\\"id\\\":\\\"workbench.views.service.panel.1d03a7e9-bd67-45ce-bbd5-bd55ccc71e44\\\",\\\"pinned\\\":true,\\\"visible\\\":false},{\\\"id\\\":\\\"workbench.panel.testResults\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":3},{\\\"id\\\":\\\"~remote.forwardedPortsContainer\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":5},{\\\"id\\\":\\\"refactorPreview\\\",\\\"pinned\\\":true,\\\"visible\\\":false},{\\\"id\\\":\\\"workbench.panel.comments\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":10},{\\\"id\\\":\\\"workbench.view.extension.cspellPanel\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":8}]\",\"workbench.auxiliarybar.pinnedPanels\":\"[{\\\"id\\\":\\\"workbench.panel.chat\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":1},{\\\"id\\\":\\\"workbench.panel.chatEditing\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":101}]\",\"workbench.panel.repl.hidden\":\"[{\\\"id\\\":\\\"workbench.panel.repl.view\\\",\\\"isHidden\\\":false}]\",\"workbench.panel.alignment\":\"center\",\"encryption.migratedToGnomeLibsecret\":\"true\",\"themeUpdatedNotificationShown\":\"true\",\"colorThemeData\":\"{\\\"id\\\":\\\"vs-dark zhuangtongfa-material-theme-themes-OneDark-Pro-darker-json\\\",\\\"label\\\":\\\"One Dark Pro Darker\\\",\\\"settingsId\\\":\\\"One Dark Pro Darker\\\",\\\"themeTokenColors\\\":[{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"meta.embedded\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"punctuation.definition.delayed.unison,punctuation.definition.list.begin.unison,punctuation.definition.list.end.unison,punctuation.definition.ability.begin.unison,punctuation.definition.ability.end.unison,punctuation.operator.assignment.as.unison,punctuation.separator.pipe.unison,punctuation.separator.delimiter.unison,punctuation.definition.hash.unison\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"variable.other.generic-type.haskell\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"storage.type.haskell\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"support.variable.magic.python\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"punctuation.separator.period.python,punctuation.separator.element.python,punctuation.parenthesis.begin.python,punctuation.parenthesis.end.python\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"variable.parameter.function.language.special.self.python\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"variable.parameter.function.language.special.cls.python\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"storage.modifier.lifetime.rust\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"},\\\"scope\\\":\\\"support.function.std.rust\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"entity.name.lifetime.rust\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"variable.language.rust\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"support.constant.edge\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"constant.other.character-class.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":[\\\"keyword.operator.word\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"keyword.operator.quantifier.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"variable.parameter.function\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6370\\\"},\\\"scope\\\":\\\"comment markup.link\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"markup.changed.diff\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"},\\\"scope\\\":\\\"meta.diff.header.from-file,meta.diff.header.to-file,punctuation.definition.from-file.diff,punctuation.definition.to-file.diff\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"},\\\"scope\\\":\\\"markup.inserted.diff\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"markup.deleted.diff\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"meta.function.c,meta.function.cpp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"punctuation.section.block.begin.bracket.curly.cpp,punctuation.section.block.end.bracket.curly.cpp,punctuation.terminator.statement.c,punctuation.section.block.begin.bracket.curly.c,punctuation.section.block.end.bracket.curly.c,punctuation.section.parens.begin.bracket.round.c,punctuation.section.parens.end.bracket.round.c,punctuation.section.parameters.begin.bracket.round.c,punctuation.section.parameters.end.bracket.round.c\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"punctuation.separator.key-value\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"},\\\"scope\\\":\\\"keyword.operator.expression.import\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"support.constant.math\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"support.constant.property.math\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"variable.other.constant\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":[\\\"storage.type.annotation.java\\\",\\\"storage.type.object.array.java\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"source.java\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"punctuation.section.block.begin.java,punctuation.section.block.end.java,punctuation.definition.method-parameters.begin.java,punctuation.definition.method-parameters.end.java,meta.method.identifier.java,punctuation.section.method.begin.java,punctuation.section.method.end.java,punctuation.terminator.java,punctuation.section.class.begin.java,punctuation.section.class.end.java,punctuation.section.inner-class.begin.java,punctuation.section.inner-class.end.java,meta.method-call.java,punctuation.section.class.begin.bracket.curly.java,punctuation.section.class.end.bracket.curly.java,punctuation.section.method.begin.bracket.curly.java,punctuation.section.method.end.bracket.curly.java,punctuation.separator.period.java,punctuation.bracket.angle.java,punctuation.definition.annotation.java,meta.method.body.java\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"},\\\"scope\\\":\\\"meta.method.java\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"storage.modifier.import.java,storage.type.java,storage.type.generic.java\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"keyword.operator.instanceof.java\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"meta.definition.variable.name.java\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":\\\"keyword.operator.logical\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":\\\"keyword.operator.bitwise\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":\\\"keyword.operator.channel\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"support.constant.property-value.scss,support.constant.property-value.css\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":\\\"keyword.operator.css,keyword.operator.scss,keyword.operator.less\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"support.constant.color.w3c-standard-color-name.css,support.constant.color.w3c-standard-color-name.scss\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"punctuation.separator.list.comma.css\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"support.constant.color.w3c-standard-color-name.css\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":\\\"support.type.vendored.property-name.css\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"support.module.node,support.type.object.module,support.module.node\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"entity.name.type.module\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"variable.other.readwrite,meta.object-literal.key,support.variable.property,support.variable.object.process,support.variable.object.node\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"support.constant.json\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":[\\\"keyword.operator.expression.instanceof\\\",\\\"keyword.operator.new\\\",\\\"keyword.operator.ternary\\\",\\\"keyword.operator.optional\\\",\\\"keyword.operator.expression.keyof\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"support.type.object.console\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"support.variable.property.process\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"},\\\"scope\\\":\\\"entity.name.function,support.function.console\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"keyword.operator.misc.rust\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"keyword.operator.sigil.rust\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"keyword.operator.delete\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":\\\"support.type.object.dom\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"support.variable.dom,support.variable.property.dom\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":\\\"keyword.operator.arithmetic,keyword.operator.comparison,keyword.operator.decrement,keyword.operator.increment,keyword.operator.relational\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"keyword.operator.assignment.c,keyword.operator.comparison.c,keyword.operator.c,keyword.operator.increment.c,keyword.operator.decrement.c,keyword.operator.bitwise.shift.c,keyword.operator.assignment.cpp,keyword.operator.comparison.cpp,keyword.operator.cpp,keyword.operator.increment.cpp,keyword.operator.decrement.cpp,keyword.operator.bitwise.shift.cpp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"punctuation.separator.delimiter\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"punctuation.separator.c,punctuation.separator.cpp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":\\\"support.type.posix-reserved.c,support.type.posix-reserved.cpp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"keyword.operator.sizeof.c,keyword.operator.sizeof.cpp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"variable.parameter.function.language.python\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":\\\"support.type.python\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"keyword.operator.logical.python\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"variable.parameter.function.python\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"punctuation.definition.arguments.begin.python,punctuation.definition.arguments.end.python,punctuation.separator.arguments.python,punctuation.definition.list.begin.python,punctuation.definition.list.end.python\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"},\\\"scope\\\":\\\"meta.function-call.generic.python\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"constant.character.format.placeholder.other.python\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"keyword.operator\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"keyword.operator.assignment.compound\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":\\\"keyword.operator.assignment.compound.js,keyword.operator.assignment.compound.ts\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"keyword\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"entity.name.namespace\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"variable\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"variable.c\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"variable.language\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"token.variable.parameter.java\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"import.storage.java\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"token.package.keyword\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"token.package\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"},\\\"scope\\\":[\\\"entity.name.function\\\",\\\"meta.require\\\",\\\"support.function.any-method\\\",\\\"variable.function\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"entity.name.type.namespace\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"support.class, entity.name.type.class\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"entity.name.class.identifier.namespace.type\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":[\\\"entity.name.class\\\",\\\"variable.other.class.js\\\",\\\"variable.other.class.ts\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"variable.other.class.php\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"entity.name.type\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"keyword.control\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"control.elements, keyword.operator.less\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"},\\\"scope\\\":\\\"keyword.other.special-method\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"storage\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"token.storage\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"keyword.operator.expression.delete,keyword.operator.expression.in,keyword.operator.expression.of,keyword.operator.expression.instanceof,keyword.operator.new,keyword.operator.expression.typeof,keyword.operator.expression.void\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"token.storage.type.java\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":\\\"support.function\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"support.type.property-name\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"support.type.property-name.toml, support.type.property-name.table.toml, support.type.property-name.array.toml\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"support.constant.property-value\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"support.constant.font-name\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"meta.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"},\\\"scope\\\":\\\"string\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":\\\"constant.other.symbol\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"constant.numeric\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"constant\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"punctuation.definition.constant\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"entity.name.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"entity.other.attribute-name\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"},\\\"scope\\\":\\\"entity.other.attribute-name.id\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"entity.other.attribute-name.class.css\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"meta.selector\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"markup.heading\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"},\\\"scope\\\":\\\"markup.heading punctuation.definition.heading, entity.name.section\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"keyword.other.unit\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"markup.bold,todo.bold\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"punctuation.definition.bold\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"markup.italic, punctuation.definition.italic,todo.emphasis\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"emphasis md\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"entity.name.section.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"punctuation.definition.heading.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"punctuation.definition.list.begin.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"markup.heading.setext\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"punctuation.definition.bold.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"},\\\"scope\\\":\\\"markup.inline.raw.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"},\\\"scope\\\":\\\"markup.inline.raw.string.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"punctuation.definition.raw.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"punctuation.definition.list.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":[\\\"punctuation.definition.string.begin.markdown\\\",\\\"punctuation.definition.string.end.markdown\\\",\\\"punctuation.definition.metadata.markdown\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":[\\\"beginning.punctuation.definition.list.markdown\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"punctuation.definition.metadata.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"markup.underline.link.markdown,markup.underline.link.image.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"},\\\"scope\\\":\\\"string.other.link.title.markdown,string.other.link.description.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"},\\\"scope\\\":\\\"markup.raw.monospace.asciidoc\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"punctuation.definition.asciidoc\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"markup.list.asciidoc\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"markup.link.asciidoc,markup.other.url.asciidoc\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"},\\\"scope\\\":\\\"string.unquoted.asciidoc,markup.other.url.asciidoc\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":\\\"string.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"punctuation.section.embedded, variable.interpolation\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"punctuation.section.embedded.begin,punctuation.section.embedded.end\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ffffff\\\"},\\\"scope\\\":\\\"invalid.illegal\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"invalid.illegal.bad-ampersand.html\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"invalid.illegal.unrecognized-tag.html\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ffffff\\\"},\\\"scope\\\":\\\"invalid.broken\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ffffff\\\"},\\\"scope\\\":\\\"invalid.deprecated\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"invalid.deprecated.entity.other.attribute-name.html\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ffffff\\\"},\\\"scope\\\":\\\"invalid.unimplemented\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"source.json meta.structure.dictionary.json > string.quoted.json\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"},\\\"scope\\\":\\\"source.json meta.structure.dictionary.json > value.json > string.quoted.json,source.json meta.structure.array.json > value.json > string.quoted.json,source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation,source.json meta.structure.array.json > value.json > string.quoted.json > punctuation\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":\\\"source.json meta.structure.dictionary.json > constant.language.json,source.json meta.structure.array.json > constant.language.json\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"support.type.property-name.json\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"support.type.property-name.json punctuation\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"support.other.namespace.use.php,support.other.namespace.use-as.php,entity.other.alias.php,meta.interface.php\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"keyword.operator.error-control.php\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"keyword.operator.type.php\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"punctuation.section.array.begin.php\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"punctuation.section.array.end.php\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#f44747\\\"},\\\"scope\\\":\\\"invalid.illegal.non-null-typehinted.php\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"storage.type.php,meta.other.type.phpdoc.php,keyword.other.type.php,keyword.other.array.phpdoc.php\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"},\\\"scope\\\":\\\"meta.function-call.php,meta.function-call.object.php,meta.function-call.static.php\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"punctuation.definition.parameters.begin.bracket.round.php,punctuation.definition.parameters.end.bracket.round.php,punctuation.separator.delimiter.php,punctuation.section.scope.begin.php,punctuation.section.scope.end.php,punctuation.terminator.expression.php,punctuation.definition.arguments.begin.bracket.round.php,punctuation.definition.arguments.end.bracket.round.php,punctuation.definition.storage-type.begin.bracket.round.php,punctuation.definition.storage-type.end.bracket.round.php,punctuation.definition.array.begin.bracket.round.php,punctuation.definition.array.end.bracket.round.php,punctuation.definition.begin.bracket.round.php,punctuation.definition.end.bracket.round.php,punctuation.definition.begin.bracket.curly.php,punctuation.definition.end.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php,punctuation.definition.section.switch-block.start.bracket.curly.php,punctuation.definition.section.switch-block.begin.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"support.constant.core.rust\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"support.constant.ext.php,support.constant.std.php,support.constant.core.php,support.constant.parser-token.php\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"},\\\"scope\\\":\\\"entity.name.goto-label.php,support.other.php\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":\\\"keyword.operator.logical.php,keyword.operator.bitwise.php,keyword.operator.arithmetic.php\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"keyword.operator.regexp.php\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":\\\"keyword.operator.comparison.php\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"keyword.operator.heredoc.php,keyword.operator.nowdoc.php\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"},\\\"scope\\\":\\\"meta.function.decorator.python\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":\\\"support.token.decorator.python,meta.function.decorator.identifier.python\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"function.parameter\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"function.brace\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"function.parameter.ruby, function.parameter.cs\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":\\\"constant.language.symbol.ruby\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":\\\"constant.language.symbol.hashkey.ruby\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":\\\"rgb-value\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"inline-color-decoration rgb-value\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"less rgb-value\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"selector.sass\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"support.type.primitive.ts,support.type.builtin.ts,support.type.primitive.tsx,support.type.builtin.tsx\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"block.scope.end,block.scope.begin\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":\\\"storage.type.cs\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"entity.name.variable.local.cs\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"},\\\"scope\\\":\\\"token.info-token\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":\\\"token.warn-token\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#f44747\\\"},\\\"scope\\\":\\\"token.error-token\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"token.debug-token\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":[\\\"punctuation.definition.template-expression.begin\\\",\\\"punctuation.definition.template-expression.end\\\",\\\"punctuation.section.embedded\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":[\\\"meta.template.expression\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":[\\\"keyword.operator.module\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"},\\\"scope\\\":[\\\"support.type.type.flowtype\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":[\\\"support.type.primitive\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":[\\\"meta.property.object\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":[\\\"variable.parameter.function.js\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"},\\\"scope\\\":[\\\"keyword.other.template.begin\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"},\\\"scope\\\":[\\\"keyword.other.template.end\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"},\\\"scope\\\":[\\\"keyword.other.substitution.begin\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"},\\\"scope\\\":[\\\"keyword.other.substitution.end\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":[\\\"keyword.operator.assignment\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":[\\\"keyword.operator.assignment.go\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":[\\\"keyword.operator.arithmetic.go\\\",\\\"keyword.operator.address.go\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":[\\\"keyword.operator.arithmetic.c\\\",\\\"keyword.operator.arithmetic.cpp\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":[\\\"entity.name.package.go\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":[\\\"support.type.prelude.elm\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":[\\\"support.constant.elm\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":[\\\"punctuation.quasi.element\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":[\\\"constant.character.entity\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":[\\\"entity.other.attribute-name.pseudo-element\\\",\\\"entity.other.attribute-name.pseudo-class\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":[\\\"entity.global.clojure\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":[\\\"meta.symbol.clojure\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":[\\\"constant.keyword.clojure\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":[\\\"meta.arguments.coffee\\\",\\\"variable.parameter.function.coffee\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"},\\\"scope\\\":[\\\"source.ini\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":[\\\"meta.scope.prerequisites.makefile\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":[\\\"source.makefile\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":[\\\"storage.modifier.import.groovy\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"},\\\"scope\\\":[\\\"meta.method.groovy\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":[\\\"meta.definition.variable.name.groovy\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"},\\\"scope\\\":[\\\"meta.definition.class.inherited.classes.groovy\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":[\\\"support.variable.semantic.hlsl\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":[\\\"support.type.texture.hlsl\\\",\\\"support.type.sampler.hlsl\\\",\\\"support.type.object.hlsl\\\",\\\"support.type.object.rw.hlsl\\\",\\\"support.type.fx.hlsl\\\",\\\"support.type.object.hlsl\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":[\\\"text.variable\\\",\\\"text.bracketed\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":[\\\"support.type.swift\\\",\\\"support.type.vb.asp\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":[\\\"entity.name.function.xi\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":[\\\"entity.name.class.xi\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":[\\\"constant.character.character-class.regexp.xi\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":[\\\"constant.regexp.xi\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":[\\\"keyword.control.xi\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":[\\\"invalid.xi\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"},\\\"scope\\\":[\\\"beginning.punctuation.definition.quote.markdown.xi\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#7f848e\\\"},\\\"scope\\\":[\\\"beginning.punctuation.definition.list.markdown.xi\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"},\\\"scope\\\":[\\\"constant.character.xi\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"},\\\"scope\\\":[\\\"accent.xi\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":[\\\"wikiword.xi\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ffffff\\\"},\\\"scope\\\":[\\\"constant.other.color.rgb-value.xi\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6370\\\"},\\\"scope\\\":[\\\"punctuation.definition.tag.xi\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":[\\\"entity.name.label.cs\\\",\\\"entity.name.scope-resolution.function.call\\\",\\\"entity.name.scope-resolution.function.definition\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":[\\\"entity.name.label.cs\\\",\\\"markup.heading.setext.1.markdown\\\",\\\"markup.heading.setext.2.markdown\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":[\\\" meta.brace.square\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#7f848e\\\"},\\\"scope\\\":\\\"comment, punctuation.definition.comment\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6370\\\"},\\\"scope\\\":\\\"markup.quote.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"punctuation.definition.block.sequence.item.yaml\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":[\\\"constant.language.symbol.elixir\\\",\\\"constant.language.symbol.double-quoted.elixir\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":[\\\"entity.name.variable.parameter.cs\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":[\\\"entity.name.variable.field.cs\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"markup.deleted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"},\\\"scope\\\":\\\"markup.inserted\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"},\\\"scope\\\":\\\"markup.underline\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#BE5046\\\"},\\\"scope\\\":[\\\"punctuation.section.embedded.begin.php\\\",\\\"punctuation.section.embedded.end.php\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":[\\\"support.other.namespace.php\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":[\\\"variable.parameter.function.latex\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":[\\\"variable.other.object\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":[\\\"variable.other.constant.property\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":[\\\"entity.other.inherited-class\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"variable.other.readwrite.c\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#abb2bf\\\"},\\\"scope\\\":\\\"entity.name.variable.parameter.php,punctuation.separator.colon.php,constant.other.php\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":[\\\"constant.numeric.decimal.asm.x86_64\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d19a66\\\"},\\\"scope\\\":[\\\"support.other.parenthesis.regexp\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#56b6c2\\\"},\\\"scope\\\":[\\\"constant.character.escape\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":[\\\"string.regexp\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"},\\\"scope\\\":[\\\"log.info\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e5c07b\\\"},\\\"scope\\\":[\\\"log.warning\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":[\\\"log.error\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#c678dd\\\"},\\\"scope\\\":\\\"keyword.operator.expression.is\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#e06c75\\\"},\\\"scope\\\":\\\"entity.name.label\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#61afef\\\"},\\\"scope\\\":[\\\"support.class.math.block.environment.latex\\\",\\\"constant.other.general.math.tex\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#98c379\\\"},\\\"scope\\\":[\\\"constant.character.math.tex\\\"]}],\\\"semanticTokenRules\\\":[{\\\"_selector\\\":\\\"annotation:dart\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#d19a66\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null,\\\"_strikethrough\\\":null}},{\\\"_selector\\\":\\\"enumMember\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#56b6c2\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null,\\\"_strikethrough\\\":null}},{\\\"_selector\\\":\\\"macro\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#d19a66\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null,\\\"_strikethrough\\\":null}},{\\\"_selector\\\":\\\"memberOperatorOverload\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#c678dd\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null,\\\"_strikethrough\\\":null}},{\\\"_selector\\\":\\\"parameter.label:dart\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#abb2bf\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null,\\\"_strikethrough\\\":null}},{\\\"_selector\\\":\\\"property:dart\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#d19a66\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null,\\\"_strikethrough\\\":null}},{\\\"_selector\\\":\\\"tomlArrayKey\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#e5c07b\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null,\\\"_strikethrough\\\":null}},{\\\"_selector\\\":\\\"variable:dart\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#d19a66\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null,\\\"_strikethrough\\\":null}},{\\\"_selector\\\":\\\"variable.constant\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#d19a66\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null,\\\"_strikethrough\\\":null}},{\\\"_selector\\\":\\\"variable.defaultLibrary\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#e5c07b\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null,\\\"_strikethrough\\\":null}}],\\\"extensionData\\\":{\\\"_extensionId\\\":\\\"zhuangtongfa.material-theme\\\",\\\"_extensionIsBuiltin\\\":false,\\\"_extensionName\\\":\\\"material-theme\\\",\\\"_extensionPublisher\\\":\\\"zhuangtongfa\\\"},\\\"themeSemanticHighlighting\\\":true,\\\"colorMap\\\":{\\\"actionBar.toggledBackground\\\":\\\"#525761\\\",\\\"activityBar.background\\\":\\\"#23272e\\\",\\\"activityBar.foreground\\\":\\\"#d7dae0\\\",\\\"activityBarBadge.background\\\":\\\"#4d78cc\\\",\\\"activityBarBadge.foreground\\\":\\\"#f8fafd\\\",\\\"badge.background\\\":\\\"#23272e\\\",\\\"button.background\\\":\\\"#404754\\\",\\\"button.secondaryBackground\\\":\\\"#30333d\\\",\\\"button.secondaryForeground\\\":\\\"#c0bdbd\\\",\\\"checkbox.border\\\":\\\"#404754\\\",\\\"debugToolBar.background\\\":\\\"#1e2227\\\",\\\"descriptionForeground\\\":\\\"#abb2bf\\\",\\\"diffEditor.insertedTextBackground\\\":\\\"#00809b33\\\",\\\"dropdown.background\\\":\\\"#1e2227\\\",\\\"dropdown.border\\\":\\\"#1e2227\\\",\\\"editor.background\\\":\\\"#23272e\\\",\\\"editor.findMatchBackground\\\":\\\"#d19a6644\\\",\\\"editor.findMatchBorder\\\":\\\"#ffffff5a\\\",\\\"editor.findMatchHighlightBackground\\\":\\\"#ffffff22\\\",\\\"editor.foreground\\\":\\\"#abb2bf\\\",\\\"editor.lineHighlightBackground\\\":\\\"#2c313c\\\",\\\"editor.selectionBackground\\\":\\\"#67769660\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#ffd33d44\\\",\\\"editor.selectionHighlightBorder\\\":\\\"#dddddd\\\",\\\"editor.wordHighlightBackground\\\":\\\"#d2e0ff2f\\\",\\\"editor.wordHighlightBorder\\\":\\\"#7f848e\\\",\\\"editor.wordHighlightStrongBackground\\\":\\\"#abb2bf26\\\",\\\"editor.wordHighlightStrongBorder\\\":\\\"#7f848e\\\",\\\"editorBracketHighlight.foreground1\\\":\\\"#d19a66\\\",\\\"editorBracketHighlight.foreground2\\\":\\\"#c678dd\\\",\\\"editorBracketHighlight.foreground3\\\":\\\"#56b6c2\\\",\\\"editorBracketMatch.background\\\":\\\"#515a6b\\\",\\\"editorBracketMatch.border\\\":\\\"#515a6b\\\",\\\"editorCursor.background\\\":\\\"#ffffffc9\\\",\\\"editorCursor.foreground\\\":\\\"#528bff\\\",\\\"editorError.foreground\\\":\\\"#c24038\\\",\\\"editorGroup.background\\\":\\\"#181a1f\\\",\\\"editorGroup.border\\\":\\\"#181a1f\\\",\\\"editorGroupHeader.tabsBackground\\\":\\\"#1e2227\\\",\\\"editorGutter.addedBackground\\\":\\\"#109868\\\",\\\"editorGutter.deletedBackground\\\":\\\"#9a353d\\\",\\\"editorGutter.modifiedBackground\\\":\\\"#948b60\\\",\\\"editorHoverWidget.background\\\":\\\"#1e2227\\\",\\\"editorHoverWidget.border\\\":\\\"#181a1f\\\",\\\"editorHoverWidget.highlightForeground\\\":\\\"#61afef\\\",\\\"editorIndentGuide.activeBackground1\\\":\\\"#c8c8c859\\\",\\\"editorIndentGuide.background1\\\":\\\"#3b4048\\\",\\\"editorInlayHint.background\\\":\\\"#2c313c\\\",\\\"editorInlayHint.foreground\\\":\\\"#abb2bf\\\",\\\"editorLineNumber.activeForeground\\\":\\\"#abb2bf\\\",\\\"editorLineNumber.foreground\\\":\\\"#495162\\\",\\\"editorMarkerNavigation.background\\\":\\\"#1e2227\\\",\\\"editorOverviewRuler.addedBackground\\\":\\\"#109868\\\",\\\"editorOverviewRuler.deletedBackground\\\":\\\"#9a353d\\\",\\\"editorOverviewRuler.modifiedBackground\\\":\\\"#948b60\\\",\\\"editorRuler.foreground\\\":\\\"#abb2bf26\\\",\\\"editorSuggestWidget.background\\\":\\\"#1e2227\\\",\\\"editorSuggestWidget.border\\\":\\\"#181a1f\\\",\\\"editorSuggestWidget.selectedBackground\\\":\\\"#2c313a\\\",\\\"editorWarning.foreground\\\":\\\"#d19a66\\\",\\\"editorWhitespace.foreground\\\":\\\"#ffffff1d\\\",\\\"editorWidget.background\\\":\\\"#1e2227\\\",\\\"focusBorder\\\":\\\"#3e4452\\\",\\\"gitDecoration.ignoredResourceForeground\\\":\\\"#636b78\\\",\\\"input.background\\\":\\\"#1d1f23\\\",\\\"input.foreground\\\":\\\"#abb2bf\\\",\\\"list.activeSelectionBackground\\\":\\\"#2c313a\\\",\\\"list.activeSelectionForeground\\\":\\\"#d7dae0\\\",\\\"list.focusBackground\\\":\\\"#323842\\\",\\\"list.focusForeground\\\":\\\"#f0f0f0\\\",\\\"list.highlightForeground\\\":\\\"#ecebeb\\\",\\\"list.hoverBackground\\\":\\\"#2c313a\\\",\\\"list.hoverForeground\\\":\\\"#abb2bf\\\",\\\"list.inactiveSelectionBackground\\\":\\\"#323842\\\",\\\"list.inactiveSelectionForeground\\\":\\\"#d7dae0\\\",\\\"list.warningForeground\\\":\\\"#d19a66\\\",\\\"menu.foreground\\\":\\\"#abb2bf\\\",\\\"menu.separatorBackground\\\":\\\"#343a45\\\",\\\"minimapGutter.addedBackground\\\":\\\"#109868\\\",\\\"minimapGutter.deletedBackground\\\":\\\"#9a353d\\\",\\\"minimapGutter.modifiedBackground\\\":\\\"#948b60\\\",\\\"multiDiffEditor.headerBackground\\\":\\\"#21252b\\\",\\\"panel.border\\\":\\\"#3e4452\\\",\\\"panelSectionHeader.background\\\":\\\"#1e2227\\\",\\\"peekViewEditor.background\\\":\\\"#1b1d23\\\",\\\"peekViewEditor.matchHighlightBackground\\\":\\\"#29244b\\\",\\\"peekViewResult.background\\\":\\\"#22262b\\\",\\\"scrollbar.shadow\\\":\\\"#23252c\\\",\\\"scrollbarSlider.activeBackground\\\":\\\"#747d9180\\\",\\\"scrollbarSlider.background\\\":\\\"#4e566660\\\",\\\"scrollbarSlider.hoverBackground\\\":\\\"#5a637580\\\",\\\"settings.focusedRowBackground\\\":\\\"#23272e\\\",\\\"settings.headerForeground\\\":\\\"#ffffff\\\",\\\"sideBar.background\\\":\\\"#1e2227\\\",\\\"sideBar.foreground\\\":\\\"#abb2bf\\\",\\\"sideBarSectionHeader.background\\\":\\\"#23272e\\\",\\\"sideBarSectionHeader.foreground\\\":\\\"#abb2bf\\\",\\\"statusBar.background\\\":\\\"#1e2227\\\",\\\"statusBar.debuggingBackground\\\":\\\"#cc6633\\\",\\\"statusBar.debuggingBorder\\\":\\\"#ff000000\\\",\\\"statusBar.debuggingForeground\\\":\\\"#ffffff\\\",\\\"statusBar.foreground\\\":\\\"#9da5b4\\\",\\\"statusBar.noFolderBackground\\\":\\\"#1e2227\\\",\\\"statusBarItem.remoteBackground\\\":\\\"#4d78cc\\\",\\\"statusBarItem.remoteForeground\\\":\\\"#f8fafd\\\",\\\"tab.activeBackground\\\":\\\"#23272e\\\",\\\"tab.activeBorder\\\":\\\"#b4b4b4\\\",\\\"tab.activeForeground\\\":\\\"#dcdcdc\\\",\\\"tab.border\\\":\\\"#181a1f\\\",\\\"tab.hoverBackground\\\":\\\"#323842\\\",\\\"tab.inactiveBackground\\\":\\\"#1e2227\\\",\\\"tab.unfocusedHoverBackground\\\":\\\"#323842\\\",\\\"terminal.ansiBlack\\\":\\\"#3f4451\\\",\\\"terminal.ansiBlue\\\":\\\"#4aa5f0\\\",\\\"terminal.ansiBrightBlack\\\":\\\"#4f5666\\\",\\\"terminal.ansiBrightBlue\\\":\\\"#4dc4ff\\\",\\\"terminal.ansiBrightCyan\\\":\\\"#4cd1e0\\\",\\\"terminal.ansiBrightGreen\\\":\\\"#a5e075\\\",\\\"terminal.ansiBrightMagenta\\\":\\\"#de73ff\\\",\\\"terminal.ansiBrightRed\\\":\\\"#ff616e\\\",\\\"terminal.ansiBrightWhite\\\":\\\"#e6e6e6\\\",\\\"terminal.ansiBrightYellow\\\":\\\"#f0a45d\\\",\\\"terminal.ansiCyan\\\":\\\"#42b3c2\\\",\\\"terminal.ansiGreen\\\":\\\"#8cc265\\\",\\\"terminal.ansiMagenta\\\":\\\"#c162de\\\",\\\"terminal.ansiRed\\\":\\\"#e05561\\\",\\\"terminal.ansiWhite\\\":\\\"#d7dae0\\\",\\\"terminal.ansiYellow\\\":\\\"#d18f52\\\",\\\"terminal.background\\\":\\\"#23272e\\\",\\\"terminal.border\\\":\\\"#3e4452\\\",\\\"terminal.foreground\\\":\\\"#abb2bf\\\",\\\"terminal.selectionBackground\\\":\\\"#abb2bf30\\\",\\\"textBlockQuote.background\\\":\\\"#2e3440\\\",\\\"textBlockQuote.border\\\":\\\"#4b5362\\\",\\\"textLink.foreground\\\":\\\"#61afef\\\",\\\"textPreformat.foreground\\\":\\\"#d19a66\\\",\\\"titleBar.activeBackground\\\":\\\"#23272e\\\",\\\"titleBar.activeForeground\\\":\\\"#9da5b4\\\",\\\"titleBar.inactiveBackground\\\":\\\"#23272e\\\",\\\"titleBar.inactiveForeground\\\":\\\"#6b717d\\\",\\\"tree.indentGuidesStroke\\\":\\\"#ffffff1d\\\",\\\"walkThrough.embeddedEditorBackground\\\":\\\"#2e3440\\\",\\\"welcomePage.buttonHoverBackground\\\":\\\"#404754\\\"},\\\"watch\\\":false}\",\"workbench.view.extensions.state.hidden\":\"[{\\\"id\\\":\\\"workbench.views.extensions.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchOutdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.workspaceRecommendations\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.popular\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchRecentlyUpdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.otherRecommendations\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.recommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.enabled\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.views.extensions.disabled\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.views.extensions.marketplace\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchInstalled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchEnabled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchDisabled\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchBuiltin\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchWorkspaceUnsupported\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinFeatureExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinThemeExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.builtinProgrammingLanguageExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.untrustedUnsupportedExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.untrustedPartiallySupportedExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.virtualUnsupportedExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.virtualPartiallySupportedExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.deprecatedExtensions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.remote.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.mcp.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.mcp.marketplace\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.mcp.default.marketplace\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.marketplaceAccess\\\",\\\"isHidden\\\":false}]\",\"terminal.integrated.showTerminalConfigPrompt\":\"false\",\"github-musecollaboration\":\"[{\\\"id\\\":\\\"github.copilot\\\",\\\"name\\\":\\\"GitHub Copilot\\\",\\\"allowed\\\":true},{\\\"id\\\":\\\"vscode.configuration-editing\\\",\\\"name\\\":\\\"Изменение конфигурации\\\",\\\"allowed\\\":true},{\\\"id\\\":\\\"vscode.github\\\",\\\"name\\\":\\\"GitHub\\\",\\\"allowed\\\":true}]\",\"workbench.view.debug.state.hidden\":\"[{\\\"id\\\":\\\"workbench.debug.welcome\\\",\\\"isHidden\\\":false,\\\"order\\\":0},{\\\"id\\\":\\\"workbench.debug.variablesView\\\",\\\"isHidden\\\":false,\\\"order\\\":1},{\\\"id\\\":\\\"workbench.debug.watchExpressionsView\\\",\\\"isHidden\\\":false,\\\"order\\\":2},{\\\"id\\\":\\\"workbench.debug.callStackView\\\",\\\"isHidden\\\":false,\\\"order\\\":3},{\\\"id\\\":\\\"workbench.debug.loadedScriptsView\\\",\\\"isHidden\\\":false,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.debug.breakPointsView\\\",\\\"isHidden\\\":false,\\\"order\\\":6},{\\\"id\\\":\\\"jsBrowserBreakpoints\\\",\\\"isHidden\\\":false,\\\"order\\\":7},{\\\"id\\\":\\\"jsExcludedCallers\\\",\\\"isHidden\\\":false,\\\"order\\\":8},{\\\"id\\\":\\\"jsDebugNetworkTree\\\",\\\"isHidden\\\":false,\\\"order\\\":9}]\",\"workbench.view.extension.codeium.state.hidden\":\"[{\\\"id\\\":\\\"codeium.chatPanelView\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.package-explorer.state.hidden\":\"[{\\\"id\\\":\\\"workspaceEnvironments\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"pythonEnvironments\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.gitlensInspect.state.hidden\":\"[{\\\"id\\\":\\\"gitlens.views.commitDetails\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.pullRequest\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.timeline\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.searchAndCompare\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.gitlens.state.hidden\":\"[{\\\"id\\\":\\\"gitlens.views.home\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.launchpad\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.drafts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.workspaces\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.python.state.hidden\":\"[{\\\"id\\\":\\\"python-projects\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"env-managers\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.cspellPanel.state.hidden\":\"[{\\\"id\\\":\\\"cSpellIssuesViewByFile\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"cSpellIssuesViewByIssue\\\",\\\"isHidden\\\":false}]\",\"workbench.panel.chat.hidden\":\"[{\\\"id\\\":\\\"workbench.panel.chat.view.copilot\\\",\\\"isHidden\\\":false}]\",\"memento/gettingStartedService\":\"{\\\"installGit\\\":{\\\"done\\\":true},\\\"pickAFolderTask-Other\\\":{\\\"done\\\":true},\\\"ms-python.python#pythonWelcome#python.createPythonFolder\\\":{\\\"done\\\":true},\\\"ms-python.python#pythonDataScienceWelcome#python.createNewNotebook\\\":{\\\"done\\\":true},\\\"ms-azuretools.vscode-docker#dockerStart#dockerExplorer\\\":{\\\"done\\\":true},\\\"ms-mssql.mssql#mssql.getStarted#connectToDatabase\\\":{\\\"done\\\":true},\\\"ms-azuretools.vscode-containers#containersStart#containerExplorer\\\":{\\\"done\\\":true},\\\"commandPaletteTask\\\":{\\\"done\\\":true},\\\"commandPaletteTaskWeb\\\":{\\\"done\\\":true},\\\"commandPaletteTaskAccessibility\\\":{\\\"done\\\":true},\\\"ms-azuretools.vscode-containers#containersStart#openFolder\\\":{\\\"done\\\":true},\\\"keybindingsAccessibility\\\":{\\\"done\\\":true},\\\"shortcuts\\\":{\\\"done\\\":true},\\\"ms-azuretools.vscode-docker#dockerStart#openFolder\\\":{\\\"done\\\":true}}\",\"workbench.view.extension.test.state.hidden\":\"[{\\\"id\\\":\\\"workbench.view.testing\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.view.testCoverage\\\",\\\"isHidden\\\":false}]\",\"snippets.usageTimestamps\":\"[[\\\"snippets/templates/tags.json/load\\\",1738184427626],[\\\"globalsnippets.code-snippets/SetNameMethod\\\",1738745183715],[\\\"snippets/filters.json/default\\\",1738854474719],[\\\"snippets/filters.json/date\\\",1739554802665],[\\\"globalsnippets.code-snippets/ReverseTrueDivide\\\",1739709162798],[\\\"snippets/filters.json/addslashes\\\",1739881498049],[\\\"snippets/filters.json/pluralize\\\",1739881504440],[\\\"snippets/tags.json/static\\\",1739976763118],[\\\"snippets/filters.json/truncatewords\\\",1739980241055],[\\\"snippets/filters.json/linebreaks\\\",1739980376909],[\\\"snippets/tags.json/autoescape\\\",1739980473723],[\\\"snippets/tags.json/blok\\\",1740044080747],[\\\"snippets/tags.json/include\\\",1740078995711],[\\\"snippets/filters.json/lower\\\",1740086379217],[\\\"snippets/snippets.json/destructingArray\\\",1740214004180],[\\\"snippets/filters.json/last\\\",1740247234024],[\\\"globalsnippets.code-snippets/ModMethod\\\",1740310864842],[\\\"globalsnippets.code-snippets/IndexMethod\\\",1740509061124],[\\\"snippets/filters.json/ljust\\\",1740568812848],[\\\"snippets/tags.json/endautoescape\\\",1740678281170],[\\\"snippets/tags.json/load\\\",1740682911398],[\\\"globalsnippets.code-snippets/get_absolute_urlt\\\",1740696671897],[\\\"globalsnippets.code-snippets/FloorDivideMethod\\\",1740737043945],[\\\"snippets/filters.json/default_if_none\\\",1741358952593],[\\\"snippets/tags.json/else\\\",1741430923105],[\\\"snippets/tags.json/elif\\\",1741440365530],[\\\"snippets/filters.json/first\\\",1741462683655],[\\\"snippets/tags.json/extends\\\",1745912346522],[\\\"snippets/tags.json/for\\\",1745912451704],[\\\"snippets/filters.json/floatformat\\\",1745912482567],[\\\"snippets/tags.json/with\\\",1745912523502],[\\\"snippets/tags.json/with_paste\\\",1745912536045],[\\\"snippets/tags.json/with_selection\\\",1745912540877],[\\\"snippets/templates/html.json/widthratio\\\",1745912546949],[\\\"snippets/models/methods.json/get_absolute_url\\\",1746296026601],[\\\"globalsnippets.code-snippets/Django get_absolute_url\\\",1746296098010],[\\\"snippets/views/methods.json/get_queryset\\\",1746297428215],[\\\"snippets/models/methods.json/__str__\\\",1746381217118],[\\\"globalsnippets.code-snippets/Prettier Ignore\\\",1746703508730],[\\\"snippets/serializers/classes.json/serializer\\\",1747751270174],[\\\"snippets/models/imports.json/fmi\\\",1748331048037],[\\\"snippets/templates/html.json/for\\\",1748331637694],[\\\"snippets/tags.json/block\\\",1748331820076],[\\\"snippets/templates/html.json/extends\\\",1748331953933],[\\\"snippets/filters.json/upper\\\",1748349938864],[\\\"snippets/tags.json/csrf_token\\\",1748369459642],[\\\"snippets/tags.json/forempty\\\",1748369693682],[\\\"snippets/templates/html.json/csrf\\\",1748369850724],[\\\"snippets/tags.json/if\\\",1748382341067],[\\\"snippets/tags.json/url\\\",1748674446353],[\\\"snippets/models/methods.json/receiver\\\",1751270484191],[\\\"globalsnippets.code-snippets/XorMethod\\\",1752009454269],[\\\"globalsnippets.code-snippets/args snippet\\\",1752009528350],[\\\"globalsnippets.code-snippets/kwargs snippet\\\",1752009548751],[\\\"globalsnippets.code-snippets/request snippet\\\",1755279360384],[\\\"globalsnippets.code-snippets/AndMethod\\\",1756804804675],[\\\"globalsnippets.code-snippets/LessThan\\\",1759571205675]]\",\"workbench.view.extension.json-views.state.hidden\":\"[{\\\"id\\\":\\\"jsonOutline\\\",\\\"isHidden\\\":false}]\",\"Comments.hidden\":\"[{\\\"id\\\":\\\"workbench.panel.comments\\\",\\\"isHidden\\\":false}]\",\"commandPalette.mru.cache\":\"{\\\"usesLRU\\\":true,\\\"entries\\\":[{\\\"key\\\":\\\"workbench.userDataSync.actions.turnOn\\\",\\\"value\\\":1},{\\\"key\\\":\\\"workbench.userDataSync.actions.settings\\\",\\\"value\\\":2},{\\\"key\\\":\\\"workbench.action.openRawDefaultSettings\\\",\\\"value\\\":4},{\\\"key\\\":\\\"workbench.action.configureLocale\\\",\\\"value\\\":6},{\\\"key\\\":\\\"terminalThemes.apply\\\",\\\"value\\\":14},{\\\"key\\\":\\\"cSpellExt_russian.enableRussian\\\",\\\"value\\\":17},{\\\"key\\\":\\\"cSpellExt_russian.enableRussianWorkspace\\\",\\\"value\\\":18},{\\\"key\\\":\\\"workbench.action.terminal.selectDefaultShell\\\",\\\"value\\\":32},{\\\"key\\\":\\\"gitlens.showBranchesView\\\",\\\"value\\\":40},{\\\"key\\\":\\\"workbench.action.toggleSeparatePinnedEditorTabs\\\",\\\"value\\\":42},{\\\"key\\\":\\\"sqlite.explorer.add\\\",\\\"value\\\":54},{\\\"key\\\":\\\"workbench.action.openSnippets\\\",\\\"value\\\":69},{\\\"key\\\":\\\"python.setInterpreter\\\",\\\"value\\\":71},{\\\"key\\\":\\\"workbench.action.toggleDevTools\\\",\\\"value\\\":72},{\\\"key\\\":\\\"editor.action.toggleRenderWhitespace\\\",\\\"value\\\":75},{\\\"key\\\":\\\"github.copilot.debug.generateConfiguration\\\",\\\"value\\\":77},{\\\"key\\\":\\\"workbench.action.openSettings2\\\",\\\"value\\\":78}]}\",\"commandPalette.mru.counter\":\"79\",\"~remote.forwardedPortsContainer.hidden\":\"[{\\\"id\\\":\\\"~remote.forwardedPorts\\\",\\\"isHidden\\\":false}]\",\"workbench.telemetryOptOutShown\":\"true\",\"workbench.welcomePage.walkthroughMetadata\":\"[[\\\"ms-python.python#pythonWelcome\\\",{\\\"firstSeen\\\":1738231395759,\\\"stepIDs\\\":[\\\"python.createPythonFolder\\\",\\\"python.createPythonFile\\\",\\\"python.installPythonWin8\\\",\\\"python.installPythonMac\\\",\\\"python.installPythonLinux\\\",\\\"python.createEnvironment\\\",\\\"python.runAndDebug\\\",\\\"python.learnMoreWithDS\\\"],\\\"manaullyOpened\\\":false}],[\\\"ms-python.python#pythonDataScienceWelcome\\\",{\\\"firstSeen\\\":1738231395759,\\\"stepIDs\\\":[\\\"python.installJupyterExt\\\",\\\"python.createNewNotebook\\\",\\\"python.openInteractiveWindow\\\",\\\"python.dataScienceLearnMore\\\"],\\\"manaullyOpened\\\":false}],[\\\"ms-azuretools.vscode-docker#dockerStart\\\",{\\\"firstSeen\\\":1739257373489,\\\"stepIDs\\\":[\\\"openFolder\\\",\\\"openFolderMac\\\",\\\"scaffold\\\",\\\"buildImage\\\",\\\"runContainer\\\",\\\"dockerExplorer\\\",\\\"pushImage\\\",\\\"azDeploy\\\",\\\"learn\\\"],\\\"manaullyOpened\\\":false}],[\\\"ms-mssql.mssql#mssql.getStarted\\\",{\\\"firstSeen\\\":1745865021536,\\\"stepIDs\\\":[\\\"enableModernFeatures\\\",\\\"connectToDatabase\\\",\\\"createNewTable\\\",\\\"runQueries\\\"],\\\"manaullyOpened\\\":false}],[\\\"ms-mssql.mssql#mssql.nextSteps\\\",{\\\"firstSeen\\\":1745865021536,\\\"stepIDs\\\":[\\\"sortAndFilterQueryResults\\\",\\\"viewQueryPlan\\\",\\\"objectExplorerFilters\\\"],\\\"manaullyOpened\\\":false}],[\\\"GitHub.copilot-chat#copilotWelcome\\\",{\\\"firstSeen\\\":1745869109475,\\\"stepIDs\\\":[\\\"copilot.setup.signIn\\\",\\\"copilot.setup.signInNoAction\\\",\\\"copilot.setup.signUp\\\",\\\"copilot.setup.signUpNoAction\\\",\\\"copilot.panelChat\\\",\\\"copilot.edits\\\",\\\"copilot.firstSuggest\\\",\\\"copilot.inlineChatNotMac\\\",\\\"copilot.inlineChatMac\\\",\\\"copilot.sparkle\\\"],\\\"manaullyOpened\\\":false}],[\\\"eamodio.gitlens#welcome\\\",{\\\"firstSeen\\\":1745869577353,\\\"stepIDs\\\":[\\\"get-started-community\\\",\\\"welcome-in-trial\\\",\\\"welcome-in-trial-expired\\\",\\\"welcome-in-trial-expired-eligible\\\",\\\"welcome-paid\\\",\\\"welcome-home-view\\\",\\\"visualize-code-history\\\",\\\"accelerate-pr-reviews\\\",\\\"streamline-collaboration\\\",\\\"improve-workflows-with-integrations\\\"],\\\"manaullyOpened\\\":false}],[\\\"ms-azuretools.vscode-containers#containersStart\\\",{\\\"firstSeen\\\":1746172583519,\\\"stepIDs\\\":[\\\"openFolder\\\",\\\"openFolderMac\\\",\\\"scaffold\\\",\\\"buildImage\\\",\\\"runContainer\\\",\\\"containerExplorer\\\",\\\"pushImage\\\",\\\"azDeploy\\\",\\\"learn\\\"],\\\"manaullyOpened\\\":false}],[\\\"amazonwebservices.amazon-q-vscode#aws.amazonq.walkthrough\\\",{\\\"firstSeen\\\":1749759308361,\\\"stepIDs\\\":[\\\"aws.amazonq.walkthrough.inlineSuggestions\\\",\\\"aws.amazonq.walkthrough.chat\\\",\\\"aws.amazonq.walkthrough.securityScan\\\",\\\"aws.amazonq.walkthrough.settings\\\"],\\\"manaullyOpened\\\":false}]]\",\"workbench.view.extension.github-pull-requests.state.hidden\":\"[{\\\"id\\\":\\\"github:login\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"pr:github\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"issues:github\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"notifications:github\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"github:conflictResolution\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.dockerView.state.hidden\":\"[{\\\"id\\\":\\\"dockerContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerImages\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerRegistries\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerNetworks\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerVolumes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.dockerContexts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.help\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.github-pull-request.state.hidden\":\"[{\\\"id\\\":\\\"github:createPullRequestWebview\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"github:compareChangesFiles\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"github:compareChangesCommits\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"prStatus:github\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"github:activePullRequest\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"github:activePullRequest:welcome\\\",\\\"isHidden\\\":false}]\",\"tabs-list-width-horizontal\":\"199\",\"workbench.view.extension.dataworkspace.state.hidden\":\"[{\\\"id\\\":\\\"dataworkspace.views.main\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.objectExplorer.state.hidden\":\"[{\\\"id\\\":\\\"objectExplorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"queryHistory\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.queryResult.state.hidden\":\"[{\\\"id\\\":\\\"queryResult\\\",\\\"isHidden\\\":false}]\",\"workbench.panel.chatEditing.hidden\":\"[{\\\"id\\\":\\\"workbench.panel.chat.view.edits\\\",\\\"isHidden\\\":false}]\",\"workbench.view.remote.state.hidden\":\"[{\\\"id\\\":\\\"targetsContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"detailsContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"devVolumes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"~remote.helpPanel\\\",\\\"isHidden\\\":false}]\",\"expandSuggestionDocs\":\"false\",\"workbench.statusbar.hidden\":\"[\\\"GitHub.copilot.status\\\"]\",\"extension.features.state\":\"{\\\"github.copilot-chat\\\":{\\\"copilot\\\":{\\\"disabled\\\":false,\\\"accessTimes\\\":[1755416964704,1755416972834,1755417134781,1755417139314,1755417166017,1755417170269,1755417509731,1755417514883,1755417616102,1755417622181,1755417886041,1755417893470,1755418089032,1755418093235,1755418617088,1755418622946,1755418950443,1755418954637,1755419176570,1755419184704,1755419551494,1755419555028,1755419700373,1755419704325,1755419751972,1755419756353,1755420172779,1755420176706,1755420246432,1755420249821,1755420310493,1755420314273,1755420350663,1755420354070,1755420377758,1755420381358,1755421680415,1755421694983,1755421699775,1755421758439,1755421768241,1755421852642,1755421861467,1755421887191,1755421890638,1755421909708,1755421915978,1755422250670,1755422254106,1755422634493,1755422637763,1755422673120,1755422678312,1755422817366,1755422821085,1755423345366,1755423350460,1755423531127,1755423537801,1755423801603,1755423808584,1755423975375,1755423979918,1755424311647,1755424316929,1755424360400,1755424368109,1755424475311,1755424487001,1755424579813,1755424582918,1755424655007,1755424661475,1755425763722,1755425766824,1755426121921,1755426125230,1755426164483,1755426167690,1755427148300,1755427153915,1755427171999,1755427175977,1755427187859,1755427192428,1755427258348,1755427263239,1755427341732,1755427346604,1755427519545,1755427525709,1755427554614,1755427559154,1755427689407,1755427693348,1755427766313,1755427770366,1755427991335,1755427999191,1755428098469,1755428104319,1755429141886,1755429149803,1755429201784,1755429209855,1755429382328,1755429392127,1755429915716,1755429922513,1755430924863,1755430938113,1755456258330,1755456265166,1755456338499,1755456343070,1755456684322,1755456690481,1755456769700,1755456773964,1755456951828,1755456958412,1755456999165,1755457005003,1755457150819,1755457155545,1755457238446,1755457244693,1755457766260,1755457770898,1755458102071,1755458106756,1755458487546,1755458491881,1755458506411,1755458510853,1755460566210,1755460570019,1755461203020,1755461207272,1755461588095,1755461592113,1755461662382,1755461666186,1755461691813,1755461695716,1755461927514,1755461930670,1755462091320,1755462095743,1755462385575,1755462389798,1755462415576,1755462420572,1755462481790,1755462485279,1755462679824,1755462684866,1755462705510,1755462708738,1755462769975,1755462775415,1755462875992,1755462881527,1755463071998,1755463076453,1755463318336,1755463321926,1755463594166,1755463599015,1755463905999,1755463910824,1755463961999,1755463966872,1755464089335,1755464092473,1755464189842,1755464193405,1755464218523,1755464223954,1755464552714,1755464556571,1755464615407,1755464617643,1755464639709,1755464642300,1755464736681,1755464740381,1755464767670,1755464772390,1755464824448,1755464827294,1755464973706,1755464976549,1755465514008,1755465518203,1755465600226,1755465603973,1755465661084,1755465665047,1755466211241,1755466215767,1755504928364,1755504935843,1755505265781,1755505271635,1755505316201,1755505322572,1755505376583,1755505381308,1755505482355,1755505486318,1755505589116,1755505593829,1755505687649,1755505691638,1755505859544,1755505863166,1755505910500,1755505915121,1755505999081,1755506004481,1755506194721,1755506199132,1755506257930,1755506262833,1755506284342,1755506289434,1755506408605,1755506413546,1755506551524,1755506556622,1755506686573,1755506691847,1755506848767,1755506852264,1755506910797,1755506917737,1755506964962,1755506971225,1755507030011,1755507034184,1755507088333,1755507097022,1755507451805,1755507458223,1755507503149,1755507509762,1755507617063,1755507627380,1755507773377,1755507779172,1755507806521,1755507811660,1755507924993,1755507929630,1755507967301,1755507973507,1755508150506,1755508157303,1755508457511,1755508462922,1755508555855,1755508560480,1755508608178,1755508612653,1755508695195,1755508700213,1755508754207,1755508757625,1755508800900,1755508805144,1755508877185,1755508880765,1755509132964,1755509137117,1755509258734,1755509263034,1755509373403,1755509379937,1755509476845,1755509482161,1755509502036,1755509511174,1755509531912,1755509535730,1755509727355,1755509731903,1755509762749,1755509767376,1755510127048,1755510131122,1755510690481,1755510697225,1755510807662,1755510813797,1755510840976,1755510846783,1755511014796,1755511019280,1755511232971,1755511238619,1755511257012,1755511259885,1755511622660,1755511626108,1755511679405,1755511683876,1755512306709,1755512310603,1755512484741,1755512489412,1755512897184,1755512902162,1755512994207,1755512998203,1755513041643,1755513046163,1755513332968,1755513337848,1755514673687,1755514678968,1755515228107,1755515233690,1755515406334,1755515413257,1755515661747,1755515665278,1755515684889,1755515689337,1755515755388,1755515763169,1755515795478,1755515800006,1755516063766,1755516068264,1755516141489,1755516146679,1755516245361,1755516252689,1755516395088,1755516401362,1755516505800,1755516510873,1755516580141,1755516585437,1755516697881,1755516702875,1755516754196,1755516760566,1755516846767,1755516852270,1755516962155,1755516968973,1755517055753,1755517062251,1755517089202,1755517096705,1755517220916,1755517223743,1755517252210,1755517260527,1755517274042,1755517281585,1755517404597,1755517411264,1755517807959,1755517828791,1755517839804,1755518068481,1755518076571,1755518429076,1755518436519,1755518471487,1755518479325,1755519137957,1755519144285,1755519401941,1755519410506,1755519486134,1755519493187,1755519584043,1755519589786,1755519605822,1755519613603,1755519636225,1755519641713,1755519680127,1755519690333,1755520075852,1755520084092,1755520119330,1755520130747,1755520670810,1755520678726,1755521470095,1755521480898,1755521539151,1755521557569,1755522327801,1755522340572,1755522511479,1755522526450,1755523045695,1755523055701,1755523119524,1755523125739,1755523220700,1755523228935,1755523393452,1755523402849,1755523862608,1755523868495,1755523966653,1755523972710,1755524011521,1755524020909,1755524815864,1755524821741,1755524925471,1755524930246,1755524982225,1755524991030,1755531368965,1755531373123,1755531420718,1755531426373,1755531482100,1755531487788,1755531535551,1755531539820,1755531587868,1755531595716,1755531664890,1755531670629,1755531842598,1755531846106,1755532102362,1755532110773,1755532229705,1755532233639,1755532407400,1755532414394,1755535293417,1755535300207,1755535321081,1755535328823,1755535364159,1755535369558,1755536225762,1755536231130,1755536315383,1755536321117,1755537336378,1755537341336,1755537452980,1755537460208,1755537967088,1755537970964,1755544140581,1755544145138,1755545006699,1755545017011,1755586255872,1755586263800,1755586444933,1755586451381,1755586501640,1755586510158,1755589249527,1755589254472,1755594409651,1755594418195,1755676545029,1755676552449,1755676692173,1755676698618,1755678527473,1755678533278,1755678652664,1755678659224,1755680019355,1755680023362,1755680782469,1755680793071,1755680917774,1755680922804,1755685982717,1755685994344,1755686206233,1755686211904,1755686268920,1755686274972,1755686322902,1755686328155,1755686423542,1755686429730,1755687509030,1755687520042,1755687603268,1755687622081,1755687622574,1755687686943,1755687695871,1755687921164,1755687927981,1755687991463,1755687995950,1755689276270,1755689284201,1755689898447,1755689904548,1755690097372,1755690100441,1755690143350,1755690146526,1755690491881,1755690498941,1755690562018,1755690570636,1755690764090,1755690773200,1755690925832,1755690929789,1755691004120,1755691011871,1755691069466,1755691076552,1755691144340,1755691151624,1755691241788,1755691247104,1755692153092,1755692162134,1755692216817,1755692222259,1755692469817,1755692476350,1755692781494,1755692789952,1755693798855,1755694813766,1755694818633]}}}\",\"terminal-inline-chat-view-state\":\"{\\\"inputValue\\\":\\\"\\\",\\\"inputState\\\":{\\\"chatDynamicVariableModel\\\":[],\\\"chatContextAttachments\\\":[],\\\"chatMode\\\":\\\"ask\\\"}}\",\"workbench.view.extension.containersView.state.hidden\":\"[{\\\"id\\\":\\\"vscode-containers.views.containers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-containers.views.images\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-containers.views.registries\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-containers.views.networks\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-containers.views.volumes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-containers.views.dockerContexts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-containers.views.help\\\",\\\"isHidden\\\":false}]\",\"fileBasedRecommendations/promptedRecommendations\":\"{\\\"dockercompose\\\":[\\\"ms-azuretools.vscode-docker\\\"],\\\"plaintext\\\":[\\\"tomoki1207.pdf\\\"],\\\"makefile\\\":[\\\"ms-vscode.makefile-tools\\\"]}\",\"views.customizations\":\"{\\\"viewContainerLocations\\\":{\\\"workbench.views.service.panel.1d03a7e9-bd67-45ce-bbd5-bd55ccc71e44\\\":1},\\\"viewLocations\\\":{\\\"workbench.panel.output\\\":\\\"terminal\\\",\\\"terminal\\\":\\\"workbench.views.service.panel.1d03a7e9-bd67-45ce-bbd5-bd55ccc71e44\\\"},\\\"viewContainerBadgeEnablementStates\\\":{}}\",\"memento/workbench.editor.keybindings\":\"{\\\"searchHistory\\\":[\\\"@command:workbench.view.extension.containersView\\\",\\\"@command:editor.action.toggleRenderWhitespace\\\"]}\",\"workbench.views.service.panel.1d03a7e9-bd67-45ce-bbd5-bd55ccc71e44.state.hidden\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"isHidden\\\":false}]\",\"menu.hiddenCommands\":\"{\\\"InlineSuggestionToolbar\\\":[\\\"editor.action.inlineSuggest.commit\\\"]}\",\"workbench.view.extension.codium-sidebar-view-container.state.hidden\":\"[{\\\"id\\\":\\\"chat-view\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.continue.state.hidden\":\"[{\\\"id\\\":\\\"continue.continueGUIView\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.aicursor.state.hidden\":\"[{\\\"id\\\":\\\"chat\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.aws-explorer.state.hidden\":\"[{\\\"id\\\":\\\"aws.toolkit.notifications\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"aws.amazonq.codewhisperer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"aws.explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"aws.cdk\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"aws.appBuilder\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"aws.codecatalyst\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"aws.toolkit.AmazonCommonAuth\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.amazonq.state.hidden\":\"[{\\\"id\\\":\\\"aws.amazonq.notifications\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"aws.amazonq.AmazonCommonAuth\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"aws.amazonq.SecurityIssuesTree\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"aws.amazonq.AmazonQChatView\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.aws-codewhisperer-reference-log.state.hidden\":\"[{\\\"id\\\":\\\"aws.codeWhisperer.referenceLog\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.tabnine.state.hidden\":\"[{\\\"id\\\":\\\"tabnine.chat\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"tabnine.chat.authenticate\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"tabnine.chat.not_part_of_a_team\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"tabnine.loading\\\",\\\"isHidden\\\":false}]\",\"extensionsAssistant/importantRecommendationsIgnore\":\"[\\\"ms-azuretools.vscode-containers\\\"]\",\"workbench.view.extension.makefile__viewContainer.state.hidden\":\"[{\\\"id\\\":\\\"makefile.outline\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.github-cweijan-mysql.state.hidden\":\"[{\\\"id\\\":\\\"github.cweijan.mysql\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.github-cweijan-nosql.state.hidden\":\"[{\\\"id\\\":\\\"github.cweijan.nosql\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.ri-sidebar-view.state.hidden\":\"[{\\\"id\\\":\\\"ri-sidebar\\\",\\\"isHidden\\\":false}]\"}}"}