Update getting started artwork (#127713)

* Add command palette SVG

* Replace image files and updated paths in walkthrough

* Added theme tokens to openFolder artwork

* Theme OS elements on openFolder

* Add theme tokens to search artwork

* Add theme tokens to interactivePlayground artwork

* Add theme tokens to terminal artwork

* Add theme tokens to extensions artwork

* Add theme tokens to settings artwork

* Add theme tokens to settingsSync artwork

* Add theme tokens for workspace trust

* Add theme tokens for sideBySide artwork

* Add theme tokens to debug artwork

* Added theme tokens to git artwork

* Add theme tokens to runTask artwork

* Add theme tokens to shorcuts artwork

* Fix theme and image scaling issues

* Ensure SVGs scale to fit container

* Move SVG styling to address PR feedback

* Fix missing theme tokens on git artwork

* Fix syntax highlighting per PR feedback

* Fix list foreground colors on light themes
This commit is contained in:
David Dossett 2021-06-30 18:24:57 -07:00 committed by GitHub
parent 4e1a2afb36
commit 920303b974
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
54 changed files with 1403 additions and 176 deletions

View file

@ -460,7 +460,7 @@
display: grid;
grid-template-columns: minmax(auto, 400px) 1fr;
grid-template-rows: minmax(40px, 20%) auto max-content 1fr;
column-gap: 20px;
column-gap: 64px;
grid-template-areas: "back media" "title media" "steps media" ". media";
}

View file

@ -665,6 +665,15 @@ export class GettingStartedPage extends EditorPane {
<style nonce="${nonce}">
${DEFAULT_MARKDOWN_STYLES}
${css}
svg {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
</style>
</head>
<body>

View file

@ -147,24 +147,14 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
title: localize('gettingStarted.findLanguageExts.title', "Rich support for all your languages"),
description: localize('gettingStarted.findLanguageExts.description.interpolated', "Code smarter with syntax highlighting, code completion, linting and debugging. While many languages are built-in, many more can be added as extensions.\n{0}", Button(localize('browseLangExts', "Browse Language Extensions"), 'command:workbench.extensions.action.showLanguageExtensions')),
media: {
type: 'image', altText: 'Language extensions', path: {
dark: 'dark/languageExtensions.png',
light: 'light/languageExtensions.png',
hc: 'hc/languageExtensions.png',
}
}
type: 'svg', altText: 'Language extensions', path: 'languages.svg'
},
},
{
id: 'commandPaletteTask',
title: localize('gettingStarted.commandPalette.title', "One shortcut to access everything"),
description: localize('gettingStarted.commandPalette.description.interpolated', "Commands Palette is the keyboard way to accomplish any task in VS Code. **Practice** by looking up your frequently used commands to save time and keep in the flow.\n{0}\n__Try searching for 'view toggle'.__", Button(localize('commandPalette', "Open Command Palette"), 'command:workbench.action.showCommands')),
media: {
type: 'image', altText: 'Command Palette overlay for searching and executing commands.', path: {
dark: 'dark/commandPalette.png',
light: 'light/commandPalette.png',
hc: 'hc/commandPalette.png',
}
},
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
},
{
id: 'workspaceTrust',
@ -172,11 +162,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
description: localize('gettingStarted.workspaceTrust.description.interpolated', "{0} lets you decide whether your project folders should **allow or restrict** automatic code execution __(required for extensions, debugging, etc)__.\nOpening a file/folder will prompt to grant trust. You can always {1} later.", Button(localize('workspaceTrust', "Workspace Trust"), 'https://github.com/microsoft/vscode-docs/blob/workspaceTrust/docs/editor/workspace-trust.md'), Button(localize('enableTrust', "enable trust"), 'command:toSide:workbench.action.manageTrustedDomain')),
when: '!isWorkspaceTrusted && workspaceFolderCount == 0',
media: {
type: 'image', altText: 'Workspace Trust editor in Restricted mode and a primary button for switching to Trusted mode.', path: {
dark: 'dark/workspaceTrust.svg',
light: 'light/workspaceTrust.svg',
hc: 'dark/workspaceTrust.svg',
},
type: 'svg', altText: 'Workspace Trust editor in Restricted mode and a primary button for switching to Trusted mode.', path: 'workspaceTrust.svg'
},
},
{
@ -185,11 +171,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
description: localize('gettingStarted.setup.OpenFolder.description.interpolated', "You're all set to start coding. Open a project folder to get your files into VS Code.\n{0}", Button(localize('pickFolder', "Pick a Folder"), 'command:workbench.action.files.openFileFolder')),
when: 'isMac && workspaceFolderCount == 0',
media: {
type: 'image', altText: 'Explorer view showing buttons for opening folder and cloning repository.', path: {
dark: 'dark/openFolder.png',
light: 'light/openFolder.png',
hc: 'hc/openFolder.png',
}
type: 'svg', altText: 'Explorer view showing buttons for opening folder and cloning repository.', path: 'openFolder.svg'
}
},
{
@ -198,11 +180,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
description: localize('gettingStarted.setup.OpenFolder.description.interpolated', "You're all set to start coding. Open a project folder to get your files into VS Code.\n{0}", Button(localize('pickFolder', "Pick a Folder"), 'command:workbench.action.files.openFolder')),
when: '!isMac && workspaceFolderCount == 0',
media: {
type: 'image', altText: 'Explorer view showing buttons for opening folder and cloning repository.', path: {
dark: 'dark/openFolder.png',
light: 'light/openFolder.png',
hc: 'hc/openFolder.png',
}
type: 'svg', altText: 'Explorer view showing buttons for opening folder and cloning repository.', path: 'openFolder.svg'
}
},
{
@ -211,11 +189,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
description: localize('gettingStarted.quickOpen.description.interpolated', "Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}", Button(localize('quickOpen', "Quick Open a File"), 'command:toSide:workbench.action.quickOpen')),
when: 'workspaceFolderCount != 0',
media: {
type: 'image', altText: 'Go to file in quick search.', path: {
dark: 'dark/openFolder.png',
light: 'light/openFolder.png',
hc: 'hc/openFolder.png',
}
type: 'svg', altText: 'Go to file in quick search.', path: 'search.svg'
}
}
]
@ -237,11 +211,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
title: localize('gettingStarted.playground.title', "Redefine your editing skills"),
description: localize('gettingStarted.playground.description.interpolated', "Want to code faster and smarter? Practice powerful code editing features in the interactive playground.\n{0}", Button(localize('openInteractivePlayground', "Open Interactive Playground"), 'command:toSide:workbench.action.showInteractivePlayground')),
media: {
type: 'image', altText: 'Interactive Playground.', path: {
dark: 'dark/playground.png',
light: 'light/playground.png',
hc: 'light/playground.png'
},
type: 'svg', altText: 'Interactive Playground.', path: 'interactivePlayground.svg'
},
},
{
@ -250,11 +220,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
description: localize('gettingStarted.terminal.description.interpolated', "Quickly run shell commands and monitor build output, right next to your code.\n{0}", Button(localize('showTerminal', "Show Terminal Panel"), 'command:workbench.action.terminal.toggleTerminal')),
when: 'remoteName != codespaces && !terminalIsOpen',
media: {
type: 'image', altText: 'Integrated terminal running a few npm commands', path: {
dark: 'dark/terminal.png',
light: 'light/terminal.png',
hc: 'hc/terminal.png',
}
type: 'svg', altText: 'Integrated terminal running a few npm commands', path: 'terminal.svg'
},
},
{
@ -262,11 +228,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
title: localize('gettingStarted.extensions.title', "Limitless extensibility"),
description: localize('gettingStarted.extensions.description.interpolated', "Extensions are VS Code's power-ups. They range from handy productivity hacks, expanding out-of-the-box features, to adding completely new capabilities.\n{0}", Button(localize('browseRecommended', "Browse Recommended Extensions"), 'command:workbench.extensions.action.showRecommendedExtensions')),
media: {
type: 'image', altText: 'VS Code extension marketplace with featured language extensions', path: {
dark: 'dark/extensions.png',
light: 'light/extensions.png',
hc: 'hc/extensions.png',
}
type: 'svg', altText: 'VS Code extension marketplace with featured language extensions', path: 'extensions.svg'
},
},
{
@ -274,11 +236,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
title: localize('gettingStarted.settings.title', "Tune your settings"),
description: localize('gettingStarted.settings.description.interpolated', "Tweak every aspect of VS Code and your extensions to your liking. Commonly used settings are listed first to get you started.\n{0}", Button(localize('tweakSettings', "Tweak my Settings"), 'command:toSide:workbench.action.openSettings')),
media: {
type: 'image', altText: 'VS Code Settings', path: {
dark: 'dark/settings.png',
light: 'light/settings.png',
hc: 'hc/settings.png',
}
type: 'svg', altText: 'VS Code Settings', path: 'settings.svg'
},
},
{
@ -288,18 +246,14 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
when: 'syncStatus != uninitialized',
completionEvents: ['onEvent:sync-enabled'],
media: {
type: 'image', altText: 'The "Turn on Sync" entry in the settings gear menu.', path: {
dark: 'dark/settingsSync.png',
light: 'light/settingsSync.png',
hc: 'hc/settingsSync.png',
},
}
type: 'svg', altText: 'The "Turn on Sync" entry in the settings gear menu.', path: 'settingsSync.svg'
},
},
{
id: 'videoTutorial',
title: localize('gettingStarted.videoTutorial.title', "Lean back and learn"),
description: localize('gettingStarted.videoTutorial.description.interpolated', "Watch the first in a series of short & practical video tutorials for VS Code's key features.\n{0}", Button(localize('watch', "Watch Tutorial"), 'https://aka.ms/vscode-getting-started-video')),
media: { type: 'image', altText: 'VS Code Settings', path: 'tutorialVideo.png' },
media: { type: 'svg', altText: 'VS Code Settings', path: 'learn.svg' },
}
]
}
@ -319,11 +273,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
title: localize('gettingStarted.splitview.title', "Side by side editing"),
description: localize('gettingStarted.splitview.description.interpolated', "Make the most of your screen estate by opening files side by side, vertically and horizontally.\n{0}", Button(localize('splitEditor', "Split Editor"), 'command:workbench.action.splitEditor')),
media: {
type: 'image', altText: 'Multiple editors in split view.', path: {
dark: 'dark/splitview.png',
light: 'light/splitview.png',
hc: 'light/splitview.png'
},
type: 'svg', altText: 'Multiple editors in split view.', path: 'sideBySide.svg',
},
},
{
@ -332,11 +282,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
description: localize('gettingStarted.debug.description.interpolated', "Accelerate your edit, build, test, and debug loop by setting up a launch configuration.\n{0}", Button(localize('runProject', "Run your Project"), 'command:workbench.action.debug.selectandstart')),
when: 'workspaceFolderCount != 0',
media: {
type: 'image', altText: 'Run and debug view.', path: {
dark: 'dark/debug.png',
light: 'light/debug.png',
hc: 'light/debug.png'
},
type: 'svg', altText: 'Run and debug view.', path: 'debug.svg',
},
},
{
@ -345,11 +291,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
description: localize('gettingStarted.scmClone.description.interpolated', "Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}", Button(localize('cloneRepo', "Clone Repository"), 'command:git.clone')),
when: 'config.git.enabled && !git.missing && workspaceFolderCount == 0',
media: {
type: 'image', altText: 'Source Control view.', path: {
dark: 'dark/scm.png',
light: 'light/scm.png',
hc: 'light/scm.png'
},
type: 'svg', altText: 'Source Control view.', path: 'git.svg',
},
},
{
@ -358,11 +300,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
description: localize('gettingStarted.scmSetup.description.interpolated', "Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}", Button(localize('initRepo', "Initialize Git Repository"), 'command:git.init')),
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount == 0',
media: {
type: 'image', altText: 'Source Control view.', path: {
dark: 'dark/scm.png',
light: 'light/scm.png',
hc: 'light/scm.png'
},
type: 'svg', altText: 'Source Control view.', path: 'git.svg',
},
},
{
@ -371,11 +309,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
description: localize('gettingStarted.scm.description.interpolated', "No more looking up Git commands! Git and GitHub workflows are seamlessly integrated.\n{0}", Button(localize('openSCM', "Open Source Control"), 'command:workbench.view.scm')),
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount != 0 && activeViewlet != \'workbench.view.scm\'',
media: {
type: 'image', altText: 'Source Control view.', path: {
dark: 'dark/scm.png',
light: 'light/scm.png',
hc: 'light/scm.png'
},
type: 'svg', altText: 'Source Control view.', path: 'git.svg',
},
},
{
@ -384,11 +318,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
when: 'workspaceFolderCount != 0',
description: localize('gettingStarted.tasks.description.interpolated', "Create tasks for your common workflows and enjoy the integrated experience of running scripts and automatically checking results.\n{0}", Button(localize('runTasks', "Run Auto-detected Tasks"), 'command:workbench.action.tasks.runTask')),
media: {
type: 'image', altText: 'Task runner.', path: {
dark: 'dark/tasks.png',
light: 'light/tasks.png',
hc: 'light/tasks.png'
},
type: 'svg', altText: 'Task runner.', path: 'runTask.svg',
},
},
{
@ -396,11 +326,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
title: localize('gettingStarted.shortcuts.title', "Customize your shortcuts"),
description: localize('gettingStarted.shortcuts.description.interpolated', "Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}", Button(localize('keyboardShortcuts', "Keyboard Shortcuts"), 'command:toSide:workbench.action.openGlobalKeybindings')),
media: {
type: 'image', altText: 'Interactive shortcuts.', path: {
dark: 'dark/shortcuts.png',
light: 'light/shortcuts.png',
hc: 'light/shortcuts.png'
},
type: 'svg', altText: 'Interactive shortcuts.', path: 'shortcuts.svg',
}
}
]

View file

