@wictorwilen/cocogen 1.0.24 → 1.0.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.0.26] - 2026-01-22
11
+
12
+ ### Added
13
+ - People connector runtime helpers now enforce JSON-encoded payloads for people labels (TS + .NET).
14
+ - People label registry snapshot and validation tests.
15
+ - Added all-labels people connector example for exercising complex TypeSpec usage.
16
+ - Added complex non-people connector example with extensive validations.
17
+
18
+ ### Changed
19
+ - People entity transforms now build typed payload objects before JSON serialization (TS + .NET).
20
+ - .NET people payload types now use JsonIgnore attributes to omit nulls (instead of serializer options).
21
+ - TS principal cleanup helpers now live in core/principal.
22
+ - People graph helpers now derive missing nested types from mappings for stronger typing (TS + .NET).
23
+ - People graph types now map all scalars explicitly and treat Edm.Date as string.
24
+ - TS people entity transforms now cast nested objects to derived Graph types (e.g., PositionDetail) and import nested types.
25
+
26
+ ### Fixed
27
+ - People label validators now check the correct field values in TS helpers.
28
+ - People profile graph enum/body types now map to string in TS helpers to avoid invalid type mismatches.
29
+ - C# people graph enum/body types now map to string for better alignment.
30
+
31
+ ## [1.0.25] - 2026-01-21
32
+
33
+ ### Fixed
34
+ - .NET CSV datasource/CLI now alias schema model types to avoid namespace/type name collisions (e.g., `Skills` as namespace).
35
+
10
36
  ## [1.0.24] - 2026-01-21
11
37
 
12
38
  ### Changed
@@ -26,8 +52,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
26
52
  - PrincipalCollection now emits `Collection(microsoft.graph.externalConnectors.principal)` in `@odata.type`.
27
53
  - Sample CSV generation uses email values for principal `upn`/`userPrincipalName` sources.
28
54
 
29
- ## [1.0.21] - 2026-01-21
30
-
31
55
  ## [1.0.20] - 2026-01-21
32
56
 
33
57
  ### Changed
@@ -80,9 +104,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
80
104
  - Collection values no longer split on commas; use semicolons instead.
81
105
 
82
106
  [Unreleased]: https://github.com/wictorwilen/cocogen/compare/v1.0.16...HEAD
107
+ [1.0.26]: https://github.com/wictorwilen/cocogen/compare/main...v1.0.26
108
+ [1.0.25]: https://github.com/wictorwilen/cocogen/compare/main...v1.0.25
83
109
  [1.0.24]: https://github.com/wictorwilen/cocogen/compare/main...v1.0.24
84
110
  [1.0.22]: https://github.com/wictorwilen/cocogen/compare/main...v1.0.22
85
- [1.0.21]: https://github.com/wictorwilen/cocogen/compare/main...v1.0.21
86
111
  [1.0.20]: https://github.com/wictorwilen/cocogen/compare/main...v1.0.20
87
112
  [1.0.19]: https://github.com/wictorwilen/cocogen/compare/main...v1.0.19
88
113
  [1.0.18]: https://github.com/wictorwilen/cocogen/compare/main...v1.0.18
