-
Notifications
You must be signed in to change notification settings - Fork 1
/
T-connector.wbpj
3933 lines (3933 loc) · 328 KB
/
T-connector.wbpj
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
<?xml version="1.0" encoding="utf-8"?>
<Storage>
<Project Version="8.1">
<base-designpoint-name valType="String">0</base-designpoint-name>
<timestamp-max valType="Int64">3693</timestamp-max>
<framework-build-version valType="String">19.0.136.0</framework-build-version>
<external-version-string valType="String">Release 19.0</external-version-string>
<last-saved-utc valType="String">02/15/2018 11:57:52</last-saved-utc>
<managed-categories valType="String">[report, misc, progress]</managed-categories>
<logHistory valType="StringArray">
<ArrayEntry Index="0">user@PC:C:\Users\user\AppData\Local\Temp\WorkbenchLogs\CoreEvents14776.log</ArrayEntry>
<ArrayEntry Index="1">user@PC:C:\Users\user\AppData\Local\Temp\WorkbenchLogs\CoreEvents9496.log</ArrayEntry>
<ArrayEntry Index="2">user@PC:C:\Users\user\AppData\Local\Temp\WorkbenchLogs\CoreEvents9092.log</ArrayEntry>
<ArrayEntry Index="3">user@PC:C:\Users\user\AppData\Local\Temp\WorkbenchLogs\CoreEvents14676.log</ArrayEntry>
<ArrayEntry Index="4">user@PC:C:\Users\user\AppData\Local\Temp\WorkbenchLogs\CoreEvents11792.log</ArrayEntry>
<ArrayEntry Index="5">user@PC:C:\Users\user\AppData\Local\Temp\WorkbenchLogs\CoreEvents9592.log</ArrayEntry>
<ArrayEntry Index="6">user@PC:C:\Users\user\AppData\Local\Temp\WorkbenchLogs\CoreEvents2040.log</ArrayEntry>
<ArrayEntry Index="7">user@PC:C:\Users\user\AppData\Local\Temp\WorkbenchLogs\CoreEvents10780.log</ArrayEntry>
</logHistory>
<expression-scope-container valType="String">Parameters</expression-scope-container>
<project-type valType="String">WB2</project-type>
<ReferenceCache>
<ProjectReferenceList>
<ReferenceList valType="String">{
"e83d3843-2c90-4a03-babe-83f3ba600509": "/FileContainer/FileReference:F2",
"18d755b7-04f8-456b-8424-5076eb0b3277": "/FileTypesContainer/FileType:GeometryFileType",
"6ac3f5da-1a84-47c8-99df-7b3741becb7e": "/FileTypesContainer/FileType:project",
"dea1beab-49b9-4755-a4be-decd6599c563": "/Schematic/Component:Geometry",
"fdafb1ad-197e-428d-ba42-0a0bf84d4936": "/Schematic/Component:Mesh",
"10d831d1-6732-474b-850c-01ed89cc0845": "/Schematic/Component:Setup",
"edba7e80-621b-4119-aa8e-2347d1c77c5e": "/Schematic/Component:Solution",
"aef1525b-8944-4df2-a80a-faddf78b9c68": "/Schematic/Component:Results",
"288dc1b3-a184-4e6d-bde0-6fb3170a4e54": "/Schematic/Template:Fluid Flow",
"81a62747-1042-438a-97b3-d47d0d7ce422": "/Schematic/Template:Fluid Flow (CFX)",
"aa4a9d93-cf7f-449e-acf5-638b39639849": "/Schematic/Template:Static Structural (ANSYS)",
"d592be41-9c38-4dc5-bc3f-e48ce6988620": "/Schematic/Template:Steady-State Thermal (ANSYS)",
"153bfb27-a2ad-4225-82bc-823f59d7554e": "/Schematic/Template:Modal (ANSYS)",
"cd4541af-ab82-4037-b76a-f7d44c0b00e8": "/Schematic/Template:Random Vibration (ANSYS)",
"f0fec6ef-5e39-407e-a99a-df4ad6505dc3": "/Schematic/Template:Response Spectrum (ANSYS)",
"d06ec36f-9c23-436a-8295-ad443a6bdbcf": "/Schematic/ComponentTemplate:GeometryCellTemplate",
"65399cc5-d2dd-45bf-a609-4e1750367562": "/Schematic/System:FFF",
"214ec792-3a79-4ded-ba6e-d737487c1d12": "/Schematic/ComponentTemplate:SimulationMeshingModelCellTemplate",
"43a7f070-d39f-44c7-b9f2-5918cb34aac1": "/Schematic/ComponentTemplate:FluentSetupCellTemplate",
"6f3e02c7-54f9-46ca-9ed9-5b377255f497": "/Schematic/ComponentTemplate:FluentResultsCellTemplate",
"d41c9f54-2b5e-47e8-9dc7-0b7be9c2674c": "/Schematic/ComponentTemplate:CFDPostTemplate",
"cebfac02-ccf9-4b5c-8947-bcb1ff2ce5b7": "/Units/Quantity:Quantity",
"10586c18-93ea-4954-acf1-e7b155071511": "/Units/Quantity:Quantity 1",
"d62b7b7e-0c7d-45bc-89c0-c11c89c70981": "/Units/Quantity:Quantity 2",
"a54e4a40-1e5c-4cb8-925a-248e0fe558c9": "/Units/Quantity:Quantity 3",
"25f0b4d0-4492-4d49-bd74-ff471f618b58": "/Units/Quantity:Quantity 4",
"cceee479-cb54-4d50-8436-48122335a9e6": "/Units/Quantity:Quantity 5",
"7481b5c5-cbd0-4203-ad7b-cd1077bc760b": "/Units/Quantity:Quantity 6",
"be71c8a8-a7fe-4292-86dc-a26f28600a3e": "/Units/Quantity:Quantity 7",
"5b4cc1d7-96e8-4980-b4f1-0df522c0e6bb": "/Units/Quantity:Quantity 8",
"2e34389d-aace-4f03-839b-527aa0cbb2f6": "/Units/Quantity:Quantity 9",
"80d29c49-325f-4cd9-8e4e-f6370b64e95f": "/Units/Quantity:Quantity 10",
"480e2973-60aa-4cee-9b64-158125bcc847": "/Units/Quantity:Quantity 11",
"12ab181c-46e4-4f33-a334-986d899503f8": "/Units/Quantity:Quantity 12",
"f9fb1173-6b98-4c28-9513-9ad3e1b7f86e": "/Units/Quantity:Quantity 13",
"cb734399-5937-4c9d-b38c-4c1ef17b92aa": "/Units/Quantity:Quantity 14",
"c2db6bbd-a7d2-4f61-a7f5-95292c930eae": "/Units/Quantity:Quantity 15",
"37940e35-8341-4cc5-aa4e-3445a55e7c90": "/Units/Quantity:Quantity 16",
"19f83492-34e0-4e9a-8734-3a35149bbbaa": "/Units/Quantity:Quantity 17",
"7944c677-568c-45c8-8c1e-622b1bcdbd93": "/Units/Quantity:Quantity 18",
"e1cc09df-fd3d-4a52-b50a-21a491092223": "/Units/Quantity:Quantity 19",
"f57d5761-0d3f-40d6-b8d7-6dbe2becd51e": "/Units/Quantity:Quantity 20",
"7c7e1e08-daf3-4812-806b-d58edf1f2b50": "/Units/Quantity:Quantity 21",
"8da57c3c-5ad2-4f8b-ad38-fc7beca8d08d": "/Units/Quantity:Quantity 22",
"042d6bae-30ca-49c6-9b83-ca6475cfb55d": "/Units/Quantity:Quantity 23",
"292d3fa7-c347-4e16-9c9c-d531fa8055dc": "/Units/Quantity:Quantity 24",
"909105c2-48e9-47e0-b5ac-d4a0eb2b5f02": "/Units/Quantity:Quantity 25",
"4e058a37-ff6e-40da-8cf9-a8f34f7d6ead": "/Units/Quantity:Quantity 26",
"80765edc-dcc0-432f-927c-6724c924b4ea": "/Units/Quantity:Quantity 27",
"29b1d454-e8f9-45ec-a080-5dfedc7ed180": "/Units/Quantity:Quantity 28",
"e13c121c-7c9e-42fa-a642-42f035287338": "/Units/Quantity:Quantity 29",
"ff3e48b1-186e-4cf7-9aa5-bd16115d436f": "/Units/Quantity:Quantity 30",
"0e0ec201-ffad-4959-ad6a-c55c28c4b88b": "/Units/Quantity:Quantity 31",
"1918812f-493f-48f9-93dc-d9c3c5d016b9": "/Units/Quantity:Quantity 32",
"f210a192-3c9e-4b27-960a-76c9d7a0a9e2": "/Units/Quantity:Quantity 33",
"c06b2b5b-d678-4027-87f0-8dfa21d4b204": "/Units/Quantity:Quantity 34",
"3418a8e5-2856-4487-9102-11e25b6a8af8": "/Units/Quantity:Quantity 35",
"37b73853-66de-44e9-a2ed-cadf2a0f8816": "/Units/Quantity:Quantity 36",
"476723ff-2606-4642-890e-f9506c15adfa": "/Units/Quantity:Quantity 37",
"91fbfee4-f0d7-4cca-ae4c-dbebaa6f61ad": "/Units/Quantity:Quantity 38",
"c8449d63-5bb0-4eed-a22e-65147fdfc45c": "/Units/Quantity:Quantity 39",
"d0115d32-9c52-411f-95c3-18a730a45265": "/Units/Quantity:Quantity 40",
"cea6a7a6-669b-449b-ac50-14fbb7d61dc4": "/Units/Quantity:Quantity 41",
"fdf67efb-5c0c-498e-bd02-8e55bdaab2b3": "/Units/Quantity:Quantity 42",
"730e8d14-2b8b-4c56-85b6-96d06d3926b6": "/Units/Quantity:Quantity 43",
"e11cbb76-7036-4c53-8051-60d9460f4607": "/Units/Quantity:Quantity 44",
"4b3356b8-07c5-478a-9da4-a3ab1c32cd17": "/Units/Quantity:Quantity 45",
"4d8717bf-befa-4053-9727-b234d5f816b7": "/Units/Quantity:Quantity 46",
"2e44c13e-0e52-4278-8d3b-f0413916ec13": "/Units/Quantity:Quantity 47",
"6ade8b41-9647-4f77-8ae7-09de3093389e": "/Units/Quantity:Quantity 48",
"5da4f3ea-a875-41c2-aa68-3f7aee514f9e": "/Units/Quantity:Quantity 49",
"f761c40b-fa24-4d1a-8026-c490774c0e78": "/Units/Quantity:Quantity 50",
"2cd2ae10-b250-428e-8390-059be029ed3d": "/Units/Quantity:Quantity 51",
"2a5c9187-c9ae-4ca8-8f3c-b9d8efccc730": "/Units/Quantity:Quantity 52",
"663e175e-3139-4b31-a7f1-6186d4922b0d": "/Units/Quantity:Quantity 53",
"f79dbf5a-83e4-420a-acd7-0b3996ad07b1": "/Units/Quantity:Quantity 54",
"1c4e4e48-f8e8-4cba-b286-8ca8130d5a32": "/Units/Quantity:Quantity 55",
"1a456c13-b56d-41b7-acdb-5edcaa09288d": "/Units/Quantity:Quantity 56",
"30a75d39-aad3-44c9-b27f-2bc7d5770f9c": "/Units/Quantity:Quantity 57",
"4b6de336-4fdf-4777-8902-33300f78ffa8": "/Units/Quantity:Quantity 58",
"254ff009-84d8-4d0c-987a-d271693096e9": "/Units/Quantity:Quantity 59",
"3c11cddc-73ed-46a3-bee9-9f7b82307ab2": "/Units/Quantity:Quantity 60",
"594b8e6e-3ca5-471f-b77d-1d57f6f57f0b": "/Units/Quantity:Quantity 61",
"008f538a-915b-49f2-9e09-c7c328fbc18c": "/Units/Quantity:Quantity 62",
"6f515fbf-3fb5-44c6-8b4d-6578eb602d26": "/Units/Quantity:Quantity 63",
"393e2e49-2ad4-40f9-9092-b2a3df69e1d1": "/Units/Quantity:Quantity 64",
"327fffc6-ae0a-4789-9ade-f93c3e08a12d": "/Units/Quantity:Quantity 65",
"1d7991e5-726f-4d52-8260-0bd150ca38cf": "/Units/Quantity:Quantity 66",
"4b1bd0f7-9606-462c-b4c8-327cf422d831": "/Units/Quantity:Quantity 67",
"96848471-d2e8-42b2-9e1c-7a07182a34a0": "/Units/Quantity:Quantity 68",
"a935a87f-e40e-43b3-ae29-ae0f84f1cb64": "/Units/Quantity:Quantity 69",
"0d2b640e-0390-47bb-943f-0f5d980e5331": "/Units/Quantity:Quantity 70",
"6c616380-3981-4266-90fc-02f4ebfa7e05": "/Units/Quantity:Quantity 71",
"33dbae15-1e89-46f5-92df-761d8cbca077": "/Units/Quantity:Quantity 72",
"2c3d86b8-0320-44d8-9611-cc3e862dba2f": "/Units/Quantity:Quantity 73",
"25db6493-ec9f-4a1a-988e-92fe1b76c53c": "/Units/Quantity:Quantity 74",
"36eff146-87b0-44e4-8bd2-3adf514ea752": "/Units/Quantity:Quantity 75",
"c3af58ff-d6f2-4418-b623-b966dffa0931": "/Units/Quantity:Quantity 76",
"bc128dc4-a2e1-453a-9bb2-03837e0c061e": "/Units/Quantity:Quantity 77",
"cc1e6dcc-59e8-49ad-be74-dbfd010955d0": "/Units/Quantity:Quantity 78",
"7a781fb2-ee13-49d7-8b63-74ad04ccd562": "/Units/Quantity:Quantity 79",
"236898be-fd04-4e9e-8a4f-9aa5b1548b0a": "/Units/Quantity:Quantity 80",
"882824f8-e2ed-4ccd-b6f5-65a42a35c613": "/Units/Quantity:Quantity 81",
"e58e5373-4c98-420a-b965-3b2d9cc6cddd": "/Units/Quantity:Quantity 82",
"5f6798e1-c28a-4522-b74b-c0aeb602c778": "/Units/Quantity:Quantity 83",
"b83c8438-f762-4654-b173-533d17af91e6": "/Units/Quantity:Quantity 84",
"55815fdc-e864-403d-84b7-6370ea5074df": "/Units/Quantity:Quantity 85",
"9668acab-509f-4123-9643-9a262cf85523": "/Units/Quantity:Quantity 86",
"f1c29d8b-a423-4bf5-8862-07c764b45355": "/Units/Quantity:Quantity 87",
"40057f6a-e104-4228-83a6-34f377a4144b": "/Units/Quantity:Quantity 88",
"c2461cbd-76ce-4ea6-ae02-5f5fe77f9404": "/Units/Quantity:Quantity 89",
"0a4591bf-62eb-4c1e-aaab-341836c9881e": "/Units/Quantity:Quantity 90",
"19857829-314a-4b6e-bcc0-0bf3f0435b38": "/Units/Quantity:Quantity 91",
"7df5dc4f-012d-47d4-8477-0feb2e663757": "/Units/Quantity:Quantity 92",
"6a577f08-1309-4e27-bad8-a062eaaa9860": "/Units/Quantity:Quantity 93",
"ef3b2dea-b8f3-4142-ae4e-2f6a97b5478e": "/Units/Quantity:Quantity 94",
"c7b30baa-5fcf-4306-b2bd-7b1556485d35": "/Units/Quantity:Quantity 95",
"bf0d5cfb-624e-4f8d-9a01-254601c85feb": "/Units/Quantity:Quantity 96",
"07805ff1-c01c-430e-80a1-13e1cd6e7e66": "/Units/Quantity:Quantity 97",
"4f84c89e-8972-4bde-81df-22805afa1e1f": "/Units/Quantity:Quantity 98",
"9e498bc2-2825-4e58-a95a-b4899f231965": "/Units/Quantity:Quantity 99",
"a43cfbc9-66f4-4fde-ae50-ed2c7de25d20": "/Units/Quantity:Quantity 100",
"d8ce24eb-d2b5-4932-93fc-e180f22aa1a4": "/Units/Quantity:Quantity 101",
"df16ca36-14e8-4a44-b603-c6007bd75396": "/Units/Quantity:Quantity 102",
"f11be661-f4b9-4546-8739-11174220d996": "/Units/Quantity:Quantity 103",
"0981606f-fdb7-4484-9bb8-4146e49cfefc": "/Units/Quantity:Quantity 104",
"6b7e323e-d87f-448d-aecb-e11550f1c4a4": "/Units/Quantity:Quantity 105",
"10241059-78b7-4312-b93a-fc5f99c74026": "/Units/Quantity:Quantity 106",
"f96eeaee-1027-4ed1-86ef-4b9af82eb768": "/Units/Quantity:Quantity 107",
"a31c31f0-7f65-481d-80c6-60268301737f": "/Units/Quantity:Quantity 108",
"47f62fcd-f1a1-458e-87ed-c34afdecdf69": "/Units/Quantity:Quantity 109",
"a18ca273-94a8-4540-b98a-027ab6829e13": "/Units/Quantity:Quantity 110",
"b6492b57-3168-4a89-a2f0-940224ca1ac7": "/Units/Quantity:Quantity 111",
"6314845c-45a9-482c-b691-04720f9bd9f3": "/Units/Quantity:Quantity 112",
"22e80269-8cda-41e7-bd6a-c5b2b40439e3": "/Units/Quantity:Quantity 113",
"8f37feea-27a5-444a-93b3-8ccd3efaad82": "/Units/Quantity:Quantity 114",
"52c3aff8-4aee-4d7f-8173-f345fd2b718d": "/Units/Quantity:Quantity 115",
"652317c6-8469-4e3a-b0cc-bd2cfee3fc79": "/Units/Quantity:Quantity 116",
"6b3ee0f5-e391-4bc6-8817-ccb253a5407f": "/Units/Quantity:Quantity 117",
"bd1e4fe5-ab47-4064-a67e-58d73ca15926": "/Units/Quantity:Quantity 118",
"20d2f2a2-23b0-443c-8677-61a56a2c3f74": "/Units/Quantity:Quantity 119",
"0ad4c3ee-e16b-405a-9126-ff0ff536e05a": "/Units/Quantity:Quantity 120",
"eee464fc-c874-4859-ae23-617244aa897e": "/Units/Quantity:Quantity 121",
"606cad21-b594-48f1-b383-4ef5ba6d2e0c": "/Units/Quantity:Quantity 122",
"49142816-26aa-48e8-8974-8d230735e786": "/Units/Quantity:Quantity 123",
"ea960488-906e-4514-ac0b-8cd4d0914082": "/Units/Quantity:Quantity 124",
"b3e21081-eab6-46a8-b3c2-e5ca1d58dc52": "/Units/Quantity:Quantity 125",
"8a626ada-3f76-4239-855a-abf0b44e6f82": "/Units/Quantity:Quantity 126",
"ac815ab6-efd2-44cc-b264-81be30ffec3d": "/Units/Quantity:Quantity 127",
"12c14c9e-5e66-40dc-b76d-bfd328b18f96": "/Units/Quantity:Quantity 128",
"7b813a3e-16ff-46cb-87a3-046bc3f18dd3": "/Units/Quantity:Quantity 129",
"4f62d68c-4ffd-41ec-a29c-87318cb37e3e": "/Units/Quantity:Quantity 130",
"c7471771-fd2a-435a-a1ea-e066550e8404": "/Units/Quantity:Quantity 131",
"16504a72-edd9-425f-bd35-b966abd96741": "/Units/Quantity:Quantity 132",
"de7f426d-ea4e-4062-9097-a24c6895d772": "/Units/Quantity:Quantity 133",
"94c1144f-ef8e-496f-ae43-e072c48a6f7f": "/Units/Quantity:Quantity 134",
"a21db0f9-5371-4e33-95d3-6b7ed65200de": "/Units/Quantity:Quantity 135",
"bcab9046-7a37-4bee-b5ce-36a89f28e63e": "/Units/Quantity:Quantity 136",
"039683f8-b7ba-488f-ace3-0e0629292426": "/Units/Quantity:Quantity 137",
"6db019c2-f847-4207-8fe4-09b8e5f5f3b9": "/Units/Quantity:Quantity 138",
"ffc96299-6459-46c3-af66-2bb953ad6e8f": "/Units/Quantity:Quantity 139",
"bfbaa6fd-e74d-4d0e-a8f3-e92177c96814": "/Units/Quantity:Quantity 140",
"b682352f-8afb-42a8-bb44-89724be0037c": "/Units/Quantity:Quantity 141",
"d82fef18-dc84-4f3d-9081-23aa149a87a4": "/Units/Quantity:Quantity 142",
"19ef6945-a358-41d7-97e8-afe3096498f8": "/Units/Quantity:Quantity 143",
"ab4c246a-c939-453f-9dc1-65fe5d5b57f3": "/Units/Quantity:Quantity 144",
"00e187ee-7d1f-45b8-ab26-f917abe80602": "/Units/Quantity:Quantity 145",
"3213622a-5307-4fa6-92f4-db5a2fdbba3d": "/Units/Quantity:Quantity 146",
"2c921b91-d4f5-4684-aeeb-358814ca113e": "/Units/Quantity:Quantity 147",
"bcdd1070-07af-4f3b-ab2b-59507fd3e297": "/Units/Quantity:Quantity 148",
"1078ffd6-ca91-468d-ba77-f2409e40248d": "/Units/Quantity:Quantity 149",
"16102c6b-c542-43a8-a0ad-f5237aaffa60": "/Units/Quantity:Quantity 150",
"ddd71839-702a-4a5a-ac6f-ec4a66193a53": "/Units/Quantity:Quantity 151",
"2941ed4d-ba43-4f12-824f-86b7a37a8b05": "/Units/Quantity:Quantity 152",
"c6fdb0b3-ead8-4dfb-b540-c9df95230897": "/Units/Quantity:Quantity 153",
"0b9450c1-e7d6-4165-9062-f3dd44a7b0f4": "/Units/Quantity:Quantity 154",
"f16a951c-2cbc-44ff-85ae-0fa33cd3fa33": "/Units/Quantity:Quantity 155",
"2dd66df6-40c9-4cf1-afcf-cd28c0629cb4": "/Units/Quantity:Quantity 156",
"692d1e74-b37e-4565-82cc-515bd0ae13e8": "/Units/Quantity:Quantity 157",
"add6fe31-b05f-44df-8b0a-eed28a54de00": "/Units/Quantity:Quantity 158",
"1233bd09-4376-4563-822e-cdf19afcedc5": "/Units/Quantity:Quantity 159",
"e96805d8-f745-43eb-afe4-13dc714a9c8e": "/Units/Quantity:Quantity 160",
"4bfe2d96-5a44-4ebe-97db-46ae15693218": "/Units/Quantity:Quantity 161",
"d05c7107-4a26-4402-b79a-dc16951eab2d": "/Units/Quantity:Quantity 162",
"1c8cbfd4-0e2d-497b-8a98-52b71cdb8778": "/Units/Quantity:Quantity 163",
"be84c3e7-161b-4448-9e55-8f7ab55f02a4": "/Units/Quantity:Quantity 164",
"b067dfd5-13d4-473d-bfde-233e8f65ccbe": "/Units/Quantity:Quantity 165",
"ea162e18-21df-471e-ad87-6b5fba8c2f4d": "/Units/Quantity:Quantity 166",
"0425cb9d-a0a3-40aa-bee9-0d7d60515722": "/Units/Quantity:Quantity 167",
"5749b041-70a8-4fda-bb69-c88a708869b7": "/Units/Quantity:Quantity 168",
"fb228ba4-3f3d-42bf-8412-3a3455065108": "/Units/Quantity:Quantity 169",
"99eacb62-f448-455d-8631-a433ca106a66": "/Units/Quantity:Quantity 170",
"c059b8d6-fb58-4e11-877c-7f38222e1a09": "/Units/Quantity:Quantity 171",
"859bf45e-85d3-4617-ba48-62fd1f98d4a5": "/Units/Quantity:Quantity 172",
"6e86c5cb-81b3-40d4-9280-860046ed3648": "/Units/Quantity:Quantity 173",
"720a20ef-0990-4741-9d8d-3af34dc661fa": "/Units/Quantity:Quantity 174",
"37d0e1fb-3bf4-4359-9413-78ed6a5ddb58": "/Units/Quantity:Quantity 175",
"7347bb33-d51f-4c41-bda5-d4d7acff5d13": "/Units/Quantity:Quantity 176",
"0748933e-4fcd-4e59-a1ca-d259db453036": "/Units/Quantity:Quantity 177",
"33f3aa1b-5731-48c8-8701-e892b4040e10": "/Units/Quantity:Quantity 178",
"379cb0aa-94a3-4079-bc84-2eeee27e17e8": "/Units/Quantity:Quantity 179",
"07d18705-60ad-46c9-9296-3aa587f2970e": "/Units/Quantity:Quantity 180",
"3bb78df0-2c4c-4b62-9e2b-5ca7a47f15d1": "/Units/Quantity:Quantity 181",
"ec98a5d9-71f3-4067-b535-27a0a11c258b": "/Units/Quantity:Quantity 182",
"f3efa98c-dcc2-4c7c-8f34-cb1e5cae1809": "/Units/Quantity:Quantity 183",
"a66ca159-d63c-4ead-ac2a-6517c3ed0578": "/Units/Quantity:Quantity 184",
"7542034f-bea3-4f88-8dec-4679f2d31246": "/Units/Quantity:Quantity 185",
"8121bdbf-4626-48ef-a3c2-d1b6d990efda": "/Units/Quantity:Quantity 186",
"80d163c9-445c-494c-aec5-394e10bdb2bb": "/Units/Quantity:Quantity 187",
"11b56afa-18fe-45e1-ba15-5fb516fb864f": "/Units/Quantity:Quantity 188",
"1c1023ee-1a60-4da1-ae69-7380637446c6": "/Units/Quantity:Quantity 189",
"2275639f-59a8-4e11-9825-07bce1c97c00": "/Units/Quantity:Quantity 190",
"901a4b7a-9cce-4726-9aad-cd99be784ff2": "/Units/Quantity:Quantity 191",
"68f8a5c6-734f-42c7-b181-c50888ee50a8": "/Units/Quantity:Quantity 192",
"f0fb9878-2805-41e0-82bf-b28e2e054e63": "/Units/Quantity:Quantity 193",
"6d44d4fc-a714-4569-886a-6a7dacd98125": "/Units/Quantity:Quantity 194",
"6e2e2b6a-06d7-47c2-bfb5-6c9dd823bed8": "/Units/Quantity:Quantity 195",
"4b8998c3-75fe-4daf-9413-d0a2b39948ec": "/Units/Quantity:Quantity 196",
"d24b0ef6-b83d-4ed6-a70e-82288d207008": "/Units/Quantity:Quantity 197",
"6a68a49e-5942-4ec8-868f-86360b839de0": "/Units/Quantity:Quantity 198",
"a079d4ab-7c4f-4f9d-b670-b700c57709b2": "/Units/Quantity:Quantity 199",
"39713f7d-3c0f-451e-9cb6-c25aa7a27630": "/Units/Quantity:Quantity 200",
"0a796b39-a418-4548-97f7-b24dba24db0d": "/Units/Quantity:Quantity 201",
"a97c9c55-2fb6-4636-a8d4-6238787e3e5f": "/Units/Quantity:Quantity 202",
"52aadd0e-8cbd-46d7-af56-f83f7a086139": "/Units/Quantity:Quantity 203",
"abf5b792-f480-4851-b3b3-137165ac4749": "/Units/Quantity:Quantity 204",
"dd9557ea-6c3c-4c22-b443-b45148e617df": "/Units/Quantity:Quantity 205",
"719f854c-a028-4204-a611-34691c0acf0a": "/Units/Quantity:Quantity 206",
"d011650d-9078-4e6b-934c-4a2a1381d5af": "/Units/Quantity:Quantity 207",
"a349f9ce-9bd8-4072-9d8b-7577ab13c390": "/Units/Quantity:Quantity 208",
"1cb15a73-4473-4baa-bfb0-eba11f9c39b2": "/Units/Quantity:Quantity 209",
"0f80b387-2d4e-445f-b58c-83652ae3a0be": "/Units/Quantity:Quantity 210",
"70e511ce-cf65-43bb-ad6e-d586e4ca4dd3": "/Units/Quantity:Quantity 211",
"69ea6b35-be91-4cc1-ae0a-b3d22e1bf410": "/Units/Quantity:Quantity 212",
"0f730e19-ab5c-4d83-8dc0-f184c67674a1": "/Units/Quantity:Quantity 213",
"f68e133d-ab96-4e90-93d9-6b02f66acaaf": "/Units/Quantity:Quantity 214",
"2c95238c-660b-400d-abdb-fed8a7c0fc0b": "/Units/Quantity:Quantity 215",
"45028c58-c1d9-4b69-86e0-99f584144d97": "/Units/Quantity:Quantity 216",
"c2a4b19a-a32b-4206-b52e-a97438e3983a": "/Units/Quantity:Quantity 217",
"e7b2e5b3-520b-4718-867b-da7a38002d26": "/Units/Quantity:Quantity 218",
"a63cdf5d-e38e-455b-9e8c-f1fab05e05c2": "/Units/Quantity:Quantity 219",
"4f888f1d-613d-4b10-bda1-7edc4b309a71": "/Units/Quantity:Quantity 220",
"73ecd910-a1e0-43fe-b17c-701208a9fc3f": "/Units/Quantity:Quantity 221",
"822070c7-f315-4a06-aed7-a1bc090afbcf": "/Units/Quantity:Quantity 222",
"38e9f658-67f1-4fc0-b16c-22bda3b999e2": "/Units/Quantity:Quantity 223",
"e971b699-3b1b-4d1f-ad34-7bb2243dde4d": "/Units/Quantity:Quantity 224",
"47ea17e0-f4a0-4882-8661-c89132603bef": "/Units/Quantity:Quantity 225",
"06b6786c-20d1-49a3-a9a1-4fe73d3eccb3": "/Units/Quantity:Quantity 226",
"8d27c4e1-e207-4ba2-9d8c-d6413d86e9bb": "/Units/Quantity:Quantity 227",
"b8af913f-6970-43a3-8170-f554f5b89cba": "/Units/Quantity:Quantity 228",
"0fe9c4cc-5c46-4f84-b915-aabe136deefb": "/Units/Quantity:Quantity 229",
"7cb0fd0c-cdfb-4c8f-8996-eecde112e160": "/Units/Quantity:Quantity 230",
"463f334c-d7a9-4e4e-85b7-c7a389282bc6": "/Units/Quantity:Quantity 231",
"ab4e7e25-0189-4455-90c7-91f1ebd4241c": "/Units/Quantity:Quantity 232",
"de5a75a6-be47-4656-8a1e-1f4e6a3c907a": "/Units/Quantity:Quantity 233",
"2d01ea62-cb6b-4581-9257-63ba23ab9d9f": "/Units/Quantity:Quantity 234",
"93ced213-12c1-4bf2-b780-1e68a219688a": "/Units/Quantity:Quantity 235",
"ed9f1063-5114-406f-95bd-5f6dd9c95a3e": "/Units/Quantity:Quantity 236",
"906a7552-3cc4-46be-9691-427544cbbc17": "/Units/Quantity:Quantity 237",
"57adb27b-7d75-4bee-9671-38579d42ecf3": "/Units/Quantity:Quantity 238",
"edd7d0b7-9ced-450b-8960-0a4293bd398d": "/Units/Quantity:Quantity 239",
"d9b7d3e1-7aec-449d-9c59-2bde71f42c6b": "/Units/Quantity:Quantity 240",
"799e82d1-64f6-4b66-96b3-7e0d8a134f24": "/Units/Quantity:Quantity 241",
"3532c444-b504-43a8-aaaf-7d7aa6a0a47a": "/Units/Quantity:Quantity 242",
"9ee979b9-f6f0-4876-bcd0-63ca3ff59143": "/Units/Quantity:Quantity 243",
"b6f03229-4ea0-4053-ae73-173e4d1b6fd7": "/Units/Quantity:Quantity 244",
"6ace5588-0fd5-40ee-8cf5-b4e7a41d2597": "/Units/Quantity:Quantity 245",
"0aaa3054-46c9-4260-ab73-73c6ccec5cd0": "/Units/Quantity:Quantity 246",
"4021048d-a922-4fa3-845b-c95ac6a9c218": "/Units/Quantity:Quantity 247",
"2718964d-cb72-4996-a89f-01505db070e2": "/Units/Quantity:Quantity 248",
"3b7bcb3e-6e0e-48c3-b653-fedd76be699d": "/Units/Quantity:Quantity 249",
"20803da9-60f6-4032-8c3f-610c9c892153": "/Units/Quantity:Quantity 250",
"a6574245-aaf3-48a7-abea-1acc0787eb2c": "/Units/Quantity:Quantity 251",
"1ad3315f-5a32-4212-bd50-90e562a4d63a": "/Units/Quantity:Quantity 252",
"b1649fd2-082e-4fa7-955b-3632c2644e5a": "/Units/Quantity:Quantity 253",
"2f82ae79-11d1-4640-a372-cbd6a926a692": "/Units/Quantity:Quantity 254",
"72331d8c-9dff-4dcb-ae12-2d2c1b61b087": "/Units/Quantity:Quantity 255",
"9edac025-7309-4281-8c39-7551444b9262": "/Units/Quantity:Quantity 256",
"872295f2-ca00-4916-860c-321616a19fc4": "/Units/Quantity:Quantity 257",
"052f80d8-967b-4b12-8ea4-dce5a44e6f81": "/Units/Quantity:Quantity 258",
"10082174-db05-418b-9274-3a1e3a7040f5": "/Units/Quantity:Quantity 259",
"5f8543d0-0835-41fe-a0fa-3b357b4a64bb": "/Units/Quantity:Quantity 260",
"ec7c1608-2b93-47ee-97f9-84e1d20901ba": "/Units/Quantity:Quantity 261",
"4150215e-0a94-437d-aca6-f919ace8ed5c": "/Units/Quantity:Quantity 262",
"a7b93461-71b7-4162-a0e8-4f2f8d306dc9": "/Units/Quantity:Quantity 263",
"f0290759-5c76-41e6-bc92-57554cf1590b": "/Units/Quantity:Quantity 264",
"60951300-d6da-4e74-b13a-b1d5e2dfce99": "/Units/Quantity:Quantity 265",
"79095ada-9662-4fda-b7f6-802a2b81c69e": "/Units/Quantity:Quantity 266",
"27d55139-a692-4eae-a906-57ce461a1edf": "/Units/Quantity:Quantity 267",
"ebe4379d-9c0e-4d79-9890-6132f15841d3": "/Units/Quantity:Quantity 268",
"ce91210a-62cb-484d-90a4-72e45cadbdd3": "/Units/Quantity:Quantity 269",
"1ea4f2c3-d82c-4e4f-ab5c-547c7a0d283e": "/Units/Quantity:Quantity 270",
"7d2c8b9c-0683-41a1-8f87-08f3d2233ead": "/Units/Quantity:Quantity 271",
"27d1ac9f-93de-415d-832c-b8ce7aa0b697": "/Units/Quantity:Quantity 272",
"243c5e0b-8452-486d-ac0b-cd883e202a7b": "/Units/Quantity:Quantity 273",
"bfee1bf4-66f0-4c99-8398-fac8636a5fa8": "/Units/Quantity:Quantity 274",
"fedc81bf-37ae-478c-a8ba-e0ab3d0b5615": "/Units/Quantity:Quantity 275",
"ed84e3b1-5054-4f7d-8bfc-88cda17daabc": "/Units/Quantity:Quantity 276",
"a32f9ff8-33ef-4d69-b96c-ae9ff7baa5a5": "/Units/Quantity:Quantity 277",
"bfd96666-2d8d-4fad-8316-395f1c784253": "/Units/Quantity:Quantity 278",
"3075990a-a7f0-4807-bfcf-10341605f620": "/Units/Quantity:Quantity 279",
"071dacbb-e029-4556-9f5e-a2730da1eef9": "/Units/Quantity:Quantity 280",
"b72392ef-a2b8-4eb5-8261-f67af35b0178": "/Units/Quantity:Quantity 281",
"2acdf880-7b91-41b7-8454-b956faffb11a": "/Units/Quantity:Quantity 282",
"2d0eea26-40d3-4fc5-9aee-52fcb3c16bff": "/Units/Quantity:Quantity 283",
"7593833d-a101-4ac6-89c1-fa7ccc442f6b": "/Units/Quantity:Quantity 284",
"cf82d260-0a66-4851-932a-4be102a2fbab": "/Units/Quantity:Quantity 285",
"35a58258-cfbe-4f05-8de0-f5ad00afc0f2": "/Units/Quantity:Quantity 286",
"40c379f1-6773-4a7f-a5bd-ba621888e59d": "/Units/Quantity:Quantity 287",
"e9554c9d-bdb5-4f6f-9d1c-a580c43f0f99": "/Units/Quantity:Quantity 288",
"652ea185-6db2-4372-952c-391198545cc6": "/Units/Quantity:Quantity 289",
"b5c0ee6f-5c8c-4ebf-a362-09c99c348d5f": "/Units/Quantity:Quantity 290",
"dd1ac4b6-8353-4bcb-a177-56abe989561a": "/Units/Quantity:Quantity 291",
"26be04fa-7795-4df7-b749-d551996b5375": "/Units/Quantity:Quantity 292",
"3bcdd9f1-5ab6-444d-9284-6e0b8e1ce762": "/Units/Quantity:Quantity 293",
"578df6c7-ba9f-42f4-af07-2d56ff0fb361": "/Units/Quantity:Quantity 294",
"380c9290-175f-457d-81ae-e689adf75076": "/Units/Quantity:Quantity 295",
"cd6e6ac1-af6f-4565-a6c8-0ba3d08e50a7": "/Units/Quantity:Quantity 296",
"af180466-c71c-4c45-a1a2-13d2114b2db6": "/Units/Quantity:Quantity 297",
"8804d9fa-b234-4088-9128-3328f25cfa29": "/Units/Quantity:Quantity 298",
"4ac7990e-b284-494b-a714-7a533b7db94d": "/Units/Quantity:Quantity 299",
"e2565cde-60b9-47d9-aa3c-debeca71da4b": "/Units/Quantity:Quantity 300",
"2f1b1fbf-79af-40ba-ad58-cc8be01e783b": "/Units/Quantity:Quantity 301",
"df73a7ac-2445-4c15-ab8a-f95c58a09236": "/Units/Quantity:Quantity 302",
"b38c473d-13f2-4cf3-ba86-56ef351e0215": "/Units/Quantity:Quantity 303",
"22645936-521d-4e93-9982-0d82995aa6b8": "/Units/Quantity:Quantity 304",
"e51e6ab9-135b-488d-bc56-6e538e11a771": "/Units/Quantity:Quantity 305",
"d1e4c579-5ae3-4469-a8e1-1a6127f68710": "/Units/Quantity:Quantity 306",
"76c372c2-c0c8-4f4e-a155-670cf7b0d1df": "/Units/Quantity:Quantity 307",
"d455d767-7429-45be-b7b2-479b1b09ef6a": "/Units/Quantity:Quantity 308",
"2eb7e452-e276-49eb-9f05-add3fcbaa948": "/Units/Quantity:Quantity 309",
"64df6d02-faee-4da4-98ef-6ccb0bb94211": "/Units/Quantity:Quantity 310",
"cfc37e2a-e3bf-4bcd-9e9c-088253a00f84": "/Units/Quantity:Quantity 311",
"a5d5abba-771a-4b17-b89b-346e1417d711": "/Units/Quantity:Quantity 312",
"b88600db-ea3f-4331-a8bd-403979cfa3b2": "/Units/Quantity:Quantity 313",
"476aae53-bd54-4ca8-90c9-bd7feeacdd82": "/Units/Quantity:Quantity 314",
"137cff58-4f67-4287-a06d-33078ab9ee4c": "/Units/Quantity:Quantity 315",
"f8eb0eb0-065d-4f3e-a623-9f1ca9c45422": "/Units/Quantity:Quantity 316",
"b3210985-4d3f-4c4e-a0f2-6e2cea1bced5": "/Units/Quantity:Quantity 317",
"ac2ff9c1-627e-41d9-9af6-c24ccc34371a": "/Units/Quantity:Quantity 318",
"4db9b74c-4415-411f-88e7-09564fc41f4b": "/Units/Quantity:Quantity 319",
"e6dde077-03df-4319-8458-005d3331e9fe": "/Units/Quantity:Quantity 320",
"01931cbd-7665-45e9-a9ff-e417f6906b19": "/Units/Quantity:Quantity 321",
"60929b3d-7e6b-455f-9649-c378ef648276": "/Units/Quantity:Quantity 322",
"8a7dcc50-72aa-4a1a-8340-0d5532c3bdc5": "/Units/Quantity:Quantity 323",
"efacae22-7e67-4529-be1b-62797794460a": "/Units/Quantity:Quantity 324",
"bd77a0e1-3794-4d3f-8aea-2e2886554f25": "/Units/Quantity:Quantity 325",
"2c08ad4b-a351-4074-9593-22d2bfee6143": "/Units/Quantity:Quantity 326",
"c11e33e8-c389-4b7f-9d57-6cfcb9c0af0c": "/Units/Quantity:Quantity 327",
"474f1114-1c3c-49a3-be27-a75a6fdbb0fe": "/Units/Quantity:Quantity 328",
"b60bf6bb-f47d-497e-a86f-eacbe41ae33d": "/Units/Quantity:Quantity 329",
"615e7d7b-d045-464c-baf0-da27194594b3": "/Units/Quantity:Quantity 330",
"a09185d5-2cf5-41d0-b4fb-b1923934fb71": "/Units/Quantity:Quantity 331",
"0bf4fe2e-a6b6-4982-a571-647fd83a70ba": "/Units/Quantity:Quantity 332",
"58937011-b69b-4c85-91a7-361be0a0fe67": "/Units/Quantity:Quantity 333",
"d90f3dde-b6bc-4245-a682-e618fb16a543": "/Units/Quantity:Quantity 334",
"1a6fc8e5-a13d-44c0-a5a1-d6759541f33d": "/Units/Quantity:Quantity 335",
"656c395b-42cb-4e8b-86e1-52006b11221c": "/Units/Quantity:Quantity 336",
"da71e9c0-806b-4178-8d6a-530c221d7c87": "/Units/Quantity:Quantity 337",
"59283d68-a2c9-43da-85f2-4e8b721e2f3e": "/Units/Quantity:Quantity 338",
"75db51d1-b2c1-4230-a30e-188e4603ac0a": "/Units/Quantity:Quantity 339",
"937bf57c-91bb-4709-8313-456513e3a5d7": "/Units/Quantity:Quantity 340",
"1aa25330-6af3-48b0-81bc-722cc9a78c91": "/Units/Quantity:Quantity 341",
"931f38c8-41ce-40db-acd0-92a62968f524": "/Units/Quantity:Quantity 342",
"dbc48e88-aaad-4971-b49b-5808db6a7727": "/Units/Quantity:Quantity 343",
"f51e63a3-2d65-4f4b-86ac-53ed905886d5": "/Units/Quantity:Quantity 344",
"495528da-4b16-44ab-8eee-c1fdc8b0c0d8": "/Units/Quantity:Quantity 345",
"80434c3a-8ebc-44d4-86f7-935e40f2cf09": "/Units/Quantity:Quantity 346",
"f651249b-7eb2-41d2-8aa6-caaa704623cf": "/Units/Quantity:Quantity 347",
"b98082e8-b661-42a5-830c-feb6c7770e16": "/Units/Quantity:Quantity 348",
"8e4fac46-0d21-47cc-9bc0-9fb12a8904a2": "/Units/Quantity:Quantity 349",
"ce045045-831a-4cbe-8210-8f16734ca580": "/Units/Quantity:Quantity 350",
"d418f370-fcdc-43fb-b5f8-89e2663f9697": "/Units/Quantity:Quantity 351",
"9739e795-1a6a-4ae8-a010-1ced0fccc64f": "/Units/Quantity:Quantity 352",
"73db9b0e-f4b0-4947-b367-8b3328bb5446": "/Units/Quantity:Quantity 353",
"c461fe61-25ac-4f65-9455-669ccfaa558e": "/Units/Quantity:Quantity 354",
"40ff5fcd-b46d-49fe-84e9-b2412a832f13": "/Units/Quantity:Quantity 355",
"b7d20837-d588-45d3-a0be-c8985a9dddb7": "/Units/Quantity:Quantity 356",
"d7de0ac2-ada2-44c4-8cd4-5f2c59803fc7": "/Units/Quantity:Quantity 357",
"33a3a9c4-60b3-42d2-b1ec-c87d90ca681e": "/Units/Quantity:Quantity 358",
"2af75c08-6b77-4772-8097-db885262c09d": "/Units/Quantity:Quantity 359",
"da4ab6a8-5845-433b-bb99-fccdbf821943": "/Units/Quantity:Quantity 360",
"9b558f9d-1cbe-43ea-b4b4-1fcbe41b8981": "/Units/Quantity:Quantity 361",
"37d8348a-4218-48b9-8f4b-9f5657514fb3": "/Units/Quantity:Quantity 362",
"3698b6bd-a67b-497d-8f95-75c60c1ec04f": "/Units/Quantity:Quantity 363",
"107ba350-9009-40ae-9e4f-0ff6ae71ec29": "/Units/Quantity:Quantity 364",
"319ec2e4-d6d2-46a9-85d4-f2452584457e": "/Units/Quantity:Quantity 365",
"f533cd3b-c773-4fff-8b9c-6630eccbb9b8": "/Units/Quantity:Quantity 366",
"f51f7c78-f69a-4621-956e-9bb401d754d4": "/Units/Quantity:Quantity 367",
"d30766e8-9f92-4ef8-9d32-95df829019d3": "/Units/Quantity:Quantity 368",
"124354a7-db57-49dc-8566-1c76149ab050": "/Units/Quantity:Quantity 369",
"2f583913-f467-4bca-ab2d-439eedf505fc": "/Units/Quantity:Quantity 370",
"082804e5-c2a8-45d4-907d-62371c2b2b48": "/Units/Quantity:Quantity 371",
"79befaaf-5745-48eb-a545-5f7579fffb6c": "/Units/Quantity:Quantity 372",
"a4987d6e-771d-431b-bc19-c85cf5f22e9a": "/Units/Quantity:Quantity 373",
"16e7cde5-61a8-458c-8b03-cdac82f8bf34": "/Units/Quantity:Quantity 374",
"e24cce85-d283-44ad-9a15-961555508e48": "/Units/Quantity:Quantity 375",
"4e107198-b25c-4290-a598-24de24af1b57": "/Units/Quantity:Quantity 376",
"718e325d-e3dd-4992-8896-a70315b13a4f": "/Units/Quantity:Quantity 377",
"6bf98876-e602-48c2-bba3-4452c59b99ee": "/Units/Quantity:Quantity 378",
"bbab84c2-de8c-4190-a0e5-df07af9fcb0d": "/Units/Quantity:Quantity 379",
"996b88bb-1ffc-48b2-8449-fec91b2df540": "/Units/Quantity:Quantity 380",
"23095d07-9437-4a56-844e-f8e8db3425ca": "/Units/Quantity:Quantity 381",
"0cc82ee0-59bd-40bf-9319-c24552627af9": "/Units/Quantity:Quantity 382",
"71212adf-4614-4514-8466-93f87daa2bf9": "/Units/Quantity:Quantity 383",
"aee39acf-ad18-4a40-8230-173b6c991728": "/Units/Quantity:Quantity 384",
"ac2b4a5e-9b5f-492a-8e92-f9a970d84fe5": "/Units/Quantity:Quantity 385",
"c3399396-f2f2-4c84-b870-46cd8f7abf81": "/Units/Quantity:Quantity 386",
"85097378-1b2b-44a0-a4da-57e2fe1f6190": "/Units/Quantity:Quantity 387",
"bb191a53-fe5f-43b3-89c7-ecf07d3ee113": "/Units/Quantity:Quantity 388",
"ee967e9e-9492-4fd6-b1a6-20f3d22225f3": "/Units/Quantity:Quantity 389",
"be7a6196-fc22-4a69-871a-68b1ba94a2cf": "/Units/Quantity:Quantity 390",
"0e6df047-a1c5-4d3f-b0f8-ab4f0bcca684": "/Units/Quantity:Quantity 391",
"ac9a6f32-17ac-4781-9653-3f0191f6c7b9": "/Units/Quantity:Quantity 392",
"0411f5c9-5c2c-4356-a477-af1312347069": "/Units/Quantity:Quantity 393",
"95dde601-b9ab-4863-b578-7b8ddac9fcc8": "/Units/Quantity:Quantity 394",
"96ffec62-47fd-4d11-aa04-f24e193ea7d5": "/Units/Quantity:Quantity 395",
"90a4712d-7195-49da-864f-faff713215f6": "/Units/Quantity:Quantity 396",
"b2a47846-a2bd-4a15-b19c-ee689e7c844d": "/Units/Quantity:Quantity 397",
"77168a8a-9208-45aa-973d-2ac7e8c87b56": "/Units/Quantity:Quantity 398",
"2d651f15-bcd7-4f26-9d0e-61dfee59373f": "/Units/Quantity:Quantity 399",
"c478d086-7bdd-4c52-970d-d796ef8ca7ae": "/Units/Quantity:Quantity 400",
"709fc6cb-9bfb-437d-be28-620c1853efa9": "/Units/Quantity:Quantity 401",
"aeaba28e-7a9b-4bc1-a38d-6c5518075c83": "/Units/Quantity:Quantity 402",
"83f5ea41-b218-4b99-877c-64e965a17961": "/Units/Quantity:Quantity 403",
"fbe09467-0981-447c-ae3d-a78c6722134a": "/Units/Quantity:Quantity 404",
"bbb36eb6-b578-487c-b062-1d834659d33c": "/Units/Quantity:Quantity 405",
"ee7161d8-fdd0-49fd-ba13-13b4ff8b87e6": "/Units/Quantity:Quantity 406",
"3043cd4b-dbb1-4598-8625-11b8c1ef4b8d": "/Units/Quantity:Quantity 407",
"bcf69d08-fb54-4d0f-ad1c-824c16c97c6c": "/Units/Quantity:Quantity 408",
"cb9753af-9a26-4ca5-918d-3baa29ea83a7": "/Units/Quantity:Quantity 409",
"af2c35ea-7446-4808-a96e-15b245cae673": "/Units/Quantity:Quantity 410",
"7a3bc3bc-a753-408d-bf39-d6a417ea633f": "/Units/Quantity:Quantity 411",
"7a3ad0a9-4572-4db4-aab7-571fa31b2ece": "/Units/Quantity:Quantity 412",
"1526d8ca-1fcc-4523-ac5f-a679972dd38a": "/Units/Quantity:Quantity 413",
"cc972da2-7431-4c46-9a4f-354159e8726b": "/Units/Quantity:Quantity 414",
"a87e664a-4ca1-4b56-96d0-31983fc686f2": "/Units/Quantity:Quantity 415",
"d6140075-cd8f-4518-b621-01ba8d6ea227": "/Units/Quantity:Quantity 416",
"7ab4f64d-5f97-486e-aaf6-bf783cb2428f": "/Units/Quantity:Quantity 417",
"93d7c109-03a2-4570-b7c2-bbd110cb271e": "/Units/Quantity:Quantity 418",
"799a1a2a-9313-4b76-862c-8eb051ff9d85": "/Units/Quantity:Quantity 419",
"e8e9a425-a4a1-42ca-9826-34f0bed507cc": "/Units/Quantity:Quantity 420",
"baf6c8fb-ab04-41b9-aaec-7277f88f4712": "/Units/Quantity:Quantity 421",
"70e38de1-179b-4e93-a964-a30f2360e488": "/Units/Quantity:Quantity 422",
"4891642d-aa06-4792-8a42-869b254f1860": "/Units/Quantity:Quantity 423",
"2222cbca-0ecd-4090-8501-5f0d92a69285": "/Units/Quantity:Quantity 424",
"af56dfc2-37c0-4fa0-949c-693637c98a5d": "/Units/Quantity:Quantity 425",
"4607b9ac-4b05-4247-99c5-ea807bfc2616": "/Units/Quantity:Quantity 426",
"de9d1f0d-c57b-4e89-bdb5-60302b8c0730": "/Units/Quantity:Quantity 427",
"9566c26f-ef9c-440f-80d7-47c37e206e52": "/Units/Quantity:Quantity 428",
"3764aad4-6b91-4786-868d-015a92bd3a17": "/Units/Quantity:Quantity 429",
"6b1ea827-5866-4fb6-935b-9f11c213990f": "/Units/Quantity:Quantity 430",
"4adcfccd-e0cc-49eb-9405-139f034c9a1f": "/Units/Quantity:Quantity 431",
"e9eff810-94a1-4ddf-8d66-d84ebc524897": "/Units/Quantity:Quantity 432",
"0510cd3f-e183-427c-bf56-f6bc9e238287": "/Units/Quantity:Quantity 433",
"101d70d6-df35-435e-8d30-d78d59cd448a": "/Units/Quantity:Quantity 434",
"fcee00e8-9750-4f08-a569-4f2c23b1ba7a": "/Units/Quantity:Quantity 435",
"581c897c-5d78-4bc3-a3d7-f044f564016f": "/Units/Quantity:Quantity 436",
"0a41837b-66db-4672-923f-ee3fa8f2fd6f": "/Units/Quantity:Quantity 437",
"58c8f12c-1010-410a-bb7a-b178178c531c": "/Units/Quantity:Quantity 438",
"147866a3-dc12-4804-977d-e16094b6d956": "/Units/Quantity:Quantity 439",
"1ccb42ba-1f9d-4481-be4d-4ebe6853e60a": "/Units/Quantity:Quantity 440",
"acd8e34a-df16-489e-86bc-126dec30eaf1": "/Units/Quantity:Quantity 441",
"19e56273-fd34-4e46-b1ea-937725f12d2f": "/Units/Quantity:Quantity 442",
"6cd28cc4-4d6f-4bef-a53b-c20a3debc3f6": "/Units/Quantity:Quantity 443",
"ac80a5a2-54b2-4d9d-be8e-24a6f6fbf421": "/Units/Quantity:Quantity 444",
"7093b730-5467-4389-9b4f-a012bb34ffa7": "/Units/Quantity:Quantity 445",
"ab128952-4596-466d-bd08-405c83c988c8": "/Units/Quantity:Quantity 446",
"ecc7d7ef-b4c5-47a5-8df9-bcd042b382a4": "/Units/Quantity:Quantity 447",
"41d9cc7f-b3d4-4e30-896b-21bffa72616e": "/Units/Quantity:Quantity 448",
"886f93fa-08fa-4a91-8610-2c90ab58f7ed": "/Units/Quantity:Quantity 449",
"6d06f2e2-defa-4ae5-b615-93cfef3dae83": "/Units/Quantity:Quantity 450",
"5b72d455-025a-45a7-bab6-48d6afbddd21": "/Units/Quantity:Quantity 451",
"2be99e7a-4c64-45cc-8010-27cbfdabe2a9": "/Units/Quantity:Quantity 452",
"5677ffae-ae48-4a9f-8077-18cea929ce37": "/Units/Quantity:Quantity 453",
"e13d3b37-9ed1-4476-92e2-929716c0d0f8": "/Units/Quantity:Quantity 454",
"25ad077a-ad67-4a01-ab57-650c9ee23f2f": "/Units/Quantity:Quantity 455",
"bef704d2-bca1-4143-8237-a6584eef0fd2": "/Units/Quantity:Quantity 456",
"d449d0ea-e97f-4113-b8fe-cecc9217a172": "/Units/Quantity:Quantity 457",
"c221f391-0e67-4967-a46d-9ef7966600b9": "/Units/Quantity:Quantity 458",
"5283c281-dfb8-4a81-9332-d179a771060c": "/Units/Quantity:Quantity 459",
"ce13e1dc-3639-454e-99ff-d58aaadf3aa1": "/Units/Quantity:Quantity 460",
"4b7d9d32-1696-4183-9a82-996317d914ed": "/Units/Quantity:Quantity 461",
"2babd4bf-a49c-4d06-8d37-54087ca6ed39": "/Units/Quantity:Quantity 462",
"76cbd10f-58b8-47e4-a92e-7a7990e06895": "/Units/Quantity:Quantity 463",
"2695d92d-a322-4998-b829-c5204986c48b": "/Units/Quantity:Quantity 464",
"7c94e4dd-920c-4c6b-8047-dd2fe614e9f8": "/Units/Quantity:Quantity 465",
"f471c813-fc54-460d-86af-29174a060017": "/Units/Quantity:Quantity 466",
"4d113391-ae60-40aa-a1f7-6693489f882e": "/Units/Quantity:Quantity 467",
"cbd5c30c-c285-47db-bfe1-fd83defa075d": "/Units/Quantity:Quantity 468",
"670ca0ec-73f5-44d9-b110-f2da3d728cfc": "/Units/Quantity:Quantity 469",
"2ee51dc2-f2e4-4197-ae7a-eafc05b1f31b": "/Units/Quantity:Quantity 470",
"59c94bec-2443-4f55-a35d-1f691bf22936": "/Units/Quantity:Quantity 471",
"cf60231f-e024-44de-b529-dcc3c7795cce": "/Units/Quantity:Quantity 472",
"b2f32c5c-18eb-4e24-b5aa-4d413c9542d4": "/Units/Quantity:Quantity 473",
"db7e4a29-ea82-4f24-bd0b-2c63220d1e44": "/Units/Quantity:Quantity 474",
"ec2c6a4a-521e-4b8d-916d-a3ce2c78cf3d": "/Units/Quantity:Quantity 475",
"7f721ed7-66ae-4004-8a3b-edc6a34d4da5": "/Units/Quantity:Quantity 476",
"aeb0dc9c-4c12-473a-aa4e-939a88ca5bd1": "/Units/Quantity:Quantity 477",
"07868b51-8fda-4c01-b88a-34798565190c": "/Units/Quantity:Quantity 478",
"9616df20-134f-4ec5-9810-79befc0b8d8b": "/Units/Quantity:Quantity 479",
"e15f77c1-d41b-4b3b-993b-6e2847a45241": "/Units/Quantity:Quantity 480",
"0bc74241-e278-4c7c-b718-52201221473d": "/Units/Quantity:Quantity 481",
"68b0d5b8-0cd4-4d17-b19a-2f51a7f7d9f3": "/Units/Quantity:Quantity 482",
"d8f92854-5305-4ebf-893e-5ddd1306f32c": "/Units/Quantity:Quantity 483",
"49515d31-e2c1-43cb-ac01-5f8906c96f90": "/Units/Quantity:Quantity 484",
"c143e0a4-1b0f-452f-bd6d-c5fe74553aff": "/Units/Quantity:Quantity 485",
"fce1313c-8c79-4b37-8c16-59aded4d7b2b": "/Units/Quantity:Quantity 486",
"1cd1624a-5fc7-4f7f-bf76-403cc06ea769": "/Units/Quantity:Quantity 487",
"b5b8ee83-5858-4d32-8298-1dadfa9ec5dd": "/Units/Quantity:Quantity 488",
"606f834a-4b2c-4ee4-bc0a-dfc6777d42bd": "/Units/Quantity:Quantity 489",
"fd94d126-b899-4899-b5a6-c53138e13287": "/Units/Quantity:Quantity 490",
"30f4507d-2492-47d7-97d3-844b5603a0b7": "/Units/Quantity:Quantity 491",
"0619f7ab-2e41-4d79-9de3-33245fe6bad1": "/Units/Quantity:Quantity 492",
"a4bd835e-c974-4874-8b57-9d11afcfc47b": "/Units/Quantity:Quantity 493",
"c5e28ba5-fac6-4194-ba88-5b4b42e5a834": "/Units/Quantity:Quantity 494",
"7cdbf335-fc5e-4228-92e1-644033db3280": "/Units/Quantity:Quantity 495",
"a8e246d5-5d02-4319-bf61-7a6bd0cf126e": "/Units/Quantity:Quantity 496",
"d0218c59-a46f-4e46-b9b2-db72989d9564": "/Units/Quantity:Quantity 497",
"0089562d-9c16-4a35-93d7-5d2ba3e9393f": "/Units/Quantity:Quantity 498",
"26ea402b-3846-4c81-8dcd-a68461d8707f": "/Units/Quantity:Quantity 499",
"e7c75777-1406-45ce-bd4d-74bc023f8256": "/Units/Quantity:Quantity 500",
"111f5945-6b84-4a9b-ba57-49dbfdc9a00c": "/Units/Quantity:Quantity 501",
"8c9cb2cc-d912-4957-8e4d-3b4d87d49880": "/Units/Quantity:Quantity 502",
"536e7046-5e0c-4d60-a823-52c51a1e67a7": "/Units/Quantity:Quantity 503",
"d4a9387b-29e3-4122-b05d-5310e13b2a60": "/Units/Quantity:Quantity 504",
"04b8d16b-e4bc-474c-90a1-aea14fd40598": "/Units/Quantity:Quantity 505",
"d6daa417-f10a-42b5-b9be-3332b653d1fd": "/Units/Quantity:Quantity 506",
"f00c0165-4f42-40b8-97d7-3a31b93cb6c4": "/Units/Quantity:Quantity 507",
"8dbd1d72-900a-482d-ab26-3e587e918f78": "/Units/Quantity:Quantity 508",
"b3751da8-ee91-4330-bd1c-de9529cde889": "/Units/Quantity:Quantity 509",
"61fde19f-e679-4fd3-b9a7-111170b7c16c": "/Units/Quantity:Quantity 510",
"eb29a2e9-5e94-4cb9-8e0f-adffbf74d427": "/Units/Quantity:Quantity 511",
"c157924d-b508-4399-959e-11e668bb80c5": "/Units/Quantity:Quantity 512",
"8535d22d-5f00-4814-9c2d-ba8f82f6b94d": "/Units/Quantity:Quantity 513",
"d6d514b1-8827-4db6-9179-6eb6ba4e7733": "/Units/Quantity:Quantity 514",
"a7c28cdf-1025-458e-9182-60f28f56fab8": "/Units/Quantity:Quantity 515",
"d666ea04-40ac-4b81-b0f8-25a8b1002447": "/Units/Quantity:Quantity 516",
"227b2c84-3c4f-46af-906e-fcf1a575dabe": "/Units/Quantity:Quantity 517",
"5a57eb67-cdaa-473d-a946-a6561dde2c5f": "/Units/Quantity:Quantity 518",
"4c022788-795a-4648-83b4-35a0de6000e2": "/Units/Quantity:Quantity 519",
"a7bf5c7d-e5a2-4136-a8a6-08bbbf68f5be": "/Units/Quantity:Quantity 520",
"3ffcf45f-8281-4218-a23d-d298eb15a297": "/Units/Quantity:Quantity 521",
"b9f948e0-7e9d-4689-af96-b2b829971ccb": "/Units/Quantity:Quantity 522",
"038480f1-6c02-4523-a16e-3289277fbc08": "/Units/Quantity:Quantity 523",
"5dcd122f-52f5-4d2b-b42e-e18845a6d78d": "/Units/Quantity:Quantity 524",
"950c846f-1c9e-4713-a5dc-44576b1b11f4": "/Units/Quantity:Quantity 525",
"14a4bc47-1cf5-4094-bf16-9b42a893fad2": "/Units/Quantity:Quantity 526",
"ef1d5b90-bba2-43c1-95ff-4cba24ac7474": "/Units/Quantity:Quantity 527",
"57552f15-1a9a-4330-aac2-6b6071433a78": "/Units/Quantity:Quantity 528",
"a7b4830f-2205-4111-b47b-7b6d81c37fa1": "/Units/Quantity:Quantity 529",
"8c90c061-deaa-405a-98f3-dde594f823fb": "/Units/Quantity:Quantity 530",
"c938910f-b9e4-4a8a-a866-6fd4b0fbf46e": "/Units/Quantity:Quantity 531",
"d355187d-60d5-4d94-ab03-d7421da493c5": "/Units/Quantity:Quantity 532",
"a91b00b7-00ac-43a7-b05a-e077416c0f36": "/Units/Quantity:Quantity 533",
"fd34430b-e131-4160-be19-663b339cdab3": "/Units/Quantity:Quantity 534",
"91629a1f-8b3a-4869-af63-d8fce376db0d": "/Units/Quantity:Quantity 535",
"fab982a9-5e17-4a7d-802c-8367061ad034": "/Units/Quantity:Quantity 536",
"076f3f7d-16bb-4a9d-81a2-dac4baae4646": "/Units/Quantity:Quantity 537",
"bc1722c7-edcd-44ab-b41b-8d1e8a225fe8": "/Units/Quantity:Quantity 538",
"857fb930-832e-4f4c-906c-b5210fb84fd3": "/Units/Quantity:Quantity 539",
"6b001955-5573-4248-be6d-784e28603bb0": "/Units/Quantity:Quantity 540",
"5b438cd2-26c2-49fc-ba13-d6c78b60d74c": "/Units/Quantity:Quantity 541",
"892643c9-a42c-480e-bd8c-a66764e87d8e": "/Units/Quantity:Quantity 542",
"c2b1cc5c-ebd0-404e-9fe7-7372266c7589": "/Units/Quantity:Quantity 543",
"c3691e93-0207-456d-83d0-6c4682741787": "/Units/Quantity:Quantity 544",
"214aeabc-e216-4748-9224-3abc2f6ca6dd": "/Units/Quantity:Quantity 545",
"9b05d773-e16b-469d-ab89-72a43ebae18b": "/Units/Quantity:Quantity 546",
"6d6d8f27-4599-4830-9c92-70775814d48e": "/Units/Quantity:Quantity 547",
"5a478c28-78b3-4894-976f-837c154c09bc": "/Units/Quantity:Quantity 548",
"e2174f69-f6ce-4785-ba94-902f2ff3c7bc": "/Units/Quantity:Quantity 549",
"68292d04-02eb-4e56-abc7-ab955f8e7fe1": "/Units/Quantity:Quantity 550",
"db3c9269-5e3d-4db3-abff-637de2acc7e7": "/Units/Quantity:Quantity 551",
"626f84ba-4d22-4ace-8147-91eb0a4c4582": "/Units/Quantity:Quantity 552",
"c05bfc74-d86e-4c2d-920b-ac9622a4f653": "/Units/Quantity:Quantity 553",
"210ba651-deff-40db-a88b-257577907787": "/Units/Quantity:Quantity 554",
"44493aae-43f2-47d5-a94e-8d4323c63c01": "/Units/Quantity:Quantity 555",
"f347a144-8c6b-429a-b273-0936fa53ead1": "/Units/Quantity:Quantity 556",
"6e2bae01-9d95-44db-974d-2abba4f3026c": "/Units/Quantity:Quantity 557",
"50cfbabb-b2ba-4562-ab91-3f43be4e83f2": "/Units/Quantity:Quantity 558",
"a65b5f67-c2ba-4098-89be-5c71ff50af25": "/Units/Quantity:Quantity 559",
"a6ca170c-c1ed-4f6f-82e6-1f67058f03f1": "/Units/Quantity:Quantity 560",
"3e77efc9-cfe8-43af-a003-62a774122565": "/Units/Quantity:Quantity 561",
"4ca5efea-eef6-4aa4-b2aa-5d2f1d952ebe": "/Units/Quantity:Quantity 562",
"18964320-81c6-4597-96fe-c0ae32383273": "/Units/Quantity:Quantity 563",
"e56abe11-b65c-4f49-9d7e-cf62fb62bcf7": "/Units/Quantity:Quantity 564",
"e685c64f-ec80-49ee-ae00-60ff9c66ca5f": "/Units/Quantity:Quantity 565",
"771fff19-ad84-49e3-9add-9a9f3f6898c8": "/Units/Quantity:Quantity 566",
"6d87ed11-532c-4006-96a5-c151019895dc": "/Units/Quantity:Quantity 567",
"f0dd0844-5ee5-49c7-a006-0a20b5431de8": "/Units/Quantity:Quantity 568",
"2ad24eb6-1470-43af-ae7d-a7d843fc45a1": "/Units/Quantity:Quantity 569",
"59b53bce-db4f-4807-864e-5832e6d57cee": "/Units/Quantity:Quantity 570",
"0d357fbd-8b14-4937-a4ae-b46141df00d0": "/Units/Quantity:Quantity 571",
"e255862f-9e3b-43c3-a470-845e2aab1961": "/Units/Quantity:Quantity 572",
"cf71bdc7-9a9f-46f6-8637-56335199c786": "/Units/Quantity:Quantity 573",
"32abd03f-8fbc-49b8-9fcb-41e7a4dd31e3": "/Units/Quantity:Quantity 574",
"f97ce549-7cbc-43d3-9777-70a730ef0196": "/Units/Quantity:Quantity 575",
"9b2e57db-a7e7-4af0-b01e-961b9d2547c5": "/Units/Quantity:Quantity 576",
"4168ec57-fecc-4c17-bcc2-7f490408c570": "/Units/Quantity:Quantity 577",
"c6030d74-9b27-4be9-a43a-e4fdf95c7c20": "/Units/Quantity:Quantity 578",
"5f2079e6-5273-4cf5-a896-2d8553345854": "/Units/Quantity:Quantity 579",
"ef50a5b2-0b50-4b3f-9b7c-b694a93846cd": "/Units/Quantity:Quantity 580",
"870a86c8-5cb5-4e15-a01d-0b137456f8f6": "/Units/Quantity:Quantity 581",
"5f58e6fa-6372-4f47-869a-8b1f93e6881b": "/Units/Quantity:Quantity 582",
"04aa0bcc-d64c-4661-b638-58b8c4896a44": "/Units/Quantity:Quantity 583",
"ae4126c9-47fb-4fe2-ab8c-fe730eaf4eaf": "/Units/Quantity:Quantity 584",
"80c04d9d-8aff-4648-b552-8a64237f4b47": "/Units/Quantity:Quantity 585",
"2c1a0ccc-73ee-4513-956c-11c6794a0542": "/Units/Quantity:Quantity 586",
"e9715b5a-6294-4f95-82d4-d3d902fd399f": "/Units/Quantity:Quantity 587",
"4c4d22db-4bae-48be-b0ae-dab20c94aeed": "/Units/Quantity:Quantity 588",
"78a92f4c-4a95-4bae-94e6-1cf62ba37874": "/FileContainer/FileReference:F3",
"5eb208a3-b997-4702-9a59-1479fe588b17": "/FileTypesContainer/FileType:MeshFileType",
"6796f407-e5cd-4385-9428-3cfa01bc9dea": "/FileContainer/FileReference:F4",
"f420661a-8cf6-4186-8b29-9f15aea25e0b": "/FileContainer/FileReference:F6",
"4855c811-1090-4c43-b280-fccdfff01558": "/FileContainer/FileReference:F5",
"4d8044e4-bb28-4216-9137-cc269c82bbfe": "/FileTypesContainer/FileType:FluentMeshFileType",
"432881e8-fd61-44ff-86be-58a86478c902": "/FileTypesContainer/FileType:FLUENTCase",
"a174376d-744e-40ce-a446-07f26da86d42": "/FileTypesContainer/FileType:FLUENTBc",
"8086f133-0084-45f3-9a4e-0f1d27eca72b": "/FileContainer/FileReference:F7",
"c4d0cb02-6ac6-4842-8313-b1ee2c23a064": "/FileContainer/FileReference:F8",
"0342c24c-e5f1-4eb6-b0e0-5bcfb03c82e6": "/FileContainer/FileReference:F9",
"76421e0f-cf70-4682-a3bc-3ec9179d5d05": "/FileContainer/FileReference:F10",
"2c416e8d-cc53-430c-a7ef-5037ad5b3ee6": "/FileTypesContainer/FileType:FLUENTData",
"6df5e8f1-9b7f-44c4-9fe0-42b84e686552": "/Schematic/System:FFF 1",
"d20eb79b-6655-44af-8162-8530c4a9226c": "/Schematic/Component:Mesh 1",
"4a3cb660-8a08-44b5-aaf5-b3dd4525e4f5": "/Schematic/Component:Setup 1",
"ea79b868-db0f-4d90-adf7-1ee4bc22500b": "/Schematic/Component:Solution 1",
"3e9a8d71-b06b-46ad-ab6a-5ca020cef171": "/Schematic/Component:Results 1",
"c8928a64-1c19-4c6e-b197-438f5bc6bab7": "/FileContainer/FileReference:F12",
"e5c9d27d-d63c-4665-af6d-4f14920b26b8": "/FileContainer/FileReference:F11",
"955f66b3-b8f9-4918-aeb5-a14179e4f292": "/FileContainer/FileReference:F14",
"32c60dc9-82eb-47d9-b64a-da7ea14cedeb": "/FileContainer/FileReference:F15",
"f4925ff5-52ab-4688-9320-4170d0b50601": "/FileContainer/FileReference:F13",
"ddb4aa77-1dd8-4c58-af97-0de4989edf80": "/FileContainer/FileReference:F16",
"a5a87d8d-b9f9-4432-a3ad-479cc9f85823": "/FileTypesContainer/FileType:InterpolateDataFile",
"7df53189-da06-4aea-a25c-3b9aedd0d31e": "/FileTypesContainer/FileType:CFDPostState"
}</ReferenceList>
</ProjectReferenceList>
<DesignPointReferenceListCollection>
<DesignPointReferenceList Name="0">
<ReferenceList valType="String">{
"bb7d4f2d-6fb9-498e-810f-cff1223b3e65": "/Mesh/MeshingGeneratedMeshOutputProvider:MeshingGeneratedMeshOutputProvider",
"5fe70cea-ea33-43e6-afb2-ec55691360d1": "/Mesh/GeneratedMeshOutputForAQWAModelProvider:GeneratedMeshOutputForAQWAModelProvider",
"a0b8b117-12b1-4472-acac-6118769e311f": "/Geometry/Geometry:GeometryDataObject",
"4a90dafb-4219-4911-9324-0f8d974cf73a": "/Mesh/MeshingMesh:MeshingMeshDataObject",
"d05850e1-d9f1-465e-91b3-83cf09034125": "/Solution/FluentSolutionProperties:SolutionData",
"07a0e4c5-48a9-438f-ba43-936a532fbf58": "/Setup/SetupData:SetupData",
"339e1e9c-7e5d-4f36-baa0-b132257c8113": "/Solution/FluentSolution:SolutionDataProvider",
"612dc5ca-1c0c-42bd-be0c-dbcccc30bef9": "/Results/SolutionDataLink:SolutionDataProvider",
"5d0590c9-e199-4389-b700-dc91b95bbcb9": "/Results/CFDResults:Results Source",
"5d9dd0a5-0bb9-45d4-ad08-1f576edbf774": "/Mesh/MechanicalModel:MechanicalModel",
"7478f285-f168-47f1-87ac-1cc2864c58c2": "/Mesh/MechanicalMeshFile:FluentMesh",
"c80f42c4-6d43-4a43-9929-3004a13cebb5": "/Mesh 1/MechanicalModel:MechanicalModel",
"1af69774-8a47-4012-8715-2ff4f02813fc": "/Mesh 1/MechanicalMeshFile:FluentMesh",
"c05d9bdb-c01e-49dd-98fa-2cdf9eb422f1": "/Mesh 1/MeshingGeneratedMeshOutputProvider:MeshingGeneratedMeshOutputProvider",
"f034135e-7944-42b0-a030-372ce219bc8e": "/Mesh 1/GeneratedMeshOutputForAQWAModelProvider:GeneratedMeshOutputForAQWAModelProvider",
"f04cb912-4254-49f2-be1c-99d85925b911": "/Mesh 1/MeshingMesh:MeshingMeshDataObject",
"a6cfa6d4-e37e-4c7e-8d33-4f5b06c52931": "/Solution 1/FluentSolutionProperties:SolutionData",
"65a9a0c7-3a73-41fb-bb66-5a738337a270": "/Setup 1/SetupData:SetupData",
"2dd1b79a-e800-41d7-b4fe-48b83060367c": "/Solution 1/FluentSolution:SolutionDataProvider",
"58cdc6fd-c2b2-4d00-866d-5f199746eaf7": "/Results 1/SolutionDataLink:SolutionDataProvider",
"3108c3c2-4c15-419f-b8f0-5dc5634c5f52": "/Results 1/CFDResults:Results 1 Source"
}</ReferenceList>
</DesignPointReferenceList>
</DesignPointReferenceListCollection>
</ReferenceCache>
</Project>
<Addins>
<addin-list valType="String">[Ansys.ParameterManager.ParameterManagerAddin, Ansys.ProjectSchematic.ProjectSchematicAddin, Ansys.ProjectReporting.Addin, Ansys.Graphics.GraphicsAddin, Ansys.Units.Commands.Addin]</addin-list>
<Addin Name="Ansys.ParameterManager.ParameterManagerAddin" Version="7.3" />
<Addin Name="Ansys.ProjectSchematic.ProjectSchematicAddin" Version="10.3" />
<Addin Name="Ansys.ProjectReporting.Addin" Version="6.0" />
<Addin Name="Ansys.Graphics.GraphicsAddin" Version="1.1" />
<Addin Name="Ansys.Units.Commands.Addin" Version="6.0" />
</Addins>
<Containers>
<container-map valType="String">{"FileContainer": Project:FileContainer, "Messages": Project:Messages, "Parameters": Ansys.ParameterManager.ParameterManagerAddin:parameters, "Schematic": Ansys.ProjectSchematic.ProjectSchematicAddin:Default, "ReportDataContainer": Ansys.ProjectReporting.Addin:ReportDataContainer, "Graphics": Ansys.Graphics.GraphicsAddin:graphics, "Units": Ansys.Units.Commands.Addin:Units}</container-map>
<static-container-ids valType="String">{"FileContainer": FileManager, "Parameters": Parameters, "Schematic": Schematic, "ReportDataContainer": ReportDataContainer, "Graphics": Graphics, "Units": Units}</static-container-ids>
<Container Name="FileContainer" Version="1.0">
<container-type valType="String">Project:FileContainer</container-type>
<static-id valType="String">FileManager</static-id>
<storage-scheme-id valType="String">version-1-format</storage-scheme-id>
<deleted-sources valType="String">[]</deleted-sources>
<last-updated valType="Int64">0</last-updated>
<last-modified-by-usage valType="String">{"Extrinsic": 3691, "Input": 1278, "Output": 1278}</last-modified-by-usage>
<outputs-generated-by-type valType="String">{}</outputs-generated-by-type>
<contains-significant-data valType="Boolean">false</contains-significant-data>
<Object Name="/FileContainer/FileReference:F2" Version="1.0">
<class-type valType="String">FileReference</class-type>
<object-name valType="String">F2</object-name>
<member-data valType="String">{"DisplayText": "FFF.agdb", "FileType": $$18d755b7-04f8-456b-8424-5076eb0b3277, "DependentFiles": [], "ContainerAssociations": ["Geometry"], "SkipForDesignPointDuplication": False, "IsDeletable": True, "ExternalSource": None, "LastDownloadFromRepository": -1, "Location": r"$(ProjectName)_files\dp0\FFF\DM\FFF.agdb", "ReferenceCount": 1}</member-data>
</Object>
<Object Name="/FileContainer/FileReference:F1" Version="1.0">
<class-type valType="String">FileReference</class-type>
<object-name valType="String">F1</object-name>
<member-data valType="String">{"DisplayText": "T-connector.wbpj", "FileType": $$6ac3f5da-1a84-47c8-99df-7b3741becb7e, "DependentFiles": [], "ContainerAssociations": [], "SkipForDesignPointDuplication": False, "IsDeletable": True, "ExternalSource": None, "LastDownloadFromRepository": -1, "Location": "$(ProjectName).wbpj", "ReferenceCount": 1}</member-data>
</Object>
<Object Name="/FileContainer/FileReference:F3" Version="1.0">
<class-type valType="String">FileReference</class-type>
<object-name valType="String">F3</object-name>
<member-data valType="String">{"DisplayText": "FFF.mshdb", "FileType": $$5eb208a3-b997-4702-9a59-1479fe588b17, "DependentFiles": [], "ContainerAssociations": ["Mesh"], "SkipForDesignPointDuplication": False, "IsDeletable": True, "ExternalSource": None, "LastDownloadFromRepository": -1, "Location": r"$(ProjectName)_files\dp0\global\MECH\FFF.mshdb", "ReferenceCount": 1}</member-data>
</Object>
<Object Name="/FileContainer/FileReference:F4" Version="1.0">
<class-type valType="String">FileReference</class-type>
<object-name valType="String">F4</object-name>
<member-data valType="String">{"DisplayText": "FFF.msh", "FileType": $$4d8044e4-bb28-4216-9137-cc269c82bbfe, "DependentFiles": [], "ContainerAssociations": ["Mesh", "Setup"], "SkipForDesignPointDuplication": False, "IsDeletable": True, "ExternalSource": None, "LastDownloadFromRepository": -1, "Location": r"$(ProjectName)_files\dp0\FFF\MECH\FFF.msh", "ReferenceCount": 2}</member-data>
</Object>
<Object Name="/FileContainer/FileReference:F6" Version="1.0">
<class-type valType="String">FileReference</class-type>
<object-name valType="String">F6</object-name>
<member-data valType="String">{"DisplayText": "FFF-Setup-Output.cas.gz", "FileType": $$432881e8-fd61-44ff-86be-58a86478c902, "DependentFiles": [], "ContainerAssociations": ["Setup"], "SkipForDesignPointDuplication": False, "IsDeletable": True, "ExternalSource": None, "LastDownloadFromRepository": -1, "Location": r"$(ProjectName)_files\dp0\FFF\Fluent\FFF-Setup-Output.cas.gz", "ReferenceCount": 1}</member-data>
</Object>
<Object Name="/FileContainer/FileReference:F5" Version="1.0">
<class-type valType="String">FileReference</class-type>
<object-name valType="String">F5</object-name>
<member-data valType="String">{"DisplayText": "FFF.set", "FileType": $$a174376d-744e-40ce-a446-07f26da86d42, "DependentFiles": [], "ContainerAssociations": ["Setup"], "SkipForDesignPointDuplication": False, "IsDeletable": True, "ExternalSource": None, "LastDownloadFromRepository": -1, "Location": r"$(ProjectName)_files\dp0\FFF\Fluent\FFF.set", "ReferenceCount": 1}</member-data>
</Object>
<Object Name="/FileContainer/FileReference:F7" Version="1.0">
<class-type valType="String">FileReference</class-type>
<object-name valType="String">F7</object-name>
<member-data valType="String">{"DisplayText": "FFF-1.cas.gz", "FileType": $$432881e8-fd61-44ff-86be-58a86478c902, "DependentFiles": [$$c4d0cb02-6ac6-4842-8313-b1ee2c23a064], "ContainerAssociations": ["Solution"], "SkipForDesignPointDuplication": False, "IsDeletable": True, "ExternalSource": None, "LastDownloadFromRepository": -1, "Location": r"$(ProjectName)_files\dp0\FFF\Fluent\FFF-1.cas.gz", "ReferenceCount": 1}</member-data>
</Object>
<Object Name="/FileContainer/FileReference:F8" Version="1.0">
<class-type valType="String">FileReference</class-type>
<object-name valType="String">F8</object-name>
<member-data valType="String">{"DisplayText": "FFF-1-00000.dat.gz", "FileType": $$2c416e8d-cc53-430c-a7ef-5037ad5b3ee6, "DependentFiles": [], "ContainerAssociations": ["Solution"], "SkipForDesignPointDuplication": False, "IsDeletable": True, "ExternalSource": None, "LastDownloadFromRepository": -1, "Location": r"$(ProjectName)_files\dp0\FFF\Fluent\FFF-1-00000.dat.gz", "ReferenceCount": 1}</member-data>
</Object>
<Object Name="/FileContainer/FileReference:F9" Version="1.0">
<class-type valType="String">FileReference</class-type>
<object-name valType="String">F9</object-name>
<member-data valType="String">{"DisplayText": "FFF-1.mshdb", "FileType": $$5eb208a3-b997-4702-9a59-1479fe588b17, "DependentFiles": [], "ContainerAssociations": ["Mesh 1"], "SkipForDesignPointDuplication": False, "IsDeletable": True, "ExternalSource": None, "LastDownloadFromRepository": -1, "Location": r"$(ProjectName)_files\dp0\global\MECH\FFF-1.mshdb", "ReferenceCount": 1}</member-data>
</Object>
<Object Name="/FileContainer/FileReference:F10" Version="1.0">
<class-type valType="String">FileReference</class-type>
<object-name valType="String">F10</object-name>
<member-data valType="String">{"DisplayText": "FFF-1.msh", "FileType": $$4d8044e4-bb28-4216-9137-cc269c82bbfe, "DependentFiles": [], "ContainerAssociations": ["Mesh 1", "Setup 1"], "SkipForDesignPointDuplication": False, "IsDeletable": True, "ExternalSource": None, "LastDownloadFromRepository": -1, "Location": r"$(ProjectName)_files\dp0\FFF-1\MECH\FFF-1.msh", "ReferenceCount": 2}</member-data>
</Object>
<Object Name="/FileContainer/FileReference:F12" Version="1.0">
<class-type valType="String">FileReference</class-type>
<object-name valType="String">F12</object-name>
<member-data valType="String">{"DisplayText": "FFF-1-Setup-Output.cas.gz", "FileType": $$432881e8-fd61-44ff-86be-58a86478c902, "DependentFiles": [], "ContainerAssociations": ["Setup 1"], "SkipForDesignPointDuplication": False, "IsDeletable": True, "ExternalSource": None, "LastDownloadFromRepository": -1, "Location": r"$(ProjectName)_files\dp0\FFF-1\Fluent\FFF-1-Setup-Output.cas.gz", "ReferenceCount": 1}</member-data>
</Object>
<Object Name="/FileContainer/FileReference:F11" Version="1.0">
<class-type valType="String">FileReference</class-type>
<object-name valType="String">F11</object-name>
<member-data valType="String">{"DisplayText": "FFF-1.set", "FileType": $$a174376d-744e-40ce-a446-07f26da86d42, "DependentFiles": [], "ContainerAssociations": ["Setup 1"], "SkipForDesignPointDuplication": False, "IsDeletable": True, "ExternalSource": None, "LastDownloadFromRepository": -1, "Location": r"$(ProjectName)_files\dp0\FFF-1\Fluent\FFF-1.set", "ReferenceCount": 1}</member-data>
</Object>
<Object Name="/FileContainer/FileReference:F13" Version="1.0">
<class-type valType="String">FileReference</class-type>
<object-name valType="String">F13</object-name>
<member-data valType="String">{"DisplayText": "FFF-1.ip", "FileType": $$a5a87d8d-b9f9-4432-a3ad-479cc9f85823, "DependentFiles": [], "ContainerAssociations": ["Solution 1"], "SkipForDesignPointDuplication": False, "IsDeletable": True, "ExternalSource": None, "LastDownloadFromRepository": -1, "Location": r"$(ProjectName)_files\dp0\FFF-1\Fluent\FFF-1.ip", "ReferenceCount": 1}</member-data>
</Object>
<Object Name="/FileContainer/FileReference:F14" Version="1.0">
<class-type valType="String">FileReference</class-type>
<object-name valType="String">F14</object-name>
<member-data valType="String">{"DisplayText": "FFF-1-1.cas.gz", "FileType": $$432881e8-fd61-44ff-86be-58a86478c902, "DependentFiles": [$$32c60dc9-82eb-47d9-b64a-da7ea14cedeb], "ContainerAssociations": ["Solution 1"], "SkipForDesignPointDuplication": False, "IsDeletable": True, "ExternalSource": None, "LastDownloadFromRepository": -1, "Location": r"$(ProjectName)_files\dp0\FFF-1\Fluent\FFF-1-1.cas.gz", "ReferenceCount": 1}</member-data>
</Object>
<Object Name="/FileContainer/FileReference:F15" Version="1.0">
<class-type valType="String">FileReference</class-type>
<object-name valType="String">F15</object-name>
<member-data valType="String">{"DisplayText": "FFF-1-1-00150.dat.gz", "FileType": $$2c416e8d-cc53-430c-a7ef-5037ad5b3ee6, "DependentFiles": [], "ContainerAssociations": ["Solution 1"], "SkipForDesignPointDuplication": False, "IsDeletable": True, "ExternalSource": None, "LastDownloadFromRepository": -1, "Location": r"$(ProjectName)_files\dp0\FFF-1\Fluent\FFF-1-1-00150.dat.gz", "ReferenceCount": 1}</member-data>
</Object>
<Object Name="/FileContainer/FileReference:F16" Version="1.0">
<class-type valType="String">FileReference</class-type>
<object-name valType="String">F16</object-name>
<member-data valType="String">{"DisplayText": "For example.cst", "FileType": $$7df53189-da06-4aea-a25c-3b9aedd0d31e, "DependentFiles": [], "ContainerAssociations": ["Results 1"], "SkipForDesignPointDuplication": False, "IsDeletable": True, "ExternalSource": None, "LastDownloadFromRepository": -1, "Location": r"$(ProjectName)_files\dp0\FFF-1\Post\For example.cst", "ReferenceCount": 1}</member-data>
</Object>
</Container>
<Container Name="Messages" Version="1.0">
<container-type valType="String">Project:Messages</container-type>
<storage-scheme-id valType="String">version-1-format</storage-scheme-id>
<deleted-sources valType="String">[]</deleted-sources>
<last-updated valType="Int64">0</last-updated>
<last-modified-by-usage valType="String">{"Extrinsic": 2154, "Input": 1279, "Output": 1279}</last-modified-by-usage>
<outputs-generated-by-type valType="String">{}</outputs-generated-by-type>
<contains-significant-data valType="Boolean">false</contains-significant-data>
</Container>
<Container Name="Parameters" Version="1.0">
<container-type valType="String">Ansys.ParameterManager.ParameterManagerAddin:parameters</container-type>
<static-id valType="String">Parameters</static-id>
<storage-scheme-id valType="String">version-1-format</storage-scheme-id>
<maxUpdateOrder valType="Double">1</maxUpdateOrder>
<deleted-sources valType="String">[]</deleted-sources>
<last-updated valType="Int64">0</last-updated>
<last-modified-by-usage valType="String">{"Extrinsic": 3425, "Input": 1283, "Output": 1282}</last-modified-by-usage>
<outputs-generated-by-type valType="String">{}</outputs-generated-by-type>
<contains-significant-data valType="Boolean">false</contains-significant-data>
<Object Name="/Parameters/DesignPoint:0" Version="1.0">
<class-type valType="String">DesignPoint</class-type>
<object-name valType="String">0</object-name>
<member-data valType="String">{"DisplayText": "DP 0", "JustDuplicated": False, "PartiallyRetainedData": [], "ValidRetainedData": [], "ErrorsOnLastUpdate": {}, "LastUpdateInformation": {"DidUpdate": "True", "DidPreRsmUpdate": "False", "UpdatedComponents": "Mesh 1 in FFF 1"}, "Parameters": {}, "ParameterErrors": {}, "CurrentValues": {}, "ParameterStatus": {}, "Note": None, "IsUpToDate": False, "Exported": True, "Retained": True, "CurrentStateExported": False, "IsDataModelValid": True, "HasRetainedData": True, "HasBeenSolved": False, "UpdateOrder": 1}</member-data>
<properties-setByUserFlag-data valType="String">["IsDataModelValid"]</properties-setByUserFlag-data>
</Object>
<Object Name="/Parameters/DesignPointReportSetting:Design Points Report Setting" Version="1.0">
<class-type valType="String">DesignPointReportSetting</class-type>
<object-name valType="String">Design Points Report Setting</object-name>
<member-data valType="String">{"DisplayText": "Design Points Report Setting", "DesignPointReportImage": "None"}</member-data>
</Object>
<ParameterToPropertyMap />
</Container>
<Container Name="Schematic" Version="1.0">
<container-type valType="String">Ansys.ProjectSchematic.ProjectSchematicAddin:Default</container-type>
<static-id valType="String">Schematic</static-id>
<storage-scheme-id valType="String">version-1-format</storage-scheme-id>
<deleted-sources valType="String">[]</deleted-sources>
<last-updated valType="Int64">0</last-updated>
<last-modified-by-usage valType="String">{"Extrinsic": 3590, "Input": 3508, "Output": 1285}</last-modified-by-usage>
<outputs-generated-by-type valType="String">{}</outputs-generated-by-type>
<contains-significant-data valType="Boolean">true</contains-significant-data>
<Object Name="/Schematic/System:FFF" Version="1.0">
<class-type valType="String">System</class-type>
<object-name valType="String">FFF</object-name>
<member-data valType="String">{"DisplayText": "For lesson", "Components": [$$dea1beab-49b9-4755-a4be-decd6599c563, $$fdafb1ad-197e-428d-ba42-0a0bf84d4936, $$10d831d1-6732-474b-850c-01ed89cc0845, $$edba7e80-621b-4119-aa8e-2347d1c77c5e, $$aef1525b-8944-4df2-a80a-faddf78b9c68], "ComponentGroups": [], "SystemVisible": True, "RequiredComponents": [$$10d831d1-6732-474b-850c-01ed89cc0845, $$edba7e80-621b-4119-aa8e-2347d1c77c5e], "ExcludedComponentTemplates": [], "Attributes": {"PhysicsTypeDisplayString": "Fluids", "Start from available data": "True", "SolverTypeDisplayString": "FLUENT", "IsCreated": "True", "VOLATILE:SystemName": "FFF"}, "SystemType": "Fluid Flow (FLUENT)", "HeaderText": "Fluid Flow (Fluent)", "SystemTypeAbbreviation": "FFF", "UniqueSystemDirectoryName": "FFF", "Physics": ["Fluids"], "AnalysisType": None, "SystemHelpId": "wb2sb_ffFLUENT", "AdditionalSystemHelpId": None, "IsParametric": False, "CreatedFromTemplate": $$288dc1b3-a184-4e6d-bde0-6fb3170a4e54, "Notes": None, "LayoutChildren": [$$6df5e8f1-9b7f-44c4-9fe0-42b84e686552], "LayoutIndex": 1}</member-data>
<properties-setByUserFlag-data valType="String">["DisplayText"]</properties-setByUserFlag-data>
</Object>
<Object Name="/Schematic/System:FFF 1" Version="1.0">
<class-type valType="String">System</class-type>
<object-name valType="String">FFF 1</object-name>
<member-data valType="String">{"DisplayText": "For example", "Components": [$$d20eb79b-6655-44af-8162-8530c4a9226c, $$4a3cb660-8a08-44b5-aaf5-b3dd4525e4f5, $$ea79b868-db0f-4d90-adf7-1ee4bc22500b, $$3e9a8d71-b06b-46ad-ab6a-5ca020cef171], "ComponentGroups": [], "SystemVisible": True, "RequiredComponents": [$$4a3cb660-8a08-44b5-aaf5-b3dd4525e4f5, $$ea79b868-db0f-4d90-adf7-1ee4bc22500b], "ExcludedComponentTemplates": [], "Attributes": {"PhysicsTypeDisplayString": "Fluids", "Start from available data": "True", "SolverTypeDisplayString": "FLUENT", "IsCreated": "True", "VOLATILE:SystemName": "FFF 1"}, "SystemType": "Fluid Flow (FLUENT)", "HeaderText": "Fluid Flow (Fluent)", "SystemTypeAbbreviation": "FFF", "UniqueSystemDirectoryName": "FFF-1", "Physics": ["Fluids"], "AnalysisType": None, "SystemHelpId": "wb2sb_ffFLUENT", "AdditionalSystemHelpId": None, "IsParametric": False, "CreatedFromTemplate": $$288dc1b3-a184-4e6d-bde0-6fb3170a4e54, "Notes": None, "LayoutChildren": [], "LayoutIndex": 0}</member-data>
<properties-setByUserFlag-data valType="String">["DisplayText"]</properties-setByUserFlag-data>
</Object>
<Object Name="/Schematic/SchematicSettings:Schematic Settings" Version="1.0">
<class-type valType="String">SchematicSettings</class-type>
<object-name valType="String">Schematic Settings</object-name>
<member-data valType="String">{"DisplayText": "Schematic Settings", "WireBundling": False, "ShowSystemCoordinates": True, "Notes": None, "SuspendCollectingRSMResult": False}</member-data>
</Object>
<Object Name="/Schematic/DesignPointSolveSettings:Design Points Update Settings" Version="1.0">
<class-type valType="String">DesignPointSolveSettings</class-type>
<object-name valType="String">Design Points Update Settings</object-name>
<member-data valType="String">{"DisplayText": "Design Points Update Settings", "UpdateOption": "Foreground", "PortalConnection": {"OptionIcons": None, "OptionLabels": "", "Options": "", "ReadOnlyOptions": None, "OptionFeatureFlags": None, "OptionFilterFlags": None, "OptionLicenseFlags": None, "Value": None}, "PortalQueue": {"OptionIcons": None, "OptionLabels": "", "Options": "", "ReadOnlyOptions": None, "OptionFeatureFlags": None, "OptionFilterFlags": None, "OptionLicenseFlags": None, "Value": None}, "RsmUserString": None, "ConfiguredQueue": {"OptionIcons": None, "OptionLabels": "Local", "Options": "Local", "ReadOnlyOptions": None, "OptionFeatureFlags": None, "OptionFilterFlags": None, "OptionLicenseFlags": None, "Value": "Local"}, "RsmJobName": "Workbench", "UpdateMethod": "Foreground", "JobControl": "OneJobAllDesignPoints", "MaxNumberOfJobs": 1, "UpdateOrder": "UpdateFromCurrentDesignPoint", "PreRSMUpdate": "None", "AllowRemoteGeometryUpdate": False, "PartialUpdate": "None", "RetainPartialUpdate": "None", "LicenseCheckout": "OnDemand", "DelayReservedLicenseCheckout": False, "ReservedLicensingExcludesPreRsmUpdate": False, "ComponentExecutionMode": "Serial", "NumberOfCoresPerJob": 2, "KeepFailedDesignPointFiles": False, "RetainFailedDesignPoints": False, "DesignPointRetainedOrExportedUpdate": "Parameters"}</member-data>
</Object>
<Object Name="/Schematic/HeldLicenseSettings:User Reserved Licenses" Version="1.0">
<class-type valType="String">HeldLicenseSettings</class-type>
<object-name valType="String">User Reserved Licenses</object-name>
<member-data valType="String">{"DisplayText": "User Reserved Licenses", "ReservedSet": {}}</member-data>
</Object>
<Object Name="/Schematic/CustomProjectTemplate:FSI: Fluid Flow (CFX) -> Static Structural" Version="1.0">
<class-type valType="String">CustomProjectTemplate</class-type>
<object-name valType="String">FSI: Fluid Flow (CFX) -> Static Structural</object-name>
<member-data valType="String">{"DisplayText": "FSI: Fluid Flow (CFX) -> Static Structural", "SystemTemplates": [$$81a62747-1042-438a-97b3-d47d0d7ce422, $$aa4a9d93-cf7f-449e-acf5-638b39639849], "SystemNames": ["Fluid Flow (CFX)", "Static Structural (ANSYS)"], "ToolboxGroup": "Custom Systems", "AdditionalSystemHelpId": None, "PostCreationSteps": [["Share", "Fluid Flow (CFX):Geometry", "Static Structural (ANSYS):Geometry"], ["Connect", "Fluid Flow (CFX):Solution:CFXTransferResultsTemplate", "Static Structural (ANSYS):Setup"]], "LayoutIndices": {"Fluid Flow (CFX)": 1, "Static Structural (ANSYS)": 0}, "LayoutChildren": {"Fluid Flow (CFX)": ["Static Structural (ANSYS)"]}}</member-data>
</Object>
<Object Name="/Schematic/CustomProjectTemplate:FSI: Fluid Flow (FLUENT) -> Static Structural" Version="1.0">
<class-type valType="String">CustomProjectTemplate</class-type>
<object-name valType="String">FSI: Fluid Flow (FLUENT) -> Static Structural</object-name>
<member-data valType="String">{"DisplayText": "FSI: Fluid Flow (FLUENT) -> Static Structural", "SystemTemplates": [$$288dc1b3-a184-4e6d-bde0-6fb3170a4e54, $$aa4a9d93-cf7f-449e-acf5-638b39639849], "SystemNames": ["Fluid Flow (FLUENT)", "Static Structural (ANSYS)"], "ToolboxGroup": "Custom Systems", "AdditionalSystemHelpId": None, "PostCreationSteps": [["Share", "Fluid Flow (FLUENT):Geometry", "Static Structural (ANSYS):Geometry"], ["Connect", "Fluid Flow (FLUENT):Solution", "Static Structural (ANSYS):Setup"]], "LayoutIndices": {"Fluid Flow (FLUENT)": 1, "Static Structural (ANSYS)": 0}, "LayoutChildren": {"Fluid Flow (FLUENT)": ["Static Structural (ANSYS)"]}}</member-data>
</Object>
<Object Name="/Schematic/CustomProjectTemplate:Thermal-Stress" Version="1.0">
<class-type valType="String">CustomProjectTemplate</class-type>
<object-name valType="String">Thermal-Stress</object-name>
<member-data valType="String">{"DisplayText": "Thermal-Stress", "SystemTemplates": [$$d592be41-9c38-4dc5-bc3f-e48ce6988620, $$aa4a9d93-cf7f-449e-acf5-638b39639849], "SystemNames": ["Steady-State Thermal (ANSYS)", "Static Structural (ANSYS)"], "ToolboxGroup": "Custom Systems", "AdditionalSystemHelpId": None, "PostCreationSteps": [["Share", "Steady-State Thermal (ANSYS):Engineering Data", "Static Structural (ANSYS):Engineering Data"], ["Share", "Steady-State Thermal (ANSYS):Geometry", "Static Structural (ANSYS):Geometry"], ["Share", "Steady-State Thermal (ANSYS):Model", "Static Structural (ANSYS):Model"], ["Connect", "Steady-State Thermal (ANSYS):Solution", "Static Structural (ANSYS):Setup"]], "LayoutIndices": {"Steady-State Thermal (ANSYS)": 1, "Static Structural (ANSYS)": 0}, "LayoutChildren": {"Steady-State Thermal (ANSYS)": ["Static Structural (ANSYS)"]}}</member-data>
</Object>
<Object Name="/Schematic/CustomProjectTemplate:Pre-Stress Modal" Version="1.0">
<class-type valType="String">CustomProjectTemplate</class-type>
<object-name valType="String">Pre-Stress Modal</object-name>
<member-data valType="String">{"DisplayText": "Pre-Stress Modal", "SystemTemplates": [$$aa4a9d93-cf7f-449e-acf5-638b39639849, $$153bfb27-a2ad-4225-82bc-823f59d7554e], "SystemNames": ["Static Structural (ANSYS)", "Modal (ANSYS)"], "ToolboxGroup": "Custom Systems", "AdditionalSystemHelpId": None, "PostCreationSteps": [["Share", "Static Structural (ANSYS):Engineering Data", "Modal (ANSYS):Engineering Data"], ["Share", "Static Structural (ANSYS):Geometry", "Modal (ANSYS):Geometry"], ["Share", "Static Structural (ANSYS):Model", "Modal (ANSYS):Model"], ["Connect", "Static Structural (ANSYS):Solution", "Modal (ANSYS):Setup"]], "LayoutIndices": {"Static Structural (ANSYS)": 1, "Modal (ANSYS)": 0}, "LayoutChildren": {"Static Structural (ANSYS)": ["Modal (ANSYS)"]}}</member-data>
</Object>
<Object Name="/Schematic/CustomProjectTemplate:Random Vibration" Version="1.0">
<class-type valType="String">CustomProjectTemplate</class-type>
<object-name valType="String">Random Vibration</object-name>
<member-data valType="String">{"DisplayText": "Random Vibration", "SystemTemplates": [$$153bfb27-a2ad-4225-82bc-823f59d7554e, $$cd4541af-ab82-4037-b76a-f7d44c0b00e8], "SystemNames": ["Modal (ANSYS)", "Random Vibration (ANSYS)"], "ToolboxGroup": "Custom Systems", "AdditionalSystemHelpId": None, "PostCreationSteps": [["Share", "Modal (ANSYS):Engineering Data", "Random Vibration (ANSYS):Engineering Data"], ["Share", "Modal (ANSYS):Geometry", "Random Vibration (ANSYS):Geometry"], ["Share", "Modal (ANSYS):Model", "Random Vibration (ANSYS):Model"], ["Connect", "Modal (ANSYS):Solution", "Random Vibration (ANSYS):Setup"]], "LayoutIndices": {"Modal (ANSYS)": 1, "Random Vibration (ANSYS)": 0}, "LayoutChildren": {"Modal (ANSYS)": ["Random Vibration (ANSYS)"]}}</member-data>
</Object>
<Object Name="/Schematic/CustomProjectTemplate:Response Spectrum" Version="1.0">
<class-type valType="String">CustomProjectTemplate</class-type>
<object-name valType="String">Response Spectrum</object-name>
<member-data valType="String">{"DisplayText": "Response Spectrum", "SystemTemplates": [$$153bfb27-a2ad-4225-82bc-823f59d7554e, $$f0fec6ef-5e39-407e-a99a-df4ad6505dc3], "SystemNames": ["Modal (ANSYS)", "Response Spectrum (ANSYS)"], "ToolboxGroup": "Custom Systems", "AdditionalSystemHelpId": None, "PostCreationSteps": [["Share", "Modal (ANSYS):Engineering Data", "Response Spectrum (ANSYS):Engineering Data"], ["Share", "Modal (ANSYS):Geometry", "Response Spectrum (ANSYS):Geometry"], ["Share", "Modal (ANSYS):Model", "Response Spectrum (ANSYS):Model"], ["Connect", "Modal (ANSYS):Solution", "Response Spectrum (ANSYS):Setup"]], "LayoutIndices": {"Modal (ANSYS)": 1, "Response Spectrum (ANSYS)": 0}, "LayoutChildren": {"Modal (ANSYS)": ["Response Spectrum (ANSYS)"]}}</member-data>
</Object>
<Object Name="/Schematic/Component:Geometry" Version="1.0">
<class-type valType="String">Component</class-type>
<object-name valType="String">Geometry</object-name>
<member-data valType="String">{"DisplayText": "Geometry", "ImageName": "cad_designmodeler", "ComponentStateOnLastFailure": "UpToDate", "AlwaysBePartOfDpUpdate": False, "FullyUpToDateOnDps": None, "CoupledClients": [], "SubComponents": [], "DataSharedFrom": None, "DataSharing": "None", "DataContainer": "Geometry", "_overwrittenUpdatable": None, "Template": $$d06ec36f-9c23-436a-8295-ad443a6bdbcf, "InSystem": $$65399cc5-d2dd-45bf-a609-4e1750367562, "MasterSources": {"Sources": []}, "Notes": None, "UsedLicenses": None, "ActiveTransferComponents": [], "Solver": None, "IsFailedState": False, "UpdateConditionParameter": None}</member-data>
</Object>
<Object Name="/Schematic/Component:Mesh" Version="1.0">
<class-type valType="String">Component</class-type>
<object-name valType="String">Mesh</object-name>
<member-data valType="String">{"DisplayText": "Mesh", "ImageName": "model2", "ComponentStateOnLastFailure": "UpToDate", "AlwaysBePartOfDpUpdate": False, "FullyUpToDateOnDps": None, "CoupledClients": [], "SubComponents": [], "DataSharedFrom": None, "DataSharing": "None", "DataContainer": "Mesh", "_overwrittenUpdatable": None, "Template": $$214ec792-3a79-4ded-ba6e-d737487c1d12, "InSystem": $$65399cc5-d2dd-45bf-a609-4e1750367562, "MasterSources": {"Sources": [[{"DataType": "Geometry", "Component": $$dea1beab-49b9-4755-a4be-decd6599c563, "Transfer": None}]]}, "Notes": None, "UsedLicenses": {"aa_t_i": 2}, "ActiveTransferComponents": [], "Solver": "", "IsFailedState": False, "UpdateConditionParameter": None}</member-data>
</Object>
<Object Name="/Schematic/Component:Setup" Version="1.0">
<class-type valType="String">Component</class-type>
<object-name valType="String">Setup</object-name>
<member-data valType="String">{"DisplayText": "Setup", "ImageName": "setup", "ComponentStateOnLastFailure": "UpToDate", "AlwaysBePartOfDpUpdate": False, "FullyUpToDateOnDps": None, "CoupledClients": [], "SubComponents": [], "DataSharedFrom": None, "DataSharing": "None", "DataContainer": "Setup", "_overwrittenUpdatable": None, "Template": $$43a7f070-d39f-44c7-b9f2-5918cb34aac1, "InSystem": $$65399cc5-d2dd-45bf-a609-4e1750367562, "MasterSources": {"Sources": [[{"DataType": "SimulationGeneratedMesh", "Component": $$fdafb1ad-197e-428d-ba42-0a0bf84d4936, "Transfer": None}]]}, "Notes": None, "UsedLicenses": None, "ActiveTransferComponents": [], "Solver": None, "IsFailedState": False, "UpdateConditionParameter": None}</member-data>
</Object>
<Object Name="/Schematic/Component:Solution" Version="1.0">
<class-type valType="String">Component</class-type>
<object-name valType="String">Solution</object-name>
<member-data valType="String">{"DisplayText": "Solution", "ImageName": "solution", "ComponentStateOnLastFailure": "UpToDate", "AlwaysBePartOfDpUpdate": False, "FullyUpToDateOnDps": None, "CoupledClients": [], "SubComponents": [], "DataSharedFrom": None, "DataSharing": "None", "DataContainer": "Solution", "_overwrittenUpdatable": None, "Template": $$6f3e02c7-54f9-46ca-9ed9-5b377255f497, "InSystem": $$65399cc5-d2dd-45bf-a609-4e1750367562, "MasterSources": {"Sources": [[{"DataType": "FluentSetup", "Component": $$10d831d1-6732-474b-850c-01ed89cc0845, "Transfer": None}]]}, "Notes": None, "UsedLicenses": None, "ActiveTransferComponents": [], "Solver": "FLUENT", "IsFailedState": False, "UpdateConditionParameter": None}</member-data>
</Object>
<Object Name="/Schematic/Component:Results" Version="1.0">
<class-type valType="String">Component</class-type>
<object-name valType="String">Results</object-name>
<member-data valType="String">{"DisplayText": "Results", "ImageName": "results", "ComponentStateOnLastFailure": "UpToDate", "AlwaysBePartOfDpUpdate": False, "FullyUpToDateOnDps": None, "CoupledClients": [], "SubComponents": [], "DataSharedFrom": None, "DataSharing": "None", "DataContainer": "Results", "_overwrittenUpdatable": None, "Template": $$d41c9f54-2b5e-47e8-9dc7-0b7be9c2674c, "InSystem": $$65399cc5-d2dd-45bf-a609-4e1750367562, "MasterSources": {"Sources": [[{"DataType": "FluentSolution", "Component": $$edba7e80-621b-4119-aa8e-2347d1c77c5e, "Transfer": None}]]}, "Notes": None, "UsedLicenses": None, "ActiveTransferComponents": [], "Solver": "", "IsFailedState": False, "UpdateConditionParameter": None}</member-data>
</Object>
<Object Name="/Schematic/Component:Mesh 1" Version="1.0">
<class-type valType="String">Component</class-type>
<object-name valType="String">Mesh 1</object-name>
<member-data valType="String">{"DisplayText": "Mesh", "ImageName": "model2", "ComponentStateOnLastFailure": "UpToDate", "AlwaysBePartOfDpUpdate": False, "FullyUpToDateOnDps": None, "CoupledClients": [], "SubComponents": [], "DataSharedFrom": None, "DataSharing": "None", "DataContainer": "Mesh 1", "_overwrittenUpdatable": None, "Template": $$214ec792-3a79-4ded-ba6e-d737487c1d12, "InSystem": $$6df5e8f1-9b7f-44c4-9fe0-42b84e686552, "MasterSources": {"Sources": [[{"DataType": "Geometry", "Component": $$dea1beab-49b9-4755-a4be-decd6599c563, "Transfer": None}]]}, "Notes": None, "UsedLicenses": {"aa_t_i": 2}, "ActiveTransferComponents": [], "Solver": "", "IsFailedState": False, "UpdateConditionParameter": None}</member-data>
</Object>
<Object Name="/Schematic/Component:Setup 1" Version="1.0">
<class-type valType="String">Component</class-type>
<object-name valType="String">Setup 1</object-name>
<member-data valType="String">{"DisplayText": "Setup", "ImageName": "setup", "ComponentStateOnLastFailure": "UpToDate", "AlwaysBePartOfDpUpdate": False, "FullyUpToDateOnDps": None, "CoupledClients": [], "SubComponents": [], "DataSharedFrom": None, "DataSharing": "None", "DataContainer": "Setup 1", "_overwrittenUpdatable": None, "Template": $$43a7f070-d39f-44c7-b9f2-5918cb34aac1, "InSystem": $$6df5e8f1-9b7f-44c4-9fe0-42b84e686552, "MasterSources": {"Sources": [[{"DataType": "SimulationGeneratedMesh", "Component": $$d20eb79b-6655-44af-8162-8530c4a9226c, "Transfer": None}]]}, "Notes": None, "UsedLicenses": None, "ActiveTransferComponents": [], "Solver": None, "IsFailedState": False, "UpdateConditionParameter": None}</member-data>
</Object>
<Object Name="/Schematic/Component:Solution 1" Version="1.0">
<class-type valType="String">Component</class-type>
<object-name valType="String">Solution 1</object-name>
<member-data valType="String">{"DisplayText": "Solution", "ImageName": "solution", "ComponentStateOnLastFailure": "UpToDate", "AlwaysBePartOfDpUpdate": False, "FullyUpToDateOnDps": None, "CoupledClients": [], "SubComponents": [], "DataSharedFrom": None, "DataSharing": "None", "DataContainer": "Solution 1", "_overwrittenUpdatable": None, "Template": $$6f3e02c7-54f9-46ca-9ed9-5b377255f497, "InSystem": $$6df5e8f1-9b7f-44c4-9fe0-42b84e686552, "MasterSources": {"Sources": [[{"DataType": "FluentSetup", "Component": $$4a3cb660-8a08-44b5-aaf5-b3dd4525e4f5, "Transfer": None}]]}, "Notes": None, "UsedLicenses": None, "ActiveTransferComponents": [], "Solver": "FLUENT", "IsFailedState": False, "UpdateConditionParameter": None}</member-data>
</Object>
<Object Name="/Schematic/Component:Results 1" Version="1.0">
<class-type valType="String">Component</class-type>
<object-name valType="String">Results 1</object-name>
<member-data valType="String">{"DisplayText": "Results", "ImageName": "results", "ComponentStateOnLastFailure": "UpToDate", "AlwaysBePartOfDpUpdate": False, "FullyUpToDateOnDps": None, "CoupledClients": [], "SubComponents": [], "DataSharedFrom": None, "DataSharing": "None", "DataContainer": "Results 1", "_overwrittenUpdatable": None, "Template": $$d41c9f54-2b5e-47e8-9dc7-0b7be9c2674c, "InSystem": $$6df5e8f1-9b7f-44c4-9fe0-42b84e686552, "MasterSources": {"Sources": [[{"DataType": "FluentSolution", "Component": $$ea79b868-db0f-4d90-adf7-1ee4bc22500b, "Transfer": None}]]}, "Notes": None, "UsedLicenses": None, "ActiveTransferComponents": [], "Solver": "", "IsFailedState": False, "UpdateConditionParameter": None}</member-data>
</Object>
</Container>
<Container Name="ReportDataContainer" Version="1.0">
<container-type valType="String">Ansys.ProjectReporting.Addin:ReportDataContainer</container-type>
<static-id valType="String">ReportDataContainer</static-id>
<storage-scheme-id valType="String">version-1-format</storage-scheme-id>
<deleted-sources valType="String">[]</deleted-sources>
<last-updated valType="Int64">0</last-updated>
<last-modified-by-usage valType="String">{"Extrinsic": 1536, "Input": 1527, "Output": 1527}</last-modified-by-usage>
<outputs-generated-by-type valType="String">{}</outputs-generated-by-type>
<contains-significant-data valType="Boolean">false</contains-significant-data>
</Container>
<Container Name="Graphics" Version="1.0">
<container-type valType="String">Ansys.Graphics.GraphicsAddin:graphics</container-type>
<static-id valType="String">Graphics</static-id>
<storage-scheme-id valType="String">version-1-format</storage-scheme-id>
<deleted-sources valType="String">[]</deleted-sources>
<last-updated valType="Int64">0</last-updated>
<last-modified-by-usage valType="String">{"Extrinsic": 1537, "Input": 1537, "Output": 1537}</last-modified-by-usage>
<outputs-generated-by-type valType="String">{}</outputs-generated-by-type>
<contains-significant-data valType="Boolean">false</contains-significant-data>
</Container>
<Container Name="Units" Version="1.0">
<container-type valType="String">Ansys.Units.Commands.Addin:Units</container-type>
<static-id valType="String">Units</static-id>
<storage-scheme-id valType="String">version-1-format</storage-scheme-id>
<deleted-sources valType="String">[]</deleted-sources>
<last-updated valType="Int64">0</last-updated>
<last-modified-by-usage valType="String">{"Extrinsic": 1538, "Input": 2686, "Output": 1538}</last-modified-by-usage>
<outputs-generated-by-type valType="String">{}</outputs-generated-by-type>
<contains-significant-data valType="Boolean">false</contains-significant-data>
<Object Name="/Units/UnitSystemProjectSettings:UnitSystemProjectSettings" Version="1.0">
<class-type valType="String">UnitSystemProjectSettings</class-type>
<object-name valType="String">UnitSystemProjectSettings</object-name>
<member-data valType="String">{"DisplayText": "UnitSystemProjectSettings", "DataContainerUnitSystemRegistry": {"Geometry": "DesignModelerUnitSystem_mm"}}</member-data>
</Object>
<Object Name="/Units/UnitSystem:UnitSys" Version="1.0">
<class-type valType="String">UnitSystem</class-type>
<object-name valType="String">UnitSys</object-name>
<member-data valType="String">{"DisplayText": "Metric (kg,m,s,°C,A,N,V)", "UnitSystemName": "MKS_STANDARD", "BaseUnitSystemName": "SI", "Quantities": [$$cebfac02-ccf9-4b5c-8947-bcb1ff2ce5b7, $$10586c18-93ea-4954-acf1-e7b155071511, $$d62b7b7e-0c7d-45bc-89c0-c11c89c70981, $$a54e4a40-1e5c-4cb8-925a-248e0fe558c9, $$25f0b4d0-4492-4d49-bd74-ff471f618b58, $$cceee479-cb54-4d50-8436-48122335a9e6, $$7481b5c5-cbd0-4203-ad7b-cd1077bc760b, $$be71c8a8-a7fe-4292-86dc-a26f28600a3e, $$5b4cc1d7-96e8-4980-b4f1-0df522c0e6bb, $$2e34389d-aace-4f03-839b-527aa0cbb2f6, $$80d29c49-325f-4cd9-8e4e-f6370b64e95f, $$480e2973-60aa-4cee-9b64-158125bcc847, $$12ab181c-46e4-4f33-a334-986d899503f8, $$f9fb1173-6b98-4c28-9513-9ad3e1b7f86e, $$cb734399-5937-4c9d-b38c-4c1ef17b92aa, $$c2db6bbd-a7d2-4f61-a7f5-95292c930eae, $$37940e35-8341-4cc5-aa4e-3445a55e7c90, $$19f83492-34e0-4e9a-8734-3a35149bbbaa, $$7944c677-568c-45c8-8c1e-622b1bcdbd93, $$e1cc09df-fd3d-4a52-b50a-21a491092223, $$f57d5761-0d3f-40d6-b8d7-6dbe2becd51e, $$7c7e1e08-daf3-4812-806b-d58edf1f2b50, $$8da57c3c-5ad2-4f8b-ad38-fc7beca8d08d, $$042d6bae-30ca-49c6-9b83-ca6475cfb55d, $$292d3fa7-c347-4e16-9c9c-d531fa8055dc, $$909105c2-48e9-47e0-b5ac-d4a0eb2b5f02, $$4e058a37-ff6e-40da-8cf9-a8f34f7d6ead, $$80765edc-dcc0-432f-927c-6724c924b4ea, $$29b1d454-e8f9-45ec-a080-5dfedc7ed180, $$e13c121c-7c9e-42fa-a642-42f035287338, $$ff3e48b1-186e-4cf7-9aa5-bd16115d436f, $$0e0ec201-ffad-4959-ad6a-c55c28c4b88b, $$1918812f-493f-48f9-93dc-d9c3c5d016b9, $$f210a192-3c9e-4b27-960a-76c9d7a0a9e2, $$c06b2b5b-d678-4027-87f0-8dfa21d4b204, $$3418a8e5-2856-4487-9102-11e25b6a8af8, $$37b73853-66de-44e9-a2ed-cadf2a0f8816, $$476723ff-2606-4642-890e-f9506c15adfa, $$91fbfee4-f0d7-4cca-ae4c-dbebaa6f61ad, $$c8449d63-5bb0-4eed-a22e-65147fdfc45c, $$d0115d32-9c52-411f-95c3-18a730a45265, $$cea6a7a6-669b-449b-ac50-14fbb7d61dc4, $$fdf67efb-5c0c-498e-bd02-8e55bdaab2b3, $$730e8d14-2b8b-4c56-85b6-96d06d3926b6, $$e11cbb76-7036-4c53-8051-60d9460f4607, $$4b3356b8-07c5-478a-9da4-a3ab1c32cd17, $$4d8717bf-befa-4053-9727-b234d5f816b7, $$2e44c13e-0e52-4278-8d3b-f0413916ec13, $$6ade8b41-9647-4f77-8ae7-09de3093389e, $$5da4f3ea-a875-41c2-aa68-3f7aee514f9e, $$f761c40b-fa24-4d1a-8026-c490774c0e78, $$2cd2ae10-b250-428e-8390-059be029ed3d, $$2a5c9187-c9ae-4ca8-8f3c-b9d8efccc730, $$663e175e-3139-4b31-a7f1-6186d4922b0d, $$f79dbf5a-83e4-420a-acd7-0b3996ad07b1, $$1c4e4e48-f8e8-4cba-b286-8ca8130d5a32, $$1a456c13-b56d-41b7-acdb-5edcaa09288d, $$30a75d39-aad3-44c9-b27f-2bc7d5770f9c, $$4b6de336-4fdf-4777-8902-33300f78ffa8, $$254ff009-84d8-4d0c-987a-d271693096e9, $$3c11cddc-73ed-46a3-bee9-9f7b82307ab2, $$594b8e6e-3ca5-471f-b77d-1d57f6f57f0b, $$008f538a-915b-49f2-9e09-c7c328fbc18c, $$6f515fbf-3fb5-44c6-8b4d-6578eb602d26, $$393e2e49-2ad4-40f9-9092-b2a3df69e1d1, $$327fffc6-ae0a-4789-9ade-f93c3e08a12d, $$1d7991e5-726f-4d52-8260-0bd150ca38cf, $$4b1bd0f7-9606-462c-b4c8-327cf422d831, $$96848471-d2e8-42b2-9e1c-7a07182a34a0, $$a935a87f-e40e-43b3-ae29-ae0f84f1cb64, $$0d2b640e-0390-47bb-943f-0f5d980e5331, $$6c616380-3981-4266-90fc-02f4ebfa7e05, $$33dbae15-1e89-46f5-92df-761d8cbca077, $$2c3d86b8-0320-44d8-9611-cc3e862dba2f, $$25db6493-ec9f-4a1a-988e-92fe1b76c53c, $$36eff146-87b0-44e4-8bd2-3adf514ea752, $$c3af58ff-d6f2-4418-b623-b966dffa0931, $$bc128dc4-a2e1-453a-9bb2-03837e0c061e, $$cc1e6dcc-59e8-49ad-be74-dbfd010955d0, $$7a781fb2-ee13-49d7-8b63-74ad04ccd562, $$236898be-fd04-4e9e-8a4f-9aa5b1548b0a, $$882824f8-e2ed-4ccd-b6f5-65a42a35c613, $$e58e5373-4c98-420a-b965-3b2d9cc6cddd, $$5f6798e1-c28a-4522-b74b-c0aeb602c778, $$b83c8438-f762-4654-b173-533d17af91e6, $$55815fdc-e864-403d-84b7-6370ea5074df, $$9668acab-509f-4123-9643-9a262cf85523, $$f1c29d8b-a423-4bf5-8862-07c764b45355, $$40057f6a-e104-4228-83a6-34f377a4144b, $$c2461cbd-76ce-4ea6-ae02-5f5fe77f9404, $$0a4591bf-62eb-4c1e-aaab-341836c9881e, $$19857829-314a-4b6e-bcc0-0bf3f0435b38, $$7df5dc4f-012d-47d4-8477-0feb2e663757, $$6a577f08-1309-4e27-bad8-a062eaaa9860, $$ef3b2dea-b8f3-4142-ae4e-2f6a97b5478e, $$c7b30baa-5fcf-4306-b2bd-7b1556485d35, $$bf0d5cfb-624e-4f8d-9a01-254601c85feb, $$07805ff1-c01c-430e-80a1-13e1cd6e7e66, $$4f84c89e-8972-4bde-81df-22805afa1e1f, $$9e498bc2-2825-4e58-a95a-b4899f231965, $$a43cfbc9-66f4-4fde-ae50-ed2c7de25d20, $$d8ce24eb-d2b5-4932-93fc-e180f22aa1a4, $$df16ca36-14e8-4a44-b603-c6007bd75396, $$f11be661-f4b9-4546-8739-11174220d996, $$0981606f-fdb7-4484-9bb8-4146e49cfefc, $$6b7e323e-d87f-448d-aecb-e11550f1c4a4, $$10241059-78b7-4312-b93a-fc5f99c74026, $$f96eeaee-1027-4ed1-86ef-4b9af82eb768, $$a31c31f0-7f65-481d-80c6-60268301737f, $$47f62fcd-f1a1-458e-87ed-c34afdecdf69, $$a18ca273-94a8-4540-b98a-027ab6829e13, $$b6492b57-3168-4a89-a2f0-940224ca1ac7, $$6314845c-45a9-482c-b691-04720f9bd9f3, $$22e80269-8cda-41e7-bd6a-c5b2b40439e3, $$8f37feea-27a5-444a-93b3-8ccd3efaad82, $$52c3aff8-4aee-4d7f-8173-f345fd2b718d, $$652317c6-8469-4e3a-b0cc-bd2cfee3fc79, $$6b3ee0f5-e391-4bc6-8817-ccb253a5407f, $$bd1e4fe5-ab47-4064-a67e-58d73ca15926, $$20d2f2a2-23b0-443c-8677-61a56a2c3f74, $$0ad4c3ee-e16b-405a-9126-ff0ff536e05a, $$eee464fc-c874-4859-ae23-617244aa897e, $$606cad21-b594-48f1-b383-4ef5ba6d2e0c, $$49142816-26aa-48e8-8974-8d230735e786, $$ea960488-906e-4514-ac0b-8cd4d0914082, $$b3e21081-eab6-46a8-b3c2-e5ca1d58dc52, $$8a626ada-3f76-4239-855a-abf0b44e6f82, $$ac815ab6-efd2-44cc-b264-81be30ffec3d, $$12c14c9e-5e66-40dc-b76d-bfd328b18f96, $$7b813a3e-16ff-46cb-87a3-046bc3f18dd3, $$4f62d68c-4ffd-41ec-a29c-87318cb37e3e, $$c7471771-fd2a-435a-a1ea-e066550e8404, $$16504a72-edd9-425f-bd35-b966abd96741, $$de7f426d-ea4e-4062-9097-a24c6895d772, $$94c1144f-ef8e-496f-ae43-e072c48a6f7f, $$a21db0f9-5371-4e33-95d3-6b7ed65200de, $$bcab9046-7a37-4bee-b5ce-36a89f28e63e, $$039683f8-b7ba-488f-ace3-0e0629292426, $$6db019c2-f847-4207-8fe4-09b8e5f5f3b9, $$ffc96299-6459-46c3-af66-2bb953ad6e8f, $$bfbaa6fd-e74d-4d0e-a8f3-e92177c96814, $$b682352f-8afb-42a8-bb44-89724be0037c, $$d82fef18-dc84-4f3d-9081-23aa149a87a4, $$19ef6945-a358-41d7-97e8-afe3096498f8, $$ab4c246a-c939-453f-9dc1-65fe5d5b57f3, $$00e187ee-7d1f-45b8-ab26-f917abe80602, $$3213622a-5307-4fa6-92f4-db5a2fdbba3d, $$2c921b91-d4f5-4684-aeeb-358814ca113e, $$bcdd1070-07af-4f3b-ab2b-59507fd3e297, $$1078ffd6-ca91-468d-ba77-f2409e40248d, $$16102c6b-c542-43a8-a0ad-f5237aaffa60, $$ddd71839-702a-4a5a-ac6f-ec4a66193a53, $$2941ed4d-ba43-4f12-824f-86b7a37a8b05, $$c6fdb0b3-ead8-4dfb-b540-c9df95230897, $$0b9450c1-e7d6-4165-9062-f3dd44a7b0f4, $$f16a951c-2cbc-44ff-85ae-0fa33cd3fa33, $$2dd66df6-40c9-4cf1-afcf-cd28c0629cb4, $$692d1e74-b37e-4565-82cc-515bd0ae13e8, $$add6fe31-b05f-44df-8b0a-eed28a54de00, $$1233bd09-4376-4563-822e-cdf19afcedc5, $$e96805d8-f745-43eb-afe4-13dc714a9c8e, $$4bfe2d96-5a44-4ebe-97db-46ae15693218, $$d05c7107-4a26-4402-b79a-dc16951eab2d, $$1c8cbfd4-0e2d-497b-8a98-52b71cdb8778, $$be84c3e7-161b-4448-9e55-8f7ab55f02a4, $$b067dfd5-13d4-473d-bfde-233e8f65ccbe, $$ea162e18-21df-471e-ad87-6b5fba8c2f4d, $$0425cb9d-a0a3-40aa-bee9-0d7d60515722, $$5749b041-70a8-4fda-bb69-c88a708869b7, $$fb228ba4-3f3d-42bf-8412-3a3455065108, $$99eacb62-f448-455d-8631-a433ca106a66, $$c059b8d6-fb58-4e11-877c-7f38222e1a09, $$859bf45e-85d3-4617-ba48-62fd1f98d4a5, $$6e86c5cb-81b3-40d4-9280-860046ed3648, $$720a20ef-0990-4741-9d8d-3af34dc661fa, $$37d0e1fb-3bf4-4359-9413-78ed6a5ddb58, $$7347bb33-d51f-4c41-bda5-d4d7acff5d13, $$0748933e-4fcd-4e59-a1ca-d259db453036, $$33f3aa1b-5731-48c8-8701-e892b4040e10, $$379cb0aa-94a3-4079-bc84-2eeee27e17e8, $$07d18705-60ad-46c9-9296-3aa587f2970e, $$3bb78df0-2c4c-4b62-9e2b-5ca7a47f15d1, $$ec98a5d9-71f3-4067-b535-27a0a11c258b, $$f3efa98c-dcc2-4c7c-8f34-cb1e5cae1809, $$a66ca159-d63c-4ead-ac2a-6517c3ed0578, $$7542034f-bea3-4f88-8dec-4679f2d31246, $$8121bdbf-4626-48ef-a3c2-d1b6d990efda, $$80d163c9-445c-494c-aec5-394e10bdb2bb, $$11b56afa-18fe-45e1-ba15-5fb516fb864f, $$1c1023ee-1a60-4da1-ae69-7380637446c6, $$2275639f-59a8-4e11-9825-07bce1c97c00, $$901a4b7a-9cce-4726-9aad-cd99be784ff2, $$68f8a5c6-734f-42c7-b181-c50888ee50a8, $$f0fb9878-2805-41e0-82bf-b28e2e054e63, $$6d44d4fc-a714-4569-886a-6a7dacd98125, $$6e2e2b6a-06d7-47c2-bfb5-6c9dd823bed8, $$4b8998c3-75fe-4daf-9413-d0a2b39948ec], "IsProjectUnitSystem": True, "IsDefault": False}</member-data>
</Object>
<Object Name="/Units/UnitSystem:UnitSys 1" Version="1.0">
<class-type valType="String">UnitSystem</class-type>
<object-name valType="String">UnitSys 1</object-name>
<member-data valType="String">{"DisplayText": "DesignModeler Unit System (m, degree)", "UnitSystemName": "DesignModelerUnitSystem_m", "BaseUnitSystemName": "SI", "Quantities": [$$d24b0ef6-b83d-4ed6-a70e-82288d207008, $$6a68a49e-5942-4ec8-868f-86360b839de0, $$a079d4ab-7c4f-4f9d-b670-b700c57709b2, $$39713f7d-3c0f-451e-9cb6-c25aa7a27630, $$0a796b39-a418-4548-97f7-b24dba24db0d, $$a97c9c55-2fb6-4636-a8d4-6238787e3e5f, $$52aadd0e-8cbd-46d7-af56-f83f7a086139, $$abf5b792-f480-4851-b3b3-137165ac4749, $$dd9557ea-6c3c-4c22-b443-b45148e617df, $$719f854c-a028-4204-a611-34691c0acf0a, $$d011650d-9078-4e6b-934c-4a2a1381d5af, $$a349f9ce-9bd8-4072-9d8b-7577ab13c390, $$1cb15a73-4473-4baa-bfb0-eba11f9c39b2, $$0f80b387-2d4e-445f-b58c-83652ae3a0be, $$70e511ce-cf65-43bb-ad6e-d586e4ca4dd3, $$69ea6b35-be91-4cc1-ae0a-b3d22e1bf410, $$0f730e19-ab5c-4d83-8dc0-f184c67674a1, $$f68e133d-ab96-4e90-93d9-6b02f66acaaf, $$2c95238c-660b-400d-abdb-fed8a7c0fc0b, $$45028c58-c1d9-4b69-86e0-99f584144d97, $$c2a4b19a-a32b-4206-b52e-a97438e3983a, $$e7b2e5b3-520b-4718-867b-da7a38002d26, $$a63cdf5d-e38e-455b-9e8c-f1fab05e05c2, $$4f888f1d-613d-4b10-bda1-7edc4b309a71, $$73ecd910-a1e0-43fe-b17c-701208a9fc3f, $$822070c7-f315-4a06-aed7-a1bc090afbcf, $$38e9f658-67f1-4fc0-b16c-22bda3b999e2, $$e971b699-3b1b-4d1f-ad34-7bb2243dde4d, $$47ea17e0-f4a0-4882-8661-c89132603bef, $$06b6786c-20d1-49a3-a9a1-4fe73d3eccb3, $$8d27c4e1-e207-4ba2-9d8c-d6413d86e9bb, $$b8af913f-6970-43a3-8170-f554f5b89cba, $$0fe9c4cc-5c46-4f84-b915-aabe136deefb, $$7cb0fd0c-cdfb-4c8f-8996-eecde112e160, $$463f334c-d7a9-4e4e-85b7-c7a389282bc6, $$ab4e7e25-0189-4455-90c7-91f1ebd4241c, $$de5a75a6-be47-4656-8a1e-1f4e6a3c907a, $$2d01ea62-cb6b-4581-9257-63ba23ab9d9f, $$93ced213-12c1-4bf2-b780-1e68a219688a, $$ed9f1063-5114-406f-95bd-5f6dd9c95a3e, $$906a7552-3cc4-46be-9691-427544cbbc17, $$57adb27b-7d75-4bee-9671-38579d42ecf3, $$edd7d0b7-9ced-450b-8960-0a4293bd398d, $$d9b7d3e1-7aec-449d-9c59-2bde71f42c6b, $$799e82d1-64f6-4b66-96b3-7e0d8a134f24, $$3532c444-b504-43a8-aaaf-7d7aa6a0a47a, $$9ee979b9-f6f0-4876-bcd0-63ca3ff59143, $$b6f03229-4ea0-4053-ae73-173e4d1b6fd7, $$6ace5588-0fd5-40ee-8cf5-b4e7a41d2597, $$0aaa3054-46c9-4260-ab73-73c6ccec5cd0, $$4021048d-a922-4fa3-845b-c95ac6a9c218, $$2718964d-cb72-4996-a89f-01505db070e2, $$3b7bcb3e-6e0e-48c3-b653-fedd76be699d, $$20803da9-60f6-4032-8c3f-610c9c892153, $$a6574245-aaf3-48a7-abea-1acc0787eb2c, $$1ad3315f-5a32-4212-bd50-90e562a4d63a, $$b1649fd2-082e-4fa7-955b-3632c2644e5a, $$2f82ae79-11d1-4640-a372-cbd6a926a692, $$72331d8c-9dff-4dcb-ae12-2d2c1b61b087, $$9edac025-7309-4281-8c39-7551444b9262, $$872295f2-ca00-4916-860c-321616a19fc4, $$052f80d8-967b-4b12-8ea4-dce5a44e6f81, $$10082174-db05-418b-9274-3a1e3a7040f5, $$5f8543d0-0835-41fe-a0fa-3b357b4a64bb, $$ec7c1608-2b93-47ee-97f9-84e1d20901ba, $$4150215e-0a94-437d-aca6-f919ace8ed5c, $$a7b93461-71b7-4162-a0e8-4f2f8d306dc9, $$f0290759-5c76-41e6-bc92-57554cf1590b, $$60951300-d6da-4e74-b13a-b1d5e2dfce99, $$79095ada-9662-4fda-b7f6-802a2b81c69e, $$27d55139-a692-4eae-a906-57ce461a1edf, $$ebe4379d-9c0e-4d79-9890-6132f15841d3, $$ce91210a-62cb-484d-90a4-72e45cadbdd3, $$1ea4f2c3-d82c-4e4f-ab5c-547c7a0d283e, $$7d2c8b9c-0683-41a1-8f87-08f3d2233ead, $$27d1ac9f-93de-415d-832c-b8ce7aa0b697, $$243c5e0b-8452-486d-ac0b-cd883e202a7b, $$bfee1bf4-66f0-4c99-8398-fac8636a5fa8, $$fedc81bf-37ae-478c-a8ba-e0ab3d0b5615, $$ed84e3b1-5054-4f7d-8bfc-88cda17daabc, $$a32f9ff8-33ef-4d69-b96c-ae9ff7baa5a5, $$bfd96666-2d8d-4fad-8316-395f1c784253, $$3075990a-a7f0-4807-bfcf-10341605f620, $$071dacbb-e029-4556-9f5e-a2730da1eef9, $$b72392ef-a2b8-4eb5-8261-f67af35b0178, $$2acdf880-7b91-41b7-8454-b956faffb11a, $$2d0eea26-40d3-4fc5-9aee-52fcb3c16bff, $$7593833d-a101-4ac6-89c1-fa7ccc442f6b, $$cf82d260-0a66-4851-932a-4be102a2fbab, $$35a58258-cfbe-4f05-8de0-f5ad00afc0f2, $$40c379f1-6773-4a7f-a5bd-ba621888e59d, $$e9554c9d-bdb5-4f6f-9d1c-a580c43f0f99, $$652ea185-6db2-4372-952c-391198545cc6, $$b5c0ee6f-5c8c-4ebf-a362-09c99c348d5f, $$dd1ac4b6-8353-4bcb-a177-56abe989561a, $$26be04fa-7795-4df7-b749-d551996b5375, $$3bcdd9f1-5ab6-444d-9284-6e0b8e1ce762, $$578df6c7-ba9f-42f4-af07-2d56ff0fb361, $$380c9290-175f-457d-81ae-e689adf75076, $$cd6e6ac1-af6f-4565-a6c8-0ba3d08e50a7, $$af180466-c71c-4c45-a1a2-13d2114b2db6, $$8804d9fa-b234-4088-9128-3328f25cfa29, $$4ac7990e-b284-494b-a714-7a533b7db94d, $$e2565cde-60b9-47d9-aa3c-debeca71da4b, $$2f1b1fbf-79af-40ba-ad58-cc8be01e783b, $$df73a7ac-2445-4c15-ab8a-f95c58a09236, $$b38c473d-13f2-4cf3-ba86-56ef351e0215, $$22645936-521d-4e93-9982-0d82995aa6b8, $$e51e6ab9-135b-488d-bc56-6e538e11a771, $$d1e4c579-5ae3-4469-a8e1-1a6127f68710, $$76c372c2-c0c8-4f4e-a155-670cf7b0d1df, $$d455d767-7429-45be-b7b2-479b1b09ef6a, $$2eb7e452-e276-49eb-9f05-add3fcbaa948, $$64df6d02-faee-4da4-98ef-6ccb0bb94211, $$cfc37e2a-e3bf-4bcd-9e9c-088253a00f84, $$a5d5abba-771a-4b17-b89b-346e1417d711, $$b88600db-ea3f-4331-a8bd-403979cfa3b2, $$476aae53-bd54-4ca8-90c9-bd7feeacdd82, $$137cff58-4f67-4287-a06d-33078ab9ee4c, $$f8eb0eb0-065d-4f3e-a623-9f1ca9c45422, $$b3210985-4d3f-4c4e-a0f2-6e2cea1bced5, $$ac2ff9c1-627e-41d9-9af6-c24ccc34371a, $$4db9b74c-4415-411f-88e7-09564fc41f4b, $$e6dde077-03df-4319-8458-005d3331e9fe, $$01931cbd-7665-45e9-a9ff-e417f6906b19, $$60929b3d-7e6b-455f-9649-c378ef648276, $$8a7dcc50-72aa-4a1a-8340-0d5532c3bdc5, $$efacae22-7e67-4529-be1b-62797794460a, $$bd77a0e1-3794-4d3f-8aea-2e2886554f25, $$2c08ad4b-a351-4074-9593-22d2bfee6143, $$c11e33e8-c389-4b7f-9d57-6cfcb9c0af0c, $$474f1114-1c3c-49a3-be27-a75a6fdbb0fe, $$b60bf6bb-f47d-497e-a86f-eacbe41ae33d, $$615e7d7b-d045-464c-baf0-da27194594b3, $$a09185d5-2cf5-41d0-b4fb-b1923934fb71, $$0bf4fe2e-a6b6-4982-a571-647fd83a70ba, $$58937011-b69b-4c85-91a7-361be0a0fe67, $$d90f3dde-b6bc-4245-a682-e618fb16a543, $$1a6fc8e5-a13d-44c0-a5a1-d6759541f33d, $$656c395b-42cb-4e8b-86e1-52006b11221c, $$da71e9c0-806b-4178-8d6a-530c221d7c87, $$59283d68-a2c9-43da-85f2-4e8b721e2f3e, $$75db51d1-b2c1-4230-a30e-188e4603ac0a, $$937bf57c-91bb-4709-8313-456513e3a5d7, $$1aa25330-6af3-48b0-81bc-722cc9a78c91, $$931f38c8-41ce-40db-acd0-92a62968f524, $$dbc48e88-aaad-4971-b49b-5808db6a7727, $$f51e63a3-2d65-4f4b-86ac-53ed905886d5, $$495528da-4b16-44ab-8eee-c1fdc8b0c0d8, $$80434c3a-8ebc-44d4-86f7-935e40f2cf09, $$f651249b-7eb2-41d2-8aa6-caaa704623cf, $$b98082e8-b661-42a5-830c-feb6c7770e16, $$8e4fac46-0d21-47cc-9bc0-9fb12a8904a2, $$ce045045-831a-4cbe-8210-8f16734ca580, $$d418f370-fcdc-43fb-b5f8-89e2663f9697, $$9739e795-1a6a-4ae8-a010-1ced0fccc64f, $$73db9b0e-f4b0-4947-b367-8b3328bb5446, $$c461fe61-25ac-4f65-9455-669ccfaa558e, $$40ff5fcd-b46d-49fe-84e9-b2412a832f13, $$b7d20837-d588-45d3-a0be-c8985a9dddb7, $$d7de0ac2-ada2-44c4-8cd4-5f2c59803fc7, $$33a3a9c4-60b3-42d2-b1ec-c87d90ca681e, $$2af75c08-6b77-4772-8097-db885262c09d, $$da4ab6a8-5845-433b-bb99-fccdbf821943, $$9b558f9d-1cbe-43ea-b4b4-1fcbe41b8981, $$37d8348a-4218-48b9-8f4b-9f5657514fb3, $$3698b6bd-a67b-497d-8f95-75c60c1ec04f, $$107ba350-9009-40ae-9e4f-0ff6ae71ec29, $$319ec2e4-d6d2-46a9-85d4-f2452584457e, $$f533cd3b-c773-4fff-8b9c-6630eccbb9b8, $$f51f7c78-f69a-4621-956e-9bb401d754d4, $$d30766e8-9f92-4ef8-9d32-95df829019d3, $$124354a7-db57-49dc-8566-1c76149ab050, $$2f583913-f467-4bca-ab2d-439eedf505fc, $$082804e5-c2a8-45d4-907d-62371c2b2b48, $$79befaaf-5745-48eb-a545-5f7579fffb6c, $$a4987d6e-771d-431b-bc19-c85cf5f22e9a, $$16e7cde5-61a8-458c-8b03-cdac82f8bf34, $$e24cce85-d283-44ad-9a15-961555508e48, $$4e107198-b25c-4290-a598-24de24af1b57, $$718e325d-e3dd-4992-8896-a70315b13a4f, $$6bf98876-e602-48c2-bba3-4452c59b99ee, $$bbab84c2-de8c-4190-a0e5-df07af9fcb0d, $$996b88bb-1ffc-48b2-8449-fec91b2df540, $$23095d07-9437-4a56-844e-f8e8db3425ca, $$0cc82ee0-59bd-40bf-9319-c24552627af9, $$71212adf-4614-4514-8466-93f87daa2bf9, $$aee39acf-ad18-4a40-8230-173b6c991728, $$ac2b4a5e-9b5f-492a-8e92-f9a970d84fe5, $$c3399396-f2f2-4c84-b870-46cd8f7abf81, $$85097378-1b2b-44a0-a4da-57e2fe1f6190, $$bb191a53-fe5f-43b3-89c7-ecf07d3ee113, $$ee967e9e-9492-4fd6-b1a6-20f3d22225f3, $$be7a6196-fc22-4a69-871a-68b1ba94a2cf, $$0e6df047-a1c5-4d3f-b0f8-ab4f0bcca684, $$ac9a6f32-17ac-4781-9653-3f0191f6c7b9], "IsProjectUnitSystem": False, "IsDefault": False}</member-data>
</Object>
<Object Name="/Units/UnitSystem:UnitSys 2" Version="1.0">
<class-type valType="String">UnitSystem</class-type>
<object-name valType="String">UnitSys 2</object-name>
<member-data valType="String">{"DisplayText": "DesignModeler Unit System (mm, degree)", "UnitSystemName": "DesignModelerUnitSystem_mm", "BaseUnitSystemName": "SI", "Quantities": [$$0411f5c9-5c2c-4356-a477-af1312347069, $$95dde601-b9ab-4863-b578-7b8ddac9fcc8, $$96ffec62-47fd-4d11-aa04-f24e193ea7d5, $$90a4712d-7195-49da-864f-faff713215f6, $$b2a47846-a2bd-4a15-b19c-ee689e7c844d, $$77168a8a-9208-45aa-973d-2ac7e8c87b56, $$2d651f15-bcd7-4f26-9d0e-61dfee59373f, $$c478d086-7bdd-4c52-970d-d796ef8ca7ae, $$709fc6cb-9bfb-437d-be28-620c1853efa9, $$aeaba28e-7a9b-4bc1-a38d-6c5518075c83, $$83f5ea41-b218-4b99-877c-64e965a17961, $$fbe09467-0981-447c-ae3d-a78c6722134a, $$bbb36eb6-b578-487c-b062-1d834659d33c, $$ee7161d8-fdd0-49fd-ba13-13b4ff8b87e6, $$3043cd4b-dbb1-4598-8625-11b8c1ef4b8d, $$bcf69d08-fb54-4d0f-ad1c-824c16c97c6c, $$cb9753af-9a26-4ca5-918d-3baa29ea83a7, $$af2c35ea-7446-4808-a96e-15b245cae673, $$7a3bc3bc-a753-408d-bf39-d6a417ea633f, $$7a3ad0a9-4572-4db4-aab7-571fa31b2ece, $$1526d8ca-1fcc-4523-ac5f-a679972dd38a, $$cc972da2-7431-4c46-9a4f-354159e8726b, $$a87e664a-4ca1-4b56-96d0-31983fc686f2, $$d6140075-cd8f-4518-b621-01ba8d6ea227, $$7ab4f64d-5f97-486e-aaf6-bf783cb2428f, $$93d7c109-03a2-4570-b7c2-bbd110cb271e, $$799a1a2a-9313-4b76-862c-8eb051ff9d85, $$e8e9a425-a4a1-42ca-9826-34f0bed507cc, $$baf6c8fb-ab04-41b9-aaec-7277f88f4712, $$70e38de1-179b-4e93-a964-a30f2360e488, $$4891642d-aa06-4792-8a42-869b254f1860, $$2222cbca-0ecd-4090-8501-5f0d92a69285, $$af56dfc2-37c0-4fa0-949c-693637c98a5d, $$4607b9ac-4b05-4247-99c5-ea807bfc2616, $$de9d1f0d-c57b-4e89-bdb5-60302b8c0730, $$9566c26f-ef9c-440f-80d7-47c37e206e52, $$3764aad4-6b91-4786-868d-015a92bd3a17, $$6b1ea827-5866-4fb6-935b-9f11c213990f, $$4adcfccd-e0cc-49eb-9405-139f034c9a1f, $$e9eff810-94a1-4ddf-8d66-d84ebc524897, $$0510cd3f-e183-427c-bf56-f6bc9e238287, $$101d70d6-df35-435e-8d30-d78d59cd448a, $$fcee00e8-9750-4f08-a569-4f2c23b1ba7a, $$581c897c-5d78-4bc3-a3d7-f044f564016f, $$0a41837b-66db-4672-923f-ee3fa8f2fd6f, $$58c8f12c-1010-410a-bb7a-b178178c531c, $$147866a3-dc12-4804-977d-e16094b6d956, $$1ccb42ba-1f9d-4481-be4d-4ebe6853e60a, $$acd8e34a-df16-489e-86bc-126dec30eaf1, $$19e56273-fd34-4e46-b1ea-937725f12d2f, $$6cd28cc4-4d6f-4bef-a53b-c20a3debc3f6, $$ac80a5a2-54b2-4d9d-be8e-24a6f6fbf421, $$7093b730-5467-4389-9b4f-a012bb34ffa7, $$ab128952-4596-466d-bd08-405c83c988c8, $$ecc7d7ef-b4c5-47a5-8df9-bcd042b382a4, $$41d9cc7f-b3d4-4e30-896b-21bffa72616e, $$886f93fa-08fa-4a91-8610-2c90ab58f7ed, $$6d06f2e2-defa-4ae5-b615-93cfef3dae83, $$5b72d455-025a-45a7-bab6-48d6afbddd21, $$2be99e7a-4c64-45cc-8010-27cbfdabe2a9, $$5677ffae-ae48-4a9f-8077-18cea929ce37, $$e13d3b37-9ed1-4476-92e2-929716c0d0f8, $$25ad077a-ad67-4a01-ab57-650c9ee23f2f, $$bef704d2-bca1-4143-8237-a6584eef0fd2, $$d449d0ea-e97f-4113-b8fe-cecc9217a172, $$c221f391-0e67-4967-a46d-9ef7966600b9, $$5283c281-dfb8-4a81-9332-d179a771060c, $$ce13e1dc-3639-454e-99ff-d58aaadf3aa1, $$4b7d9d32-1696-4183-9a82-996317d914ed, $$2babd4bf-a49c-4d06-8d37-54087ca6ed39, $$76cbd10f-58b8-47e4-a92e-7a7990e06895, $$2695d92d-a322-4998-b829-c5204986c48b, $$7c94e4dd-920c-4c6b-8047-dd2fe614e9f8, $$f471c813-fc54-460d-86af-29174a060017, $$4d113391-ae60-40aa-a1f7-6693489f882e, $$cbd5c30c-c285-47db-bfe1-fd83defa075d, $$670ca0ec-73f5-44d9-b110-f2da3d728cfc, $$2ee51dc2-f2e4-4197-ae7a-eafc05b1f31b, $$59c94bec-2443-4f55-a35d-1f691bf22936, $$cf60231f-e024-44de-b529-dcc3c7795cce, $$b2f32c5c-18eb-4e24-b5aa-4d413c9542d4, $$db7e4a29-ea82-4f24-bd0b-2c63220d1e44, $$ec2c6a4a-521e-4b8d-916d-a3ce2c78cf3d, $$7f721ed7-66ae-4004-8a3b-edc6a34d4da5, $$aeb0dc9c-4c12-473a-aa4e-939a88ca5bd1, $$07868b51-8fda-4c01-b88a-34798565190c, $$9616df20-134f-4ec5-9810-79befc0b8d8b, $$e15f77c1-d41b-4b3b-993b-6e2847a45241, $$0bc74241-e278-4c7c-b718-52201221473d, $$68b0d5b8-0cd4-4d17-b19a-2f51a7f7d9f3, $$d8f92854-5305-4ebf-893e-5ddd1306f32c, $$49515d31-e2c1-43cb-ac01-5f8906c96f90, $$c143e0a4-1b0f-452f-bd6d-c5fe74553aff, $$fce1313c-8c79-4b37-8c16-59aded4d7b2b, $$1cd1624a-5fc7-4f7f-bf76-403cc06ea769, $$b5b8ee83-5858-4d32-8298-1dadfa9ec5dd, $$606f834a-4b2c-4ee4-bc0a-dfc6777d42bd, $$fd94d126-b899-4899-b5a6-c53138e13287, $$30f4507d-2492-47d7-97d3-844b5603a0b7, $$0619f7ab-2e41-4d79-9de3-33245fe6bad1, $$a4bd835e-c974-4874-8b57-9d11afcfc47b, $$c5e28ba5-fac6-4194-ba88-5b4b42e5a834, $$7cdbf335-fc5e-4228-92e1-644033db3280, $$a8e246d5-5d02-4319-bf61-7a6bd0cf126e, $$d0218c59-a46f-4e46-b9b2-db72989d9564, $$0089562d-9c16-4a35-93d7-5d2ba3e9393f, $$26ea402b-3846-4c81-8dcd-a68461d8707f, $$e7c75777-1406-45ce-bd4d-74bc023f8256, $$111f5945-6b84-4a9b-ba57-49dbfdc9a00c, $$8c9cb2cc-d912-4957-8e4d-3b4d87d49880, $$536e7046-5e0c-4d60-a823-52c51a1e67a7, $$d4a9387b-29e3-4122-b05d-5310e13b2a60, $$04b8d16b-e4bc-474c-90a1-aea14fd40598, $$d6daa417-f10a-42b5-b9be-3332b653d1fd, $$f00c0165-4f42-40b8-97d7-3a31b93cb6c4, $$8dbd1d72-900a-482d-ab26-3e587e918f78, $$b3751da8-ee91-4330-bd1c-de9529cde889, $$61fde19f-e679-4fd3-b9a7-111170b7c16c, $$eb29a2e9-5e94-4cb9-8e0f-adffbf74d427, $$c157924d-b508-4399-959e-11e668bb80c5, $$8535d22d-5f00-4814-9c2d-ba8f82f6b94d, $$d6d514b1-8827-4db6-9179-6eb6ba4e7733, $$a7c28cdf-1025-458e-9182-60f28f56fab8, $$d666ea04-40ac-4b81-b0f8-25a8b1002447, $$227b2c84-3c4f-46af-906e-fcf1a575dabe, $$5a57eb67-cdaa-473d-a946-a6561dde2c5f, $$4c022788-795a-4648-83b4-35a0de6000e2, $$a7bf5c7d-e5a2-4136-a8a6-08bbbf68f5be, $$3ffcf45f-8281-4218-a23d-d298eb15a297, $$b9f948e0-7e9d-4689-af96-b2b829971ccb, $$038480f1-6c02-4523-a16e-3289277fbc08, $$5dcd122f-52f5-4d2b-b42e-e18845a6d78d, $$950c846f-1c9e-4713-a5dc-44576b1b11f4, $$14a4bc47-1cf5-4094-bf16-9b42a893fad2, $$ef1d5b90-bba2-43c1-95ff-4cba24ac7474, $$57552f15-1a9a-4330-aac2-6b6071433a78, $$a7b4830f-2205-4111-b47b-7b6d81c37fa1, $$8c90c061-deaa-405a-98f3-dde594f823fb, $$c938910f-b9e4-4a8a-a866-6fd4b0fbf46e, $$d355187d-60d5-4d94-ab03-d7421da493c5, $$a91b00b7-00ac-43a7-b05a-e077416c0f36, $$fd34430b-e131-4160-be19-663b339cdab3, $$91629a1f-8b3a-4869-af63-d8fce376db0d, $$fab982a9-5e17-4a7d-802c-8367061ad034, $$076f3f7d-16bb-4a9d-81a2-dac4baae4646, $$bc1722c7-edcd-44ab-b41b-8d1e8a225fe8, $$857fb930-832e-4f4c-906c-b5210fb84fd3, $$6b001955-5573-4248-be6d-784e28603bb0, $$5b438cd2-26c2-49fc-ba13-d6c78b60d74c, $$892643c9-a42c-480e-bd8c-a66764e87d8e, $$c2b1cc5c-ebd0-404e-9fe7-7372266c7589, $$c3691e93-0207-456d-83d0-6c4682741787, $$214aeabc-e216-4748-9224-3abc2f6ca6dd, $$9b05d773-e16b-469d-ab89-72a43ebae18b, $$6d6d8f27-4599-4830-9c92-70775814d48e, $$5a478c28-78b3-4894-976f-837c154c09bc, $$e2174f69-f6ce-4785-ba94-902f2ff3c7bc, $$68292d04-02eb-4e56-abc7-ab955f8e7fe1, $$db3c9269-5e3d-4db3-abff-637de2acc7e7, $$626f84ba-4d22-4ace-8147-91eb0a4c4582, $$c05bfc74-d86e-4c2d-920b-ac9622a4f653, $$210ba651-deff-40db-a88b-257577907787, $$44493aae-43f2-47d5-a94e-8d4323c63c01, $$f347a144-8c6b-429a-b273-0936fa53ead1, $$6e2bae01-9d95-44db-974d-2abba4f3026c, $$50cfbabb-b2ba-4562-ab91-3f43be4e83f2, $$a65b5f67-c2ba-4098-89be-5c71ff50af25, $$a6ca170c-c1ed-4f6f-82e6-1f67058f03f1, $$3e77efc9-cfe8-43af-a003-62a774122565, $$4ca5efea-eef6-4aa4-b2aa-5d2f1d952ebe, $$18964320-81c6-4597-96fe-c0ae32383273, $$e56abe11-b65c-4f49-9d7e-cf62fb62bcf7, $$e685c64f-ec80-49ee-ae00-60ff9c66ca5f, $$771fff19-ad84-49e3-9add-9a9f3f6898c8, $$6d87ed11-532c-4006-96a5-c151019895dc, $$f0dd0844-5ee5-49c7-a006-0a20b5431de8, $$2ad24eb6-1470-43af-ae7d-a7d843fc45a1, $$59b53bce-db4f-4807-864e-5832e6d57cee, $$0d357fbd-8b14-4937-a4ae-b46141df00d0, $$e255862f-9e3b-43c3-a470-845e2aab1961, $$cf71bdc7-9a9f-46f6-8637-56335199c786, $$32abd03f-8fbc-49b8-9fcb-41e7a4dd31e3, $$f97ce549-7cbc-43d3-9777-70a730ef0196, $$9b2e57db-a7e7-4af0-b01e-961b9d2547c5, $$4168ec57-fecc-4c17-bcc2-7f490408c570, $$c6030d74-9b27-4be9-a43a-e4fdf95c7c20, $$5f2079e6-5273-4cf5-a896-2d8553345854, $$ef50a5b2-0b50-4b3f-9b7c-b694a93846cd, $$870a86c8-5cb5-4e15-a01d-0b137456f8f6, $$5f58e6fa-6372-4f47-869a-8b1f93e6881b, $$04aa0bcc-d64c-4661-b638-58b8c4896a44, $$ae4126c9-47fb-4fe2-ab8c-fe730eaf4eaf, $$80c04d9d-8aff-4648-b552-8a64237f4b47, $$2c1a0ccc-73ee-4513-956c-11c6794a0542, $$e9715b5a-6294-4f95-82d4-d3d902fd399f, $$4c4d22db-4bae-48be-b0ae-dab20c94aeed], "IsProjectUnitSystem": False, "IsDefault": False}</member-data>
</Object>
<Object Name="/Units/Quantity:Quantity" Version="1.0">
<class-type valType="String">Quantity</class-type>
<object-name valType="String">Quantity</object-name>
<member-data valType="String">{"DisplayText": "Angle", "QuantityName": "Angle", "Unit": "radian", "IsSuppressed": False}</member-data>
</Object>
<Object Name="/Units/Quantity:Quantity 1" Version="1.0">
<class-type valType="String">Quantity</class-type>
<object-name valType="String">Quantity 1</object-name>
<member-data valType="String">{"DisplayText": "Chemical Amount", "QuantityName": "Chemical Amount", "Unit": "mol", "IsSuppressed": False}</member-data>
</Object>
<Object Name="/Units/Quantity:Quantity 2" Version="1.0">
<class-type valType="String">Quantity</class-type>
<object-name valType="String">Quantity 2</object-name>
<member-data valType="String">{"DisplayText": "Current", "QuantityName": "Current", "Unit": "A", "IsSuppressed": False}</member-data>
</Object>