diff --git a/README.md b/README.md
index 121cd3bf42..d3d2d3064b 100644
--- a/README.md
+++ b/README.md
@@ -21,10 +21,10 @@ Follow these steps for completing your project.
## Task 2: Minimum Viable Product
-* [ ] Review each [design file](design-files). Notice the subtle differences between them all.
-* [ ] Insert a `viewport` meta tag into the head of the project with these html attributes: `content="width=device-width, initial-scale=1"`
-* [ ] Introduce max-width media queries into your project at 800px and 500px
-* [ ] Do your best to make your styles match the design files at each breakpoint
+* [x] Review each [design file](design-files). Notice the subtle differences between them all.
+* [x] Insert a `viewport` meta tag into the head of the project with these html attributes: `content="width=device-width, initial-scale=1"`
+* [x] Introduce max-width media queries into your project at 800px and 500px
+* [x] Do your best to make your styles match the design files at each breakpoint
## Stretch Goals:
* [ ] Create a tablet and mobile version of the services page from previous projects
diff --git a/css/index.css b/css/index.css
index 0c9959c1e5..43b9b2ae1a 100644
--- a/css/index.css
+++ b/css/index.css
@@ -1,3 +1,282 @@
-/* Use your own code or past solution for Great Idea Web Page CSS here! */
+/* http://meyerweb.com/eric/tools/css/reset/
+ v2.0 | 20110126
+ License: none (public domain)
+*/
+html, body, div, span, applet, object, iframe,
+h1, h2, h3, h4, h5, h6, p, blockquote, pre,
+a, abbr, acronym, address, big, cite, code,
+del, dfn, em, img, ins, kbd, q, s, samp,
+small, strike, strong, sub, sup, tt, var,
+b, u, i, center,
+dl, dt, dd, ol, ul, li,
+fieldset, form, label, legend,
+table, caption, tbody, tfoot, thead, tr, th, td,
+article, aside, canvas, details, embed,
+figure, figcaption, footer, header, hgroup,
+menu, nav, output, ruby, section, summary,
+time, mark, audio, video {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font-size: 100%;
+ font: inherit;
+ vertical-align: baseline;
+}
+/* HTML5 display-role reset for older browsers */
+article, aside, details, figcaption, figure,
+footer, header, hgroup, menu, nav, section {
+ display: block;
+}
+body {
+ line-height: 1;
+}
+ol, ul {
+ list-style: none;
+}
+blockquote, q {
+ quotes: none;
+}
+blockquote:before, blockquote:after,
+q:before, q:after {
+ content: '';
+ content: none;
+}
+table {
+ border-collapse: collapse;
+ border-spacing: 0;
+}
+/* Set every element's box-sizing to border-box */
+* {
+ box-sizing: border-box;
+}
+
+html, body {
+ height: 100%;
+ font-family: 'Titillium Web', sans-serif;
+}
+
+h1, h2, h3, h4, h5 {
+ font-family: 'Bangers', cursive;
+ letter-spacing: 1px;
+ margin-bottom: 15px;
+}
+
+/* Your code starts here! */
+
+
+
+body{
+ width: 90%;
+ margin: 0 auto;
+ font-size: 13px;
+
+}
+/*---------Top Part ------------*/
+
+/*Parent */
+.navigation{
+ /*Added a new font style from fonts.google*/
+ font-family: 'Dancing Script', cursive;
+ /*margin:40px*/;
+ text-align: center;
+ width: 100%;
+ display:flex;
+ justify-content: center;
+ /* height: 10vh; */
+
+}
+.nav-tag{
+ width: 100%;
+ display:flex;
+ align-items: center;
+ justify-content: space-between;
+}
+
+a{
+ text-decoration: none; /*Takes out line or decorations*/
+ /*T R B L*/
+ margin: 2% 5% 2% 0;
+ color: grey;
+}
+ /*------------------------Top Mid--------------------*/
+
+.top-content{
+ width: 100%;
+ margin: 5 2 3 4;
+ text-align: center;
+}
+.top-content h1{
+ font-size: 60px;
+}
+
+ header{
+ margin: 40px 0 40px 0;
+ display: flex;
+ justify-content: space-around;
+}
+
+ button{
+ width: 33%;
+ text-align: center;
+}
+
+/*auto is give it an equal left and right outward*/
+
+
+/*------------------------ Mid area------------------------*/
+
+p{
+ font-size: medium;
+ }
+
+ .about{
+ display:inline-block;
+ width:45%;
+ float: right;
+ margin:3% 3% 0 0;
+}
+
+.features{
+ display:inline-block;
+ width:40%;
+ /*T R B L*/
+ margin: 3% 0 0 0;
+}
+.mbottom{
+ display:flex;
+}
+.middle-img{
+ /*T R B L*/
+ margin: 2% 0 0 0;
+ width: 100%
+}
+
+ /*----------------------- Services page------------------*/
+.services{
+ width:100%;
+
+}
+
+.sixbox{
+ display:flex;
+ flex-wrap: wrap;
+ justify-content: space-between;
+}
+.sixbox div{
+ width:45%;
+ margin: 3% 0 3% 0;
+ border:1px solid black;
+ padding: 2.5%;
+
+}
+/* .dd, .dm, .iOS {
+
+ display: flex;
+ justify-content: space-around;
+ flex-direction: column;
+ padding: 2.5%;
+
+}
+
+.unix, .wd, .ad{
+ width:45%;
+ margin: 3% 0 3% 0%;
+ border:1px solid black;
+ display: flex;
+ float: right;
+ justify-content: space-around;
+ flex-direction: column;
+ align-self: center;
+ padding: 2.5%;
+} */
+
+h4{
+ margin: 4%;
+ width: 40%;
+}
+
+.facts{
+ width:40%;
+}
+.ul{
+ list-style-type: circle;
+}
+footer{
+ text-align: center;
+ margin: 50px 0;
+}
+.img{
+ float:right;
+}
+
+/*-------------- MEDIA QUERIES-----------*/
+
+/*tablet*/
+@media(max-width: 800px){
+ .navigation{
+ justify-content: center;
+ flex-direction:column-reverse;
+ }
+ .img-title{
+ display:none;
+ }
+ button{
+ width:75%;
+ }
+ .bottom{
+ /* border: 1px solid black; */
+ display:flex;
+ flex-flow:column;
+ align-items: left;
+ }
+ .facts{
+ /* border: 1px solid black; */
+ }
+ .ul{
+ /* border: 1px solid black; */
+ }
+ footer{
+ /* border: 1px solid black; */
+ }
+}
+
+/*phone*/
+@media (max-width: 500px){
+ .nav-tag{
+ flex-direction:column;
+
+ }
+ .nav-tag a{
+ /* border-bottom: 1px solid black; */
+ width:100%;
+ padding-top: 8px;
+ padding-bottom: 10px;
+ }
+ .mid{
+ flex-direction: column;
+ }
+ .mid div{
+ width:100%;
+ }
+ .mbottom{
+ flex-direction: column;
+ }
+ .mbottom div{
+ width: 100%;
+ }
+ .sixbox{
+ flex-direction:column;
+ }
+ .sixbox div{
+ flex-direction: column;
+ width:100%;
+ }
+ button{
+ width:75%;
+
+ }
+
+
+}
diff --git a/index.html b/index.html
index 476b4b8cb9..3e45948445 100644
--- a/index.html
+++ b/index.html
@@ -1,16 +1,153 @@
+
+
- Great Idea - Responsive I
+
+
+
+
+ Great Idea!
+
+
+
-
+
+
+
+
+
+
+
+
+
Innovation
+
+ On
+ Demand
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Features
+
+
+
+ Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi.
+ Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.
+
+
+
+
+
+
About
+
+
+
+ Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi.
+ Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.
+
+
+
+
+
+
+
+
+
Services
+
+
+
+ Aliqumelementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi.
+ Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.
+
+
+
+
+
Product
+
+
+
+ Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi.
+ Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.
+
+
+
+
+
Vision
+
+
+
+ Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi.
+ Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.
+
+
+
+
+
+
Contact
+
+
+
123 Way 456 Street
+
+ Somewhere, USA
+
+ 1 (888) 888-8888
+
+ sales@greatidea.io
+
+
+
+
+
+
\ No newline at end of file
diff --git a/~/.vscode-root/Backups/workspaces.json b/~/.vscode-root/Backups/workspaces.json
new file mode 100644
index 0000000000..a2480cf61f
--- /dev/null
+++ b/~/.vscode-root/Backups/workspaces.json
@@ -0,0 +1 @@
+{"rootURIWorkspaces":[],"folderURIWorkspaces":["file:///home/owlspec3086/Lambda_assignments/responsive-web-design-I"],"emptyWorkspaceInfos":[{"backupFolder":"1584387375589"}],"emptyWorkspaces":["1584387375589"]}
\ No newline at end of file
diff --git a/~/.vscode-root/Cache/024851657a48ee65_0 b/~/.vscode-root/Cache/024851657a48ee65_0
new file mode 100644
index 0000000000..61d0132697
Binary files /dev/null and b/~/.vscode-root/Cache/024851657a48ee65_0 differ
diff --git a/~/.vscode-root/Cache/1f9011c941e32de3_0 b/~/.vscode-root/Cache/1f9011c941e32de3_0
new file mode 100644
index 0000000000..cf402ed180
Binary files /dev/null and b/~/.vscode-root/Cache/1f9011c941e32de3_0 differ
diff --git a/~/.vscode-root/Cache/c3debdf8be87bd56_0 b/~/.vscode-root/Cache/c3debdf8be87bd56_0
new file mode 100644
index 0000000000..2526c01977
Binary files /dev/null and b/~/.vscode-root/Cache/c3debdf8be87bd56_0 differ
diff --git a/~/.vscode-root/Cache/cbc42e4c979f69f0_0 b/~/.vscode-root/Cache/cbc42e4c979f69f0_0
new file mode 100644
index 0000000000..0b0f3532c6
Binary files /dev/null and b/~/.vscode-root/Cache/cbc42e4c979f69f0_0 differ
diff --git a/~/.vscode-root/Cache/d37c2a57c1e25540_0 b/~/.vscode-root/Cache/d37c2a57c1e25540_0
new file mode 100644
index 0000000000..ff7deda40c
Binary files /dev/null and b/~/.vscode-root/Cache/d37c2a57c1e25540_0 differ
diff --git a/~/.vscode-root/Cache/index b/~/.vscode-root/Cache/index
new file mode 100644
index 0000000000..79bd403ac6
Binary files /dev/null and b/~/.vscode-root/Cache/index differ
diff --git a/~/.vscode-root/Cache/index-dir/the-real-index b/~/.vscode-root/Cache/index-dir/the-real-index
new file mode 100644
index 0000000000..0aa96b9109
Binary files /dev/null and b/~/.vscode-root/Cache/index-dir/the-real-index differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/AvailabilityData-874255759664ea0992534a8842d37e26.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/AvailabilityData-874255759664ea0992534a8842d37e26.code
new file mode 100644
index 0000000000..82ca164eb9
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/AvailabilityData-874255759664ea0992534a8842d37e26.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Base-1d8948996ee934dc15a17662736a38dc.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Base-1d8948996ee934dc15a17662736a38dc.code
new file mode 100644
index 0000000000..aff0b45b2f
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Base-1d8948996ee934dc15a17662736a38dc.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/BufferList-47fde1ca1726b4e56baf17129d37d8d0.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/BufferList-47fde1ca1726b4e56baf17129d37d8d0.code
new file mode 100644
index 0000000000..21b67b1b22
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/BufferList-47fde1ca1726b4e56baf17129d37d8d0.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Channel-14f0307d27c2eea128c78942075f27d6.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Channel-14f0307d27c2eea128c78942075f27d6.code
new file mode 100644
index 0000000000..34b9a7d722
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Channel-14f0307d27c2eea128c78942075f27d6.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Config-08409c2d2b881bb40f935daf2f57623b.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Config-08409c2d2b881bb40f935daf2f57623b.code
new file mode 100644
index 0000000000..167f081b05
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Config-08409c2d2b881bb40f935daf2f57623b.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Config-68c67e8954b9aff2069e0484b107c483.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Config-68c67e8954b9aff2069e0484b107c483.code
new file mode 100644
index 0000000000..853fe89e89
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Config-68c67e8954b9aff2069e0484b107c483.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Console-9675d2c4081ed3e3ce15bf8e9702c9ff.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Console-9675d2c4081ed3e3ce15bf8e9702c9ff.code
new file mode 100644
index 0000000000..dd82753c38
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Console-9675d2c4081ed3e3ce15bf8e9702c9ff.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Constants-1b45f606ee586bbe3bccc0dc2c3c7877.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Constants-1b45f606ee586bbe3bccc0dc2c3c7877.code
new file mode 100644
index 0000000000..28301c6787
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Constants-1b45f606ee586bbe3bccc0dc2c3c7877.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Context-cf6dae61913e5a07740e25e666fc2fb9.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Context-cf6dae61913e5a07740e25e666fc2fb9.code
new file mode 100644
index 0000000000..73ab682556
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Context-cf6dae61913e5a07740e25e666fc2fb9.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/ContextTagKeys-f2c3942d95bac15f32f79cc2cfc347a2.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/ContextTagKeys-f2c3942d95bac15f32f79cc2cfc347a2.code
new file mode 100644
index 0000000000..7dda41f6ea
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/ContextTagKeys-f2c3942d95bac15f32f79cc2cfc347a2.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/CorrelationContextManager-38b7a278c2ec5bb64f3628de3d98a5ba.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/CorrelationContextManager-38b7a278c2ec5bb64f3628de3d98a5ba.code
new file mode 100644
index 0000000000..a42ace32bf
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/CorrelationContextManager-38b7a278c2ec5bb64f3628de3d98a5ba.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/CorrelationIdManager-f1f065af9b91bfa38d43ba1958f9a8ab.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/CorrelationIdManager-f1f065af9b91bfa38d43ba1958f9a8ab.code
new file mode 100644
index 0000000000..eb1b2f0090
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/CorrelationIdManager-f1f065af9b91bfa38d43ba1958f9a8ab.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Data-ba41b60b55ec94f3a5f2a6568e7997fd.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Data-ba41b60b55ec94f3a5f2a6568e7997fd.code
new file mode 100644
index 0000000000..14ba3c70b7
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Data-ba41b60b55ec94f3a5f2a6568e7997fd.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/DataPoint-66f31f97f62a2403edca74efa0b9f4a7.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/DataPoint-66f31f97f62a2403edca74efa0b9f4a7.code
new file mode 100644
index 0000000000..979b0ef32c
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/DataPoint-66f31f97f62a2403edca74efa0b9f4a7.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/DataPointType-e2b02ffd2eecc3cf7e9c430e98bb3f9c.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/DataPointType-e2b02ffd2eecc3cf7e9c430e98bb3f9c.code
new file mode 100644
index 0000000000..d1215146e3
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/DataPointType-e2b02ffd2eecc3cf7e9c430e98bb3f9c.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Domain-52112cfe59e9bbaf7909d92c516858b3.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Domain-52112cfe59e9bbaf7909d92c516858b3.code
new file mode 100644
index 0000000000..18f4d1320b
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Domain-52112cfe59e9bbaf7909d92c516858b3.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Envelope-c4199d9ce18070c6ba8460d6066e2407.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Envelope-c4199d9ce18070c6ba8460d6066e2407.code
new file mode 100644
index 0000000000..6601e534aa
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Envelope-c4199d9ce18070c6ba8460d6066e2407.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/EnvelopeFactory-862aef7705ca7739a22a82b506908130.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/EnvelopeFactory-862aef7705ca7739a22a82b506908130.code
new file mode 100644
index 0000000000..0d3c90d081
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/EnvelopeFactory-862aef7705ca7739a22a82b506908130.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/EventData-bb57e2849dffe173c2b315c0936d4a4e.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/EventData-bb57e2849dffe173c2b315c0936d4a4e.code
new file mode 100644
index 0000000000..d84156005e
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/EventData-bb57e2849dffe173c2b315c0936d4a4e.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/ExceptionData-582d87571b5c6581669db2a980cb37e5.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/ExceptionData-582d87571b5c6581669db2a980cb37e5.code
new file mode 100644
index 0000000000..756e3d561d
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/ExceptionData-582d87571b5c6581669db2a980cb37e5.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/ExceptionDetails-587e1413b238761cf56c555477ce6c0d.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/ExceptionDetails-587e1413b238761cf56c555477ce6c0d.code
new file mode 100644
index 0000000000..ff10270237
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/ExceptionDetails-587e1413b238761cf56c555477ce6c0d.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Exceptions-a82eb6d825e8ecb43848158b56c278bd.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Exceptions-a82eb6d825e8ecb43848158b56c278bd.code
new file mode 100644
index 0000000000..00432a7409
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Exceptions-a82eb6d825e8ecb43848158b56c278bd.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Helper-192c36c490ffd1f537c5a3a78fc56802.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Helper-192c36c490ffd1f537c5a3a78fc56802.code
new file mode 100644
index 0000000000..4e2be68c68
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Helper-192c36c490ffd1f537c5a3a78fc56802.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/HttpDependencies-71928092fd8f71ee51ea2ed351d2f4dc.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/HttpDependencies-71928092fd8f71ee51ea2ed351d2f4dc.code
new file mode 100644
index 0000000000..3bb1c657e3
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/HttpDependencies-71928092fd8f71ee51ea2ed351d2f4dc.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/HttpDependencyParser-ed0f85518cdb47787401158f6d6bc093.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/HttpDependencyParser-ed0f85518cdb47787401158f6d6bc093.code
new file mode 100644
index 0000000000..b2057f8468
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/HttpDependencyParser-ed0f85518cdb47787401158f6d6bc093.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/HttpRequestParser-dd43b972a4060dfe7ebcc34827981752.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/HttpRequestParser-dd43b972a4060dfe7ebcc34827981752.code
new file mode 100644
index 0000000000..f7b4083094
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/HttpRequestParser-dd43b972a4060dfe7ebcc34827981752.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/HttpRequests-4548bc4dd246bda37e22a4b125f66111.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/HttpRequests-4548bc4dd246bda37e22a4b125f66111.code
new file mode 100644
index 0000000000..70b383b306
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/HttpRequests-4548bc4dd246bda37e22a4b125f66111.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/LiveServerHelper-478ca31fa32dbf6602996f10aa3707ed.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/LiveServerHelper-478ca31fa32dbf6602996f10aa3707ed.code
new file mode 100644
index 0000000000..aa65949550
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/LiveServerHelper-478ca31fa32dbf6602996f10aa3707ed.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/LiveShareHelper-78e77f9e0a96960ce583daa62065d5c9.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/LiveShareHelper-78e77f9e0a96960ce583daa62065d5c9.code
new file mode 100644
index 0000000000..b197559379
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/LiveShareHelper-78e77f9e0a96960ce583daa62065d5c9.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Logging-d0e635ec19af05fd22672d5e4f347c0a.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Logging-d0e635ec19af05fd22672d5e4f347c0a.code
new file mode 100644
index 0000000000..f2002d1551
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Logging-d0e635ec19af05fd22672d5e4f347c0a.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/MessageData-cd260ae14cc1ac7afb40d40b21aeb52e.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/MessageData-cd260ae14cc1ac7afb40d40b21aeb52e.code
new file mode 100644
index 0000000000..57f80a5a6f
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/MessageData-cd260ae14cc1ac7afb40d40b21aeb52e.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/MetricData-c8d8e8a1b9aa3600500fa668d124c301.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/MetricData-c8d8e8a1b9aa3600500fa668d124c301.code
new file mode 100644
index 0000000000..31480f371a
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/MetricData-c8d8e8a1b9aa3600500fa668d124c301.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/NodeClient-46394d347bfb94fe9bbe690d3034f199.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/NodeClient-46394d347bfb94fe9bbe690d3034f199.code
new file mode 100644
index 0000000000..183ae9150c
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/NodeClient-46394d347bfb94fe9bbe690d3034f199.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/PageViewData-3bcdd37abd822122c227227d48ff5167.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/PageViewData-3bcdd37abd822122c227227d48ff5167.code
new file mode 100644
index 0000000000..165551fbf4
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/PageViewData-3bcdd37abd822122c227227d48ff5167.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Performance-89332ffc71023e83f05e9ffd208480cd.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Performance-89332ffc71023e83f05e9ffd208480cd.code
new file mode 100644
index 0000000000..fdd98dd5e4
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Performance-89332ffc71023e83f05e9ffd208480cd.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/RemoteDependencyData-735b1ac1894b98411fccd012f06b5561.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/RemoteDependencyData-735b1ac1894b98411fccd012f06b5561.code
new file mode 100644
index 0000000000..9610b455a4
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/RemoteDependencyData-735b1ac1894b98411fccd012f06b5561.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/RequestData-b090b88fe7496d291b67c96dfc194641.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/RequestData-b090b88fe7496d291b67c96dfc194641.code
new file mode 100644
index 0000000000..9752327b04
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/RequestData-b090b88fe7496d291b67c96dfc194641.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/RequestParser-09309159b66dc99fef00267888bc52c6.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/RequestParser-09309159b66dc99fef00267888bc52c6.code
new file mode 100644
index 0000000000..ca6dc97d50
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/RequestParser-09309159b66dc99fef00267888bc52c6.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/RequestResponseHeaders-1506358809faf29e518c061750f5d31d.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/RequestResponseHeaders-1506358809faf29e518c061750f5d31d.code
new file mode 100644
index 0000000000..7ca8d7b1a1
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/RequestResponseHeaders-1506358809faf29e518c061750f5d31d.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/SamplingTelemetryProcessor-291ba57349dce99a04588127aa33b95f.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/SamplingTelemetryProcessor-291ba57349dce99a04588127aa33b95f.code
new file mode 100644
index 0000000000..1658ab8015
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/SamplingTelemetryProcessor-291ba57349dce99a04588127aa33b95f.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Sender-2e2456d0c7e4306596e88cabf7e11ce0.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Sender-2e2456d0c7e4306596e88cabf7e11ce0.code
new file mode 100644
index 0000000000..7217e62dfc
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Sender-2e2456d0c7e4306596e88cabf7e11ce0.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/SeverityLevel-81ed6b9afa9637066c7a55f9a57ca14c.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/SeverityLevel-81ed6b9afa9637066c7a55f9a57ca14c.code
new file mode 100644
index 0000000000..ce226b0a0a
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/SeverityLevel-81ed6b9afa9637066c7a55f9a57ca14c.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/StackFrame-baddd63767dd283eef6af54dfbe447bc.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/StackFrame-baddd63767dd283eef6af54dfbe447bc.code
new file mode 100644
index 0000000000..1281969c4c
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/StackFrame-baddd63767dd283eef6af54dfbe447bc.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/StatusbarUi-c59a8aa0d29fdde35c69f218c941762a.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/StatusbarUi-c59a8aa0d29fdde35c69f218c941762a.code
new file mode 100644
index 0000000000..4039f8ad4b
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/StatusbarUi-c59a8aa0d29fdde35c69f218c941762a.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/TelemetryClient-46cd50347b19499e7896698f9c7305a3.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/TelemetryClient-46cd50347b19499e7896698f9c7305a3.code
new file mode 100644
index 0000000000..be9f1192ba
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/TelemetryClient-46cd50347b19499e7896698f9c7305a3.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/TelemetryType-828b6d55581e225750a5f827195dd72a.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/TelemetryType-828b6d55581e225750a5f827195dd72a.code
new file mode 100644
index 0000000000..7d539e63ce
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/TelemetryType-828b6d55581e225750a5f827195dd72a.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Util-683601005b4d86f26184e65d0aca9d4d.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Util-683601005b4d86f26184e65d0aca9d4d.code
new file mode 100644
index 0000000000..f80c1fb4e2
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/Util-683601005b4d86f26184e65d0aca9d4d.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/_stream_duplex-f0dadd12691a218d29f1f2cca2be442a.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/_stream_duplex-f0dadd12691a218d29f1f2cca2be442a.code
new file mode 100644
index 0000000000..2c5c098b64
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/_stream_duplex-f0dadd12691a218d29f1f2cca2be442a.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/_stream_passthrough-b33b9e0abeffb5d73bd4fa24c374d724.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/_stream_passthrough-b33b9e0abeffb5d73bd4fa24c374d724.code
new file mode 100644
index 0000000000..123c478e75
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/_stream_passthrough-b33b9e0abeffb5d73bd4fa24c374d724.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/_stream_readable-994f1b633c63a6d13437be4f40cbc24d.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/_stream_readable-994f1b633c63a6d13437be4f40cbc24d.code
new file mode 100644
index 0000000000..491c076062
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/_stream_readable-994f1b633c63a6d13437be4f40cbc24d.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/_stream_transform-3682c1048c327990dbc72b3e12b4376b.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/_stream_transform-3682c1048c327990dbc72b3e12b4376b.code
new file mode 100644
index 0000000000..00c9704d6a
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/_stream_transform-3682c1048c327990dbc72b3e12b4376b.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/_stream_writable-cd6ebf7d9d010c5e7583cde9f1d9e470.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/_stream_writable-cd6ebf7d9d010c5e7583cde9f1d9e470.code
new file mode 100644
index 0000000000..0310e920e5
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/_stream_writable-cd6ebf7d9d010c5e7583cde9f1d9e470.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/america-461e558c6045effa86c5bc5cb6131ed2.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/america-461e558c6045effa86c5bc5cb6131ed2.code
new file mode 100644
index 0000000000..b5c80527bf
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/america-461e558c6045effa86c5bc5cb6131ed2.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/api-db1dfeb11c2fc99c0a8d6ae4c3243aa1.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/api-db1dfeb11c2fc99c0a8d6ae4c3243aa1.code
new file mode 100644
index 0000000000..4a499e9621
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/api-db1dfeb11c2fc99c0a8d6ae4c3243aa1.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/appModel-c06d0726c54ecbd8505f3b4714d2d76c.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/appModel-c06d0726c54ecbd8505f3b4714d2d76c.code
new file mode 100644
index 0000000000..0367055e75
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/appModel-c06d0726c54ecbd8505f3b4714d2d76c.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/applicationinsights-1b9bf89d7619d3a5e0c352d94f3cb183.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/applicationinsights-1b9bf89d7619d3a5e0c352d94f3cb183.code
new file mode 100644
index 0000000000..be84d06f51
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/applicationinsights-1b9bf89d7619d3a5e0c352d94f3cb183.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/array-set-10b8b456b5afa299cb95f36cc6fff5dd.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/array-set-10b8b456b5afa299cb95f36cc6fff5dd.code
new file mode 100644
index 0000000000..991189c442
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/array-set-10b8b456b5afa299cb95f36cc6fff5dd.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/base-cf564671083b0582385ad6b29c49cbb0.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/base-cf564671083b0582385ad6b29c49cbb0.code
new file mode 100644
index 0000000000..4e4b036440
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/base-cf564671083b0582385ad6b29c49cbb0.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/base64-e78b0d6468ece62219b1032cfeb6c022.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/base64-e78b0d6468ece62219b1032cfeb6c022.code
new file mode 100644
index 0000000000..19b1bb280d
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/base64-e78b0d6468ece62219b1032cfeb6c022.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/base64-vlq-ba98772da485fc6ce95fca4e12556af2.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/base64-vlq-ba98772da485fc6ce95fca4e12556af2.code
new file mode 100644
index 0000000000..419eda0964
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/base64-vlq-ba98772da485fc6ce95fca4e12556af2.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/binary-search-79bc70b57cbc9279ad407053a2680fe8.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/binary-search-79bc70b57cbc9279ad407053a2680fe8.code
new file mode 100644
index 0000000000..00dac9840c
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/binary-search-79bc70b57cbc9279ad407053a2680fe8.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/bindings-173850542f0a50d0661cb0ca218801b3.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/bindings-173850542f0a50d0661cb0ca218801b3.code
new file mode 100644
index 0000000000..bc8010b461
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/bindings-173850542f0a50d0661cb0ca218801b3.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/bindings-2cc7d19b16572b83ddb5319d078df3c5.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/bindings-2cc7d19b16572b83ddb5319d078df3c5.code
new file mode 100644
index 0000000000..8691db9506
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/bindings-2cc7d19b16572b83ddb5319d078df3c5.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/bindings-34a9941dfdffde89d5a1cb4d9ffe5a88.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/bindings-34a9941dfdffde89d5a1cb4d9ffe5a88.code
new file mode 100644
index 0000000000..2f7588f2e5
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/bindings-34a9941dfdffde89d5a1cb4d9ffe5a88.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/bindings-f1382c460b42a41bc5364958d69ed7e8.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/bindings-f1382c460b42a41bc5364958d69ed7e8.code
new file mode 100644
index 0000000000..fb2e9d0908
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/bindings-f1382c460b42a41bc5364958d69ed7e8.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/bom-handling-2c1afec688158f038bdb6b116bd56e63.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/bom-handling-2c1afec688158f038bdb6b116bd56e63.code
new file mode 100644
index 0000000000..1c4a1338bb
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/bom-handling-2c1afec688158f038bdb6b116bd56e63.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/bom-handling-e1477d64849b5c384ffd32531d4a6ca4.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/bom-handling-e1477d64849b5c384ffd32531d4a6ca4.code
new file mode 100644
index 0000000000..15062332ec
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/bom-handling-e1477d64849b5c384ffd32531d4a6ca4.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/braces-8148a27eb18f148e0b0fff0ad33f733d.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/braces-8148a27eb18f148e0b0fff0ad33f733d.code
new file mode 100644
index 0000000000..6e2591f81c
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/braces-8148a27eb18f148e0b0fff0ad33f733d.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/cache-1c8029007a47948165322227856a97df.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/cache-1c8029007a47948165322227856a97df.code
new file mode 100644
index 0000000000..9310092d6f
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/cache-1c8029007a47948165322227856a97df.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/cache-a6d674d97f1506947bfa429f4c66a553.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/cache-a6d674d97f1506947bfa429f4c66a553.code
new file mode 100644
index 0000000000..cb63c77411
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/cache-a6d674d97f1506947bfa429f4c66a553.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/cell-cc561aab0466952b5a9e1a12b25a3525.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/cell-cc561aab0466952b5a9e1a12b25a3525.code
new file mode 100644
index 0000000000..63606f9ae3
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/cell-cc561aab0466952b5a9e1a12b25a3525.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/client-51feb93840288fc3328fba694b2a99d1.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/client-51feb93840288fc3328fba694b2a99d1.code
new file mode 100644
index 0000000000..8805de8aa5
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/client-51feb93840288fc3328fba694b2a99d1.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/client-d088da3dd1fd90fc3c5b58714547112c.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/client-d088da3dd1fd90fc3c5b58714547112c.code
new file mode 100644
index 0000000000..f3e02108de
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/client-d088da3dd1fd90fc3c5b58714547112c.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/clone-05a0b7c074fda8f8ec733d30c40c4368.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/clone-05a0b7c074fda8f8ec733d30c40c4368.code
new file mode 100644
index 0000000000..b41e7f7cde
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/clone-05a0b7c074fda8f8ec733d30c40c4368.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/clone-9b8dc0b00eacc45e14b3eec1e58762c9.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/clone-9b8dc0b00eacc45e14b3eec1e58762c9.code
new file mode 100644
index 0000000000..dba8253c0b
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/clone-9b8dc0b00eacc45e14b3eec1e58762c9.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/clone-f5e7bf483d45ccdecb78e69f99c01693.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/clone-f5e7bf483d45ccdecb78e69f99c01693.code
new file mode 100644
index 0000000000..960512a437
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/clone-f5e7bf483d45ccdecb78e69f99c01693.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/colors-1612c3c37cfa92818b89cc2e1cbe4221.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/colors-1612c3c37cfa92818b89cc2e1cbe4221.code
new file mode 100644
index 0000000000..7a2c9f42b2
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/colors-1612c3c37cfa92818b89cc2e1cbe4221.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/common-75957b23041059008e9d565ede8fdacd.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/common-75957b23041059008e9d565ede8fdacd.code
new file mode 100644
index 0000000000..31af5d7444
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/common-75957b23041059008e9d565ede8fdacd.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/common-a2db12fc048a25cef63b02417f1fd0d4.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/common-a2db12fc048a25cef63b02417f1fd0d4.code
new file mode 100644
index 0000000000..7ce51fbf0d
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/common-a2db12fc048a25cef63b02417f1fd0d4.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/common-f92c61c511b255a338dadc3c871ba0b9.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/common-f92c61c511b255a338dadc3c871ba0b9.code
new file mode 100644
index 0000000000..0e1fbee4f1
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/common-f92c61c511b255a338dadc3c871ba0b9.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/common-ff5ba4a2adf44498cfbeebe274b529e5.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/common-ff5ba4a2adf44498cfbeebe274b529e5.code
new file mode 100644
index 0000000000..2410706d1b
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/common-ff5ba4a2adf44498cfbeebe274b529e5.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/compiler-736b509ca55d31aa19a4198e9c6b360d.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/compiler-736b509ca55d31aa19a4198e9c6b360d.code
new file mode 100644
index 0000000000..244d3ec3e3
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/compiler-736b509ca55d31aa19a4198e9c6b360d.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/compilers-052e7b04a1b9e98cbbf761c2b6f07334.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/compilers-052e7b04a1b9e98cbbf761c2b6f07334.code
new file mode 100644
index 0000000000..1971311280
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/compilers-052e7b04a1b9e98cbbf761c2b6f07334.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/compilers-380bce617ab50ed510948aa921b55758.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/compilers-380bce617ab50ed510948aa921b55758.code
new file mode 100644
index 0000000000..f6c71dcc94
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/compilers-380bce617ab50ed510948aa921b55758.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/compilers-69c028ea056e9647ddb699321908e3fe.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/compilers-69c028ea056e9647ddb699321908e3fe.code
new file mode 100644
index 0000000000..ec4645f37a
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/compilers-69c028ea056e9647ddb699321908e3fe.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/compilers-ca37413d5a9549efe67038f63a2b0271.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/compilers-ca37413d5a9549efe67038f63a2b0271.code
new file mode 100644
index 0000000000..bb521dcfb3
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/compilers-ca37413d5a9549efe67038f63a2b0271.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/compilers-e3483209937708d057240d3c59ed26af.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/compilers-e3483209937708d057240d3c59ed26af.code
new file mode 100644
index 0000000000..31127947f9
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/compilers-e3483209937708d057240d3c59ed26af.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/constants-e5ba7d1ba75ef07368a4b1864d53030f.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/constants-e5ba7d1ba75ef07368a4b1864d53030f.code
new file mode 100644
index 0000000000..4644c5408d
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/constants-e5ba7d1ba75ef07368a4b1864d53030f.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/cssMain-ca5a72a73dd868e9f46f3fa31cba6f53.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/cssMain-ca5a72a73dd868e9f46f3fa31cba6f53.code
new file mode 100644
index 0000000000..3a37bc0366
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/cssMain-ca5a72a73dd868e9f46f3fa31cba6f53.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/dbcs-codec-9064fa2122fb234c4f206fdd57965377.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/dbcs-codec-9064fa2122fb234c4f206fdd57965377.code
new file mode 100644
index 0000000000..d6bb40fc5b
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/dbcs-codec-9064fa2122fb234c4f206fdd57965377.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/dbcs-data-d11e9f53925de0e35becb689ee6f611a.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/dbcs-data-d11e9f53925de0e35becb689ee6f611a.code
new file mode 100644
index 0000000000..cbc65baeec
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/dbcs-data-d11e9f53925de0e35becb689ee6f611a.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/debug-0f4f35fe64644601f9f86fa510dc21a5.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/debug-0f4f35fe64644601f9f86fa510dc21a5.code
new file mode 100644
index 0000000000..b268f0811f
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/debug-0f4f35fe64644601f9f86fa510dc21a5.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/debug-932b2bd82952b15e38607973ad5c44d0.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/debug-932b2bd82952b15e38607973ad5c44d0.code
new file mode 100644
index 0000000000..b5fa6f9d97
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/debug-932b2bd82952b15e38607973ad5c44d0.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/decode-uri-component-38e87f16e0fbc20f311fccda350b109b.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/decode-uri-component-38e87f16e0fbc20f311fccda350b109b.code
new file mode 100644
index 0000000000..8bb5d99079
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/decode-uri-component-38e87f16e0fbc20f311fccda350b109b.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/destroy-ad021ca637fb93def9ecd349d0b7d109.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/destroy-ad021ca637fb93def9ecd349d0b7d109.code
new file mode 100644
index 0000000000..836930e544
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/destroy-ad021ca637fb93def9ecd349d0b7d109.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/draft75-d05113129ee2e3b84d49d2295814252f.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/draft75-d05113129ee2e3b84d49d2295814252f.code
new file mode 100644
index 0000000000..f1ffe95b8e
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/draft75-d05113129ee2e3b84d49d2295814252f.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/draft76-20d6715987d5e9168cdd822950ab0e4e.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/draft76-20d6715987d5e9168cdd822950ab0e4e.code
new file mode 100644
index 0000000000..e33e9acbca
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/draft76-20d6715987d5e9168cdd822950ab0e4e.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/driver-5956899fd0e4fbc78d8703a96a5d1356.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/driver-5956899fd0e4fbc78d8703a96a5d1356.code
new file mode 100644
index 0000000000..94c8b1b188
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/driver-5956899fd0e4fbc78d8703a96a5d1356.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/event-64e735f7906eb767b2f2f5e2a11a86cd.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/event-64e735f7906eb767b2f2f5e2a11a86cd.code
new file mode 100644
index 0000000000..946bee7c16
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/event-64e735f7906eb767b2f2f5e2a11a86cd.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/eventEmitter2-dc6e84295e89fd2a3109966f2294b0a3.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/eventEmitter2-dc6e84295e89fd2a3109966f2294b0a3.code
new file mode 100644
index 0000000000..2ff6be0e8a
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/eventEmitter2-dc6e84295e89fd2a3109966f2294b0a3.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/eventEmitter2-fea005960eb2183200bd469a8bc29b9c.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/eventEmitter2-fea005960eb2183200bd469a8bc29b9c.code
new file mode 100644
index 0000000000..a4222499dd
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/eventEmitter2-fea005960eb2183200bd469a8bc29b9c.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/event_target-a64db7579386f6451e0c17c9d075ae10.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/event_target-a64db7579386f6451e0c17c9d075ae10.code
new file mode 100644
index 0000000000..b0c4f2588d
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/event_target-a64db7579386f6451e0c17c9d075ae10.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/eventsource-bf68a255f1a1dec5b208236591473014.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/eventsource-bf68a255f1a1dec5b208236591473014.code
new file mode 100644
index 0000000000..8b87aab9b9
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/eventsource-bf68a255f1a1dec5b208236591473014.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extend-node-468294fbd49983c701ba06ac216a5cee.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extend-node-468294fbd49983c701ba06ac216a5cee.code
new file mode 100644
index 0000000000..0641394718
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extend-node-468294fbd49983c701ba06ac216a5cee.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extend-node-5417fce31c18e5e32f19267c601cfdb5.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extend-node-5417fce31c18e5e32f19267c601cfdb5.code
new file mode 100644
index 0000000000..154a83a09b
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extend-node-5417fce31c18e5e32f19267c601cfdb5.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extendStringPrototype-a97c5e7fa8f8b9fee1e3fc3c4077ed15.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extendStringPrototype-a97c5e7fa8f8b9fee1e3fc3c4077ed15.code
new file mode 100644
index 0000000000..738572cbc4
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extendStringPrototype-a97c5e7fa8f8b9fee1e3fc3c4077ed15.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-02072128cc1d90140c45fa64de98af41.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-02072128cc1d90140c45fa64de98af41.code
new file mode 100644
index 0000000000..c374757901
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-02072128cc1d90140c45fa64de98af41.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-1826ad7c5e5dee20668e1ad8c19a2a44.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-1826ad7c5e5dee20668e1ad8c19a2a44.code
new file mode 100644
index 0000000000..8ab9b91aae
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-1826ad7c5e5dee20668e1ad8c19a2a44.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-3f555b3f2f4a47f2af6e8618bb4825a3.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-3f555b3f2f4a47f2af6e8618bb4825a3.code
new file mode 100644
index 0000000000..3a486598d6
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-3f555b3f2f4a47f2af6e8618bb4825a3.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-5c8589cfa1aaf3677f6cd7aade8b55d4.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-5c8589cfa1aaf3677f6cd7aade8b55d4.code
new file mode 100644
index 0000000000..2b390e25f9
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-5c8589cfa1aaf3677f6cd7aade8b55d4.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-64dea76dcb7344442bf0238fea1dfe4a.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-64dea76dcb7344442bf0238fea1dfe4a.code
new file mode 100644
index 0000000000..66430545ff
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-64dea76dcb7344442bf0238fea1dfe4a.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-7c2ed46a82859bfa78fa8e471ab01ef6.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-7c2ed46a82859bfa78fa8e471ab01ef6.code
new file mode 100644
index 0000000000..5c6cb52dd6
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-7c2ed46a82859bfa78fa8e471ab01ef6.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-b9e4ba1f78fb025d21126e5ec5bba229.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-b9e4ba1f78fb025d21126e5ec5bba229.code
new file mode 100644
index 0000000000..ede3420969
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-b9e4ba1f78fb025d21126e5ec5bba229.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-e354972681146ef790530c667ec4c558.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-e354972681146ef790530c667ec4c558.code
new file mode 100644
index 0000000000..3bbaab6814
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extension-e354972681146ef790530c667ec4c558.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extensionHostProcess-cf6ab5c2e514daa7cb944c7f5c32ef6e.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extensionHostProcess-cf6ab5c2e514daa7cb944c7f5c32ef6e.code
new file mode 100644
index 0000000000..5166f21749
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extensionHostProcess-cf6ab5c2e514daa7cb944c7f5c32ef6e.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extensionHostProcess.nls-c3e23ee4605f695780e946fe5b98cfd7.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extensionHostProcess.nls-c3e23ee4605f695780e946fe5b98cfd7.code
new file mode 100644
index 0000000000..c5064552fb
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extensionHostProcess.nls-c3e23ee4605f695780e946fe5b98cfd7.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extglob-2f3d265f3206e8d8b1baa3f3c5931b37.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extglob-2f3d265f3206e8d8b1baa3f3c5931b37.code
new file mode 100644
index 0000000000..9867d90af0
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/extglob-2f3d265f3206e8d8b1baa3f3c5931b37.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/frame-e0fdab1c7f19704d1af389d4b5faa9fb.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/frame-e0fdab1c7f19704d1af389d4b5faa9fb.code
new file mode 100644
index 0000000000..6dee295760
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/frame-e0fdab1c7f19704d1af389d4b5faa9fb.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/fsevents-handler-25815507ebe24a6fc2d846ae764e682e.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/fsevents-handler-25815507ebe24a6fc2d846ae764e682e.code
new file mode 100644
index 0000000000..5dbdbd1995
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/fsevents-handler-25815507ebe24a6fc2d846ae764e682e.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/functor-953b898519aa1a04ddf258759fdf188f.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/functor-953b898519aa1a04ddf258759fdf188f.code
new file mode 100644
index 0000000000..34a12653f9
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/functor-953b898519aa1a04ddf258759fdf188f.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/graceful-fs-a543d85d77f75eb426b8157710643ae1.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/graceful-fs-a543d85d77f75eb426b8157710643ae1.code
new file mode 100644
index 0000000000..010c00f8ff
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/graceful-fs-a543d85d77f75eb426b8157710643ae1.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/graceful-fs-e81814ce42a7fdf880919c177edd5c88.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/graceful-fs-e81814ce42a7fdf880919c177edd5c88.code
new file mode 100644
index 0000000000..04eee06648
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/graceful-fs-e81814ce42a7fdf880919c177edd5c88.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/graceful-fs-ef75621dce4eb97ef09d7fae455c8b71.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/graceful-fs-ef75621dce4eb97ef09d7fae455c8b71.code
new file mode 100644
index 0000000000..cce03cdff9
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/graceful-fs-ef75621dce4eb97ef09d7fae455c8b71.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/has-flag-b1ab2af158909ee057e1bf7df44b7f29.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/has-flag-b1ab2af158909ee057e1bf7df44b7f29.code
new file mode 100644
index 0000000000..00dacfe3f9
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/has-flag-b1ab2af158909ee057e1bf7df44b7f29.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/headers-7432117ec9055c7f9da38d80ef37eab1.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/headers-7432117ec9055c7f9da38d80ef37eab1.code
new file mode 100644
index 0000000000..7fa810b0f3
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/headers-7432117ec9055c7f9da38d80ef37eab1.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/helpers-5cfd0e33ffa9cc8d426bc1b6b43d1131.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/helpers-5cfd0e33ffa9cc8d426bc1b6b43d1131.code
new file mode 100644
index 0000000000..425a32315d
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/helpers-5cfd0e33ffa9cc8d426bc1b6b43d1131.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/htmlMain-1d1f45321149a334134b7481499c43d5.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/htmlMain-1d1f45321149a334134b7481499c43d5.code
new file mode 100644
index 0000000000..27e71a44b4
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/htmlMain-1d1f45321149a334134b7481499c43d5.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/http-parser-40fb8f451fee0fe29a9dc562bb15ffe8.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/http-parser-40fb8f451fee0fe29a9dc562bb15ffe8.code
new file mode 100644
index 0000000000..c2717887c8
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/http-parser-40fb8f451fee0fe29a9dc562bb15ffe8.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/http-proxy-e5f60eb4380844f0c04082b033190366.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/http-proxy-e5f60eb4380844f0c04082b033190366.code
new file mode 100644
index 0000000000..bc9bf80200
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/http-proxy-e5f60eb4380844f0c04082b033190366.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/http_parser-7d5020a5721c744d079e50cd11089c48.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/http_parser-7d5020a5721c744d079e50cd11089c48.code
new file mode 100644
index 0000000000..b835487a9f
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/http_parser-7d5020a5721c744d079e50cd11089c48.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/hybi-c4ffeb47afcfb88d19f48205012e61ce.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/hybi-c4ffeb47afcfb88d19f48205012e61ce.code
new file mode 100644
index 0000000000..7dc4076b1f
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/hybi-c4ffeb47afcfb88d19f48205012e61ce.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0029b37ec6ba4b68e34ad9e7dcc69d41.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0029b37ec6ba4b68e34ad9e7dcc69d41.code
new file mode 100644
index 0000000000..6b93a2a0fe
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0029b37ec6ba4b68e34ad9e7dcc69d41.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-01d80a442750c1639b0443086444524d.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-01d80a442750c1639b0443086444524d.code
new file mode 100644
index 0000000000..74637a22e8
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-01d80a442750c1639b0443086444524d.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-024e12b7dee727dfb62a0c0d20ff06ae.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-024e12b7dee727dfb62a0c0d20ff06ae.code
new file mode 100644
index 0000000000..3cd8c42c2f
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-024e12b7dee727dfb62a0c0d20ff06ae.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-034bcdc838cdb338fb226dc0cfb254df.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-034bcdc838cdb338fb226dc0cfb254df.code
new file mode 100644
index 0000000000..10e3da64e0
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-034bcdc838cdb338fb226dc0cfb254df.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-04dfd312898858408ca7488549742491.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-04dfd312898858408ca7488549742491.code
new file mode 100644
index 0000000000..6f0d0b6a17
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-04dfd312898858408ca7488549742491.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0508a441a60dded42de217376f856d21.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0508a441a60dded42de217376f856d21.code
new file mode 100644
index 0000000000..d30f269f75
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0508a441a60dded42de217376f856d21.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-05d3d6d3ce9b0db265617dbc8c33111d.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-05d3d6d3ce9b0db265617dbc8c33111d.code
new file mode 100644
index 0000000000..5483efb373
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-05d3d6d3ce9b0db265617dbc8c33111d.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-06f591451b9ad215c3349f75292c163c.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-06f591451b9ad215c3349f75292c163c.code
new file mode 100644
index 0000000000..5bb6305ed5
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-06f591451b9ad215c3349f75292c163c.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-075eb5256816af433312d12809d5b4df.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-075eb5256816af433312d12809d5b4df.code
new file mode 100644
index 0000000000..1a0bfda558
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-075eb5256816af433312d12809d5b4df.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-07d9303284a6a35af84dd649489e95d3.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-07d9303284a6a35af84dd649489e95d3.code
new file mode 100644
index 0000000000..be9325d8ab
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-07d9303284a6a35af84dd649489e95d3.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-07dc22ecbd9f8951532f0a711afa5580.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-07dc22ecbd9f8951532f0a711afa5580.code
new file mode 100644
index 0000000000..74ad2f2cc4
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-07dc22ecbd9f8951532f0a711afa5580.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-089ec7f3ea575c6f9bb19b013c69e6fe.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-089ec7f3ea575c6f9bb19b013c69e6fe.code
new file mode 100644
index 0000000000..6fd34094ff
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-089ec7f3ea575c6f9bb19b013c69e6fe.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0a66fe64b62db540b72ad11e7ba12ef7.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0a66fe64b62db540b72ad11e7ba12ef7.code
new file mode 100644
index 0000000000..76d06977b5
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0a66fe64b62db540b72ad11e7ba12ef7.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0ba1b0b39032489326131315b51fc9b8.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0ba1b0b39032489326131315b51fc9b8.code
new file mode 100644
index 0000000000..111503e99d
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0ba1b0b39032489326131315b51fc9b8.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0babe3ec1570053df2b38c1721d56371.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0babe3ec1570053df2b38c1721d56371.code
new file mode 100644
index 0000000000..811ae0f8ab
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0babe3ec1570053df2b38c1721d56371.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0d72fdd9f61adcd6ccefd8786c4724c2.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0d72fdd9f61adcd6ccefd8786c4724c2.code
new file mode 100644
index 0000000000..4f28cd7f15
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0d72fdd9f61adcd6ccefd8786c4724c2.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0dba9831e388ce4f1a7836ce1a388fa1.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0dba9831e388ce4f1a7836ce1a388fa1.code
new file mode 100644
index 0000000000..9ee80711e1
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0dba9831e388ce4f1a7836ce1a388fa1.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0f94bde772c305140586b3ace52f8db9.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0f94bde772c305140586b3ace52f8db9.code
new file mode 100644
index 0000000000..8b1f12f945
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-0f94bde772c305140586b3ace52f8db9.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-10c75fd4e0c08d6b8929a8cbe771646b.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-10c75fd4e0c08d6b8929a8cbe771646b.code
new file mode 100644
index 0000000000..f2f96f41db
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-10c75fd4e0c08d6b8929a8cbe771646b.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-11c668401426856a5e9e5b77b8d256a9.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-11c668401426856a5e9e5b77b8d256a9.code
new file mode 100644
index 0000000000..b018f0139f
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-11c668401426856a5e9e5b77b8d256a9.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-12cc9bd4a19bf969df0a1855a7443950.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-12cc9bd4a19bf969df0a1855a7443950.code
new file mode 100644
index 0000000000..815294cd94
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-12cc9bd4a19bf969df0a1855a7443950.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-133cc84ada351d3a20715033c05277d4.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-133cc84ada351d3a20715033c05277d4.code
new file mode 100644
index 0000000000..f7787bb376
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-133cc84ada351d3a20715033c05277d4.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-135f0072ec666914ee65353c373f16dd.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-135f0072ec666914ee65353c373f16dd.code
new file mode 100644
index 0000000000..3689d34dac
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-135f0072ec666914ee65353c373f16dd.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-145bae1e0404982867739437130f74da.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-145bae1e0404982867739437130f74da.code
new file mode 100644
index 0000000000..e8adfe944b
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-145bae1e0404982867739437130f74da.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-16e5b121a238d086f6b2d86d419a7232.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-16e5b121a238d086f6b2d86d419a7232.code
new file mode 100644
index 0000000000..1ebe13d3aa
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-16e5b121a238d086f6b2d86d419a7232.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-178f08bdd4ac3ac646aa14e4be9aed0b.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-178f08bdd4ac3ac646aa14e4be9aed0b.code
new file mode 100644
index 0000000000..67030a3c67
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-178f08bdd4ac3ac646aa14e4be9aed0b.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-18936d278513305b8c4556d8f688a588.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-18936d278513305b8c4556d8f688a588.code
new file mode 100644
index 0000000000..cc787ea070
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-18936d278513305b8c4556d8f688a588.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-193cbe1263b35e7f8a44197a7b8fbde7.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-193cbe1263b35e7f8a44197a7b8fbde7.code
new file mode 100644
index 0000000000..cf30696393
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-193cbe1263b35e7f8a44197a7b8fbde7.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-20d9ca0f5a7c872d8bdd236b7a18d252.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-20d9ca0f5a7c872d8bdd236b7a18d252.code
new file mode 100644
index 0000000000..9a482f15bc
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-20d9ca0f5a7c872d8bdd236b7a18d252.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-22850981aa4c33471ae73b6a5e0a7c6e.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-22850981aa4c33471ae73b6a5e0a7c6e.code
new file mode 100644
index 0000000000..8c6910ef53
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-22850981aa4c33471ae73b6a5e0a7c6e.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-22c9b52c2a3f79b8cae0e68fdad83f50.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-22c9b52c2a3f79b8cae0e68fdad83f50.code
new file mode 100644
index 0000000000..1c15b48ce1
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-22c9b52c2a3f79b8cae0e68fdad83f50.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-22d22ec414ba2350c97b48a7e7e3be32.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-22d22ec414ba2350c97b48a7e7e3be32.code
new file mode 100644
index 0000000000..882e90cdb1
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-22d22ec414ba2350c97b48a7e7e3be32.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2326959442e8031f946f83a476fadf7e.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2326959442e8031f946f83a476fadf7e.code
new file mode 100644
index 0000000000..56358f3857
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2326959442e8031f946f83a476fadf7e.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2350254dd9af16177025a7f029720941.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2350254dd9af16177025a7f029720941.code
new file mode 100644
index 0000000000..5f7b9bbc5f
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2350254dd9af16177025a7f029720941.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-23618fd500873e718619fa5a5c188bf8.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-23618fd500873e718619fa5a5c188bf8.code
new file mode 100644
index 0000000000..0f5b56e8cc
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-23618fd500873e718619fa5a5c188bf8.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-24e8103380a6659d527c5da3b8202350.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-24e8103380a6659d527c5da3b8202350.code
new file mode 100644
index 0000000000..3a6c7408fc
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-24e8103380a6659d527c5da3b8202350.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2529c1f5a5c23f94530303572e161099.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2529c1f5a5c23f94530303572e161099.code
new file mode 100644
index 0000000000..1d6516d071
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2529c1f5a5c23f94530303572e161099.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-25779bbfaefa0f04e7cea783b4d215ec.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-25779bbfaefa0f04e7cea783b4d215ec.code
new file mode 100644
index 0000000000..84ee86c0a4
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-25779bbfaefa0f04e7cea783b4d215ec.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-25a5f37ae219ac36734fe05d77489d68.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-25a5f37ae219ac36734fe05d77489d68.code
new file mode 100644
index 0000000000..a2e4b2748a
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-25a5f37ae219ac36734fe05d77489d68.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2629a4f104a436b89c956d2a1a1d0618.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2629a4f104a436b89c956d2a1a1d0618.code
new file mode 100644
index 0000000000..ea456ae145
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2629a4f104a436b89c956d2a1a1d0618.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-293697b3d7045099819aa544db43ab65.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-293697b3d7045099819aa544db43ab65.code
new file mode 100644
index 0000000000..b3e1525964
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-293697b3d7045099819aa544db43ab65.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2a6fca46f6fd61cc9057dfdd42d41140.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2a6fca46f6fd61cc9057dfdd42d41140.code
new file mode 100644
index 0000000000..d298de5fe7
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2a6fca46f6fd61cc9057dfdd42d41140.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2b0063f9770673808a24b307679e998d.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2b0063f9770673808a24b307679e998d.code
new file mode 100644
index 0000000000..6f4d692c88
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2b0063f9770673808a24b307679e998d.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2b9c84e8970f2f4030be999250a83dc1.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2b9c84e8970f2f4030be999250a83dc1.code
new file mode 100644
index 0000000000..6ca73fdabc
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2b9c84e8970f2f4030be999250a83dc1.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2bbd9bdf888221ca16b9effbc9dadd03.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2bbd9bdf888221ca16b9effbc9dadd03.code
new file mode 100644
index 0000000000..b3351b7b2b
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2bbd9bdf888221ca16b9effbc9dadd03.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2f7d171e8c676bc5fb239fcd1f927c1b.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2f7d171e8c676bc5fb239fcd1f927c1b.code
new file mode 100644
index 0000000000..05c6d58b10
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2f7d171e8c676bc5fb239fcd1f927c1b.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2f8dde5774bbf3dafb6def642a841fff.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2f8dde5774bbf3dafb6def642a841fff.code
new file mode 100644
index 0000000000..4d5c0849fa
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-2f8dde5774bbf3dafb6def642a841fff.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-301bcd225dde7c63d5ddba0c3618ef50.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-301bcd225dde7c63d5ddba0c3618ef50.code
new file mode 100644
index 0000000000..57fb22ab2b
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-301bcd225dde7c63d5ddba0c3618ef50.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-30cc50d9b163ea9242cbf2868fb4763d.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-30cc50d9b163ea9242cbf2868fb4763d.code
new file mode 100644
index 0000000000..5981f91c66
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-30cc50d9b163ea9242cbf2868fb4763d.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3253b4168e2b8a1b4a031f2d3c7cbe21.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3253b4168e2b8a1b4a031f2d3c7cbe21.code
new file mode 100644
index 0000000000..dcee2f1460
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3253b4168e2b8a1b4a031f2d3c7cbe21.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-339272dccda7a575822b74f00d15cab3.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-339272dccda7a575822b74f00d15cab3.code
new file mode 100644
index 0000000000..ac8ebf886a
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-339272dccda7a575822b74f00d15cab3.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-346a0a8ec2a14ff5c640800961498b4e.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-346a0a8ec2a14ff5c640800961498b4e.code
new file mode 100644
index 0000000000..b3cf21c218
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-346a0a8ec2a14ff5c640800961498b4e.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3559bf9d1dc51f5753dacdee8726bbad.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3559bf9d1dc51f5753dacdee8726bbad.code
new file mode 100644
index 0000000000..5a34585382
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3559bf9d1dc51f5753dacdee8726bbad.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3ac55f4a87e3d07ce7f38be294b7dc92.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3ac55f4a87e3d07ce7f38be294b7dc92.code
new file mode 100644
index 0000000000..8e82c184e0
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3ac55f4a87e3d07ce7f38be294b7dc92.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3b0b52d82ef81843ec0c61c1db6c8328.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3b0b52d82ef81843ec0c61c1db6c8328.code
new file mode 100644
index 0000000000..779d340057
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3b0b52d82ef81843ec0c61c1db6c8328.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3b1a5a787a40e6ca307d12be6f6beb85.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3b1a5a787a40e6ca307d12be6f6beb85.code
new file mode 100644
index 0000000000..bd3e2293ec
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3b1a5a787a40e6ca307d12be6f6beb85.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3c1144d8ea42854d577adfce6358fb42.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3c1144d8ea42854d577adfce6358fb42.code
new file mode 100644
index 0000000000..42337ea2d6
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3c1144d8ea42854d577adfce6358fb42.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3c3b2fef64d41f516120fec7cdd8aab0.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3c3b2fef64d41f516120fec7cdd8aab0.code
new file mode 100644
index 0000000000..6990b9c7d4
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3c3b2fef64d41f516120fec7cdd8aab0.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3d231343ca48b484447f578e353950f3.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3d231343ca48b484447f578e353950f3.code
new file mode 100644
index 0000000000..4913d571b7
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3d231343ca48b484447f578e353950f3.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3d7d83d3b0255f26e670a27382e4db71.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3d7d83d3b0255f26e670a27382e4db71.code
new file mode 100644
index 0000000000..4ac4cfa218
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3d7d83d3b0255f26e670a27382e4db71.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3f844807b2149f67bee9eceb5bf254cf.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3f844807b2149f67bee9eceb5bf254cf.code
new file mode 100644
index 0000000000..d000fa0ddc
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3f844807b2149f67bee9eceb5bf254cf.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3fce3b494c16b2fae2ce5ad8e4c14626.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3fce3b494c16b2fae2ce5ad8e4c14626.code
new file mode 100644
index 0000000000..dee594df88
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-3fce3b494c16b2fae2ce5ad8e4c14626.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-403c7278ccd5659deba561267975a265.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-403c7278ccd5659deba561267975a265.code
new file mode 100644
index 0000000000..ec74762006
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-403c7278ccd5659deba561267975a265.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4098138d815461308842936ff7735752.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4098138d815461308842936ff7735752.code
new file mode 100644
index 0000000000..caa10cc9c2
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4098138d815461308842936ff7735752.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-40a4be36e24d5476b2a22a17f7777a42.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-40a4be36e24d5476b2a22a17f7777a42.code
new file mode 100644
index 0000000000..2e6aef6e0a
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-40a4be36e24d5476b2a22a17f7777a42.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-41c8feff8110a31e35b1b0b397cd1c27.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-41c8feff8110a31e35b1b0b397cd1c27.code
new file mode 100644
index 0000000000..23eb8d1b4c
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-41c8feff8110a31e35b1b0b397cd1c27.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-41de090f2121417c1e7cbceb628ad115.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-41de090f2121417c1e7cbceb628ad115.code
new file mode 100644
index 0000000000..6341fd27cc
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-41de090f2121417c1e7cbceb628ad115.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-42ce9d28cf9be5da8f3229f43acd466c.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-42ce9d28cf9be5da8f3229f43acd466c.code
new file mode 100644
index 0000000000..663c080411
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-42ce9d28cf9be5da8f3229f43acd466c.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-44bc1626598ada5546bbebcaa5baf69c.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-44bc1626598ada5546bbebcaa5baf69c.code
new file mode 100644
index 0000000000..f6956f118d
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-44bc1626598ada5546bbebcaa5baf69c.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-44efdb292704260e2087dafe9686819a.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-44efdb292704260e2087dafe9686819a.code
new file mode 100644
index 0000000000..d993424a77
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-44efdb292704260e2087dafe9686819a.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-45848a6bd0bcbff1714b15476ba6efa3.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-45848a6bd0bcbff1714b15476ba6efa3.code
new file mode 100644
index 0000000000..91a7e25a87
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-45848a6bd0bcbff1714b15476ba6efa3.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-467eff0a4c74e281593e5f54fd041075.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-467eff0a4c74e281593e5f54fd041075.code
new file mode 100644
index 0000000000..f1f39a7a96
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-467eff0a4c74e281593e5f54fd041075.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-46a9f3b02458712a63a702dfa6d4965d.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-46a9f3b02458712a63a702dfa6d4965d.code
new file mode 100644
index 0000000000..648b372361
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-46a9f3b02458712a63a702dfa6d4965d.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-470088d13f5d130f410df7fe1cae427b.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-470088d13f5d130f410df7fe1cae427b.code
new file mode 100644
index 0000000000..7441752f02
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-470088d13f5d130f410df7fe1cae427b.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-479d4900e25922a97e431f57efaf8875.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-479d4900e25922a97e431f57efaf8875.code
new file mode 100644
index 0000000000..69e83e71ec
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-479d4900e25922a97e431f57efaf8875.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-47ba7b077c3a3e079d22a7e1f7c319bf.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-47ba7b077c3a3e079d22a7e1f7c319bf.code
new file mode 100644
index 0000000000..53e47853fb
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-47ba7b077c3a3e079d22a7e1f7c319bf.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4a255391ca10a8774545bd849eb7fe40.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4a255391ca10a8774545bd849eb7fe40.code
new file mode 100644
index 0000000000..d4fa730199
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4a255391ca10a8774545bd849eb7fe40.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4b2bb0f5f7e13873dba92de0062847ac.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4b2bb0f5f7e13873dba92de0062847ac.code
new file mode 100644
index 0000000000..d7e907ac59
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4b2bb0f5f7e13873dba92de0062847ac.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4b5b594d98dd19ef74530ebf2f3beac8.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4b5b594d98dd19ef74530ebf2f3beac8.code
new file mode 100644
index 0000000000..48cd121b2f
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4b5b594d98dd19ef74530ebf2f3beac8.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4c24b6e1e8149c6f8a4d2104598d59c5.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4c24b6e1e8149c6f8a4d2104598d59c5.code
new file mode 100644
index 0000000000..3ea915c007
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4c24b6e1e8149c6f8a4d2104598d59c5.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4c3767e02db9707551df300f469b79d9.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4c3767e02db9707551df300f469b79d9.code
new file mode 100644
index 0000000000..15d038c819
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4c3767e02db9707551df300f469b79d9.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4c713c7b9e3f9e00210a590152c61ae3.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4c713c7b9e3f9e00210a590152c61ae3.code
new file mode 100644
index 0000000000..e393932808
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4c713c7b9e3f9e00210a590152c61ae3.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4d98995dbaecbc2c76619b57615da73c.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4d98995dbaecbc2c76619b57615da73c.code
new file mode 100644
index 0000000000..8ae3650b2c
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4d98995dbaecbc2c76619b57615da73c.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4dbc93661ef1ffec841fe7f3a63889f8.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4dbc93661ef1ffec841fe7f3a63889f8.code
new file mode 100644
index 0000000000..2edb250370
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4dbc93661ef1ffec841fe7f3a63889f8.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4fd7f5c5d31dfc49716f37ccb996761d.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4fd7f5c5d31dfc49716f37ccb996761d.code
new file mode 100644
index 0000000000..bfa04dad5c
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-4fd7f5c5d31dfc49716f37ccb996761d.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-52e743d245ed2ff25e61e10919f4d042.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-52e743d245ed2ff25e61e10919f4d042.code
new file mode 100644
index 0000000000..608fd51c53
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-52e743d245ed2ff25e61e10919f4d042.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-530221f6c172961c1698e808438d23f7.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-530221f6c172961c1698e808438d23f7.code
new file mode 100644
index 0000000000..1abe6e2733
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-530221f6c172961c1698e808438d23f7.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-54504603e387a38d7c57257c3f0d7f01.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-54504603e387a38d7c57257c3f0d7f01.code
new file mode 100644
index 0000000000..1f408df5d2
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-54504603e387a38d7c57257c3f0d7f01.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-54b7d250dfc78a819fd2a016ebfe86e3.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-54b7d250dfc78a819fd2a016ebfe86e3.code
new file mode 100644
index 0000000000..9fe5298b4f
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-54b7d250dfc78a819fd2a016ebfe86e3.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-54bf163b4e5e695ec07fda409ae29d6a.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-54bf163b4e5e695ec07fda409ae29d6a.code
new file mode 100644
index 0000000000..6659192d79
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-54bf163b4e5e695ec07fda409ae29d6a.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-56faffaba6b210810e17df0fc9ecd801.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-56faffaba6b210810e17df0fc9ecd801.code
new file mode 100644
index 0000000000..e930ef3b23
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-56faffaba6b210810e17df0fc9ecd801.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-56fbf7a1ec8a9546ba22810e2534dc45.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-56fbf7a1ec8a9546ba22810e2534dc45.code
new file mode 100644
index 0000000000..f718929896
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-56fbf7a1ec8a9546ba22810e2534dc45.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-590cb018ba4b15a643a53d28a339eda4.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-590cb018ba4b15a643a53d28a339eda4.code
new file mode 100644
index 0000000000..7ad41b6179
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-590cb018ba4b15a643a53d28a339eda4.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-5a6fc6112908a1c9e0236a18694f975c.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-5a6fc6112908a1c9e0236a18694f975c.code
new file mode 100644
index 0000000000..cdfb61d624
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-5a6fc6112908a1c9e0236a18694f975c.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-5c99f1d237b827bc999ff1d2f88bb6b6.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-5c99f1d237b827bc999ff1d2f88bb6b6.code
new file mode 100644
index 0000000000..443bbb2ecd
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-5c99f1d237b827bc999ff1d2f88bb6b6.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-5db2128f903fe01be70a00ebfb6f2f2e.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-5db2128f903fe01be70a00ebfb6f2f2e.code
new file mode 100644
index 0000000000..3bb7c4d475
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-5db2128f903fe01be70a00ebfb6f2f2e.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-5e0e64d14db9e28e1fd7ec9a0c2292c1.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-5e0e64d14db9e28e1fd7ec9a0c2292c1.code
new file mode 100644
index 0000000000..97b19e2436
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-5e0e64d14db9e28e1fd7ec9a0c2292c1.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-5e1bcaca11dba469c6c6cce736ca3375.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-5e1bcaca11dba469c6c6cce736ca3375.code
new file mode 100644
index 0000000000..616c61adb0
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-5e1bcaca11dba469c6c6cce736ca3375.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-5e5be3953879392281d0ef7da07dc4da.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-5e5be3953879392281d0ef7da07dc4da.code
new file mode 100644
index 0000000000..be7361e53c
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-5e5be3953879392281d0ef7da07dc4da.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-630b4ab3603469beeb26b8a37c9d1a10.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-630b4ab3603469beeb26b8a37c9d1a10.code
new file mode 100644
index 0000000000..a73f60a116
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-630b4ab3603469beeb26b8a37c9d1a10.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-63a23a968cebd65f642ca9e5112b8e58.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-63a23a968cebd65f642ca9e5112b8e58.code
new file mode 100644
index 0000000000..a9f0c22c3e
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-63a23a968cebd65f642ca9e5112b8e58.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-63e1a565bb42d31f7974f8f3bf420019.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-63e1a565bb42d31f7974f8f3bf420019.code
new file mode 100644
index 0000000000..633c1feca2
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-63e1a565bb42d31f7974f8f3bf420019.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-643e375aa81d7b3150825e428057c1df.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-643e375aa81d7b3150825e428057c1df.code
new file mode 100644
index 0000000000..2c210fdf49
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-643e375aa81d7b3150825e428057c1df.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-659252c4e338ea8dea518c76117f0ebf.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-659252c4e338ea8dea518c76117f0ebf.code
new file mode 100644
index 0000000000..5d4b715a21
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-659252c4e338ea8dea518c76117f0ebf.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-65c6400f8192c9583b5269a893f3493f.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-65c6400f8192c9583b5269a893f3493f.code
new file mode 100644
index 0000000000..c71ff71647
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-65c6400f8192c9583b5269a893f3493f.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-68e0b58d4af0ff22f441539c6b6f04c8.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-68e0b58d4af0ff22f441539c6b6f04c8.code
new file mode 100644
index 0000000000..f2b5e0b30b
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-68e0b58d4af0ff22f441539c6b6f04c8.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-691f8ffdfcb6d257aa2a78d7a4aca383.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-691f8ffdfcb6d257aa2a78d7a4aca383.code
new file mode 100644
index 0000000000..0f9cc616aa
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-691f8ffdfcb6d257aa2a78d7a4aca383.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-69f561c8b21142073e9bde4ce8b45f33.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-69f561c8b21142073e9bde4ce8b45f33.code
new file mode 100644
index 0000000000..19ad65e493
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-69f561c8b21142073e9bde4ce8b45f33.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6acaa0ced7566a1dd7766004c10ea278.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6acaa0ced7566a1dd7766004c10ea278.code
new file mode 100644
index 0000000000..e433921ae4
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6acaa0ced7566a1dd7766004c10ea278.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6ae07893ee32ff22b858bcdd413a6626.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6ae07893ee32ff22b858bcdd413a6626.code
new file mode 100644
index 0000000000..8474944cee
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6ae07893ee32ff22b858bcdd413a6626.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6ae0eaf34278d6b0efd40dded28dae40.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6ae0eaf34278d6b0efd40dded28dae40.code
new file mode 100644
index 0000000000..52b54b09d0
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6ae0eaf34278d6b0efd40dded28dae40.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6b706f0e1f536ed3daa1115e93b836d9.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6b706f0e1f536ed3daa1115e93b836d9.code
new file mode 100644
index 0000000000..8d7c484b7c
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6b706f0e1f536ed3daa1115e93b836d9.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6bdb137cb279fbab8c4dc718e43ef7ae.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6bdb137cb279fbab8c4dc718e43ef7ae.code
new file mode 100644
index 0000000000..b704e0379c
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6bdb137cb279fbab8c4dc718e43ef7ae.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6c2c4fa4fea3231dba9f12671ccced2d.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6c2c4fa4fea3231dba9f12671ccced2d.code
new file mode 100644
index 0000000000..79463e6965
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6c2c4fa4fea3231dba9f12671ccced2d.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6ce97037fede4b441a1bc4ed03981777.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6ce97037fede4b441a1bc4ed03981777.code
new file mode 100644
index 0000000000..c5e6dd1990
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6ce97037fede4b441a1bc4ed03981777.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6fba464e7266b4a2fbaebbab6c32fbaf.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6fba464e7266b4a2fbaebbab6c32fbaf.code
new file mode 100644
index 0000000000..25319c7fa7
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-6fba464e7266b4a2fbaebbab6c32fbaf.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-730ec9da6202dc4422fceebe98c6b87b.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-730ec9da6202dc4422fceebe98c6b87b.code
new file mode 100644
index 0000000000..55326393a3
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-730ec9da6202dc4422fceebe98c6b87b.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-794b4af611cb333ee68c0ff2877a96f2.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-794b4af611cb333ee68c0ff2877a96f2.code
new file mode 100644
index 0000000000..388a8e4c5c
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-794b4af611cb333ee68c0ff2877a96f2.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-79f8db932c763cfa918e3e0c3c071906.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-79f8db932c763cfa918e3e0c3c071906.code
new file mode 100644
index 0000000000..49114248fb
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-79f8db932c763cfa918e3e0c3c071906.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-7cb9901a06ffd40fb980eb38ac58baa0.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-7cb9901a06ffd40fb980eb38ac58baa0.code
new file mode 100644
index 0000000000..d34ac6c600
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-7cb9901a06ffd40fb980eb38ac58baa0.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-7d10de3f10f9423ccec26f21d7b8b11b.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-7d10de3f10f9423ccec26f21d7b8b11b.code
new file mode 100644
index 0000000000..f392faeaff
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-7d10de3f10f9423ccec26f21d7b8b11b.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-7dae40e125cd31a91aa320a88ee537ca.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-7dae40e125cd31a91aa320a88ee537ca.code
new file mode 100644
index 0000000000..645148f7c1
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-7dae40e125cd31a91aa320a88ee537ca.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-7dd70a4932adc1d1ef0ced6ab7dc5fac.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-7dd70a4932adc1d1ef0ced6ab7dc5fac.code
new file mode 100644
index 0000000000..016f3d9875
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-7dd70a4932adc1d1ef0ced6ab7dc5fac.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-7f69452657b2b9c7b6d4022c0b7312d4.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-7f69452657b2b9c7b6d4022c0b7312d4.code
new file mode 100644
index 0000000000..d0f74c18dd
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-7f69452657b2b9c7b6d4022c0b7312d4.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-7fe5c03665cb3187d6ac24693692476c.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-7fe5c03665cb3187d6ac24693692476c.code
new file mode 100644
index 0000000000..c82793b063
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-7fe5c03665cb3187d6ac24693692476c.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-802a0e1fcc9f1191bfbed81dc50acfc2.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-802a0e1fcc9f1191bfbed81dc50acfc2.code
new file mode 100644
index 0000000000..6a20735378
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-802a0e1fcc9f1191bfbed81dc50acfc2.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-80d7a1f597ebc4e4637d6805749a1ddc.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-80d7a1f597ebc4e4637d6805749a1ddc.code
new file mode 100644
index 0000000000..4f14d4643e
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-80d7a1f597ebc4e4637d6805749a1ddc.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-849cd948318328348d98b5263bbb9646.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-849cd948318328348d98b5263bbb9646.code
new file mode 100644
index 0000000000..bccf008c09
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-849cd948318328348d98b5263bbb9646.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-85d153fbaf60ca49ef58a0048d07fb60.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-85d153fbaf60ca49ef58a0048d07fb60.code
new file mode 100644
index 0000000000..0130a38dbc
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-85d153fbaf60ca49ef58a0048d07fb60.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-86b998368d3eb661b02ac14788fd67ee.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-86b998368d3eb661b02ac14788fd67ee.code
new file mode 100644
index 0000000000..32e0597137
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-86b998368d3eb661b02ac14788fd67ee.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-86bc00fe3f692b9cb2a984489fa39cf4.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-86bc00fe3f692b9cb2a984489fa39cf4.code
new file mode 100644
index 0000000000..fdc084014b
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-86bc00fe3f692b9cb2a984489fa39cf4.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-87f2678d4035ac2d3bd7a61774ab6d53.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-87f2678d4035ac2d3bd7a61774ab6d53.code
new file mode 100644
index 0000000000..6dc8832dd9
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-87f2678d4035ac2d3bd7a61774ab6d53.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-89639f2ec019b8ef19052c87ce440964.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-89639f2ec019b8ef19052c87ce440964.code
new file mode 100644
index 0000000000..31d191040e
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-89639f2ec019b8ef19052c87ce440964.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-89a00e61e6c84a48f69c7f18ac0c46c9.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-89a00e61e6c84a48f69c7f18ac0c46c9.code
new file mode 100644
index 0000000000..7bc52326a6
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-89a00e61e6c84a48f69c7f18ac0c46c9.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-8a95e2b50bcee0a4862dfb7be2213add.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-8a95e2b50bcee0a4862dfb7be2213add.code
new file mode 100644
index 0000000000..598244f150
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-8a95e2b50bcee0a4862dfb7be2213add.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-8d410410157ea3152359dfb8899f3f1a.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-8d410410157ea3152359dfb8899f3f1a.code
new file mode 100644
index 0000000000..c009d0ff69
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-8d410410157ea3152359dfb8899f3f1a.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-8ff09ba78cc2e9fe83ea79291bd67401.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-8ff09ba78cc2e9fe83ea79291bd67401.code
new file mode 100644
index 0000000000..0952155dc1
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-8ff09ba78cc2e9fe83ea79291bd67401.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-90c68653f366b3e7233fcfadc98e4658.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-90c68653f366b3e7233fcfadc98e4658.code
new file mode 100644
index 0000000000..9566c5906f
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-90c68653f366b3e7233fcfadc98e4658.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-92c9c51eb1a9c57787b96ea8eb0474e1.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-92c9c51eb1a9c57787b96ea8eb0474e1.code
new file mode 100644
index 0000000000..37b162693a
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-92c9c51eb1a9c57787b96ea8eb0474e1.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-956d236df4baf1e150777ce3f1ca5645.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-956d236df4baf1e150777ce3f1ca5645.code
new file mode 100644
index 0000000000..e6c71df22f
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-956d236df4baf1e150777ce3f1ca5645.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-972b3640ceef699e52cf4d6c6beb3f9b.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-972b3640ceef699e52cf4d6c6beb3f9b.code
new file mode 100644
index 0000000000..fb187f0699
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-972b3640ceef699e52cf4d6c6beb3f9b.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-984018b7f9ba6ff42324c66d4baf38bb.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-984018b7f9ba6ff42324c66d4baf38bb.code
new file mode 100644
index 0000000000..1a472a3106
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-984018b7f9ba6ff42324c66d4baf38bb.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-984c6aab79cd62d5ad82e4cefe0c177f.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-984c6aab79cd62d5ad82e4cefe0c177f.code
new file mode 100644
index 0000000000..24b33de78e
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-984c6aab79cd62d5ad82e4cefe0c177f.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9a7bd6330a46d686e8ff272680034a4d.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9a7bd6330a46d686e8ff272680034a4d.code
new file mode 100644
index 0000000000..1ff856de54
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9a7bd6330a46d686e8ff272680034a4d.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9abeeeda977222c22b4867effcbb357c.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9abeeeda977222c22b4867effcbb357c.code
new file mode 100644
index 0000000000..e631a04314
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9abeeeda977222c22b4867effcbb357c.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9bc0a7a18d2e1ee65d789d16f80603f4.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9bc0a7a18d2e1ee65d789d16f80603f4.code
new file mode 100644
index 0000000000..7cc442729a
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9bc0a7a18d2e1ee65d789d16f80603f4.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9bcbe50ad590729c2892d7273d1e27ef.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9bcbe50ad590729c2892d7273d1e27ef.code
new file mode 100644
index 0000000000..c47ce99cb8
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9bcbe50ad590729c2892d7273d1e27ef.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9c6e835c97c6b2ac048a7c9e8b458f49.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9c6e835c97c6b2ac048a7c9e8b458f49.code
new file mode 100644
index 0000000000..ea09379e51
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9c6e835c97c6b2ac048a7c9e8b458f49.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9d7175eff2401e7535e5965dc52b8395.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9d7175eff2401e7535e5965dc52b8395.code
new file mode 100644
index 0000000000..1633f9023a
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9d7175eff2401e7535e5965dc52b8395.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9d9a27229d1fd48db4ad30dbdbf6c977.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9d9a27229d1fd48db4ad30dbdbf6c977.code
new file mode 100644
index 0000000000..018bfcb075
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9d9a27229d1fd48db4ad30dbdbf6c977.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9e134048f6ce6555f99b95f5e4b6771c.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9e134048f6ce6555f99b95f5e4b6771c.code
new file mode 100644
index 0000000000..8f9987f165
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9e134048f6ce6555f99b95f5e4b6771c.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9f3902bfdf43a499da90976266bef9b5.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9f3902bfdf43a499da90976266bef9b5.code
new file mode 100644
index 0000000000..f6937b8129
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-9f3902bfdf43a499da90976266bef9b5.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a06e13db7f7b8c53de5daeea91ea6c22.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a06e13db7f7b8c53de5daeea91ea6c22.code
new file mode 100644
index 0000000000..06d2a0dad3
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a06e13db7f7b8c53de5daeea91ea6c22.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a1e1aacaa6f47c9a924b3eae8e3c22f1.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a1e1aacaa6f47c9a924b3eae8e3c22f1.code
new file mode 100644
index 0000000000..b3bc0a02c4
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a1e1aacaa6f47c9a924b3eae8e3c22f1.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a2ad6edc48bca1ea0382da93e723a01a.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a2ad6edc48bca1ea0382da93e723a01a.code
new file mode 100644
index 0000000000..d77c4179c7
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a2ad6edc48bca1ea0382da93e723a01a.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a2bb7d56b5be0d8d97d6800ce05485d1.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a2bb7d56b5be0d8d97d6800ce05485d1.code
new file mode 100644
index 0000000000..7ba54e7f2c
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a2bb7d56b5be0d8d97d6800ce05485d1.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a2e21358a8be89d67f34f98fb97c3c10.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a2e21358a8be89d67f34f98fb97c3c10.code
new file mode 100644
index 0000000000..527dd8dd2c
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a2e21358a8be89d67f34f98fb97c3c10.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a48178f9edf60c328f191ff45dc93fef.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a48178f9edf60c328f191ff45dc93fef.code
new file mode 100644
index 0000000000..67173cb79d
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a48178f9edf60c328f191ff45dc93fef.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a4fea4690471401b654656c0bdc1b2b4.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a4fea4690471401b654656c0bdc1b2b4.code
new file mode 100644
index 0000000000..f2919a416f
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a4fea4690471401b654656c0bdc1b2b4.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a589d46b9ad0bf35dd3b3bc79eebf7ed.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a589d46b9ad0bf35dd3b3bc79eebf7ed.code
new file mode 100644
index 0000000000..99f303cfd4
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a589d46b9ad0bf35dd3b3bc79eebf7ed.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a65db03492c2aedd2846985aa7652e38.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a65db03492c2aedd2846985aa7652e38.code
new file mode 100644
index 0000000000..f1e786341a
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a65db03492c2aedd2846985aa7652e38.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a7133889ea8c19b5a02b9a8ac5260f8e.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a7133889ea8c19b5a02b9a8ac5260f8e.code
new file mode 100644
index 0000000000..a11a68967b
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-a7133889ea8c19b5a02b9a8ac5260f8e.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-aa7b6163aaa9ee3baf61209df012f958.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-aa7b6163aaa9ee3baf61209df012f958.code
new file mode 100644
index 0000000000..c9f1b92e6f
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-aa7b6163aaa9ee3baf61209df012f958.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-aa7d7b4c846356234593d5d7d9cc45f4.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-aa7d7b4c846356234593d5d7d9cc45f4.code
new file mode 100644
index 0000000000..ce3664deb6
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-aa7d7b4c846356234593d5d7d9cc45f4.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-aa83fab5855bad94b0494f1df874f9aa.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-aa83fab5855bad94b0494f1df874f9aa.code
new file mode 100644
index 0000000000..996db1d045
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-aa83fab5855bad94b0494f1df874f9aa.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ac71d4f7283877546c2bf5df42de7611.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ac71d4f7283877546c2bf5df42de7611.code
new file mode 100644
index 0000000000..aa4c5ab935
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ac71d4f7283877546c2bf5df42de7611.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ac9e3c9fde1e973597a8f9b0b5d91b45.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ac9e3c9fde1e973597a8f9b0b5d91b45.code
new file mode 100644
index 0000000000..4d53fd8602
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ac9e3c9fde1e973597a8f9b0b5d91b45.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-add86b56f8d8853412ff96791d55335c.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-add86b56f8d8853412ff96791d55335c.code
new file mode 100644
index 0000000000..184b826d64
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-add86b56f8d8853412ff96791d55335c.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-b1307670346705a2e9fae5802a1d723c.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-b1307670346705a2e9fae5802a1d723c.code
new file mode 100644
index 0000000000..c04d1e81f3
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-b1307670346705a2e9fae5802a1d723c.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-b13c6b893b34568e3dbe816c7672f24b.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-b13c6b893b34568e3dbe816c7672f24b.code
new file mode 100644
index 0000000000..e72b7e8259
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-b13c6b893b34568e3dbe816c7672f24b.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-b57c3accef3d7a8f012a1d0b4f9c42bd.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-b57c3accef3d7a8f012a1d0b4f9c42bd.code
new file mode 100644
index 0000000000..27bcc9b007
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-b57c3accef3d7a8f012a1d0b4f9c42bd.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-b6129243747680339873c13fe3a30b16.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-b6129243747680339873c13fe3a30b16.code
new file mode 100644
index 0000000000..319150276e
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-b6129243747680339873c13fe3a30b16.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-b8bfb077a7edabf0a3033a15c3dc6eb6.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-b8bfb077a7edabf0a3033a15c3dc6eb6.code
new file mode 100644
index 0000000000..fccc1d495c
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-b8bfb077a7edabf0a3033a15c3dc6eb6.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-b8bff6a7ac347ad280b3216ff0b2416f.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-b8bff6a7ac347ad280b3216ff0b2416f.code
new file mode 100644
index 0000000000..f073d61930
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-b8bff6a7ac347ad280b3216ff0b2416f.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-bca18eb81f2f8f3c878c8427963bc632.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-bca18eb81f2f8f3c878c8427963bc632.code
new file mode 100644
index 0000000000..6cba362049
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-bca18eb81f2f8f3c878c8427963bc632.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-bcaa7a8e67b7ae99127a3735ad3dbbc8.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-bcaa7a8e67b7ae99127a3735ad3dbbc8.code
new file mode 100644
index 0000000000..45c443eccf
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-bcaa7a8e67b7ae99127a3735ad3dbbc8.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-bd9d4c6613ad47de270592a1cec2b53a.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-bd9d4c6613ad47de270592a1cec2b53a.code
new file mode 100644
index 0000000000..cfccaad89e
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-bd9d4c6613ad47de270592a1cec2b53a.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-bf446d45dcb2d385c08b0532f405dc47.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-bf446d45dcb2d385c08b0532f405dc47.code
new file mode 100644
index 0000000000..0c5ac8488c
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-bf446d45dcb2d385c08b0532f405dc47.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c09a7958dd7a5bb6f2f3d1d5b6b434da.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c09a7958dd7a5bb6f2f3d1d5b6b434da.code
new file mode 100644
index 0000000000..967a0166d9
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c09a7958dd7a5bb6f2f3d1d5b6b434da.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c0e1765f89f0e0a68f4b8fa2b829b690.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c0e1765f89f0e0a68f4b8fa2b829b690.code
new file mode 100644
index 0000000000..23a9709362
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c0e1765f89f0e0a68f4b8fa2b829b690.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c3008244d3f3f6654494c2ac309babe5.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c3008244d3f3f6654494c2ac309babe5.code
new file mode 100644
index 0000000000..61dc03c669
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c3008244d3f3f6654494c2ac309babe5.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c4d209d980ecf5e8ba456cecb071220d.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c4d209d980ecf5e8ba456cecb071220d.code
new file mode 100644
index 0000000000..60714653d2
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c4d209d980ecf5e8ba456cecb071220d.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c5d2f5361acda3b20eb2be4522b9bb09.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c5d2f5361acda3b20eb2be4522b9bb09.code
new file mode 100644
index 0000000000..9bdba84c02
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c5d2f5361acda3b20eb2be4522b9bb09.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c5ef98482f1293306fd10e82aeaad5e8.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c5ef98482f1293306fd10e82aeaad5e8.code
new file mode 100644
index 0000000000..5aafba33cb
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c5ef98482f1293306fd10e82aeaad5e8.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c63758e70ed59c97aa7e8ad063c5f571.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c63758e70ed59c97aa7e8ad063c5f571.code
new file mode 100644
index 0000000000..acdacd938f
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c63758e70ed59c97aa7e8ad063c5f571.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c6f8858e857eae536621fc51e2c709c6.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c6f8858e857eae536621fc51e2c709c6.code
new file mode 100644
index 0000000000..83431f35fa
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c6f8858e857eae536621fc51e2c709c6.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c7421f06d21fb7b12374f84f39a1b80e.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c7421f06d21fb7b12374f84f39a1b80e.code
new file mode 100644
index 0000000000..6c453cdca9
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c7421f06d21fb7b12374f84f39a1b80e.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c95478d84c480d577387901faf99c733.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c95478d84c480d577387901faf99c733.code
new file mode 100644
index 0000000000..bfdcaa0fb0
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-c95478d84c480d577387901faf99c733.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-caa46631ea75a0cdca443ebb695281da.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-caa46631ea75a0cdca443ebb695281da.code
new file mode 100644
index 0000000000..b7166b69b0
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-caa46631ea75a0cdca443ebb695281da.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cb64a3d36735085f1814ccc1796f6cc6.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cb64a3d36735085f1814ccc1796f6cc6.code
new file mode 100644
index 0000000000..e677ea6c6e
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cb64a3d36735085f1814ccc1796f6cc6.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cb6d769fc470d7c176facf31a0dca72a.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cb6d769fc470d7c176facf31a0dca72a.code
new file mode 100644
index 0000000000..06d6057410
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cb6d769fc470d7c176facf31a0dca72a.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cb95ebca1a99bbc9797cdbe883303b72.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cb95ebca1a99bbc9797cdbe883303b72.code
new file mode 100644
index 0000000000..59882cbae3
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cb95ebca1a99bbc9797cdbe883303b72.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cb999bfe4c3a4b8913cedc12915a3184.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cb999bfe4c3a4b8913cedc12915a3184.code
new file mode 100644
index 0000000000..5f3c814f86
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cb999bfe4c3a4b8913cedc12915a3184.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cc2f069e562d58f1be9ecdbfe1af904f.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cc2f069e562d58f1be9ecdbfe1af904f.code
new file mode 100644
index 0000000000..bc1870aa17
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cc2f069e562d58f1be9ecdbfe1af904f.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cdd48c35a535b396e7dde77ad3681d99.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cdd48c35a535b396e7dde77ad3681d99.code
new file mode 100644
index 0000000000..526a1874f7
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cdd48c35a535b396e7dde77ad3681d99.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cddfc9bbdb6c0a83c12ebc18a65b6368.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cddfc9bbdb6c0a83c12ebc18a65b6368.code
new file mode 100644
index 0000000000..983bb39f27
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cddfc9bbdb6c0a83c12ebc18a65b6368.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ce527717fc5a469d58944e8c34b7a0c5.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ce527717fc5a469d58944e8c34b7a0c5.code
new file mode 100644
index 0000000000..3ef437f45c
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ce527717fc5a469d58944e8c34b7a0c5.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cfc822464dda65d225cb5dfb6898622d.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cfc822464dda65d225cb5dfb6898622d.code
new file mode 100644
index 0000000000..0f3aed6682
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cfc822464dda65d225cb5dfb6898622d.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cfeb3978e683d98ce7b1bf81d971583b.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cfeb3978e683d98ce7b1bf81d971583b.code
new file mode 100644
index 0000000000..b450d64896
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-cfeb3978e683d98ce7b1bf81d971583b.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d02662a656a1c1364f0ae778f16ad490.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d02662a656a1c1364f0ae778f16ad490.code
new file mode 100644
index 0000000000..2121135998
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d02662a656a1c1364f0ae778f16ad490.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d0c283ed4cea829a8ba7e583d1f4e77b.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d0c283ed4cea829a8ba7e583d1f4e77b.code
new file mode 100644
index 0000000000..e6bcfec83f
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d0c283ed4cea829a8ba7e583d1f4e77b.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d158cc9fd1c064cf42771127eb98e632.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d158cc9fd1c064cf42771127eb98e632.code
new file mode 100644
index 0000000000..5ecd54abc3
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d158cc9fd1c064cf42771127eb98e632.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d3994b58fae24f648036bca50c8537e6.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d3994b58fae24f648036bca50c8537e6.code
new file mode 100644
index 0000000000..5965d4077a
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d3994b58fae24f648036bca50c8537e6.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d60b9c09d18cf5cbab04c5ca699ad513.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d60b9c09d18cf5cbab04c5ca699ad513.code
new file mode 100644
index 0000000000..12cbb30b26
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d60b9c09d18cf5cbab04c5ca699ad513.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d69b927051328875398fb7224c8dd868.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d69b927051328875398fb7224c8dd868.code
new file mode 100644
index 0000000000..26adba2f69
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d69b927051328875398fb7224c8dd868.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d6a7576b538a0d56f73656a5a0bce5a6.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d6a7576b538a0d56f73656a5a0bce5a6.code
new file mode 100644
index 0000000000..60c477d526
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d6a7576b538a0d56f73656a5a0bce5a6.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d6ea41f722f667c4e316afeb905ef83f.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d6ea41f722f667c4e316afeb905ef83f.code
new file mode 100644
index 0000000000..39c78ad1f0
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d6ea41f722f667c4e316afeb905ef83f.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d6fc1499ca7d7967928904df6497dc01.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d6fc1499ca7d7967928904df6497dc01.code
new file mode 100644
index 0000000000..535054449b
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d6fc1499ca7d7967928904df6497dc01.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d97adae9321217879663f232e1291e9a.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d97adae9321217879663f232e1291e9a.code
new file mode 100644
index 0000000000..a46e27715b
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-d97adae9321217879663f232e1291e9a.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-dae512503266875c55590c461dad17a6.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-dae512503266875c55590c461dad17a6.code
new file mode 100644
index 0000000000..1200332ea6
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-dae512503266875c55590c461dad17a6.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-dd7aaa794b504a8288be570bc8f61d01.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-dd7aaa794b504a8288be570bc8f61d01.code
new file mode 100644
index 0000000000..4c073e5125
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-dd7aaa794b504a8288be570bc8f61d01.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ddf642ec977991fc45a649b16120731f.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ddf642ec977991fc45a649b16120731f.code
new file mode 100644
index 0000000000..67a4f23d71
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ddf642ec977991fc45a649b16120731f.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-de1cee26973f9f2f59ca07c935ea19cb.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-de1cee26973f9f2f59ca07c935ea19cb.code
new file mode 100644
index 0000000000..d37162b93f
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-de1cee26973f9f2f59ca07c935ea19cb.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-dea22b2142b74cc2b076412513d49079.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-dea22b2142b74cc2b076412513d49079.code
new file mode 100644
index 0000000000..c5909c660e
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-dea22b2142b74cc2b076412513d49079.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-e3878e53bd1569157422c6ebaf916cc6.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-e3878e53bd1569157422c6ebaf916cc6.code
new file mode 100644
index 0000000000..5291707e0d
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-e3878e53bd1569157422c6ebaf916cc6.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-e439e54af5a1418395d7848da44325c4.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-e439e54af5a1418395d7848da44325c4.code
new file mode 100644
index 0000000000..a1b270c36b
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-e439e54af5a1418395d7848da44325c4.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-e4a50c97450a8fd0fe3416b9a5b2079a.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-e4a50c97450a8fd0fe3416b9a5b2079a.code
new file mode 100644
index 0000000000..740a590443
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-e4a50c97450a8fd0fe3416b9a5b2079a.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-e5a09a5809f268a13db62d8a43beecf7.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-e5a09a5809f268a13db62d8a43beecf7.code
new file mode 100644
index 0000000000..3723c39cec
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-e5a09a5809f268a13db62d8a43beecf7.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ea0330548641b1811fc8456c0f96cafc.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ea0330548641b1811fc8456c0f96cafc.code
new file mode 100644
index 0000000000..dbb548bee9
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ea0330548641b1811fc8456c0f96cafc.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-eabb4c1993672d4e4725686cb0d3dff6.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-eabb4c1993672d4e4725686cb0d3dff6.code
new file mode 100644
index 0000000000..664dc86d13
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-eabb4c1993672d4e4725686cb0d3dff6.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ed27c50d95a65585324a03a2a85ad6f2.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ed27c50d95a65585324a03a2a85ad6f2.code
new file mode 100644
index 0000000000..fb3bc4053e
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ed27c50d95a65585324a03a2a85ad6f2.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ed934d8ec4bd351d8302a9042b738e60.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ed934d8ec4bd351d8302a9042b738e60.code
new file mode 100644
index 0000000000..ed430d3b8c
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ed934d8ec4bd351d8302a9042b738e60.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-eef89dd3516960e3ada966d2294c5bd7.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-eef89dd3516960e3ada966d2294c5bd7.code
new file mode 100644
index 0000000000..acbeb09128
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-eef89dd3516960e3ada966d2294c5bd7.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-eefb8143ab38046ae11a3208e8e77f37.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-eefb8143ab38046ae11a3208e8e77f37.code
new file mode 100644
index 0000000000..cee18d4a57
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-eefb8143ab38046ae11a3208e8e77f37.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ef0afcda0a7bb4881eed4cdb20f428ab.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ef0afcda0a7bb4881eed4cdb20f428ab.code
new file mode 100644
index 0000000000..9386ba63fb
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-ef0afcda0a7bb4881eed4cdb20f428ab.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-eff988b59375b8467c2ab95d313ea414.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-eff988b59375b8467c2ab95d313ea414.code
new file mode 100644
index 0000000000..cf2f6fd500
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-eff988b59375b8467c2ab95d313ea414.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-f077b85fbc1a0bb8842f7ac30192a713.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-f077b85fbc1a0bb8842f7ac30192a713.code
new file mode 100644
index 0000000000..f7ad748f84
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-f077b85fbc1a0bb8842f7ac30192a713.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-f16d2ebf12f03271ef4c1103d9794470.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-f16d2ebf12f03271ef4c1103d9794470.code
new file mode 100644
index 0000000000..2a7b058747
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-f16d2ebf12f03271ef4c1103d9794470.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-f4b66ca529cb589a6b9e9fcc90e9ec10.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-f4b66ca529cb589a6b9e9fcc90e9ec10.code
new file mode 100644
index 0000000000..7380b92330
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-f4b66ca529cb589a6b9e9fcc90e9ec10.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-faab12cf40b52f8005551842b3685129.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-faab12cf40b52f8005551842b3685129.code
new file mode 100644
index 0000000000..4f1e916a8e
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-faab12cf40b52f8005551842b3685129.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fbd494ca618bc4ce85f2476535291075.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fbd494ca618bc4ce85f2476535291075.code
new file mode 100644
index 0000000000..c4884ce08f
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fbd494ca618bc4ce85f2476535291075.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fc897ef275d8e3869a176c335a0286fa.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fc897ef275d8e3869a176c335a0286fa.code
new file mode 100644
index 0000000000..39435e65b2
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fc897ef275d8e3869a176c335a0286fa.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fd0a5f40618546f77a77517c23bd390d.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fd0a5f40618546f77a77517c23bd390d.code
new file mode 100644
index 0000000000..d95f2b21d3
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fd0a5f40618546f77a77517c23bd390d.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fd6452f19a1eb3d118577cfa0774e413.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fd6452f19a1eb3d118577cfa0774e413.code
new file mode 100644
index 0000000000..eaf8bc3a89
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fd6452f19a1eb3d118577cfa0774e413.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fdb4d3c1ccc82d02d288056d90bab1ba.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fdb4d3c1ccc82d02d288056d90bab1ba.code
new file mode 100644
index 0000000000..e185f95e7e
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fdb4d3c1ccc82d02d288056d90bab1ba.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fe2c3928b1bc7739758458f4fa4a708c.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fe2c3928b1bc7739758458f4fa4a708c.code
new file mode 100644
index 0000000000..2dd3322007
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fe2c3928b1bc7739758458f4fa4a708c.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fe43bfc384a8e208fd980237c00f5596.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fe43bfc384a8e208fd980237c00f5596.code
new file mode 100644
index 0000000000..06c3cfeeee
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fe43bfc384a8e208fd980237c00f5596.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fe576d98c8a4f88ad990e46978802f8b.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fe576d98c8a4f88ad990e46978802f8b.code
new file mode 100644
index 0000000000..ed4eb53e94
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fe576d98c8a4f88ad990e46978802f8b.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fe8b706d90b110d7ddaf6ffeae320a04.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fe8b706d90b110d7ddaf6ffeae320a04.code
new file mode 100644
index 0000000000..e4903d5faf
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fe8b706d90b110d7ddaf6ffeae320a04.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fed33e7108dfc1ebebf0aaef928d0853.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fed33e7108dfc1ebebf0aaef928d0853.code
new file mode 100644
index 0000000000..05bf210285
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/index-fed33e7108dfc1ebebf0aaef928d0853.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/inherits-263bd3797137221b7b98c1404c7bbf6e.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/inherits-263bd3797137221b7b98c1404c7bbf6e.code
new file mode 100644
index 0000000000..567804c089
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/inherits-263bd3797137221b7b98c1404c7bbf6e.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/initialization-9efdd94ec4b4437b7995835a5524a7d1.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/initialization-9efdd94ec4b4437b7995835a5524a7d1.code
new file mode 100644
index 0000000000..bf54970126
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/initialization-9efdd94ec4b4437b7995835a5524a7d1.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/internal-c7194afb8d9aa3a6598bae2634bf5afb.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/internal-c7194afb8d9aa3a6598bae2634bf5afb.code
new file mode 100644
index 0000000000..eaa953a6cb
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/internal-c7194afb8d9aa3a6598bae2634bf5afb.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/ip-0e54f6322f643d3effb33470498d63b9.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/ip-0e54f6322f643d3effb33470498d63b9.code
new file mode 100644
index 0000000000..d364a6d197
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/ip-0e54f6322f643d3effb33470498d63b9.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/keytar-481ba6c9dadce0d3528858ed3051f743.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/keytar-481ba6c9dadce0d3528858ed3051f743.code
new file mode 100644
index 0000000000..10f149a06e
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/keytar-481ba6c9dadce0d3528858ed3051f743.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/legacy-streams-044d2d1b2c4a8663646e062f5607c7a0.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/legacy-streams-044d2d1b2c4a8663646e062f5607c7a0.code
new file mode 100644
index 0000000000..3f53d19fb3
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/legacy-streams-044d2d1b2c4a8663646e062f5607c7a0.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/legacy-streams-76b7e349b0e963e8e7a979f40d1cae76.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/legacy-streams-76b7e349b0e963e8e7a979f40d1cae76.code
new file mode 100644
index 0000000000..6c672a32c9
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/legacy-streams-76b7e349b0e963e8e7a979f40d1cae76.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/legacy-streams-920f6908e2a93d5a5ca97e2fc02cd6ef.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/legacy-streams-920f6908e2a93d5a5ca97e2fc02cd6ef.code
new file mode 100644
index 0000000000..8d6a739316
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/legacy-streams-920f6908e2a93d5a5ca97e2fc02cd6ef.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/main-28393290d16dd8e5b20bef7a15e7e80f.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/main-28393290d16dd8e5b20bef7a15e7e80f.code
new file mode 100644
index 0000000000..9821ab79a9
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/main-28393290d16dd8e5b20bef7a15e7e80f.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/main-c1020543c1f2b576d101b551659069f7.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/main-c1020543c1f2b576d101b551659069f7.code
new file mode 100644
index 0000000000..18187bc3eb
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/main-c1020543c1f2b576d101b551659069f7.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/main-e50d4479bf2b31053ed3967c3837f0d8.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/main-e50d4479bf2b31053ed3967c3837f0d8.code
new file mode 100644
index 0000000000..adee3bdb9b
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/main-e50d4479bf2b31053ed3967c3837f0d8.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/main.nls-be8f66df700d1a6099fc2745aa512725.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/main.nls-be8f66df700d1a6099fc2745aa512725.code
new file mode 100644
index 0000000000..bc2ed50db9
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/main.nls-be8f66df700d1a6099fc2745aa512725.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/mapping-list-ff9387f3532527114e176a420ce50106.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/mapping-list-ff9387f3532527114e176a420ce50106.code
new file mode 100644
index 0000000000..b604dae5ac
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/mapping-list-ff9387f3532527114e176a420ce50106.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/message-204a8b27d7f4a7951631bc85cbc28bc0.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/message-204a8b27d7f4a7951631bc85cbc28bc0.code
new file mode 100644
index 0000000000..aace639de6
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/message-204a8b27d7f4a7951631bc85cbc28bc0.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/mime-0e4573cae456c9a87e5d0d85c02e5262.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/mime-0e4573cae456c9a87e5d0d85c02e5262.code
new file mode 100644
index 0000000000..e571f992f2
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/mime-0e4573cae456c9a87e5d0d85c02e5262.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/node-098001b421b019c3c1324121e2f459b6.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/node-098001b421b019c3c1324121e2f459b6.code
new file mode 100644
index 0000000000..a993132764
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/node-098001b421b019c3c1324121e2f459b6.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/node-0c5eb210dcdfa7336c4ce9568bc98a09.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/node-0c5eb210dcdfa7336c4ce9568bc98a09.code
new file mode 100644
index 0000000000..389f20d1e4
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/node-0c5eb210dcdfa7336c4ce9568bc98a09.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/node-74caca29527d548f338bae7b2844e040.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/node-74caca29527d548f338bae7b2844e040.code
new file mode 100644
index 0000000000..bfa821fdd0
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/node-74caca29527d548f338bae7b2844e040.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/node-91849ec3fa54238dacaa615eabf6e62a.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/node-91849ec3fa54238dacaa615eabf6e62a.code
new file mode 100644
index 0000000000..dac5c8ed9e
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/node-91849ec3fa54238dacaa615eabf6e62a.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/node-975669b6559931d403171c75b3d7e015.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/node-975669b6559931d403171c75b3d7e015.code
new file mode 100644
index 0000000000..2818295f88
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/node-975669b6559931d403171c75b3d7e015.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/node-atob-b82c5292a23b47535f3207869b9f4d9e.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/node-atob-b82c5292a23b47535f3207869b9f4d9e.code
new file mode 100644
index 0000000000..1477a24966
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/node-atob-b82c5292a23b47535f3207869b9f4d9e.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/node-ed7a47a3affd59cdf4f4462ec4aa49c8.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/node-ed7a47a3affd59cdf4f4462ec4aa49c8.code
new file mode 100644
index 0000000000..1db808b170
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/node-ed7a47a3affd59cdf4f4462ec4aa49c8.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/nodefs-handler-f210b7dd29e4e3355c9bb125ecefe593.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/nodefs-handler-f210b7dd29e4e3355c9bb125ecefe593.code
new file mode 100644
index 0000000000..d98476a437
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/nodefs-handler-f210b7dd29e4e3355c9bb125ecefe593.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/oniguruma-88c6c71d2d4160ad3b767c49a905e3d4.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/oniguruma-88c6c71d2d4160ad3b767c49a905e3d4.code
new file mode 100644
index 0000000000..afb383e435
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/oniguruma-88c6c71d2d4160ad3b767c49a905e3d4.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parse-fe02a9be604b9a7c8dda5414df45ab9e.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parse-fe02a9be604b9a7c8dda5414df45ab9e.code
new file mode 100644
index 0000000000..d6ab1d183a
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parse-fe02a9be604b9a7c8dda5414df45ab9e.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parser-756d18818feaf5d26b8c9ae8e723de43.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parser-756d18818feaf5d26b8c9ae8e723de43.code
new file mode 100644
index 0000000000..c06781049d
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parser-756d18818feaf5d26b8c9ae8e723de43.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parser-c16c63616aa07fe2138bd1227cb00687.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parser-c16c63616aa07fe2138bd1227cb00687.code
new file mode 100644
index 0000000000..6d2d6dbdb0
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parser-c16c63616aa07fe2138bd1227cb00687.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parsers-11e7a74ba46c8e15ec538740f73ff0d8.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parsers-11e7a74ba46c8e15ec538740f73ff0d8.code
new file mode 100644
index 0000000000..269cd6dca1
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parsers-11e7a74ba46c8e15ec538740f73ff0d8.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parsers-77d0ff6c6eb7384f6ca5a0ee47fc4a86.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parsers-77d0ff6c6eb7384f6ca5a0ee47fc4a86.code
new file mode 100644
index 0000000000..430da1b78a
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parsers-77d0ff6c6eb7384f6ca5a0ee47fc4a86.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parsers-adcd34281abd6aa89310b60994f31548.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parsers-adcd34281abd6aa89310b60994f31548.code
new file mode 100644
index 0000000000..dded215004
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parsers-adcd34281abd6aa89310b60994f31548.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parsers-dfcc3ac5a7051c81ddf6ebcb5fdd355b.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parsers-dfcc3ac5a7051c81ddf6ebcb5fdd355b.code
new file mode 100644
index 0000000000..0040aceabe
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parsers-dfcc3ac5a7051c81ddf6ebcb5fdd355b.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parsers-f0cd923a3424ec5de9f0d13bf88c6cdf.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parsers-f0cd923a3424ec5de9f0d13bf88c6cdf.code
new file mode 100644
index 0000000000..6944bd8200
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/parsers-f0cd923a3424ec5de9f0d13bf88c6cdf.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/patch-core-57ff4c4e6afa179b2fcece837537127c.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/patch-core-57ff4c4e6afa179b2fcece837537127c.code
new file mode 100644
index 0000000000..bac161183a
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/patch-core-57ff4c4e6afa179b2fcece837537127c.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/patch-core-58c568126ad9ffac3ebac3bbff1317d6.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/patch-core-58c568126ad9ffac3ebac3bbff1317d6.code
new file mode 100644
index 0000000000..3e59a71345
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/patch-core-58c568126ad9ffac3ebac3bbff1317d6.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/patch-core-722c16b36295672ba8818fd61f2c33ec.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/patch-core-722c16b36295672ba8818fd61f2c33ec.code
new file mode 100644
index 0000000000..45a2de5db3
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/patch-core-722c16b36295672ba8818fd61f2c33ec.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/paths-5b24767a0b7312f0d3f14411b7735ee7.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/paths-5b24767a0b7312f0d3f14411b7735ee7.code
new file mode 100644
index 0000000000..da4d27f478
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/paths-5b24767a0b7312f0d3f14411b7735ee7.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/paths-dc548346d06ba5b7d07f284afa27505b.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/paths-dc548346d06ba5b7d07f284afa27505b.code
new file mode 100644
index 0000000000..c2876f91db
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/paths-dc548346d06ba5b7d07f284afa27505b.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/pledge-58cdc76e4f9ed3032336ad9a3d2ddb1a.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/pledge-58cdc76e4f9ed3032336ad9a3d2ddb1a.code
new file mode 100644
index 0000000000..00023355be
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/pledge-58cdc76e4f9ed3032336ad9a3d2ddb1a.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/polyfills-1578b18dbfcf40401df95d2b74843164.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/polyfills-1578b18dbfcf40401df95d2b74843164.code
new file mode 100644
index 0000000000..b19b25de1d
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/polyfills-1578b18dbfcf40401df95d2b74843164.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/polyfills-1b4c3576ea33e660d110512aff94ec74.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/polyfills-1b4c3576ea33e660d110512aff94ec74.code
new file mode 100644
index 0000000000..ca4b5c52ea
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/polyfills-1b4c3576ea33e660d110512aff94ec74.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/polyfills-6fb7229d2d9463e970c70e70b4aaf0af.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/polyfills-6fb7229d2d9463e970c70e70b4aaf0af.code
new file mode 100644
index 0000000000..90a1a53984
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/polyfills-6fb7229d2d9463e970c70e70b4aaf0af.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/position-77955b6069851f84cb11a663e5ae2e9e.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/position-77955b6069851f84cb11a663e5ae2e9e.code
new file mode 100644
index 0000000000..5a65a9281b
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/position-77955b6069851f84cb11a663e5ae2e9e.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/positions-6b8147b917fd83eacaa5f3707b8c658c.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/positions-6b8147b917fd83eacaa5f3707b8c658c.code
new file mode 100644
index 0000000000..8d82de270d
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/positions-6b8147b917fd83eacaa5f3707b8c658c.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/promise-67664913a35517f9534c60e1679ea7d1.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/promise-67664913a35517f9534c60e1679ea7d1.code
new file mode 100644
index 0000000000..0664b0231a
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/promise-67664913a35517f9534c60e1679ea7d1.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/promisify-f8b5d486fc0748fc50d8ef5d7b8b4bf1.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/promisify-f8b5d486fc0748fc50d8ef5d7b8b4bf1.code
new file mode 100644
index 0000000000..f6bf5ee2d3
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/promisify-f8b5d486fc0748fc50d8ef5d7b8b4bf1.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/proxy-fa78a740d45c8bdff75cc5ed81640b4f.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/proxy-fa78a740d45c8bdff75cc5ed81640b4f.code
new file mode 100644
index 0000000000..39af29744e
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/proxy-fa78a740d45c8bdff75cc5ed81640b4f.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/quick-sort-a28b0eafe981c28184618d5b37bf021b.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/quick-sort-a28b0eafe981c28184618d5b37bf021b.code
new file mode 100644
index 0000000000..4889aa00d5
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/quick-sort-a28b0eafe981c28184618d5b37bf021b.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/rainbow-283e427cf54dcfa6c7b68d588b87fca4.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/rainbow-283e427cf54dcfa6c7b68d588b87fca4.code
new file mode 100644
index 0000000000..c209e53e9e
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/rainbow-283e427cf54dcfa6c7b68d588b87fca4.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/random-a03c0f6b6b26a1775eab57b9f6ef9903.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/random-a03c0f6b6b26a1775eab57b9f6ef9903.code
new file mode 100644
index 0000000000..6d2f44f0f9
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/random-a03c0f6b6b26a1775eab57b9f6ef9903.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/readable-6ce319851acfecd481cf8943609d84ba.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/readable-6ce319851acfecd481cf8943609d84ba.code
new file mode 100644
index 0000000000..00ecf2f8ed
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/readable-6ce319851acfecd481cf8943609d84ba.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/readdirp-0d9f5bc9a5fe3d0b7388538fe2e0db06.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/readdirp-0d9f5bc9a5fe3d0b7388538fe2e0db06.code
new file mode 100644
index 0000000000..db273a111e
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/readdirp-0d9f5bc9a5fe3d0b7388538fe2e0db06.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/receivebuffer-74b2b42fb0d81bc26fe276cd57e8f419.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/receivebuffer-74b2b42fb0d81bc26fe276cd57e8f419.code
new file mode 100644
index 0000000000..bbe83300fa
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/receivebuffer-74b2b42fb0d81bc26fe276cd57e8f419.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/resolve-url-cbec5c27b19f39872ff7ac645fdcdbf1.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/resolve-url-cbec5c27b19f39872ff7ac645fdcdbf1.code
new file mode 100644
index 0000000000..ed668b19c1
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/resolve-url-cbec5c27b19f39872ff7ac645fdcdbf1.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/ring_buffer-49dbda24bae9ad39f318446463ba4f02.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/ring_buffer-49dbda24bae9ad39f318446463ba4f02.code
new file mode 100644
index 0000000000..3f965b097d
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/ring_buffer-49dbda24bae9ad39f318446463ba4f02.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/safer-09ea39eb5635bf9cb38cf8b06ab905bb.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/safer-09ea39eb5635bf9cb38cf8b06ab905bb.code
new file mode 100644
index 0000000000..6a6a7b69d9
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/safer-09ea39eb5635bf9cb38cf8b06ab905bb.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/safer-fd136cdb5a6956ec8afd71907c4b03e6.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/safer-fd136cdb5a6956ec8afd71907c4b03e6.code
new file mode 100644
index 0000000000..69cb21f886
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/safer-fd136cdb5a6956ec8afd71907c4b03e6.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sbcs-codec-8196f30ff82972e1882b43d681dd1911.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sbcs-codec-8196f30ff82972e1882b43d681dd1911.code
new file mode 100644
index 0000000000..850206dab6
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sbcs-codec-8196f30ff82972e1882b43d681dd1911.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sbcs-data-9400c37757433ac49d1af0cb063f4e88.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sbcs-data-9400c37757433ac49d1af0cb063f4e88.code
new file mode 100644
index 0000000000..331c367794
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sbcs-data-9400c37757433ac49d1af0cb063f4e88.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sbcs-data-generated-adef4ea860860f8360d3cb264db14d22.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sbcs-data-generated-adef4ea860860f8360d3cb264db14d22.code
new file mode 100644
index 0000000000..8e58ca936f
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sbcs-data-generated-adef4ea860860f8360d3cb264db14d22.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/semver-umd-8265edd3c46e8d157d438303918f455b.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/semver-umd-8265edd3c46e8d157d438303918f455b.code
new file mode 100644
index 0000000000..d4c5d07b4b
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/semver-umd-8265edd3c46e8d157d438303918f455b.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/semver-umd-fb34c9bf207e838e7cd523c007068e8d.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/semver-umd-fb34c9bf207e838e7cd523c007068e8d.code
new file mode 100644
index 0000000000..bf9ae34111
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/semver-umd-fb34c9bf207e838e7cd523c007068e8d.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/server-611bd2a141e8077003c01b7153894f9c.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/server-611bd2a141e8077003c01b7153894f9c.code
new file mode 100644
index 0000000000..0501e1f13c
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/server-611bd2a141e8077003c01b7153894f9c.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sets-5ea1a45d68ff845286dc2e23cdab6756.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sets-5ea1a45d68ff845286dc2e23cdab6756.code
new file mode 100644
index 0000000000..992291f77e
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sets-5ea1a45d68ff845286dc2e23cdab6756.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sharedProcessMain-950e73347cb86c76b423d61a08592a35.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sharedProcessMain-950e73347cb86c76b423d61a08592a35.code
new file mode 100644
index 0000000000..d1c59675b3
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sharedProcessMain-950e73347cb86c76b423d61a08592a35.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sharedProcessMain.nls-72ae2e3aae2a79435b59b5b4bb0a7938.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sharedProcessMain.nls-72ae2e3aae2a79435b59b5b4bb0a7938.code
new file mode 100644
index 0000000000..a089d16109
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sharedProcessMain.nls-72ae2e3aae2a79435b59b5b4bb0a7938.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/smartbuffer-d335085ce5808484b2818db776509fd5.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/smartbuffer-d335085ce5808484b2818db776509fd5.code
new file mode 100644
index 0000000000..a2e5df9850
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/smartbuffer-d335085ce5808484b2818db776509fd5.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/socksclient-a15b6ed028580b4fa7e08d8d7d4493c6.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/socksclient-a15b6ed028580b4fa7e08d8d7d4493c6.code
new file mode 100644
index 0000000000..4655f32295
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/socksclient-a15b6ed028580b4fa7e08d8d7d4493c6.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/source-map-81467f7af2d4a42a88ed04c2a4950d6a.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/source-map-81467f7af2d4a42a88ed04c2a4950d6a.code
new file mode 100644
index 0000000000..8dfb207525
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/source-map-81467f7af2d4a42a88ed04c2a4950d6a.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/source-map-consumer-9436ce566e2fceb353d0de41f1f2bb01.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/source-map-consumer-9436ce566e2fceb353d0de41f1f2bb01.code
new file mode 100644
index 0000000000..7aec8996e9
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/source-map-consumer-9436ce566e2fceb353d0de41f1f2bb01.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/source-map-generator-458fc95ff9b5c4585ee40bb1349148a2.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/source-map-generator-458fc95ff9b5c4585ee40bb1349148a2.code
new file mode 100644
index 0000000000..4dfccce5fa
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/source-map-generator-458fc95ff9b5c4585ee40bb1349148a2.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/source-map-resolve-node-53d41e1a7c745901d8281f663e98647b.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/source-map-resolve-node-53d41e1a7c745901d8281f663e98647b.code
new file mode 100644
index 0000000000..6853bb21d9
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/source-map-resolve-node-53d41e1a7c745901d8281f663e98647b.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/source-map-url-5370e683d17ba562562a11767a3226ad.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/source-map-url-5370e683d17ba562562a11767a3226ad.code
new file mode 100644
index 0000000000..64be66c48d
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/source-map-url-5370e683d17ba562562a11767a3226ad.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/source-node-867b7c8040da781556a95d37884f35d1.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/source-node-867b7c8040da781556a95d37884f35d1.code
new file mode 100644
index 0000000000..19e4d1ad93
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/source-node-867b7c8040da781556a95d37884f35d1.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sqlite3-09fed9ef946cabe0df739fe6a2bc901b.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sqlite3-09fed9ef946cabe0df739fe6a2bc901b.code
new file mode 100644
index 0000000000..1a332ee160
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sqlite3-09fed9ef946cabe0df739fe6a2bc901b.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sqlite3-c8e599bfccc72c0160192654b3b13da2.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sqlite3-c8e599bfccc72c0160192654b3b13da2.code
new file mode 100644
index 0000000000..49f60155eb
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/sqlite3-c8e599bfccc72c0160192654b3b13da2.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/stream-c628f2376ac07549edfdfc04e568a74f.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/stream-c628f2376ac07549edfdfc04e568a74f.code
new file mode 100644
index 0000000000..1862e6b370
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/stream-c628f2376ac07549edfdfc04e568a74f.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/stream_reader-648b7fbeec9ff491d134a82e14accf28.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/stream_reader-648b7fbeec9ff491d134a82e14accf28.code
new file mode 100644
index 0000000000..cc156085e4
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/stream_reader-648b7fbeec9ff491d134a82e14accf28.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/streams-0b395783c69f1d98c06dd24ab69cc18b.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/streams-0b395783c69f1d98c06dd24ab69cc18b.code
new file mode 100644
index 0000000000..3c758ba9a2
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/streams-0b395783c69f1d98c06dd24ab69cc18b.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/streams-14dbd4748764d6fb594ddf334180b455.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/streams-14dbd4748764d6fb594ddf334180b455.code
new file mode 100644
index 0000000000..8e8fe5f4a3
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/streams-14dbd4748764d6fb594ddf334180b455.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/streams-8a6162b9799349defa5687e3a73d1421.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/streams-8a6162b9799349defa5687e3a73d1421.code
new file mode 100644
index 0000000000..f277f98e41
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/streams-8a6162b9799349defa5687e3a73d1421.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/styles-e444fbdceb2d96db3ab67be4a4304363.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/styles-e444fbdceb2d96db3ab67be4a4304363.code
new file mode 100644
index 0000000000..b06eb0dc3c
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/styles-e444fbdceb2d96db3ab67be4a4304363.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/supports-colors-f95ffd5bd2ae3f85219115a3c211e0dd.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/supports-colors-f95ffd5bd2ae3f85219115a3c211e0dd.code
new file mode 100644
index 0000000000..d8f0ea442c
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/supports-colors-f95ffd5bd2ae3f85219115a3c211e0dd.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/terminal-4524cdb29a28221474c79689c3bcf81a.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/terminal-4524cdb29a28221474c79689c3bcf81a.code
new file mode 100644
index 0000000000..43c5f8d139
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/terminal-4524cdb29a28221474c79689c3bcf81a.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/terminal-7a0e149d75dc997777ef77a68fd3d6f2.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/terminal-7a0e149d75dc997777ef77a68fd3d6f2.code
new file mode 100644
index 0000000000..70b8494e64
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/terminal-7a0e149d75dc997777ef77a68fd3d6f2.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/trap-5d4f93e8893153c382c312a4d13340bc.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/trap-5d4f93e8893153c382c312a4d13340bc.code
new file mode 100644
index 0000000000..cf6cf270ad
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/trap-5d4f93e8893153c382c312a4d13340bc.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/types-a9ee1fabf728316e3ed812b6d65b27c0.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/types-a9ee1fabf728316e3ed812b6d65b27c0.code
new file mode 100644
index 0000000000..cef6236ded
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/types-a9ee1fabf728316e3ed812b6d65b27c0.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/unicode-ff844ea1f9e46dea26b90b9e28a023db.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/unicode-ff844ea1f9e46dea26b90b9e28a023db.code
new file mode 100644
index 0000000000..5765915b0b
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/unicode-ff844ea1f9e46dea26b90b9e28a023db.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/unixTerminal-362798360e8b865c720a148a242d8624.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/unixTerminal-362798360e8b865c720a148a242d8624.code
new file mode 100644
index 0000000000..83011c8b39
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/unixTerminal-362798360e8b865c720a148a242d8624.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/unixTerminal-be899ca873cdfbfb376807b1e3e6cef7.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/unixTerminal-be899ca873cdfbfb376807b1e3e6cef7.code
new file mode 100644
index 0000000000..d1183b85b1
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/unixTerminal-be899ca873cdfbfb376807b1e3e6cef7.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/upath-39ac3a3103a360af0a427c85e962c07c.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/upath-39ac3a3103a360af0a427c85e962c07c.code
new file mode 100644
index 0000000000..38b6a0293e
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/upath-39ac3a3103a360af0a427c85e962c07c.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utf16-b60f34e71f71e6135066847dca5fbfb3.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utf16-b60f34e71f71e6135066847dca5fbfb3.code
new file mode 100644
index 0000000000..019da55b19
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utf16-b60f34e71f71e6135066847dca5fbfb3.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utf32-5a107c88912434abc512bc911585c07b.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utf32-5a107c88912434abc512bc911585c07b.code
new file mode 100644
index 0000000000..e24cb7d406
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utf32-5a107c88912434abc512bc911585c07b.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utf7-021323827552357172027532fb3dee18.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utf7-021323827552357172027532fb3dee18.code
new file mode 100644
index 0000000000..1d47863dd9
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utf7-021323827552357172027532fb3dee18.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/util-2676e24efedc335d3a16b7000d17bc1c.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/util-2676e24efedc335d3a16b7000d17bc1c.code
new file mode 100644
index 0000000000..ec8b3531af
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/util-2676e24efedc335d3a16b7000d17bc1c.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/util-50fb68349097f377bb18988f2dec7f8d.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/util-50fb68349097f377bb18988f2dec7f8d.code
new file mode 100644
index 0000000000..222b1ac32d
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/util-50fb68349097f377bb18988f2dec7f8d.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/util-5442405052ffb11bd09653f9399d536c.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/util-5442405052ffb11bd09653f9399d536c.code
new file mode 100644
index 0000000000..f3a3b6a2c8
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/util-5442405052ffb11bd09653f9399d536c.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/util-c4b7c3fcad9a86e4fcdb5e1778dfd5b1.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/util-c4b7c3fcad9a86e4fcdb5e1778dfd5b1.code
new file mode 100644
index 0000000000..71fdf8d053
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/util-c4b7c3fcad9a86e4fcdb5e1778dfd5b1.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-38cae433bf7e8259f05263325ba469c2.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-38cae433bf7e8259f05263325ba469c2.code
new file mode 100644
index 0000000000..40790878dd
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-38cae433bf7e8259f05263325ba469c2.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-48110e304d329d87ff25c4cf9de50d5c.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-48110e304d329d87ff25c4cf9de50d5c.code
new file mode 100644
index 0000000000..1a79ad51ba
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-48110e304d329d87ff25c4cf9de50d5c.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-4af24b667fb71eb2f71a49d165e906c3.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-4af24b667fb71eb2f71a49d165e906c3.code
new file mode 100644
index 0000000000..2b2407c403
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-4af24b667fb71eb2f71a49d165e906c3.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-6985072a84295bfbd3d2566991098242.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-6985072a84295bfbd3d2566991098242.code
new file mode 100644
index 0000000000..8818b0fd64
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-6985072a84295bfbd3d2566991098242.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-773e6c8b53e7ad4a8e032b455c144372.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-773e6c8b53e7ad4a8e032b455c144372.code
new file mode 100644
index 0000000000..4399660c96
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-773e6c8b53e7ad4a8e032b455c144372.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-bc060aec482c8a2498b6927b65c4ebe6.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-bc060aec482c8a2498b6927b65c4ebe6.code
new file mode 100644
index 0000000000..879c0100e9
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-bc060aec482c8a2498b6927b65c4ebe6.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-c0f9f521467f5590d1f194ea2c001229.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-c0f9f521467f5590d1f194ea2c001229.code
new file mode 100644
index 0000000000..f418af43dc
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-c0f9f521467f5590d1f194ea2c001229.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-c9f1ab72eb5e2cc1289915c6ff363346.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-c9f1ab72eb5e2cc1289915c6ff363346.code
new file mode 100644
index 0000000000..4c0bed5e58
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-c9f1ab72eb5e2cc1289915c6ff363346.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-d1aec7323d788bc7c9f48c673f467ea7.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-d1aec7323d788bc7c9f48c673f467ea7.code
new file mode 100644
index 0000000000..e8fa56d028
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/utils-d1aec7323d788bc7c9f48c673f467ea7.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/vscode-ccc0ab4f8cdfde44286f7f45f6c76b4b.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/vscode-ccc0ab4f8cdfde44286f7f45f6c76b4b.code
new file mode 100644
index 0000000000..21907c08bd
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/vscode-ccc0ab4f8cdfde44286f7f45f6c76b4b.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/web-incoming-5cd30508a430e6820802bd215e8484be.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/web-incoming-5cd30508a430e6820802bd215e8484be.code
new file mode 100644
index 0000000000..bb385bd6df
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/web-incoming-5cd30508a430e6820802bd215e8484be.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/web-outgoing-092a82016c6428756b4bea5a51fa582d.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/web-outgoing-092a82016c6428756b4bea5a51fa582d.code
new file mode 100644
index 0000000000..dacfeaf0fe
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/web-outgoing-092a82016c6428756b4bea5a51fa582d.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/websocket-11b045c8d75dcd0c6a280da2e4df5018.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/websocket-11b045c8d75dcd0c6a280da2e4df5018.code
new file mode 100644
index 0000000000..3da3c96989
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/websocket-11b045c8d75dcd0c6a280da2e4df5018.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/websocket_extensions-2aaa4a063a16a7defe18c32000083192.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/websocket_extensions-2aaa4a063a16a7defe18c32000083192.code
new file mode 100644
index 0000000000..1b5fb9f6ef
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/websocket_extensions-2aaa4a063a16a7defe18c32000083192.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/workbench.desktop.main-8581e5a99a0b1a7d04a06322788fb00f.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/workbench.desktop.main-8581e5a99a0b1a7d04a06322788fb00f.code
new file mode 100644
index 0000000000..fad70019a2
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/workbench.desktop.main-8581e5a99a0b1a7d04a06322788fb00f.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/workbench.desktop.main.nls-ef96797c4fdf0e6a990b292a8fef13e3.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/workbench.desktop.main.nls-ef96797c4fdf0e6a990b292a8fef13e3.code
new file mode 100644
index 0000000000..7351c77439
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/workbench.desktop.main.nls-ef96797c4fdf0e6a990b292a8fef13e3.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/workspaceResolver-35ab8cc4cb43ce865acb59919d4ec420.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/workspaceResolver-35ab8cc4cb43ce865acb59919d4ec420.code
new file mode 100644
index 0000000000..b7e53e01d3
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/workspaceResolver-35ab8cc4cb43ce865acb59919d4ec420.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/ws-incoming-45ea5075325e3e04a1540ced1fb3178a.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/ws-incoming-45ea5075325e3e04a1540ced1fb3178a.code
new file mode 100644
index 0000000000..62a06b2516
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/ws-incoming-45ea5075325e3e04a1540ced1fb3178a.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/zalgo-5ecb37207d38f86a7565153c7a4cb940.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/zalgo-5ecb37207d38f86a7565153c7a4cb940.code
new file mode 100644
index 0000000000..91d7621f13
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/zalgo-5ecb37207d38f86a7565153c7a4cb940.code differ
diff --git a/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/zebra-e3a01e36bb54014e24864d811357f6fe.code b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/zebra-e3a01e36bb54014e24864d811357f6fe.code
new file mode 100644
index 0000000000..c4bf114563
Binary files /dev/null and b/~/.vscode-root/CachedData/78a4c91400152c0f27ba4d363eb56d2835f9903a/zebra-e3a01e36bb54014e24864d811357f6fe.code differ
diff --git a/~/.vscode-root/CachedExtensions/builtin b/~/.vscode-root/CachedExtensions/builtin
new file mode 100644
index 0000000000..78a0bf14b1
--- /dev/null
+++ b/~/.vscode-root/CachedExtensions/builtin
@@ -0,0 +1 @@
+{"input":{"ourVersion":"1.43.0","commit":"78a4c91400152c0f27ba4d363eb56d2835f9903a","locale":"en","devMode":false,"absoluteFolderPath":"/snap/code/26/usr/share/code/resources/app/extensions","isBuiltin":true,"isUnderDevelopment":false,"tanslations":{},"mtime":1583784002000},"result":[{"name":"bat","displayName":"Windows Bat Language Basics","description":"Provides snippets, syntax highlighting, bracket matching and folding in Windows batch files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js mmims/language-batchfile grammars/batchfile.cson ./syntaxes/batchfile.tmLanguage.json"},"contributes":{"languages":[{"id":"bat","extensions":[".bat",".cmd"],"aliases":["Batch","bat"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"bat","scopeName":"source.batchfile","path":"./syntaxes/batchfile.tmLanguage.json"}],"snippets":[{"language":"bat","path":"./snippets/batchfile.snippets.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.bat","identifier":{"value":"vscode.bat","_lower":"vscode.bat"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/bat","path":"/snap/code/26/usr/share/code/resources/app/extensions/bat","scheme":"file"}},{"name":"clojure","displayName":"Clojure Language Basics","description":"Provides syntax highlighting and bracket matching in Clojure files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js atom/language-clojure grammars/clojure.cson ./syntaxes/clojure.tmLanguage.json"},"contributes":{"languages":[{"id":"clojure","aliases":["Clojure","clojure"],"extensions":[".clj",".cljs",".cljc",".cljx",".clojure",".edn"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"clojure","scopeName":"source.clojure","path":"./syntaxes/clojure.tmLanguage.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.clojure","identifier":{"value":"vscode.clojure","_lower":"vscode.clojure"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/clojure","path":"/snap/code/26/usr/share/code/resources/app/extensions/clojure","scheme":"file"}},{"name":"coffeescript","displayName":"CoffeeScript Language Basics","description":"Provides snippets, syntax highlighting, bracket matching and folding in CoffeeScript files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js atom/language-coffee-script grammars/coffeescript.cson ./syntaxes/coffeescript.tmLanguage.json"},"contributes":{"languages":[{"id":"coffeescript","extensions":[".coffee",".cson",".iced"],"aliases":["CoffeeScript","coffeescript","coffee"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"coffeescript","scopeName":"source.coffee","path":"./syntaxes/coffeescript.tmLanguage.json"}],"breakpoints":[{"language":"coffeescript"}],"snippets":[{"language":"coffeescript","path":"./snippets/coffeescript.snippets.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.coffeescript","identifier":{"value":"vscode.coffeescript","_lower":"vscode.coffeescript"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/coffeescript","path":"/snap/code/26/usr/share/code/resources/app/extensions/coffeescript","scheme":"file"}},{"name":"configuration-editing","displayName":"Configuration Editing","description":"Provides capabilities (advanced IntelliSense, auto-fixing) in configuration files like settings, launch, and extension recommendation files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"^1.0.0"},"activationEvents":["onLanguage:json","onLanguage:jsonc"],"main":"./dist/extension","scripts":{"compile":"gulp compile-extension:configuration-editing","watch":"gulp watch-extension:configuration-editing"},"dependencies":{"jsonc-parser":"^2.2.1","vscode-nls":"^4.1.1"},"contributes":{"languages":[{"id":"jsonc","extensions":[".code-workspace","language-configuration.json","icon-theme.json","color-theme.json",".code-snippets"],"filenames":["settings.json","launch.json","tasks.json","keybindings.json","extensions.json","argv.json","profiles.json"]}],"jsonValidation":[{"fileMatch":"vscode://defaultsettings/keybindings.json","url":"vscode://schemas/keybindings"},{"fileMatch":"%APP_SETTINGS_HOME%/keybindings.json","url":"vscode://schemas/keybindings"},{"fileMatch":"vscode://defaultsettings/*/*.json","url":"vscode://schemas/settings/default"},{"fileMatch":"%APP_SETTINGS_HOME%/settings.json","url":"vscode://schemas/settings/user"},{"fileMatch":"%MACHINE_SETTINGS_HOME%/settings.json","url":"vscode://schemas/settings/machine"},{"fileMatch":"%APP_WORKSPACES_HOME%/*/workspace.json","url":"vscode://schemas/workspaceConfig"},{"fileMatch":"**/*.code-workspace","url":"vscode://schemas/workspaceConfig"},{"fileMatch":"**/argv.json","url":"vscode://schemas/argv"},{"fileMatch":"/.vscode/settings.json","url":"vscode://schemas/settings/folder"},{"fileMatch":"/.vscode/launch.json","url":"vscode://schemas/launch"},{"fileMatch":"/.vscode/tasks.json","url":"vscode://schemas/tasks"},{"fileMatch":"%APP_SETTINGS_HOME%/tasks.json","url":"vscode://schemas/tasks"},{"fileMatch":"%APP_SETTINGS_HOME%/snippets/*.json","url":"vscode://schemas/snippets"},{"fileMatch":"**/*.code-snippets","url":"vscode://schemas/global-snippets"},{"fileMatch":"/.vscode/extensions.json","url":"vscode://schemas/extensions"},{"fileMatch":"/.devcontainer/devcontainer.json","url":"./schemas/devContainer.schema.json"},{"fileMatch":"/.devcontainer.json","url":"./schemas/devContainer.schema.json"},{"fileMatch":"%APP_SETTINGS_HOME%/globalStorage/ms-vscode-remote.remote-containers/imageConfigs/*.json","url":"./schemas/attachContainer.schema.json"}]},"devDependencies":{"@types/node":"^12.11.7"},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.configuration-editing","identifier":{"value":"vscode.configuration-editing","_lower":"vscode.configuration-editing"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/configuration-editing","path":"/snap/code/26/usr/share/code/resources/app/extensions/configuration-editing","scheme":"file"}},{"name":"cpp","displayName":"C/C++ Language Basics","description":"Provides snippets, syntax highlighting, bracket matching and folding in C/C++ files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ./build/update-grammars.js"},"contributes":{"languages":[{"id":"c","extensions":[".c",".i"],"aliases":["C","c"],"configuration":"./language-configuration.json"},{"id":"cpp","extensions":[".cpp",".cc",".cxx",".c++",".hpp",".hh",".hxx",".h",".ii",".ino",".inl",".ipp",".hpp.in",".h.in"],"aliases":["C++","Cpp","cpp"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"c","scopeName":"source.c","path":"./syntaxes/c.tmLanguage.json"},{"language":"cpp","scopeName":"source.cpp.embedded.macro","path":"./syntaxes/cpp.embedded.macro.tmLanguage.json"},{"language":"cpp","scopeName":"source.cpp","path":"./syntaxes/cpp.tmLanguage.json"},{"scopeName":"source.c.platform","path":"./syntaxes/platform.tmLanguage.json"}],"snippets":[{"language":"c","path":"./snippets/c.json"},{"language":"cpp","path":"./snippets/cpp.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.cpp","identifier":{"value":"vscode.cpp","_lower":"vscode.cpp"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/cpp","path":"/snap/code/26/usr/share/code/resources/app/extensions/cpp","scheme":"file"}},{"name":"csharp","displayName":"C# Language Basics","description":"Provides snippets, syntax highlighting, bracket matching and folding in C# files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"0.10.x"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js dotnet/csharp-tmLanguage grammars/csharp.tmLanguage ./syntaxes/csharp.tmLanguage.json"},"contributes":{"languages":[{"id":"csharp","extensions":[".cs",".csx",".cake"],"aliases":["C#","csharp"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"csharp","scopeName":"source.cs","path":"./syntaxes/csharp.tmLanguage.json"}],"snippets":[{"language":"csharp","path":"./snippets/csharp.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.csharp","identifier":{"value":"vscode.csharp","_lower":"vscode.csharp"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/csharp","path":"/snap/code/26/usr/share/code/resources/app/extensions/csharp","scheme":"file"}},{"name":"css","displayName":"CSS Language Basics","description":"Provides syntax highlighting and bracket matching for CSS, LESS and SCSS files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"0.10.x"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js octref/language-css grammars/css.cson ./syntaxes/css.tmLanguage.json"},"contributes":{"languages":[{"id":"css","aliases":["CSS","css"],"extensions":[".css"],"mimetypes":["text/css"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"css","scopeName":"source.css","path":"./syntaxes/css.tmLanguage.json","tokenTypes":{"meta.function.url string.quoted":"other"}}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.css","identifier":{"value":"vscode.css","_lower":"vscode.css"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/css","path":"/snap/code/26/usr/share/code/resources/app/extensions/css","scheme":"file"}},{"name":"css-language-features","displayName":"CSS Language Features","description":"Provides rich language support for CSS, LESS and SCSS files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"^1.29.0"},"icon":"icons/css.png","activationEvents":["onLanguage:css","onLanguage:less","onLanguage:scss","onCommand:_css.applyCodeAction"],"main":"./client/dist/cssMain","enableProposedApi":true,"scripts":{"compile":"gulp compile-extension:css-language-features-client compile-extension:css-language-features-server","watch":"gulp watch-extension:css-language-features-client watch-extension:css-language-features-server","test":"mocha","postinstall":"cd server && yarn install","install-client-next":"yarn add vscode-languageclient@next"},"categories":["Programming Languages"],"contributes":{"configuration":[{"order":22,"id":"css","title":"CSS","properties":{"css.customData":{"type":"array","markdownDescription":"A list of relative file paths pointing to JSON files following the [custom data format](https://github.com/Microsoft/vscode-css-languageservice/blob/master/docs/customData.md).\n\nVS Code loads custom data on startup to enhance its CSS support for the custom CSS properties, at directives, pseudo classes and pseudo elements you specify in the JSON files.\n\nThe file paths are relative to workspace and only workspace folder settings are considered.","default":[],"items":{"type":"string"},"scope":"resource"},"css.completion.triggerPropertyValueCompletion":{"type":"boolean","scope":"resource","default":true,"description":"By default, VS Code triggers property value completion after selecting a CSS property. Use this setting to disable this behavior."},"css.completion.completePropertyWithSemicolon":{"type":"boolean","scope":"resource","default":true,"description":"Insert semicolon at end of line when completing CSS properties"},"css.validate":{"type":"boolean","scope":"resource","default":true,"description":"Enables or disables all validations."},"css.lint.compatibleVendorPrefixes":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","description":"When using a vendor-specific prefix make sure to also include all other vendor-specific properties."},"css.lint.vendorPrefix":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"warning","description":"When using a vendor-specific prefix, also include the standard property."},"css.lint.duplicateProperties":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","description":"Do not use duplicate style definitions."},"css.lint.emptyRules":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"warning","description":"Do not use empty rulesets."},"css.lint.importStatement":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","description":"Import statements do not load in parallel."},"css.lint.boxModel":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","markdownDescription":"Do not use `width` or `height` when using `padding` or `border`."},"css.lint.universalSelector":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","markdownDescription":"The universal selector (`*`) is known to be slow."},"css.lint.zeroUnits":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","description":"No unit for zero needed."},"css.lint.fontFaceProperties":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"warning","markdownDescription":"`@font-face` rule must define `src` and `font-family` properties."},"css.lint.hexColorLength":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"error","description":"Hex colors must consist of three or six hex numbers."},"css.lint.argumentsInColorFunction":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"error","description":"Invalid number of parameters."},"css.lint.unknownProperties":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"warning","description":"Unknown property."},"css.lint.validProperties":{"type":"array","uniqueItems":true,"items":{"type":"string"},"scope":"resource","default":[],"description":"A list of properties that are not validated against the `unknownProperties` rule."},"css.lint.ieHack":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","description":"IE hacks are only necessary when supporting IE7 and older."},"css.lint.unknownVendorSpecificProperties":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","description":"Unknown vendor specific property."},"css.lint.propertyIgnoredDueToDisplay":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"warning","markdownDescription":"Property is ignored due to the display. E.g. with `display: inline`, the `width`, `height`, `margin-top`, `margin-bottom`, and `float` properties have no effect."},"css.lint.important":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","markdownDescription":"Avoid using `!important`. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored."},"css.lint.float":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","markdownDescription":"Avoid using `float`. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes."},"css.lint.idSelector":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","description":"Selectors should not contain IDs because these rules are too tightly coupled with the HTML."},"css.lint.unknownAtRules":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"warning","description":"Unknown at-rule."},"css.trace.server":{"type":"string","scope":"window","enum":["off","messages","verbose"],"default":"off","description":"Traces the communication between VS Code and the CSS language server."}}},{"id":"scss","order":24,"title":"SCSS (Sass)","properties":{"scss.completion.triggerPropertyValueCompletion":{"type":"boolean","scope":"resource","default":true,"description":"By default, VS Code triggers property value completion after selecting a CSS property. Use this setting to disable this behavior."},"scss.completion.completePropertyWithSemicolon":{"type":"boolean","scope":"resource","default":true,"description":"Insert semicolon at end of line when completing CSS properties"},"scss.validate":{"type":"boolean","scope":"resource","default":true,"description":"Enables or disables all validations."},"scss.lint.compatibleVendorPrefixes":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","description":"When using a vendor-specific prefix make sure to also include all other vendor-specific properties."},"scss.lint.vendorPrefix":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"warning","description":"When using a vendor-specific prefix, also include the standard property."},"scss.lint.duplicateProperties":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","description":"Do not use duplicate style definitions."},"scss.lint.emptyRules":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"warning","description":"Do not use empty rulesets."},"scss.lint.importStatement":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","description":"Import statements do not load in parallel."},"scss.lint.boxModel":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","markdownDescription":"Do not use `width` or `height` when using `padding` or `border`."},"scss.lint.universalSelector":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","markdownDescription":"The universal selector (`*`) is known to be slow."},"scss.lint.zeroUnits":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","description":"No unit for zero needed."},"scss.lint.fontFaceProperties":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"warning","markdownDescription":"`@font-face` rule must define `src` and `font-family` properties."},"scss.lint.hexColorLength":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"error","description":"Hex colors must consist of three or six hex numbers."},"scss.lint.argumentsInColorFunction":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"error","description":"Invalid number of parameters."},"scss.lint.unknownProperties":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"warning","description":"Unknown property."},"scss.lint.validProperties":{"type":"array","uniqueItems":true,"items":{"type":"string"},"scope":"resource","default":[],"description":"A list of properties that are not validated against the `unknownProperties` rule."},"scss.lint.ieHack":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","description":"IE hacks are only necessary when supporting IE7 and older."},"scss.lint.unknownVendorSpecificProperties":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","description":"Unknown vendor specific property."},"scss.lint.propertyIgnoredDueToDisplay":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"warning","markdownDescription":"Property is ignored due to the display. E.g. with `display: inline`, the `width`, `height`, `margin-top`, `margin-bottom`, and `float` properties have no effect."},"scss.lint.important":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","markdownDescription":"Avoid using `!important`. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored."},"scss.lint.float":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","markdownDescription":"Avoid using `float`. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes."},"scss.lint.idSelector":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","description":"Selectors should not contain IDs because these rules are too tightly coupled with the HTML."},"scss.lint.unknownAtRules":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"warning","description":"Unknown at-rule."}}},{"id":"less","order":23,"type":"object","title":"LESS","properties":{"less.completion.triggerPropertyValueCompletion":{"type":"boolean","scope":"resource","default":true,"description":"By default, VS Code triggers property value completion after selecting a CSS property. Use this setting to disable this behavior."},"less.completion.completePropertyWithSemicolon":{"type":"boolean","scope":"resource","default":true,"description":"Insert semicolon at end of line when completing CSS properties"},"less.validate":{"type":"boolean","scope":"resource","default":true,"description":"Enables or disables all validations."},"less.lint.compatibleVendorPrefixes":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","description":"When using a vendor-specific prefix make sure to also include all other vendor-specific properties."},"less.lint.vendorPrefix":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"warning","description":"When using a vendor-specific prefix, also include the standard property."},"less.lint.duplicateProperties":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","description":"Do not use duplicate style definitions."},"less.lint.emptyRules":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"warning","description":"Do not use empty rulesets."},"less.lint.importStatement":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","description":"Import statements do not load in parallel."},"less.lint.boxModel":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","markdownDescription":"Do not use `width` or `height` when using `padding` or `border`."},"less.lint.universalSelector":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","markdownDescription":"The universal selector (`*`) is known to be slow."},"less.lint.zeroUnits":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","description":"No unit for zero needed."},"less.lint.fontFaceProperties":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"warning","markdownDescription":"`@font-face` rule must define `src` and `font-family` properties."},"less.lint.hexColorLength":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"error","description":"Hex colors must consist of three or six hex numbers."},"less.lint.argumentsInColorFunction":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"error","description":"Invalid number of parameters."},"less.lint.unknownProperties":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"warning","description":"Unknown property."},"less.lint.validProperties":{"type":"array","uniqueItems":true,"items":{"type":"string"},"scope":"resource","default":[],"description":"A list of properties that are not validated against the `unknownProperties` rule."},"less.lint.ieHack":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","description":"IE hacks are only necessary when supporting IE7 and older."},"less.lint.unknownVendorSpecificProperties":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","description":"Unknown vendor specific property."},"less.lint.propertyIgnoredDueToDisplay":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"warning","markdownDescription":"Property is ignored due to the display. E.g. with `display: inline`, the `width`, `height`, `margin-top`, `margin-bottom`, and `float` properties have no effect."},"less.lint.important":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","markdownDescription":"Avoid using `!important`. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored."},"less.lint.float":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","markdownDescription":"Avoid using `float`. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes."},"less.lint.idSelector":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"ignore","description":"Selectors should not contain IDs because these rules are too tightly coupled with the HTML."},"less.lint.unknownAtRules":{"type":"string","scope":"resource","enum":["ignore","warning","error"],"default":"warning","description":"Unknown at-rule."}}}],"configurationDefaults":{"[css]":{"editor.suggest.insertMode":"replace"},"[scss]":{"editor.suggest.insertMode":"replace"},"[less]":{"editor.suggest.insertMode":"replace"}},"jsonValidation":[{"fileMatch":"*.css-data.json","url":"https://raw.githubusercontent.com/Microsoft/vscode-css-languageservice/master/docs/customData.schema.json"},{"fileMatch":"package.json","url":"./schemas/package.schema.json"}]},"dependencies":{"vscode-languageclient":"^6.1.1","vscode-nls":"^4.1.1"},"devDependencies":{"@types/node":"^12.11.7","mocha":"^7.0.1"},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.css-language-features","identifier":{"value":"vscode.css-language-features","_lower":"vscode.css-language-features"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/css-language-features","path":"/snap/code/26/usr/share/code/resources/app/extensions/css-language-features","scheme":"file"}},{"name":"debug-auto-launch","displayName":"Node Debug Auto-attach","description":"Helper for auto-attach feature when node-debug extensions are not active.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"^1.5.0"},"activationEvents":["*"],"main":"./dist/extension","scripts":{"compile":"gulp compile-extension:debug-auto-launch","watch":"gulp watch-extension:debug-auto-launch"},"contributes":{"configuration":{"title":"Node debug","properties":{"debug.node.autoAttach":{"scope":"window","type":"string","enum":["disabled","on","off"],"enumDescriptions":["Auto attach is disabled and not shown in status bar.","Auto attach is active.","Auto attach is inactive."],"description":"Automatically attach node debugger when node.js was launched in debug mode from integrated terminal.","default":"disabled"}}},"commands":[{"command":"extension.node-debug.toggleAutoAttach","title":"Toggle Auto Attach","category":"Debug"}]},"dependencies":{"vscode-nls":"^4.0.0"},"devDependencies":{"@types/node":"^12.11.7"},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.debug-auto-launch","identifier":{"value":"vscode.debug-auto-launch","_lower":"vscode.debug-auto-launch"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/debug-auto-launch","path":"/snap/code/26/usr/share/code/resources/app/extensions/debug-auto-launch","scheme":"file"}},{"name":"debug-server-ready","displayName":"Server Ready Action","description":"Open URI in browser if server under debugging is ready.","version":"1.0.0","publisher":"vscode","engines":{"vscode":"^1.32.0"},"activationEvents":["onDebugResolve"],"enableProposedApi":true,"main":"./dist/extension","scripts":{"compile":"gulp compile-extension:debug-server-ready","watch":"gulp watch-extension:debug-server-ready"},"contributes":{"debuggers":[{"type":"*","configurationAttributes":{"launch":{"properties":{"serverReadyAction":{"oneOf":[{"type":"object","additionalProperties":false,"markdownDescription":"Act upon a URI when a server program under debugging is ready (indicated by sending output of the form 'listening on port 3000' or 'Now listening on: https://localhost:5001' to the debug console.)","default":{"action":"openExternally"},"properties":{"action":{"type":"string","enum":["openExternally"],"enumDescriptions":["Open URI externally with the default application.","Start debugging with the 'Debugger for Chrome'."],"markdownDescription":"What to do with the URI when the server is ready.","default":"openExternally"},"pattern":{"type":"string","markdownDescription":"Server is ready if this pattern appears on the debug console. The first capture group must include a URI or a port number.","default":"listening on port ([0-9]+)"},"uriFormat":{"type":"string","markdownDescription":"A format string used when constructing the URI from a port number. The first '%s' is substituted with the port number.","default":"http://localhost:%s"}}},{"type":"object","additionalProperties":false,"markdownDescription":"Act upon a URI when a server program under debugging is ready (indicated by sending output of the form 'listening on port 3000' or 'Now listening on: https://localhost:5001' to the debug console.)","default":{"action":"openExternally"},"properties":{"action":{"type":"string","enum":["debugWithChrome"],"enumDescriptions":["Open URI externally with the default application.","Start debugging with the 'Debugger for Chrome'."],"markdownDescription":"What to do with the URI when the server is ready.","default":"openExternally"},"pattern":{"type":"string","markdownDescription":"Server is ready if this pattern appears on the debug console. The first capture group must include a URI or a port number.","default":"listening on port ([0-9]+)"},"uriFormat":{"type":"string","markdownDescription":"A format string used when constructing the URI from a port number. The first '%s' is substituted with the port number.","default":"http://localhost:%s"},"webRoot":{"type":"string","markdownDescription":"Value passed to the debug configuration for the 'Debugger for Chrome'.","default":"${workspaceFolder}"}}}]}}}}}]},"dependencies":{"vscode-nls":"^4.0.0"},"devDependencies":{"@types/node":"^12.11.7"},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.debug-server-ready","identifier":{"value":"vscode.debug-server-ready","_lower":"vscode.debug-server-ready"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/debug-server-ready","path":"/snap/code/26/usr/share/code/resources/app/extensions/debug-server-ready","scheme":"file"}},{"name":"docker","displayName":"Docker Language Basics","description":"Provides syntax highlighting and bracket matching in Docker files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js moby/moby contrib/syntax/textmate/Docker.tmbundle/Syntaxes/Dockerfile.tmLanguage ./syntaxes/docker.tmLanguage.json"},"contributes":{"languages":[{"id":"dockerfile","extensions":[".dockerfile"],"filenames":["Dockerfile"],"aliases":["Dockerfile"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"dockerfile","scopeName":"source.dockerfile","path":"./syntaxes/docker.tmLanguage.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.docker","identifier":{"value":"vscode.docker","_lower":"vscode.docker"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/docker","path":"/snap/code/26/usr/share/code/resources/app/extensions/docker","scheme":"file"}},{"name":"emmet","displayName":"Emmet","description":"Emmet support for VS Code","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"^1.13.0"},"icon":"images/icon.png","categories":["Other"],"repository":{"type":"git","url":"https://github.com/Microsoft/vscode-emmet"},"activationEvents":["*","onCommand:emmet.expandAbbreviation","onLanguage:html","onLanguage:css","onLanguage:scss","onLanguage:less"],"main":"./dist/extension","contributes":{"configuration":{"type":"object","title":"Emmet","properties":{"emmet.showExpandedAbbreviation":{"type":["string"],"enum":["never","always","inMarkupAndStylesheetFilesOnly"],"default":"always","markdownDescription":"Shows expanded Emmet abbreviations as suggestions.\nThe option `\"inMarkupAndStylesheetFilesOnly\"` applies to html, haml, jade, slim, xml, xsl, css, scss, sass, less and stylus.\nThe option `\"always\"` applies to all parts of the file regardless of markup/css."},"emmet.showAbbreviationSuggestions":{"type":"boolean","default":true,"markdownDescription":"Shows possible Emmet abbreviations as suggestions. Not applicable in stylesheets or when emmet.showExpandedAbbreviation is set to `\"never\"`."},"emmet.includeLanguages":{"type":"object","default":{},"markdownDescription":"Enable Emmet abbreviations in languages that are not supported by default. Add a mapping here between the language and emmet supported language.\n E.g.: `{\"vue-html\": \"html\", \"javascript\": \"javascriptreact\"}`"},"emmet.variables":{"type":"object","properties":{"lang":{"type":"string","default":"en"},"charset":{"type":"string","default":"UTF-8"}},"default":{},"description":"Variables to be used in Emmet snippets"},"emmet.syntaxProfiles":{"type":"object","default":{},"description":"Define profile for specified syntax or use your own profile with specific rules."},"emmet.excludeLanguages":{"type":"array","default":["markdown"],"description":"An array of languages where Emmet abbreviations should not be expanded."},"emmet.extensionsPath":{"type":["string","null"],"default":null,"description":"Path to a folder containing Emmet profiles and snippets."},"emmet.triggerExpansionOnTab":{"type":"boolean","default":false,"description":"When enabled, Emmet abbreviations are expanded when pressing TAB."},"emmet.preferences":{"type":"object","default":{},"description":"Preferences used to modify behavior of some actions and resolvers of Emmet.","properties":{"css.intUnit":{"type":"string","default":"px","description":"Default unit for integer values"},"css.floatUnit":{"type":"string","default":"em","description":"Default unit for float values"},"css.propertyEnd":{"type":"string","default":";","description":"Symbol to be placed at the end of CSS property when expanding CSS abbreviations"},"sass.propertyEnd":{"type":"string","default":"","description":"Symbol to be placed at the end of CSS property when expanding CSS abbreviations in Sass files"},"stylus.propertyEnd":{"type":"string","default":"","description":"Symbol to be placed at the end of CSS property when expanding CSS abbreviations in Stylus files"},"css.valueSeparator":{"type":"string","default":": ","description":"Symbol to be placed at the between CSS property and value when expanding CSS abbreviations"},"sass.valueSeparator":{"type":"string","default":": ","description":"Symbol to be placed at the between CSS property and value when expanding CSS abbreviations in Sass files"},"stylus.valueSeparator":{"type":"string","default":" ","description":"Symbol to be placed at the between CSS property and value when expanding CSS abbreviations in Stylus files"},"bem.elementSeparator":{"type":"string","default":"__","description":"Element separator used for classes when using the BEM filter"},"bem.modifierSeparator":{"type":"string","default":"_","description":"Modifier separator used for classes when using the BEM filter"},"filter.commentBefore":{"type":"string","default":"","description":"A definition of comment that should be placed before matched element when comment filter is applied."},"filter.commentAfter":{"type":"string","default":"\n","description":"A definition of comment that should be placed after matched element when comment filter is applied."},"filter.commentTrigger":{"type":"array","default":["id","class"],"description":"A comma-separated list of attribute names that should exist in abbreviation for the comment filter to be applied"},"format.noIndentTags":{"type":"array","default":["html"],"description":"An array of tag names that should not get inner indentation"},"format.forceIndentationForTags":{"type":"array","default":["body"],"description":"An array of tag names that should always get inner indentation"},"profile.allowCompactBoolean":{"type":"boolean","default":false,"description":"If true, compact notation of boolean attributes are produced"},"css.webkitProperties":{"type":"string","default":null,"markdownDescription":"Comma separated CSS properties that get the 'webkit' vendor prefix when used in Emmet abbreviation that starts with `-`. Set to empty string to always avoid the 'webkit' prefix."},"css.mozProperties":{"type":"string","default":null,"markdownDescription":"Comma separated CSS properties that get the 'moz' vendor prefix when used in Emmet abbreviation that starts with `-`. Set to empty string to always avoid the 'moz' prefix."},"css.oProperties":{"type":"string","default":null,"markdownDescription":"Comma separated CSS properties that get the 'o' vendor prefix when used in Emmet abbreviation that starts with `-`. Set to empty string to always avoid the 'o' prefix."},"css.msProperties":{"type":"string","default":null,"markdownDescription":"Comma separated CSS properties that get the 'ms' vendor prefix when used in Emmet abbreviation that starts with `-`. Set to empty string to always avoid the 'ms' prefix."},"css.fuzzySearchMinScore":{"type":"number","default":0.3,"description":"The minimum score (from 0 to 1) that fuzzy-matched abbreviation should achieve. Lower values may produce many false-positive matches, higher values may reduce possible matches."}}},"emmet.showSuggestionsAsSnippets":{"type":"boolean","default":false,"markdownDescription":"If `true`, then Emmet suggestions will show up as snippets allowing you to order them as per `#editor.snippetSuggestions#` setting."},"emmet.optimizeStylesheetParsing":{"type":"boolean","default":true,"markdownDescription":"When set to `false`, the whole file is parsed to determine if current position is valid for expanding Emmet abbreviations. When set to `true`, only the content around the current position in css/scss/less files is parsed."}}},"commands":[{"command":"editor.emmet.action.wrapIndividualLinesWithAbbreviation","title":"Wrap Individual Lines with Abbreviation","category":"Emmet"},{"command":"editor.emmet.action.wrapWithAbbreviation","title":"Wrap with Abbreviation","category":"Emmet"},{"command":"editor.emmet.action.removeTag","title":"Remove Tag","category":"Emmet"},{"command":"editor.emmet.action.updateTag","title":"Update Tag","category":"Emmet"},{"command":"editor.emmet.action.matchTag","title":"Go to Matching Pair","category":"Emmet"},{"command":"editor.emmet.action.balanceIn","title":"Balance (inward)","category":"Emmet"},{"command":"editor.emmet.action.balanceOut","title":"Balance (outward)","category":"Emmet"},{"command":"editor.emmet.action.prevEditPoint","title":"Go to Previous Edit Point","category":"Emmet"},{"command":"editor.emmet.action.nextEditPoint","title":"Go to Next Edit Point","category":"Emmet"},{"command":"editor.emmet.action.mergeLines","title":"Merge Lines","category":"Emmet"},{"command":"editor.emmet.action.selectPrevItem","title":"Select Previous Item","category":"Emmet"},{"command":"editor.emmet.action.selectNextItem","title":"Select Next Item","category":"Emmet"},{"command":"editor.emmet.action.splitJoinTag","title":"Split/Join Tag","category":"Emmet"},{"command":"editor.emmet.action.toggleComment","title":"Toggle Comment","category":"Emmet"},{"command":"editor.emmet.action.evaluateMathExpression","title":"Evaluate Math Expression","category":"Emmet"},{"command":"editor.emmet.action.updateImageSize","title":"Update Image Size","category":"Emmet"},{"command":"editor.emmet.action.incrementNumberByOneTenth","title":"Increment by 0.1","category":"Emmet"},{"command":"editor.emmet.action.incrementNumberByOne","title":"Increment by 1","category":"Emmet"},{"command":"editor.emmet.action.incrementNumberByTen","title":"Increment by 10","category":"Emmet"},{"command":"editor.emmet.action.decrementNumberByOneTenth","title":"Decrement by 0.1","category":"Emmet"},{"command":"editor.emmet.action.decrementNumberByOne","title":"Decrement by 1","category":"Emmet"},{"command":"editor.emmet.action.decrementNumberByTen","title":"Decrement by 10","category":"Emmet"},{"command":"editor.emmet.action.reflectCSSValue","title":"Reflect CSS Value","category":"Emmet"}],"menus":{"commandPalette":[{"command":"editor.emmet.action.wrapIndividualLinesWithAbbreviation","when":"resourceScheme =~ /^untitled$|^file$/"},{"command":"editor.emmet.action.wrapWithAbbreviation","when":"resourceScheme =~ /^untitled$|^file$/"},{"command":"editor.emmet.action.removeTag","when":"resourceScheme =~ /^untitled$|^file$/"},{"command":"editor.emmet.action.updateTag","when":"resourceScheme =~ /^untitled$|^file$/"},{"command":"editor.emmet.action.matchTag","when":"resourceScheme =~ /^untitled$|^file$/"},{"command":"editor.emmet.action.balanceIn","when":"resourceScheme =~ /^untitled$|^file$/"},{"command":"editor.emmet.action.balanceOut","when":"resourceScheme =~ /^untitled$|^file$/"},{"command":"editor.emmet.action.prevEditPoint","when":"resourceScheme =~ /^untitled$|^file$/"},{"command":"editor.emmet.action.nextEditPoint","when":"resourceScheme =~ /^untitled$|^file$/"},{"command":"editor.emmet.action.mergeLines","when":"resourceScheme =~ /^untitled$|^file$/"},{"command":"editor.emmet.action.selectPrevItem","when":"resourceScheme =~ /^untitled$|^file$/"},{"command":"editor.emmet.action.selectNextItem","when":"resourceScheme =~ /^untitled$|^file$/"},{"command":"editor.emmet.action.splitJoinTag","when":"resourceScheme =~ /^untitled$|^file$/"},{"command":"editor.emmet.action.toggleComment","when":"resourceScheme =~ /^untitled$|^file$/"},{"command":"editor.emmet.action.evaluateMathExpression","when":"resourceScheme =~ /^untitled$|^file$/"},{"command":"editor.emmet.action.updateImageSize","when":"resourceScheme =~ /^untitled$|^file$/"},{"command":"editor.emmet.action.incrementNumberByOneTenth","when":"resourceScheme =~ /^untitled$|^file$/"},{"command":"editor.emmet.action.incrementNumberByOne","when":"resourceScheme =~ /^untitled$|^file$/"},{"command":"editor.emmet.action.incrementNumberByTen","when":"resourceScheme =~ /^untitled$|^file$/"},{"command":"editor.emmet.action.decrementNumberByOneTenth","when":"resourceScheme =~ /^untitled$|^file$/"},{"command":"editor.emmet.action.decrementNumberByOne","when":"resourceScheme =~ /^untitled$|^file$/"},{"command":"editor.emmet.action.decrementNumberByTen","when":"resourceScheme =~ /^untitled$|^file$/"},{"command":"editor.emmet.action.reflectCSSValue","when":"resourceScheme =~ /^untitled$|^file$/"}]}},"scripts":{"watch":"gulp watch-extension:emmet","compile":"gulp compile-extension:emmet","deps":"yarn add vscode-emmet-helper"},"devDependencies":{"@types/node":"^12.11.7","mocha-junit-reporter":"^1.17.0","mocha-multi-reporters":"^1.1.7","vscode":"1.0.1"},"dependencies":{"@emmetio/css-parser":"ramya-rao-a/css-parser#vscode","@emmetio/html-matcher":"^0.3.3","@emmetio/math-expression":"^0.1.1","image-size":"^0.5.2","vscode-emmet-helper":"^1.2.17","vscode-html-languageservice":"^3.0.3"},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.emmet","identifier":{"value":"vscode.emmet","_lower":"vscode.emmet"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/emmet","path":"/snap/code/26/usr/share/code/resources/app/extensions/emmet","scheme":"file"}},{"name":"extension-editing","displayName":"Extension Authoring","description":"Provides linting capabilities for authoring extensions.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"^1.4.0"},"activationEvents":["onLanguage:json","onLanguage:markdown","onLanguage:typescript"],"main":"./dist/extension","scripts":{"compile":"gulp compile-extension:extension-editing","watch":"gulp watch-extension:extension-editing"},"dependencies":{"jsonc-parser":"^2.2.1","markdown-it":"^8.3.1","parse5":"^3.0.2","vscode-nls":"^4.1.1"},"contributes":{"jsonValidation":[{"fileMatch":"package.json","url":"vscode://schemas/vscode-extensions"},{"fileMatch":"*language-configuration.json","url":"vscode://schemas/language-configuration"},{"fileMatch":"*icon-theme.json","url":"vscode://schemas/icon-theme"},{"fileMatch":"*color-theme.json","url":"vscode://schemas/color-theme"}],"languages":[{"id":"ignore","filenames":[".vscodeignore"]}]},"devDependencies":{"@types/markdown-it":"0.0.2","@types/node":"^12.11.7"},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.extension-editing","identifier":{"value":"vscode.extension-editing","_lower":"vscode.extension-editing"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/extension-editing","path":"/snap/code/26/usr/share/code/resources/app/extensions/extension-editing","scheme":"file"}},{"name":"fsharp","displayName":"F# Language Basics","description":"Provides snippets, syntax highlighting, bracket matching and folding in F# files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js ionide/ionide-fsgrammar grammar/fsharp.json ./syntaxes/fsharp.tmLanguage.json"},"contributes":{"languages":[{"id":"fsharp","extensions":[".fs",".fsi",".fsx",".fsscript"],"aliases":["F#","FSharp","fsharp"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"fsharp","scopeName":"source.fsharp","path":"./syntaxes/fsharp.tmLanguage.json"}],"snippets":[{"language":"fsharp","path":"./snippets/fsharp.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.fsharp","identifier":{"value":"vscode.fsharp","_lower":"vscode.fsharp"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/fsharp","path":"/snap/code/26/usr/share/code/resources/app/extensions/fsharp","scheme":"file"}},{"name":"git","displayName":"Git","description":"Git SCM Integration","publisher":"vscode","license":"MIT","version":"1.0.0","engines":{"vscode":"^1.5.0"},"aiKey":"AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217","enableProposedApi":true,"categories":["Other"],"activationEvents":["*"],"main":"./dist/main","icon":"resources/icons/git.png","scripts":{"compile":"gulp compile-extension:git","watch":"gulp watch-extension:git","update-grammar":"node ./build/update-grammars.js","test":"mocha"},"contributes":{"commands":[{"command":"git.setLogLevel","title":"Set Log Level...","category":"Git"},{"command":"git.clone","title":"Clone","category":"Git"},{"command":"git.init","title":"Initialize Repository","category":"Git","icon":{"light":"resources/icons/light/git.svg","dark":"resources/icons/dark/git.svg"}},{"command":"git.openRepository","title":"Open Repository","category":"Git"},{"command":"git.close","title":"Close Repository","category":"Git"},{"command":"git.refresh","title":"Refresh","category":"Git","icon":{"light":"resources/icons/light/refresh.svg","dark":"resources/icons/dark/refresh.svg"}},{"command":"git.openChange","title":"Open Changes","category":"Git","icon":{"light":"resources/icons/light/open-change.svg","dark":"resources/icons/dark/open-change.svg"}},{"command":"git.openFile","title":"Open File","category":"Git","icon":{"light":"resources/icons/light/open-file.svg","dark":"resources/icons/dark/open-file.svg"}},{"command":"git.openFile2","title":"Open File","category":"Git","icon":{"light":"resources/icons/light/open-file.svg","dark":"resources/icons/dark/open-file.svg"}},{"command":"git.openHEADFile","title":"Open File (HEAD)","category":"Git"},{"command":"git.stage","title":"Stage Changes","category":"Git","icon":{"light":"resources/icons/light/stage.svg","dark":"resources/icons/dark/stage.svg"}},{"command":"git.stageAll","title":"Stage All Changes","category":"Git","icon":{"light":"resources/icons/light/stage.svg","dark":"resources/icons/dark/stage.svg"}},{"command":"git.stageAllTracked","title":"Stage All Tracked Changes","category":"Git","icon":{"light":"resources/icons/light/stage.svg","dark":"resources/icons/dark/stage.svg"}},{"command":"git.stageAllUntracked","title":"Stage All Untracked Changes","category":"Git","icon":{"light":"resources/icons/light/stage.svg","dark":"resources/icons/dark/stage.svg"}},{"command":"git.stageSelectedRanges","title":"Stage Selected Ranges","category":"Git"},{"command":"git.revertSelectedRanges","title":"Revert Selected Ranges","category":"Git"},{"command":"git.stageChange","title":"Stage Change","category":"Git","icon":{"light":"resources/icons/light/stage.svg","dark":"resources/icons/dark/stage.svg"}},{"command":"git.revertChange","title":"Revert Change","category":"Git","icon":{"light":"resources/icons/light/clean.svg","dark":"resources/icons/dark/clean.svg"}},{"command":"git.unstage","title":"Unstage Changes","category":"Git","icon":{"light":"resources/icons/light/unstage.svg","dark":"resources/icons/dark/unstage.svg"}},{"command":"git.unstageAll","title":"Unstage All Changes","category":"Git","icon":{"light":"resources/icons/light/unstage.svg","dark":"resources/icons/dark/unstage.svg"}},{"command":"git.unstageSelectedRanges","title":"Unstage Selected Ranges","category":"Git"},{"command":"git.clean","title":"Discard Changes","category":"Git","icon":{"light":"resources/icons/light/clean.svg","dark":"resources/icons/dark/clean.svg"}},{"command":"git.cleanAll","title":"Discard All Changes","category":"Git","icon":{"light":"resources/icons/light/clean.svg","dark":"resources/icons/dark/clean.svg"}},{"command":"git.cleanAllTracked","title":"Discard All Tracked Changes","category":"Git","icon":{"light":"resources/icons/light/clean.svg","dark":"resources/icons/dark/clean.svg"}},{"command":"git.cleanAllUntracked","title":"Discard All Untracked Changes","category":"Git","icon":{"light":"resources/icons/light/clean.svg","dark":"resources/icons/dark/clean.svg"}},{"command":"git.commit","title":"Commit","category":"Git","icon":{"light":"resources/icons/light/check.svg","dark":"resources/icons/dark/check.svg"}},{"command":"git.commitStaged","title":"Commit Staged","category":"Git"},{"command":"git.commitEmpty","title":"Commit Empty","category":"Git"},{"command":"git.commitStagedSigned","title":"Commit Staged (Signed Off)","category":"Git"},{"command":"git.commitStagedAmend","title":"Commit Staged (Amend)","category":"Git"},{"command":"git.commitAll","title":"Commit All","category":"Git"},{"command":"git.commitAllSigned","title":"Commit All (Signed Off)","category":"Git"},{"command":"git.commitAllAmend","title":"Commit All (Amend)","category":"Git"},{"command":"git.restoreCommitTemplate","title":"Restore Commit Template","category":"Git"},{"command":"git.undoCommit","title":"Undo Last Commit","category":"Git"},{"command":"git.checkout","title":"Checkout to...","category":"Git"},{"command":"git.branch","title":"Create Branch...","category":"Git"},{"command":"git.branchFrom","title":"Create Branch From...","category":"Git"},{"command":"git.deleteBranch","title":"Delete Branch...","category":"Git"},{"command":"git.renameBranch","title":"Rename Branch...","category":"Git"},{"command":"git.merge","title":"Merge Branch...","category":"Git"},{"command":"git.createTag","title":"Create Tag","category":"Git"},{"command":"git.deleteTag","title":"Delete Tag","category":"Git"},{"command":"git.fetch","title":"Fetch","category":"Git"},{"command":"git.fetchPrune","title":"Fetch (Prune)","category":"Git"},{"command":"git.fetchAll","title":"Fetch From All Remotes","category":"Git"},{"command":"git.pull","title":"Pull","category":"Git"},{"command":"git.pullRebase","title":"Pull (Rebase)","category":"Git"},{"command":"git.pullFrom","title":"Pull from...","category":"Git"},{"command":"git.push","title":"Push","category":"Git"},{"command":"git.pushForce","title":"Push (Force)","category":"Git"},{"command":"git.pushTo","title":"Push to...","category":"Git"},{"command":"git.pushToForce","title":"Push to... (Force)","category":"Git"},{"command":"git.pushWithTags","title":"Push (Follow Tags)","category":"Git"},{"command":"git.pushWithTagsForce","title":"Push (Follow Tags, Force)","category":"Git"},{"command":"git.addRemote","title":"Add Remote","category":"Git"},{"command":"git.removeRemote","title":"Remove Remote","category":"Git"},{"command":"git.sync","title":"Sync","category":"Git"},{"command":"git.syncRebase","title":"Sync (Rebase)","category":"Git"},{"command":"git.publish","title":"Publish Branch...","category":"Git"},{"command":"git.showOutput","title":"Show Git Output","category":"Git"},{"command":"git.ignore","title":"Add to .gitignore","category":"Git"},{"command":"git.revealInExplorer","title":"Reveal in Side Bar","category":"Git"},{"command":"git.stashIncludeUntracked","title":"Stash (Include Untracked)","category":"Git"},{"command":"git.stash","title":"Stash","category":"Git"},{"command":"git.stashPop","title":"Pop Stash...","category":"Git"},{"command":"git.stashPopLatest","title":"Pop Latest Stash","category":"Git"},{"command":"git.stashApply","title":"Apply Stash...","category":"Git"},{"command":"git.stashApplyLatest","title":"Apply Latest Stash","category":"Git"},{"command":"git.stashDrop","title":"Drop Stash...","category":"Git"},{"command":"git.timeline.openDiff","title":"Open Changes","icon":"$(compare-changes)","category":"Git"},{"command":"git.timeline.copyCommitId","title":"Copy Commit ID","category":"Git"},{"command":"git.timeline.copyCommitMessage","title":"Copy Commit Message","category":"Git"}],"menus":{"commandPalette":[{"command":"git.setLogLevel","when":"config.git.enabled && !git.missing"},{"command":"git.clone","when":"config.git.enabled && !git.missing"},{"command":"git.init","when":"config.git.enabled && !git.missing"},{"command":"git.openRepository","when":"config.git.enabled && !git.missing"},{"command":"git.close","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.refresh","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.openFile","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.openHEADFile","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.openChange","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.stage","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.stageAll","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.stageAllTracked","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.stageAllUntracked","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.stageSelectedRanges","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.stageChange","when":"false"},{"command":"git.revertSelectedRanges","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.revertChange","when":"false"},{"command":"git.openFile2","when":"false"},{"command":"git.unstage","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.unstageAll","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.unstageSelectedRanges","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.clean","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.cleanAll","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.cleanAllTracked","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.cleanAllUntracked","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.commit","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.commitStaged","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.commitEmpty","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.commitStagedSigned","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.commitStagedAmend","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.commitAll","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.commitAllSigned","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.commitAllAmend","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.restoreCommitTemplate","when":"false"},{"command":"git.revealInExplorer","when":"false"},{"command":"git.undoCommit","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.checkout","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.branch","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.branchFrom","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.deleteBranch","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.renameBranch","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.pull","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.pullFrom","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.pullRebase","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.pullFrom","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.merge","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.createTag","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.deleteTag","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.fetch","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.fetchPrune","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.fetchAll","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.push","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.pushForce","when":"config.git.enabled && !git.missing && config.git.allowForcePush && gitOpenRepositoryCount != 0"},{"command":"git.pushTo","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.pushToForce","when":"config.git.enabled && !git.missing && config.git.allowForcePush && gitOpenRepositoryCount != 0"},{"command":"git.pushWithTags","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.pushWithTagsForce","when":"config.git.enabled && !git.missing && config.git.allowForcePush && gitOpenRepositoryCount != 0"},{"command":"git.addRemote","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.removeRemote","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.sync","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.syncRebase","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.publish","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.showOutput","when":"config.git.enabled"},{"command":"git.ignore","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.stashIncludeUntracked","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.stash","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.stashPop","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.stashPopLatest","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.stashApply","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.stashApplyLatest","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.stashDrop","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"},{"command":"git.timeline.openDiff","when":"false"},{"command":"git.timeline.copyCommitId","when":"false"},{"command":"git.timeline.copyCommitMessage","when":"false"}],"scm/title":[{"command":"git.commit","group":"navigation","when":"scmProvider == git"},{"command":"git.refresh","group":"navigation","when":"scmProvider == git"},{"command":"git.sync","group":"1_sync","when":"scmProvider == git"},{"command":"git.syncRebase","group":"1_sync","when":"scmProvider == git && gitState == idle"},{"command":"git.pull","group":"1_sync","when":"scmProvider == git"},{"command":"git.pullRebase","group":"1_sync","when":"scmProvider == git"},{"command":"git.pullFrom","group":"1_sync","when":"scmProvider == git"},{"command":"git.push","group":"1_sync","when":"scmProvider == git"},{"command":"git.pushForce","group":"1_sync","when":"scmProvider == git && config.git.allowForcePush"},{"command":"git.pushTo","group":"1_sync","when":"scmProvider == git"},{"command":"git.pushToForce","group":"1_sync","when":"scmProvider == git && config.git.allowForcePush"},{"command":"git.checkout","group":"2_branch","when":"scmProvider == git"},{"command":"git.publish","group":"2_branch","when":"scmProvider == git"},{"command":"git.commitStaged","group":"4_commit","when":"scmProvider == git"},{"command":"git.commitStagedSigned","group":"4_commit","when":"scmProvider == git"},{"command":"git.commitStagedAmend","group":"4_commit","when":"scmProvider == git"},{"command":"git.commitAll","group":"4_commit","when":"scmProvider == git"},{"command":"git.commitAllSigned","group":"4_commit","when":"scmProvider == git"},{"command":"git.commitAllAmend","group":"4_commit","when":"scmProvider == git"},{"command":"git.undoCommit","group":"4_commit","when":"scmProvider == git"},{"command":"git.stageAll","group":"5_stage","when":"scmProvider == git"},{"command":"git.unstageAll","group":"5_stage","when":"scmProvider == git"},{"command":"git.cleanAll","group":"5_stage","when":"scmProvider == git"},{"command":"git.stashIncludeUntracked","group":"6_stash","when":"scmProvider == git"},{"command":"git.stash","group":"6_stash","when":"scmProvider == git"},{"command":"git.stashPop","group":"6_stash","when":"scmProvider == git"},{"command":"git.stashPopLatest","group":"6_stash","when":"scmProvider == git"},{"command":"git.stashApply","group":"6_stash","when":"scmProvider == git"},{"command":"git.stashApplyLatest","group":"6_stash","when":"scmProvider == git"},{"command":"git.stashDrop","group":"6_stash","when":"scmProvider == git"},{"command":"git.showOutput","group":"7_repository","when":"scmProvider == git"}],"scm/sourceControl":[{"command":"git.close","group":"navigation","when":"scmProvider == git"}],"scm/resourceGroup/context":[{"command":"git.stageAll","when":"scmProvider == git && scmResourceGroup == merge","group":"1_modification"},{"command":"git.stageAll","when":"scmProvider == git && scmResourceGroup == merge","group":"inline"},{"command":"git.unstageAll","when":"scmProvider == git && scmResourceGroup == index","group":"1_modification"},{"command":"git.unstageAll","when":"scmProvider == git && scmResourceGroup == index","group":"inline"},{"command":"git.cleanAll","when":"scmProvider == git && scmResourceGroup == workingTree && config.git.untrackedChanges == mixed","group":"1_modification"},{"command":"git.stageAll","when":"scmProvider == git && scmResourceGroup == workingTree && config.git.untrackedChanges == mixed","group":"1_modification"},{"command":"git.cleanAll","when":"scmProvider == git && scmResourceGroup == workingTree && config.git.untrackedChanges == mixed","group":"inline"},{"command":"git.stageAll","when":"scmProvider == git && scmResourceGroup == workingTree && config.git.untrackedChanges == mixed","group":"inline"},{"command":"git.cleanAllTracked","when":"scmProvider == git && scmResourceGroup == workingTree && config.git.untrackedChanges != mixed","group":"1_modification"},{"command":"git.stageAllTracked","when":"scmProvider == git && scmResourceGroup == workingTree && config.git.untrackedChanges != mixed","group":"1_modification"},{"command":"git.cleanAllTracked","when":"scmProvider == git && scmResourceGroup == workingTree && config.git.untrackedChanges != mixed","group":"inline"},{"command":"git.stageAllTracked","when":"scmProvider == git && scmResourceGroup == workingTree && config.git.untrackedChanges != mixed","group":"inline"},{"command":"git.cleanAllUntracked","when":"scmProvider == git && scmResourceGroup == untracked","group":"1_modification"},{"command":"git.stageAllUntracked","when":"scmProvider == git && scmResourceGroup == untracked","group":"1_modification"},{"command":"git.cleanAllUntracked","when":"scmProvider == git && scmResourceGroup == untracked","group":"inline"},{"command":"git.stageAllUntracked","when":"scmProvider == git && scmResourceGroup == untracked","group":"inline"}],"scm/resourceFolder/context":[{"command":"git.stage","when":"scmProvider == git && scmResourceGroup == merge","group":"1_modification"},{"command":"git.stage","when":"scmProvider == git && scmResourceGroup == merge","group":"inline"},{"command":"git.unstage","when":"scmProvider == git && scmResourceGroup == index","group":"1_modification"},{"command":"git.unstage","when":"scmProvider == git && scmResourceGroup == index","group":"inline"},{"command":"git.stage","when":"scmProvider == git && scmResourceGroup == workingTree","group":"1_modification"},{"command":"git.clean","when":"scmProvider == git && scmResourceGroup == workingTree","group":"1_modification"},{"command":"git.clean","when":"scmProvider == git && scmResourceGroup == workingTree","group":"inline"},{"command":"git.stage","when":"scmProvider == git && scmResourceGroup == workingTree","group":"inline"},{"command":"git.ignore","when":"scmProvider == git && scmResourceGroup == workingTree","group":"1_modification@3"}],"scm/resourceState/context":[{"command":"git.stage","when":"scmProvider == git && scmResourceGroup == merge","group":"1_modification"},{"command":"git.openFile","when":"scmProvider == git && scmResourceGroup == merge","group":"navigation"},{"command":"git.stage","when":"scmProvider == git && scmResourceGroup == merge","group":"inline"},{"command":"git.revealInExplorer","when":"scmProvider == git && scmResourceGroup == merge","group":"2_view"},{"command":"git.openFile2","when":"scmProvider == git && scmResourceGroup == merge && config.git.showInlineOpenFileAction && config.git.openDiffOnClick","group":"inline0"},{"command":"git.openChange","when":"scmProvider == git && scmResourceGroup == merge && config.git.showInlineOpenFileAction && !config.git.openDiffOnClick","group":"inline0"},{"command":"git.openChange","when":"scmProvider == git && scmResourceGroup == index","group":"navigation"},{"command":"git.openFile","when":"scmProvider == git && scmResourceGroup == index","group":"navigation"},{"command":"git.openHEADFile","when":"scmProvider == git && scmResourceGroup == index","group":"navigation"},{"command":"git.unstage","when":"scmProvider == git && scmResourceGroup == index","group":"1_modification"},{"command":"git.unstage","when":"scmProvider == git && scmResourceGroup == index","group":"inline"},{"command":"git.revealInExplorer","when":"scmProvider == git && scmResourceGroup == index","group":"2_view"},{"command":"git.openFile2","when":"scmProvider == git && scmResourceGroup == index && config.git.showInlineOpenFileAction && config.git.openDiffOnClick","group":"inline0"},{"command":"git.openChange","when":"scmProvider == git && scmResourceGroup == index && config.git.showInlineOpenFileAction && !config.git.openDiffOnClick","group":"inline0"},{"command":"git.openChange","when":"scmProvider == git && scmResourceGroup == workingTree","group":"navigation"},{"command":"git.openHEADFile","when":"scmProvider == git && scmResourceGroup == workingTree","group":"navigation"},{"command":"git.openFile","when":"scmProvider == git && scmResourceGroup == workingTree","group":"navigation"},{"command":"git.stage","when":"scmProvider == git && scmResourceGroup == workingTree","group":"1_modification"},{"command":"git.clean","when":"scmProvider == git && scmResourceGroup == workingTree","group":"1_modification"},{"command":"git.clean","when":"scmProvider == git && scmResourceGroup == workingTree","group":"inline"},{"command":"git.stage","when":"scmProvider == git && scmResourceGroup == workingTree","group":"inline"},{"command":"git.openFile2","when":"scmProvider == git && scmResourceGroup == workingTree && config.git.showInlineOpenFileAction && config.git.openDiffOnClick","group":"inline0"},{"command":"git.openChange","when":"scmProvider == git && scmResourceGroup == workingTree && config.git.showInlineOpenFileAction && !config.git.openDiffOnClick","group":"inline0"},{"command":"git.ignore","when":"scmProvider == git && scmResourceGroup == workingTree","group":"1_modification@3"},{"command":"git.revealInExplorer","when":"scmProvider == git && scmResourceGroup == workingTree","group":"2_view"},{"command":"git.openChange","when":"scmProvider == git && scmResourceGroup == untracked","group":"navigation"},{"command":"git.openHEADFile","when":"scmProvider == git && scmResourceGroup == untracked","group":"navigation"},{"command":"git.openFile","when":"scmProvider == git && scmResourceGroup == untracked","group":"navigation"},{"command":"git.stage","when":"scmProvider == git && scmResourceGroup == untracked","group":"1_modification"},{"command":"git.clean","when":"scmProvider == git && scmResourceGroup == untracked && !gitFreshRepository","group":"1_modification"},{"command":"git.clean","when":"scmProvider == git && scmResourceGroup == untracked && !gitFreshRepository","group":"inline"},{"command":"git.stage","when":"scmProvider == git && scmResourceGroup == untracked","group":"inline"},{"command":"git.openFile2","when":"scmProvider == git && scmResourceGroup == untracked && config.git.showInlineOpenFileAction && config.git.openDiffOnClick","group":"inline0"},{"command":"git.openChange","when":"scmProvider == git && scmResourceGroup == untracked && config.git.showInlineOpenFileAction && !config.git.openDiffOnClick","group":"inline0"},{"command":"git.ignore","when":"scmProvider == git && scmResourceGroup == untracked","group":"1_modification@3"}],"editor/title":[{"command":"git.openFile","group":"navigation","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0 && isInDiffEditor && resourceScheme =~ /^git$|^file$/"},{"command":"git.openChange","group":"navigation","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0 && !isInDiffEditor && resourceScheme == file"},{"command":"git.stageSelectedRanges","group":"2_git@1","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0 && isInDiffEditor && resourceScheme =~ /^git$|^file$/"},{"command":"git.unstageSelectedRanges","group":"2_git@2","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0 && isInDiffEditor && resourceScheme =~ /^git$|^file$/"},{"command":"git.revertSelectedRanges","group":"2_git@3","when":"config.git.enabled && !git.missing && gitOpenRepositoryCount != 0 && isInDiffEditor && resourceScheme =~ /^git$|^file$/"}],"editor/context":[{"command":"git.stageSelectedRanges","group":"2_git@1","when":"isInDiffRightEditor && config.git.enabled && !git.missing && gitOpenRepositoryCount != 0 && isInDiffEditor && resourceScheme =~ /^git$|^file$/"},{"command":"git.unstageSelectedRanges","group":"2_git@2","when":"isInDiffRightEditor && config.git.enabled && !git.missing && gitOpenRepositoryCount != 0 && isInDiffEditor && resourceScheme =~ /^git$|^file$/"},{"command":"git.revertSelectedRanges","group":"2_git@3","when":"isInDiffRightEditor && config.git.enabled && !git.missing && gitOpenRepositoryCount != 0 && isInDiffEditor && resourceScheme =~ /^git$|^file$/"}],"scm/change/title":[{"command":"git.stageChange","when":"config.git.enabled && !git.missing && originalResourceScheme == git"},{"command":"git.revertChange","when":"config.git.enabled && !git.missing && originalResourceScheme == git"}],"timeline/item/context":[{"command":"git.timeline.openDiff","group":"inline","when":"config.git.enabled && !git.missing && timelineItem =~ /git:file\\b/"},{"command":"git.timeline.openDiff","group":"1_timeline","when":"config.git.enabled && !git.missing && timelineItem =~ /git:file\\b/"},{"command":"git.timeline.copyCommitId","group":"2_timeline@1","when":"config.git.enabled && !git.missing && timelineItem =~ /git:file:commit\\b/"},{"command":"git.timeline.copyCommitMessage","group":"2_timeline@2","when":"config.git.enabled && !git.missing && timelineItem =~ /git:file:commit\\b/"}]},"configuration":{"title":"Git","properties":{"git.enabled":{"type":"boolean","scope":"resource","description":"Whether git is enabled.","default":true},"git.path":{"type":["string","null"],"markdownDescription":"Path and filename of the git executable, e.g. `C:\\Program Files\\Git\\bin\\git.exe` (Windows).","default":null,"scope":"machine"},"git.autoRepositoryDetection":{"type":["boolean","string"],"enum":[true,false,"subFolders","openEditors"],"enumDescriptions":["Scan for both subfolders of the current opened folder and parent folders of open files.","Disable automatic repository scanning.","Scan for subfolders of the currently opened folder.","Scan for parent folders of open files."],"description":"Configures when repositories should be automatically detected.","default":true},"git.autorefresh":{"type":"boolean","description":"Whether auto refreshing is enabled.","default":true},"git.autofetch":{"type":"boolean","scope":"resource","description":"When enabled, commits will automatically be fetched from the default remote of the current Git repository.","default":false,"tags":["usesOnlineServices"]},"git.autofetchPeriod":{"type":"number","scope":"resource","description":"Duration in seconds between each automatic git fetch, when `git.autofetch` is enabled.","default":180},"git.branchValidationRegex":{"type":"string","description":"A regular expression to validate new branch names.","default":""},"git.branchWhitespaceChar":{"type":"string","description":"The character to replace whitespace in new branch names.","default":"-"},"git.confirmSync":{"type":"boolean","description":"Confirm before synchronizing git repositories.","default":true},"git.countBadge":{"type":"string","enum":["all","tracked","off"],"enumDescriptions":["Count all changes.","Count only tracked changes.","Turn off counter."],"description":"Controls the Git count badge.","default":"all","scope":"resource"},"git.checkoutType":{"type":"string","enum":["all","local","tags","remote"],"enumDescriptions":["Show all references.","Show only local branches.","Show only tags.","Show only remote branches."],"markdownDescription":"Controls what type of branches are listed when running `Checkout to...`.","default":"all"},"git.ignoreLegacyWarning":{"type":"boolean","description":"Ignores the legacy Git warning.","default":false},"git.ignoreMissingGitWarning":{"type":"boolean","description":"Ignores the warning when Git is missing.","default":false},"git.ignoreLimitWarning":{"type":"boolean","description":"Ignores the warning when there are too many changes in a repository.","default":false},"git.defaultCloneDirectory":{"type":["string","null"],"default":null,"description":"The default location to clone a git repository."},"git.enableSmartCommit":{"type":"boolean","scope":"resource","description":"Commit all changes when there are no staged changes.","default":false},"git.smartCommitChanges":{"type":"string","enum":["all","tracked"],"enumDescriptions":["Automatically stage all changes.","Automatically staged tracked changes only."],"scope":"resource","description":"Control which changes are automatically staged by Smart Commit.","default":"all"},"git.suggestSmartCommit":{"type":"boolean","scope":"resource","description":"Suggests to enable smart commit (commit all changes when there are no staged changes).","default":true},"git.enableCommitSigning":{"type":"boolean","scope":"resource","description":"Enables commit signing with GPG.","default":false},"git.confirmEmptyCommits":{"type":"boolean","scope":"resource","description":"Always confirm the creation of empty commits for the 'Git: Commit Empty' command.","default":true},"git.decorations.enabled":{"type":"boolean","default":true,"description":"Controls whether Git contributes colors and badges to the explorer and the open editors view."},"git.enableStatusBarSync":{"type":"boolean","default":true,"description":"Controls whether the Git Sync command appears in the status bar.","scope":"resource"},"git.promptToSaveFilesBeforeCommit":{"type":"string","enum":["always","staged","never"],"enumDescriptions":["Check for any unsaved files.","Check only for unsaved staged files.","Disable this check."],"scope":"resource","default":"always","description":"Controls whether Git should check for unsaved files before committing."},"git.postCommitCommand":{"type":"string","enum":["none","push","sync"],"enumDescriptions":["Don't run any command after a commit.","Run 'Git Push' after a successful commit.","Run 'Git Sync' after a successful commit."],"markdownDescription":"Runs a git command after a successful commit.","scope":"resource","default":"none"},"git.showInlineOpenFileAction":{"type":"boolean","default":true,"description":"Controls whether to show an inline Open File action in the Git changes view."},"git.showPushSuccessNotification":{"type":"boolean","description":"Controls whether to show a notification when a push is successful.","default":false},"git.inputValidation":{"type":"string","enum":["always","warn","off"],"default":"warn","description":"Controls when to show commit message input validation."},"git.inputValidationLength":{"type":"number","default":72,"description":"Controls the commit message length threshold for showing a warning."},"git.inputValidationSubjectLength":{"type":["number","null"],"default":50,"description":"Controls the commit message subject length threshold for showing a warning. Unset it to inherit the value of `config.inputValidationLength`."},"git.detectSubmodules":{"type":"boolean","scope":"resource","default":true,"description":"Controls whether to automatically detect git submodules."},"git.detectSubmodulesLimit":{"type":"number","scope":"resource","default":10,"description":"Controls the limit of git submodules detected."},"git.alwaysShowStagedChangesResourceGroup":{"type":"boolean","scope":"resource","default":false,"description":"Always show the Staged Changes resource group."},"git.alwaysSignOff":{"type":"boolean","scope":"resource","default":false,"description":"Controls the signoff flag for all commits."},"git.ignoredRepositories":{"type":"array","items":{"type":"string"},"default":[],"scope":"window","description":"List of git repositories to ignore."},"git.scanRepositories":{"type":"array","items":{"type":"string"},"default":[],"scope":"resource","description":"List of paths to search for git repositories in."},"git.showProgress":{"type":"boolean","description":"Controls whether git actions should show progress.","default":true,"scope":"resource"},"git.rebaseWhenSync":{"type":"boolean","scope":"resource","default":false,"description":"Force git to use rebase when running the sync command."},"git.fetchOnPull":{"type":"boolean","scope":"resource","default":false,"description":"When enabled, fetch all branches when pulling. Otherwise, fetch just the current one."},"git.pullTags":{"type":"boolean","scope":"resource","default":true,"description":"Fetch all tags when pulling."},"git.autoStash":{"type":"boolean","scope":"resource","default":false,"description":"Stash any changes before pulling and restore them after successful pull."},"git.allowForcePush":{"type":"boolean","default":false,"description":"Controls whether force push (with or without lease) is enabled."},"git.useForcePushWithLease":{"type":"boolean","default":true,"description":"Controls whether force pushing uses the safer force-with-lease variant."},"git.confirmForcePush":{"type":"boolean","default":true,"description":"Controls whether to ask for confirmation before force-pushing."},"git.openDiffOnClick":{"type":"boolean","scope":"resource","default":true,"description":"Controls whether the diff editor should be opened when clicking a change. Otherwise the regular editor will be opened."},"git.supportCancellation":{"type":"boolean","scope":"resource","default":false,"description":"Controls whether a notification comes up when running the Sync action, which allows the user to cancel the operation."},"git.branchSortOrder":{"type":"string","enum":["committerdate","alphabetically"],"default":"committerdate","description":"Controls the sort order for branches."},"git.untrackedChanges":{"type":"string","enum":["mixed","separate","hidden"],"enumDescriptions":["All changes, tracked and untracked, appear together and behave equally.","Untracked changes appear separately in the Source Control view. They are also excluded from several actions.","Untracked changes are hidden and excluded from several actions."],"default":"mixed","description":"Controls how untracked changes behave.","scope":"resource"}}},"colors":[{"id":"gitDecoration.addedResourceForeground","description":"Color for added resources.","defaults":{"light":"#587c0c","dark":"#81b88b","highContrast":"#1b5225"}},{"id":"gitDecoration.modifiedResourceForeground","description":"Color for modified resources.","defaults":{"light":"#895503","dark":"#E2C08D","highContrast":"#E2C08D"}},{"id":"gitDecoration.deletedResourceForeground","description":"Color for deleted resources.","defaults":{"light":"#ad0707","dark":"#c74e39","highContrast":"#c74e39"}},{"id":"gitDecoration.untrackedResourceForeground","description":"Color for untracked resources.","defaults":{"light":"#007100","dark":"#73C991","highContrast":"#73C991"}},{"id":"gitDecoration.ignoredResourceForeground","description":"Color for ignored resources.","defaults":{"light":"#8E8E90","dark":"#8C8C8C","highContrast":"#A7A8A9"}},{"id":"gitDecoration.conflictingResourceForeground","description":"Color for resources with conflicts.","defaults":{"light":"#6c6cc4","dark":"#6c6cc4","highContrast":"#6c6cc4"}},{"id":"gitDecoration.submoduleResourceForeground","description":"Color for submodule resources.","defaults":{"light":"#1258a7","dark":"#8db9e2","highContrast":"#8db9e2"}}],"languages":[{"id":"git-commit","aliases":["Git Commit Message","git-commit"],"filenames":["COMMIT_EDITMSG","MERGE_MSG"],"configuration":"./languages/git-commit.language-configuration.json"},{"id":"git-rebase","aliases":["Git Rebase Message","git-rebase"],"filenames":["git-rebase-todo"],"configuration":"./languages/git-rebase.language-configuration.json"},{"id":"diff","aliases":["Diff","diff"],"extensions":[".patch",".diff",".rej"],"configuration":"./languages/diff.language-configuration.json"},{"id":"ignore","aliases":["Ignore","ignore"],"filenames":[".gitignore"],"configuration":"./languages/ignore.language-configuration.json"}],"grammars":[{"language":"git-commit","scopeName":"text.git-commit","path":"./syntaxes/git-commit.tmLanguage.json"},{"language":"git-rebase","scopeName":"text.git-rebase","path":"./syntaxes/git-rebase.tmLanguage.json"},{"language":"diff","scopeName":"source.diff","path":"./syntaxes/diff.tmLanguage.json"},{"language":"ignore","scopeName":"source.ignore","path":"./syntaxes/ignore.tmLanguage.json"}],"configurationDefaults":{"[git-commit]":{"editor.rulers":[72]}},"viewsWelcome":[{"view":"scm","contents":"If you would like to use git features, please enable git in your [settings](command:workbench.action.openSettings?%5B%22git.enabled%22%5D).\nTo learn more about how to use git and source control in VS Code [read our docs](https://aka.ms/vscode-scm).","when":"!config.git.enabled"},{"view":"scm","contents":"A valid git installation was not detected, more details can be found in the [git output](command:git.showOutput).\nPlease [install git](https://git-scm.com/), or learn more about how to use git and source control in VS Code in [our docs](https://aka.ms/vscode-scm).\nIf you're using a different version control system, you can [search the Marketplace](command:workbench.extensions.search?%22%40category%3A%5C%22scm%20providers%5C%22%22) for additional extensions.","when":"config.git.enabled && git.missing"},{"view":"scm","contents":"In order to use git features, you can open a folder containing a git repository or clone from a URL.\n[Open Folder](command:vscode.openFolder)\n[Clone Repository](command:git.clone)\nTo learn more about how to use git and source control in VS Code [read our docs](https://aka.ms/vscode-scm).","when":"config.git.enabled && !git.missing && workbenchState == empty"},{"view":"scm","contents":"The folder currently open doesn't have a git repository.\n[Initialize Repository](command:git.init?%5Btrue%5D)\nTo learn more about how to use git and source control in VS Code [read our docs](https://aka.ms/vscode-scm).","when":"config.git.enabled && !git.missing && workbenchState == folder"},{"view":"scm","contents":"The workspace currently open doesn't have any folders containing git repositories.\n[Initialize Repository](command:git.init)\nTo learn more about how to use git and source control in VS Code [read our docs](https://aka.ms/vscode-scm).","when":"config.git.enabled && !git.missing && workbenchState == workspace && workspaceFolderCount != 0"},{"view":"scm","contents":"The workspace currently open doesn't have any folders containing git repositories.\n[Add Folder to Workspace](command:workbench.action.addRootFolder)\nTo learn more about how to use git and source control in VS Code [read our docs](https://aka.ms/vscode-scm).","when":"config.git.enabled && !git.missing && workbenchState == workspace && workspaceFolderCount == 0"},{"view":"explorer","contents":"You can also clone a repository from a URL. To learn more about how to use git and source control in VS Code [read our docs](https://aka.ms/vscode-scm).\n[Clone Repository](command:git.clone)"}]},"dependencies":{"byline":"^5.0.0","dayjs":"1.8.19","file-type":"^7.2.0","iconv-lite":"^0.4.24","jschardet":"2.1.1","vscode-extension-telemetry":"0.1.1","vscode-nls":"^4.0.0","vscode-uri":"^2.0.0","which":"^1.3.0"},"devDependencies":{"@types/byline":"4.2.31","@types/file-type":"^5.2.1","@types/mocha":"2.2.43","@types/node":"^12.11.7","@types/which":"^1.0.28","mocha":"^3.2.0","mocha-junit-reporter":"^1.23.3","mocha-multi-reporters":"^1.1.7","vscode":"^1.1.36"},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.git","identifier":{"value":"vscode.git","_lower":"vscode.git"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/git","path":"/snap/code/26/usr/share/code/resources/app/extensions/git","scheme":"file"}},{"name":"git-ui","displayName":"Git UI","description":"Git SCM UI Integration","publisher":"vscode","version":"1.0.0","engines":{"vscode":"^1.5.0"},"extensionKind":["ui"],"aiKey":"AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217","enableProposedApi":true,"categories":["Other"],"activationEvents":["onCommand:git.credential"],"main":"./dist/main","icon":"resources/icons/git.png","scripts":{"compile":"gulp compile-extension:git-ui","watch":"gulp watch-extension:git-ui"},"devDependencies":{"@types/node":"^12.11.7"},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.git-ui","identifier":{"value":"vscode.git-ui","_lower":"vscode.git-ui"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/git-ui","path":"/snap/code/26/usr/share/code/resources/app/extensions/git-ui","scheme":"file"}},{"name":"github-authentication","displayName":"GitHub Authentication","description":"GitHub Authentication Provider","publisher":"vscode","version":"0.0.1","engines":{"vscode":"^1.41.0"},"enableProposedApi":true,"categories":["Other"],"activationEvents":["*"],"main":"./dist/extension.js","scripts":{"vscode:prepublish":"npm run compile","compile":"gulp compile-extension:github-authentication","watch":"gulp watch-extension:github-authentication","postinstall":"node build/postinstall.js"},"dependencies":{"uuid":"^3.3.3"},"devDependencies":{"@types/keytar":"^4.4.2","@types/node":"^10.12.21","@types/uuid":"^3.4.6","typescript":"^3.7.5"},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.github-authentication","identifier":{"value":"vscode.github-authentication","_lower":"vscode.github-authentication"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/github-authentication","path":"/snap/code/26/usr/share/code/resources/app/extensions/github-authentication","scheme":"file"}},{"name":"go","displayName":"Go Language Basics","description":"Provides syntax highlighting and bracket matching in Go files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js jeff-hykin/better-go-syntax source/generated.tmLanguage.json ./syntaxes/go.tmLanguage.json"},"contributes":{"languages":[{"id":"go","extensions":[".go"],"aliases":["Go"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"go","scopeName":"source.go","path":"./syntaxes/go.tmLanguage.json"}],"configurationDefaults":{"[go]":{"editor.insertSpaces":false}}},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.go","identifier":{"value":"vscode.go","_lower":"vscode.go"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/go","path":"/snap/code/26/usr/share/code/resources/app/extensions/go","scheme":"file"}},{"name":"groovy","displayName":"Groovy Language Basics","description":"Provides snippets, syntax highlighting and bracket matching in Groovy files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js textmate/groovy.tmbundle Syntaxes/Groovy.tmLanguage ./syntaxes/groovy.tmLanguage.json"},"contributes":{"languages":[{"id":"groovy","aliases":["Groovy","groovy"],"extensions":[".groovy",".gvy",".gradle"],"filenames":["Jenkinsfile"],"firstLine":"^#!.*\\bgroovy\\b","configuration":"./language-configuration.json"}],"grammars":[{"language":"groovy","scopeName":"source.groovy","path":"./syntaxes/groovy.tmLanguage.json"}],"snippets":[{"language":"groovy","path":"./snippets/groovy.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.groovy","identifier":{"value":"vscode.groovy","_lower":"vscode.groovy"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/groovy","path":"/snap/code/26/usr/share/code/resources/app/extensions/groovy","scheme":"file"}},{"name":"grunt","publisher":"vscode","description":"Extension to add Grunt capabilities to VS Code.","displayName":"Grunt support for VS Code","version":"1.0.0","icon":"images/grunt.png","license":"MIT","engines":{"vscode":"*"},"categories":["Other"],"scripts":{"compile":"gulp compile-extension:grunt","watch":"gulp watch-extension:grunt"},"dependencies":{"vscode-nls":"^4.0.0"},"devDependencies":{"@types/node":"^12.11.7"},"main":"./dist/main","activationEvents":["onCommand:workbench.action.tasks.runTask"],"contributes":{"configuration":{"id":"grunt","type":"object","title":"Grunt","properties":{"grunt.autoDetect":{"scope":"resource","type":"string","enum":["off","on"],"default":"on","description":"Controls whether auto detection of Grunt tasks is on or off. Default is on."}}},"taskDefinitions":[{"type":"grunt","required":["task"],"properties":{"task":{"type":"string","description":"The Grunt task to customize."},"args":{"type":"array","description":"Command line arguments to pass to the grunt task"},"file":{"type":"string","description":"The Grunt file that provides the task. Can be omitted."}}}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.grunt","identifier":{"value":"vscode.grunt","_lower":"vscode.grunt"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/grunt","path":"/snap/code/26/usr/share/code/resources/app/extensions/grunt","scheme":"file"}},{"name":"gulp","publisher":"vscode","description":"Extension to add Gulp capabilities to VSCode.","displayName":"Gulp support for VSCode","version":"1.0.0","icon":"images/gulp.png","license":"MIT","engines":{"vscode":"*"},"categories":["Other"],"scripts":{"compile":"gulp compile-extension:gulp","watch":"gulp watch-extension:gulp"},"dependencies":{"vscode-nls":"^4.0.0"},"devDependencies":{"@types/node":"^12.11.7"},"main":"./dist/main","activationEvents":["onCommand:workbench.action.tasks.runTask"],"contributes":{"configuration":{"id":"gulp","type":"object","title":"Gulp","properties":{"gulp.autoDetect":{"scope":"resource","type":"string","enum":["off","on"],"default":"on","description":"Controls whether auto detection of Gulp tasks is on or off. Default is on."}}},"taskDefinitions":[{"type":"gulp","required":["task"],"properties":{"task":{"type":"string","description":"The Gulp task to customize."},"file":{"type":"string","description":"The Gulp file that provides the task. Can be omitted."}}}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.gulp","identifier":{"value":"vscode.gulp","_lower":"vscode.gulp"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/gulp","path":"/snap/code/26/usr/share/code/resources/app/extensions/gulp","scheme":"file"}},{"name":"handlebars","displayName":"Handlebars Language Basics","description":"Provides syntax highlighting and bracket matching in Handlebars files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"0.10.x"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js daaain/Handlebars grammars/Handlebars.json ./syntaxes/Handlebars.tmLanguage.json"},"contributes":{"languages":[{"id":"handlebars","extensions":[".handlebars",".hbs",".hjs"],"aliases":["Handlebars","handlebars"],"mimetypes":["text/x-handlebars-template"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"handlebars","scopeName":"text.html.handlebars","path":"./syntaxes/Handlebars.tmLanguage.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.handlebars","identifier":{"value":"vscode.handlebars","_lower":"vscode.handlebars"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/handlebars","path":"/snap/code/26/usr/share/code/resources/app/extensions/handlebars","scheme":"file"}},{"name":"hlsl","displayName":"HLSL Language Basics","description":"Provides syntax highlighting and bracket matching in HLSL files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js tgjones/shaders-tmLanguage grammars/hlsl.json ./syntaxes/hlsl.tmLanguage.json"},"contributes":{"languages":[{"id":"hlsl","extensions":[".hlsl",".hlsli",".fx",".fxh",".vsh",".psh",".cginc",".compute"],"aliases":["HLSL","hlsl"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"hlsl","path":"./syntaxes/hlsl.tmLanguage.json","scopeName":"source.hlsl"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.hlsl","identifier":{"value":"vscode.hlsl","_lower":"vscode.hlsl"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/hlsl","path":"/snap/code/26/usr/share/code/resources/app/extensions/hlsl","scheme":"file"}},{"name":"html","displayName":"HTML Language Basics","description":"Provides syntax highlighting, bracket matching & snippets in HTML files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"0.10.x"},"scripts":{"update-grammar":"node ./build/update-grammar.js"},"contributes":{"languages":[{"id":"html","extensions":[".html",".htm",".shtml",".xhtml",".mdoc",".jsp",".asp",".aspx",".jshtm",".volt",".ejs",".rhtml"],"aliases":["HTML","htm","html","xhtml"],"mimetypes":["text/html","text/x-jshtm","text/template","text/ng-template","application/xhtml+xml"],"configuration":"./language-configuration.json"}],"grammars":[{"scopeName":"text.html.basic","path":"./syntaxes/html.tmLanguage.json","embeddedLanguages":{"text.html":"html","source.css":"css","source.js":"javascript","source.python":"python","source.smarty":"smarty"},"tokenTypes":{"meta.tag string.quoted":"other"}},{"language":"html","scopeName":"text.html.derivative","path":"./syntaxes/html-derivative.tmLanguage.json","embeddedLanguages":{"text.html":"html","source.css":"css","source.js":"javascript","source.python":"python","source.smarty":"smarty"},"tokenTypes":{"meta.tag string.quoted":"other"}}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.html","identifier":{"value":"vscode.html","_lower":"vscode.html"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/html","path":"/snap/code/26/usr/share/code/resources/app/extensions/html","scheme":"file"}},{"enableProposedApi":true,"name":"html-language-features","displayName":"HTML Language Features","description":"Provides rich language support for HTML and Handlebar files","version":"1.0.0","publisher":"vscode","license":"MIT","aiKey":"AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217","engines":{"vscode":"0.10.x"},"icon":"icons/html.png","activationEvents":["onLanguage:html","onLanguage:handlebars"],"main":"./client/dist/htmlMain","scripts":{"compile":"npx gulp compile-extension:html-language-features-client compile-extension:html-language-features-server","watch":"npx gulp watch-extension:html-language-features-client watch-extension:html-language-features-server","postinstall":"cd server && yarn install","install-client-next":"yarn add vscode-languageclient@next"},"categories":["Programming Languages"],"contributes":{"configuration":{"id":"html","order":20,"type":"object","title":"HTML","properties":{"html.customData":{"type":"array","markdownDescription":"A list of relative file paths pointing to JSON files following the [custom data format](https://github.com/Microsoft/vscode-html-languageservice/blob/master/docs/customData.md).\n\nVS Code loads custom data on startup to enhance its HTML support for the custom HTML tags, attributes and attribute values you specify in the JSON files.\n\nThe file paths are relative to workspace and only workspace folder settings are considered.","default":[],"items":{"type":"string"},"scope":"resource"},"html.format.enable":{"type":"boolean","scope":"window","default":true,"description":"Enable/disable default HTML formatter."},"html.format.wrapLineLength":{"type":"integer","scope":"resource","default":120,"description":"Maximum amount of characters per line (0 = disable)."},"html.format.unformatted":{"type":["string","null"],"scope":"resource","default":"wbr","markdownDescription":"List of tags, comma separated, that shouldn't be reformatted. `null` defaults to all tags listed at https://www.w3.org/TR/html5/dom.html#phrasing-content."},"html.format.contentUnformatted":{"type":["string","null"],"scope":"resource","default":"pre,code,textarea","markdownDescription":"List of tags, comma separated, where the content shouldn't be reformatted. `null` defaults to the `pre` tag."},"html.format.indentInnerHtml":{"type":"boolean","scope":"resource","default":false,"markdownDescription":"Indent `` and `` sections."},"html.format.preserveNewLines":{"type":"boolean","scope":"resource","default":true,"description":"Controls whether existing line breaks before elements should be preserved. Only works before elements, not inside tags or for text."},"html.format.maxPreserveNewLines":{"type":["number","null"],"scope":"resource","default":null,"markdownDescription":"Maximum number of line breaks to be preserved in one chunk. Use `null` for unlimited."},"html.format.indentHandlebars":{"type":"boolean","scope":"resource","default":false,"markdownDescription":"Format and indent `{{#foo}}` and `{{/foo}}`."},"html.format.endWithNewline":{"type":"boolean","scope":"resource","default":false,"description":"End with a newline."},"html.format.extraLiners":{"type":["string","null"],"scope":"resource","default":"head, body, /html","markdownDescription":"List of tags, comma separated, that should have an extra newline before them. `null` defaults to `\"head, body, /html\"`."},"html.format.wrapAttributes":{"type":"string","scope":"resource","default":"auto","enum":["auto","force","force-aligned","force-expand-multiline","aligned-multiple","preserve","preserve-aligned"],"enumDescriptions":["Wrap attributes only when line length is exceeded.","Wrap each attribute except first.","Wrap each attribute except first and keep aligned.","Wrap each attribute.","Wrap when line length is exceeded, align attributes vertically.","Preserve wrapping of attributes","Preserve wrapping of attributes but align."],"description":"Wrap attributes."},"html.suggest.html5":{"type":"boolean","scope":"resource","default":true,"description":"Controls whether the built-in HTML language support suggests HTML5 tags, properties and values."},"html.validate.scripts":{"type":"boolean","scope":"resource","default":true,"description":"Controls whether the built-in HTML language support validates embedded scripts."},"html.validate.styles":{"type":"boolean","scope":"resource","default":true,"description":"Controls whether the built-in HTML language support validates embedded styles."},"html.autoClosingTags":{"type":"boolean","scope":"resource","default":true,"description":"Enable/disable autoclosing of HTML tags."},"html.mirrorCursorOnMatchingTag":{"type":"boolean","scope":"resource","default":false,"description":"Enable/disable mirroring cursor on matching HTML tag."},"html.trace.server":{"type":"string","scope":"window","enum":["off","messages","verbose"],"default":"off","description":"Traces the communication between VS Code and the HTML language server."}}},"configurationDefaults":{"[html]":{"editor.suggest.insertMode":"replace"},"[handlebars]":{"editor.suggest.insertMode":"replace"}},"jsonValidation":[{"fileMatch":"*.html-data.json","url":"https://raw.githubusercontent.com/Microsoft/vscode-html-languageservice/master/docs/customData.schema.json"},{"fileMatch":"package.json","url":"./schemas/package.schema.json"}]},"dependencies":{"vscode-extension-telemetry":"0.1.1","vscode-languageclient":"^6.1.1","vscode-nls":"^4.1.1"},"devDependencies":{"@types/node":"^12.11.7"},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.html-language-features","identifier":{"value":"vscode.html-language-features","_lower":"vscode.html-language-features"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/html-language-features","path":"/snap/code/26/usr/share/code/resources/app/extensions/html-language-features","scheme":"file"}},{"name":"image-preview","displayName":"Image Preview","description":"Provides VS Code's built-in image preview","extensionKind":["ui","workspace"],"version":"1.0.0","publisher":"vscode","icon":"icon.png","enableProposedApi":true,"license":"MIT","aiKey":"AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217","engines":{"vscode":"^1.39.0"},"main":"./dist/extension","categories":["Other"],"activationEvents":["onCustomEditor:imagePreview.previewEditor","onCommand:imagePreview.zoomIn","onCommand:imagePreview.zoomOut"],"contributes":{"customEditors":[{"viewType":"imagePreview.previewEditor","displayName":"Image Preview","priority":"builtin","selector":[{"filenamePattern":"*.{jpg,jpe,jpeg,png,bmp,gif,ico,webp}"}]}],"commands":[{"command":"imagePreview.zoomIn","title":"Zoom in","category":"Image Preview"},{"command":"imagePreview.zoomOut","title":"Zoom out","category":"Image Preview"}],"menus":{"commandPalette":[{"command":"imagePreview.zoomIn","when":"imagePreviewFocus","group":"1_imagePreview"},{"command":"imagePreview.zoomOut","when":"imagePreviewFocus","group":"1_imagePreview"}]}},"scripts":{"compile":"gulp compile-extension:image-preview","watch":"npm run build-preview && gulp watch-extension:image-preview","vscode:prepublish":"npm run build-ext","build-ext":"node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.js compile-extension:image-preview ./tsconfig.json"},"dependencies":{"vscode-extension-telemetry":"0.1.1","vscode-nls":"^4.0.0"},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.image-preview","identifier":{"value":"vscode.image-preview","_lower":"vscode.image-preview"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/image-preview","path":"/snap/code/26/usr/share/code/resources/app/extensions/image-preview","scheme":"file"}},{"name":"ini","displayName":"Ini Language Basics","description":"Provides syntax highlighting and bracket matching in Ini files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js textmate/ini.tmbundle Syntaxes/Ini.plist ./syntaxes/ini.tmLanguage.json"},"contributes":{"languages":[{"id":"ini","extensions":[".ini"],"aliases":["Ini","ini"],"configuration":"./ini.language-configuration.json"},{"id":"properties","extensions":[".properties",".cfg",".conf",".directory"],"filenames":[".gitattributes",".gitconfig","gitconfig",".gitmodules",".editorconfig"],"filenamePatterns":["**/.config/git/config","**/.git/config"],"aliases":["Properties","properties"],"configuration":"./properties.language-configuration.json"}],"grammars":[{"language":"ini","scopeName":"source.ini","path":"./syntaxes/ini.tmLanguage.json"},{"language":"properties","scopeName":"source.ini","path":"./syntaxes/ini.tmLanguage.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.ini","identifier":{"value":"vscode.ini","_lower":"vscode.ini"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/ini","path":"/snap/code/26/usr/share/code/resources/app/extensions/ini","scheme":"file"}},{"name":"jake","publisher":"vscode","description":"Extension to add Jake capabilities to VS Code.","displayName":"Jake support for VS Code","icon":"images/cowboy_hat.png","version":"1.0.0","license":"MIT","engines":{"vscode":"*"},"categories":["Other"],"scripts":{"compile":"gulp compile-extension:jake","watch":"gulp watch-extension:jake"},"dependencies":{"vscode-nls":"^4.0.0"},"devDependencies":{"@types/node":"^12.11.7"},"main":"./dist/main","activationEvents":["onCommand:workbench.action.tasks.runTask"],"contributes":{"configuration":{"id":"jake","type":"object","title":"Jake","properties":{"jake.autoDetect":{"scope":"resource","type":"string","enum":["off","on"],"default":"on","description":"Controls whether auto detection of Jake tasks is on or off. Default is on."}}},"taskDefinitions":[{"type":"jake","required":["task"],"properties":{"task":{"type":"string","description":"The Jake task to customize."},"file":{"type":"string","description":"The Jake file that provides the task. Can be omitted."}}}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.jake","identifier":{"value":"vscode.jake","_lower":"vscode.jake"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/jake","path":"/snap/code/26/usr/share/code/resources/app/extensions/jake","scheme":"file"}},{"name":"java","displayName":"Java Language Basics","description":"Provides snippets, syntax highlighting, bracket matching and folding in Java files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js atom/language-java grammars/java.cson ./syntaxes/java.tmLanguage.json"},"contributes":{"languages":[{"id":"java","extensions":[".java",".jav"],"aliases":["Java","java"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"java","scopeName":"source.java","path":"./syntaxes/java.tmLanguage.json"}],"snippets":[{"language":"java","path":"./snippets/java.snippets.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.java","identifier":{"value":"vscode.java","_lower":"vscode.java"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/java","path":"/snap/code/26/usr/share/code/resources/app/extensions/java","scheme":"file"}},{"name":"javascript","displayName":"JavaScript Language Basics","description":"Provides snippets, syntax highlighting, bracket matching and folding in JavaScript files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"0.10.x"},"contributes":{"languages":[{"id":"javascriptreact","aliases":["JavaScript React","jsx"],"extensions":[".jsx"],"configuration":"./javascript-language-configuration.json"},{"id":"javascript","aliases":["JavaScript","javascript","js"],"extensions":[".js",".es6",".mjs",".cjs",".pac"],"filenames":["jakefile"],"firstLine":"^#!.*\\bnode","mimetypes":["text/javascript"],"configuration":"./javascript-language-configuration.json"},{"id":"jsx-tags","aliases":[],"configuration":"./tags-language-configuration.json"}],"grammars":[{"language":"javascriptreact","scopeName":"source.js.jsx","path":"./syntaxes/JavaScriptReact.tmLanguage.json","embeddedLanguages":{"meta.tag.js":"jsx-tags","meta.tag.without-attributes.js":"jsx-tags","meta.tag.attributes.js.jsx":"javascriptreact","meta.embedded.expression.js":"javascriptreact"},"tokenTypes":{"entity.name.type.instance.jsdoc":"other","entity.name.function.tagged-template":"other","meta.import string.quoted":"other","variable.other.jsdoc":"other"}},{"language":"javascript","scopeName":"source.js","path":"./syntaxes/JavaScript.tmLanguage.json","embeddedLanguages":{"meta.tag.js":"jsx-tags","meta.tag.without-attributes.js":"jsx-tags","meta.tag.attributes.js":"javascript","meta.embedded.expression.js":"javascript"},"tokenTypes":{"entity.name.type.instance.jsdoc":"other","entity.name.function.tagged-template":"other","meta.import string.quoted":"other","variable.other.jsdoc":"other"}},{"scopeName":"source.js.regexp","path":"./syntaxes/Regular Expressions (JavaScript).tmLanguage"}],"snippets":[{"language":"javascript","path":"./snippets/javascript.json"},{"language":"javascriptreact","path":"./snippets/javascript.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.javascript","identifier":{"value":"vscode.javascript","_lower":"vscode.javascript"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/javascript","path":"/snap/code/26/usr/share/code/resources/app/extensions/javascript","scheme":"file"}},{"name":"json","displayName":"JSON Language Basics","description":"Provides syntax highlighting & bracket matching in JSON files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"0.10.x"},"scripts":{"update-grammar":"node ./build/update-grammars.js"},"contributes":{"languages":[{"id":"json","aliases":["JSON","json"],"extensions":[".json",".bowerrc",".jshintrc",".jscsrc",".swcrc",".webmanifest",".js.map",".css.map",".har"],"filenames":["composer.lock",".watchmanconfig",".ember-cli"],"mimetypes":["application/json","application/manifest+json"],"configuration":"./language-configuration.json"},{"id":"jsonc","aliases":["JSON with Comments"],"extensions":[".hintrc",".babelrc",".jsonc",".eslintrc",".eslintrc.json"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"json","scopeName":"source.json","path":"./syntaxes/JSON.tmLanguage.json"},{"language":"jsonc","scopeName":"source.json.comments","path":"./syntaxes/JSONC.tmLanguage.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.json","identifier":{"value":"vscode.json","_lower":"vscode.json"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/json","path":"/snap/code/26/usr/share/code/resources/app/extensions/json","scheme":"file"}},{"name":"json-language-features","displayName":"JSON Language Features","description":"Provides rich language support for JSON files.","version":"1.0.0","publisher":"vscode","license":"MIT","aiKey":"AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217","engines":{"vscode":"0.10.x"},"icon":"icons/json.png","activationEvents":["onLanguage:json","onLanguage:jsonc"],"main":"./client/dist/jsonMain","enableProposedApi":true,"scripts":{"compile":"gulp compile-extension:json-language-features-client compile-extension:json-language-features-server","watch":"gulp watch-extension:json-language-features-client watch-extension:json-language-features-server","postinstall":"cd server && yarn install","install-client-next":"yarn add vscode-languageclient@next"},"categories":["Programming Languages"],"contributes":{"configuration":{"id":"json","order":20,"type":"object","title":"JSON","properties":{"json.schemas":{"type":"array","scope":"resource","description":"Associate schemas to JSON files in the current project","items":{"type":"object","default":{"fileMatch":["/myfile"],"url":"schemaURL"},"properties":{"url":{"type":"string","default":"/user.schema.json","description":"A URL to a schema or a relative path to a schema in the current directory"},"fileMatch":{"type":"array","items":{"type":"string","default":"MyFile.json","description":"A file pattern that can contain '*' to match against when resolving JSON files to schemas."},"minItems":1,"description":"An array of file patterns to match against when resolving JSON files to schemas."},"schema":{"$ref":"http://json-schema.org/draft-07/schema#","description":"The schema definition for the given URL. The schema only needs to be provided to avoid accesses to the schema URL."}}}},"json.format.enable":{"type":"boolean","scope":"window","default":true,"description":"Enable/disable default JSON formatter"},"json.trace.server":{"type":"string","scope":"window","enum":["off","messages","verbose"],"default":"off","description":"Traces the communication between VS Code and the JSON language server."},"json.colorDecorators.enable":{"type":"boolean","scope":"window","default":true,"description":"Enables or disables color decorators","deprecationMessage":"The setting `json.colorDecorators.enable` has been deprecated in favor of `editor.colorDecorators`."},"json.maxItemsComputed":{"type":"number","default":5000,"description":"The maximum number of outline symbols and folding regions computed (limited for performance reasons)."}}},"configurationDefaults":{"[json]":{"editor.quickSuggestions":{"strings":true},"editor.suggest.insertMode":"replace"},"[jsonc]":{"editor.quickSuggestions":{"strings":true},"editor.suggest.insertMode":"replace"}},"jsonValidation":[{"fileMatch":"*.schema.json","url":"http://json-schema.org/draft-07/schema#"}]},"dependencies":{"request-light":"^0.2.5","vscode-extension-telemetry":"0.1.1","vscode-languageclient":"^6.1.1","vscode-nls":"^4.1.1"},"devDependencies":{"@types/node":"^12.11.7"},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.json-language-features","identifier":{"value":"vscode.json-language-features","_lower":"vscode.json-language-features"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/json-language-features","path":"/snap/code/26/usr/share/code/resources/app/extensions/json-language-features","scheme":"file"}},{"name":"less","displayName":"Less Language Basics","description":"Provides syntax highlighting, bracket matching and folding in Less files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js atom/language-less grammars/less.cson ./syntaxes/less.tmLanguage.json"},"contributes":{"languages":[{"id":"less","aliases":["Less","less"],"extensions":[".less"],"mimetypes":["text/x-less","text/less"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"less","scopeName":"source.css.less","path":"./syntaxes/less.tmLanguage.json"}],"problemMatchers":[{"name":"lessc","label":"Lessc compiler","owner":"lessc","source":"less","fileLocation":"absolute","pattern":{"regexp":"(.*)\\sin\\s(.*)\\son line\\s(\\d+),\\scolumn\\s(\\d+)","message":1,"file":2,"line":3,"column":4}}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.less","identifier":{"value":"vscode.less","_lower":"vscode.less"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/less","path":"/snap/code/26/usr/share/code/resources/app/extensions/less","scheme":"file"}},{"name":"log","displayName":"Log","description":"Provides syntax highlighting for files with .log extension.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js emilast/vscode-logfile-highlighter syntaxes/log.tmLanguage ./syntaxes/log.tmLanguage.json"},"contributes":{"languages":[{"id":"log","extensions":[".log","*.log.?"],"aliases":["Log"]}],"grammars":[{"language":"log","scopeName":"text.log","path":"./syntaxes/log.tmLanguage.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.log","identifier":{"value":"vscode.log","_lower":"vscode.log"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/log","path":"/snap/code/26/usr/share/code/resources/app/extensions/log","scheme":"file"}},{"name":"lua","displayName":"Lua Language Basics","description":"Provides syntax highlighting and bracket matching in Lua files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js textmate/lua.tmbundle Syntaxes/Lua.plist ./syntaxes/lua.tmLanguage.json"},"contributes":{"languages":[{"id":"lua","extensions":[".lua"],"aliases":["Lua","lua"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"lua","scopeName":"source.lua","path":"./syntaxes/lua.tmLanguage.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.lua","identifier":{"value":"vscode.lua","_lower":"vscode.lua"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/lua","path":"/snap/code/26/usr/share/code/resources/app/extensions/lua","scheme":"file"}},{"name":"make","displayName":"Make Language Basics","description":"Provides syntax highlighting and bracket matching in Make files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js fadeevab/make.tmbundle Syntaxes/Makefile.plist ./syntaxes/make.tmLanguage.json"},"contributes":{"languages":[{"id":"makefile","aliases":["Makefile","makefile"],"extensions":[".mk"],"filenames":["Makefile","makefile","GNUmakefile","OCamlMakefile"],"firstLine":"^#!\\s*/usr/bin/make","configuration":"./language-configuration.json"}],"grammars":[{"language":"makefile","scopeName":"source.makefile","path":"./syntaxes/make.tmLanguage.json","tokenTypes":{"string.interpolated":"other"}}],"configurationDefaults":{"[makefile]":{"editor.insertSpaces":false}}},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.make","identifier":{"value":"vscode.make","_lower":"vscode.make"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/make","path":"/snap/code/26/usr/share/code/resources/app/extensions/make","scheme":"file"}},{"name":"markdown","displayName":"Markdown Language Basics","description":"Provides snippets and syntax highlighting for Markdown.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"^1.20.0"},"contributes":{"languages":[{"id":"markdown","aliases":["Markdown","markdown"],"extensions":[".md",".mkd",".mdwn",".mdown",".markdown",".markdn",".mdtxt",".mdtext",".workbook"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"markdown","scopeName":"text.html.markdown","path":"./syntaxes/markdown.tmLanguage.json","embeddedLanguages":{"meta.embedded.block.html":"html","source.js":"javascript","source.css":"css","meta.embedded.block.frontmatter":"yaml","meta.embedded.block.css":"css","meta.embedded.block.ini":"ini","meta.embedded.block.java":"java","meta.embedded.block.lua":"lua","meta.embedded.block.makefile":"makefile","meta.embedded.block.perl":"perl","meta.embedded.block.r":"r","meta.embedded.block.ruby":"ruby","meta.embedded.block.php":"php","meta.embedded.block.sql":"sql","meta.embedded.block.vs_net":"vs_net","meta.embedded.block.xml":"xml","meta.embedded.block.xsl":"xsl","meta.embedded.block.yaml":"yaml","meta.embedded.block.dosbatch":"dosbatch","meta.embedded.block.clojure":"clojure","meta.embedded.block.coffee":"coffee","meta.embedded.block.c":"c","meta.embedded.block.cpp":"cpp","meta.embedded.block.diff":"diff","meta.embedded.block.dockerfile":"dockerfile","meta.embedded.block.go":"go","meta.embedded.block.groovy":"groovy","meta.embedded.block.pug":"jade","meta.embedded.block.javascript":"javascript","meta.embedded.block.json":"json","meta.embedded.block.less":"less","meta.embedded.block.objc":"objc","meta.embedded.block.scss":"scss","meta.embedded.block.perl6":"perl6","meta.embedded.block.powershell":"powershell","meta.embedded.block.python":"python","meta.embedded.block.rust":"rust","meta.embedded.block.scala":"scala","meta.embedded.block.shellscript":"shellscript","meta.embedded.block.typescript":"typescript","meta.embedded.block.typescriptreact":"typescriptreact","meta.embedded.block.csharp":"csharp","meta.embedded.block.fsharp":"fsharp"}}],"snippets":[{"language":"markdown","path":"./snippets/markdown.json"}]},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js microsoft/vscode-markdown-tm-grammar syntaxes/markdown.tmLanguage ./syntaxes/markdown.tmLanguage.json"},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.markdown","identifier":{"value":"vscode.markdown","_lower":"vscode.markdown"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/markdown-basics","path":"/snap/code/26/usr/share/code/resources/app/extensions/markdown-basics","scheme":"file"}},{"name":"markdown-language-features","displayName":"Markdown Language Features","description":"Provides rich language support for Markdown.","version":"1.0.0","icon":"icon.png","publisher":"vscode","enableProposedApi":true,"license":"MIT","aiKey":"AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217","engines":{"vscode":"^1.20.0"},"main":"./dist/extension","categories":["Programming Languages"],"activationEvents":["onLanguage:markdown","onCommand:markdown.preview.toggleLock","onCommand:markdown.preview.refresh","onCommand:markdown.showPreview","onCommand:markdown.showPreviewToSide","onCommand:markdown.showLockedPreviewToSide","onCommand:markdown.showSource","onCommand:markdown.showPreviewSecuritySelector","onCommand:markdown.api.render","onWebviewPanel:markdown.preview","onCustomEditor:vscode.markdown.preview.editor"],"contributes":{"commands":[{"command":"markdown.showPreview","title":"Open Preview","category":"Markdown","icon":{"light":"./media/preview-light.svg","dark":"./media/preview-dark.svg"}},{"command":"markdown.showPreviewToSide","title":"Open Preview to the Side","category":"Markdown","icon":{"light":"./media/preview-right-light.svg","dark":"./media/preview-right-dark.svg"}},{"command":"markdown.showLockedPreviewToSide","title":"Open Locked Preview to the Side","category":"Markdown","icon":{"light":"./media/preview-right-light.svg","dark":"./media/preview-right-dark.svg"}},{"command":"markdown.showSource","title":"Show Source","category":"Markdown","icon":{"light":"./media/view-source-light.svg","dark":"./media/view-source-dark.svg"}},{"command":"markdown.showPreviewSecuritySelector","title":"Change Preview Security Settings","category":"Markdown"},{"command":"markdown.preview.refresh","title":"Refresh Preview","category":"Markdown"},{"command":"markdown.preview.toggleLock","title":"Toggle Preview Locking","category":"Markdown"}],"menus":{"editor/title":[{"command":"markdown.showPreviewToSide","when":"editorLangId == markdown","alt":"markdown.showPreview","group":"navigation"},{"command":"markdown.showSource","when":"markdownPreviewFocus","group":"navigation"},{"command":"markdown.preview.refresh","when":"markdownPreviewFocus","group":"1_markdown"},{"command":"markdown.preview.toggleLock","when":"markdownPreviewFocus","group":"1_markdown"},{"command":"markdown.showPreviewSecuritySelector","when":"markdownPreviewFocus","group":"1_markdown"}],"explorer/context":[{"command":"markdown.showPreview","when":"resourceLangId == markdown","group":"navigation"}],"editor/title/context":[{"command":"markdown.showPreview","when":"resourceLangId == markdown","group":"navigation"}],"commandPalette":[{"command":"markdown.showPreview","when":"editorLangId == markdown","group":"navigation"},{"command":"markdown.showPreviewToSide","when":"editorLangId == markdown","group":"navigation"},{"command":"markdown.showLockedPreviewToSide","when":"editorLangId == markdown","group":"navigation"},{"command":"markdown.showSource","when":"markdownPreviewFocus","group":"navigation"},{"command":"markdown.showPreviewSecuritySelector","when":"editorLangId == markdown"},{"command":"markdown.showPreviewSecuritySelector","when":"markdownPreviewFocus"},{"command":"markdown.preview.toggleLock","when":"markdownPreviewFocus"},{"command":"markdown.preview.refresh","when":"editorLangId == markdown"},{"command":"markdown.preview.refresh","when":"markdownPreviewFocus"}]},"keybindings":[{"command":"markdown.showPreview","key":"shift+ctrl+v","mac":"shift+cmd+v","when":"editorLangId == markdown"},{"command":"markdown.showPreviewToSide","key":"ctrl+k v","mac":"cmd+k v","when":"editorLangId == markdown"}],"configuration":{"type":"object","title":"Markdown","order":20,"properties":{"markdown.styles":{"type":"array","items":{"type":"string"},"default":[],"description":"A list of URLs or local paths to CSS style sheets to use from the markdown preview. Relative paths are interpreted relative to the folder open in the explorer. If there is no open folder, they are interpreted relative to the location of the markdown file. All '\\' need to be written as '\\\\'.","scope":"resource"},"markdown.preview.breaks":{"type":"boolean","default":false,"description":"Sets how line-breaks are rendered in the markdown preview. Setting it to 'true' creates a for every newline.","scope":"resource"},"markdown.preview.linkify":{"type":"boolean","default":true,"description":"Enable or disable conversion of URL-like text to links in the markdown preview.","scope":"resource"},"markdown.preview.fontFamily":{"type":"string","default":"-apple-system, BlinkMacSystemFont, 'Segoe WPC', 'Segoe UI', 'Ubuntu', 'Droid Sans', sans-serif","description":"Controls the font family used in the markdown preview.","scope":"resource"},"markdown.preview.fontSize":{"type":"number","default":14,"description":"Controls the font size in pixels used in the markdown preview.","scope":"resource"},"markdown.preview.lineHeight":{"type":"number","default":1.6,"description":"Controls the line height used in the markdown preview. This number is relative to the font size.","scope":"resource"},"markdown.preview.scrollPreviewWithEditor":{"type":"boolean","default":true,"description":"When a markdown editor is scrolled, update the view of the preview.","scope":"resource"},"markdown.preview.markEditorSelection":{"type":"boolean","default":true,"description":"Mark the current editor selection in the markdown preview.","scope":"resource"},"markdown.preview.scrollEditorWithPreview":{"type":"boolean","default":true,"description":"When a markdown preview is scrolled, update the view of the editor.","scope":"resource"},"markdown.preview.doubleClickToSwitchToEditor":{"type":"boolean","default":true,"description":"Double click in the markdown preview to switch to the editor.","scope":"resource"},"markdown.preview.openMarkdownLinks":{"type":"string","default":"inPreview","description":"Controls how links to other markdown files in the markdown preview should be opened.","scope":"resource","enum":["inPreview","inEditor"],"enumDescriptions":["Try to open links in the markdown preview","Try to open links in the editor"]},"markdown.links.openLocation":{"type":"string","default":"currentGroup","description":"Controls where links in markdown files should be opened.","scope":"resource","enum":["currentGroup","beside"],"enumDescriptions":["Open links in the active editor group.","Open links beside the active editor."]},"markdown.trace":{"type":"string","enum":["off","verbose"],"default":"off","description":"Enable debug logging for the markdown extension.","scope":"window"}}},"configurationDefaults":{"[markdown]":{"editor.wordWrap":"on","editor.quickSuggestions":false}},"jsonValidation":[{"fileMatch":"package.json","url":"./schemas/package.schema.json"}],"markdown.previewStyles":["./media/markdown.css","./media/highlight.css"],"markdown.previewScripts":["./media/index.js"],"customEditors":[{"viewType":"vscode.markdown.preview.editor","displayName":"(Experimental) VS Code Markdown Preview","priority":"option","selector":[{"filenamePattern":"*.md"}]}]},"scripts":{"compile":"gulp compile-extension:markdown-language-features && npm run build-preview","watch":"npm run build-preview && gulp watch-extension:markdown-language-features","vscode:prepublish":"npm run build-ext && npm run build-preview","build-ext":"node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.js compile-extension:markdown-language-features ./tsconfig.json","build-preview":"webpack --mode production"},"dependencies":{"highlight.js":"9.15.10","markdown-it":"^10.0.0","markdown-it-front-matter":"^0.2.1","vscode-extension-telemetry":"0.1.1","vscode-nls":"^4.0.0"},"devDependencies":{"@types/highlight.js":"9.12.3","@types/lodash.throttle":"^4.1.3","@types/markdown-it":"0.0.2","@types/node":"^12.11.7","lodash.throttle":"^4.1.1","mocha-junit-reporter":"^1.17.0","mocha-multi-reporters":"^1.1.7","ts-loader":"^6.2.1","typescript":"^3.7.3","vscode":"^1.1.10","webpack":"^4.41.2","webpack-cli":"^3.3.0"},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.markdown-language-features","identifier":{"value":"vscode.markdown-language-features","_lower":"vscode.markdown-language-features"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/markdown-language-features","path":"/snap/code/26/usr/share/code/resources/app/extensions/markdown-language-features","scheme":"file"}},{"name":"merge-conflict","publisher":"vscode","displayName":"Merge Conflict","description":"Highlighting and commands for inline merge conflicts.","icon":"resources/icons/merge-conflict.png","version":"1.0.0","license":"MIT","aiKey":"AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217","engines":{"vscode":"^1.5.0"},"categories":["Other"],"activationEvents":["*"],"main":"./dist/extension","scripts":{"compile":"gulp compile-extension:merge-conflict","watch":"gulp watch-extension:merge-conflict"},"contributes":{"commands":[{"category":"Merge Conflict","title":"Accept All Current","original":"Accept All Current","command":"merge-conflict.accept.all-current"},{"category":"Merge Conflict","title":"Accept All Incoming","original":"Accept All Incoming","command":"merge-conflict.accept.all-incoming"},{"category":"Merge Conflict","title":"Accept All Both","original":"Accept All Both","command":"merge-conflict.accept.all-both"},{"category":"Merge Conflict","title":"Accept Current","original":"Accept Current","command":"merge-conflict.accept.current"},{"category":"Merge Conflict","title":"Accept Incoming","original":"Accept Incoming","command":"merge-conflict.accept.incoming"},{"category":"Merge Conflict","title":"Accept Selection","original":"Accept Selection","command":"merge-conflict.accept.selection"},{"category":"Merge Conflict","title":"Accept Both","original":"Accept Both","command":"merge-conflict.accept.both"},{"category":"Merge Conflict","title":"Next Conflict","original":"Next Conflict","command":"merge-conflict.next"},{"category":"Merge Conflict","title":"Previous Conflict","original":"Previous Conflict","command":"merge-conflict.previous"},{"category":"Merge Conflict","title":"Compare Current Conflict","original":"Compare Current Conflict","command":"merge-conflict.compare"}],"menus":{"scm/resourceState/context":[{"command":"merge-conflict.accept.all-current","when":"scmProvider == git && scmResourceGroup == merge","group":"1_modification"},{"command":"merge-conflict.accept.all-incoming","when":"scmProvider == git && scmResourceGroup == merge","group":"1_modification"}]},"configuration":{"title":"Merge Conflict","properties":{"merge-conflict.codeLens.enabled":{"type":"boolean","description":"Create a Code Lens for merge conflict blocks within editor.","default":true},"merge-conflict.decorators.enabled":{"type":"boolean","description":"Create decorators for merge conflict blocks within editor.","default":true},"merge-conflict.autoNavigateNextConflict.enabled":{"type":"boolean","description":"Whether to automatically navigate to the next merge conflict after resolving a merge conflict.","default":false},"merge-conflict.diffViewPosition":{"type":"string","enum":["Current","Beside","Below"],"description":"Controls where the diff view should be opened when comparing changes in merge conflicts.","enumDescriptions":["Open the diff view in the current editor group.","Open the diff view next to the current editor group.","Open the diff view below the current editor group."],"default":"Current"}}}},"dependencies":{"vscode-nls":"^4.0.0"},"devDependencies":{"@types/node":"^12.11.7"},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.merge-conflict","identifier":{"value":"vscode.merge-conflict","_lower":"vscode.merge-conflict"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/merge-conflict","path":"/snap/code/26/usr/share/code/resources/app/extensions/merge-conflict","scheme":"file"}},{"name":"node-debug","displayName":"Node Debug (legacy)","version":"1.43.2","publisher":"ms-vscode","description":"Node.js debugging support (versions < 8.0)","icon":"images/node-debug-icon.png","categories":["Debuggers"],"author":{"name":"Microsoft Corporation"},"license":"MIT","private":true,"scripts":{"postinstall":"node ./node_modules/vscode/bin/install","build":"gulp build","watch":"gulp watch","test":"gulp compile && mocha --timeout 10000 -u tdd ./out/tests/","nodemon":"nodemon --debug --nolazy ./dist/nodeDebug.js --server=4711","prepublish":"gulp build","package":"gulp prepare-for-webpack && webpack --mode production --vscode-nls && vsce package","publish":"gulp prepare-for-webpack && webpack --mode production --vscode-nls && vsce publish","bump":"npm version patch -m 'bump to %s'","tslint":"gulp tslint","translations-export":"gulp translations-export"},"keywords":["multi-root ready"],"engines":{"vscode":"^1.42.0"},"extensionDependencies":["ms-vscode.node-debug2"],"dependencies":{"glob":"7.1.6","minimatch":"3.0.4","request-light":"0.2.5","source-map":"0.6.1","vscode-debugadapter":"1.39.0","vscode-nls":"4.1.1"},"repository":{"type":"git","url":"https://github.com/Microsoft/vscode-node-debug.git"},"bugs":{"url":"https://github.com/Microsoft/vscode-node-debug/issues"},"devDependencies":{"@types/mocha":"7.0.1","@types/node":"^12.7.3","copy-webpack-plugin":"^5.1.1","del":"5.1.0","gulp":"4.0.2","gulp-filter":"6.0.0","gulp-sourcemaps":"2.6.5","gulp-tsb":"4.0.5","gulp-tslint":"8.1.4","gulp-typescript":"5.0.1","gulp-uglify":"3.0.2","mocha":"7.0.1","ts-loader":"~6.2.1","tslint":"6.0.0","tslint-microsoft-contrib":"6.2.0","tsutils":"3.17.1","typescript":"~3.7.2","vsce":"^1.73.0","vscode":"1.1.36","vscode-debugadapter-testsupport":"1.40.2","vscode-debugprotocol":"1.39.0","vscode-nls-dev":"3.3.1","webpack":"~4.41.2","webpack-cli":"~3.3.10"},"main":"./dist/extension.js","activationEvents":["onDebugInitialConfigurations","onDebugResolve:node","onCommand:extension.pickNodeProcess","onCommand:extension.node-debug.toggleSkippingFile","onCommand:extension.node-debug.attachNodeProcess","onCommand:extension.node-debug.startAutoAttach","onCommand:extension.node-debug.startWithStopOnEntry"],"contributes":{"configuration":{"title":"Node debug","properties":{"debug.node.showUseWslIsDeprecatedWarning":{"scope":"window","type":"boolean","description":"Controls whether to show a warning when the 'useWSL' attribute is used.","default":true},"debug.node.useV3":{"type":"boolean","description":"[Experimental] Controls whether to delegate \"node\"-type launch configs to the js-debug extension.","default":false}}},"menus":{"debug/callstack/context":[{"command":"extension.node-debug.toggleSkippingFile","group":"navigation","when":"inDebugMode && debugType == 'node' && callStackItemType == 'stackFrame'"}]},"commands":[{"command":"extension.node-debug.attachNodeProcess","title":"Attach to Node Process","category":"Debug"},{"command":"extension.node-debug.toggleSkippingFile","title":"Toggle Skipping this File","category":"Debug"},{"command":"extension.node-debug.startWithStopOnEntry","title":"Start Debugging and Stop on Entry","category":"Debug"}],"keybindings":[{"command":"extension.node-debug.startWithStopOnEntry","key":"F10","mac":"F10","when":"!inDebugMode && debugConfigurationType=='node'"},{"command":"extension.node-debug.startWithStopOnEntry","mac":"F11","when":"!inDebugMode && debugConfigurationType=='node'"}],"breakpoints":[{"language":"javascript"},{"language":"javascriptreact"}],"debuggers":[{"type":"node","label":"Node.js","program":"./dist/nodeDebug.js","runtime":"node","variables":{"PickProcess":"extension.pickNodeProcess"},"aiKey":"AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217","languages":["javascript","typescript","javascriptreact","typescriptreact"],"configurationSnippets":[{"label":"Node.js: Launch Program","description":"Launch a node program in debug mode","body":{"type":"node","request":"launch","name":"${2:Launch Program}","program":"^\"\\${workspaceFolder}/${1:app.js}\"","skipFiles":["/**"]}},{"label":"Node.js: Launch via NPM","markdownDescription":"Launch a node program through an npm `debug` script","body":{"type":"node","request":"launch","name":"${1:Launch via NPM}","runtimeExecutable":"npm","runtimeArgs":["run-script","debug"],"port":9229,"skipFiles":["/**"]}},{"label":"Node.js: Attach","description":"Attach to a running node program","body":{"type":"node","request":"attach","name":"${1:Attach}","port":9229,"skipFiles":["/**"]}},{"label":"Node.js: Attach to Remote Program","description":"Attach to the debug port of a remote node program","body":{"type":"node","request":"attach","name":"${1:Attach to Remote}","address":"${2:TCP/IP address of process to be debugged}","port":9229,"localRoot":"^\"\\${workspaceFolder}\"","remoteRoot":"${3:Absolute path to the remote directory containing the program}","skipFiles":["/**"]}},{"label":"Node.js: Attach to Process","description":"Open process picker to select node process to attach to","body":{"type":"node","request":"attach","name":"${1:Attach by Process ID}","processId":"^\"\\${command:PickProcess}\"","skipFiles":["/**"]}},{"label":"Node.js: Nodemon Setup","description":"Use nodemon to relaunch a debug session on source changes","body":{"type":"node","request":"launch","name":"nodemon","runtimeExecutable":"nodemon","program":"^\"\\${workspaceFolder}/${1:app.js}\"","restart":true,"console":"integratedTerminal","internalConsoleOptions":"neverOpen","skipFiles":["/**"]}},{"label":"Node.js: Mocha Tests","description":"Debug mocha tests","body":{"type":"node","request":"launch","name":"Mocha Tests","program":"^\"\\${workspaceFolder}/node_modules/mocha/bin/_mocha\"","args":["-u","tdd","--timeout","999999","--colors","^\"\\${workspaceFolder}/${1:test}\""],"internalConsoleOptions":"openOnSessionStart","skipFiles":["/**"]}},{"label":"Node.js: Yeoman generator","markdownDescription":"Debug yeoman generator (install by running `npm link` in project folder)","body":{"type":"node","request":"launch","name":"Yeoman ${1:generator}","program":"^\"\\${workspaceFolder}/node_modules/yo/lib/cli.js\"","args":["${1:generator}"],"console":"integratedTerminal","internalConsoleOptions":"neverOpen","skipFiles":["/**"]}},{"label":"Node.js: Gulp task","description":"Debug gulp task (make sure to have a local gulp installed in your project)","body":{"type":"node","request":"launch","name":"Gulp ${1:task}","program":"^\"\\${workspaceFolder}/node_modules/gulp/bin/gulp.js\"","args":["${1:task}"],"skipFiles":["/**"]}},{"label":"Node.js: Electron Main","description":"Debug the Electron main process","body":{"type":"node","request":"launch","name":"Electron Main","runtimeExecutable":"^\"\\${workspaceFolder}/node_modules/.bin/electron\"","program":"^\"\\${workspaceFolder}/main.js\"","skipFiles":["/**"]}}],"configurationAttributes":{"launch":{"properties":{"protocol":{"type":"string","enum":["auto","inspector","legacy"],"enumDescriptions":["Try to detect the best protocol automatically, selecting 'inspector' for launching Node 8.0+","New protocol supported by Node.js versions >= 6.3","Old protocol supported by Node.js versions < 8.0"],"description":"Node.js debug protocol to use.","default":"inspector"},"program":{"type":"string","description":"Absolute path to the program. Generated value is guessed by looking at package.json and opened files. Edit this attribute."},"stopOnEntry":{"type":"boolean","description":"Automatically stop program after launch.","default":true},"externalConsole":{"type":"boolean","deprecationMessage":"Attribute 'externalConsole' is deprecated, use 'console' instead.","default":true},"console":{"type":"string","enum":["internalConsole","integratedTerminal","externalTerminal"],"enumDescriptions":["VS Code Debug Console (which doesn't support to read input from a program)","VS Code's integrated terminal","External terminal that can be configured via user settings"],"description":"Where to launch the debug target.","default":"internalConsole"},"args":{"type":"array","description":"Command line arguments passed to the program.","items":{"type":"string"},"default":[]},"cwd":{"type":"string","description":"Absolute path to the working directory of the program being debugged.","default":"${workspaceFolder}"},"runtimeExecutable":{"type":["string","null"],"markdownDescription":"Runtime to use. Either an absolute path or the name of a runtime available on the PATH. If omitted `node` is assumed.","default":"node"},"runtimeVersion":{"type":"string","markdownDescription":"Version of `node` runtime to use. Requires `nvm`.","default":"default"},"runtimeArgs":{"type":"array","description":"Optional arguments passed to the runtime executable.","items":{"type":"string"},"default":[]},"env":{"type":"object","additionalProperties":{"type":["string","null"]},"markdownDescription":"Environment variables passed to the program. The value `null` removes the variable from the environment.","default":{}},"envFile":{"type":"string","description":"Absolute path to a file containing environment variable definitions.","default":"${workspaceFolder}/.env"},"sourceMaps":{"type":"boolean","description":"Use JavaScript source maps (if they exist).","default":true},"outDir":{"type":["string","null"],"deprecationMessage":"Attribute 'outDir' is deprecated, use 'outFiles' instead.","default":null},"outFiles":{"type":"array","markdownDescription":"If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with '!' the files are excluded. If not specified, the generated code is expected in the same directory as its source. Example: [\"${workspaceFolder}/out/**/*.js\"]","items":{"type":"string"},"default":[]},"port":{"type":"number","description":"Debug port to attach to. Default is 5858.","default":9229},"address":{"type":"string","description":"TCP/IP address of process to be debugged (for Node.js >= 5.0 only). Default is 'localhost'.","default":"localhost"},"timeout":{"type":"number","description":"Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.","default":10000},"restart":{"type":"boolean","description":"Restart session after Node.js has terminated.","default":true},"localRoot":{"type":["string","null"],"description":"Path to the local directory containing the program.","default":null},"remoteRoot":{"type":["string","null"],"description":"Absolute path to the remote directory containing the program.","default":null},"smartStep":{"type":"boolean","description":"Automatically step through generated code that cannot be mapped back to the original source.","default":true},"skipFiles":{"type":"array","markdownDescription":"An array of glob patterns for files to skip when debugging. The pattern `/**` matches all internal Node.js modules.","items":{"type":"string"},"default":[]},"showAsyncStacks":{"type":"boolean","description":"Show the async calls that led to the current call stack. 'inspector' protocol only.","default":true},"useWSL":{"type":"boolean","description":"Use Windows Subsystem for Linux.","default":true,"deprecationMessage":"'useWSL' is deprecated and support for it will be dropped. Use the 'Remote - WSL' extension instead."},"trace":{"type":["boolean","string"],"description":"Produce diagnostic output. Instead of setting this to true you can list one or more selectors separated with commas. The 'verbose' selector enables very detailed output.","default":true},"outputCapture":{"enum":["console","std"],"description":"From where to capture output messages: The debug API, or stdout/stderr streams.","default":"console"},"sourceMapPathOverrides":{"type":"object","description":"A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.","default":{"webpack:///./~/*":"${workspaceRoot}/node_modules/*","webpack:///./*":"${workspaceRoot}/*","webpack:///*":"*"}},"autoAttachChildProcesses":{"type":"boolean","description":"Attach debugger to new child processes automatically.","default":true},"disableOptimisticBPs":{"type":"boolean","description":"Don't set breakpoints in any file until a sourcemap has been loaded for that file.","default":true}}},"attach":{"properties":{"protocol":{"type":"string","enum":["auto","inspector","legacy"],"enumDescriptions":["Try to detect the best protocol automatically, selecting 'inspector' for launching Node 8.0+","New protocol supported by Node.js versions >= 6.3","Old protocol supported by Node.js versions < 8.0"],"description":"Node.js debug protocol to use.","default":"inspector"},"cwd":{"type":"string","description":"Absolute path to the working directory of the program being debugged.","default":"${workspaceFolder}"},"processId":{"type":"string","description":"ID of process to attach to.","default":"${command:PickProcess}"},"port":{"type":"number","description":"Debug port to attach to. Default is 5858.","default":9229},"address":{"type":"string","description":"TCP/IP address of process to be debugged (for Node.js >= 5.0 only). Default is 'localhost'.","default":"localhost"},"timeout":{"type":"number","description":"Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.","default":10000},"restart":{"type":"boolean","description":"Restart session after Node.js has terminated.","default":true},"sourceMaps":{"type":"boolean","description":"Use JavaScript source maps (if they exist).","default":true},"outDir":{"type":["string","null"],"deprecationMessage":"Attribute 'outDir' is deprecated, use 'outFiles' instead.","default":null},"outFiles":{"type":"array","markdownDescription":"If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with '!' the files are excluded. If not specified, the generated code is expected in the same directory as its source. Example: [\"${workspaceFolder}/out/**/*.js\"]","items":{"type":"string"},"default":[]},"stopOnEntry":{"type":"boolean","description":"Automatically stop program after launch.","default":true},"localRoot":{"type":["string","null"],"description":"Path to the local directory containing the program.","default":null},"remoteRoot":{"type":["string","null"],"description":"Absolute path to the remote directory containing the program.","default":null},"smartStep":{"type":"boolean","description":"Automatically step through generated code that cannot be mapped back to the original source.","default":true},"skipFiles":{"type":"array","markdownDescription":"An array of glob patterns for files to skip when debugging. The pattern `/**` matches all internal Node.js modules.","items":{"type":"string"},"default":[]},"showAsyncStacks":{"type":"boolean","description":"Show the async calls that led to the current call stack. 'inspector' protocol only.","default":true},"trace":{"type":["boolean","string"],"description":"Produce diagnostic output. Instead of setting this to true you can list one or more selectors separated with commas. The 'verbose' selector enables very detailed output.","default":true},"sourceMapPathOverrides":{"type":"object","description":"A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.","default":{"webpack:///./~/*":"${workspaceRoot}/node_modules/*","webpack:///./*":"${workspaceRoot}/*","webpack:///*":"*"}},"disableOptimisticBPs":{"type":"boolean","description":"Don't set breakpoints in any file until a sourcemap has been loaded for that file.","default":true}}}}}]},"uuid":"b6ded8fb-a0a0-4c1c-acbd-ab2a3bc995a6","isBuiltin":true,"isUnderDevelopment":false,"id":"ms-vscode.node-debug","identifier":{"value":"ms-vscode.node-debug","_lower":"ms-vscode.node-debug"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/ms-vscode.node-debug","path":"/snap/code/26/usr/share/code/resources/app/extensions/ms-vscode.node-debug","scheme":"file"}},{"name":"node-debug2","displayName":"Node Debug","version":"1.42.1","publisher":"ms-vscode","description":"Node.js debugging support","icon":"images/node-debug-icon.png","categories":["Debuggers"],"author":{"name":"Microsoft Corporation"},"license":"MIT","private":true,"dependencies":{"minimatch":"^3.0.4","vscode-chrome-debug-core":"^6.8.7","vscode-debugadapter":"^1.37.1","vscode-nls":"^4.0.0"},"devDependencies":{"@types/minimatch":"^3.0.3","@types/mocha":"^2.2.47","@types/node":"^8.0.58","del":"^2.2.2","event-stream":"^3.3.4","find-free-port":"^1.0.2","gulp":"^4.0.0","gulp-sourcemaps":"^2.6.4","gulp-tslint":"^8.1.2","gulp-typescript":"^5.0.0","gulp-util":"^3.0.5","minimist":"^1.2.0","mocha":"^5.0.0","tslint":"^5.7.0","typescript":"^2.6.2","vsce":"^1.57.1","vscode":"^1.1.30","vscode-chrome-debug-core-testsupport":"^4.0.0","vscode-debugadapter-testsupport":"^1.25.0","vscode-debugprotocol":"^1.37.0","vscode-nls-dev":"^3.2.6"},"main":"./out/src/extension","activationEvents":["onDebug:extensionHost","onDebugResolve:extensionHost","onCommand:extension.node-debug2.toggleSkippingFile"],"scripts":{"postinstall":"node ./node_modules/vscode/bin/install","build":"gulp build","watch":"gulp watch","test":"mocha --timeout 20000 -s 2000 -u tdd --colors --reporter node_modules/vscode-chrome-debug-core-testsupport/out/loggingReporter.js ./out/test/","vscode:prepublish":"gulp verify-no-linked-modules && gulp build","tslint":"gulp tslint","publish":"gulp publish","patch":"npm version patch -m '%s'","minor":"npm version minor -m '%s'","package":"gulp package"},"engines":{"vscode":"^1.31.0","node":">=6.3.0"},"repository":{"type":"git","url":"https://github.com/Microsoft/vscode-node-debug2.git"},"bugs":{"url":"https://github.com/Microsoft/vscode-node-debug2/issues"},"contributes":{"breakpoints":[{"language":"javascript"},{"language":"javascriptreact"}],"configuration":{"properties":{"debug.extensionHost.useV3":{"type":"boolean","description":"[Experimental] Controls whether to delegate \"extensionHost\"-type launch configs to the js-debug extension.","default":false}}},"debuggers":[{"type":"extensionHost","label":"VS Code Extension Development","program":"./out/src/nodeDebug.js","runtime":"node","aiKey":"AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217","configurationSnippets":[{"label":"VS Code Extension Development","description":"Launch a VS Code extension in debug mode","body":{"type":"extensionHost","request":"launch","name":"Launch Extension","runtimeExecutable":"^\"\\${execPath}\"","args":["^\"--extensionDevelopmentPath=\\${workspaceFolder}\""],"outFiles":["^\"\\${workspaceFolder}/out/**/*.js\""],"preLaunchTask":"npm"}}],"configurationAttributes":{"launch":{"required":["args"],"properties":{"runtimeExecutable":{"type":["string","null"],"markdownDescription":"Absolute path to VS Code.","default":"${execPath}"},"args":{"type":"array","description":"Command line arguments passed to the program.","items":{"type":"string"},"default":["--extensionDevelopmentPath=${workspaceFolder}"]},"env":{"type":"object","additionalProperties":{"type":["string","null"]},"markdownDescription":"Environment variables passed to the extension host.","default":{}},"stopOnEntry":{"type":"boolean","description":"Automatically stop the extension host after launch.","default":true},"sourceMaps":{"type":"boolean","description":"Use JavaScript source maps (if they exist).","default":true},"outDir":{"type":["string","null"],"deprecationMessage":"Attribute 'outDir' is deprecated, use 'outFiles' instead.","default":"${workspaceFolder}/out"},"outFiles":{"type":"array","markdownDescription":"If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.","items":{"type":"string"},"default":["${workspaceFolder}/out/**/*.js"]},"smartStep":{"type":"boolean","description":"Automatically step through generated code that cannot be mapped back to the original source.","default":true},"skipFiles":{"type":"array","description":"An array of file or folder names, or glob patterns, to skip when debugging.","items":{"type":"string"},"default":[]},"trace":{"type":["boolean","string"],"description":"When 'true', the debugger will log tracing info to a file. When 'verbose', it will also show logs in the console.","default":true},"enableSourceMapCaching":{"type":"boolean","description":"When sourcemaps are downloaded from a URL, cache them to disk.","default":true}}}}},{"type":"node2","label":"Node.js v6.3+","program":"./out/src/nodeDebug.js","runtime":"node","aiKey":"AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217","configurationAttributes":{"launch":{"required":["cwd"],"properties":{"program":{"type":"string","description":"Absolute path to the program."},"stopOnEntry":{"type":"boolean","description":"Automatically stop program after launch.","default":true},"console":{"enum":["internalConsole","integratedTerminal","externalTerminal"],"description":"Where to launch the debug target: internal console, integrated terminal, or external terminal.","default":"internalConsole"},"args":{"type":"array","description":"Command line arguments passed to the program.","items":{"type":"string"},"default":[]},"restart":{"type":"boolean","description":"Restart session after Node.js has terminated.","default":true},"cwd":{"type":"string","description":"Absolute path to the working directory of the program being debugged.","default":"${workspaceFolder}"},"runtimeExecutable":{"type":["string","null"],"markdownDescription":"Runtime to use. Either an absolute path or the name of a runtime available on the PATH. If ommitted `node` is assumed.","default":null},"runtimeArgs":{"type":"array","description":"Optional arguments passed to the runtime executable.","items":{"type":"string"},"default":[]},"env":{"type":"object","additionalProperties":{"type":"string"},"description":"Environment variables passed to the program. The value `null` removes the variable from the environment.","default":{}},"sourceMaps":{"type":"boolean","description":"Use JavaScript source maps (if they exist).","default":true},"outDir":{"type":["string","null"],"deprecationMessage":"Attribute 'outDir' is deprecated, use 'outFiles' instead.","default":null},"outFiles":{"type":"array","description":"If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.","items":{"type":"string"},"default":[]},"port":{"type":"number","description":"Debug port to attach to. Default is 9229.","default":9229},"address":{"type":"string","description":"TCP/IP address of debug port. Default is 'localhost'.","default":"localhost"},"timeout":{"type":"number","description":"Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.","default":10000},"smartStep":{"type":"boolean","description":"Automatically step through generated code that cannot be mapped back to the original source.","default":true},"diagnosticLogging":{"type":"boolean","description":"When true, the adapter logs its own diagnostic info to the console","default":true,"deprecationMessage":"'diagnosticLogging' is deprecated. Use 'trace' instead."},"verboseDiagnosticLogging":{"type":"boolean","description":"When true, the adapter logs all traffic with the client and target (as well as the info logged by 'diagnosticLogging')","default":true,"deprecationMessage":"'verboseDiagnosticLogging' is deprecated. Use 'trace' instead."},"trace":{"type":["boolean","string"],"enum":["verbose",true],"default":true,"description":"When 'true', the debugger will log tracing info to a file. When 'verbose', it will also show logs in the console."},"sourceMapPathOverrides":{"type":"object","description":"A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk. See README for details.","default":{}},"skipFiles":{"type":"array","description":"An array of file or folder names, or glob patterns, to skip when debugging.","default":[]},"envFile":{"type":"string","description":"Absolute path to a file containing environment variable definitions.","default":"${workspaceFolder}/.env"},"showAsyncStacks":{"type":"boolean","description":"Show the async calls that led to the current call stack.","default":true},"outputCapture":{"enum":["console","std"],"description":"From where to capture output messages: The debug API, or stdout/stderr streams.","default":"console"},"enableSourceMapCaching":{"type":"boolean","description":"When sourcemaps are downloaded from a URL, cache them to disk.","default":true},"disableOptimisticBPs":{"type":"boolean","description":"Don't set breakpoints in any file until a sourcemap has been loaded for that file.","default":true}}},"attach":{"properties":{"port":{"type":"number","description":"Debug port to attach to. Default is 9229.","default":9229},"address":{"type":"string","description":"TCP/IP address of debug port. Default is 'localhost'.","default":"localhost"},"timeout":{"type":"number","description":"Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.","default":10000},"restart":{"type":"boolean","description":"Restart session after Node.js has terminated.","default":true},"sourceMaps":{"type":"boolean","description":"Use JavaScript source maps (if they exist).","default":true},"outDir":{"type":["string","null"],"deprecationMessage":"Attribute 'outDir' is deprecated, use 'outFiles' instead.","default":null},"outFiles":{"type":"array","description":"If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.","items":{"type":"string"},"default":[]},"stopOnEntry":{"type":"boolean","description":"Automatically stop program after launch.","default":true},"localRoot":{"type":["string","null"],"description":"The local source root that corresponds to the 'remoteRoot'.","default":null},"remoteRoot":{"type":["string","null"],"description":"The source root of the remote host.","default":null},"smartStep":{"type":"boolean","description":"Automatically step through generated code that cannot be mapped back to the original source.","default":true},"diagnosticLogging":{"type":"boolean","description":"When true, the adapter logs its own diagnostic info to the console","default":true,"deprecationMessage":"'diagnosticLogging' is deprecated. Use 'trace' instead."},"verboseDiagnosticLogging":{"type":"boolean","description":"When true, the adapter logs all traffic with the client and target (as well as the info logged by 'diagnosticLogging')","default":true,"deprecationMessage":"'verboseDiagnosticLogging' is deprecated. Use 'trace' instead."},"trace":{"type":["boolean","string"],"enum":["verbose",true],"default":true,"description":"When 'true', the debugger will log tracing info to a file. When 'verbose', it will also show logs in the console."},"sourceMapPathOverrides":{"type":"object","description":"A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk. See README for details.","default":{}},"skipFiles":{"type":"array","description":"An array of file or folder names, or glob patterns, to skip when debugging.","default":[]},"showAsyncStacks":{"type":"boolean","description":"Show the async calls that led to the current call stack.","default":true},"enableSourceMapCaching":{"type":"boolean","description":"When sourcemaps are downloaded from a URL, cache them to disk.","default":true},"disableOptimisticBPs":{"type":"boolean","description":"Don't set breakpoints in any file until a sourcemap has been loaded for that file.","default":true}}}}}],"menus":{"debug/callstack/context":[{"command":"extension.node-debug2.toggleSkippingFile","group":"navigation","when":"inDebugMode && debugType == 'node2' && callStackItemType == 'stackFrame'"}]},"commands":[{"command":"extension.node-debug2.toggleSkippingFile","title":"Toggle Skipping this File"}],"keybindings":[{"command":"extension.node-debug.pickLoadedScript","key":"ctrl+f4","mac":"cmd+f4","when":"debugType == 'node2'"}]},"uuid":"36d19e17-7569-4841-a001-947eb18602b2","isBuiltin":true,"isUnderDevelopment":false,"id":"ms-vscode.node-debug2","identifier":{"value":"ms-vscode.node-debug2","_lower":"ms-vscode.node-debug2"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/ms-vscode.node-debug2","path":"/snap/code/26/usr/share/code/resources/app/extensions/ms-vscode.node-debug2","scheme":"file"}},{"name":"references-view","displayName":"Reference Search View","icon":"media/icon.png","description":"Reference Search results as separate, stable view in the sidebar","version":"0.0.47","publisher":"ms-vscode","engines":{"vscode":"^1.40.0"},"repository":{"type":"git","url":"https://github.com/Microsoft/vscode-reference-view"},"bugs":{"url":"https://github.com/Microsoft/vscode-reference-view/issues"},"categories":["Programming Languages"],"activationEvents":["onCommand:references-view.find","onCommand:references-view.findImplementations","onCommand:references-view.showCallHierarchy","onCommand:editor.action.showReferences","onView:references-view.tree"],"main":"./dist/extension","contributes":{"configuration":{"properties":{"references.preferredLocation":{"description":"Controls whether 'Peek References' or 'Find References' is invoked when selecting code lens references","type":"string","default":"peek","enum":["peek","view"],"enumDescriptions":["Show references in peek editor.","Show references in separate view."]}}},"viewsContainers":{"activitybar":[{"id":"references-view","icon":"./media/container-icon.svg","title":"References"}]},"views":{"references-view":[{"id":"references-view.tree","name":"Results","when":"reference-list.isActive"}]},"commands":[{"command":"references-view.find","title":"Find All References","category":"References"},{"command":"references-view.findImplementations","title":"Find All Implementations","category":"References"},{"command":"references-view.clearHistory","title":"Clear History","category":"References","icon":{"dark":"./media/action-clear-dark.svg","light":"./media/action-clear.svg"}},{"command":"references-view.clear","title":"Clear","category":"References","icon":{"dark":"./media/action-clear-dark.svg","light":"./media/action-clear.svg"}},{"command":"references-view.refresh","title":"Refresh","category":"References","icon":{"dark":"./media/action-refresh-dark.svg","light":"./media/action-refresh.svg"}},{"command":"references-view.pickFromHistory","title":"Show History","category":"References"},{"command":"references-view.remove","title":"Dismiss","icon":{"dark":"./media/action-remove-dark.svg","light":"./media/action-remove.svg"}},{"command":"references-view.copy","title":"Copy"},{"command":"references-view.copyAll","title":"Copy All"},{"command":"references-view.copyPath","title":"Copy Path"},{"command":"references-view.refind","title":"Rerun","icon":{"dark":"./media/action-refresh-dark.svg","light":"./media/action-refresh.svg"}},{"command":"references-view.showCallHierarchy","title":"Show Call Hierarchy","category":"Calls"},{"command":"references-view.showOutgoingCalls","title":"Show Outgoing Calls","category":"Calls","icon":{"dark":"./media/action-call-to-dark.svg","light":"./media/action-call-to.svg"}},{"command":"references-view.showIncomingCalls","title":"Show Incoming Calls","category":"Calls","icon":{"dark":"./media/action-call-from-dark.svg","light":"./media/action-call-from.svg"}}],"menus":{"editor/context":[{"command":"references-view.find","when":"editorHasReferenceProvider","group":"0_navigation@1"},{"command":"references-view.findImplementations","when":"editorHasImplementationProvider","group":"0_navigation@2"},{"command":"references-view.showCallHierarchy","when":"editorHasCallHierarchyProvider","group":"0_navigation@3"}],"view/title":[{"command":"references-view.clear","group":"navigation@3","when":"view == references-view.tree && reference-list.hasResult"},{"command":"references-view.clearHistory","group":"navigation@3","when":"view == references-view.tree && reference-list.hasHistory && !reference-list.hasResult"},{"command":"references-view.refresh","group":"navigation@2","when":"view == references-view.tree && reference-list.hasResult"},{"command":"references-view.showOutgoingCalls","group":"navigation@1","when":"view == references-view.tree && reference-list.hasResult && reference-list.source == callHierarchy && references-view.callHierarchyMode == showIncoming"},{"command":"references-view.showIncomingCalls","group":"navigation@1","when":"view == references-view.tree && reference-list.hasResult && reference-list.source == callHierarchy && references-view.callHierarchyMode == showOutgoing"}],"view/item/context":[{"command":"references-view.remove","group":"inline","when":"view == references-view.tree && viewItem == file-item || view == references-view.tree && viewItem == reference-item"},{"command":"references-view.refind","group":"inline","when":"view == references-view.tree && viewItem == history-item"},{"command":"references-view.remove","group":"1","when":"view == references-view.tree && viewItem == file-item || view == references-view.tree && viewItem == reference-item"},{"command":"references-view.refind","group":"1","when":"view == references-view.tree && viewItem == history-item"},{"command":"references-view.copy","group":"2@1","when":"view == references-view.tree && viewItem == file-item || view == references-view.tree && viewItem == reference-item"},{"command":"references-view.copyPath","group":"2@2","when":"view == references-view.tree && viewItem == file-item"},{"command":"references-view.copyAll","group":"2@3","when":"view == references-view.tree && viewItem == file-item || view == references-view.tree && viewItem == reference-item"},{"command":"references-view.showOutgoingCalls","group":"inline","when":"view == references-view.tree && viewItem == call-item && references-view.callHierarchyMode == showOutgoing"},{"command":"references-view.showIncomingCalls","group":"inline","when":"view == references-view.tree && viewItem == call-item && references-view.callHierarchyMode == showIncoming"},{"command":"references-view.showOutgoingCalls","group":"1","when":"view == references-view.tree && viewItem == call-item"},{"command":"references-view.showIncomingCalls","group":"1","when":"view == references-view.tree && viewItem == call-item"}],"commandPalette":[{"command":"references-view.remove","when":"never"},{"command":"references-view.copy","when":"never"},{"command":"references-view.copyAll","when":"never"},{"command":"references-view.copyPath","when":"never"},{"command":"references-view.refind","when":"never"},{"command":"references-view.find","when":"editorHasReferenceProvider"},{"command":"references-view.clear","when":"reference-list.hasResult"},{"command":"references-view.clearHistory","when":"reference-list.isActive && !reference-list.hasResult"},{"command":"references-view.refresh","when":"reference-list.hasResult"},{"command":"references-view.pickFromHistory","when":"reference-list.isActive"}]},"keybindings":[{"command":"references-view.find","when":"editorHasReferenceProvider","key":"shift+alt+f12"},{"command":"references-view.next","when":"reference-list.hasResult","key":"f4"},{"command":"references-view.prev","when":"reference-list.hasResult","key":"shift+f4"},{"command":"references-view.showCallHierarchy","when":"editorHasCallHierarchyProvider","key":"shift+alt+h"}]},"scripts":{"vscode:prepublish":"webpack --mode production","compile":"webpack --mode none","watch":"webpack --mode none --watch --info-verbosity verbose"},"devDependencies":{"@types/node":"^12.7.3","ts-loader":"~6.2.1","typescript":"~3.7.2","webpack":"~4.41.2","webpack-cli":"~3.3.10"},"uuid":"dc489f46-520d-4556-ae85-1f9eab3c412d","isBuiltin":true,"isUnderDevelopment":false,"id":"ms-vscode.references-view","identifier":{"value":"ms-vscode.references-view","_lower":"ms-vscode.references-view"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/ms-vscode.references-view","path":"/snap/code/26/usr/share/code/resources/app/extensions/ms-vscode.references-view","scheme":"file"}},{"name":"npm","publisher":"vscode","displayName":"NPM support for VS Code","description":"Extension to add task support for npm scripts.","version":"1.0.1","license":"MIT","engines":{"vscode":"0.10.x"},"enableProposedApi":true,"icon":"images/npm_icon.png","categories":["Other"],"scripts":{"compile":"gulp compile-extension:npm","watch":"gulp watch-extension:npm"},"dependencies":{"jsonc-parser":"^2.2.1","minimatch":"^3.0.4","request-light":"^0.2.5","vscode-nls":"^4.1.1"},"devDependencies":{"@types/minimatch":"^3.0.3","@types/node":"^12.11.7"},"main":"./dist/main","activationEvents":["onCommand:workbench.action.tasks.runTask","onCommand:npm.runScriptFromFolder","onLanguage:json","workspaceContains:package.json","onView:npm"],"contributes":{"languages":[{"id":"ignore","filenames":[".npmignore"]}],"views":{"explorer":[{"id":"npm","name":"NPM Scripts","when":"npm:showScriptExplorer || config.npm.enableScriptExplorer"}]},"commands":[{"command":"npm.runScript","title":"Run","icon":{"light":"resources/light/continue.svg","dark":"resources/dark/continue.svg"}},{"command":"npm.debugScript","title":"Debug","icon":{"light":"resources/light/debug.svg","dark":"resources/dark/debug.svg"}},{"command":"npm.openScript","title":"Open"},{"command":"npm.runInstall","title":"Run Install"},{"command":"npm.refresh","title":"Refresh","icon":{"light":"resources/light/refresh.svg","dark":"resources/dark/refresh.svg"}},{"command":"npm.runSelectedScript","title":"Run Script"},{"command":"npm.runScriptFromFolder","title":"Run NPM Script in Folder..."}],"menus":{"commandPalette":[{"command":"npm.refresh","when":"false"},{"command":"npm.runScript","when":"false"},{"command":"npm.debugScript","when":"false"},{"command":"npm.openScript","when":"false"},{"command":"npm.runInstall","when":"false"},{"command":"npm.runSelectedScript","when":"false"},{"command":"npm.runScriptFromFolder","when":"false"}],"editor/context":[{"command":"npm.runSelectedScript","when":"resourceFilename == 'package.json'","group":"navigation@+1"}],"view/title":[{"command":"npm.refresh","when":"view == npm","group":"navigation"}],"view/item/context":[{"command":"npm.openScript","when":"view == npm && viewItem == packageJSON","group":"navigation@1"},{"command":"npm.runInstall","when":"view == npm && viewItem == packageJSON","group":"navigation@2"},{"command":"npm.openScript","when":"view == npm && viewItem == script","group":"navigation@1"},{"command":"npm.runScript","when":"view == npm && viewItem == script","group":"navigation@2"},{"command":"npm.runScript","when":"view == npm && viewItem == script","group":"inline"},{"command":"npm.runScript","when":"view == npm && viewItem == debugScript","group":"inline"},{"command":"npm.debugScript","when":"view == npm && viewItem == debugScript","group":"inline"},{"command":"npm.debugScript","when":"view == npm && viewItem == script","group":"navigation@3"}],"explorer/context":[{"when":"config.npm.enableRunFromFolder && explorerViewletVisible && explorerResourceIsFolder","command":"npm.runScriptFromFolder","group":"2_workspace"}]},"configuration":{"id":"npm","type":"object","title":"Npm","properties":{"npm.autoDetect":{"type":"string","enum":["off","on"],"default":"on","scope":"resource","description":"Controls whether npm scripts should be automatically detected."},"npm.runSilent":{"type":"boolean","default":false,"scope":"resource","markdownDescription":"Run npm commands with the `--silent` option."},"npm.packageManager":{"scope":"resource","type":"string","enum":["npm","yarn"],"default":"npm","description":"The package manager used to run scripts."},"npm.exclude":{"type":["string","array"],"items":{"type":"string"},"description":"Configure glob patterns for folders that should be excluded from automatic script detection.","scope":"resource"},"npm.enableScriptExplorer":{"type":"boolean","default":false,"scope":"resource","description":"Enable an explorer view for npm scripts when there is no top-level 'package.json' file."},"npm.enableRunFromFolder":{"type":"boolean","default":false,"scope":"resource","description":"Enable running npm scripts contained in a folder from the Explorer context menu."},"npm.scriptExplorerAction":{"type":"string","enum":["open","run"],"markdownDescription":"The default click action used in the npm scripts explorer: `open` or `run`, the default is `open`.","scope":"window","default":"open"},"npm.fetchOnlinePackageInfo":{"type":"boolean","description":"Fetch data from https://registry.npmjs.org and https://registry.bower.io to provide auto-completion and information on hover features on npm dependencies.","default":true,"scope":"window","tags":["usesOnlineServices"]}}},"jsonValidation":[{"fileMatch":"package.json","url":"https://schemastore.azurewebsites.net/schemas/json/package.json"},{"fileMatch":"bower.json","url":"https://schemastore.azurewebsites.net/schemas/json/bower.json"}],"taskDefinitions":[{"type":"npm","required":["script"],"properties":{"script":{"type":"string","description":"The npm script to customize."},"path":{"type":"string","description":"The path to the folder of the package.json file that provides the script. Can be omitted."}}}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.npm","identifier":{"value":"vscode.npm","_lower":"vscode.npm"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/npm","path":"/snap/code/26/usr/share/code/resources/app/extensions/npm","scheme":"file"}},{"name":"objective-c","displayName":"Objective-C Language Basics","description":"Provides syntax highlighting and bracket matching in Objective-C files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ./build/update-grammars.js"},"contributes":{"languages":[{"id":"objective-c","extensions":[".m"],"aliases":["Objective-C"],"configuration":"./language-configuration.json"},{"id":"objective-cpp","extensions":[".mm"],"aliases":["Objective-C++"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"objective-c","scopeName":"source.objc","path":"./syntaxes/objective-c.tmLanguage.json"},{"language":"objective-cpp","scopeName":"source.objcpp","path":"./syntaxes/objective-c++.tmLanguage.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.objective-c","identifier":{"value":"vscode.objective-c","_lower":"vscode.objective-c"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/objective-c","path":"/snap/code/26/usr/share/code/resources/app/extensions/objective-c","scheme":"file"}},{"name":"perl","displayName":"Perl Language Basics","description":"Provides syntax highlighting and bracket matching in Perl files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js textmate/perl.tmbundle Syntaxes/Perl.plist ./syntaxes/perl.tmLanguage.json Syntaxes/Perl%206.tmLanguage ./syntaxes/perl6.tmLanguage.json"},"contributes":{"languages":[{"id":"perl","aliases":["Perl","perl"],"extensions":[".pl",".pm",".pod",".t",".PL",".psgi"],"firstLine":"^#!.*\\bperl\\b","configuration":"./perl.language-configuration.json"},{"id":"perl6","aliases":["Perl 6","perl6"],"extensions":[".p6",".pl6",".pm6",".nqp"],"firstLine":"(^#!.*\\bperl6\\b)|use\\s+v6","configuration":"./perl6.language-configuration.json"}],"grammars":[{"language":"perl","scopeName":"source.perl","path":"./syntaxes/perl.tmLanguage.json"},{"language":"perl6","scopeName":"source.perl.6","path":"./syntaxes/perl6.tmLanguage.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.perl","identifier":{"value":"vscode.perl","_lower":"vscode.perl"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/perl","path":"/snap/code/26/usr/share/code/resources/app/extensions/perl","scheme":"file"}},{"name":"php","displayName":"PHP Language Basics","description":"Provides syntax highlighting and bracket matching for PHP files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"0.10.x"},"contributes":{"languages":[{"id":"php","extensions":[".php",".php4",".php5",".phtml",".ctp"],"aliases":["PHP","php"],"firstLine":"^#!\\s*/.*\\bphp\\b","mimetypes":["application/x-php"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"php","scopeName":"source.php","path":"./syntaxes/php.tmLanguage.json"},{"language":"php","scopeName":"text.html.php","path":"./syntaxes/html.tmLanguage.json","embeddedLanguages":{"text.html":"html","source.php":"php","source.sql":"sql","text.xml":"xml","source.js":"javascript","source.json":"json","source.css":"css"}}],"snippets":[{"language":"php","path":"./snippets/php.snippets.json"}]},"scripts":{"update-grammar":"node ./build/update-grammar.js"},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.php","identifier":{"value":"vscode.php","_lower":"vscode.php"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/php","path":"/snap/code/26/usr/share/code/resources/app/extensions/php","scheme":"file"}},{"name":"php-language-features","displayName":"PHP Language Features","description":"Provides rich language support for PHP files.","version":"1.0.0","publisher":"vscode","license":"MIT","icon":"icons/logo.png","engines":{"vscode":"0.10.x"},"activationEvents":["onLanguage:php"],"main":"./dist/phpMain","categories":["Programming Languages"],"contributes":{"configuration":{"title":"PHP","type":"object","order":20,"properties":{"php.suggest.basic":{"type":"boolean","default":true,"description":"Controls whether the built-in PHP language suggestions are enabled. The support suggests PHP globals and variables."},"php.validate.enable":{"type":"boolean","default":true,"description":"Enable/disable built-in PHP validation."},"php.validate.executablePath":{"type":["string","null"],"default":null,"description":"Points to the PHP executable.","scope":"machine"},"php.validate.run":{"type":"string","enum":["onSave","onType"],"default":"onSave","description":"Whether the linter is run on save or on type."}}},"jsonValidation":[{"fileMatch":"composer.json","url":"https://getcomposer.org/schema.json"}],"commands":[{"title":"Disallow PHP validation executable (defined as workspace setting)","category":"PHP","command":"php.untrustValidationExecutable"}],"menus":{"commandPalette":[{"command":"php.untrustValidationExecutable","when":"php.untrustValidationExecutableContext"}]}},"scripts":{"compile":"npx gulp compile-extension:php-language-features","watch":"npx gulp watch-extension:php-language-features"},"dependencies":{"vscode-nls":"^4.0.0"},"devDependencies":{"@types/node":"^12.11.7"},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.php-language-features","identifier":{"value":"vscode.php-language-features","_lower":"vscode.php-language-features"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/php-language-features","path":"/snap/code/26/usr/share/code/resources/app/extensions/php-language-features","scheme":"file"}},{"name":"powershell","displayName":"Powershell Language Basics","description":"Provides snippets, syntax highlighting, bracket matching and folding in Powershell files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"contributes":{"languages":[{"id":"powershell","extensions":[".ps1",".psm1",".psd1",".pssc",".psrc"],"aliases":["PowerShell","powershell","ps","ps1"],"firstLine":"^#!\\s*/.*\\bpwsh\\b","configuration":"./language-configuration.json"}],"grammars":[{"language":"powershell","scopeName":"source.powershell","path":"./syntaxes/powershell.tmLanguage.json"}],"snippets":[{"language":"powershell","path":"./snippets/powershell.json"}]},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js PowerShell/EditorSyntax PowerShellSyntax.tmLanguage ./syntaxes/powershell.tmLanguage.json"},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.powershell","identifier":{"value":"vscode.powershell","_lower":"vscode.powershell"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/powershell","path":"/snap/code/26/usr/share/code/resources/app/extensions/powershell","scheme":"file"}},{"name":"pug","displayName":"Pug Language Basics","description":"Provides syntax highlighting and bracket matching in Pug files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js davidrios/pug-tmbundle Syntaxes/Pug.JSON-tmLanguage ./syntaxes/pug.tmLanguage.json"},"contributes":{"languages":[{"id":"jade","extensions":[".jade",".pug"],"aliases":["Pug","Jade","jade"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"jade","scopeName":"text.pug","path":"./syntaxes/pug.tmLanguage.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.pug","identifier":{"value":"vscode.pug","_lower":"vscode.pug"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/pug","path":"/snap/code/26/usr/share/code/resources/app/extensions/pug","scheme":"file"}},{"name":"python","displayName":"Python Language Basics","description":"Provides syntax highlighting, bracket matching and folding in Python files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"activationEvents":["onLanguage:python"],"main":"./dist/pythonMain","extensionKind":["ui","workspace"],"contributes":{"languages":[{"id":"python","extensions":[".py",".rpy",".pyw",".cpy",".gyp",".gypi",".pyi",".ipy"],"aliases":["Python","py"],"filenames":["Snakefile"],"firstLine":"^#!\\s*/?.*\\bpython[0-9.-]*\\b","configuration":"./language-configuration.json"}],"grammars":[{"language":"python","scopeName":"source.python","path":"./syntaxes/MagicPython.tmLanguage.json"},{"scopeName":"source.regexp.python","path":"./syntaxes/MagicRegExp.tmLanguage.json"}]},"scripts":{"compile":"gulp compile-extension:python","watch":"gulp watch-extension:python","update-grammar":"node ../../build/npm/update-grammar.js MagicStack/MagicPython grammars/MagicPython.tmLanguage ./syntaxes/MagicPython.tmLanguage.json grammars/MagicRegExp.tmLanguage ./syntaxes/MagicRegExp.tmLanguage.json"},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.python","identifier":{"value":"vscode.python","_lower":"vscode.python"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/python","path":"/snap/code/26/usr/share/code/resources/app/extensions/python","scheme":"file"}},{"name":"r","displayName":"R Language Basics","description":"Provides syntax highlighting and bracket matching in R files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js Ikuyadeu/vscode-R syntax/r.json ./syntaxes/r.tmLanguage.json"},"contributes":{"languages":[{"id":"r","extensions":[".r",".rhistory",".rprofile",".rt"],"aliases":["R","r"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"r","scopeName":"source.r","path":"./syntaxes/r.tmLanguage.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.r","identifier":{"value":"vscode.r","_lower":"vscode.r"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/r","path":"/snap/code/26/usr/share/code/resources/app/extensions/r","scheme":"file"}},{"name":"razor","displayName":"Razor Language Basics","description":"Provides syntax highlighting, bracket matching and folding in Razor files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"0.10.x"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js demyte/language-cshtml grammars/cshtml.json ./syntaxes/cshtml.tmLanguage.json"},"contributes":{"languages":[{"id":"razor","extensions":[".cshtml"],"aliases":["Razor","razor"],"mimetypes":["text/x-cshtml"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"razor","scopeName":"text.html.cshtml","path":"./syntaxes/cshtml.tmLanguage.json","embeddedLanguages":{"section.embedded.source.cshtml":"csharp","source.css":"css","source.js":"javascript"}}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.razor","identifier":{"value":"vscode.razor","_lower":"vscode.razor"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/razor","path":"/snap/code/26/usr/share/code/resources/app/extensions/razor","scheme":"file"}},{"name":"ruby","displayName":"Ruby Language Basics","description":"Provides syntax highlighting and bracket matching in Ruby files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js textmate/ruby.tmbundle Syntaxes/Ruby.plist ./syntaxes/ruby.tmLanguage.json"},"contributes":{"languages":[{"id":"ruby","extensions":[".rb",".rbx",".rjs",".gemspec",".rake",".ru",".erb",".podspec",".rbi"],"filenames":["rakefile","gemfile","guardfile","podfile","capfile"],"aliases":["Ruby","rb"],"firstLine":"^#!\\s*/.*\\bruby\\b","configuration":"./language-configuration.json"}],"grammars":[{"language":"ruby","scopeName":"source.ruby","path":"./syntaxes/ruby.tmLanguage.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.ruby","identifier":{"value":"vscode.ruby","_lower":"vscode.ruby"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/ruby","path":"/snap/code/26/usr/share/code/resources/app/extensions/ruby","scheme":"file"}},{"name":"rust","displayName":"Rust Language Basics","description":"Provides syntax highlighting and bracket matching in Rust files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js zargony/atom-language-rust grammars/rust.cson ./syntaxes/rust.tmLanguage.json"},"contributes":{"languages":[{"id":"rust","extensions":[".rs"],"aliases":["Rust","rust"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"rust","path":"./syntaxes/rust.tmLanguage.json","scopeName":"source.rust"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.rust","identifier":{"value":"vscode.rust","_lower":"vscode.rust"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/rust","path":"/snap/code/26/usr/share/code/resources/app/extensions/rust","scheme":"file"}},{"name":"scss","displayName":"SCSS Language Basics","description":"Provides syntax highlighting, bracket matching and folding in SCSS files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js atom/language-sass grammars/scss.cson ./syntaxes/scss.tmLanguage.json grammars/sassdoc.cson ./syntaxes/sassdoc.tmLanguage.json"},"contributes":{"languages":[{"id":"scss","aliases":["SCSS","scss"],"extensions":[".scss"],"mimetypes":["text/x-scss","text/scss"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"scss","scopeName":"source.css.scss","path":"./syntaxes/scss.tmLanguage.json"},{"scopeName":"source.sassdoc","path":"./syntaxes/sassdoc.tmLanguage.json"}],"problemMatchers":[{"name":"node-sass","label":"Node Sass Compiler","owner":"node-sass","fileLocation":"absolute","pattern":[{"regexp":"^{$"},{"regexp":"\\s*\"status\":\\s\\d+,"},{"regexp":"\\s*\"file\":\\s\"(.*)\",","file":1},{"regexp":"\\s*\"line\":\\s(\\d+),","line":1},{"regexp":"\\s*\"column\":\\s(\\d+),","column":1},{"regexp":"\\s*\"message\":\\s\"(.*)\",","message":1},{"regexp":"\\s*\"formatted\":\\s(.*)"},{"regexp":"^}$"}]}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.scss","identifier":{"value":"vscode.scss","_lower":"vscode.scss"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/scss","path":"/snap/code/26/usr/share/code/resources/app/extensions/scss","scheme":"file"}},{"name":"search-result","displayName":"Search Result","description":"Provides syntax highlighting and language features for tabbed search results.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"^1.39.0"},"categories":["Programming Languages"],"main":"./dist/extension.js","activationEvents":["*"],"scripts":{"generate-grammar":"node ./syntaxes/generateTMLanguage.js","vscode:prepublish":"node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.js compile-extension:search-result ./tsconfig.json"},"contributes":{"configurationDefaults":{"[search-result]":{"editor.lineNumbers":"off"}},"languages":[{"id":"search-result","extensions":[".code-search"],"aliases":["Search Result"]}],"grammars":[{"language":"search-result","scopeName":"text.searchResult","path":"./syntaxes/searchResult.tmLanguage.json"}]},"devDependencies":{"vscode":"^1.1.36"},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.search-result","identifier":{"value":"vscode.search-result","_lower":"vscode.search-result"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/search-result","path":"/snap/code/26/usr/share/code/resources/app/extensions/search-result","scheme":"file"}},{"name":"shaderlab","displayName":"Shaderlab Language Basics","description":"Provides syntax highlighting and bracket matching in Shaderlab files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js tgjones/shaders-tmLanguage grammars/shaderlab.json ./syntaxes/shaderlab.tmLanguage.json"},"contributes":{"languages":[{"id":"shaderlab","extensions":[".shader"],"aliases":["ShaderLab","shaderlab"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"shaderlab","path":"./syntaxes/shaderlab.tmLanguage.json","scopeName":"source.shaderlab"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.shaderlab","identifier":{"value":"vscode.shaderlab","_lower":"vscode.shaderlab"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/shaderlab","path":"/snap/code/26/usr/share/code/resources/app/extensions/shaderlab","scheme":"file"}},{"name":"shellscript","displayName":"Shell Script Language Basics","description":"Provides syntax highlighting and bracket matching in Shell Script files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js atom/language-shellscript grammars/shell-unix-bash.cson ./syntaxes/shell-unix-bash.tmLanguage.json"},"contributes":{"languages":[{"id":"shellscript","aliases":["Shell Script","shellscript","bash","sh","zsh","ksh","csh"],"extensions":[".sh",".bash",".bashrc",".bash_aliases",".bash_profile",".bash_login",".ebuild",".install",".profile",".bash_logout",".zsh",".zshrc",".zprofile",".zlogin",".zlogout",".zshenv",".zsh-theme",".ksh",".csh",".cshrc"],"filenames":["APKBUILD","PKGBUILD",".envrc"],"firstLine":"^#!.*\\b(bash|zsh|sh|tcsh|ksh|ash|qsh|csh).*|^#\\s*-\\*-[^*]*mode:\\s*shell-script[^*]*-\\*-","configuration":"./language-configuration.json","mimetypes":["text/x-shellscript"]}],"grammars":[{"language":"shellscript","scopeName":"source.shell","path":"./syntaxes/shell-unix-bash.tmLanguage.json"}],"configurationDefaults":{"[shellscript]":{"files.eol":"\n"}}},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.shellscript","identifier":{"value":"vscode.shellscript","_lower":"vscode.shellscript"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/shellscript","path":"/snap/code/26/usr/share/code/resources/app/extensions/shellscript","scheme":"file"}},{"name":"sql","displayName":"SQL Language Basics","description":"Provides syntax highlighting and bracket matching in SQL files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js Microsoft/vscode-mssql syntaxes/SQL.plist ./syntaxes/sql.tmLanguage.json"},"contributes":{"languages":[{"id":"sql","extensions":[".sql",".dsql"],"aliases":["SQL"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"sql","scopeName":"source.sql","path":"./syntaxes/sql.tmLanguage.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.sql","identifier":{"value":"vscode.sql","_lower":"vscode.sql"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/sql","path":"/snap/code/26/usr/share/code/resources/app/extensions/sql","scheme":"file"}},{"name":"swift","displayName":"Swift Language Basics","description":"Provides snippets, syntax highlighting and bracket matching in Swift files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js textmate/swift.tmbundle Syntaxes/Swift.tmLanguage ./syntaxes/swift.tmLanguage.json"},"contributes":{"languages":[{"id":"swift","aliases":["Swift","swift"],"extensions":[".swift"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"swift","scopeName":"source.swift","path":"./syntaxes/swift.tmLanguage.json"}],"snippets":[{"language":"swift","path":"./snippets/swift.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.swift","identifier":{"value":"vscode.swift","_lower":"vscode.swift"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/swift","path":"/snap/code/26/usr/share/code/resources/app/extensions/swift","scheme":"file"}},{"name":"theme-abyss","displayName":"Abyss Theme","description":"Abyss theme for Visual Studio Code","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"contributes":{"themes":[{"label":"Abyss","uiTheme":"vs-dark","path":"./themes/abyss-color-theme.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.theme-abyss","identifier":{"value":"vscode.theme-abyss","_lower":"vscode.theme-abyss"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/theme-abyss","path":"/snap/code/26/usr/share/code/resources/app/extensions/theme-abyss","scheme":"file"}},{"name":"theme-defaults","displayName":"Default Themes","description":"The default Visual Studio light and dark themes","categories":["Themes"],"version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"contributes":{"themes":[{"id":"Default Dark+","label":"Dark+ (default dark)","uiTheme":"vs-dark","path":"./themes/dark_plus.json"},{"id":"Default Light+","label":"Light+ (default light)","uiTheme":"vs","path":"./themes/light_plus.json"},{"id":"Visual Studio Dark","label":"Dark (Visual Studio)","uiTheme":"vs-dark","path":"./themes/dark_vs.json"},{"id":"Visual Studio Light","label":"Light (Visual Studio)","uiTheme":"vs","path":"./themes/light_vs.json"},{"id":"Default High Contrast","label":"High Contrast","uiTheme":"hc-black","path":"./themes/hc_black.json"}],"iconThemes":[{"id":"vs-minimal","label":"Minimal (Visual Studio Code)","path":"./fileicons/vs_minimal-icon-theme.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.theme-defaults","identifier":{"value":"vscode.theme-defaults","_lower":"vscode.theme-defaults"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/theme-defaults","path":"/snap/code/26/usr/share/code/resources/app/extensions/theme-defaults","scheme":"file"}},{"name":"theme-kimbie-dark","displayName":"Kimbie Dark Theme","description":"Kimbie dark theme for Visual Studio Code","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"contributes":{"themes":[{"label":"Kimbie Dark","uiTheme":"vs-dark","path":"./themes/kimbie-dark-color-theme.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.theme-kimbie-dark","identifier":{"value":"vscode.theme-kimbie-dark","_lower":"vscode.theme-kimbie-dark"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/theme-kimbie-dark","path":"/snap/code/26/usr/share/code/resources/app/extensions/theme-kimbie-dark","scheme":"file"}},{"name":"theme-monokai","displayName":"Monokai Theme","description":"Monokai theme for Visual Studio Code","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"contributes":{"themes":[{"label":"Monokai","uiTheme":"vs-dark","path":"./themes/monokai-color-theme.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.theme-monokai","identifier":{"value":"vscode.theme-monokai","_lower":"vscode.theme-monokai"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/theme-monokai","path":"/snap/code/26/usr/share/code/resources/app/extensions/theme-monokai","scheme":"file"}},{"name":"theme-monokai-dimmed","displayName":"Monokai Dimmed Theme","description":"Monokai dimmed theme for Visual Studio Code","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"contributes":{"themes":[{"label":"Monokai Dimmed","uiTheme":"vs-dark","path":"./themes/dimmed-monokai-color-theme.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.theme-monokai-dimmed","identifier":{"value":"vscode.theme-monokai-dimmed","_lower":"vscode.theme-monokai-dimmed"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/theme-monokai-dimmed","path":"/snap/code/26/usr/share/code/resources/app/extensions/theme-monokai-dimmed","scheme":"file"}},{"name":"theme-quietlight","displayName":"Quiet Light Theme","description":"Quiet light theme for Visual Studio Code","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"contributes":{"themes":[{"label":"Quiet Light","uiTheme":"vs","path":"./themes/quietlight-color-theme.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.theme-quietlight","identifier":{"value":"vscode.theme-quietlight","_lower":"vscode.theme-quietlight"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/theme-quietlight","path":"/snap/code/26/usr/share/code/resources/app/extensions/theme-quietlight","scheme":"file"}},{"name":"theme-red","displayName":"Red Theme","description":"Red theme for Visual Studio Code","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"contributes":{"themes":[{"label":"Red","uiTheme":"vs-dark","path":"./themes/Red-color-theme.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.theme-red","identifier":{"value":"vscode.theme-red","_lower":"vscode.theme-red"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/theme-red","path":"/snap/code/26/usr/share/code/resources/app/extensions/theme-red","scheme":"file"}},{"name":"vscode-theme-seti","private":true,"version":"1.0.0","displayName":"Seti File Icon Theme","description":"A file icon theme made out of the Seti UI file icons","publisher":"vscode","license":"MIT","icon":"icons/seti-circular-128x128.png","scripts":{"update":"node ./build/update-icon-theme.js"},"engines":{"vscode":"*"},"contributes":{"iconThemes":[{"id":"vs-seti","label":"Seti (Visual Studio Code)","path":"./icons/vs-seti-icon-theme.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.vscode-theme-seti","identifier":{"value":"vscode.vscode-theme-seti","_lower":"vscode.vscode-theme-seti"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/theme-seti","path":"/snap/code/26/usr/share/code/resources/app/extensions/theme-seti","scheme":"file"}},{"name":"theme-solarized-dark","displayName":"Solarized Dark Theme","description":"Solarized dark theme for Visual Studio Code","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"contributes":{"themes":[{"label":"Solarized Dark","uiTheme":"vs-dark","path":"./themes/solarized-dark-color-theme.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.theme-solarized-dark","identifier":{"value":"vscode.theme-solarized-dark","_lower":"vscode.theme-solarized-dark"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/theme-solarized-dark","path":"/snap/code/26/usr/share/code/resources/app/extensions/theme-solarized-dark","scheme":"file"}},{"name":"theme-solarized-light","displayName":"Solarized Light Theme","description":"Solarized light theme for Visual Studio Code","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"contributes":{"themes":[{"label":"Solarized Light","uiTheme":"vs","path":"./themes/solarized-light-color-theme.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.theme-solarized-light","identifier":{"value":"vscode.theme-solarized-light","_lower":"vscode.theme-solarized-light"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/theme-solarized-light","path":"/snap/code/26/usr/share/code/resources/app/extensions/theme-solarized-light","scheme":"file"}},{"name":"theme-tomorrow-night-blue","displayName":"Tomorrow Night Blue Theme","description":"Tomorrow night blue theme for Visual Studio Code","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"contributes":{"themes":[{"label":"Tomorrow Night Blue","uiTheme":"vs-dark","path":"./themes/tomorrow-night-blue-theme.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.theme-tomorrow-night-blue","identifier":{"value":"vscode.theme-tomorrow-night-blue","_lower":"vscode.theme-tomorrow-night-blue"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/theme-tomorrow-night-blue","path":"/snap/code/26/usr/share/code/resources/app/extensions/theme-tomorrow-night-blue","scheme":"file"}},{"name":"typescript","description":"Provides snippets, syntax highlighting, bracket matching and folding in TypeScript files.","displayName":"TypeScript Language Basics","version":"1.0.0","author":"vscode","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ./build/update-grammars.js"},"contributes":{"languages":[{"id":"typescript","aliases":["TypeScript","ts","typescript"],"extensions":[".ts"],"configuration":"./language-configuration.json"},{"id":"typescriptreact","aliases":["TypeScript React","tsx"],"extensions":[".tsx"],"configuration":"./language-configuration.json"},{"id":"jsonc","filenames":["tsconfig.json","jsconfig.json"],"filenamePatterns":["tsconfig.*.json","tsconfig-*.json"]}],"grammars":[{"language":"typescript","scopeName":"source.ts","path":"./syntaxes/TypeScript.tmLanguage.json","tokenTypes":{"entity.name.type.instance.jsdoc":"other","entity.name.function.tagged-template":"other","meta.import string.quoted":"other","variable.other.jsdoc":"other"}},{"language":"typescriptreact","scopeName":"source.tsx","path":"./syntaxes/TypeScriptReact.tmLanguage.json","embeddedLanguages":{"meta.tag.tsx":"jsx-tags","meta.tag.without-attributes.tsx":"jsx-tags","meta.tag.attributes.tsx":"typescriptreact","meta.embedded.expression.tsx":"typescriptreact"},"tokenTypes":{"entity.name.type.instance.jsdoc":"other","entity.name.function.tagged-template":"other","meta.import string.quoted":"other","variable.other.jsdoc":"other"}}],"snippets":[{"language":"typescript","path":"./snippets/typescript.json"},{"language":"typescriptreact","path":"./snippets/typescript.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.typescript","identifier":{"value":"vscode.typescript","_lower":"vscode.typescript"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/typescript-basics","path":"/snap/code/26/usr/share/code/resources/app/extensions/typescript-basics","scheme":"file"}},{"name":"typescript-language-features","description":"Provides rich language support for JavaScript and TypeScript.","displayName":"TypeScript and JavaScript Language Features","version":"1.0.0","icon":"icon.png","author":"vscode","publisher":"vscode","license":"MIT","aiKey":"AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217","enableProposedApi":true,"engines":{"vscode":"^1.30.0"},"categories":["Programming Languages"],"dependencies":{"jsonc-parser":"^2.2.1","rimraf":"^2.6.3","semver":"5.5.1","typescript-vscode-sh-plugin":"^0.6.8","vscode-extension-telemetry":"0.1.1","vscode-nls":"^4.1.1"},"devDependencies":{"@types/node":"^12.11.7","@types/rimraf":"2.0.2","@types/semver":"^5.5.0","vscode":"^1.1.36"},"scripts":{"vscode:prepublish":"node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.js compile-extension:typescript ./tsconfig.json"},"activationEvents":["onLanguage:javascript","onLanguage:javascriptreact","onLanguage:typescript","onLanguage:typescriptreact","onLanguage:jsx-tags","onCommand:typescript.reloadProjects","onCommand:javascript.reloadProjects","onCommand:typescript.selectTypeScriptVersion","onCommand:javascript.goToProjectConfig","onCommand:typescript.goToProjectConfig","onCommand:typescript.openTsServerLog","onCommand:workbench.action.tasks.runTask","onCommand:_typescript.configurePlugin","onCommand:_typescript.learnMoreAboutRefactorings","onLanguage:jsonc"],"main":"./dist/extension","contributes":{"jsonValidation":[{"fileMatch":"package.json","url":"./schemas/package.schema.json"},{"fileMatch":"tsconfig.json","url":"https://schemastore.azurewebsites.net/schemas/json/tsconfig.json"},{"fileMatch":"tsconfig.json","url":"./schemas/tsconfig.schema.json"},{"fileMatch":"tsconfig.*.json","url":"https://schemastore.azurewebsites.net/schemas/json/tsconfig.json"},{"fileMatch":"tsconfig-*.json","url":"./schemas/tsconfig.schema.json"},{"fileMatch":"tsconfig-*.json","url":"https://schemastore.azurewebsites.net/schemas/json/tsconfig.json"},{"fileMatch":"tsconfig.*.json","url":"./schemas/tsconfig.schema.json"},{"fileMatch":"typings.json","url":"https://schemastore.azurewebsites.net/schemas/json/typings.json"},{"fileMatch":".bowerrc","url":"https://schemastore.azurewebsites.net/schemas/json/bowerrc.json"},{"fileMatch":".babelrc","url":"https://schemastore.azurewebsites.net/schemas/json/babelrc.json"},{"fileMatch":".babelrc.json","url":"https://schemastore.azurewebsites.net/schemas/json/babelrc.json"},{"fileMatch":"babel.config.json","url":"https://schemastore.azurewebsites.net/schemas/json/babelrc.json"},{"fileMatch":"jsconfig.json","url":"https://schemastore.azurewebsites.net/schemas/json/jsconfig.json"},{"fileMatch":"jsconfig.json","url":"./schemas/jsconfig.schema.json"},{"fileMatch":"jsconfig.*.json","url":"https://schemastore.azurewebsites.net/schemas/json/jsconfig.json"},{"fileMatch":"jsconfig.*.json","url":"./schemas/jsconfig.schema.json"}],"configuration":{"type":"object","title":"TypeScript","order":20,"properties":{"typescript.tsdk":{"type":["string","null"],"default":null,"markdownDescription":"Specifies the folder path to the tsserver and lib*.d.ts files under a TypeScript install to use for IntelliSense, for example: `./node_modules/typescript/lib`.\n\n- When specified as a user setting, the TypeScript version from `typescript.tsdk` automatically replaces the built-in TypeScript version.\n- When specified as a workspace setting, `typescript.tsdk` allows you to switch to use that workspace version of TypeScript for IntelliSense with the `TypeScript: Select TypeScript version` command.\n\nSee the [TypeScript documentation](https://code.visualstudio.com/docs/typescript/typescript-compiling#_using-newer-typescript-versions) for more detail about managing TypeScript versions.","scope":"window"},"typescript.disableAutomaticTypeAcquisition":{"type":"boolean","default":false,"description":"Disables automatic type acquisition. Automatic type acquisition fetches `@types` packages from npm to improve IntelliSense for external libraries.","scope":"window","tags":["usesOnlineServices"]},"typescript.npm":{"type":["string","null"],"default":null,"description":"Specifies the path to the npm executable used for Automatic Type Acquisition. Requires using TypeScript 2.3.4 or newer in the workspace.","scope":"machine"},"typescript.check.npmIsInstalled":{"type":"boolean","default":true,"description":"Check if npm is installed for Automatic Type Acquisition.","scope":"window"},"javascript.referencesCodeLens.enabled":{"type":"boolean","default":false,"description":"Enable/disable references CodeLens in JavaScript files.","scope":"window"},"javascript.referencesCodeLens.showOnAllFunctions":{"type":"boolean","default":false,"description":"Enable/disable references CodeLens on all functions in JavaScript files.","scope":"window"},"typescript.referencesCodeLens.enabled":{"type":"boolean","default":false,"description":"Enable/disable references CodeLens in TypeScript files.","scope":"window"},"typescript.referencesCodeLens.showOnAllFunctions":{"type":"boolean","default":false,"description":"Enable/disable references CodeLens on all functions in TypeScript files.","scope":"window"},"typescript.implementationsCodeLens.enabled":{"type":"boolean","default":false,"description":"Enable/disable implementations CodeLens. This CodeLens shows the implementers of an interface.","scope":"window"},"typescript.tsserver.log":{"type":"string","enum":["off","terse","normal","verbose"],"default":"off","description":"Enables logging of the TS server to a file. This log can be used to diagnose TS Server issues. The log may contain file paths, source code, and other potentially sensitive information from your project.","scope":"window"},"typescript.tsserver.pluginPaths":{"type":"array","items":{"type":"string","description":"Either an absolute or relative path. Relative path will be resolved against workspace folder(s)."},"default":[],"description":"Additional paths to discover TypeScript Language Service plugins. Requires using TypeScript 2.3.0 or newer in the workspace.","scope":"machine"},"typescript.tsserver.trace":{"type":"string","enum":["off","messages","verbose"],"default":"off","description":"Enables tracing of messages sent to the TS server. This trace can be used to diagnose TS Server issues. The trace may contain file paths, source code, and other potentially sensitive information from your project.","scope":"window"},"javascript.suggest.completeFunctionCalls":{"type":"boolean","default":false,"description":"Complete functions with their parameter signature.","scope":"resource"},"typescript.suggest.completeFunctionCalls":{"type":"boolean","default":false,"description":"Complete functions with their parameter signature.","scope":"resource"},"javascript.suggest.includeAutomaticOptionalChainCompletions":{"type":"boolean","default":true,"description":"Enable/disable showing completions on potentially undefined values that insert an optional chain call. Requires TS 3.7+ and strict null checks to be enabled.","scope":"resource"},"typescript.suggest.includeAutomaticOptionalChainCompletions":{"type":"boolean","default":true,"description":"Enable/disable showing completions on potentially undefined values that insert an optional chain call. Requires TS 3.7+ and strict null checks to be enabled.","scope":"resource"},"typescript.reportStyleChecksAsWarnings":{"type":"boolean","default":true,"description":"Report style checks as warnings.","scope":"window"},"typescript.validate.enable":{"type":"boolean","default":true,"description":"Enable/disable TypeScript validation.","scope":"window"},"typescript.format.enable":{"type":"boolean","default":true,"description":"Enable/disable default TypeScript formatter.","scope":"window"},"typescript.format.insertSpaceAfterCommaDelimiter":{"type":"boolean","default":true,"description":"Defines space handling after a comma delimiter.","scope":"resource"},"typescript.format.insertSpaceAfterConstructor":{"type":"boolean","default":false,"description":"Defines space handling after the constructor keyword. Requires using TypeScript 2.3.0 or newer in the workspace.","scope":"resource"},"typescript.format.insertSpaceAfterSemicolonInForStatements":{"type":"boolean","default":true,"description":"Defines space handling after a semicolon in a for statement.","scope":"resource"},"typescript.format.insertSpaceBeforeAndAfterBinaryOperators":{"type":"boolean","default":true,"description":"Defines space handling after a binary operator.","scope":"resource"},"typescript.format.insertSpaceAfterKeywordsInControlFlowStatements":{"type":"boolean","default":true,"description":"Defines space handling after keywords in a control flow statement.","scope":"resource"},"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions":{"type":"boolean","default":true,"description":"Defines space handling after function keyword for anonymous functions.","scope":"resource"},"typescript.format.insertSpaceBeforeFunctionParenthesis":{"type":"boolean","default":false,"description":"Defines space handling before function argument parentheses.","scope":"resource"},"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis":{"type":"boolean","default":false,"description":"Defines space handling after opening and before closing non-empty parenthesis.","scope":"resource"},"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets":{"type":"boolean","default":false,"description":"Defines space handling after opening and before closing non-empty brackets.","scope":"resource"},"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces":{"type":"boolean","default":true,"description":"Defines space handling after opening and before closing non-empty braces. Requires using TypeScript 2.3.0 or newer in the workspace.","scope":"resource"},"typescript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces":{"type":"boolean","default":false,"description":"Defines space handling after opening and before closing template string braces.","scope":"resource"},"typescript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces":{"type":"boolean","default":false,"description":"Defines space handling after opening and before closing JSX expression braces.","scope":"resource"},"typescript.format.insertSpaceAfterTypeAssertion":{"type":"boolean","default":false,"description":"Defines space handling after type assertions in TypeScript. Requires using TypeScript 2.4 or newer in the workspace.","scope":"resource"},"typescript.format.placeOpenBraceOnNewLineForFunctions":{"type":"boolean","default":false,"description":"Defines whether an open brace is put onto a new line for functions or not.","scope":"resource"},"typescript.format.placeOpenBraceOnNewLineForControlBlocks":{"type":"boolean","default":false,"description":"Defines whether an open brace is put onto a new line for control blocks or not.","scope":"resource"},"typescript.format.semicolons":{"type":"string","default":"ignore","description":"Defines handling of optional semicolons. Requires using TypeScript 3.7 or newer in the workspace.","scope":"resource","enum":["ignore","insert","remove"],"enumDescriptions":["Don't insert or remove any semicolons.","Insert semicolons at statement ends.","Remove unnecessary semicolons."]},"javascript.validate.enable":{"type":"boolean","default":true,"description":"Enable/disable JavaScript validation.","scope":"window"},"javascript.format.enable":{"type":"boolean","default":true,"description":"Enable/disable default JavaScript formatter.","scope":"window"},"javascript.format.insertSpaceAfterCommaDelimiter":{"type":"boolean","default":true,"description":"Defines space handling after a comma delimiter.","scope":"resource"},"javascript.format.insertSpaceAfterConstructor":{"type":"boolean","default":false,"description":"Defines space handling after the constructor keyword. Requires using TypeScript 2.3.0 or newer in the workspace.","scope":"resource"},"javascript.format.insertSpaceAfterSemicolonInForStatements":{"type":"boolean","default":true,"description":"Defines space handling after a semicolon in a for statement.","scope":"resource"},"javascript.format.insertSpaceBeforeAndAfterBinaryOperators":{"type":"boolean","default":true,"description":"Defines space handling after a binary operator.","scope":"resource"},"javascript.format.insertSpaceAfterKeywordsInControlFlowStatements":{"type":"boolean","default":true,"description":"Defines space handling after keywords in a control flow statement.","scope":"resource"},"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions":{"type":"boolean","default":true,"description":"Defines space handling after function keyword for anonymous functions.","scope":"resource"},"javascript.format.insertSpaceBeforeFunctionParenthesis":{"type":"boolean","default":false,"description":"Defines space handling before function argument parentheses.","scope":"resource"},"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis":{"type":"boolean","default":false,"description":"Defines space handling after opening and before closing non-empty parenthesis.","scope":"resource"},"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets":{"type":"boolean","default":false,"description":"Defines space handling after opening and before closing non-empty brackets.","scope":"resource"},"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces":{"type":"boolean","default":true,"description":"Defines space handling after opening and before closing non-empty braces. Requires using TypeScript 2.3.0 or newer in the workspace.","scope":"resource"},"javascript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces":{"type":"boolean","default":false,"description":"Defines space handling after opening and before closing template string braces.","scope":"resource"},"javascript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces":{"type":"boolean","default":false,"description":"Defines space handling after opening and before closing JSX expression braces.","scope":"resource"},"javascript.format.placeOpenBraceOnNewLineForFunctions":{"type":"boolean","default":false,"description":"Defines whether an open brace is put onto a new line for functions or not.","scope":"resource"},"javascript.format.placeOpenBraceOnNewLineForControlBlocks":{"type":"boolean","default":false,"description":"Defines whether an open brace is put onto a new line for control blocks or not.","scope":"resource"},"javascript.format.semicolons":{"type":"string","default":"ignore","description":"Defines handling of optional semicolons. Requires using TypeScript 3.7 or newer in the workspace.","scope":"resource","enum":["ignore","insert","remove"],"enumDescriptions":["Don't insert or remove any semicolons.","Insert semicolons at statement ends.","Remove unnecessary semicolons."]},"javascript.implicitProjectConfig.checkJs":{"type":"boolean","default":false,"description":"Enable/disable semantic checking of JavaScript files. Existing jsconfig.json or tsconfig.json files override this setting. Requires using TypeScript 2.3.1 or newer in the workspace.","scope":"window"},"javascript.implicitProjectConfig.experimentalDecorators":{"type":"boolean","default":false,"markdownDescription":"Enable/disable `experimentalDecorators` for JavaScript files that are not part of a project. Existing jsconfig.json or tsconfig.json files override this setting. Requires using TypeScript 2.3.1 or newer in the workspace.","scope":"window"},"javascript.suggest.names":{"type":"boolean","default":true,"markdownDescription":"Enable/disable including unique names from the file in JavaScript suggestions. Note that name suggestions are always disabled in JavaScript code that is semantically checked using `@ts-check` or `checkJs`.","scope":"resource"},"typescript.tsc.autoDetect":{"type":"string","default":"on","enum":["on","off","build","watch"],"markdownEnumDescriptions":["Create both build and watch tasks.","Disable this feature.","Only create single run compile tasks.","Only create compile and watch tasks."],"description":"Controls auto detection of tsc tasks.","scope":"window"},"javascript.suggest.paths":{"type":"boolean","default":true,"description":"Enable/disable suggestions for paths in import statements and require calls.","scope":"resource"},"typescript.suggest.paths":{"type":"boolean","default":true,"description":"Enable/disable suggestions for paths in import statements and require calls.","scope":"resource"},"javascript.suggest.autoImports":{"type":"boolean","default":true,"description":"Enable/disable auto import suggestions. Requires using TypeScript 2.6.1 or newer in the workspace.","scope":"resource"},"typescript.suggest.autoImports":{"type":"boolean","default":true,"description":"Enable/disable auto import suggestions. Requires using TypeScript 2.6.1 or newer in the workspace.","scope":"resource"},"javascript.suggest.completeJSDocs":{"type":"boolean","default":true,"description":"Enable/disable suggestion to complete JSDoc comments.","scope":"resource"},"typescript.suggest.completeJSDocs":{"type":"boolean","default":true,"description":"Enable/disable suggestion to complete JSDoc comments.","scope":"resource"},"typescript.locale":{"type":["string","null"],"enum":["de","es","en","fr","it","ja","ko","ru","zh-CN","zh-TW",null],"default":null,"markdownDescription":"Sets the locale used to report JavaScript and TypeScript errors. Requires using TypeScript 2.6.0 or newer in the workspace. Default of `null` uses VS Code's locale.","scope":"window"},"javascript.suggestionActions.enabled":{"type":"boolean","default":true,"description":"Enable/disable suggestion diagnostics for JavaScript files in the editor. Requires using TypeScript 2.8 or newer in the workspace.","scope":"resource"},"typescript.suggestionActions.enabled":{"type":"boolean","default":true,"description":"Enable/disable suggestion diagnostics for TypeScript files in the editor. Requires using TypeScript 2.8 or newer in the workspace.","scope":"resource"},"javascript.preferences.quoteStyle":{"type":"string","enum":["auto","single","double"],"default":"auto","markdownDescription":"Preferred quote style to use for quick fixes: `single` quotes, `double` quotes, or `auto` infer quote type from existing imports. Requires using TypeScript 2.9 or newer in the workspace.","scope":"resource"},"typescript.preferences.quoteStyle":{"type":"string","enum":["auto","single","double"],"default":"auto","markdownDescription":"Preferred quote style to use for quick fixes: `single` quotes, `double` quotes, or `auto` infer quote type from existing imports. Requires using TypeScript 2.9 or newer in the workspace.","scope":"resource"},"javascript.preferences.importModuleSpecifier":{"type":"string","enum":["auto","relative","non-relative"],"markdownEnumDescriptions":["Automatically select import path style. Prefers using a relative import if `baseUrl` is configured and the relative path has fewer segments than the non-relative import.","Relative to the file location.","Based on the `baseUrl` configured in your `jsconfig.json` / `tsconfig.json`."],"default":"auto","description":"Preferred path style for auto imports.","scope":"resource"},"typescript.preferences.importModuleSpecifier":{"type":"string","enum":["auto","relative","non-relative"],"markdownEnumDescriptions":["Automatically select import path style. Prefers using a relative import if `baseUrl` is configured and the relative path has fewer segments than the non-relative import.","Relative to the file location.","Based on the `baseUrl` configured in your `jsconfig.json` / `tsconfig.json`."],"default":"auto","description":"Preferred path style for auto imports.","scope":"resource"},"javascript.preferences.renameShorthandProperties":{"type":"boolean","default":true,"description":"Enable/disable introducing aliases for object shorthand properties during renames. Requires using TypeScript 3.4 or newer in the workspace.","scope":"resource"},"typescript.preferences.renameShorthandProperties":{"type":"boolean","default":true,"description":"Enable/disable introducing aliases for object shorthand properties during renames. Requires using TypeScript 3.4 or newer in the workspace.","scope":"resource"},"typescript.updateImportsOnFileMove.enabled":{"type":"string","enum":["prompt","always","never"],"markdownEnumDescriptions":["Prompt on each rename.","Always update paths automatically.","Never rename paths and don't prompt."],"default":"prompt","description":"Enable/disable automatic updating of import paths when you rename or move a file in VS Code. Requires using TypeScript 2.9 or newer in the workspace.","scope":"resource"},"javascript.updateImportsOnFileMove.enabled":{"type":"string","enum":["prompt","always","never"],"markdownEnumDescriptions":["Prompt on each rename.","Always update paths automatically.","Never rename paths and don't prompt."],"default":"prompt","description":"Enable/disable automatic updating of import paths when you rename or move a file in VS Code. Requires using TypeScript 2.9 or newer in the workspace.","scope":"resource"},"typescript.autoClosingTags":{"type":"boolean","default":true,"description":"Enable/disable automatic closing of JSX tags. Requires using TypeScript 3.0 or newer in the workspace."},"javascript.autoClosingTags":{"type":"boolean","default":true,"description":"Enable/disable automatic closing of JSX tags. Requires using TypeScript 3.0 or newer in the workspace."},"javascript.suggest.enabled":{"type":"boolean","default":true,"description":"Enabled/disable autocomplete suggestions.","scope":"resource"},"typescript.suggest.enabled":{"type":"boolean","default":true,"description":"Enabled/disable autocomplete suggestions.","scope":"resource"},"typescript.surveys.enabled":{"type":"boolean","default":true,"description":"Enabled/disable occasional surveys that help us improve VS Code's JavaScript and TypeScript support.","scope":"window"},"typescript.tsserver.useSeparateSyntaxServer":{"type":"boolean","default":true,"description":"Enable/disable spawning a separate TypeScript server that can more quickly respond to syntax related operations, such as calculating folding or computing document symbols. Requires using TypeScript 3.4.0 or newer in the workspace.","scope":"window"},"typescript.tsserver.maxTsServerMemory":{"type":"number","default":3072,"description":"Set the maximum amount of memory (in MB) to allocate to the TypeScript server process","scope":"window"},"typescript.tsserver.experimental.enableProjectDiagnostics":{"type":"boolean","default":false,"description":"(Experimental) Enables project wide error reporting.","scope":"window"},"typescript.tsserver.watchOptions":{"type":"object","description":"Configure which watching strategies should be used to keep track of files and directories. Requires using TypeScript 3.8+ in the workspace.","scope":"window","properties":{"watchFile":{"type":"string","description":"Strategy for how individual files are watched.","enum":["fixedPollingInterval","priorityPollingInterval","dynamicPriorityPolling","useFsEvents","useFsEventsOnParentDirectory"],"enumDescriptions":["Check every file for changes several times a second at a fixed interval.","Check every file for changes several times a second, but use heuristics to check certain types of files less frequently than others.","Use a dynamic queue where less-frequently modified files will be checked less often.","Attempt to use the operating system/file system’s native events for file changes.","Attempt to use the operating system/file system’s native events to listen for changes on a file’s containing directories. This can use fewer file watchers, but might be less accurate."],"default":"useFsEvents"},"watchDirectory":{"type":"string","description":"Strategy for how entire directory trees are watched under systems that lack recursive file-watching functionality.","enum":["fixedPollingInterval","dynamicPriorityPolling","useFsEvents"],"enumDescriptions":["Check every directory for changes several times a second at a fixed interval.","Use a dynamic queue where less-frequently modified directories will be checked less often.","Attempt to use the operating system/file system’s native events for directory changes."],"default":"useFsEvents"},"fallbackPolling":{"type":"string","description":"When using file system events, this option specifies the polling strategy that gets used when the system runs out of native file watchers and/or doesn’t support native file watchers.","enum":["fixedPollingInterval","priorityPollingInterval","dynamicPriorityPolling"],"enumDescriptions":["configuration.tsserver.watchOptions.fallbackPolling.fixedPollingInterval","configuration.tsserver.watchOptions.fallbackPolling.priorityPollingInterval","configuration.tsserver.watchOptions.fallbackPolling.dynamicPriorityPolling"]},"synchronousWatchDirectory":{"type":"boolean","description":"Disable deferred watching on directories. Deferred watching is useful when lots of file changes might occur at once (e.g. a change in node_modules from running npm install), but you might want to disable it with this flag for some less-common setups."}}}}},"commands":[{"command":"typescript.reloadProjects","title":"Reload Project","category":"TypeScript"},{"command":"javascript.reloadProjects","title":"Reload Project","category":"JavaScript"},{"command":"typescript.selectTypeScriptVersion","title":"Select TypeScript Version...","category":"TypeScript"},{"command":"typescript.goToProjectConfig","title":"Go to Project Configuration","category":"TypeScript"},{"command":"javascript.goToProjectConfig","title":"Go to Project Configuration","category":"JavaScript"},{"command":"typescript.openTsServerLog","title":"Open TS Server log","category":"TypeScript"},{"command":"typescript.restartTsServer","title":"Restart TS server","category":"TypeScript"}],"menus":{"commandPalette":[{"command":"typescript.reloadProjects","when":"editorLangId == typescript && typescript.isManagedFile"},{"command":"typescript.reloadProjects","when":"editorLangId == typescriptreact && typescript.isManagedFile"},{"command":"javascript.reloadProjects","when":"editorLangId == javascript && typescript.isManagedFile"},{"command":"javascript.reloadProjects","when":"editorLangId == javascriptreact && typescript.isManagedFile"},{"command":"typescript.goToProjectConfig","when":"editorLangId == typescript && typescript.isManagedFile"},{"command":"typescript.goToProjectConfig","when":"editorLangId == typescriptreact"},{"command":"javascript.goToProjectConfig","when":"editorLangId == javascript && typescript.isManagedFile"},{"command":"javascript.goToProjectConfig","when":"editorLangId == javascriptreact && typescript.isManagedFile"},{"command":"typescript.selectTypeScriptVersion","when":"typescript.isManagedFile"},{"command":"typescript.openTsServerLog","when":"typescript.isManagedFile"},{"command":"typescript.restartTsServer","when":"typescript.isManagedFile"}]},"breakpoints":[{"language":"typescript"},{"language":"typescriptreact"}],"taskDefinitions":[{"type":"typescript","required":["tsconfig"],"properties":{"tsconfig":{"type":"string","description":"The tsconfig file that defines the TS build."},"option":{"type":"string"}}}],"problemPatterns":[{"name":"tsc","regexp":"^([^\\s].*)[\\(:](\\d+)[,:](\\d+)(?:\\):\\s+|\\s+-\\s+)(error|warning|info)\\s+TS(\\d+)\\s*:\\s*(.*)$","file":1,"line":2,"column":3,"severity":4,"code":5,"message":6}],"problemMatchers":[{"name":"tsc","label":"TypeScript problems","owner":"typescript","source":"ts","applyTo":"closedDocuments","fileLocation":["relative","${cwd}"],"pattern":"$tsc"},{"name":"tsc-watch","label":"TypeScript problems (watch mode)","owner":"typescript","source":"ts","applyTo":"closedDocuments","fileLocation":["relative","${cwd}"],"pattern":"$tsc","background":{"activeOnStart":true,"beginsPattern":{"regexp":"^\\s*(?:message TS6032:|\\[?\\D*\\d{1,2}[:.]\\d{1,2}[:.]\\d{1,2}\\D*(?:\\]| -)) File change detected\\. Starting incremental compilation\\.\\.\\."},"endsPattern":{"regexp":"^\\s*(?:message TS6042:|\\[?\\D*\\d{1,2}[:.]\\d{1,2}[:.]\\d{1,2}\\D*(?:\\]| -)) (?:Compilation complete\\.|Found \\d+ errors?\\.) Watching for file changes\\."}}}],"codeActions":[{"languages":["javascript","javascriptreact","typescript","typescriptreact"],"actions":[{"kind":"refactor.extract.constant","title":"Extract constant","description":"Extract expression to constant."},{"kind":"refactor.extract.function","title":"Extract function","description":"Extract expression to method or function."},{"kind":"refactor.extract.interface","title":"Extract interface","description":"Extract type to an interface."},{"kind":"refactor.extract.type","title":"Extract type","description":"Extract type to a type alias."},{"kind":"refactor.rewrite.import","title":"Convert import","description":"Convert between named imports and namespace imports."},{"kind":"refactor.rewrite.export","title":"Convert export","description":"Convert between default export and named export."},{"kind":"refactor.rewrite.arrow.braces","title":"Rewrite arrow braces","description":"Add or remove braces in an arrow function."},{"kind":"refactor.rewrite.parameters.toDestructured","title":"Convert parameters to destructured object"},{"kind":"refactor.rewrite.property.generateAccessors","title":"Generate accessors","description":"Generate 'get' and 'set' accessors"},{"kind":"refactor.move.newFile","title":"Move to a new file","description":"Move the expression to a new file."},{"kind":"source.organizeImports","title":"Organize imports"}]}],"typescriptServerPlugins":[{"name":"typescript-vscode-sh-plugin","enableForWorkspaceTypeScriptVersions":true}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.typescript-language-features","identifier":{"value":"vscode.typescript-language-features","_lower":"vscode.typescript-language-features"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/typescript-language-features","path":"/snap/code/26/usr/share/code/resources/app/extensions/typescript-language-features","scheme":"file"}},{"name":"vb","displayName":"Visual Basic Language Basics","description":"Provides snippets, syntax highlighting, bracket matching and folding in Visual Basic files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"scripts":{"update-grammar":"node ../../build/npm/update-grammar.js textmate/asp.vb.net.tmbundle Syntaxes/ASP%20VB.net.plist ./syntaxes/asp-vb-net.tmlanguage.json"},"contributes":{"languages":[{"id":"vb","extensions":[".vb",".brs",".vbs",".bas"],"aliases":["Visual Basic","vb"],"configuration":"./language-configuration.json"}],"grammars":[{"language":"vb","scopeName":"source.asp.vb.net","path":"./syntaxes/asp-vb-net.tmlanguage.json"}],"snippets":[{"language":"vb","path":"./snippets/vb.json"}]},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.vb","identifier":{"value":"vscode.vb","_lower":"vscode.vb"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/vb","path":"/snap/code/26/usr/share/code/resources/app/extensions/vb","scheme":"file"}},{"name":"vscode-account","publisher":"vscode","displayName":"Microsoft Account","description":"Microsoft authentication provider","version":"0.0.1","engines":{"vscode":"^1.42.0"},"categories":["Other"],"enableProposedApi":true,"activationEvents":["*"],"main":"./dist/extension.js","contributes":{"commands":[{"command":"microsoft.signin","title":"Sign In","category":"Microsoft Account"},{"command":"microsoft.signout","title":"Sign Out","category":"Microsoft Account"}]},"scripts":{"vscode:prepublish":"npm run compile","compile":"gulp compile-extension:vscode-account","watch":"gulp watch-extension:vscode-account"},"devDependencies":{"typescript":"^3.7.4","tslint":"^5.12.1","@types/node":"^10.12.21","@types/keytar":"^4.0.1"},"dependencies":{"vscode-nls":"^4.1.1"},"isBuiltin":true,"isUnderDevelopment":false,"id":"vscode.vscode-account","identifier":{"value":"vscode.vscode-account","_lower":"vscode.vscode-account"},"extensionLocation":{"$mid":1,"fsPath":"/snap/code/26/usr/share/code/resources/app/extensions/vscode-account","path":"/snap/code/26/usr/share/code/resources/app/extensions/vscode-account","scheme":"file"}},{"name":"xml","displayName":"XML Language Basics","description":"Provides syntax highlighting and bracket matching in XML files.","version":"1.0.0","publisher":"vscode","license":"MIT","engines":{"vscode":"*"},"contributes":{"languages":[{"id":"xml","extensions":[".xml",".xsd",".ascx",".atom",".axml",".bpmn",".cpt",".csl",".csproj",".csproj.user",".dita",".ditamap",".dtd",".ent",".mod",".dtml",".fsproj",".fxml",".iml",".isml",".jmx",".launch",".menu",".mxml",".nuspec",".opml",".owl",".proj",".props",".pt",".publishsettings",".pubxml",".pubxml.user",".rbxlx",".rbxmx",".rdf",".rng",".rss",".shproj",".storyboard",".svg",".targets",".tld",".tmx",".vbproj",".vbproj.user",".vcxproj",".vcxproj.filters",".wsdl",".wxi",".wxl",".wxs",".xaml",".xbl",".xib",".xlf",".xliff",".xpdl",".xul",".xoml"],"firstLine":"(\\<\\?xml.*)|(\\