@ -0,0 +1,50 @@
<svg viewBox="0 0 520 220" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="520" height="220" fill="var(--vscode-editor-background, #1e1e1e)"/>
<g clip-path="url(#clip0)">
<rect width="520" height="39" fill="var(--vscode-editorGroupHeader-tabsBackground, #252526)"/>
<g clip-path="url(#clip1)">
<rect width="115.654" height="39.2998" fill="var(--vscode-tab-activeBackground, #1e1e1e)"/>
<rect x="13.4742" y="15.7199" width="88.7052" height="7.85995" rx="3.92998" fill="var(--vscode-tab-unfocusedInactiveForeground, #454545)"/>
</g>
</g>
<g filter="url(#filter0_d)">
<rect width="425" height="182" transform="translate(48 20)" fill="var(--vscode-quickInput-background, #252526)"/>
<rect x="55.5" y="27.5" width="410" height="25" fill="var(--vscode-input-background, #3c3c3c)"/>
<path d="M61.168 43.3242V44.708L67.4648 41.9595V40.7598L61.168 38.0239V39.4204L65.8779 41.3691V41.4326L61.168 43.3242ZM73.6665 45H75.0312V39.2173H76.5547V38.1255H75.0122V37.4463C75.0122 36.748 75.3232 36.3989 76.085 36.3989C76.3008 36.3989 76.4849 36.4116 76.6118 36.4307V35.4023C76.377 35.3643 76.1104 35.3389 75.7993 35.3389C74.3647 35.3389 73.6665 36.0117 73.6665 37.3828V38.1255H72.5303V39.2173H73.6665V45ZM78.8081 36.875C79.2842 36.875 79.6714 36.4878 79.6714 36.0181C79.6714 35.542 79.2842 35.1548 78.8081 35.1548C78.332 35.1548 77.9448 35.542 77.9448 36.0181C77.9448 36.4878 78.332 36.875 78.8081 36.875ZM78.1289 45H79.4873V38.1064H78.1289V45ZM81.5566 45H82.9214V35.4023H81.5566V45ZM89.5039 43.1528C89.25 43.7114 88.6851 44.0161 87.8599 44.0161C86.7681 44.0161 86.0635 43.229 86.019 41.9785V41.915H90.9004V41.4453C90.9004 39.2871 89.7388 37.9731 87.8154 37.9731C85.8667 37.9731 84.6289 39.376 84.6289 41.5659C84.6289 43.7686 85.8413 45.1333 87.8218 45.1333C89.4023 45.1333 90.5195 44.3716 90.8179 43.1528H89.5039ZM87.8091 39.084C88.8184 39.084 89.4785 39.814 89.5103 40.9312H86.019C86.0952 39.8203 86.7998 39.084 87.8091 39.084Z" fill="var(--vscode-input-foreground, #cccccc)"/>
<rect x="55.5" y="27.5" width="410" height="25" stroke="var(--vscode-focusBorder, #0078d4)"/>
<rect x="60" y="66" width="38" height="6" rx="3" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect x="135" y="66" width="105" height="6" rx="3" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect x="102" y="66" width="29" height="6" rx="3" fill="var(--vscode-pickerGroup-foreground)"/>
<rect width="425" height="24" transform="translate(48 82)" fill="var(--vscode-quickInputList-focusBackground, #062F4A)"/>
<path d="M63.0278 99V95.3945H66.7539V93.8774H63.0278V91.4209H67.1094V89.8403H61.1108V99H63.0278ZM69.6357 90.9385C70.207 90.9385 70.6768 90.4814 70.6768 89.9102C70.6768 89.3325 70.207 88.8755 69.6357 88.8755C69.0645 88.8755 68.5884 89.3325 68.5884 89.9102C68.5884 90.4814 69.0645 90.9385 69.6357 90.9385ZM68.709 99H70.5562V92.0112H68.709V99ZM72.4922 99H74.3394V89.3389H72.4922V99ZM80.7886 97.0259C80.5918 97.502 80.0903 97.7686 79.3604 97.7686C78.3955 97.7686 77.7861 97.1021 77.7607 96.0356V95.9404H82.5659V95.3882C82.5659 93.1792 81.3472 91.8589 79.2842 91.8589C77.2021 91.8589 75.9199 93.2681 75.9199 95.5405C75.9199 97.8003 77.1768 99.146 79.3096 99.146C81.0234 99.146 82.2358 98.3271 82.5088 97.0259H80.7886ZM79.2905 93.2363C80.1538 93.2363 80.7124 93.833 80.7505 94.7915H77.7671C77.8306 93.8521 78.4336 93.2363 79.2905 93.2363Z" fill="var(--vscode-list-focusHighlightForeground)"/>
<path d="M85.416 94.6519C86.1016 94.6519 86.5396 94.1948 86.5396 93.5728C86.5396 92.9507 86.1016 92.5 85.416 92.5C84.7368 92.5 84.2925 92.9507 84.2925 93.5728C84.2925 94.1948 84.7368 94.6519 85.416 94.6519ZM85.416 99.1587C86.1016 99.1587 86.5396 98.7017 86.5396 98.0796C86.5396 97.4575 86.1016 97.0068 85.416 97.0068C84.7368 97.0068 84.2925 97.4575 84.2925 98.0796C84.2925 98.7017 84.7368 99.1587 85.416 99.1587ZM93.7632 99V92.3477H93.8647L98.5684 99H99.8506V89.8403H98.4668V96.5054H98.3652L93.6616 89.8403H92.3794V99H93.7632ZM106.528 97.1528C106.274 97.7114 105.709 98.0161 104.884 98.0161C103.792 98.0161 103.088 97.229 103.043 95.9785V95.915H107.925V95.4453C107.925 93.2871 106.763 91.9731 104.84 91.9731C102.891 91.9731 101.653 93.376 101.653 95.5659C101.653 97.7686 102.866 99.1333 104.846 99.1333C106.427 99.1333 107.544 98.3716 107.842 97.1528H106.528ZM104.833 93.084C105.843 93.084 106.503 93.814 106.535 94.9312H103.043C103.12 93.8203 103.824 93.084 104.833 93.084ZM118.513 92.1064H117.148L115.917 97.4258H115.809L114.387 92.1064H113.079L111.657 97.4258H111.556L110.318 92.1064H108.934L110.838 99H112.241L113.663 93.8584H113.771L115.199 99H116.615L118.513 92.1064ZM125.044 89.8403H123.623V95.8452C123.623 97.8257 125.038 99.2222 127.33 99.2222C129.634 99.2222 131.043 97.8257 131.043 95.8452V89.8403H129.621V95.731C129.621 97.0386 128.79 97.959 127.33 97.959C125.876 97.959 125.044 97.0386 125.044 95.731V89.8403ZM133.176 99H134.541V94.9565C134.541 93.8457 135.182 93.1602 136.191 93.1602C137.2 93.1602 137.683 93.7188 137.683 94.8613V99H139.047V94.5376C139.047 92.8936 138.197 91.9731 136.654 91.9731C135.613 91.9731 134.928 92.4365 134.591 93.1982H134.49V92.1064H133.176V99ZM141.453 90.3672V92.1255H140.355V93.2173H141.453V97.1846C141.453 98.5112 142.056 99.0444 143.573 99.0444C143.84 99.0444 144.094 99.0127 144.316 98.9746V97.8892C144.125 97.9082 144.005 97.9209 143.795 97.9209C143.116 97.9209 142.818 97.5972 142.818 96.8545V93.2173H144.316V92.1255H142.818V90.3672H141.453ZM146.626 90.875C147.103 90.875 147.49 90.4878 147.49 90.0181C147.49 89.542 147.103 89.1548 146.626 89.1548C146.15 89.1548 145.763 89.542 145.763 90.0181C145.763 90.4878 146.15 90.875 146.626 90.875ZM145.947 99H147.306V92.1064H145.947V99ZM149.794 90.3672V92.1255H148.696V93.2173H149.794V97.1846C149.794 98.5112 150.397 99.0444 151.914 99.0444C152.181 99.0444 152.435 99.0127 152.657 98.9746V97.8892C152.466 97.9082 152.346 97.9209 152.136 97.9209C151.457 97.9209 151.159 97.5972 151.159 96.8545V93.2173H152.657V92.1255H151.159V90.3672H149.794ZM154.326 99H155.691V89.4023H154.326V99ZM162.273 97.1528C162.02 97.7114 161.455 98.0161 160.629 98.0161C159.538 98.0161 158.833 97.229 158.789 95.9785V95.915H163.67V95.4453C163.67 93.2871 162.508 91.9731 160.585 91.9731C158.636 91.9731 157.398 93.376 157.398 95.5659C157.398 97.7686 158.611 99.1333 160.591 99.1333C162.172 99.1333 163.289 98.3716 163.587 97.1528H162.273ZM160.579 93.084C161.588 93.084 162.248 93.814 162.28 94.9312H158.789C158.865 93.8203 159.569 93.084 160.579 93.084ZM167.834 99.1143C168.786 99.1143 169.592 98.6636 170.005 97.9082H170.113V99H171.42V89.4023H170.056V93.1982H169.954C169.58 92.4429 168.78 91.9858 167.834 91.9858C166.088 91.9858 164.965 93.376 164.965 95.5469C164.965 97.7305 166.076 99.1143 167.834 99.1143ZM168.221 93.1538C169.364 93.1538 170.081 94.0806 170.081 95.5532C170.081 97.0386 169.37 97.9463 168.221 97.9463C167.066 97.9463 166.374 97.0513 166.374 95.5532C166.374 94.0615 167.072 93.1538 168.221 93.1538ZM178.606 99V95.166H182.542V93.9663H178.606V91.0654H182.903V89.8403H177.184V99H178.606ZM185.296 90.875C185.772 90.875 186.16 90.4878 186.16 90.0181C186.16 89.542 185.772 89.1548 185.296 89.1548C184.82 89.1548 184.433 89.542 184.433 90.0181C184.433 90.4878 184.82 90.875 185.296 90.875ZM184.617 99H185.976V92.1064H184.617V99ZM188.045 99H189.41V89.4023H188.045V99ZM195.992 97.1528C195.738 97.7114 195.173 98.0161 194.348 98.0161C193.256 98.0161 192.552 97.229 192.507 95.9785V95.915H197.389V95.4453C197.389 93.2871 196.227 91.9731 194.304 91.9731C192.355 91.9731 191.117 93.376 191.117 95.5659C191.117 97.7686 192.33 99.1333 194.31 99.1333C195.891 99.1333 197.008 98.3716 197.306 97.1528H195.992ZM194.297 93.084C195.307 93.084 195.967 93.814 195.999 94.9312H192.507C192.583 93.8203 193.288 93.084 194.297 93.084Z" fill="var(--vscode-quickInputList-focusForeground, #E3E3E3)"/>
<rect x="60" y="116" width="62.5" height="6" rx="3" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect x="126.5" y="116" width="29" height="6" rx="3" fill="var(--vscode-pickerGroup-foreground)"/>
<rect x="159.5" y="116" width="62.5" height="6" rx="3" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect x="60" y="138" width="41" height="6" rx="3" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect x="105" y="138" width="69" height="6" rx="3" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect x="178" y="138" width="26" height="6" rx="3" fill="var(--vscode-pickerGroup-foreground)"/>
<rect x="60" y="160" width="26" height="6" rx="3" fill="var(--vscode-pickerGroup-foreground)"/>
<rect x="90" y="160" width="164" height="6" rx="3" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect x="60" y="182" width="46" height="6" rx="3" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect x="110" y="182" width="29" height="6" rx="3" fill="var(--vscode-pickerGroup-foreground)"/>
<rect x="143" y="182" width="46" height="6" rx="3" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
</g>
<defs>
<filter id="filter0_d" x="36" y="10" width="449" height="206" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="2"/>
<feGaussianBlur stdDeviation="6"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<clipPath id="clip0">
<rect width="520" height="220" fill="white"/>
</clipPath>
<clipPath id="clip1">
<rect width="115.654" height="39.2998" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 164 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 30 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 63 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 423 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 97 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 73 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 168 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 30 KiB

View file