@@ -0,0 +1,615 @@
1
+ {
2
+ "generatedAt": "2026-01-22T07:16:33.485Z",
3
+ "graphVersion": "beta",
4
+ "types": [
5
+ {
6
+ "name": "userAccountInformation",
7
+ "fullName": "microsoft.graph.userAccountInformation",
8
+ "namespace": "microsoft.graph",
9
+ "baseType": "itemFacet",
10
+ "properties": [
11
+ {
12
+ "name": "ageGroup",
13
+ "type": "Edm.String",
14
+ "nullable": true
15
+ },
16
+ {
17
+ "name": "countryCode",
18
+ "type": "Edm.String",
19
+ "nullable": true
20
+ },
21
+ {
22
+ "name": "originTenantInfo",
23
+ "type": "graph.originTenantInfo",
24
+ "nullable": true
25
+ },
26
+ {
27
+ "name": "preferredLanguageTag",
28
+ "type": "graph.localeInfo",
29
+ "nullable": true
30
+ },
31
+ {
32
+ "name": "userPersona",
33
+ "type": "graph.userPersona",
34
+ "nullable": true
35
+ },
36
+ {
37
+ "name": "userPrincipalName",
38
+ "type": "Edm.String",
39
+ "nullable": true
40
+ }
41
+ ],
42
+ "required": []
43
+ },
44
+ {
45
+ "name": "personName",
46
+ "fullName": "microsoft.graph.personName",
47
+ "namespace": "microsoft.graph",
48
+ "baseType": "itemFacet",
49
+ "properties": [
50
+ {
51
+ "name": "displayName",
52
+ "type": "Edm.String",
53
+ "nullable": true
54
+ },
55
+ {
56
+ "name": "first",
57
+ "type": "Edm.String",
58
+ "nullable": true
59
+ },
60
+ {
61
+ "name": "initials",
62
+ "type": "Edm.String",
63
+ "nullable": true
64
+ },
65
+ {
66
+ "name": "languageTag",
67
+ "type": "Edm.String",
68
+ "nullable": true
69
+ },
70
+ {
71
+ "name": "last",
72
+ "type": "Edm.String",
73
+ "nullable": true
74
+ },
75
+ {
76
+ "name": "maiden",
77
+ "type": "Edm.String",
78
+ "nullable": true
79
+ },
80
+ {
81
+ "name": "middle",
82
+ "type": "Edm.String",
83
+ "nullable": true
84
+ },
85
+ {
86
+ "name": "nickname",
87
+ "type": "Edm.String",
88
+ "nullable": true
89
+ },
90
+ {
91
+ "name": "pronunciation",
92
+ "type": "graph.personNamePronounciation",
93
+ "nullable": true
94
+ },
95
+ {
96
+ "name": "suffix",
97
+ "type": "Edm.String",
98
+ "nullable": true
99
+ },
100
+ {
101
+ "name": "title",
102
+ "type": "Edm.String",
103
+ "nullable": true
104
+ }
105
+ ],
106
+ "required": []
107
+ },
108
+ {
109
+ "name": "workPosition",
110
+ "fullName": "microsoft.graph.workPosition",
111
+ "namespace": "microsoft.graph",
112
+ "baseType": "itemFacet",
113
+ "properties": [
114
+ {
115
+ "name": "categories",
116
+ "type": "Collection(Edm.String)",
117
+ "nullable": true
118
+ },
119
+ {
120
+ "name": "colleagues",
121
+ "type": "Collection(graph.relatedPerson)",
122
+ "nullable": true
123
+ },
124
+ {
125
+ "name": "detail",
126
+ "type": "graph.positionDetail",
127
+ "nullable": true
128
+ },
129
+ {
130
+ "name": "isCurrent",
131
+ "type": "Edm.Boolean",
132
+ "nullable": true
133
+ },
134
+ {
135
+ "name": "manager",
136
+ "type": "graph.relatedPerson",
137
+ "nullable": true
138
+ }
139
+ ],
140
+ "required": []
141
+ },
142
+ {
143
+ "name": "itemAddress",
144
+ "fullName": "microsoft.graph.itemAddress",
145
+ "namespace": "microsoft.graph",
146
+ "baseType": "itemFacet",
147
+ "properties": [
148
+ {
149
+ "name": "detail",
150
+ "type": "graph.physicalAddress",
151
+ "nullable": true
152
+ },
153
+ {
154
+ "name": "displayName",
155
+ "type": "Edm.String",
156
+ "nullable": true
157
+ },
158
+ {
159
+ "name": "geoCoordinates",
160
+ "type": "graph.geoCoordinates",
161
+ "nullable": true
162
+ }
163
+ ],
164
+ "required": []
165
+ },
166
+ {
167
+ "name": "itemEmail",
168
+ "fullName": "microsoft.graph.itemEmail",
169
+ "namespace": "microsoft.graph",
170
+ "baseType": "itemFacet",
171
+ "properties": [
172
+ {
173
+ "name": "address",
174
+ "type": "Edm.String",
175
+ "nullable": true
176
+ },
177
+ {
178
+ "name": "displayName",
179
+ "type": "Edm.String",
180
+ "nullable": true
181
+ },
182
+ {
183
+ "name": "type",
184
+ "type": "graph.emailType",
185
+ "nullable": false
186
+ }
187
+ ],
188
+ "required": [
189
+ "type"
190
+ ]
191
+ },
192
+ {
193
+ "name": "itemPhone",
194
+ "fullName": "microsoft.graph.itemPhone",
195
+ "namespace": "microsoft.graph",
196
+ "baseType": "itemFacet",
197
+ "properties": [
198
+ {
199
+ "name": "displayName",
200
+ "type": "Edm.String",
201
+ "nullable": true
202
+ },
203
+ {
204
+ "name": "number",
205
+ "type": "Edm.String",
206
+ "nullable": true
207
+ },
208
+ {
209
+ "name": "type",
210
+ "type": "graph.phoneType",
211
+ "nullable": false
212
+ }
213
+ ],
214
+ "required": [
215
+ "type"
216
+ ]
217
+ },
218
+ {
219
+ "name": "personAward",
220
+ "fullName": "microsoft.graph.personAward",
221
+ "namespace": "microsoft.graph",
222
+ "baseType": "itemFacet",
223
+ "properties": [
224
+ {
225
+ "name": "description",
226
+ "type": "Edm.String",
227
+ "nullable": true
228
+ },
229
+ {
230
+ "name": "displayName",
231
+ "type": "Edm.String",
232
+ "nullable": true
233
+ },
234
+ {
235
+ "name": "issuedDate",
236
+ "type": "Edm.Date",
237
+ "nullable": true
238
+ },
239
+ {
240
+ "name": "issuingAuthority",
241
+ "type": "Edm.String",
242
+ "nullable": true
243
+ },
244
+ {
245
+ "name": "thumbnailUrl",
246
+ "type": "Edm.String",
247
+ "nullable": true
248
+ },
249
+ {
250
+ "name": "webUrl",
251
+ "type": "Edm.String",
252
+ "nullable": true
253
+ }
254
+ ],
255
+ "required": []
256
+ },
257
+ {
258
+ "name": "personCertification",
259
+ "fullName": "microsoft.graph.personCertification",
260
+ "namespace": "microsoft.graph",
261
+ "baseType": "itemFacet",
262
+ "properties": [
263
+ {
264
+ "name": "certificationId",
265
+ "type": "Edm.String",
266
+ "nullable": true
267
+ },
268
+ {
269
+ "name": "description",
270
+ "type": "Edm.String",
271
+ "nullable": true
272
+ },
273
+ {
274
+ "name": "displayName",
275
+ "type": "Edm.String",
276
+ "nullable": true
277
+ },
278
+ {
279
+ "name": "endDate",
280
+ "type": "Edm.Date",
281
+ "nullable": true
282
+ },
283
+ {
284
+ "name": "issuedDate",
285
+ "type": "Edm.Date",
286
+ "nullable": true
287
+ },
288
+ {
289
+ "name": "issuingAuthority",
290
+ "type": "Edm.String",
291
+ "nullable": true
292
+ },
293
+ {
294
+ "name": "issuingCompany",
295
+ "type": "Edm.String",
296
+ "nullable": true
297
+ },
298
+ {
299
+ "name": "startDate",
300
+ "type": "Edm.Date",
301
+ "nullable": true
302
+ },
303
+ {
304
+ "name": "thumbnailUrl",
305
+ "type": "Edm.String",
306
+ "nullable": true
307
+ },
308
+ {
309
+ "name": "webUrl",
310
+ "type": "Edm.String",
311
+ "nullable": true
312
+ }
313
+ ],
314
+ "required": []
315
+ },
316
+ {
317
+ "name": "projectParticipation",
318
+ "fullName": "microsoft.graph.projectParticipation",
319
+ "namespace": "microsoft.graph",
320
+ "baseType": "itemFacet",
321
+ "properties": [
322
+ {
323
+ "name": "categories",
324
+ "type": "Collection(Edm.String)",
325
+ "nullable": true
326
+ },
327
+ {
328
+ "name": "client",
329
+ "type": "graph.companyDetail",
330
+ "nullable": true
331
+ },
332
+ {
333
+ "name": "collaborationTags",
334
+ "type": "Collection(Edm.String)",
335
+ "nullable": true
336
+ },
337
+ {
338
+ "name": "colleagues",
339
+ "type": "Collection(graph.relatedPerson)",
340
+ "nullable": true
341
+ },
342
+ {
343
+ "name": "detail",
344
+ "type": "graph.positionDetail",
345
+ "nullable": true
346
+ },
347
+ {
348
+ "name": "displayName",
349
+ "type": "Edm.String",
350
+ "nullable": true
351
+ },
352
+ {
353
+ "name": "sponsors",
354
+ "type": "Collection(graph.relatedPerson)",
355
+ "nullable": true
356
+ },
357
+ {
358
+ "name": "thumbnailUrl",
359
+ "type": "Edm.String",
360
+ "nullable": true
361
+ }
362
+ ],
363
+ "required": []
364
+ },
365
+ {
366
+ "name": "skillProficiency",
367
+ "fullName": "microsoft.graph.skillProficiency",
368
+ "namespace": "microsoft.graph",
369
+ "baseType": "itemFacet",
370
+ "properties": [
371
+ {
372
+ "name": "categories",
373
+ "type": "Collection(Edm.String)",
374
+ "nullable": true
375
+ },
376
+ {
377
+ "name": "collaborationTags",
378
+ "type": "Collection(Edm.String)",
379
+ "nullable": true
380
+ },
381
+ {
382
+ "name": "displayName",
383
+ "type": "Edm.String",
384
+ "nullable": true
385
+ },
386
+ {
387
+ "name": "proficiency",
388
+ "type": "graph.skillProficiencyLevel",
389
+ "nullable": true
390
+ },
391
+ {
392
+ "name": "thumbnailUrl",
393
+ "type": "Edm.String",
394
+ "nullable": true
395
+ },
396
+ {
397
+ "name": "webUrl",
398
+ "type": "Edm.String",
399
+ "nullable": true
400
+ }
401
+ ],
402
+ "required": []
403
+ },
404
+ {
405
+ "name": "webAccount",
406
+ "fullName": "microsoft.graph.webAccount",
407
+ "namespace": "microsoft.graph",
408
+ "baseType": "itemFacet",
409
+ "properties": [
410
+ {
411
+ "name": "description",
412
+ "type": "Edm.String",
413
+ "nullable": true
414
+ },
415
+ {
416
+ "name": "service",
417
+ "type": "graph.serviceInformation",
418
+ "nullable": true
419
+ },
420
+ {
421
+ "name": "statusMessage",
422
+ "type": "Edm.String",
423
+ "nullable": true
424
+ },
425
+ {
426
+ "name": "thumbnailUrl",
427
+ "type": "Edm.String",
428
+ "nullable": true
429
+ },
430
+ {
431
+ "name": "userId",
432
+ "type": "Edm.String",
433
+ "nullable": true
434
+ },
435
+ {
436
+ "name": "webUrl",
437
+ "type": "Edm.String",
438
+ "nullable": true
439
+ }
440
+ ],
441
+ "required": []
442
+ },
443
+ {
444
+ "name": "personWebsite",
445
+ "fullName": "microsoft.graph.personWebsite",
446
+ "namespace": "microsoft.graph",
447
+ "baseType": "itemFacet",
448
+ "properties": [
449
+ {
450
+ "name": "categories",
451
+ "type": "Collection(Edm.String)",
452
+ "nullable": true
453
+ },
454
+ {
455
+ "name": "description",
456
+ "type": "Edm.String",
457
+ "nullable": true
458
+ },
459
+ {
460
+ "name": "displayName",
461
+ "type": "Edm.String",
462
+ "nullable": true
463
+ },
464
+ {
465
+ "name": "thumbnailUrl",
466
+ "type": "Edm.String",
467
+ "nullable": true
468
+ },
469
+ {
470
+ "name": "webUrl",
471
+ "type": "Edm.String",
472
+ "nullable": true
473
+ }
474
+ ],
475
+ "required": []
476
+ },
477
+ {
478
+ "name": "personAnnualEvent",
479
+ "fullName": "microsoft.graph.personAnnualEvent",
480
+ "namespace": "microsoft.graph",
481
+ "baseType": "itemFacet",
482
+ "properties": [
483
+ {
484
+ "name": "date",
485
+ "type": "Edm.Date",
486
+ "nullable": true
487
+ },
488
+ {
489
+ "name": "displayName",
490
+ "type": "Edm.String",
491
+ "nullable": true
492
+ },
493
+ {
494
+ "name": "type",
495
+ "type": "graph.personAnnualEventType",
496
+ "nullable": true
497
+ }
498
+ ],
499
+ "required": []
500
+ },
501
+ {
502
+ "name": "personAnnotation",
503
+ "fullName": "microsoft.graph.personAnnotation",
504
+ "namespace": "microsoft.graph",
505
+ "baseType": "itemFacet",
506
+ "properties": [
507
+ {
508
+ "name": "detail",
509
+ "type": "graph.itemBody",
510
+ "nullable": true
511
+ },
512
+ {
513
+ "name": "displayName",
514
+ "type": "Edm.String",
515
+ "nullable": true
516
+ },
517
+ {
518
+ "name": "thumbnailUrl",
519
+ "type": "Edm.String",
520
+ "nullable": true
521
+ }
522
+ ],
523
+ "required": []
524
+ },
525
+ {
526
+ "name": "itemFacet",
527
+ "fullName": "microsoft.graph.itemFacet",
528
+ "namespace": "microsoft.graph",
529
+ "baseType": "entity",
530
+ "properties": [
531
+ {
532
+ "name": "allowedAudiences",
533
+ "type": "graph.allowedAudiences",
534
+ "nullable": true
535
+ },
536
+ {
537
+ "name": "createdBy",
538
+ "type": "graph.identitySet",
539
+ "nullable": true
540
+ },
541
+ {
542
+ "name": "createdDateTime",
543
+ "type": "Edm.DateTimeOffset",
544
+ "nullable": true
545
+ },
546
+ {
547
+ "name": "inference",
548
+ "type": "graph.inferenceData",
549
+ "nullable": true
550
+ },
551
+ {
552
+ "name": "isSearchable",
553
+ "type": "Edm.Boolean",
554
+ "nullable": true
555
+ },
556
+ {
557
+ "name": "lastModifiedBy",
558
+ "type": "graph.identitySet",
559
+ "nullable": true
560
+ },
561
+ {
562
+ "name": "lastModifiedDateTime",
563
+ "type": "Edm.DateTimeOffset",
564
+ "nullable": true
565
+ },
566
+ {
567
+ "name": "source",
568
+ "type": "graph.personDataSources",
569
+ "nullable": true
570
+ },
571
+ {
572
+ "name": "sources",
573
+ "type": "Collection(graph.profileSourceAnnotation)",
574
+ "nullable": true
575
+ }
576
+ ],
577
+ "required": []
578
+ },
579
+ {
580
+ "name": "entity",
581
+ "fullName": "microsoft.graph.entity",
582
+ "namespace": "microsoft.graph",
583
+ "properties": [
584
+ {
585
+ "name": "id",
586
+ "type": "Edm.String",
587
+ "nullable": false
588
+ }
589
+ ],
590
+ "required": [
591
+ "id"
592
+ ]
593
+ }
594
+ ],
595
+ "aliases": {
596
+ "personAnniversary": "personAnnualEvent",
597
+ "webSite": "personWebsite"
598
+ },
599
+ "labelTypeMap": {
600
+ "personAccount": "userAccountInformation",
601
+ "personName": "personName",
602
+ "personCurrentPosition": "workPosition",
603
+ "personAddresses": "itemAddress",
604
+ "personEmails": "itemEmail",
605
+ "personPhones": "itemPhone",
606
+ "personAwards": "personAward",
607
+ "personCertifications": "personCertification",
608
+ "personProjects": "projectParticipation",
609
+ "personSkills": "skillProficiency",
610
+ "personWebAccounts": "webAccount",
611
+ "personWebSite": "webSite",
612
+ "personAnniversaries": "personAnniversary",
613
+ "personNote": "personAnnotation"
614
+ }
615
+ }
@@ -1 +1 @@
1
- {"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../src/init/init.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,WAAW,EAAgB,MAAM,UAAU,CAAC;AAK1D,MAAM,MAAM,WAAW,GAAG;IACxB,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAC9B,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IAC1B,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAC9B,CAAC;AA+2DF,wBAAsB,eAAe,CAAC,OAAO,EAAE,aAAa,GAAG,OAAO,CAAC;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,WAAW,CAAA;CAAE,CAAC,CAyB1G;AAED,wBAAsB,mBAAmB,CACvC,OAAO,EAAE,aAAa,GACrB,OAAO,CAAC;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,WAAW,CAAA;CAAE,CAAC,CA2B9C;AAED,wBAAsB,iBAAiB,CAAC,OAAO,EAAE,aAAa,GAAG,OAAO,CAAC;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,WAAW,CAAA;CAAE,CAAC,CAwB5G;AAED,wBAAsB,aAAa,CAAC,OAAO,EAAE,aAAa,GAAG,OAAO,CAAC;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,WAAW,CAAA;CAAE,CAAC,CAUxG;AAED,wBAAsB,eAAe,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,WAAW,CAAA;CAAE,CAAC,CAmBxG;AAED,wBAAsB,aAAa,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,WAAW,CAAA;CAAE,CAAC,CAsHtG;AAED,wBAAsB,iBAAiB,CACrC,OAAO,EAAE,WAAW,GACnB,OAAO,CAAC;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,WAAW,CAAA;CAAE,CAAC,CAoH9C"}
1
+ {"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../src/init/init.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,WAAW,EAAgB,MAAM,UAAU,CAAC;AAO1D,MAAM,MAAM,WAAW,GAAG;IACxB,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAC9B,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IAC1B,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAC9B,CAAC;AA2oFF,wBAAsB,eAAe,CAAC,OAAO,EAAE,aAAa,GAAG,OAAO,CAAC;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,WAAW,CAAA;CAAE,CAAC,CAyB1G;AAED,wBAAsB,mBAAmB,CACvC,OAAO,EAAE,aAAa,GACrB,OAAO,CAAC;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,WAAW,CAAA;CAAE,CAAC,CA2B9C;AAED,wBAAsB,iBAAiB,CAAC,OAAO,EAAE,aAAa,GAAG,OAAO,CAAC;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,WAAW,CAAA;CAAE,CAAC,CAwB5G;AAED,wBAAsB,aAAa,CAAC,OAAO,EAAE,aAAa,GAAG,OAAO,CAAC;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,WAAW,CAAA;CAAE,CAAC,CAUxG;AAED,wBAAsB,eAAe,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,WAAW,CAAA;CAAE,CAAC,CAmBxG;AAED,wBAAsB,aAAa,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,WAAW,CAAA;CAAE,CAAC,CAsHtG;AAED,wBAAsB,iBAAiB,CACrC,OAAO,EAAE,WAAW,GACnB,OAAO,CAAC;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,EAAE,EAAE,WAAW,CAAA;CAAE,CAAC,CAoH9C"}