-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.pnp.cjs
12120 lines (12024 loc) · 661 KB
/
.pnp.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env node
/* eslint-disable */
// @ts-nocheck
"use strict";
const RAW_RUNTIME_STATE =
'{\
"__info": [\
"This file is automatically generated. Do not touch it, or risk",\
"your modifications being lost."\
],\
"dependencyTreeRoots": [\
{\
"name": "forever-websocket",\
"reference": "workspace:."\
}\
],\
"enableTopLevelFallback": true,\
"ignorePatternData": "(^(?:\\\\.yarn\\\\/sdks(?:\\\\/(?!\\\\.{1,2}(?:\\\\/|$))(?:(?:(?!(?:^|\\\\/)\\\\.{1,2}(?:\\\\/|$)).)*?)|$))$)",\
"fallbackExclusionList": [\
["forever-websocket", ["workspace:."]]\
],\
"fallbackPool": [\
],\
"packageRegistryData": [\
[null, [\
[null, {\
"packageLocation": "./",\
"packageDependencies": [\
["@babel/cli", "virtual:682b07edfe96e8b893a34dc3567c2f549a0a02e7785a1b549c97a8c0c4494290ddaca22cd43411555ec52ec8074c23d2ca9ad07a11e74bfc1e8cbae8a13dc54c#npm:7.24.8"],\
["@babel/core", "npm:7.24.9"],\
["@babel/preset-env", "virtual:682b07edfe96e8b893a34dc3567c2f549a0a02e7785a1b549c97a8c0c4494290ddaca22cd43411555ec52ec8074c23d2ca9ad07a11e74bfc1e8cbae8a13dc54c#npm:7.24.8"],\
["@babel/register", "virtual:682b07edfe96e8b893a34dc3567c2f549a0a02e7785a1b549c97a8c0c4494290ddaca22cd43411555ec52ec8074c23d2ca9ad07a11e74bfc1e8cbae8a13dc54c#npm:7.24.6"],\
["eventemitter3", "npm:5.0.1"],\
["isomorphic-ws", "virtual:682b07edfe96e8b893a34dc3567c2f549a0a02e7785a1b549c97a8c0c4494290ddaca22cd43411555ec52ec8074c23d2ca9ad07a11e74bfc1e8cbae8a13dc54c#npm:5.0.0"],\
["lodash", "npm:4.17.21"],\
["ws", "virtual:682b07edfe96e8b893a34dc3567c2f549a0a02e7785a1b549c97a8c0c4494290ddaca22cd43411555ec52ec8074c23d2ca9ad07a11e74bfc1e8cbae8a13dc54c#npm:8.18.0"]\
],\
"linkType": "SOFT"\
}]\
]],\
["@ampproject/remapping", [\
["npm:2.2.1", {\
"packageLocation": "./.yarn/cache/@ampproject-remapping-npm-2.2.1-3da3d624be-e15fecbf3b.zip/node_modules/@ampproject/remapping/",\
"packageDependencies": [\
["@ampproject/remapping", "npm:2.2.1"],\
["@jridgewell/gen-mapping", "npm:0.3.3"],\
["@jridgewell/trace-mapping", "npm:0.3.18"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/cli", [\
["npm:7.24.8", {\
"packageLocation": "./.yarn/cache/@babel-cli-npm-7.24.8-c016c7de12-f65f62ac91.zip/node_modules/@babel/cli/",\
"packageDependencies": [\
["@babel/cli", "npm:7.24.8"]\
],\
"linkType": "SOFT"\
}],\
["virtual:682b07edfe96e8b893a34dc3567c2f549a0a02e7785a1b549c97a8c0c4494290ddaca22cd43411555ec52ec8074c23d2ca9ad07a11e74bfc1e8cbae8a13dc54c#npm:7.24.8", {\
"packageLocation": "./.yarn/__virtual__/@babel-cli-virtual-ee12943263/0/cache/@babel-cli-npm-7.24.8-c016c7de12-f65f62ac91.zip/node_modules/@babel/cli/",\
"packageDependencies": [\
["@babel/cli", "virtual:682b07edfe96e8b893a34dc3567c2f549a0a02e7785a1b549c97a8c0c4494290ddaca22cd43411555ec52ec8074c23d2ca9ad07a11e74bfc1e8cbae8a13dc54c#npm:7.24.8"],\
["@babel/core", "npm:7.24.9"],\
["@jridgewell/trace-mapping", "npm:0.3.25"],\
["@nicolo-ribaudo/chokidar-2", "npm:2.1.8-no-fsevents.3"],\
["@types/babel__core", null],\
["chokidar", "npm:3.5.3"],\
["commander", "npm:6.2.1"],\
["convert-source-map", "npm:2.0.0"],\
["fs-readdir-recursive", "npm:1.1.0"],\
["glob", "npm:7.2.3"],\
["make-dir", "npm:2.1.0"],\
["slash", "npm:2.0.0"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/code-frame", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-code-frame-npm-7.24.7-315a600a58-4812e94885.zip/node_modules/@babel/code-frame/",\
"packageDependencies": [\
["@babel/code-frame", "npm:7.24.7"],\
["@babel/highlight", "npm:7.24.7"],\
["picocolors", "npm:1.0.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/compat-data", [\
["npm:7.22.9", {\
"packageLocation": "./.yarn/cache/@babel-compat-data-npm-7.22.9-f9e02d51b9-6797f59857.zip/node_modules/@babel/compat-data/",\
"packageDependencies": [\
["@babel/compat-data", "npm:7.22.9"]\
],\
"linkType": "HARD"\
}],\
["npm:7.24.9", {\
"packageLocation": "./.yarn/cache/@babel-compat-data-npm-7.24.9-819e0f036d-fcdbf3dd97.zip/node_modules/@babel/compat-data/",\
"packageDependencies": [\
["@babel/compat-data", "npm:7.24.9"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/core", [\
["npm:7.24.9", {\
"packageLocation": "./.yarn/cache/@babel-core-npm-7.24.9-9d33b31f15-f00a372fa5.zip/node_modules/@babel/core/",\
"packageDependencies": [\
["@babel/core", "npm:7.24.9"],\
["@ampproject/remapping", "npm:2.2.1"],\
["@babel/code-frame", "npm:7.24.7"],\
["@babel/generator", "npm:7.24.9"],\
["@babel/helper-compilation-targets", "npm:7.24.8"],\
["@babel/helper-module-transforms", "virtual:9d33b31f15d328d2ad31e6b50bf749ce87686c8539aa9d9187f4b5f7cd70a8e1bf36455d0f2e4df20291706027291e24a00c568a6b67d68e48c7b07c43b500c3#npm:7.24.9"],\
["@babel/helpers", "npm:7.24.8"],\
["@babel/parser", "npm:7.24.8"],\
["@babel/template", "npm:7.24.7"],\
["@babel/traverse", "npm:7.24.8"],\
["@babel/types", "npm:7.24.9"],\
["convert-source-map", "npm:2.0.0"],\
["debug", "virtual:66c78d088f2c1ec881d13d09b381292151a32ef4a0e25f70e17c9b0845f9e6c1192f2f33d1cb8645613e4e019b59aa0e95d89f06569bd6d4d48b91fd53fdc5fb#npm:4.3.4"],\
["gensync", "npm:1.0.0-beta.2"],\
["json5", "npm:2.2.3"],\
["semver", "npm:6.3.1"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/generator", [\
["npm:7.24.9", {\
"packageLocation": "./.yarn/cache/@babel-generator-npm-7.24.9-db1c3e6691-ef48aaa9e6.zip/node_modules/@babel/generator/",\
"packageDependencies": [\
["@babel/generator", "npm:7.24.9"],\
["@babel/types", "npm:7.24.9"],\
["@jridgewell/gen-mapping", "npm:0.3.5"],\
["@jridgewell/trace-mapping", "npm:0.3.25"],\
["jsesc", "npm:2.5.2"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-annotate-as-pure", [\
["npm:7.18.6", {\
"packageLocation": "./.yarn/cache/@babel-helper-annotate-as-pure-npm-7.18.6-36e25293d8-88ccd15ced.zip/node_modules/@babel/helper-annotate-as-pure/",\
"packageDependencies": [\
["@babel/helper-annotate-as-pure", "npm:7.18.6"],\
["@babel/types", "npm:7.21.4"]\
],\
"linkType": "HARD"\
}],\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-helper-annotate-as-pure-npm-7.24.7-537c5e8bf3-a9017bfc1c.zip/node_modules/@babel/helper-annotate-as-pure/",\
"packageDependencies": [\
["@babel/helper-annotate-as-pure", "npm:7.24.7"],\
["@babel/types", "npm:7.24.9"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-builder-binary-assignment-operator-visitor", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-helper-builder-binary-assignment-operator-visitor-npm-7.24.7-1653e5773a-3ddff45d1e.zip/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/",\
"packageDependencies": [\
["@babel/helper-builder-binary-assignment-operator-visitor", "npm:7.24.7"],\
["@babel/traverse", "npm:7.24.8"],\
["@babel/types", "npm:7.24.9"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-compilation-targets", [\
["npm:7.22.9", {\
"packageLocation": "./.yarn/cache/@babel-helper-compilation-targets-npm-7.22.9-b4473889ca-779510e4c2.zip/node_modules/@babel/helper-compilation-targets/",\
"packageDependencies": [\
["@babel/helper-compilation-targets", "npm:7.22.9"]\
],\
"linkType": "SOFT"\
}],\
["npm:7.24.8", {\
"packageLocation": "./.yarn/cache/@babel-helper-compilation-targets-npm-7.24.8-0c08fe5b00-3489280d07.zip/node_modules/@babel/helper-compilation-targets/",\
"packageDependencies": [\
["@babel/helper-compilation-targets", "npm:7.24.8"],\
["@babel/compat-data", "npm:7.24.9"],\
["@babel/helper-validator-option", "npm:7.24.8"],\
["browserslist", "npm:4.23.2"],\
["lru-cache", "npm:5.1.1"],\
["semver", "npm:6.3.1"]\
],\
"linkType": "HARD"\
}],\
["virtual:649b818332ad76f47355d8bd85c410baa25c95ca7a5be2e37a5f9b9b72e9106eea8d6d7e11838891935c1dbf62ac3f64725e9f1ec5b5202680ff9909758bb1ee#npm:7.22.9", {\
"packageLocation": "./.yarn/__virtual__/@babel-helper-compilation-targets-virtual-a8597ce00f/0/cache/@babel-helper-compilation-targets-npm-7.22.9-b4473889ca-779510e4c2.zip/node_modules/@babel/helper-compilation-targets/",\
"packageDependencies": [\
["@babel/helper-compilation-targets", "virtual:649b818332ad76f47355d8bd85c410baa25c95ca7a5be2e37a5f9b9b72e9106eea8d6d7e11838891935c1dbf62ac3f64725e9f1ec5b5202680ff9909758bb1ee#npm:7.22.9"],\
["@babel/compat-data", "npm:7.22.9"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-validator-option", "npm:7.22.5"],\
["@types/babel__core", null],\
["browserslist", "npm:4.21.9"],\
["lru-cache", "npm:5.1.1"],\
["semver", "npm:6.3.1"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-create-class-features-plugin", [\
["npm:7.24.8", {\
"packageLocation": "./.yarn/cache/@babel-helper-create-class-features-plugin-npm-7.24.8-e1343abde8-a779c5356f.zip/node_modules/@babel/helper-create-class-features-plugin/",\
"packageDependencies": [\
["@babel/helper-create-class-features-plugin", "npm:7.24.8"]\
],\
"linkType": "SOFT"\
}],\
["virtual:b64213ce4f3c5fb1e7c58d87f117ca86f43d43db8b5f0a3ec2cc78eb245f720797a7bb5287f52f475b27808aea8ec2be903272d9eeb0c1ace30e6285f5a76948#npm:7.24.8", {\
"packageLocation": "./.yarn/__virtual__/@babel-helper-create-class-features-plugin-virtual-d797137039/0/cache/@babel-helper-create-class-features-plugin-npm-7.24.8-e1343abde8-a779c5356f.zip/node_modules/@babel/helper-create-class-features-plugin/",\
"packageDependencies": [\
["@babel/helper-create-class-features-plugin", "virtual:b64213ce4f3c5fb1e7c58d87f117ca86f43d43db8b5f0a3ec2cc78eb245f720797a7bb5287f52f475b27808aea8ec2be903272d9eeb0c1ace30e6285f5a76948#npm:7.24.8"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-annotate-as-pure", "npm:7.24.7"],\
["@babel/helper-environment-visitor", "npm:7.24.7"],\
["@babel/helper-function-name", "npm:7.24.7"],\
["@babel/helper-member-expression-to-functions", "npm:7.24.8"],\
["@babel/helper-optimise-call-expression", "npm:7.24.7"],\
["@babel/helper-replace-supers", "virtual:d79713703996c686cdeae3aa6d050e2f1a46c5b28bf6bc6b4b40fbc6158180f9c55b31f10db209eb439a5d7a7f16cc94652a0be6d1ea2ad362368ceb7f630b85#npm:7.24.7"],\
["@babel/helper-skip-transparent-expression-wrappers", "npm:7.24.7"],\
["@babel/helper-split-export-declaration", "npm:7.24.7"],\
["@types/babel__core", null],\
["semver", "npm:6.3.1"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-create-regexp-features-plugin", [\
["npm:7.21.4", {\
"packageLocation": "./.yarn/cache/@babel-helper-create-regexp-features-plugin-npm-7.21.4-27f1863397-e6301eeede.zip/node_modules/@babel/helper-create-regexp-features-plugin/",\
"packageDependencies": [\
["@babel/helper-create-regexp-features-plugin", "npm:7.21.4"]\
],\
"linkType": "SOFT"\
}],\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-helper-create-regexp-features-plugin-npm-7.24.7-0bc60f7f63-dd7238af30.zip/node_modules/@babel/helper-create-regexp-features-plugin/",\
"packageDependencies": [\
["@babel/helper-create-regexp-features-plugin", "npm:7.24.7"]\
],\
"linkType": "SOFT"\
}],\
["virtual:492ccabd5a727b037348f8470b969a1e03dcc398306642b82f25f2196024701e355c2c82b41748f413a82f70164fefa6f186db82e26a7937a2c5ecdd07400120#npm:7.24.7", {\
"packageLocation": "./.yarn/__virtual__/@babel-helper-create-regexp-features-plugin-virtual-35aea019ca/0/cache/@babel-helper-create-regexp-features-plugin-npm-7.24.7-0bc60f7f63-dd7238af30.zip/node_modules/@babel/helper-create-regexp-features-plugin/",\
"packageDependencies": [\
["@babel/helper-create-regexp-features-plugin", "virtual:492ccabd5a727b037348f8470b969a1e03dcc398306642b82f25f2196024701e355c2c82b41748f413a82f70164fefa6f186db82e26a7937a2c5ecdd07400120#npm:7.24.7"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-annotate-as-pure", "npm:7.24.7"],\
["@types/babel__core", null],\
["regexpu-core", "npm:5.3.2"],\
["semver", "npm:6.3.1"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}],\
["virtual:9c732e6e56690304f5011b6fa98c593e8ffd217d76bf1fd71c1ae93825937e481548533b975399282b34435b588755e02150efef64beaf6372cf6b77ac590c3e#npm:7.21.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-helper-create-regexp-features-plugin-virtual-b8d6f238b4/0/cache/@babel-helper-create-regexp-features-plugin-npm-7.21.4-27f1863397-e6301eeede.zip/node_modules/@babel/helper-create-regexp-features-plugin/",\
"packageDependencies": [\
["@babel/helper-create-regexp-features-plugin", "virtual:9c732e6e56690304f5011b6fa98c593e8ffd217d76bf1fd71c1ae93825937e481548533b975399282b34435b588755e02150efef64beaf6372cf6b77ac590c3e#npm:7.21.4"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-annotate-as-pure", "npm:7.18.6"],\
["@types/babel__core", null],\
["regexpu-core", "npm:5.3.2"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-define-polyfill-provider", [\
["npm:0.6.2", {\
"packageLocation": "./.yarn/cache/@babel-helper-define-polyfill-provider-npm-0.6.2-554cbf22ae-bb32ec1202.zip/node_modules/@babel/helper-define-polyfill-provider/",\
"packageDependencies": [\
["@babel/helper-define-polyfill-provider", "npm:0.6.2"]\
],\
"linkType": "SOFT"\
}],\
["virtual:86e789fc1896007170aaf79ae120c98d2947061e684006c668598a67bcd6181be70ac699692fb0c710d7cb8053a9d1baf7a79935079a9431831b6a2ccc8d64ee#npm:0.6.2", {\
"packageLocation": "./.yarn/__virtual__/@babel-helper-define-polyfill-provider-virtual-649b818332/0/cache/@babel-helper-define-polyfill-provider-npm-0.6.2-554cbf22ae-bb32ec1202.zip/node_modules/@babel/helper-define-polyfill-provider/",\
"packageDependencies": [\
["@babel/helper-define-polyfill-provider", "virtual:86e789fc1896007170aaf79ae120c98d2947061e684006c668598a67bcd6181be70ac699692fb0c710d7cb8053a9d1baf7a79935079a9431831b6a2ccc8d64ee#npm:0.6.2"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-compilation-targets", "virtual:649b818332ad76f47355d8bd85c410baa25c95ca7a5be2e37a5f9b9b72e9106eea8d6d7e11838891935c1dbf62ac3f64725e9f1ec5b5202680ff9909758bb1ee#npm:7.22.9"],\
["@babel/helper-plugin-utils", "npm:7.22.5"],\
["@types/babel__core", null],\
["debug", "virtual:66c78d088f2c1ec881d13d09b381292151a32ef4a0e25f70e17c9b0845f9e6c1192f2f33d1cb8645613e4e019b59aa0e95d89f06569bd6d4d48b91fd53fdc5fb#npm:4.3.4"],\
["lodash.debounce", "npm:4.0.8"],\
["resolve", "patch:resolve@npm%3A1.22.3#optional!builtin<compat/resolve>::version=1.22.3&hash=c3c19d"]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-environment-visitor", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-helper-environment-visitor-npm-7.24.7-9a965bf523-079d86e657.zip/node_modules/@babel/helper-environment-visitor/",\
"packageDependencies": [\
["@babel/helper-environment-visitor", "npm:7.24.7"],\
["@babel/types", "npm:7.24.9"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-function-name", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-helper-function-name-npm-7.24.7-4f88fa6768-2ceb3d9b2b.zip/node_modules/@babel/helper-function-name/",\
"packageDependencies": [\
["@babel/helper-function-name", "npm:7.24.7"],\
["@babel/template", "npm:7.24.7"],\
["@babel/types", "npm:7.24.9"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-hoist-variables", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-helper-hoist-variables-npm-7.24.7-3d1fb54723-6cfdcf2289.zip/node_modules/@babel/helper-hoist-variables/",\
"packageDependencies": [\
["@babel/helper-hoist-variables", "npm:7.24.7"],\
["@babel/types", "npm:7.24.9"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-member-expression-to-functions", [\
["npm:7.24.8", {\
"packageLocation": "./.yarn/cache/@babel-helper-member-expression-to-functions-npm-7.24.8-6042e98e38-ac878761cf.zip/node_modules/@babel/helper-member-expression-to-functions/",\
"packageDependencies": [\
["@babel/helper-member-expression-to-functions", "npm:7.24.8"],\
["@babel/traverse", "npm:7.24.8"],\
["@babel/types", "npm:7.24.9"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-module-imports", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-helper-module-imports-npm-7.24.7-f60e66adbf-df8bfb2bb1.zip/node_modules/@babel/helper-module-imports/",\
"packageDependencies": [\
["@babel/helper-module-imports", "npm:7.24.7"],\
["@babel/traverse", "npm:7.24.8"],\
["@babel/types", "npm:7.24.9"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-module-transforms", [\
["npm:7.24.9", {\
"packageLocation": "./.yarn/cache/@babel-helper-module-transforms-npm-7.24.9-d41058579e-eaed9cb93e.zip/node_modules/@babel/helper-module-transforms/",\
"packageDependencies": [\
["@babel/helper-module-transforms", "npm:7.24.9"]\
],\
"linkType": "SOFT"\
}],\
["virtual:9d33b31f15d328d2ad31e6b50bf749ce87686c8539aa9d9187f4b5f7cd70a8e1bf36455d0f2e4df20291706027291e24a00c568a6b67d68e48c7b07c43b500c3#npm:7.24.9", {\
"packageLocation": "./.yarn/__virtual__/@babel-helper-module-transforms-virtual-1580c85bbe/0/cache/@babel-helper-module-transforms-npm-7.24.9-d41058579e-eaed9cb93e.zip/node_modules/@babel/helper-module-transforms/",\
"packageDependencies": [\
["@babel/helper-module-transforms", "virtual:9d33b31f15d328d2ad31e6b50bf749ce87686c8539aa9d9187f4b5f7cd70a8e1bf36455d0f2e4df20291706027291e24a00c568a6b67d68e48c7b07c43b500c3#npm:7.24.9"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-environment-visitor", "npm:7.24.7"],\
["@babel/helper-module-imports", "npm:7.24.7"],\
["@babel/helper-simple-access", "npm:7.24.7"],\
["@babel/helper-split-export-declaration", "npm:7.24.7"],\
["@babel/helper-validator-identifier", "npm:7.24.7"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-optimise-call-expression", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-helper-optimise-call-expression-npm-7.24.7-59b5fb050d-da7a7f2d1b.zip/node_modules/@babel/helper-optimise-call-expression/",\
"packageDependencies": [\
["@babel/helper-optimise-call-expression", "npm:7.24.7"],\
["@babel/types", "npm:7.24.9"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-plugin-utils", [\
["npm:7.20.2", {\
"packageLocation": "./.yarn/cache/@babel-helper-plugin-utils-npm-7.20.2-63f605bb73-7bd5be7529.zip/node_modules/@babel/helper-plugin-utils/",\
"packageDependencies": [\
["@babel/helper-plugin-utils", "npm:7.20.2"]\
],\
"linkType": "HARD"\
}],\
["npm:7.22.5", {\
"packageLocation": "./.yarn/cache/@babel-helper-plugin-utils-npm-7.22.5-192e38e1de-ab220db218.zip/node_modules/@babel/helper-plugin-utils/",\
"packageDependencies": [\
["@babel/helper-plugin-utils", "npm:7.22.5"]\
],\
"linkType": "HARD"\
}],\
["npm:7.24.8", {\
"packageLocation": "./.yarn/cache/@babel-helper-plugin-utils-npm-7.24.8-a288f101a7-adbc9fc114.zip/node_modules/@babel/helper-plugin-utils/",\
"packageDependencies": [\
["@babel/helper-plugin-utils", "npm:7.24.8"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-remap-async-to-generator", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-helper-remap-async-to-generator-npm-7.24.7-d568c8a028-4b7c925e71.zip/node_modules/@babel/helper-remap-async-to-generator/",\
"packageDependencies": [\
["@babel/helper-remap-async-to-generator", "npm:7.24.7"]\
],\
"linkType": "SOFT"\
}],\
["virtual:ecfc7f4332572f186467eeef30ce9847dd8362d9b0e27978732d4a640c8da2e1ba0db3de92b0ef6acb2be01dbc7b0c1c9e3901360f21c99e330d5bcbf3c49650#npm:7.24.7", {\
"packageLocation": "./.yarn/__virtual__/@babel-helper-remap-async-to-generator-virtual-445b36cae6/0/cache/@babel-helper-remap-async-to-generator-npm-7.24.7-d568c8a028-4b7c925e71.zip/node_modules/@babel/helper-remap-async-to-generator/",\
"packageDependencies": [\
["@babel/helper-remap-async-to-generator", "virtual:ecfc7f4332572f186467eeef30ce9847dd8362d9b0e27978732d4a640c8da2e1ba0db3de92b0ef6acb2be01dbc7b0c1c9e3901360f21c99e330d5bcbf3c49650#npm:7.24.7"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-annotate-as-pure", "npm:7.24.7"],\
["@babel/helper-environment-visitor", "npm:7.24.7"],\
["@babel/helper-wrap-function", "npm:7.24.7"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-replace-supers", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-helper-replace-supers-npm-7.24.7-35d1343b26-18b7c37098.zip/node_modules/@babel/helper-replace-supers/",\
"packageDependencies": [\
["@babel/helper-replace-supers", "npm:7.24.7"]\
],\
"linkType": "SOFT"\
}],\
["virtual:d79713703996c686cdeae3aa6d050e2f1a46c5b28bf6bc6b4b40fbc6158180f9c55b31f10db209eb439a5d7a7f16cc94652a0be6d1ea2ad362368ceb7f630b85#npm:7.24.7", {\
"packageLocation": "./.yarn/__virtual__/@babel-helper-replace-supers-virtual-f8ca5f2538/0/cache/@babel-helper-replace-supers-npm-7.24.7-35d1343b26-18b7c37098.zip/node_modules/@babel/helper-replace-supers/",\
"packageDependencies": [\
["@babel/helper-replace-supers", "virtual:d79713703996c686cdeae3aa6d050e2f1a46c5b28bf6bc6b4b40fbc6158180f9c55b31f10db209eb439a5d7a7f16cc94652a0be6d1ea2ad362368ceb7f630b85#npm:7.24.7"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-environment-visitor", "npm:7.24.7"],\
["@babel/helper-member-expression-to-functions", "npm:7.24.8"],\
["@babel/helper-optimise-call-expression", "npm:7.24.7"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-simple-access", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-helper-simple-access-npm-7.24.7-beddd00b0e-5083e19018.zip/node_modules/@babel/helper-simple-access/",\
"packageDependencies": [\
["@babel/helper-simple-access", "npm:7.24.7"],\
["@babel/traverse", "npm:7.24.8"],\
["@babel/types", "npm:7.24.9"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-skip-transparent-expression-wrappers", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-helper-skip-transparent-expression-wrappers-npm-7.24.7-f573fe40ee-784a6fdd25.zip/node_modules/@babel/helper-skip-transparent-expression-wrappers/",\
"packageDependencies": [\
["@babel/helper-skip-transparent-expression-wrappers", "npm:7.24.7"],\
["@babel/traverse", "npm:7.24.8"],\
["@babel/types", "npm:7.24.9"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-split-export-declaration", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-helper-split-export-declaration-npm-7.24.7-77b1fc1a1c-ff04a30716.zip/node_modules/@babel/helper-split-export-declaration/",\
"packageDependencies": [\
["@babel/helper-split-export-declaration", "npm:7.24.7"],\
["@babel/types", "npm:7.24.9"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-string-parser", [\
["npm:7.19.4", {\
"packageLocation": "./.yarn/cache/@babel-helper-string-parser-npm-7.19.4-0db110dc3a-05d428ed81.zip/node_modules/@babel/helper-string-parser/",\
"packageDependencies": [\
["@babel/helper-string-parser", "npm:7.19.4"]\
],\
"linkType": "HARD"\
}],\
["npm:7.24.8", {\
"packageLocation": "./.yarn/cache/@babel-helper-string-parser-npm-7.24.8-133b2e71e1-6d1bf8f27d.zip/node_modules/@babel/helper-string-parser/",\
"packageDependencies": [\
["@babel/helper-string-parser", "npm:7.24.8"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-validator-identifier", [\
["npm:7.19.1", {\
"packageLocation": "./.yarn/cache/@babel-helper-validator-identifier-npm-7.19.1-d84f19e1dc-30ecd53b72.zip/node_modules/@babel/helper-validator-identifier/",\
"packageDependencies": [\
["@babel/helper-validator-identifier", "npm:7.19.1"]\
],\
"linkType": "HARD"\
}],\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-helper-validator-identifier-npm-7.24.7-748889c8d2-86875063f5.zip/node_modules/@babel/helper-validator-identifier/",\
"packageDependencies": [\
["@babel/helper-validator-identifier", "npm:7.24.7"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-validator-option", [\
["npm:7.22.5", {\
"packageLocation": "./.yarn/cache/@babel-helper-validator-option-npm-7.22.5-eaf22b24ab-bbeca8a85e.zip/node_modules/@babel/helper-validator-option/",\
"packageDependencies": [\
["@babel/helper-validator-option", "npm:7.22.5"]\
],\
"linkType": "HARD"\
}],\
["npm:7.24.8", {\
"packageLocation": "./.yarn/cache/@babel-helper-validator-option-npm-7.24.8-e093ef5016-a52442dfa7.zip/node_modules/@babel/helper-validator-option/",\
"packageDependencies": [\
["@babel/helper-validator-option", "npm:7.24.8"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helper-wrap-function", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-helper-wrap-function-npm-7.24.7-563645868a-1c248accfb.zip/node_modules/@babel/helper-wrap-function/",\
"packageDependencies": [\
["@babel/helper-wrap-function", "npm:7.24.7"],\
["@babel/helper-function-name", "npm:7.24.7"],\
["@babel/template", "npm:7.24.7"],\
["@babel/traverse", "npm:7.24.8"],\
["@babel/types", "npm:7.24.9"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/helpers", [\
["npm:7.24.8", {\
"packageLocation": "./.yarn/cache/@babel-helpers-npm-7.24.8-37e3274e05-61c08a2baa.zip/node_modules/@babel/helpers/",\
"packageDependencies": [\
["@babel/helpers", "npm:7.24.8"],\
["@babel/template", "npm:7.24.7"],\
["@babel/types", "npm:7.24.9"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/highlight", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-highlight-npm-7.24.7-d792bd8d9f-69b73f38cd.zip/node_modules/@babel/highlight/",\
"packageDependencies": [\
["@babel/highlight", "npm:7.24.7"],\
["@babel/helper-validator-identifier", "npm:7.24.7"],\
["chalk", "npm:2.4.2"],\
["js-tokens", "npm:4.0.0"],\
["picocolors", "npm:1.0.0"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/parser", [\
["npm:7.24.8", {\
"packageLocation": "./.yarn/cache/@babel-parser-npm-7.24.8-74fa45ab71-e44b8327da.zip/node_modules/@babel/parser/",\
"packageDependencies": [\
["@babel/parser", "npm:7.24.8"],\
["@babel/types", "npm:7.21.4"]\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-bugfix-firefox-class-in-computed-class-key", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-plugin-bugfix-firefox-class-in-computed-class-key-npm-7.24.7-ae12ee30ec-d5091ca6b5.zip/node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key/",\
"packageDependencies": [\
["@babel/plugin-bugfix-firefox-class-in-computed-class-key", "npm:7.24.7"]\
],\
"linkType": "SOFT"\
}],\
["virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.24.7", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-bugfix-firefox-class-in-computed-class-key-virtual-9a74c5219a/0/cache/@babel-plugin-bugfix-firefox-class-in-computed-class-key-npm-7.24.7-ae12ee30ec-d5091ca6b5.zip/node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key/",\
"packageDependencies": [\
["@babel/plugin-bugfix-firefox-class-in-computed-class-key", "virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.24.7"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-environment-visitor", "npm:7.24.7"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression-npm-7.24.7-5c3be7a37e-f0e0e9bdcf.zip/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/",\
"packageDependencies": [\
["@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", "npm:7.24.7"]\
],\
"linkType": "SOFT"\
}],\
["virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.24.7", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression-virtual-17db9cb902/0/cache/@babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression-npm-7.24.7-5c3be7a37e-f0e0e9bdcf.zip/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/",\
"packageDependencies": [\
["@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", "virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.24.7"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining-npm-7.24.7-a96e8cc868-887f1b8bd0.zip/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/",\
"packageDependencies": [\
["@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", "npm:7.24.7"]\
],\
"linkType": "SOFT"\
}],\
["virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.24.7", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining-virtual-2478703211/0/cache/@babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining-npm-7.24.7-a96e8cc868-887f1b8bd0.zip/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/",\
"packageDependencies": [\
["@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", "virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.24.7"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@babel/helper-skip-transparent-expression-wrappers", "npm:7.24.7"],\
["@babel/plugin-transform-optional-chaining", "virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.24.8"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-plugin-bugfix-v8-static-class-fields-redefine-readonly-npm-7.24.7-c865f17470-ad63317eb7.zip/node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/",\
"packageDependencies": [\
["@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", "npm:7.24.7"]\
],\
"linkType": "SOFT"\
}],\
["virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.24.7", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-bugfix-v8-static-class-fields-redefine-readonly-virtual-bb7152100c/0/cache/@babel-plugin-bugfix-v8-static-class-fields-redefine-readonly-npm-7.24.7-c865f17470-ad63317eb7.zip/node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/",\
"packageDependencies": [\
["@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", "virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.24.7"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-environment-visitor", "npm:7.24.7"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-proposal-private-property-in-object", [\
["npm:7.21.0-placeholder-for-preset-env.2", {\
"packageLocation": "./.yarn/cache/@babel-plugin-proposal-private-property-in-object-npm-7.21.0-placeholder-for-preset-env.2-eb70026c88-fab70f399a.zip/node_modules/@babel/plugin-proposal-private-property-in-object/",\
"packageDependencies": [\
["@babel/plugin-proposal-private-property-in-object", "npm:7.21.0-placeholder-for-preset-env.2"]\
],\
"linkType": "SOFT"\
}],\
["virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.21.0-placeholder-for-preset-env.2", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-proposal-private-property-in-object-virtual-8cfe53745c/0/cache/@babel-plugin-proposal-private-property-in-object-npm-7.21.0-placeholder-for-preset-env.2-eb70026c88-fab70f399a.zip/node_modules/@babel/plugin-proposal-private-property-in-object/",\
"packageDependencies": [\
["@babel/plugin-proposal-private-property-in-object", "virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.21.0-placeholder-for-preset-env.2"],\
["@babel/core", "npm:7.24.9"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-async-generators", [\
["npm:7.8.4", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-async-generators-npm-7.8.4-d10cf993c9-7ed1c1d9b9.zip/node_modules/@babel/plugin-syntax-async-generators/",\
"packageDependencies": [\
["@babel/plugin-syntax-async-generators", "npm:7.8.4"]\
],\
"linkType": "SOFT"\
}],\
["virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.8.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-async-generators-virtual-99f5e63c76/0/cache/@babel-plugin-syntax-async-generators-npm-7.8.4-d10cf993c9-7ed1c1d9b9.zip/node_modules/@babel/plugin-syntax-async-generators/",\
"packageDependencies": [\
["@babel/plugin-syntax-async-generators", "virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.8.4"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-plugin-utils", "npm:7.20.2"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-class-properties", [\
["npm:7.12.13", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-class-properties-npm-7.12.13-002ee9d930-24f34b196d.zip/node_modules/@babel/plugin-syntax-class-properties/",\
"packageDependencies": [\
["@babel/plugin-syntax-class-properties", "npm:7.12.13"]\
],\
"linkType": "SOFT"\
}],\
["virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.12.13", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-class-properties-virtual-77fc0d289f/0/cache/@babel-plugin-syntax-class-properties-npm-7.12.13-002ee9d930-24f34b196d.zip/node_modules/@babel/plugin-syntax-class-properties/",\
"packageDependencies": [\
["@babel/plugin-syntax-class-properties", "virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.12.13"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-plugin-utils", "npm:7.20.2"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-class-static-block", [\
["npm:7.14.5", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-class-static-block-npm-7.14.5-7bdd0ff1b3-3e80814b5b.zip/node_modules/@babel/plugin-syntax-class-static-block/",\
"packageDependencies": [\
["@babel/plugin-syntax-class-static-block", "npm:7.14.5"]\
],\
"linkType": "SOFT"\
}],\
["virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.14.5", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-class-static-block-virtual-88726d9d76/0/cache/@babel-plugin-syntax-class-static-block-npm-7.14.5-7bdd0ff1b3-3e80814b5b.zip/node_modules/@babel/plugin-syntax-class-static-block/",\
"packageDependencies": [\
["@babel/plugin-syntax-class-static-block", "virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.14.5"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-plugin-utils", "npm:7.20.2"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-dynamic-import", [\
["npm:7.8.3", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-dynamic-import-npm-7.8.3-fb9ff5634a-ce307af83c.zip/node_modules/@babel/plugin-syntax-dynamic-import/",\
"packageDependencies": [\
["@babel/plugin-syntax-dynamic-import", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-dynamic-import-virtual-5c8ca08c2a/0/cache/@babel-plugin-syntax-dynamic-import-npm-7.8.3-fb9ff5634a-ce307af83c.zip/node_modules/@babel/plugin-syntax-dynamic-import/",\
"packageDependencies": [\
["@babel/plugin-syntax-dynamic-import", "virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.8.3"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-plugin-utils", "npm:7.20.2"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-export-namespace-from", [\
["npm:7.8.3", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-export-namespace-from-npm-7.8.3-1747201aa9-85740478be.zip/node_modules/@babel/plugin-syntax-export-namespace-from/",\
"packageDependencies": [\
["@babel/plugin-syntax-export-namespace-from", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-export-namespace-from-virtual-c937d89651/0/cache/@babel-plugin-syntax-export-namespace-from-npm-7.8.3-1747201aa9-85740478be.zip/node_modules/@babel/plugin-syntax-export-namespace-from/",\
"packageDependencies": [\
["@babel/plugin-syntax-export-namespace-from", "virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.8.3"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-plugin-utils", "npm:7.20.2"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-import-assertions", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-import-assertions-npm-7.24.7-06924e77aa-bd065cd73a.zip/node_modules/@babel/plugin-syntax-import-assertions/",\
"packageDependencies": [\
["@babel/plugin-syntax-import-assertions", "npm:7.24.7"]\
],\
"linkType": "SOFT"\
}],\
["virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.24.7", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-import-assertions-virtual-d47d1e2fd0/0/cache/@babel-plugin-syntax-import-assertions-npm-7.24.7-06924e77aa-bd065cd73a.zip/node_modules/@babel/plugin-syntax-import-assertions/",\
"packageDependencies": [\
["@babel/plugin-syntax-import-assertions", "virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.24.7"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-import-attributes", [\
["npm:7.24.7", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-import-attributes-npm-7.24.7-6101aa2bfb-22fc50bd85.zip/node_modules/@babel/plugin-syntax-import-attributes/",\
"packageDependencies": [\
["@babel/plugin-syntax-import-attributes", "npm:7.24.7"]\
],\
"linkType": "SOFT"\
}],\
["virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.24.7", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-import-attributes-virtual-22651bc2dd/0/cache/@babel-plugin-syntax-import-attributes-npm-7.24.7-6101aa2bfb-22fc50bd85.zip/node_modules/@babel/plugin-syntax-import-attributes/",\
"packageDependencies": [\
["@babel/plugin-syntax-import-attributes", "virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.24.7"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-plugin-utils", "npm:7.24.8"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-import-meta", [\
["npm:7.10.4", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-import-meta-npm-7.10.4-4a0a0158bc-166ac1125d.zip/node_modules/@babel/plugin-syntax-import-meta/",\
"packageDependencies": [\
["@babel/plugin-syntax-import-meta", "npm:7.10.4"]\
],\
"linkType": "SOFT"\
}],\
["virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.10.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-import-meta-virtual-282aff17b6/0/cache/@babel-plugin-syntax-import-meta-npm-7.10.4-4a0a0158bc-166ac1125d.zip/node_modules/@babel/plugin-syntax-import-meta/",\
"packageDependencies": [\
["@babel/plugin-syntax-import-meta", "virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.10.4"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-plugin-utils", "npm:7.20.2"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-json-strings", [\
["npm:7.8.3", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-json-strings-npm-7.8.3-6dc7848179-bf5aea1f31.zip/node_modules/@babel/plugin-syntax-json-strings/",\
"packageDependencies": [\
["@babel/plugin-syntax-json-strings", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-json-strings-virtual-bd88a3da35/0/cache/@babel-plugin-syntax-json-strings-npm-7.8.3-6dc7848179-bf5aea1f31.zip/node_modules/@babel/plugin-syntax-json-strings/",\
"packageDependencies": [\
["@babel/plugin-syntax-json-strings", "virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.8.3"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-plugin-utils", "npm:7.20.2"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-logical-assignment-operators", [\
["npm:7.10.4", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-logical-assignment-operators-npm-7.10.4-72ae00fdf6-aff3357703.zip/node_modules/@babel/plugin-syntax-logical-assignment-operators/",\
"packageDependencies": [\
["@babel/plugin-syntax-logical-assignment-operators", "npm:7.10.4"]\
],\
"linkType": "SOFT"\
}],\
["virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.10.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-logical-assignment-operators-virtual-1a2c7607bd/0/cache/@babel-plugin-syntax-logical-assignment-operators-npm-7.10.4-72ae00fdf6-aff3357703.zip/node_modules/@babel/plugin-syntax-logical-assignment-operators/",\
"packageDependencies": [\
["@babel/plugin-syntax-logical-assignment-operators", "virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.10.4"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-plugin-utils", "npm:7.20.2"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-nullish-coalescing-operator", [\
["npm:7.8.3", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-nullish-coalescing-operator-npm-7.8.3-8a723173b5-87aca49189.zip/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/",\
"packageDependencies": [\
["@babel/plugin-syntax-nullish-coalescing-operator", "npm:7.8.3"]\
],\
"linkType": "SOFT"\
}],\
["virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.8.3", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-nullish-coalescing-operator-virtual-99584085b8/0/cache/@babel-plugin-syntax-nullish-coalescing-operator-npm-7.8.3-8a723173b5-87aca49189.zip/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/",\
"packageDependencies": [\
["@babel/plugin-syntax-nullish-coalescing-operator", "virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.8.3"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-plugin-utils", "npm:7.20.2"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\
],\
"linkType": "HARD"\
}]\
]],\
["@babel/plugin-syntax-numeric-separator", [\
["npm:7.10.4", {\
"packageLocation": "./.yarn/cache/@babel-plugin-syntax-numeric-separator-npm-7.10.4-81444be605-01ec5547bd.zip/node_modules/@babel/plugin-syntax-numeric-separator/",\
"packageDependencies": [\
["@babel/plugin-syntax-numeric-separator", "npm:7.10.4"]\
],\
"linkType": "SOFT"\
}],\
["virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.10.4", {\
"packageLocation": "./.yarn/__virtual__/@babel-plugin-syntax-numeric-separator-virtual-c38892703b/0/cache/@babel-plugin-syntax-numeric-separator-npm-7.10.4-81444be605-01ec5547bd.zip/node_modules/@babel/plugin-syntax-numeric-separator/",\
"packageDependencies": [\
["@babel/plugin-syntax-numeric-separator", "virtual:8fb7c8910e798705cb58813da5330b078d30928f59fec8ed4c490e85202ed9fa11b7685b4349359fcd5b33abc05b8eed42d21040d641b0d53bf8470fbaba4b34#npm:7.10.4"],\
["@babel/core", "npm:7.24.9"],\
["@babel/helper-plugin-utils", "npm:7.20.2"],\
["@types/babel__core", null]\
],\
"packagePeers": [\
"@babel/core",\
"@types/babel__core"\