@ -0,0 +1,91 @@
<svg viewBox="0 0 410 370" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<rect width="198" height="318" transform="translate(212 24)" fill="var(--vscode-editor-background, #1e1e1e)"/>
<rect width="336" height="35" transform="translate(212 24)" fill="var(--vscode-editorGroupHeader-tabsBackground, #252526)"/>
<rect width="103" height="35" transform="translate(212 24)" fill="var(--vscode-tab-activeBackground, #1e1e1e)"/>
<rect x="224" y="38" width="79" height="7" rx="3.5" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect x="255" y="77" width="55" height="7" rx="3.5" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect x="255" y="96" width="55" height="7" rx="3.5" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect x="255" y="153" width="72" height="7" rx="3.5" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect x="333" y="153" width="26" height="7" rx="3.5" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect x="255" y="273" width="72" height="7" rx="3.5" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect x="333" y="273" width="26" height="7" rx="3.5" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect x="272" y="172" width="30" height="7" rx="3.5" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect x="282" y="191" width="30" height="7" rx="3.5" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect x="318" y="191" width="41" height="7" rx="3.5" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect x="272" y="210" width="30" height="7" rx="3.5" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect x="263" y="229" width="31" height="7" rx="3.5" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect x="316" y="77" width="52" height="7" rx="3.5" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect x="316" y="96" width="74" height="7" rx="3.5" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect x="309" y="172" width="59" height="7" rx="3.5" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
</g>
<g filter="url(#filter0_d)">
<rect x="13" y="11" width="212.268" height="344" fill="var(--vscode-editorGroupHeader-tabsBackground, #252526)"/>
<path d="M34.8806 39.7485H31.8019V37.7509H34.716V36.9234H31.8019V35.0459H34.8806V34.1872H30.8053V40.6072H34.8806V39.7485ZM35.9128 40.6072H37.0161L38.6133 38.1914H38.689L40.2639 40.6072H41.4296L39.2896 37.4083L41.4696 34.1872H40.3485L38.7602 36.6386H38.6845L37.1229 34.1872H35.935L38.0572 37.3772L35.9128 40.6072ZM42.6753 34.1872V40.6072H43.6719V38.4138H45.1579C46.4169 38.4138 47.3067 37.5507 47.3067 36.3139C47.3067 35.0503 46.4436 34.1872 45.189 34.1872H42.6753ZM43.6719 35.0281H44.9265C45.803 35.0281 46.2879 35.4819 46.2879 36.3139C46.2879 37.1191 45.7852 37.5774 44.9265 37.5774H43.6719V35.0281ZM52.5967 39.7396H49.5891V34.1872H48.5925V40.6072H52.5967V39.7396ZM56.3561 34.0315C54.5142 34.0315 53.3574 35.3262 53.3574 37.395C53.3574 39.4593 54.4875 40.7629 56.3561 40.7629C58.2113 40.7629 59.3503 39.4549 59.3503 37.395C59.3503 35.3306 58.2024 34.0315 56.3561 34.0315ZM56.3561 34.9124C57.5707 34.9124 58.3315 35.8734 58.3315 37.395C58.3315 38.9032 57.5751 39.882 56.3561 39.882C55.1193 39.882 54.3763 38.9032 54.3763 37.395C54.3763 35.8734 55.1415 34.9124 56.3561 34.9124ZM61.6994 38.138H63.1053L64.4133 40.6072H65.5656L64.1241 37.9822C64.9071 37.7198 65.3698 37.0168 65.3698 36.1492C65.3698 34.9525 64.5379 34.1872 63.2432 34.1872H60.7028V40.6072H61.6994V38.138ZM61.6994 35.0236H63.1053C63.875 35.0236 64.3466 35.4552 64.3466 36.1715C64.3466 36.9056 63.9017 37.3193 63.132 37.3193H61.6994V35.0236ZM70.8644 39.7485H67.7857V37.7509H70.6998V36.9234H67.7857V35.0459H70.8644V34.1872H66.7891V40.6072H70.8644V39.7485ZM73.3025 38.138H74.7084L76.0164 40.6072H77.1687L75.7272 37.9822C76.5102 37.7198 76.9729 37.0168 76.9729 36.1492C76.9729 34.9525 76.141 34.1872 74.8463 34.1872H72.3059V40.6072H73.3025V38.138ZM73.3025 35.0236H74.7084C75.478 35.0236 75.9496 35.4552 75.9496 36.1715C75.9496 36.9056 75.5047 37.3193 74.7351 37.3193H73.3025V35.0236ZM79.0239 37.3327C79.4021 37.3327 79.6779 37.0524 79.6779 36.692C79.6779 36.3317 79.4021 36.0514 79.0239 36.0514C78.6502 36.0514 78.3699 36.3317 78.3699 36.692C78.3699 37.0524 78.6502 37.3327 79.0239 37.3327ZM79.0239 40.6739C79.4021 40.6739 79.6779 40.3936 79.6779 40.0333C79.6779 39.6729 79.4021 39.3926 79.0239 39.3926C78.6502 39.3926 78.3699 39.6729 78.3699 40.0333C78.3699 40.3936 78.6502 40.6739 79.0239 40.6739ZM90.2533 40.6072V34.1872H89.0876L87.0411 39.2102H86.9655L84.9233 34.1872H83.7577V40.6072H84.6831V35.9045H84.7454L86.6273 40.4915H87.3837L89.2656 35.9045H89.3279V40.6072H90.2533ZM94.6311 40.6072V37.9778L96.8957 34.1872H95.7879L94.1729 36.9857H94.0973L92.4823 34.1872H91.3745L93.6346 37.9778V40.6072H94.6311ZM100.179 38.4627V37.5774H97.2605V38.4627H100.179ZM105.674 40.6072H106.733L104.415 34.1872H103.342L101.024 40.6072H102.048L102.639 38.8721H105.086L105.674 40.6072ZM103.827 35.3217H103.903L104.833 38.0712H102.893L103.827 35.3217ZM107.854 34.1872V40.6072H108.85V38.4138H110.336C111.595 38.4138 112.485 37.5507 112.485 36.3139C112.485 35.0503 111.622 34.1872 110.367 34.1872H107.854ZM108.85 35.0281H110.105C110.981 35.0281 111.466 35.4819 111.466 36.3139C111.466 37.1191 110.964 37.5774 110.105 37.5774H108.85V35.0281ZM113.771 34.1872V40.6072H114.767V38.4138H116.253C117.513 38.4138 118.402 37.5507 118.402 36.3139C118.402 35.0503 117.539 34.1872 116.285 34.1872H113.771ZM114.767 35.0281H116.022C116.899 35.0281 117.384 35.4819 117.384 36.3139C117.384 37.1191 116.881 37.5774 116.022 37.5774H114.767V35.0281Z" fill="var(--vscode-foreground)"/>
<path d="M35.984 65.0998L40.336 60.7478L40.96 61.3718L36.288 66.0278H35.664L31.008 61.3718L31.616 60.7478L35.984 65.0998Z" fill="var(--vscode-foreground)"/>
<rect x="52" y="59.5358" width="42" height="7" rx="3.5" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<path d="M47.984 89.0998L52.336 84.7478L52.96 85.3718L48.288 90.0278H47.664L43.008 85.3718L43.616 84.7478L47.984 89.0998Z" fill="var(--vscode-foreground)"/>
<rect x="64" y="83.5358" width="42" height="7" rx="3.5" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect width="210.268" height="24" transform="translate(14 99.0358)" fill="var(--vscode-list-activeSelectionBackground)"/>
<path d="M47.76 108.416H45.62V114.776H44.06V108.416H41.94V107.276H47.68V108.416H47.76ZM52.56 112.856C52.56 112.709 52.5333 112.582 52.48 112.476C52.4267 112.369 52.3533 112.262 52.26 112.156C52.18 112.089 52.06 112.016 51.9 111.936C51.7933 111.896 51.6067 111.822 51.34 111.716L51.18 111.656C50.3133 111.402 49.6267 111.089 49.12 110.716C48.6667 110.329 48.44 109.849 48.44 109.276C48.44 108.649 48.7133 108.149 49.26 107.776C49.7533 107.402 50.4067 107.216 51.22 107.216C52.0467 107.216 52.7267 107.449 53.26 107.916C53.7533 108.356 54 108.896 54 109.536H52.56C52.56 109.349 52.5267 109.189 52.46 109.056C52.4067 108.922 52.3133 108.789 52.18 108.656C51.9133 108.456 51.58 108.356 51.18 108.356C50.78 108.356 50.4733 108.436 50.26 108.596C50.0467 108.756 49.94 108.982 49.94 109.276C49.94 109.516 50.0667 109.729 50.32 109.916C50.4267 109.996 50.5867 110.076 50.8 110.156C50.96 110.222 51.2133 110.309 51.56 110.416C52.3733 110.656 52.9933 110.962 53.42 111.336C53.8467 111.696 54.06 112.202 54.06 112.856C54.06 113.176 53.9933 113.469 53.86 113.736C53.74 113.989 53.56 114.196 53.32 114.356C52.8133 114.729 52.1467 114.916 51.32 114.916C50.44 114.916 49.7267 114.702 49.18 114.276C48.5533 113.782 48.2667 113.182 48.32 112.476H49.82C49.82 112.902 49.9667 113.236 50.26 113.476C50.38 113.569 50.54 113.642 50.74 113.696C50.94 113.749 51.1533 113.776 51.38 113.776C51.8333 113.776 52.1467 113.696 52.32 113.536C52.48 113.282 52.56 113.056 52.56 112.856Z" fill="#519ABA"/>
<path d="M66.9009 115.15C67.8086 115.15 68.564 114.756 68.9766 114.058H69.0845V115.036H70.3984V110.319C70.3984 108.872 69.4209 108.009 67.688 108.009C66.1201 108.009 65.0029 108.764 64.8633 109.926H66.1836C66.3359 109.424 66.8628 109.139 67.6245 109.139C68.5576 109.139 69.04 109.564 69.04 110.319V110.922L67.1675 111.037C65.5234 111.138 64.5967 111.856 64.5967 113.093C64.5967 114.35 65.5679 115.15 66.9009 115.15ZM67.25 114.052C66.5073 114.052 65.9678 113.677 65.9678 113.036C65.9678 112.408 66.3994 112.071 67.3516 112.008L69.04 111.894V112.49C69.04 113.379 68.2783 114.052 67.25 114.052ZM75.9272 108.022C74.9878 108.022 74.1753 108.498 73.7563 109.285H73.6548V108.142H72.3408V117.334H73.7056V113.995H73.8135C74.1753 114.725 74.9561 115.15 75.9399 115.15C77.6855 115.15 78.7964 113.766 78.7964 111.589C78.7964 109.399 77.6855 108.022 75.9272 108.022ZM75.54 113.982C74.3975 113.982 73.6802 113.062 73.6802 111.589C73.6802 110.11 74.3975 109.19 75.5464 109.19C76.7017 109.19 77.3936 110.091 77.3936 111.589C77.3936 113.087 76.7017 113.982 75.54 113.982ZM84.0269 108.022C83.0874 108.022 82.2749 108.498 81.856 109.285H81.7544V108.142H80.4404V117.334H81.8052V113.995H81.9131C82.2749 114.725 83.0557 115.15 84.0396 115.15C85.7852 115.15 86.896 113.766 86.896 111.589C86.896 109.399 85.7852 108.022 84.0269 108.022ZM83.6396 113.982C82.4971 113.982 81.7798 113.062 81.7798 111.589C81.7798 110.11 82.4971 109.19 83.646 109.19C84.8013 109.19 85.4932 110.091 85.4932 111.589C85.4932 113.087 84.8013 113.982 83.6396 113.982ZM89.4478 115.131C89.9873 115.131 90.3809 114.731 90.3809 114.217C90.3809 113.703 89.9873 113.303 89.4478 113.303C88.9146 113.303 88.5146 113.703 88.5146 114.217C88.5146 114.731 88.9146 115.131 89.4478 115.131ZM92.7549 106.403V108.161H91.6567V109.253H92.7549V113.22C92.7549 114.547 93.3579 115.08 94.875 115.08C95.1416 115.08 95.3955 115.048 95.6177 115.01V113.925C95.4272 113.944 95.3066 113.957 95.0972 113.957C94.418 113.957 94.1196 113.633 94.1196 112.89V109.253H95.6177V108.161H94.1196V106.403H92.7549ZM96.9634 110.072C96.9634 111.094 97.5728 111.678 98.8867 111.983L100.093 112.268C100.785 112.433 101.108 112.713 101.108 113.144C101.108 113.709 100.505 114.103 99.6548 114.103C98.8296 114.103 98.3218 113.766 98.1504 113.227H96.7856C96.9062 114.426 97.979 115.169 99.623 115.169C101.273 115.169 102.486 114.299 102.486 113.017C102.486 112.014 101.87 111.449 100.556 111.145L99.4072 110.878C98.6582 110.7 98.3091 110.434 98.3091 110.008C98.3091 109.45 98.8867 109.075 99.6484 109.075C100.423 109.075 100.918 109.412 101.045 109.926H102.353C102.219 108.733 101.204 108.009 99.6484 108.009C98.0869 108.009 96.9634 108.872 96.9634 110.072ZM106.542 112.567L108.053 115.048H109.621L107.316 111.564L109.595 108.155H108.072L106.599 110.618H106.491L105.006 108.155H103.413L105.723 111.614L103.432 115.048H104.93L106.44 112.567H106.542Z" fill="var(--vscode-list-activeSelectionForeground)"/>
<path d="M44.44 139.596L44.94 137.096H43.38V135.776H45.26L45.56 134.216H43.94V132.916H45.88L46.38 130.476H48.12L47.62 132.916H49.38L49.88 130.476H51.62L51.12 132.916H52.68V134.216H50.88L50.5 135.776H52.12V137.096H50.26L49.76 139.596H48L48.5 137.096H46.76L46.26 139.596H44.44ZM48.76 135.796L49.06 134.216H47.32L47 135.796H48.76Z" fill="#519ABA"/>
<path d="M66.9009 139.15C67.8086 139.15 68.564 138.756 68.9766 138.058H69.0845V139.036H70.3984V134.319C70.3984 132.872 69.4209 132.009 67.688 132.009C66.1201 132.009 65.0029 132.764 64.8633 133.926H66.1836C66.3359 133.424 66.8628 133.139 67.6245 133.139C68.5576 133.139 69.04 133.564 69.04 134.319V134.922L67.1675 135.037C65.5234 135.138 64.5967 135.856 64.5967 137.093C64.5967 138.35 65.5679 139.15 66.9009 139.15ZM67.25 138.052C66.5073 138.052 65.9678 137.677 65.9678 137.036C65.9678 136.408 66.3994 136.071 67.3516 136.008L69.04 135.894V136.49C69.04 137.379 68.2783 138.052 67.25 138.052ZM75.9272 132.022C74.9878 132.022 74.1753 132.498 73.7563 133.285H73.6548V132.142H72.3408V141.334H73.7056V137.995H73.8135C74.1753 138.725 74.9561 139.15 75.9399 139.15C77.6855 139.15 78.7964 137.766 78.7964 135.589C78.7964 133.399 77.6855 132.022 75.9272 132.022ZM75.54 137.982C74.3975 137.982 73.6802 137.062 73.6802 135.589C73.6802 134.11 74.3975 133.19 75.5464 133.19C76.7017 133.19 77.3936 134.091 77.3936 135.589C77.3936 137.087 76.7017 137.982 75.54 137.982ZM84.0269 132.022C83.0874 132.022 82.2749 132.498 81.856 133.285H81.7544V132.142H80.4404V141.334H81.8052V137.995H81.9131C82.2749 138.725 83.0557 139.15 84.0396 139.15C85.7852 139.15 86.896 137.766 86.896 135.589C86.896 133.399 85.7852 132.022 84.0269 132.022ZM83.6396 137.982C82.4971 137.982 81.7798 137.062 81.7798 135.589C81.7798 134.11 82.4971 133.19 83.646 133.19C84.8013 133.19 85.4932 134.091 85.4932 135.589C85.4932 137.087 84.8013 137.982 83.6396 137.982ZM89.4478 139.131C89.9873 139.131 90.3809 138.731 90.3809 138.217C90.3809 137.703 89.9873 137.303 89.4478 137.303C88.9146 137.303 88.5146 137.703 88.5146 138.217C88.5146 138.731 88.9146 139.131 89.4478 139.131ZM98.0869 134.358C97.9092 133.018 96.8618 132.009 95.1289 132.009C93.1167 132.009 91.8916 133.374 91.8916 135.564C91.8916 137.798 93.123 139.169 95.1353 139.169C96.8428 139.169 97.9092 138.211 98.0869 136.852H96.7603C96.5825 137.601 95.9922 138.007 95.1289 138.007C93.9927 138.007 93.2881 137.087 93.2881 135.564C93.2881 134.072 93.9863 133.171 95.1289 133.171C96.043 133.171 96.6016 133.685 96.7603 134.358H98.0869ZM99.4897 134.072C99.4897 135.094 100.099 135.678 101.413 135.983L102.619 136.268C103.311 136.433 103.635 136.713 103.635 137.144C103.635 137.709 103.032 138.103 102.181 138.103C101.356 138.103 100.848 137.766 100.677 137.227H99.312C99.4326 138.426 100.505 139.169 102.149 139.169C103.8 139.169 105.012 138.299 105.012 137.017C105.012 136.014 104.396 135.449 103.083 135.145L101.934 134.878C101.185 134.7 100.835 134.434 100.835 134.008C100.835 133.45 101.413 133.075 102.175 133.075C102.949 133.075 103.444 133.412 103.571 133.926H104.879C104.746 132.733 103.73 132.009 102.175 132.009C100.613 132.009 99.4897 132.872 99.4897 134.072ZM106.371 134.072C106.371 135.094 106.98 135.678 108.294 135.983L109.5 136.268C110.192 136.433 110.516 136.713 110.516 137.144C110.516 137.709 109.913 138.103 109.062 138.103C108.237 138.103 107.729 137.766 107.558 137.227H106.193C106.313 138.426 107.386 139.169 109.03 139.169C110.681 139.169 111.893 138.299 111.893 137.017C111.893 136.014 111.277 135.449 109.963 135.145L108.814 134.878C108.065 134.7 107.716 134.434 107.716 134.008C107.716 133.45 108.294 133.075 109.056 133.075C109.83 133.075 110.325 133.412 110.452 133.926H111.76C111.626 132.733 110.611 132.009 109.056 132.009C107.494 132.009 106.371 132.872 106.371 134.072Z" fill="var(--vscode-foreground)"/>
<path d="M38.08 159.052L33.712 154.7L34.336 154.076L39.008 158.748V159.372L34.336 164.028L33.712 163.42L38.08 159.068V159.052Z" fill="var(--vscode-foreground)"/>
<rect x="52" y="155.536" width="70" height="7" rx="3.5" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<path d="M38.08 183.052L33.712 178.7L34.336 178.076L39.008 182.748V183.372L34.336 188.028L33.712 187.42L38.08 183.068V183.052Z" fill="var(--vscode-foreground)"/>
<rect x="52" y="179.536" width="93" height="7" rx="3.5" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<path d="M30.38 207.156V206.976C30.3933 206.869 30.4267 206.776 30.48 206.696C30.52 206.642 30.58 206.569 30.66 206.476L30.82 206.296L33.94 203.156L33.96 203.176C33.9867 203.176 34 203.189 34 203.216L35.12 204.356C35.1867 204.409 35.1867 204.469 35.12 204.536C35.0933 204.722 35.1133 204.902 35.18 205.076C35.2467 205.249 35.3533 205.382 35.5 205.476C35.5533 205.502 35.5867 205.536 35.6 205.576C35.6133 205.602 35.62 205.649 35.62 205.716V208.476C35.62 208.556 35.58 208.636 35.5 208.716C35.34 208.822 35.22 208.962 35.14 209.136C35.0733 209.309 35.0667 209.489 35.12 209.676C35.1867 209.849 35.2933 209.996 35.44 210.116C35.5867 210.236 35.7533 210.296 35.94 210.296C36.1267 210.296 36.2933 210.242 36.44 210.136C36.5867 210.029 36.6867 209.889 36.74 209.716C36.8067 209.529 36.8133 209.349 36.76 209.176C36.7067 209.002 36.6 208.849 36.44 208.716C36.3867 208.689 36.3533 208.662 36.34 208.636C36.3267 208.596 36.32 208.542 36.32 208.476V205.656H36.38L37.38 206.656C37.4067 206.682 37.42 206.716 37.42 206.756L37.44 206.796V207.156C37.4667 207.409 37.5733 207.609 37.76 207.756C37.96 207.889 38.1867 207.942 38.44 207.916C38.6933 207.876 38.8933 207.749 39.04 207.536C39.2 207.322 39.2467 207.096 39.18 206.856C39.1533 206.642 39.0333 206.469 38.82 206.336C38.62 206.189 38.4067 206.129 38.18 206.156C38.1 206.156 38.02 206.136 37.94 206.096L36.88 205.036C36.84 204.996 36.82 204.936 36.82 204.856C36.86 204.669 36.8333 204.489 36.74 204.316C36.6467 204.142 36.5133 204.016 36.34 203.936C36.1667 203.842 35.9933 203.816 35.82 203.856C35.6867 203.856 35.62 203.836 35.62 203.796C35.1267 203.289 34.7533 202.929 34.5 202.716C34.4333 202.662 34.4333 202.602 34.5 202.536C34.6467 202.429 34.8333 202.242 35.06 201.976L35.32 201.716C35.6933 201.342 36.0667 201.342 36.44 201.716L41.18 206.476C41.5667 206.849 41.5667 207.222 41.18 207.596L36.54 212.256C36.42 212.376 36.3333 212.456 36.28 212.496C36.1733 212.589 36.06 212.642 35.94 212.656H35.82L35.72 212.616C35.56 212.549 35.4467 212.482 35.38 212.416L35 212.036C34.6267 211.689 34.3533 211.416 34.18 211.216L30.76 207.796C30.7333 207.729 30.6733 207.642 30.58 207.536C30.46 207.376 30.3933 207.249 30.38 207.156Z" fill="#6D8086"/>
<rect x="52" y="203.536" width="63" height="7" rx="3.5" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<path d="M38.56 235.276C38.48 235.409 38.3933 235.562 38.3 235.736C38.22 235.896 38.18 236.036 38.18 236.156L38 238.096C38 238.322 37.8933 238.469 37.68 238.536C37.5333 238.576 37.3067 238.649 37 238.756C36.6933 238.862 36.4667 238.936 36.32 238.976H35.62C35.6067 238.976 35.5667 238.969 35.5 238.956C35.4333 238.929 35.3933 238.916 35.38 238.916C34.8733 238.742 34.52 238.596 34.32 238.476C34.1867 238.342 34.12 238.236 34.12 238.156C34.08 237.822 34.06 237.342 34.06 236.716C34.06 236.382 34.0467 236.142 34.02 235.996C33.9667 235.729 33.8533 235.516 33.68 235.356V235.276C35.2533 235.716 36.88 235.716 38.56 235.276ZM39.5 227.356C39.4733 227.636 39.4267 228.069 39.36 228.656C39.3067 229.242 39.2733 229.682 39.26 229.976L38.82 234.536C38.82 234.922 38.6067 235.149 38.18 235.216C37.7267 235.309 37.1267 235.396 36.38 235.476C35.4467 235.542 34.5733 235.456 33.76 235.216C33.6133 235.189 33.5067 235.122 33.44 235.016C33.4 234.949 33.36 234.829 33.32 234.656C33.32 234.402 33.2733 234.116 33.18 233.796L32.94 231.476C32.94 231.449 32.9267 231.416 32.9 231.376C32.8867 231.336 32.88 231.309 32.88 231.296C32.8533 230.856 32.7733 230.216 32.64 229.376L32.5 228.356C32.46 228.142 32.44 227.829 32.44 227.416C34.8667 227.922 37.22 227.902 39.5 227.356ZM32.44 226.976C32.6 226.896 32.7267 226.856 32.82 226.856L34.56 226.656C34.5867 226.656 34.64 226.636 34.72 226.596L34.82 226.536C34.78 226.429 34.7333 226.269 34.68 226.056C34.6267 225.802 34.5733 225.609 34.52 225.476C34.44 225.276 34.3267 225.109 34.18 224.976C34.02 224.802 33.78 224.542 33.46 224.196C33.1533 223.836 32.92 223.576 32.76 223.416C32.8933 223.269 32.9867 223.182 33.04 223.156C33.0933 223.116 33.14 223.109 33.18 223.136C33.2333 223.162 33.32 223.236 33.44 223.356L33.68 223.596C33.8667 223.809 34.0133 223.956 34.12 224.036C34.8267 224.609 35.2467 225.336 35.38 226.216C35.4333 226.402 35.5067 226.522 35.6 226.576C35.6933 226.629 35.8267 226.656 36 226.656L39.12 226.856C39.1867 226.856 39.2867 226.876 39.42 226.916L39.56 226.976C39.2267 227.229 38.5 227.402 37.38 227.496C36.3533 227.589 35.3333 227.589 34.32 227.496C33.2667 227.389 32.64 227.216 32.44 226.976Z" fill="#CC3E44"/>
<rect x="52" y="227.536" width="47" height="7" rx="3.5" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<path d="M34 250.012V249.036H33.904C33.5947 249.036 33.2907 249.1 32.992 249.228C32.704 249.345 32.448 249.516 32.224 249.74C32.0107 249.964 31.8453 250.22 31.728 250.508C31.632 250.774 31.568 251.052 31.536 251.34C31.504 251.628 31.4933 251.916 31.504 252.204C31.5253 252.492 31.536 252.78 31.536 253.068C31.536 253.27 31.4933 253.462 31.408 253.644C31.2587 254.006 31.0027 254.268 30.64 254.428C30.4693 254.502 30.288 254.54 30.096 254.54H30V255.532H30.096C30.288 255.532 30.4693 255.569 30.64 255.644C30.8213 255.729 30.976 255.836 31.104 255.964C31.232 256.102 31.3333 256.257 31.408 256.428V256.444C31.4933 256.614 31.536 256.801 31.536 257.004C31.536 257.292 31.5253 257.585 31.504 257.884C31.4933 258.172 31.504 258.46 31.536 258.748C31.568 259.025 31.632 259.297 31.728 259.564C31.8347 259.841 32 260.097 32.224 260.332C32.448 260.556 32.704 260.732 32.992 260.86C33.2907 260.977 33.5947 261.036 33.904 261.036H34V260.044H33.904C33.712 260.044 33.5253 260.006 33.344 259.932C33.1733 259.857 33.0187 259.75 32.88 259.612C32.752 259.473 32.6507 259.318 32.576 259.148C32.5013 258.966 32.464 258.774 32.464 258.572C32.464 258.326 32.4693 258.102 32.48 257.9C32.4907 257.676 32.4907 257.457 32.48 257.244C32.48 257.03 32.464 256.817 32.432 256.604C32.4 256.39 32.3413 256.188 32.256 255.996C32.096 255.612 31.8507 255.292 31.52 255.036C31.8507 254.78 32.096 254.46 32.256 254.076C32.3413 253.894 32.4 253.697 32.432 253.484C32.464 253.27 32.48 253.057 32.48 252.844C32.4907 252.62 32.4907 252.396 32.48 252.172C32.4693 251.948 32.464 251.724 32.464 251.5C32.464 251.201 32.544 250.929 32.704 250.684C32.864 250.438 33.0773 250.257 33.344 250.14C33.5253 250.054 33.712 250.012 33.904 250.012H34ZM38 260.044V261.036H38.096C38.4053 261.036 38.704 260.977 38.992 260.86C39.2907 260.732 39.552 260.556 39.776 260.332C40 260.097 40.1653 259.841 40.272 259.564C40.368 259.308 40.432 259.03 40.464 258.732C40.496 258.454 40.5013 258.172 40.48 257.884C40.4693 257.585 40.464 257.292 40.464 257.004C40.464 256.801 40.5067 256.609 40.592 256.428C40.7413 256.065 40.9973 255.804 41.36 255.644C41.5307 255.569 41.712 255.532 41.904 255.532H42V254.54H41.904C41.712 254.54 41.5307 254.502 41.36 254.428C41.1787 254.353 41.024 254.246 40.896 254.108C40.7573 253.969 40.656 253.814 40.592 253.644V253.628C40.5067 253.457 40.464 253.27 40.464 253.068C40.464 252.78 40.4693 252.492 40.48 252.204C40.5013 251.916 40.496 251.622 40.464 251.324C40.432 251.046 40.368 250.774 40.272 250.508C40.1547 250.22 39.984 249.964 39.76 249.74C39.5467 249.516 39.2907 249.345 38.992 249.228C38.704 249.1 38.4053 249.036 38.096 249.036H38V250.028H38.096C38.288 250.028 38.4693 250.065 38.64 250.14C38.8213 250.214 38.976 250.321 39.104 250.46C39.232 250.588 39.3333 250.742 39.408 250.924C39.4933 251.105 39.536 251.297 39.536 251.5C39.5253 251.745 39.52 251.969 39.52 252.172C39.5093 252.396 39.504 252.62 39.504 252.844C39.5147 253.057 39.536 253.27 39.568 253.484C39.6 253.686 39.6587 253.884 39.744 254.076C39.904 254.46 40.1493 254.78 40.48 255.036C40.1493 255.292 39.904 255.612 39.744 255.996C39.6587 256.188 39.6 256.39 39.568 256.604C39.536 256.806 39.5147 257.02 39.504 257.244C39.504 257.457 39.5093 257.676 39.52 257.9C39.5307 258.124 39.536 258.348 39.536 258.572C39.536 258.87 39.456 259.142 39.296 259.388C39.136 259.633 38.9227 259.814 38.656 259.932C38.4747 260.017 38.288 260.06 38.096 260.06H38V260.044Z" fill="#CBCB41"/>
<rect x="52" y="251.536" width="58" height="7" rx="3.5" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<path d="M33.5 284.156C33.3933 284.102 33.3133 284.022 33.26 283.916C33.22 283.876 33.1933 283.856 33.18 283.856C33.18 283.856 33.1667 283.876 33.14 283.916C33.1133 283.956 33.0867 284.016 33.06 284.096C33.0467 284.176 33.0267 284.242 33 284.296C32.9067 284.602 32.7733 284.809 32.6 284.916C32.4267 285.022 32.1867 285.042 31.88 284.976C31.8 284.976 31.6733 284.936 31.5 284.856C31.2467 284.722 31.1867 284.536 31.32 284.296C31.32 284.269 31.3267 284.236 31.34 284.196C31.3667 284.156 31.38 284.122 31.38 284.096C31.1533 284.096 31.0067 283.996 30.94 283.796C30.78 283.369 30.7267 282.996 30.78 282.676C30.8333 282.342 31.0133 282.022 31.32 281.716L31.36 281.636C31.4133 281.542 31.44 281.469 31.44 281.416C31.44 280.962 31.4867 280.569 31.58 280.236C31.6867 279.836 31.8667 279.476 32.12 279.156C32.3333 278.876 32.5867 278.649 32.88 278.476C32.9333 278.449 32.96 278.416 32.96 278.376C32.9733 278.336 32.9667 278.282 32.94 278.216C32.7133 277.936 32.5667 277.602 32.5 277.216C32.4733 277.109 32.48 276.989 32.52 276.856C32.5467 276.762 32.6 276.636 32.68 276.476L32.76 276.296C32.84 276.202 32.9 276.156 32.94 276.156C33.06 276.129 33.22 276.042 33.42 275.896L33.56 275.796C33.9733 275.369 34.4933 275.156 35.12 275.156C35.1867 275.156 35.2333 275.149 35.26 275.136C35.3 275.109 35.32 275.076 35.32 275.036C35.3733 274.782 35.4933 274.536 35.68 274.296L35.88 274.096C35.9467 274.029 36.0133 274.002 36.08 274.016C36.16 274.016 36.22 274.062 36.26 274.156C36.34 274.302 36.44 274.509 36.56 274.776L36.68 275.036C36.7467 275.142 36.8133 275.162 36.88 275.096C37.04 275.029 37.1467 274.996 37.2 274.996C37.2533 274.982 37.2933 274.996 37.32 275.036C37.3467 275.076 37.3867 275.182 37.44 275.356C37.76 276.689 37.5533 277.936 36.82 279.096C36.7933 279.136 36.7467 279.202 36.68 279.296C36.6267 279.376 36.5867 279.442 36.56 279.496C36.5333 279.549 36.52 279.596 36.52 279.636C36.5333 279.676 36.5667 279.729 36.62 279.796C36.9 280.036 37.1333 280.322 37.32 280.656C37.5067 280.989 37.6267 281.342 37.68 281.716C37.7467 282.182 37.7467 282.642 37.68 283.096C37.6533 283.216 37.6533 283.289 37.68 283.316C37.7067 283.329 37.7733 283.322 37.88 283.296C38.3467 283.149 38.76 282.956 39.12 282.716L39.28 282.636C39.52 282.489 39.7067 282.389 39.84 282.336C40.04 282.242 40.24 282.182 40.44 282.156H40.62C40.7533 282.129 40.86 282.136 40.94 282.176C41.0333 282.202 41.1067 282.256 41.16 282.336C41.2267 282.416 41.26 282.502 41.26 282.596C41.26 282.782 41.1533 282.909 40.94 282.976C40.3933 283.082 39.8267 283.349 39.24 283.776C38.6667 284.189 37.98 284.502 37.18 284.716C37.1533 284.716 37.1133 284.729 37.06 284.756C37.0067 284.782 36.9667 284.816 36.94 284.856C36.8467 284.922 36.7467 284.969 36.64 284.996C36.5733 285.022 36.4667 285.042 36.32 285.056L36.12 285.096L35.96 285.116C35.16 285.182 34.5467 285.216 34.12 285.216C33.88 285.216 33.6733 285.196 33.5 285.156C33.26 285.076 33.1133 284.956 33.06 284.796C32.9933 284.542 33.06 284.349 33.26 284.216C33.3 284.216 33.3467 284.209 33.4 284.196C33.4533 284.169 33.4867 284.156 33.5 284.156Z" fill="#519ABA"/>
<rect x="52" y="275.536" width="71" height="7" rx="3.5" fill="var(--vscode-foreground)" fill-opacity="0.25"/>
<rect x="13" y="11" width="212.268" height="344" stroke="var(--vscode-focusBorder)" stroke-width="2" stroke-dasharray="6 4"/>
</g>
<g filter="url(#filter1_d)">
<path d="M172.134 246.5C172.134 244.291 173.925 242.5 176.134 242.5H324.134C326.343 242.5 328.134 244.291 328.134 246.5V291.5C328.134 293.709 326.343 295.5 324.134 295.5H176.134C173.925 295.5 172.134 293.709 172.134 291.5V246.5Z" fill="var(--vscode-debugToolBar-background)"/>
<path d="M209.878 261.488H199.702L198.43 260.216L197.902 260H190.39L189.646 260.744V277.256L190.39 278H209.902L210.646 277.256V262.256L209.878 261.488ZM209.11 274.232V276.488H191.11V267.488H197.854L198.382 267.272L199.678 265.976H209.134L209.11 274.232ZM209.11 264.488H199.366L198.838 264.728L197.566 266.024H191.134V261.512H197.566L198.838 262.784L199.39 263.024H209.134L209.11 264.488Z" fill="var(--vscode-foreground)"/>
<path d="M223.962 277.5H226.482V269.684C226.482 268.02 227.642 266.719 229.177 266.719C230.677 266.719 231.638 267.621 231.638 269.074V277.5H234.111V269.449C234.111 267.914 235.177 266.719 236.806 266.719C238.458 266.719 239.279 267.574 239.279 269.332V277.5H241.798V268.723C241.798 266.074 240.298 264.527 237.72 264.527C235.951 264.527 234.486 265.43 233.841 266.801H233.642C233.08 265.43 231.873 264.527 230.126 264.527C228.427 264.527 227.138 265.371 226.576 266.801H226.388V264.773H223.962V277.5ZM246.181 282.117C248.783 282.117 249.99 281.145 251.08 278.086L255.837 264.773H253.166L249.978 274.969H249.779L246.58 264.773H243.837L248.455 277.535L248.267 278.191C247.833 279.539 247.154 280.043 245.958 280.043C245.724 280.043 245.337 280.031 245.138 279.996V282.059C245.373 282.094 245.97 282.117 246.181 282.117ZM265.845 271.852V269.52H258.158V271.852H265.845ZM273.076 277.711C274.751 277.711 276.146 276.984 276.908 275.695H277.107V277.5H279.533V268.793C279.533 266.121 277.728 264.527 274.529 264.527C271.634 264.527 269.572 265.922 269.314 268.066H271.751C272.033 267.141 273.005 266.613 274.412 266.613C276.134 266.613 277.025 267.398 277.025 268.793V269.906L273.568 270.117C270.533 270.305 268.822 271.629 268.822 273.914C268.822 276.234 270.615 277.711 273.076 277.711ZM273.72 275.684C272.349 275.684 271.353 274.992 271.353 273.809C271.353 272.648 272.15 272.027 273.908 271.91L277.025 271.699V272.801C277.025 274.441 275.619 275.684 273.72 275.684ZM289.74 264.551C288.005 264.551 286.505 265.43 285.732 266.883H285.544V264.773H283.119V281.742H285.638V275.578H285.837C286.505 276.926 287.947 277.711 289.763 277.711C292.986 277.711 295.037 275.156 295.037 271.137C295.037 267.094 292.986 264.551 289.74 264.551ZM289.025 275.555C286.916 275.555 285.591 273.855 285.591 271.137C285.591 268.406 286.916 266.707 289.037 266.707C291.169 266.707 292.447 268.371 292.447 271.137C292.447 273.902 291.169 275.555 289.025 275.555ZM304.693 264.551C302.958 264.551 301.458 265.43 300.685 266.883H300.498V264.773H298.072V281.742H300.591V275.578H300.791C301.458 276.926 302.9 277.711 304.716 277.711C307.939 277.711 309.99 275.156 309.99 271.137C309.99 267.094 307.939 264.551 304.693 264.551ZM303.978 275.555C301.869 275.555 300.544 273.855 300.544 271.137C300.544 268.406 301.869 266.707 303.99 266.707C306.123 266.707 307.4 268.371 307.4 271.137C307.4 273.902 306.123 275.555 303.978 275.555Z" fill="var(--vscode-foreground)"/>
</g>
<g filter="url(#filter2_d)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M210.634 310C210.634 314.97 214.664 319 219.634 319C224.604 319 228.634 314.97 228.634 310C228.634 305.029 224.604 301 219.634 301C214.664 301 210.634 305.029 210.634 310Z" fill="var(--vscode-button-background)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M220.634 309V306C220.634 305.448 220.186 305 219.634 305C219.082 305 218.634 305.448 218.634 306V309H215.634C215.082 309 214.634 309.448 214.634 310C214.634 310.552 215.082 311 215.634 311H218.634V314C218.634 314.552 219.082 315 219.634 315C220.186 315 220.634 314.552 220.634 314V311H223.634C224.186 311 224.634 310.552 224.634 310C224.634 309.448 224.186 309 223.634 309H220.634Z" fill="var(--vscode-button-foreground)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M209.634 303.5V287.5L221.234 299.108H214.188L214.037 299.232L209.634 303.5Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M210.634 289.8V301L213.603 298.131L213.763 297.992L218.799 298L210.634 289.8Z" fill="black"/>
</g>
<defs>
<filter id="filter0_d" x="0" y="0" width="238.268" height="370" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="2"/>
<feGaussianBlur stdDeviation="6"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<filter id="filter1_d" x="160.134" y="232.5" width="180" height="77" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="2"/>
<feGaussianBlur stdDeviation="6"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<filter id="filter2_d" x="207.834" y="286.7" width="22.6" height="35.1" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="1"/>
<feGaussianBlur stdDeviation="0.9"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.65 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<clipPath id="clip0">
<rect width="198" height="318" fill="white" transform="translate(212 24)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 32 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 17 KiB

View file

@ -0,0 +1,48 @@
<svg viewBox="0 0 520 252" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="520" height="252" fill="var(--vscode-editor-background, #1e1e1e)"/>
<rect width="520" height="39" fill="var(--vscode-editorGroupHeader-tabsBackground, #252526)"/>
<g clip-path="url(#clip0)">
<rect width="115.654" height="39.2998" fill="var(--vscode-tab-activeBackground, #1e1e1e)"/>
<rect x="13.4741" y="15.7199" width="88.7052" height="7.85995" rx="3.92998" fill="var(--vscode-separatorBackground, #454545)"/>
</g>
<g filter="url(#filter0_d)">
<rect width="425" height="216" transform="translate(48 20)" fill="var(--vscode-quickInput-background, #252526)"/>
<rect x="55.5" y="27.5" width="410" height="25" fill="var(--vscode-input-background, #3c3c3c)"/>
<path d="M62.9009 45.1143C63.8086 45.1143 64.564 44.7207 64.9766 44.0225H65.0845V45H66.3984V40.2837C66.3984 38.8364 65.4209 37.9731 63.688 37.9731C62.1201 37.9731 61.0029 38.7285 60.8633 39.8901H62.1836C62.3359 39.3887 62.8628 39.103 63.6245 39.103C64.5576 39.103 65.04 39.5283 65.04 40.2837V40.8867L63.1675 41.001C61.5234 41.1025 60.5967 41.8198 60.5967 43.0576C60.5967 44.3145 61.5679 45.1143 62.9009 45.1143ZM63.25 44.0161C62.5073 44.0161 61.9678 43.6416 61.9678 43.0005C61.9678 42.3721 62.3994 42.0356 63.3516 41.9722L65.04 41.8579V42.4546C65.04 43.3433 64.2783 44.0161 63.25 44.0161ZM71.9272 37.9858C70.9878 37.9858 70.1753 38.4619 69.7563 39.249H69.6548V38.1064H68.3408V47.2979H69.7056V43.959H69.8135C70.1753 44.689 70.9561 45.1143 71.9399 45.1143C73.6855 45.1143 74.7964 43.7305 74.7964 41.5532C74.7964 39.3633 73.6855 37.9858 71.9272 37.9858ZM71.54 43.9463C70.3975 43.9463 69.6802 43.0259 69.6802 41.5532C69.6802 40.0742 70.3975 39.1538 71.5464 39.1538C72.7017 39.1538 73.3936 40.0552 73.3936 41.5532C73.3936 43.0513 72.7017 43.9463 71.54 43.9463ZM80.0269 37.9858C79.0874 37.9858 78.2749 38.4619 77.856 39.249H77.7544V38.1064H76.4404V47.2979H77.8052V43.959H77.9131C78.2749 44.689 79.0557 45.1143 80.0396 45.1143C81.7852 45.1143 82.896 43.7305 82.896 41.5532C82.896 39.3633 81.7852 37.9858 80.0269 37.9858ZM79.6396 43.9463C78.4971 43.9463 77.7798 43.0259 77.7798 41.5532C77.7798 40.0742 78.4971 39.1538 79.646 39.1538C80.8013 39.1538 81.4932 40.0552 81.4932 41.5532C81.4932 43.0513 80.8013 43.9463 79.6396 43.9463Z" fill="var(--vscode-input-foreground, var(--vscode-foreground)"/>
<rect x="55.5" y="27.5" width="410" height="25" stroke="var(--vscode-focusBorder, #0078d4)"/>
<rect width="425" height="28" transform="translate(48 60)" fill="var(--vscode-quickInputList-focusBackground, #062F4A)"/>
<path d="M69.76 71.38H67.62V77.74H66.06V71.38H63.94V70.24H69.68V71.38H69.76ZM74.56 75.82C74.56 75.6733 74.5333 75.5467 74.48 75.44C74.4267 75.3333 74.3533 75.2267 74.26 75.12C74.18 75.0533 74.06 74.98 73.9 74.9C73.7933 74.86 73.6067 74.7867 73.34 74.68L73.18 74.62C72.3133 74.3667 71.6267 74.0533 71.12 73.68C70.6667 73.2933 70.44 72.8133 70.44 72.24C70.44 71.6133 70.7133 71.1133 71.26 70.74C71.7533 70.3667 72.4067 70.18 73.22 70.18C74.0467 70.18 74.7267 70.4133 75.26 70.88C75.7533 71.32 76 71.86 76 72.5H74.56C74.56 72.3133 74.5267 72.1533 74.46 72.02C74.4067 71.8867 74.3133 71.7533 74.18 71.62C73.9133 71.42 73.58 71.32 73.18 71.32C72.78 71.32 72.4733 71.4 72.26 71.56C72.0467 71.72 71.94 71.9467 71.94 72.24C71.94 72.48 72.0667 72.6933 72.32 72.88C72.4267 72.96 72.5867 73.04 72.8 73.12C72.96 73.1867 73.2133 73.2733 73.56 73.38C74.3733 73.62 74.9933 73.9267 75.42 74.3C75.8467 74.66 76.06 75.1667 76.06 75.82C76.06 76.14 75.9933 76.4333 75.86 76.7C75.74 76.9533 75.56 77.16 75.32 77.32C74.8133 77.6933 74.1467 77.88 73.32 77.88C72.44 77.88 71.7267 77.6667 71.18 77.24C70.5533 76.7467 70.2667 76.1467 70.32 75.44H71.82C71.82 75.8667 71.9667 76.2 72.26 76.44C72.38 76.5333 72.54 76.6067 72.74 76.66C72.94 76.7133 73.1533 76.74 73.38 76.74C73.8333 76.74 74.1467 76.66 74.32 76.5C74.48 76.2467 74.56 76.02 74.56 75.82Z" fill="#519ABA"/>
<path d="M93.0396 78H94.7979L91.5415 68.8403H89.7007L86.4507 78H88.1074L88.8945 75.6323H92.2651L93.0396 78ZM90.5322 70.5605H90.6401L91.8843 74.3691H89.2754L90.5322 70.5605ZM99.9902 70.9478C99.0381 70.9478 98.2319 71.4238 97.832 72.2109H97.7241V71.062H96.207V80.3042H97.7812V76.9463H97.8892C98.2446 77.6826 99.0127 78.1143 100.009 78.1143C101.761 78.1143 102.853 76.7368 102.853 74.5342C102.853 72.3125 101.749 70.9478 99.9902 70.9478ZM99.4951 76.8066C98.4224 76.8066 97.7559 75.937 97.7495 74.5342C97.7559 73.1313 98.4287 72.2617 99.5015 72.2617C100.581 72.2617 101.234 73.1123 101.234 74.5342C101.234 75.9561 100.587 76.8066 99.4951 76.8066ZM108.217 70.9478C107.265 70.9478 106.458 71.4238 106.059 72.2109H105.951V71.062H104.434V80.3042H106.008V76.9463H106.116C106.471 77.6826 107.239 78.1143 108.236 78.1143C109.988 78.1143 111.08 76.7368 111.08 74.5342C111.08 72.3125 109.975 70.9478 108.217 70.9478ZM107.722 76.8066C106.649 76.8066 105.982 75.937 105.976 74.5342C105.982 73.1313 106.655 72.2617 107.728 72.2617C108.807 72.2617 109.461 73.1123 109.461 74.5342C109.461 75.9561 108.813 76.8066 107.722 76.8066Z" fill="var(--vscode-pickerGroup-foreground)"/>
<path d="M113.746 78.0952C114.285 78.0952 114.679 77.6953 114.679 77.1812C114.679 76.667 114.285 76.2671 113.746 76.2671C113.212 76.2671 112.812 76.667 112.812 77.1812C112.812 77.6953 113.212 78.0952 113.746 78.0952ZM117.053 69.3672V71.1255H115.955V72.2173H117.053V76.1846C117.053 77.5112 117.656 78.0444 119.173 78.0444C119.439 78.0444 119.693 78.0127 119.916 77.9746V76.8892C119.725 76.9082 119.604 76.9209 119.395 76.9209C118.716 76.9209 118.417 76.5972 118.417 75.8545V72.2173H119.916V71.1255H118.417V69.3672H117.053ZM121.261 73.0361C121.261 74.0581 121.871 74.6421 123.185 74.9468L124.391 75.2324C125.083 75.3975 125.406 75.6768 125.406 76.1084C125.406 76.6733 124.803 77.0669 123.953 77.0669C123.127 77.0669 122.62 76.7305 122.448 76.1909H121.083C121.204 77.3906 122.277 78.1333 123.921 78.1333C125.571 78.1333 126.784 77.2637 126.784 75.9814C126.784 74.9785 126.168 74.4136 124.854 74.1089L123.705 73.8423C122.956 73.6646 122.607 73.3979 122.607 72.9727C122.607 72.4141 123.185 72.0396 123.946 72.0396C124.721 72.0396 125.216 72.376 125.343 72.8901H126.65C126.517 71.6968 125.501 70.9731 123.946 70.9731C122.385 70.9731 121.261 71.8364 121.261 73.0361ZM130.84 75.5308L132.351 78.0127H133.918L131.614 74.5278L133.893 71.1191H132.37L130.897 73.582H130.789L129.304 71.1191H127.71L130.021 74.5786L127.729 78.0127H129.228L130.738 75.5308H130.84Z" fill="var(--vscode-quickInputList-focusForeground, #E3E3E3)"/>
<path d="M66.44 106.56L66.94 104.06H65.38V102.74H67.26L67.56 101.18H65.94V99.88H67.88L68.38 97.44H70.12L69.62 99.88H71.38L71.88 97.44H73.62L73.12 99.88H74.68V101.18H72.88L72.5 102.74H74.12V104.06H72.26L71.76 106.56H70L70.5 104.06H68.76L68.26 106.56H66.44ZM70.76 102.76L71.06 101.18H69.32L69 102.76H70.76Z" fill="#519ABA"/>
<path d="M92.9951 106H95.0708L91.8906 96.8403H89.6372L86.457 106H88.3804L89.085 103.778H92.3032L92.9951 106ZM90.6465 98.7002H90.7607L91.897 102.344H89.4976L90.6465 98.7002ZM100.492 98.897C99.5269 98.897 98.7334 99.373 98.3525 100.16H98.2383V99.0112H96.4482V108.317H98.2954V104.934H98.4097C98.7524 105.67 99.5205 106.108 100.523 106.108C102.275 106.108 103.348 104.75 103.348 102.502C103.348 100.249 102.263 98.897 100.492 98.897ZM99.8633 104.616C98.8857 104.616 98.2764 103.816 98.2764 102.509C98.2764 101.201 98.8857 100.395 99.8696 100.395C100.854 100.395 101.45 101.188 101.45 102.502C101.45 103.823 100.86 104.616 99.8633 104.616ZM108.896 98.897C107.931 98.897 107.138 99.373 106.757 100.16H106.643V99.0112H104.853V108.317H106.7V104.934H106.814C107.157 105.67 107.925 106.108 108.928 106.108C110.68 106.108 111.752 104.75 111.752 102.502C111.752 100.249 110.667 98.897 108.896 98.897ZM108.268 104.616C107.29 104.616 106.681 103.816 106.681 102.509C106.681 101.201 107.29 100.395 108.274 100.395C109.258 100.395 109.854 101.188 109.854 102.502C109.854 103.823 109.264 104.616 108.268 104.616Z" fill="var(--vscode-pickerGroup-foreground)"/>
<path d="M121.02 106V96.8403H119.604V100.712H114.901V96.8403H113.479V106H114.901V101.944H119.604V106H121.02ZM127.691 104.153C127.438 104.711 126.873 105.016 126.047 105.016C124.956 105.016 124.251 104.229 124.207 102.979V102.915H129.088V102.445C129.088 100.287 127.926 98.9731 126.003 98.9731C124.054 98.9731 122.816 100.376 122.816 102.566C122.816 104.769 124.029 106.133 126.009 106.133C127.59 106.133 128.707 105.372 129.005 104.153H127.691ZM125.997 100.084C127.006 100.084 127.666 100.814 127.698 101.931H124.207C124.283 100.82 124.987 100.084 125.997 100.084ZM132.636 106.114C133.544 106.114 134.299 105.721 134.712 105.022H134.82V106H136.134V101.284C136.134 99.8364 135.156 98.9731 133.423 98.9731C131.855 98.9731 130.738 99.7285 130.599 100.89H131.919C132.071 100.389 132.598 100.103 133.36 100.103C134.293 100.103 134.775 100.528 134.775 101.284V101.887L132.903 102.001C131.259 102.103 130.332 102.82 130.332 104.058C130.332 105.314 131.303 106.114 132.636 106.114ZM132.985 105.016C132.243 105.016 131.703 104.642 131.703 104C131.703 103.372 132.135 103.036 133.087 102.972L134.775 102.858V103.455C134.775 104.343 134.014 105.016 132.985 105.016ZM140.603 106.114C141.555 106.114 142.361 105.664 142.773 104.908H142.881V106H144.189V96.4023H142.824V100.198H142.723C142.348 99.4429 141.548 98.9858 140.603 98.9858C138.857 98.9858 137.733 100.376 137.733 102.547C137.733 104.73 138.844 106.114 140.603 106.114ZM140.99 100.154C142.132 100.154 142.85 101.081 142.85 102.553C142.85 104.039 142.139 104.946 140.99 104.946C139.834 104.946 139.143 104.051 139.143 102.553C139.143 101.062 139.841 100.154 140.99 100.154ZM150.771 104.153C150.518 104.711 149.953 105.016 149.127 105.016C148.036 105.016 147.331 104.229 147.287 102.979V102.915H152.168V102.445C152.168 100.287 151.006 98.9731 149.083 98.9731C147.134 98.9731 145.896 100.376 145.896 102.566C145.896 104.769 147.109 106.133 149.089 106.133C150.67 106.133 151.787 105.372 152.085 104.153H150.771ZM149.077 100.084C150.086 100.084 150.746 100.814 150.778 101.931H147.287C147.363 100.82 148.067 100.084 149.077 100.084ZM153.806 106H155.17V101.88C155.17 100.909 155.9 100.243 156.935 100.243C157.176 100.243 157.583 100.287 157.697 100.319V99.0366C157.551 99.0049 157.291 98.9858 157.087 98.9858C156.186 98.9858 155.418 99.4746 155.221 100.154H155.12V99.1064H153.806V106ZM159.144 106.095C159.684 106.095 160.077 105.695 160.077 105.181C160.077 104.667 159.684 104.267 159.144 104.267C158.611 104.267 158.211 104.667 158.211 105.181C158.211 105.695 158.611 106.095 159.144 106.095ZM167.783 101.322C167.605 99.9824 166.558 98.9731 164.825 98.9731C162.813 98.9731 161.588 100.338 161.588 102.528C161.588 104.762 162.819 106.133 164.832 106.133C166.539 106.133 167.605 105.175 167.783 103.816H166.457C166.279 104.565 165.688 104.972 164.825 104.972C163.689 104.972 162.984 104.051 162.984 102.528C162.984 101.036 163.683 100.135 164.825 100.135C165.739 100.135 166.298 100.649 166.457 101.322H167.783ZM169.186 101.036C169.186 102.058 169.795 102.642 171.109 102.947L172.315 103.232C173.007 103.397 173.331 103.677 173.331 104.108C173.331 104.673 172.728 105.067 171.877 105.067C171.052 105.067 170.544 104.73 170.373 104.191H169.008C169.129 105.391 170.202 106.133 171.846 106.133C173.496 106.133 174.708 105.264 174.708 103.981C174.708 102.979 174.093 102.414 172.779 102.109L171.63 101.842C170.881 101.665 170.532 101.398 170.532 100.973C170.532 100.414 171.109 100.04 171.871 100.04C172.646 100.04 173.141 100.376 173.268 100.89H174.575C174.442 99.6968 173.426 98.9731 171.871 98.9731C170.31 98.9731 169.186 99.8364 169.186 101.036ZM176.067 101.036C176.067 102.058 176.676 102.642 177.99 102.947L179.196 103.232C179.888 103.397 180.212 103.677 180.212 104.108C180.212 104.673 179.609 105.067 178.758 105.067C177.933 105.067 177.425 104.73 177.254 104.191H175.889C176.01 105.391 177.083 106.133 178.727 106.133C180.377 106.133 181.589 105.264 181.589 103.981C181.589 102.979 180.974 102.414 179.66 102.109L178.511 101.842C177.762 101.665 177.413 101.398 177.413 100.973C177.413 100.414 177.99 100.04 178.752 100.04C179.526 100.04 180.021 100.376 180.148 100.89H181.456C181.323 99.6968 180.307 98.9731 178.752 98.9731C177.19 98.9731 176.067 99.8364 176.067 101.036Z" fill="var(--vscode-quickInput-foreground, #E3E3E3)"/>
<path d="M66.44 134.56L66.94 132.06H65.38V130.74H67.26L67.56 129.18H65.94V127.88H67.88L68.38 125.44H70.12L69.62 127.88H71.38L71.88 125.44H73.62L73.12 127.88H74.68V129.18H72.88L72.5 130.74H74.12V132.06H72.26L71.76 134.56H70L70.5 132.06H68.76L68.26 134.56H66.44ZM70.76 130.76L71.06 129.18H69.32L69 130.76H70.76Z" fill="#519ABA"/>
<path d="M94.9629 130.395V129.258H91.2051V130.407H93.5664V130.61C93.5537 132.013 92.5254 132.959 91.0273 132.959C89.3071 132.959 88.228 131.607 88.228 129.411C88.228 127.246 89.3008 125.881 90.9956 125.881C92.2461 125.881 93.1157 126.497 93.4712 127.633H94.8994C94.5884 125.786 93.0776 124.618 90.9956 124.618C88.4312 124.618 86.7744 126.503 86.7744 129.417C86.7744 132.369 88.4121 134.222 91.0083 134.222C93.4077 134.222 94.9629 132.718 94.9629 130.395ZM118.811 132.775H114.418V129.925H118.576V128.744H114.418V126.065H118.811V124.84H112.997V134H118.811V132.775ZM123.235 134.114C124.188 134.114 124.994 133.664 125.406 132.908H125.514V134H126.822V124.402H125.457V128.198H125.355C124.981 127.443 124.181 126.986 123.235 126.986C121.49 126.986 120.366 128.376 120.366 130.547C120.366 132.73 121.477 134.114 123.235 134.114ZM123.623 128.154C124.765 128.154 125.482 129.081 125.482 130.553C125.482 132.039 124.771 132.946 123.623 132.946C122.467 132.946 121.775 132.051 121.775 130.553C121.775 129.062 122.474 128.154 123.623 128.154ZM129.577 125.875C130.053 125.875 130.44 125.488 130.44 125.018C130.44 124.542 130.053 124.155 129.577 124.155C129.101 124.155 128.713 124.542 128.713 125.018C128.713 125.488 129.101 125.875 129.577 125.875ZM128.897 134H130.256V127.106H128.897V134ZM132.744 125.367V127.125H131.646V128.217H132.744V132.185C132.744 133.511 133.347 134.044 134.864 134.044C135.131 134.044 135.385 134.013 135.607 133.975V132.889C135.417 132.908 135.296 132.921 135.086 132.921C134.407 132.921 134.109 132.597 134.109 131.854V128.217H135.607V127.125H134.109V125.367H132.744ZM140.057 134.133C142.075 134.133 143.313 132.781 143.313 130.553C143.313 128.325 142.069 126.973 140.057 126.973C138.038 126.973 136.794 128.332 136.794 130.553C136.794 132.781 138.032 134.133 140.057 134.133ZM140.057 132.972C138.87 132.972 138.203 132.089 138.203 130.553C138.203 129.017 138.87 128.128 140.057 128.128C141.237 128.128 141.91 129.017 141.91 130.553C141.91 132.083 141.237 132.972 140.057 132.972ZM144.957 134H146.322V129.88C146.322 128.909 147.052 128.243 148.086 128.243C148.328 128.243 148.734 128.287 148.848 128.319V127.037C148.702 127.005 148.442 126.986 148.239 126.986C147.337 126.986 146.569 127.475 146.373 128.154H146.271V127.106H144.957V134ZM150.295 134.095C150.835 134.095 151.229 133.695 151.229 133.181C151.229 132.667 150.835 132.267 150.295 132.267C149.762 132.267 149.362 132.667 149.362 133.181C149.362 133.695 149.762 134.095 150.295 134.095ZM158.935 129.322C158.757 127.982 157.709 126.973 155.977 126.973C153.964 126.973 152.739 128.338 152.739 130.528C152.739 132.762 153.971 134.133 155.983 134.133C157.69 134.133 158.757 133.175 158.935 131.816H157.608C157.43 132.565 156.84 132.972 155.977 132.972C154.84 132.972 154.136 132.051 154.136 130.528C154.136 129.036 154.834 128.135 155.977 128.135C156.891 128.135 157.449 128.649 157.608 129.322H158.935ZM160.337 129.036C160.337 130.058 160.947 130.642 162.261 130.947L163.467 131.232C164.159 131.397 164.482 131.677 164.482 132.108C164.482 132.673 163.879 133.067 163.029 133.067C162.204 133.067 161.696 132.73 161.524 132.191H160.16C160.28 133.391 161.353 134.133 162.997 134.133C164.647 134.133 165.86 133.264 165.86 131.981C165.86 130.979 165.244 130.414 163.93 130.109L162.781 129.842C162.032 129.665 161.683 129.398 161.683 128.973C161.683 128.414 162.261 128.04 163.022 128.04C163.797 128.04 164.292 128.376 164.419 128.89H165.727C165.593 127.697 164.578 126.973 163.022 126.973C161.461 126.973 160.337 127.836 160.337 129.036ZM167.218 129.036C167.218 130.058 167.828 130.642 169.142 130.947L170.348 131.232C171.04 131.397 171.363 131.677 171.363 132.108C171.363 132.673 170.76 133.067 169.91 133.067C169.084 133.067 168.577 132.73 168.405 132.191H167.041C167.161 133.391 168.234 134.133 169.878 134.133C171.528 134.133 172.741 133.264 172.741 131.981C172.741 130.979 172.125 130.414 170.811 130.109L169.662 129.842C168.913 129.665 168.564 129.398 168.564 128.973C168.564 128.414 169.142 128.04 169.903 128.04C170.678 128.04 171.173 128.376 171.3 128.89H172.607C172.474 127.697 171.458 126.973 169.903 126.973C168.342 126.973 167.218 127.836 167.218 129.036Z" fill="var(--vscode-quickInput-foreground, #E3E3E3)"/>
<path d="M98.6191 134.108C99.5269 134.108 100.289 133.721 100.65 133.073H100.765V134H102.555V129.227C102.555 127.735 101.507 126.859 99.6538 126.859C97.8955 126.859 96.7085 127.665 96.5879 128.947H98.2891C98.4414 128.509 98.8857 128.274 99.5522 128.274C100.314 128.274 100.733 128.624 100.733 129.227V129.804L99.0381 129.906C97.2988 130.007 96.3276 130.744 96.3276 132.007C96.3276 133.283 97.2734 134.108 98.6191 134.108ZM99.2285 132.756C98.5874 132.756 98.1367 132.432 98.1367 131.893C98.1367 131.378 98.5239 131.08 99.3174 131.029L100.733 130.934V131.455C100.733 132.191 100.085 132.756 99.2285 132.756ZM108.414 126.897C107.449 126.897 106.655 127.373 106.274 128.16H106.16V127.011H104.37V136.317H106.217V132.934H106.332C106.674 133.67 107.442 134.108 108.445 134.108C110.197 134.108 111.27 132.75 111.27 130.502C111.27 128.249 110.185 126.897 108.414 126.897ZM107.785 132.616C106.808 132.616 106.198 131.816 106.198 130.509C106.198 129.201 106.808 128.395 107.792 128.395C108.775 128.395 109.372 129.188 109.372 130.502C109.372 131.823 108.782 132.616 107.785 132.616Z" fill="var(--vscode-pickerGroup-foreground)"/>
<path d="M65.08 152.38H74.92C75.12 152.38 75.2867 152.447 75.42 152.58C75.5533 152.713 75.62 152.88 75.62 153.08V162.92C75.62 163.12 75.5533 163.287 75.42 163.42C75.2867 163.553 75.12 163.62 74.92 163.62H65.08C64.88 163.62 64.7133 163.553 64.58 163.42C64.4467 163.287 64.38 163.12 64.38 162.92V153.08C64.38 152.88 64.4467 152.713 64.58 152.58C64.7133 152.447 64.88 152.38 65.08 152.38ZM70.7 158.26V157.3H66.84V158.26H68.22V162.56H69.32V158.26H70.7ZM71.08 162.62C71.28 162.727 71.5 162.807 71.74 162.86C71.9933 162.9 72.2533 162.92 72.52 162.92C72.8 162.92 73.06 162.893 73.3 162.84C73.5533 162.787 73.7733 162.693 73.96 162.56C74.16 162.427 74.3133 162.26 74.42 162.06C74.5267 161.86 74.58 161.607 74.58 161.3C74.58 161.073 74.5467 160.88 74.48 160.72C74.4133 160.56 74.32 160.413 74.2 160.28C74.08 160.147 73.9333 160.027 73.76 159.92C73.6 159.813 73.4267 159.72 73.24 159.64C73.0933 159.573 72.96 159.513 72.84 159.46C72.7333 159.393 72.6333 159.333 72.54 159.28C72.46 159.213 72.3933 159.14 72.34 159.06C72.2867 158.98 72.26 158.9 72.26 158.82C72.26 158.727 72.28 158.647 72.32 158.58C72.3733 158.513 72.4333 158.46 72.5 158.42C72.58 158.367 72.6733 158.327 72.78 158.3C72.8867 158.273 73.0067 158.26 73.14 158.26C73.46 158.26 73.7667 158.333 74.06 158.48C74.1667 158.52 74.26 158.573 74.34 158.64V157.5C74.1533 157.433 73.9667 157.38 73.78 157.34C73.54 157.313 73.3 157.3 73.06 157.3C72.7933 157.3 72.5333 157.333 72.28 157.4C72.04 157.453 71.8267 157.547 71.64 157.68C71.4667 157.813 71.3267 157.98 71.22 158.18C71.1133 158.38 71.06 158.627 71.06 158.92C71.06 159.28 71.1533 159.587 71.34 159.84C71.54 160.093 71.84 160.307 72.24 160.48L72.68 160.68C72.8133 160.747 72.9267 160.82 73.02 160.9C73.1267 160.967 73.2067 161.047 73.26 161.14C73.3267 161.22 73.36 161.307 73.36 161.4C73.36 161.573 73.2867 161.707 73.14 161.8C73.0733 161.853 72.98 161.893 72.86 161.92C72.74 161.947 72.6133 161.96 72.48 161.96C72.2267 161.96 71.98 161.913 71.74 161.82C71.5 161.727 71.28 161.587 71.08 161.4V162.62Z" fill="#519ABA"/>
<rect x="119" y="155" width="97" height="6" rx="3" fill="var(--vscode-separatorBackground, #454545)"/>
<rect x="86" y="155" width="29" height="6" rx="3" fill="var(--vscode-pickerGroup-foreground)"/>
<path d="M68 180.976V180H67.904C67.5947 180 67.2907 180.064 66.992 180.192C66.704 180.309 66.448 180.48 66.224 180.704C66.0107 180.928 65.8453 181.184 65.728 181.472C65.632 181.739 65.568 182.016 65.536 182.304C65.504 182.592 65.4933 182.88 65.504 183.168C65.5253 183.456 65.536 183.744 65.536 184.032C65.536 184.235 65.4933 184.427 65.408 184.608C65.2587 184.971 65.0027 185.232 64.64 185.392C64.4693 185.467 64.288 185.504 64.096 185.504H64V186.496H64.096C64.288 186.496 64.4693 186.533 64.64 186.608C64.8213 186.693 64.976 186.8 65.104 186.928C65.232 187.067 65.3333 187.221 65.408 187.392V187.408C65.4933 187.579 65.536 187.765 65.536 187.968C65.536 188.256 65.5253 188.549 65.504 188.848C65.4933 189.136 65.504 189.424 65.536 189.712C65.568 189.989 65.632 190.261 65.728 190.528C65.8347 190.805 66 191.061 66.224 191.296C66.448 191.52 66.704 191.696 66.992 191.824C67.2907 191.941 67.5947 192 67.904 192H68V191.008H67.904C67.712 191.008 67.5253 190.971 67.344 190.896C67.1733 190.821 67.0187 190.715 66.88 190.576C66.752 190.437 66.6507 190.283 66.576 190.112C66.5013 189.931 66.464 189.739 66.464 189.536C66.464 189.291 66.4693 189.067 66.48 188.864C66.4907 188.64 66.4907 188.421 66.48 188.208C66.48 187.995 66.464 187.781 66.432 187.568C66.4 187.355 66.3413 187.152 66.256 186.96C66.096 186.576 65.8507 186.256 65.52 186C65.8507 185.744 66.096 185.424 66.256 185.04C66.3413 184.859 66.4 184.661 66.432 184.448C66.464 184.235 66.48 184.021 66.48 183.808C66.4907 183.584 66.4907 183.36 66.48 183.136C66.4693 182.912 66.464 182.688 66.464 182.464C66.464 182.165 66.544 181.893 66.704 181.648C66.864 181.403 67.0773 181.221 67.344 181.104C67.5253 181.019 67.712 180.976 67.904 180.976H68ZM72 191.008V192H72.096C72.4053 192 72.704 191.941 72.992 191.824C73.2907 191.696 73.552 191.52 73.776 191.296C74 191.061 74.1653 190.805 74.272 190.528C74.368 190.272 74.432 189.995 74.464 189.696C74.496 189.419 74.5013 189.136 74.48 188.848C74.4693 188.549 74.464 188.256 74.464 187.968C74.464 187.765 74.5067 187.573 74.592 187.392C74.7413 187.029 74.9973 186.768 75.36 186.608C75.5307 186.533 75.712 186.496 75.904 186.496H76V185.504H75.904C75.712 185.504 75.5307 185.467 75.36 185.392C75.1787 185.317 75.024 185.211 74.896 185.072C74.7573 184.933 74.656 184.779 74.592 184.608V184.592C74.5067 184.421 74.464 184.235 74.464 184.032C74.464 183.744 74.4693 183.456 74.48 183.168C74.5013 182.88 74.496 182.587 74.464 182.288C74.432 182.011 74.368 181.739 74.272 181.472C74.1547 181.184 73.984 180.928 73.76 180.704C73.5467 180.48 73.2907 180.309 72.992 180.192C72.704 180.064 72.4053 180 72.096 180H72V180.992H72.096C72.288 180.992 72.4693 181.029 72.64 181.104C72.8213 181.179 72.976 181.285 73.104 181.424C73.232 181.552 73.3333 181.707 73.408 181.888C73.4933 182.069 73.536 182.261 73.536 182.464C73.5253 182.709 73.52 182.933 73.52 183.136C73.5093 183.36 73.504 183.584 73.504 183.808C73.5147 184.021 73.536 184.235 73.568 184.448C73.6 184.651 73.6587 184.848 73.744 185.04C73.904 185.424 74.1493 185.744 74.48 186C74.1493 186.256 73.904 186.576 73.744 186.96C73.6587 187.152 73.6 187.355 73.568 187.568C73.536 187.771 73.5147 187.984 73.504 188.208C73.504 188.421 73.5093 188.64 73.52 188.864C73.5307 189.088 73.536 189.312 73.536 189.536C73.536 189.835 73.456 190.107 73.296 190.352C73.136 190.597 72.9227 190.779 72.656 190.896C72.4747 190.981 72.288 191.024 72.096 191.024H72V191.008Z" fill="#CBCB41"/>
<rect x="86" y="183" width="38" height="6" rx="3" fill="var(--vscode-separatorBackground, #454545)"/>
<rect x="161" y="183" width="105" height="6" rx="3" fill="var(--vscode-separatorBackground, #454545)"/>
<rect x="128" y="183" width="29" height="6" rx="3" fill="var(--vscode-pickerGroup-foreground)"/>
<path d="M67.5 219.12C67.3933 219.067 67.3133 218.987 67.26 218.88C67.22 218.84 67.1933 218.82 67.18 218.82C67.18 218.82 67.1667 218.84 67.14 218.88C67.1133 218.92 67.0867 218.98 67.06 219.06C67.0467 219.14 67.0267 219.207 67 219.26C66.9067 219.567 66.7733 219.773 66.6 219.88C66.4267 219.987 66.1867 220.007 65.88 219.94C65.8 219.94 65.6733 219.9 65.5 219.82C65.2467 219.687 65.1867 219.5 65.32 219.26C65.32 219.233 65.3267 219.2 65.34 219.16C65.3667 219.12 65.38 219.087 65.38 219.06C65.1533 219.06 65.0067 218.96 64.94 218.76C64.78 218.333 64.7267 217.96 64.78 217.64C64.8333 217.307 65.0133 216.987 65.32 216.68L65.36 216.6C65.4133 216.507 65.44 216.433 65.44 216.38C65.44 215.927 65.4867 215.533 65.58 215.2C65.6867 214.8 65.8667 214.44 66.12 214.12C66.3333 213.84 66.5867 213.613 66.88 213.44C66.9333 213.413 66.96 213.38 66.96 213.34C66.9733 213.3 66.9667 213.247 66.94 213.18C66.7133 212.9 66.5667 212.567 66.5 212.18C66.4733 212.073 66.48 211.953 66.52 211.82C66.5467 211.727 66.6 211.6 66.68 211.44L66.76 211.26C66.84 211.167 66.9 211.12 66.94 211.12C67.06 211.093 67.22 211.007 67.42 210.86L67.56 210.76C67.9733 210.333 68.4933 210.12 69.12 210.12C69.1867 210.12 69.2333 210.113 69.26 210.1C69.3 210.073 69.32 210.04 69.32 210C69.3733 209.747 69.4933 209.5 69.68 209.26L69.88 209.06C69.9467 208.993 70.0133 208.967 70.08 208.98C70.16 208.98 70.22 209.027 70.26 209.12C70.34 209.267 70.44 209.473 70.56 209.74L70.68 210C70.7467 210.107 70.8133 210.127 70.88 210.06C71.04 209.993 71.1467 209.96 71.2 209.96C71.2533 209.947 71.2933 209.96 71.32 210C71.3467 210.04 71.3867 210.147 71.44 210.32C71.76 211.653 71.5533 212.9 70.82 214.06C70.7933 214.1 70.7467 214.167 70.68 214.26C70.6267 214.34 70.5867 214.407 70.56 214.46C70.5333 214.513 70.52 214.56 70.52 214.6C70.5333 214.64 70.5667 214.693 70.62 214.76C70.9 215 71.1333 215.287 71.32 215.62C71.5067 215.953 71.6267 216.307 71.68 216.68C71.7467 217.147 71.7467 217.607 71.68 218.06C71.6533 218.18 71.6533 218.253 71.68 218.28C71.7067 218.293 71.7733 218.287 71.88 218.26C72.3467 218.113 72.76 217.92 73.12 217.68L73.28 217.6C73.52 217.453 73.7067 217.353 73.84 217.3C74.04 217.207 74.24 217.147 74.44 217.12H74.62C74.7533 217.093 74.86 217.1 74.94 217.14C75.0333 217.167 75.1067 217.22 75.16 217.3C75.2267 217.38 75.26 217.467 75.26 217.56C75.26 217.747 75.1533 217.873 74.94 217.94C74.3933 218.047 73.8267 218.313 73.24 218.74C72.6667 219.153 71.98 219.467 71.18 219.68C71.1533 219.68 71.1133 219.693 71.06 219.72C71.0067 219.747 70.9667 219.78 70.94 219.82C70.8467 219.887 70.7467 219.933 70.64 219.96C70.5733 219.987 70.4667 220.007 70.32 220.02L70.12 220.06L69.96 220.08C69.16 220.147 68.5467 220.18 68.12 220.18C67.88 220.18 67.6733 220.16 67.5 220.12C67.26 220.04 67.1133 219.92 67.06 219.76C66.9933 219.507 67.06 219.313 67.26 219.18C67.3 219.18 67.3467 219.173 67.4 219.16C67.4533 219.133 67.4867 219.12 67.5 219.12Z" fill="#519ABA"/>
<rect x="86" y="211" width="26" height="6" rx="3" fill="var(--vscode-pickerGroup-foreground)"/>
<rect x="116" y="211" width="164" height="6" rx="3" fill="var(--vscode-separatorBackground, #454545)"/>
</g>
<defs>
<filter id="filter0_d" x="36" y="10" width="449" height="240" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="2"/>
<feGaussianBlur stdDeviation="6"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<clipPath id="clip0">
<rect width="115.654" height="39.2998" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 27 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 58 KiB

View file

@ -0,0 +1,148 @@
<svg viewBox="0 0 599 200" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="276.376" height="172.813" rx="2.4955" fill="#333333"/>
<g clip-path="url(#clip0)">
<rect x="4.99121" y="4.99097" width="266.394" height="162.831" rx="1.24775" fill="var(--vscode-editor-background)"/>
<rect width="266.394" height="18.7162" transform="translate(4.99121 4.99097)" fill="var(--vscode-editor-background)"/>
<g filter="url(#filter0_d)">
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="11" y="10" width="10" height="9">
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.0476 18.6567C18.1852 18.7103 18.342 18.7069 18.4809 18.6401L20.2791 17.7748C20.4681 17.6839 20.5882 17.4926 20.5882 17.2828V11.4157C20.5882 11.2059 20.4681 11.0147 20.2791 10.9237L18.4809 10.0584C18.2987 9.97075 18.0854 9.99223 17.9255 10.1085C17.9026 10.1251 17.8809 10.1436 17.8604 10.1641L14.4179 13.3047L12.9185 12.1665C12.7789 12.0606 12.5836 12.0692 12.454 12.1872L11.9731 12.6246C11.8145 12.7689 11.8143 13.0184 11.9727 13.1629L13.2731 14.3492L11.9727 15.5356C11.8143 15.6801 11.8145 15.9296 11.9731 16.0738L12.454 16.5113C12.5836 16.6292 12.7789 16.6379 12.9185 16.532L14.4179 15.3937L17.8604 18.5344C17.9149 18.5889 17.9788 18.6299 18.0476 18.6567ZM18.406 12.3665L15.7939 14.3492L18.406 16.332V12.3665Z" fill="white"/>
</mask>
<g mask="url(#mask0)">
<path d="M20.2791 10.925L18.4795 10.0585C18.2712 9.95822 18.0222 10.0005 17.8587 10.164L11.9674 15.5355C11.8089 15.68 11.8091 15.9295 11.9678 16.0738L12.449 16.5112C12.5787 16.6292 12.7741 16.6378 12.9137 16.5319L20.0083 11.1498C20.2463 10.9692 20.5882 11.139 20.5882 11.4377V11.4169C20.5882 11.2072 20.468 11.016 20.2791 10.925Z" fill="#0065A9"/>
<g filter="url(#filter1_d)">
<path d="M20.2791 17.7734L18.4795 18.6399C18.2712 18.7402 18.0222 18.6979 17.8587 18.5344L11.9674 13.1629C11.8089 13.0184 11.8091 12.7689 11.9678 12.6247L12.449 12.1872C12.5787 12.0692 12.7741 12.0606 12.9137 12.1665L20.0083 17.5486C20.2463 17.7292 20.5882 17.5594 20.5882 17.2607V17.2816C20.5882 17.4913 20.468 17.6824 20.2791 17.7734Z" fill="#007ACC"/>
</g>
<g filter="url(#filter2_d)">
<path d="M18.4797 18.6401C18.2713 18.7403 18.0224 18.6979 17.8589 18.5344C18.0603 18.7358 18.4048 18.5932 18.4048 18.3083V10.3902C18.4048 10.1053 18.0603 9.96264 17.8589 10.1641C18.0224 10.0006 18.2713 9.95822 18.4797 10.0584L20.279 10.9237C20.4681 11.0147 20.5883 11.2059 20.5883 11.4157V17.2828C20.5883 17.4926 20.4681 17.6839 20.279 17.7748L18.4797 18.6401Z" fill="#1F9CF0"/>
</g>
<g style="mix-blend-mode:overlay" opacity="0.25">
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.0422 18.6567C18.1798 18.7103 18.3367 18.7069 18.4755 18.6401L20.2737 17.7748C20.4627 17.6839 20.5829 17.4926 20.5829 17.2828V11.4157C20.5829 11.2059 20.4627 11.0147 20.2737 10.9237L18.4755 10.0584C18.2933 9.97075 18.08 9.99223 17.9201 10.1085C17.8973 10.1251 17.8755 10.1436 17.8551 10.1641L14.4126 13.3047L12.9131 12.1665C12.7735 12.0606 12.5783 12.0692 12.4486 12.1872L11.9677 12.6246C11.8091 12.7689 11.8089 13.0184 11.9673 13.1629L13.2677 14.3492L11.9673 15.5356C11.8089 15.6801 11.8091 15.9296 11.9677 16.0738L12.4486 16.5113C12.5783 16.6292 12.7735 16.6379 12.9131 16.532L14.4126 15.3937L17.8551 18.5344C17.9095 18.5889 17.9735 18.6299 18.0422 18.6567ZM18.4006 12.3665L15.7886 14.3492L18.4006 16.332V12.3665Z" fill="url(#paint0_linear)"/>
</g>
</g>
</g>
<rect x="31.1934" y="12.1663" width="18.0923" height="4.36712" rx="2.18356" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<rect x="55.5244" y="12.1663" width="13.7252" height="4.36712" rx="2.18356" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<rect x="75.4883" y="12.1663" width="18.7162" height="4.36712" rx="2.18356" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<path d="M231.458 14.1194V14.7382H224.6V14.1194H231.458Z" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<path d="M239.573 10.995V17.2337H245.811V10.995H239.573ZM245.182 16.6149H240.191V11.6239H245.182V16.6149Z" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<path d="M257.111 14.1194L254.266 16.9642L254.815 17.5132L257.66 14.6684L260.505 17.5132L261.054 16.9642L258.209 14.1194L261.054 11.2745L260.505 10.7255L257.66 13.5704L254.815 10.7255L254.266 11.2745L257.111 14.1194Z" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<rect width="69" height="142" transform="translate(4.99121 23.7073)" fill="var(--vscode-sideBar-background)"/>
<rect x="13.7256" y="31.8176" width="26.2027" height="4.36712" rx="2.18356" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<path d="M20.0139 48.4421L17.2889 45.727L17.6782 45.3377L20.5929 48.2524V48.6417L17.6782 51.5465L17.2889 51.1672L20.0139 48.4521V48.4421Z" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<rect x="28.6982" y="46.4783" width="37.4324" height="4.36712" rx="2.18356" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<path d="M20.0139 63.4155L17.2889 60.7004L17.6782 60.3111L20.5929 63.2258V63.6151L17.6782 66.5199L17.2889 66.1406L20.0139 63.4255V63.4155Z" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<rect x="28.6982" y="61.4517" width="23.0833" height="4.36712" rx="2.18356" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<path d="M20.0139 78.3879L17.2889 75.6728L17.6782 75.2835L20.5929 78.1982V78.5875L17.6782 81.4923L17.2889 81.113L20.0139 78.3979V78.3879Z" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<rect x="28.6982" y="76.4241" width="31.1937" height="4.36712" rx="2.18356" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<path d="M20.0139 93.361L17.2889 90.6459L17.6782 90.2566L20.5929 93.1714V93.5607L17.6782 96.4654L17.2889 96.0861L20.0139 93.371V93.361Z" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<rect x="28.6982" y="91.3972" width="26.2027" height="4.36712" rx="2.18356" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<path d="M20.0139 108.334L17.2889 105.619L17.6782 105.23L20.5929 108.145V108.534L17.6782 111.439L17.2889 111.059L20.0139 108.344V108.334Z" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<rect x="28.6982" y="106.37" width="29.9459" height="4.36712" rx="2.18356" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<path d="M20.0139 123.307L17.2889 120.592L17.6782 120.202L20.5929 123.117V123.506L17.6782 126.411L17.2889 126.032L20.0139 123.317V123.307Z" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<rect x="28.6982" y="121.343" width="34.9369" height="4.36712" rx="2.18356" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<rect width="196.768" height="19.964" transform="translate(73.9922 23.7073)" fill="var(--vscode-editorGroupHeader-tabsBackground, #252526)"/>
<g clip-path="url(#clip1)">
<rect width="72.1532" height="19" transform="translate(73.9922 24.1892)" fill="var(--vscode-tab-activeBackground, #1e1e1e)"/>
<rect x="82.3984" y="31.2373" width="55.3408" height="4.90362" rx="2.45181" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
</g>
<rect x="88.9648" y="63.0117" width="21.2117" height="4.99099" rx="2.4955" fill="#B180D7"/>
<rect x="88.9648" y="134.757" width="61.1396" height="4.99099" rx="2.4955" fill="#007ACC"/>
<rect x="130.141" y="91.0854" width="61.1396" height="4.99099" rx="2.4955" fill="#B180D7"/>
<rect x="88.9648" y="102.939" width="39.9279" height="4.99099" rx="2.4955" fill="#B180D7"/>
<rect x="88.9648" y="114.793" width="25.5788" height="4.99099" rx="2.4955" fill="#B180D7"/>
<rect x="132.636" y="102.939" width="39.9279" height="4.99099" rx="2.4955" fill="#F14C4C"/>
<rect x="118.288" y="114.793" width="54.277" height="4.99099" rx="2.4955" fill="#F14C4C"/>
<rect x="153.849" y="134.757" width="37.4324" height="4.99099" rx="2.4955" fill="#D7BA7D"/>
<rect x="88.9648" y="91.0854" width="37.4324" height="4.99099" rx="2.4955" fill="#D7BA7D"/>
<rect x="113.92" y="63.0112" width="66.7545" height="4.99099" rx="2.4955" fill="#8ADDFF"/>
<rect x="4.99121" y="162.831" width="266.394" height="4.99099" fill="var(--vscode-statusBar-background)"/>
</g>
<rect width="49.286" height="22.4595" transform="translate(113.544 172.813)" fill="#333333"/>
<rect width="149.73" height="7.48649" transform="translate(63.6343 192.153)" fill="#333333"/>
<path d="M342.707 109.707C343.098 109.317 343.098 108.683 342.707 108.293L336.343 101.929C335.953 101.538 335.319 101.538 334.929 101.929C334.538 102.319 334.538 102.953 334.929 103.343L340.586 109L334.929 114.657C334.538 115.047 334.538 115.681 334.929 116.071C335.319 116.462 335.953 116.462 336.343 116.071L342.707 109.707ZM299 110H301.688V108H299V110ZM307.063 110H312.438V108H307.063V110ZM317.813 110H323.188V108H317.813V110ZM328.563 110H333.938V108H328.563V110ZM339.313 110H342V108H339.313V110Z" fill="#7F7F7F"/>
<path d="M298.293 90.2929C297.902 90.6834 297.902 91.3166 298.293 91.7071L304.657 98.0711C305.047 98.4616 305.681 98.4616 306.071 98.0711C306.462 97.6805 306.462 97.0474 306.071 96.6569L300.414 91L306.071 85.3431C306.462 84.9526 306.462 84.3195 306.071 83.9289C305.681 83.5384 305.047 83.5384 304.657 83.9289L298.293 90.2929ZM299 92H301.688V90H299V92ZM307.062 92H312.438V90H307.062V92ZM317.812 92H323.188V90H317.812V92ZM328.562 92H333.938V90H328.562V92ZM339.312 92H342V90H339.312V92Z" fill="#7F7F7F"/>
<rect x="364.133" y="17.5" width="222.022" height="153.474" rx="4.85294" fill="#454545"/>
<g clip-path="url(#clip2)">
<rect x="368.986" y="22.353" width="212.316" height="143.768" rx="1.21324" fill="var(--vscode-editor-background)"/>
<rect width="212.316" height="13.3459" transform="translate(368.986 22.353)" fill="var(--vscode-editor-background)"/>
<circle cx="395.677" cy="29.0258" r="2.42647" fill="#40C8AE"/>
<circle cx="387.185" cy="29.0258" r="2.42647" fill="#D7BA7D"/>
<circle cx="378.692" cy="29.0263" r="2.42647" fill="#F14C4C"/>
<rect width="67" height="128" transform="translate(368.986 35.6987)" fill="var(--vscode-sideBar-background)"/>
<rect x="377.479" y="43.585" width="25.4779" height="4.24632" rx="2.12316" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<path d="M383.593 60.054L380.943 57.414L381.322 57.0355L384.156 59.8696V60.2481L381.322 63.0725L380.943 62.7037L383.593 60.0637V60.054Z" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<rect x="392.037" y="57.8403" width="36.3971" height="4.24632" rx="2.12316" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<path d="M383.593 74.6126L380.943 71.9726L381.322 71.594L384.156 74.4282V74.8067L381.322 77.6311L380.943 77.2623L383.593 74.6223V74.6126Z" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<rect x="392.037" y="72.3989" width="22.4449" height="4.24632" rx="2.12316" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<path d="M383.593 89.1717L380.943 86.5317L381.322 86.1531L384.156 88.9872V89.3658L381.322 92.1902L380.943 91.8214L383.593 89.1814V89.1717Z" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<rect x="392.037" y="86.958" width="30.3309" height="4.24632" rx="2.12316" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<path d="M383.593 103.731L380.943 101.091L381.322 100.712L384.156 103.546V103.925L381.322 106.749L380.943 106.38L383.593 103.74V103.731Z" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<rect x="392.037" y="101.517" width="25.4779" height="4.24632" rx="2.12316" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<path d="M383.593 118.289L380.943 115.649L381.322 115.271L384.156 118.105V118.483L381.322 121.308L380.943 120.939L383.593 118.299V118.289Z" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<rect x="392.037" y="116.076" width="29.1176" height="4.24632" rx="2.12316" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<path d="M383.593 132.848L380.943 130.208L381.322 129.83L384.156 132.664V133.042L381.322 135.867L380.943 135.498L383.593 132.858V132.848Z" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<rect x="392.037" y="130.635" width="33.9706" height="4.24632" rx="2.12316" fill="var(--vscode-tab-unfocusedInactiveForeground)"/>
<rect width="144.588" height="19.4118" transform="translate(435.987 35.6987)" fill="var(--vscode-editorGroupHeader-tabsBackground, #252526)"/>
<g clip-path="url(#clip3)">
<rect width="70.1575" height="19" transform="translate(435.987 35.9045)" fill="var(--vscode-tab-activeBackground, #1e1e1e)"/>
<rect x="444.161" y="43.0205" width="53.8101" height="4.76798" rx="2.38399" fill="var(--vscode-tab-unfocusedInactiveForeground, #454545)"/>
</g>
<rect x="450.546" y="73.9158" width="20.625" height="4.85294" rx="2.42647" fill="#B180D7"/>
<rect x="450.545" y="143.677" width="59.4485" height="4.85294" rx="2.42647" fill="#007ACC"/>
<rect x="490.583" y="101.214" width="59.4485" height="4.85294" rx="2.42647" fill="#B180D7"/>
<rect x="450.545" y="112.74" width="38.8235" height="4.85294" rx="2.42647" fill="#B180D7"/>
<rect x="450.545" y="124.265" width="24.8713" height="4.85294" rx="2.42647" fill="#B180D7"/>
<rect x="493.008" y="112.74" width="38.8235" height="4.85294" rx="2.42647" fill="#F14C4C"/>
<rect x="479.058" y="124.265" width="52.7757" height="4.85294" rx="2.42647" fill="#F14C4C"/>
<rect x="513.633" y="143.677" width="36.3971" height="4.85294" rx="2.42647" fill="#D7BA7D"/>
<rect x="450.545" y="101.214" width="36.3971" height="4.85294" rx="2.42647" fill="#D7BA7D"/>
<rect x="474.81" y="73.9158" width="64.9081" height="4.85294" rx="2.42647" fill="#8ADDFF"/>
<rect x="368.986" y="161.269" width="212.316" height="4.85294" fill="var(--vscode-statusBar-background)"/>
</g>
<path d="M353.213 169.761H597.68V176.434C597.68 179.114 595.507 181.287 592.827 181.287H358.066C355.386 181.287 353.213 179.114 353.213 176.434V169.761Z" fill="#454545"/>
<defs>
<filter id="filter0_d" x="9.98238" y="8.73443" width="12.4775" height="12.4775" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset dy="0.623874"/>
<feGaussianBlur stdDeviation="0.935811"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<filter id="filter1_d" x="7.48152" y="7.72541" width="17.4738" height="15.3355" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset/>
<feGaussianBlur stdDeviation="2.18356"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="overlay" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<filter id="filter2_d" x="13.4918" y="5.63752" width="11.4637" height="17.4234" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
<feOffset/>
<feGaussianBlur stdDeviation="2.18356"/>
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="overlay" in2="BackgroundImageFix" result="effect1_dropShadow"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
</filter>
<linearGradient id="paint0_linear" x1="16.2157" y1="10.0046" x2="16.2157" y2="18.6938" gradientUnits="userSpaceOnUse">
<stop stop-color="white"/>
<stop offset="1" stop-color="white" stop-opacity="0"/>
</linearGradient>
<clipPath id="clip0">
<rect x="4.99121" y="4.99097" width="266.394" height="162.831" rx="1.24775" fill="white"/>
</clipPath>
<clipPath id="clip1">
<rect width="72.1532" height="19.964" fill="white" transform="translate(73.9922 23.7073)"/>
</clipPath>
<clipPath id="clip2">
<rect x="368.986" y="22.353" width="212.316" height="143.768" rx="1.21324" fill="white"/>
</clipPath>
<clipPath id="clip3">
<rect width="70.1575" height="19.4118" fill="white" transform="translate(435.987 35.6987)"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 42 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 46 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 104 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 25 KiB