JLChen
2021-11-29 06c09ecbdf83cc5cc33971ffb75ba81e85b6eb33
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
!<arch>
#1/20           0           0     0     100644  3732      `
__.SYMDEF8ØuØ™ØHØ ØÅxixièxixi>xigxi™xiÇxi)xiîxiJxišxi= ¥t ¥s ¥Q ¥2 ¥ù ¥í ¥G ¥| ¥¹ ¥÷ ¥ ¥9 ¥a ¥‡ ¥Ë ¥• ¥ó ¥  ¥X ¥Œ ¥Ê ¥ ¥ ¥[ ¥Ÿ ¥À ¥ ¥¬ ¥Ó ¥Ý ¥Ý¸"g    ¸"        ¸"9    ¸"º¸"[  ½Ž     ½°     ½Ó     ½
 ½,
 ½]
 ½‹
 ½¹
 ½ä
 ½  ½5  ½ã 0¿ 0› 0‚ 0 °ÿ °ÿ@ _OBJC_CLASS_$_HDLRunSceneIntent_OBJC_CLASS_$_HDLRunSceneIntentResponse_OBJC_IVAR_$_HDLRunSceneIntentResponse._code_OBJC_METACLASS_$_HDLRunSceneIntent_OBJC_METACLASS_$_HDLRunSceneIntentResponse_OBJC_CLASS_$_HDLSiriSceneListCell_OBJC_IVAR_$_HDLSiriSceneListCell._homeId_OBJC_IVAR_$_HDLSiriSceneListCell._lineView_OBJC_IVAR_$_HDLSiriSceneListCell._model_OBJC_IVAR_$_HDLSiriSceneListCell._shortcutButton_OBJC_IVAR_$_HDLSiriSceneListCell._titleLabel_OBJC_METACLASS_$_HDLSiriSceneListCell__OBJC_LABEL_PROTOCOL_$_INUIAddVoiceShortcutButtonDelegate__OBJC_LABEL_PROTOCOL_$_NSObject__OBJC_PROTOCOL_$_INUIAddVoiceShortcutButtonDelegate__OBJC_PROTOCOL_$_NSObject___clang_at_available_requires_core_foundation_framework_HDLSiriSceneListCellIdentifier_OBJC_CLASS_$_HDLSiriSceneListViewController_OBJC_IVAR_$_HDLSiriSceneListViewController._dataSource_OBJC_IVAR_$_HDLSiriSceneListViewController._homeId_OBJC_IVAR_$_HDLSiriSceneListViewController._siriShortcutList_OBJC_IVAR_$_HDLSiriSceneListViewController._tableView_OBJC_IVAR_$_HDLSiriSceneListViewController._tableViewStyle_OBJC_IVAR_$_HDLSiriSceneListViewController._titleName_OBJC_IVAR_$_HDLSiriSceneListViewController._topBarView_OBJC_METACLASS_$_HDLSiriSceneListViewController__OBJC_LABEL_PROTOCOL_$_INUIAddVoiceShortcutButtonDelegate__OBJC_LABEL_PROTOCOL_$_INUIAddVoiceShortcutViewControllerDelegate__OBJC_LABEL_PROTOCOL_$_INUIEditVoiceShortcutViewControllerDelegate__OBJC_LABEL_PROTOCOL_$_NSObject__OBJC_LABEL_PROTOCOL_$_UIScrollViewDelegate__OBJC_LABEL_PROTOCOL_$_UITableViewDataSource__OBJC_LABEL_PROTOCOL_$_UITableViewDelegate__OBJC_PROTOCOL_$_INUIAddVoiceShortcutButtonDelegate__OBJC_PROTOCOL_$_INUIAddVoiceShortcutViewControllerDelegate__OBJC_PROTOCOL_$_INUIEditVoiceShortcutViewControllerDelegate__OBJC_PROTOCOL_$_NSObject__OBJC_PROTOCOL_$_UIScrollViewDelegate__OBJC_PROTOCOL_$_UITableViewDataSource__OBJC_PROTOCOL_$_UITableViewDelegate___block_descriptor_48_e8_32s40s_e29_v24?0"NSArray"8"NSError"16l___block_descriptor_56_e8_32s40s48s_e5_v8?0l___clang_at_available_requires_core_foundation_framework___copy_helper_block_e8_32s40s___copy_helper_block_e8_32s40s48s___destroy_helper_block_e8_32s40s___destroy_helper_block_e8_32s40s48s_OBJC_CLASS_$_HDLSectionHeaderView_OBJC_IVAR_$_HDLSectionHeaderView._lineView_OBJC_IVAR_$_HDLSectionHeaderView._messageLabel_OBJC_IVAR_$_HDLSectionHeaderView._titleLabel_OBJC_METACLASS_$_HDLSectionHeaderView_OBJC_CLASS_$_HDLSiriControlModel_OBJC_CLASS_$_HDLSiriShortcutModel_OBJC_IVAR_$_HDLSiriControlModel._actionName_OBJC_IVAR_$_HDLSiriControlModel._controlId_OBJC_IVAR_$_HDLSiriControlModel._controlJSONStr_OBJC_IVAR_$_HDLSiriControlModel._controlName_OBJC_IVAR_$_HDLSiriControlModel._controlType_OBJC_IVAR_$_HDLSiriShortcutModel._content_OBJC_IVAR_$_HDLSiriShortcutModel._list_OBJC_IVAR_$_HDLSiriShortcutModel._title_OBJC_METACLASS_$_HDLSiriControlModel_OBJC_METACLASS_$_HDLSiriShortcutModel_OBJC_CLASS_$_TopBarView_OBJC_IVAR_$_TopBarView._backButton_OBJC_IVAR_$_TopBarView._titleLabel_OBJC_METACLASS_$_TopBarView_OBJC_CLASS_$_HDLSceneSiri_OBJC_METACLASS_$_HDLSceneSiri#1/28           0           0     0     100644  23140     `
HDLRunSceneIntent.oÏúíþ  ˆ     È¹>¨    ¹>__text__TEXT|¨    hH(€__objc_classname__TEXT|,$ __objc_const__DATA¨€P ¨I/__objc_data__DATA( Ð  K__objc_methname__TEXTÈ6p__objc_superrefs__DATA¨ K__objc_selrefs__DATA(°¨K__objc_ivar__DATA0Ø__objc_classrefs__DATA8àÐK__objc_methtype__TEXT@.è__objc_classlist__DATApØK__bitcode__LLVM€(__cmdline__LLVM)__objc_imageinfo__DATA™A#__debug_loc__DWARF¡çI#__debug_abbrev__DWARFˆ´0&__debug_info__DWARF<ªä'èK__debug_str__DWARFæ&Ò Ž0__apple_names__DWARF¸38`=__apple_objc__DWARFð4L˜>__apple_namespac__DWARF<5$ä>__apple_types__DWARF`5¾?__compact_unwind__LD : ÈCL__debug_line__DWARFÀ:ùhD@L% .HL@ˆLTÈQ€ PCCH - -frameworkIntents-(-frameworkCoreGraphics-(-frameworkCoreLocation-0-frameworkUserNotifications-(-frameworkFoundation-(-frameworkCFNetwork- -frameworkSecurity-(-frameworkCoreFoundationÿÑöW©ôO©ý{©ýÑôªõªàª”óª@ùõ#©@ùà‘”õª ´€¹´j(ø@ùàªâª”ઔàªý{C©ôOB©öWA©ÿ‘À_ÖôO¾©ý{©ýC‘ઐ@ù”ôªàª”@ù‚€R€Ò”óª@ù⪔ઔàªý{A©ôO¨ôO¾©ý{©ýC‘ઐ@ù”ôªàª”@ù¢€R€Ò”óª@ù⪔ઔàªý{A©ôO¨€¹hhøÀ_֐€¹h(øÀ_ÖHDLRunSceneIntentHDLRunSceneIntentResponse((€(( €controlNameT@"NSString",C,D,NcontrolIdhomeIdcontrolTypecontrolJSONStractionNameinitsetUserActivity:initWithCode:userActivity:setControlName:setErrorMessage:successIntentResponseWithControlName:failureIntentResponseWithErrorMessage:codesetCode:_codecodeTq,N,V_codeerrorMessagesuccessMessage@24@0:8@16@32@0:8q16@24q16@0:8v24@0:8q16q-cc1-triplearm64-apple-ios11.0.0-emit-obj--mrelax-relocations-disable-free-disable-llvm-verifier-discard-value-names-main-file-nameHDLRunSceneIntent.m-mrelocation-modelpic-pic-level2-mframe-pointer=non-leaf-fno-strict-return-fno-rounding-math-munwind-tables-target-sdk-version=15.0-fvisibility-inlines-hidden-static-local-var-target-cpuapple-a7-target-feature+fp-armv8-target-feature+neon-target-feature+crypto-target-feature+zcm-target-feature+zcz-target-feature+sha2-target-feature+aes-target-abidarwinpcs-fallow-half-arguments-and-returns-debug-info-kind=standalone-dwarf-version=4-debugger-tuning=lldb-target-linker-version711-resource-dir/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0-dependency-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/HDLRunSceneIntent.d-skip-unused-modulemap-deps-MTdependencies-isysroot/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-generated-files.hmap-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-project-headers.hmap-DNS_BLOCK_ASSERTIONS=1-DOBJC_OLD_DISPATCH_PROTOTYPES=0-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-own-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-all-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos/include-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-normal/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-F/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos-internal-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/local/include-internal-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include-Os-std=gnu11-fdebug-compilation-dir/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri-ferror-limit19-fmacro-backtrace-limit0-stack-protector1-mdarwin-stkchk-strong-link-fblocks-fencode-extended-block-signature-fregister-global-dtors-with-atexit-fgnuc-version=4.2.1-fmodules-fimplicit-module-maps-fmodules-cache-path=/Users/jlchen/Library/Developer/Xcode/DerivedData/ModuleCache.noindex-fmodules-prune-interval=86400-fmodules-prune-after=345600-fbuild-session-timestamp=1638169220055526327-fmodules-validate-once-per-build-session-fmodules-validate-system-headers-fobjc-runtime=ios-11.0.0-fobjc-arc-fobjc-weak-fobjc-exceptions-fexceptions-fpascal-strings-fmax-type-align=16-fdiagnostics-show-note-include-stack-vectorize-loops-vectorize-slp-serialize-diagnostic-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/HDLRunSceneIntent.dia-clang-vendor-feature=+nullptrToBoolConversion-clang-vendor-feature=+messageToSelfInClassMethodIdReturnType-clang-vendor-feature=+disableInferNewAvailabilityFromInit-clang-vendor-feature=+disableNeonImmediateRangeCheck-clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation-fno-odr-hash-protocols-clang-vendor-feature=+revert09abecef7bbf@P(e(H0ŸH„e$Q$Œ£QŸ$R$(£RŸ(€d S $PŒœPœô£PŸŒ¨Q¨ô£QŸŒœRœ¨PÌðcôP\£PŸôQ\£QŸôRP4Xc\hPhl£PŸ%‚|ïáå I : ; ( I: ; $> (ì : ; æ I8     €„èI: ; ë
 : ; æ I: ; 8 2 I <€„èI: ; éë&&II  I8 |€|: ; .@dz: ; 'IáI4: ; I4: ; I.ç@dz: ; 'I4áI4.ç@dz: ; '4áI¦/š|q\A¶Ù,Qv­ä|z „ºÐ 8d‹µÞ  @Åî ù@*    ÿ§h     §h    §h    §h    (§h    7§h
R{    y§a    ”§a    ¦§h    ÀÉ L    ÕÔ#h
[5 d’8h$ ¢ n ¬
„c{    ºiƒÐ Ù
æ {BM:    #
ìL    (
§ch    5
§dh    ÿ§eh D
ì
\ {    mWh \
z    {    ‰§     !    –§    $(    œY    ((    ¸{    /(    Ó    3         è¯    7(    ”¯    ;(     •    >(    ä{    A(    í    E                 Â    I    !    §    N(9        `L        a        cs        ‡        f¡        ½        hÓ            ë    á    j( ^
¥
{    ²º
 €
Í {    ²º ¨Ý Nâ ´
ó({    ù S!    §U!    (§V!    7¯W!    ?¯X!    K§\!    R§]!    d§a!    iBb!    Ö§c!    Û§d!    ä§e!    é§f!    ò§g!    §h!    §i!    m    &Du?wG    Q¯}!    a¯’! m§ x¯ ” Š” 
 F{    º H    < N A G
n)'    N<    —U=    ·\>    Èc?    êj@    ÷qA    |B    ÅC    1xD    ME    z†F    ‹G    žH    ¨qI    µºJ    Ê§L!
w {    D INˆ©ÂÛó?c…— š
¯{    ¶·ÕË     Р   d§
    3\AJ
R

    ÷Œm(" ~§ ‡]¬ Œ–#
ìâmWŒhm~u &~§ ŸQ¬ ŒŠÿ&§Àà '‡ôhmÔÞ ,~ã§ Ÿ¬ ŒU(
,§‹à -‡\o*I ì®§ ¤Q¬ Œlo\k P§ ¤Q¬ ŒR#
ìš 镱 š µ ’‡Apple clang version 13.0.0 (clang-1300.0.29.3)/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri/HDLSceneSiri/HDLRunSceneIntent.m/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdkiPhoneOS15.0.sdk/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiriHDLRunSceneIntentResponseCodeNSIntegerlong intHDLRunSceneIntentResponseCodeUnspecifiedHDLRunSceneIntentResponseCodeReadyHDLRunSceneIntentResponseCodeContinueInAppHDLRunSceneIntentResponseCodeInProgressHDLRunSceneIntentResponseCodeSuccessHDLRunSceneIntentResponseCodeFailureHDLRunSceneIntentResponseCodeFailureRequiringAppLaunchHDLRunSceneIntentResponseCodeErrorINShortcutAvailabilityOptionsNSUIntegerlong unsigned intINShortcutAvailabilityOptionSleepMindfulnessINShortcutAvailabilityOptionSleepJournalingINShortcutAvailabilityOptionSleepMusicINShortcutAvailabilityOptionSleepPodcastsINShortcutAvailabilityOptionSleepReadingINShortcutAvailabilityOptionSleepWrapUpYourDayINShortcutAvailabilityOptionSleepYogaAndStretchingHDLRunSceneIntentINIntentNSObjectisaClassobjc_classidentifierNSStringlengthintentDescriptionsuggestedInvocationPhraseshortcutAvailabilitydonationMetadataINIntentDonationMetadatacontrolNamecontrolIdhomeIdcontrolTypecontrolJSONStractionNameHDLRunSceneIntentResponseINIntentResponseuserActivityNSUserActivityactivityTypetitleuserInfoNSDictionarycountrequiredUserInfoKeysNSSetneedsSaveBOOL_BoolwebpageURLNSURLdataRepresentationNSDatabytesabsoluteStringrelativeStringbaseURLabsoluteURLschemeresourceSpecifierhostportNSNumberNSValueobjCTypecharcharValueunsignedCharValueunsigned charshortValueshortunsignedShortValueunsigned shortintValueintunsignedIntValueunsigned intlongValueunsignedLongValuelongLongValuelong long intunsignedLongLongValuelong long unsigned intfloatValuefloatdoubleValuedoubleboolValueintegerValueunsignedIntegerValuestringValueuserpasswordpathfragmentparameterStringqueryrelativePathhasDirectoryPathfileSystemRepresentationfileURLisFileURLstandardizedURLfilePathURL_urlString_baseURL_clients_reservedreferrerURLexpirationDateNSDatetimeIntervalSinceReferenceDateNSTimeIntervalkeywordssupportsContinuationStreamsdelegateidobjc_objecttargetContentIdentifiereligibleForHandoffisEligibleForHandoffeligibleForSearchisEligibleForSearcheligibleForPublicIndexingisEligibleForPublicIndexingeligibleForPredictionisEligibleForPredictionpersistentIdentifierNSUserActivityPersistentIdentifiercodeerrorMessagesuccessMessage_codeIntents"-DNS_BLOCK_ASSERTIONS=1" "-DOBJC_OLD_DISPATCH_PROTOTYPES=0"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Intents.framework-[HDLRunSceneIntentResponse initWithCode:userActivity:]initWithCode:userActivity:+[HDLRunSceneIntentResponse successIntentResponseWithControlName:]successIntentResponseWithControlName:+[HDLRunSceneIntentResponse failureIntentResponseWithErrorMessage:]failureIntentResponseWithErrorMessage:-[HDLRunSceneIntentResponse code]-[HDLRunSceneIntentResponse setCode:]setCode:instancetypeself_cmdSELobjc_selectorintentResponseHSAH
 
ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ¦J‘„€ °ÜÖòr\ù7H¦ç<ēZïÊ1û2 €>•|Öè•䘨¸ÈØèø(‘ CI  Z  Þ ·¸ ak C" ·"  #
 u aHSAH v›„,B a· CHSAH ÿÿÿÿHSAH( ÿÿÿÿ ÿÿÿÿÿÿÿÿ"&<Ž•\,8Ú½†ßi›‚|v›„›áqc“å? §ËùYo± =pó6éqy£Í“<²­{ÕûŽöò#’NÏàX+0€ˆ  쏠[=ùÕðZt¾\1Ÿ±`MÖÃ=ŸT,2xYri± »Nø ÿ\Šð/Ü v´dMÖÃ)ˆ ùp–~½|5ûÒáú&Ä¥"²_b4šb‡Îc •|ë¬LɸËÞñ*=Pcv‰œ¯ÂÕèû!4Gat‡š­ÀÚí&9L_r…˜«¥^š ~\:ݝBé…†$w'©U$󴄬îºq$c$R*z\nGój$„|$—$Â\$zq\3ì [{    ÂÍ€h’ЃÉâ¨$?x$¯š± Œ    ÐùÅ$@Ì
áÛc$Õ·ˆN$æÙŒŒhôh\lõmû /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objcHDLSceneSiri/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Intents.framework/Headers/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri/HDLSceneSiri/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Foundation.framework/HeadersNSObjCRuntime.hHDLRunSceneIntent.hINShortcutAvailabilityOptions.hHDLRunSceneIntent.mNSObject.hNSString.hINIntent.hINIntentDonationMetadata.hNSUserActivity.hNSDictionary.hNSSet.hobjc.hNSData.hNSURL.hNSValue.hNSDate.hINIntentResponse.hHDLRunSceneIntent.m    
(    åK‚K?æ2
óYº'J1‚uXò*‚ô2
óSº-J1‚uRò0‚iò
ò
g ºpELlE=`EL\E=XO-HR-@P-8
L4
=,P- L=N- S-L=ðO-àR-ØP-ÐLÌ=ÄP-¸L´=°N-¤S- Lœ=pR-hP-\LX=PELLE=@Q-8L4=,L(= S-x:h5X2P&0( 987ø6à4Ø3ÐEÀ ¸1°0¨  /˜.ˆ-€#P+H&(     )*)'ðȨ ˜ˆ€xph`XP˜,ˆM€KxLp`MXIPGH8M0H(F MJLD %$#!DDCD¸b '€`@ |48(,X\LPÌд¸œ ´¸œ „ˆÜàìð%Cæu˜{Œ    8K– ¾ôÍ(!\lÍ|½|p¨Ž¨(§ÈÈ Ô´çCñëøŽ?ðjXIàXе0î#_    8G4óO*_xŽ&p(
@§
@Õ– uØ
K.½+
YÓÂv
aÁ 
Ë­
lZp^Ñ Ö»âeï-˜D pi pì € € õ #™Æ :&Põx.0F( ¶¥ÍÄèi[\ç__OBJC_$_PROP_LIST_HDLRunSceneIntent_OBJC_CLASS_$_HDLRunSceneIntent_OBJC_METACLASS_$_HDLRunSceneIntent__OBJC_CLASS_RO_$_HDLRunSceneIntent__OBJC_METACLASS_RO_$_HDLRunSceneIntent_OBJC_CLASS_$_INIntent_OBJC_METACLASS_$_INIntent_OBJC_METACLASS_$_NSObject_objc_retain_objc_autoreleaseReturnValue__OBJC_$_PROP_LIST_HDLRunSceneIntentResponse__OBJC_$_INSTANCE_VARIABLES_HDLRunSceneIntentResponse__OBJC_$_CLASS_METHODS_HDLRunSceneIntentResponse__OBJC_$_INSTANCE_METHODS_HDLRunSceneIntentResponse_OBJC_CLASS_$_HDLRunSceneIntentResponse_OBJC_METACLASS_$_HDLRunSceneIntentResponse__OBJC_CLASS_RO_$_HDLRunSceneIntentResponse__OBJC_METACLASS_RO_$_HDLRunSceneIntentResponse_OBJC_CLASS_$_INIntentResponse_OBJC_METACLASS_$_INIntentResponse_objc_releasel_llvm.cmdlinel_llvm.embedded.module__objc_empty_cache_OBJC_IVAR_$_HDLRunSceneIntentResponse._code_objc_msgSend_objc_alloc_OBJC_SELECTOR_REFERENCES_l_OBJC_PROP_NAME_ATTR_l_OBJC_METH_VAR_TYPE_l_OBJC_CLASS_NAME_l_OBJC_METH_VAR_NAME_l_OBJC_CLASSLIST_SUP_REFS_$__OBJC_CLASSLIST_REFERENCES_$_-[HDLRunSceneIntentResponse code]-[HDLRunSceneIntentResponse initWithCode:userActivity:]+[HDLRunSceneIntentResponse successIntentResponseWithControlName:]+[HDLRunSceneIntentResponse failureIntentResponseWithErrorMessage:]-[HDLRunSceneIntentResponse setCode:]ltmp9l_OBJC_METH_VAR_NAME_.19l_OBJC_METH_VAR_NAME_.9ltmp8l_OBJC_PROP_NAME_ATTR_.28l_OBJC_METH_VAR_TYPE_.18_OBJC_SELECTOR_REFERENCES_.8ltmp7l_OBJC_PROP_NAME_ATTR_.27l_OBJC_METH_VAR_NAME_.17l_OBJC_METH_VAR_NAME_.7ltmp6l_OBJC_PROP_NAME_ATTR_.26l_OBJC_METH_VAR_NAME_.16l_OBJC_PROP_NAME_ATTR_.6ltmp5l_OBJC_PROP_NAME_ATTR_.25l_OBJC_CLASS_NAME_.15l_OBJC_PROP_NAME_ATTR_.5ltmp4l_OBJC_METH_VAR_TYPE_.24ltmp14_OBJC_SELECTOR_REFERENCES_.14l_OBJC_PROP_NAME_ATTR_.4ltmp3l_OBJC_METH_VAR_NAME_.23ltmp13l_OBJC_METH_VAR_NAME_.13l_OBJC_PROP_NAME_ATTR_.3_objc_msgSendSuper2ltmp2l_OBJC_METH_VAR_TYPE_.22ltmp12_OBJC_SELECTOR_REFERENCES_.12l_OBJC_PROP_NAME_ATTR_.2ltmp1l_OBJC_METH_VAR_NAME_.21ltmp11l_OBJC_METH_VAR_NAME_.11l_OBJC_PROP_NAME_ATTR_.1ltmp0l_OBJC_METH_VAR_TYPE_.20ltmp10_OBJC_SELECTOR_REFERENCES_.10l_OBJC_LABEL_CLASS_$#1/28           0           0     0     100644  80876     `
HDLSiriSceneListCell.oÏúíþ    ¨    «ë@ «ë__text__TEXT
@ ðøB€__literal8__TEXT
@H__objc_data__DATAH
Pˆ__objc_superrefs__DATA˜
Ø@__objc_methname__TEXT 
¼à__objc_selrefs__DATA`H H)__objc_classrefs__DATA¨@è__objc_ivar__DATAè(__cstring__TEXTü<__cfstring__DATA PÐ__objc_classname__TEXT0Cp__objc_methtype__TEXTsÚ³__objc_const__DATAP!à¢__data__DATAàÀ (ð        __objc_protolist__DATA à(8
 __objc_classlist__DATA°ð(H
__bitcode__LLVM¸ø(__cmdline__LLVM¹!ù(__objc_imageinfo__DATAÚ.<__debug_loc__DWARFâ.p    "<__debug_abbrev__DWARFR8Î’E__debug_info__DWARF ;‘5`HP
__debug_str__DWARF±p8Mñ}__apple_names__DWARFé½,)Ë__apple_objc__DWARFÁtUÎ__apple_namespac__DWARF‰Á$ÉÎ__apple_types__DWARF­ÁÍíÎ__compact_unwind__LD€ÖÀãÐ
__eh_frame__TEXT€ØˆÀåP   h__debug_line__DWARFÛ£HèP % .X hÀ 0 Pêê ö-(-frameworkCoreFoundation-(-frameworkIntentsUI- -frameworkIntents-(-frameworkCoreLocation- -frameworkUIKit-(-frameworkFileProvider-0-frameworkUserNotifications- -frameworkCoreText-(-frameworkQuartzCore-(-frameworkCoreImage- -frameworkImageIO-(-frameworkCoreVideo- -frameworkOpenGLES- -frameworkMetal-(-frameworkIOSurface-(-frameworkCoreGraphics-(-frameworkFoundation-(-frameworkCFNetwork- -frameworkSecurity-(-frameworkCoreFoundationÿÃÑôO©ý{©ýƒ‘@ùà#©@ùà‘”óª@´@ù઀Ҕ@ùઔàªý{B©ôOA©ÿÑÀ_Öø_¼©öW©ôO©ý{©ýÑóªà@ù@ù᪔ýª”õª@ùàªáªâª”ઔà@ù᪔ýª”õª@ùàªáª”ýª”÷ªáªâª”ઔઔàªáª”ýª”öª@ùઔýª”÷ª@ùàªáªâª”ઔઔ@€R€R€R€R”À4àªáª”ýª”öª@ùઔýª”÷ªàªáªâª”ઔઔàªáª”ýª”ôª@ùઔýª”óªàªáªâª”ઔàªý{C©ôOB©öWA©ø_ĨöW½©ôO©ý{©ýƒ‘󪐀¹hvøµ@ù”ôª@ù@ù”ýª”õª@ù”øÒgžB(`@ù@ýfnઔhjvø`j6øàª”ઔ@ù@ù@ý@ý@ýn”ýª”ôª`jvø@ù⪔ઔ`jvøý{B©ôOA©öWèöW½©ôO©ý{©ýƒ‘󪐀¹hvøà
µ@ù”ôª@ù@ù”ýª”õª@ù”øÒgž@(`@ý(a@ù(    èÒgžfágžàª”hjvø`j6øàª”ઔ@ù@ù@ý@ý@ýn”ýª”ôª`jvø@ù⪔ઔ@ù@ùB‘e”ýª”ôª`jvø@ù⪔ઔ`jvø@ù€Ò”`jvø@ùB€R”`jvøý{B©ôOA©öWèöW½©ôO©ý{©ýƒ‘󪐀¹huøµ@ù”@ù€Ò”hjuø`j5øàª”`juø@ù"€R”@ù@ù”ýª”ôª@ù”ˆ øÒgž@(``juø@ùˆ èÒgžèèÒgž`”ઔ`juø@ù€R”`juøý{B©ôOA©öWèø_¼©öW©ôO©ý{©ýÑôª÷ªõªàª”óªàª”ôª€¹¶‹àªáª”È@ù(´@ùઔýª”÷ª@ùઔýª”øª@ù⪔ઔઔ4´@ù”@ù⪔Â@ù@ùઔýª”öª€¹ jhø@ù⪔ઔઔàªý{C©ôOB©öWA©ø_Ĩø_¼©öW©ôO©ý{©ýÑöª@ùઔõªáª”ýª”óª@ù”@ù”ôª@ù⪔@ùઔýª”÷ª@ùàªâª”ઔ@ùàªâª”@ùઔýª”öª@ùàªâª”ઔ@ùઔýª”öª@ùàªâª”ઔ@ùઔýª”öª@ùàªâª”ઔ@ùઔýª”öªàª”@ùàªâª”ઔ@ù”@ù⪔õªàª”ઔàªý{C©ôOB©öWA©ø_Ĩ᪐€¹‹áª€¹‹áª€¹‹€¹hhøÀ_Ö᪐€¹‹€¹hhøÀ_Ö᪐€¹‹ôO¾©ý{©ýC‘󪐀¹‹€Ò”€¹`‹€Ò”€¹`‹€Ò”€¹`‹€Ò”€¹`‹€Òý{A©ôO¨ý{¿©€Ò”  Ô€H@ží?¾½½½½½í?ÞÝÝÝÝÝí?€fÀ»?—–––––Æ?SSSSSSÓ?initWithStyle:reuseIdentifier:setSelectionStyle:addAllChildViewwhiteColorsetBackgroundColor:contentViewtitleLabeladdSubview:shortcutButtonlineViewmainScreenboundsinitWithFrame:colorWithRed:green:blue:alpha:setTextColor:fontWithName:size:setFont:setTextAlignment:setNumberOfLines:initWithStyle:setTranslatesAutoresizingMaskIntoConstraints:setFrame:setEnabled:controlNamesetText:getINShortcut:setShortcut:initWithIntent:initsetSuggestedInvocationPhrase:controlIdsetControlId:setControlName:homeIdsetHomeId:actionNamesetActionName:controlTypesetControlType:controlJSONStrsetControlJSONStr:isEqual:classselfperformSelector:performSelector:withObject:performSelector:withObject:withObject:isProxyisKindOfClass:isMemberOfClass:conformsToProtocol:respondsToSelector:retainreleaseautoreleaseretainCountzonehashsuperclassdescriptiondebugDescriptionhashTQ,RsuperclassT#,RdescriptionT@"NSString",R,CdebugDescriptionpresentAddVoiceShortcutViewController:forAddVoiceShortcutButton:presentEditVoiceShortcutViewController:forAddVoiceShortcutButton:initModel:intent:setTitleLabel:setLineView:setShortcutButton:modelsetModel:.cxx_destruct_titleLabel_lineView_shortcutButton_model_homeIdtitleLabelT@"UILabel",&,N,V_titleLabellineViewT@"UIView",&,N,V_lineViewshortcutButtonT@"INUIAddVoiceShortcutButton",&,N,V_shortcutButtonmodelT@"HDLSiriControlModel",&,N,V_modelhomeIdT@"NSString",&,N,V_homeId (PingFangSC-MediumÈHDLSiriSceneListCellINUIAddVoiceShortcutButtonDelegateNSObjectB24@0:8@16#16@0:8@16@0:8@24@0:8:16@32@0:8:16@24@40@0:8:16@24@32B16@0:8B24@0:8#16B24@0:8:16Vv16@0:8Q16@0:8^{_NSZone=}16@0:8B24@0:8@"Protocol"16@"NSString"16@0:8v32@0:8@16@24v32@0:8@"INUIAddVoiceShortcutViewController"16@"INUIAddVoiceShortcutButton"24v32@0:8@"INUIEditVoiceShortcutViewController"16@"INUIAddVoiceShortcutButton"24@32@0:8q16@24v16@0:8@24@0:8@16v24@0:8@16@"UILabel"@"UIView"@"INUIAddVoiceShortcutButton"@"HDLSiriControlModel"@"NSString"…((     „0``-cc1-triplearm64-apple-ios11.0.0-emit-obj--mrelax-relocations-disable-free-disable-llvm-verifier-discard-value-names-main-file-nameHDLSiriSceneListCell.m-mrelocation-modelpic-pic-level2-mframe-pointer=non-leaf-fno-strict-return-fno-rounding-math-munwind-tables-target-sdk-version=15.0-fvisibility-inlines-hidden-static-local-var-target-cpuapple-a7-target-feature+fp-armv8-target-feature+neon-target-feature+crypto-target-feature+zcm-target-feature+zcz-target-feature+sha2-target-feature+aes-target-abidarwinpcs-fallow-half-arguments-and-returns-debug-info-kind=standalone-dwarf-version=4-debugger-tuning=lldb-target-linker-version711-resource-dir/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0-dependency-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/HDLSiriSceneListCell.d-skip-unused-modulemap-deps-MTdependencies-isysroot/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-generated-files.hmap-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-project-headers.hmap-DNS_BLOCK_ASSERTIONS=1-DOBJC_OLD_DISPATCH_PROTOTYPES=0-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-own-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-all-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos/include-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-normal/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-F/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos-internal-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/local/include-internal-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include-Os-std=gnu11-fdebug-compilation-dir/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri-ferror-limit19-fmacro-backtrace-limit0-stack-protector1-mdarwin-stkchk-strong-link-fblocks-fencode-extended-block-signature-fregister-global-dtors-with-atexit-fgnuc-version=4.2.1-fmodules-fimplicit-module-maps-fmodules-cache-path=/Users/jlchen/Library/Developer/Xcode/DerivedData/ModuleCache.noindex-fmodules-prune-interval=86400-fmodules-prune-after=345600-fbuild-session-timestamp=1638169242713503253-fmodules-validate-once-per-build-session-fmodules-validate-system-headers-fobjc-runtime=ios-11.0.0-fobjc-arc-fobjc-weak-fobjc-exceptions-fexceptions-fpascal-strings-fmax-type-align=16-fdiagnostics-show-note-include-stack-vectorize-loops-vectorize-slp-serialize-diagnostic-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/HDLSiriSceneListCell.dia-clang-vendor-feature=+nullptrToBoolConversion-clang-vendor-feature=+messageToSelfInClassMethodIdReturnType-clang-vendor-feature=+disableInferNewAvailabilityFromInit-clang-vendor-feature=+disableNeonImmediateRangeCheck-clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation-fno-odr-hash-protocols-clang-vendor-feature=+revert09abecef7bbf@00Ÿ0dc$Q$l£QŸ,R,l£RŸ,S,l£SŸl„P„cH£PŸl˜Q˜H£QŸH\P\PcPX£PŸHxQxH£QŸXlPlÜcÜä£PŸXˆQˆÔ£QŸäøPøÌcÌÔ£PŸäQÄ£QŸÔøPø £PŸ eÔüQü £QŸÔüRü £RŸ HgÔìSìdP $P$ÐfÐÔP 4Q4ô£QŸ 0R04P@HPhèdÌìeô    P        £PŸôøQø    £QŸôøRø    Q        P        £PŸ         Q         £QŸ         R         Q    ,    P,    0    £PŸ         Q     0    £QŸ         R     0    Q0    <    P<    @    £PŸ@    P    PP    T    £PŸ@    D    QD    T    £QŸ@    D    RD    T    QT    `    P`    d    £PŸd    t    Pt    x    £PŸd    h    Qh    x    £QŸd    h    Rh    x    Qx    ˆ    Pˆ    ð    cð    ô    £PŸx    ˜    Q˜    ô    £QŸ%‚|ïáå I : ; ( I: ; $> (ì : ; æ     I8
€„èI: ; ë I: ; 8 2  : ; æ €„èI: ; ë €„èI: ; é뀄èI: ; éë I: ;I<I  I8 €„èI: ;뀄èI: ;éë : ;  I: ; 8 &Iä  Iˆ8 'Iä  €„èI: ;ë !&"I#!I7 $$ > %I'&|€|': ; (.@dz: ; 'Iá)I4*: ; I+.@dz: ; 'á,4: ; I-.ç@dz: ; '4á.I/.ç@dz: ; 'I4á0I41.@dz: ; '4á5/ô    X_‡£¾Ùct ~Xö&6XzXŸ¯ÃÙîë [€¬Ñý&ö> IXV2r’´XÖ8ó<kX²-ÌíX 7QgƒŸX½/Òõë/C[vœÿÿX¸zÓù>iX”&³ÝX         $    E    i    XŽ        «    Ì    ô    ë
 
V/
I
b

›
¹
XÒ
ä
 ! B Z r ‡ Ÿ µ Ì     å
ÿ  X8  Z € #©  Í Þ ð  À ë  #  7 N e X|  ‰ œ ¯ Ì â ÷  2XJ %Wj~‘ë©Çô Gqš É@Xü$$;Rj‡¦ÅXå4ùX,@A_‚!¥Íé !@@€_€}€ ž€€À€€â€€€€ü€€€€=€€€€e€€€€‡€€€€¬€€€€Ì€€€€ð€€€€€€€€    0€€€€
M€€€€ #ÄXk+µÚX(2LvžÇïëF;Uj„›²È€€ü €øëù    !?]|™ µ@р #€@H€€j€€ˆ€€¥€€Á€€ ãÿ€€<€€€xA€€€€^ÿÿÿÿXv&—½å 2XX€šºÙ÷X59e½XðAl–ëÂÐë X!6VpˆŸ»XÓ è"X;,]Š·Xäý!AXax–¸XØ2ç  X% ;= ` ~ Xš H¯ Ï è X!B!6!P!Xg!N‡!²!Ú!X"#"Q"}"¨"XÓ"ö" #G#Ñq#!‡#–#¦#Ü{#ƒ#Ñ·#Â#Ó#ä#õ#û#0H    œ    
þ<!HH
    = HH
=Ã%HH
ÌF~0HH
"Gø HH )G!H 5G H ?GÃ%H OG~0H VGø H $Q    H ­+lZA
Ù-‘fh
o.nh
„.x qL
­. tA
¹.wA
¨7!xA
%:!yA
5:ô#|h
s;x L
Ÿ; ‚H
®; „H
Å; †H
å;ø ˆa
õ;—%‹LK-x ŒT-N1-x =-N <¢%‘A
<x ’L
%<x “L
><­%•L
L< –H
Z<­%—L
o< ˜H
„<XšL
•<›L
¦<sœLo-x žw-N µ<x ¡A
Ï<¸%£L
Ú<x ³L  $‘    ì
¸&] “A@Ã&x ˜Ú&N
ó&X™L
÷&VšA ô*x œA+x  +C
+ø  h
,+6¤L
T+A§h
n+V©L ‡+a²A '$ 9    F
Q$s ;A _$x =A ‚$x @A š$x CA
«$Š jA ˜&K mA 3$5 <$] 8i @$0n F$ì ƒ w$N|$ ·$H    F
Å$X+Ó$x 2ë$
%x 6     
%ë=     
 %Ö D(
;%x S
C%x TK%x WS%]%x Xe%
o%x |
‡%x }
Ÿ%ø ‚!
¾%ø ƒ!
Í%ø !
ß%ø Ž! ñ% & &Ö  $&9 [& c&  j&        ! &        "Û -%    F
5%ëý ®% c    F
·%ë i#ü%(ÿ%<$i D;&!D&å8 [ ý& .    F
'8 ˆ     
N'd      
W' ’     
a'd ™     
m' ž     
z'Ï £     
Ò'8 °     Ø'x µß'    è'x ºô'    (x Â(    
$(V Ó
/(Ö à(
9(Ï ÿ     K(V
P(x      ^( 3g(8 <     t(£ E(›( O     ©(8 e     ¸(® k(Ý(¹ t()¹ u()     {     1)x 8)    A)x ›     \)x ¤     p)Ä À     …)x É     œ)Ï Ï ¿) Õ     Ì)ä Ú     Ú)ï à(ù) î     *Ï ó *     ù     *x      ,* >*Ö (F*Ö (X*x 0     h* 6     {*Ï = ‡*     B     •*£ F     ¢* J     ¯*ú T Ë* ¶(à*ø ä(å* êî* ö(C '#2 ' #.'d#/5'£#0o'#'#"'#3'#œ$'"J,'®:'# :'#A'#G'#Ú„'$„'€$’'$–'$š'$ž'$¢'$ ¦'$(ª'$0®'$8²'$@¶'$Hº'$P¾'$XÂ'$`Æ'$hÊ'$pÎ'$xø „( ø Ç( ø ð( þ© Ú¬)% ß·)* #ø æ) º* 
Ä* Ó*&    F
5%ë&X?+'!F `+(    F ׸z”&q À+    "    ßo-x     $w-N-x     %Š-N•-x     &œ-N¥-x     '°-N
½-{    )L
Ë-†    *L Ù++    F
ò+Q+H-x +&-N1-x +=-NK-x +T-N+x + +N_-x + f-NV ,)    F ,)"A ', )%A :,)(A J,)+A W,#).A k,#)1A },.)4A ’,9)7a Å,D):A Ò,O)=A è,Z)@A û,e)CA -p)JA&!WÓ v;,•ä´aø ¯,*ÓØ2ò% ;š H0!BOg!N         :Ž        œô-N¡ .        $.Ü,.Ü 7.×A.íÜèlœ    òN.a.öj.öH  Ã.;    H
Ï.õ;H
]4õ;H
n4t;HÃ&x ;Ú&N1-x ;=-N
‹4Ö ; h
›4Ö ;!h
¶4h;#L
È4X;$L
Ý4–;(H46x ;,6C
6x ;/L
<6Ç;3
z7 ;9A
7x ;@Lú Õ.J    F 5'£xA
Ý.yA
ð.|A w2]~A ˆ2AŽ2x š2C
¨2Ö ŠA ¯2h‹A Ç2s™A ô2·šA 3s¢A 3¦A #3ͪA ò+Q®a
’3=¯A ª3x µA Í3ÀA æ3x ÁA
ò3RÑa
4tùaå., Ý. ð.-    F
ø.-æE
/-çE
/-èE
/-éE
!/-êE
,/-ëE
6/-ìE
@/-íE
M/-îE
Y/-ïE d/8-Ak/-”v/-—š/Z-›
2-Ÿ221-¤AÝ.-¨A ”/        -"# /.    F
d/8.8 /!. ”/        ._ ž/(0    F
¤/¸0S!
Ä/ø 0U!
Ó/ø 0V!
â/Z0W!
ê/Z0X!
ö/ø 0\!
ý/ø 0]!
0ø 0a!
0í0b!
L1ø 0c!
Q1ø 0d!
Z1ø 0e!
_1ø 0f!
h1ø 0g!
x1ø 0h!
~1ø 0i!
‹1x 0m
œ1ï0uµ1x 0w½1
Ç1Z0}!
×1Z0’! ã1ø 0 î1Z0 ÷1        0 2        0½ ·//F    F
·%ë/H
¾/ç/Nì!ò 01)    Ò
80ù1<
B01=
b01>
s01?
•0Ü1@
ž0#1A
¯0c1B
¹0ö1C
Ë01D
ç0D1E
ý0    1F
1œ1G
1x 1H
1X1I
+1ë1J
@1ø 1L! "01     F
*0ï1ôù30T0m0†0Ù0'22 ,%2=>25KHO24’S`23@Xl2îü$œ¸26~Ñ2
Ñ2 
Þ2
â2
ç2
î2
+å4D,@Ò 73    
ˆ2L
1)x L
n3x L
ƒ32!L U37    F '87An"B 38    F W 49    F
ò+Q9Ay )4:/    W
D4t:2A@› ç4<    F
ï4–<2A@
ú4–<3A@
5–<4A@
5–<5A@
"5–<6A@
,5–<7A@
55–<8A@
@5–<9A@
J5–<:A@
T5–<;A@
`5–<<A@
m5–<=A@
y5–<>A@
…5–<?A@
5–<@A@ ·)Ï<SA ›5†<VA‹ ›5(>    F
£5Ÿ>7
½5ª>:
È5>=
 
2>@
Î5>C
Ò5>D
Ø5>E
Ý5ø >K
ï4†>NE
5†>OE
"5†>PE
,5†>QE
55†>RE
@5†>SE
J5†>TE
`5†>UE
T5†>VE
5†>WE ”/        > /´>ö¶5=.¯"        #À$ò5Ì N6?    F \68?A
h6 ?$H s6ø ?)h
~6ƒ ?.A
â6ƒ ?/A
ñ6ƒ ?0A
ü6ƒ ?1A
7Ü ?2A
&7Ü ?3A
37ñ ?4A
Q7ñ ?5A
^7ƒ ?6A
l7Ü ?7Aˆ  Œ6@@    ˜   6@"    F
à*ø @5!
¯6@6
´6x @7
Ç6Ö @8á  7@H    ˜ ö  ?7@Q    ˜  ! ²7A    H
º7ø Ah
¿7R"AH4
¡8–AH4
{*–AH
•*£AL
«8¦#AL
¹8±#AL
Ç8¼#A h
ð8–A$H1-x A%=-NÃ&x A'Ú&N9x A( 9N
9XA.L
%9x A3L
?9Þ#A4L
R9A5L
e9x A:L
Š9é#A?L
œ9AJL
´9x ANL
Ö9x AQL
ö9AUL
:x AXLW" Ä7B    F
Ë7Ö BA@
×7ø B5A
â7ø B6A ë7B7A õ7B8A þ7B9A 8B:A 8B;A 8B<A %8B=A -8î"BFAó" <8A    F M8ø GA ë7HA \8?#IA ƒ8›#JA ’8NAJ#c8Cc80Cu8Cw8Cy8C{8C}8C €8C(c¥Ÿ` Á# Ö8D    F
é8ø D!‘½/°/ù# M:E    F
g: E3H
¿)E7L
r:²$E:L
¤:ö$E=L
œ)–EBH
Ï:%EDh
 
;w%EIh
Ï.õELH
&;Œ%ENL
7;–ESH
C;%EUh
Z;EZL
f;E^L½$ƒ:
$ƒ: 
"Þ2
#%8
#ç2
#›:
#Y
 
V %ê:F% .        $.Ü,.Ü 7.G%A.W%L%%––\%N.a.öj.ö|% ;G    F ŠÒ
jö&ýV2Ö8G²-È% !="     & î*Ÿ.(A
å*,H
yDª.-H
¿)3L <= 1    Æ'
¿7R" šH
¹8±# ›L
Ò>£ œL
ä>s ŸL
ö>s  L
?s ¡L
?x ¤L
9?x ¥L
U?x ¦L
n?x ©L
ò3) Dh
Ù-a+ Mh
Ax PL
Ý4– RH4 ±AØ+ SA¼Ax VÄAGÎAx YÓAG
ÚAã+ [LßAx ^ùAN
Bî+ fh
hC. ih
µCx nL
ÕCø ˆA
âC– ‰A
ôC– ŠA
Dõ ‹A
Dõ ŒA
0Dt A
TD¼# ŽA
þ<! ‘A
¹. ’A
kD! ”A E=L    H 9x T 9NK-x UT-N1-x V=-N
O=¸(WL
h=Ã(XL ƒ=Ã(YA §=Î([A­=x \¶=CÁ=x ]Í=C Û=Ù(tA ì=û(uA
ý=)„A<>x †Z>N
z>x ˆL
“>ø Žh
›>?)A,k+Q(2‚F;Þ( æ=I    F
5%ëIÀù ) >     F
å*#A ->4)'A“Ó"D) ®>J    F
å*JH9x J 9N
Ã>ø Jh„) ˆ?A    F
ž?ô#TH
©?¿*WL
µ?Ê*ZL
À?Õ*]L
Î?–`H
â?–cH
Ï.õeH
ö?%fh
@tgh
1@x jL
H@%kh
j@ø mh
p@¼#nh
€@à*oh
È@ø qh
Ñ@¼#rh
ä@à*sh
A²$vL
Aö$zL
#A|L
0A~L
=AV+€L
LAx ‚Lgv&˜€½5ë*Ÿ@ð* .        $.Ü,.Ü 7.&+A.6+++%;+N.a.öj.öâðl+lA .q+ .        $.Ü,.Ü 7.§+A.¸+¬+³+ &½+N.a.öj.öO| ’J %ù+*B -þ+ .        $.Ü,.Ü 7.4,A.¸+9,%N,³+o,ù-S, GBK    F VBÖ Kht, bBK:    F rB,K<a•, zBL-    F ŒBÕ,LGA ´B LIA ¹B-LKa 5'£LQAÚ, “BL    F £B L&A ­BdL'A z'?#L(A- ÄBN    F
ØBJ-N'h
¯*J-N+h
œ)–N0h0O- äBM    F
Ä*úM LñBx M<÷B '8M=A ÿBdM>A
CMCL
Cã-MDL
#Cî-MEL
1CMFL
<CMGL
ECx MHL²q#!ã·#þ- YCKj    F . mC    S. s6‰.!A “C”.$A ›CÖ 'A ¤CÖ *A tCO    F j@ø O A
È@ø O#h
Ï.õO&Aø ‚C º ¯. ‚DR    F
DÙ.Ra
EO/RAÞ. ”DP    F
s6ø Pa
Dø Pa
¯Dø Ph
ÉD//P L
ÞD:/P#h·©?/ ïDQ     F T/ ES    F
$Eø S !
j@ø S$(
1ES((
:EÙ(S/(
OEx S3     
YEZS7(
dEZS;(
pEQ0S>(
¥EÙ(SA(
®Ex SE     
å*SI
ÊEø SN(âEx S`õE    
Fx ScF    0Fx SfJF    fFx Sh|F    
”Fs0Sj(V0 E6    F
†Eh6ø ©FSƒ0 ÒFT    F æFø Th òFø Th üFø Th Gø Th Gø Th&^GdG¡G'HÏ0&2HdG:H'H    ã0&ÍHdG×H'H
÷0&lIdGwI'T 1(lm<1 JUü4)öL5)7ûL
5*pî*U5*©å;Uø +lÜmŽ1cJU)âöL(5).ûL
5(HmÆ1›JU0 )göL(5)³ûL
5(XŒmþ1¼JU9!)ìöL(5)8ûL
5(äðm62ßJUDÃ%)qöL(5)½ûL
5+Ô8mj2KUY)ööL(5)BûL
5*{ÌFUY~0*ǍDUY-5( èmÀ2BKUfª.)öL(5)YûL
5*’$MUf~0,Èj@Ugø ,ëDUh-5,/MUpª.-ôo03xKH)1öL(5)jûL
5.£þ<!-    oq3®KH)ÙöL(5)ûL
5.K    = -    o²3àKH)öL(5)ºûL
5.ó=Ã%/0    o÷3LH~0))öL(50QûL
5-@    o)4<LH)böL(5)›ûL
5.ÔÌF~0/T    on4hLHø )
öL(50QûL
5-d    o 4‡LH)CöL(5)|ûL
5.µ"Gø 1x    |má4µLU)ëöL(5)7    ûL
5éL
    5M5M3_525 MV    Þ.
æFø Vh
òFø Vh
"Gø Vh
üFø Vh
Gø Vh
Gø VhApple clang version 13.0.0 (clang-1300.0.29.3)/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri/HDLSceneSiri/HDLSiriSceneListCell.m/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdkiPhoneOS15.0.sdk/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiriUITableViewCellStyleNSIntegerlong intUITableViewCellStyleDefaultUITableViewCellStyleValue1UITableViewCellStyleValue2UITableViewCellStyleSubtitleUITableViewCellSelectionStyleUITableViewCellSelectionStyleNoneUITableViewCellSelectionStyleBlueUITableViewCellSelectionStyleGrayUITableViewCellSelectionStyleDefaultNSTextAlignmentNSTextAlignmentLeftNSTextAlignmentCenterNSTextAlignmentRightNSTextAlignmentJustifiedNSTextAlignmentNaturalINUIAddVoiceShortcutButtonStyleNSUIntegerlong unsigned intINUIAddVoiceShortcutButtonStyleWhiteINUIAddVoiceShortcutButtonStyleWhiteOutlineINUIAddVoiceShortcutButtonStyleBlackINUIAddVoiceShortcutButtonStyleBlackOutlineINUIAddVoiceShortcutButtonStyleAutomaticINUIAddVoiceShortcutButtonStyleAutomaticOutlineUITableViewCellEditingStyleUITableViewCellEditingStyleNoneUITableViewCellEditingStyleDeleteUITableViewCellEditingStyleInsertUITableViewCellAccessoryTypeUITableViewCellAccessoryNoneUITableViewCellAccessoryDisclosureIndicatorUITableViewCellAccessoryDetailDisclosureButtonUITableViewCellAccessoryCheckmarkUITableViewCellAccessoryDetailButtonUITableViewCellFocusStyleUITableViewCellFocusStyleDefaultUITableViewCellFocusStyleCustomNSLineBreakModeNSLineBreakByWordWrappingNSLineBreakByCharWrappingNSLineBreakByClippingNSLineBreakByTruncatingHeadNSLineBreakByTruncatingTailNSLineBreakByTruncatingMiddleUIBaselineAdjustmentUIBaselineAdjustmentAlignBaselinesUIBaselineAdjustmentAlignCentersUIBaselineAdjustmentNoneNSLineBreakStrategyNSLineBreakStrategyNoneNSLineBreakStrategyPushOutNSLineBreakStrategyHangulWordPriorityNSLineBreakStrategyStandardUISemanticContentAttributeUISemanticContentAttributeUnspecifiedUISemanticContentAttributePlaybackUISemanticContentAttributeSpatialUISemanticContentAttributeForceLeftToRightUISemanticContentAttributeForceRightToLeftUIUserInterfaceLayoutDirectionUIUserInterfaceLayoutDirectionLeftToRightUIUserInterfaceLayoutDirectionRightToLeftUICellConfigurationDragStateUICellConfigurationDragStateNoneUICellConfigurationDragStateLiftingUICellConfigurationDragStateDraggingUICellConfigurationDropStateUICellConfigurationDropStateNoneUICellConfigurationDropStateNotTargetedUICellConfigurationDropStateTargetedNSDirectionalRectEdgeNSDirectionalRectEdgeNoneNSDirectionalRectEdgeTopNSDirectionalRectEdgeLeadingNSDirectionalRectEdgeBottomNSDirectionalRectEdgeTrailingNSDirectionalRectEdgeAllUIViewContentModeUIViewContentModeScaleToFillUIViewContentModeScaleAspectFitUIViewContentModeScaleAspectFillUIViewContentModeRedrawUIViewContentModeCenterUIViewContentModeTopUIViewContentModeBottomUIViewContentModeLeftUIViewContentModeRightUIViewContentModeTopLeftUIViewContentModeTopRightUIViewContentModeBottomLeftUIViewContentModeBottomRightUIEditingInteractionConfigurationUIEditingInteractionConfigurationNoneUIEditingInteractionConfigurationDefaultCAEdgeAntialiasingMaskunsigned intkCALayerLeftEdgekCALayerRightEdgekCALayerBottomEdgekCALayerTopEdgeCACornerMaskkCALayerMinXMinYCornerkCALayerMaxXMinYCornerkCALayerMinXMaxYCornerkCALayerMaxXMaxYCornerUIButtonTypeUIButtonTypeCustomUIButtonTypeSystemUIButtonTypeDetailDisclosureUIButtonTypeInfoLightUIButtonTypeInfoDarkUIButtonTypeContactAddUIButtonTypePlainUIButtonTypeCloseUIButtonTypeRoundedRectUIButtonRoleUIButtonRoleNormalUIButtonRolePrimaryUIButtonRoleCancelUIButtonRoleDestructiveINShortcutAvailabilityOptionsINShortcutAvailabilityOptionSleepMindfulnessINShortcutAvailabilityOptionSleepJournalingINShortcutAvailabilityOptionSleepMusicINShortcutAvailabilityOptionSleepPodcastsINShortcutAvailabilityOptionSleepReadingINShortcutAvailabilityOptionSleepWrapUpYourDayINShortcutAvailabilityOptionSleepYogaAndStretchingUIImageOrientationUIImageOrientationUpUIImageOrientationDownUIImageOrientationLeftUIImageOrientationRightUIImageOrientationUpMirroredUIImageOrientationDownMirroredUIImageOrientationLeftMirroredUIImageOrientationRightMirroredUIImageResizingModeUIImageResizingModeTileUIImageResizingModeStretchUIImageRenderingModeUIImageRenderingModeAutomaticUIImageRenderingModeAlwaysOriginalUIImageRenderingModeAlwaysTemplateUIFontDescriptorSymbolicTraitsuint32_tUIFontDescriptorTraitItalicUIFontDescriptorTraitBoldUIFontDescriptorTraitExpandedUIFontDescriptorTraitCondensedUIFontDescriptorTraitMonoSpaceUIFontDescriptorTraitVerticalUIFontDescriptorTraitUIOptimizedUIFontDescriptorTraitTightLeadingUIFontDescriptorTraitLooseLeadingUIFontDescriptorClassMaskUIFontDescriptorClassUnknownUIFontDescriptorClassOldStyleSerifsUIFontDescriptorClassTransitionalSerifsUIFontDescriptorClassModernSerifsUIFontDescriptorClassClarendonSerifsUIFontDescriptorClassSlabSerifsUIFontDescriptorClassFreeformSerifsUIFontDescriptorClassSansSerifUIFontDescriptorClassOrnamentalsUIFontDescriptorClassScriptsUIFontDescriptorClassSymbolicUIControlContentVerticalAlignmentUIControlContentVerticalAlignmentCenterUIControlContentVerticalAlignmentTopUIControlContentVerticalAlignmentBottomUIControlContentVerticalAlignmentFillUIControlContentHorizontalAlignmentUIControlContentHorizontalAlignmentCenterUIControlContentHorizontalAlignmentLeftUIControlContentHorizontalAlignmentRightUIControlContentHorizontalAlignmentFillUIControlContentHorizontalAlignmentLeadingUIControlContentHorizontalAlignmentTrailingUIControlStateUIControlStateNormalUIControlStateHighlightedUIControlStateDisabledUIControlStateSelectedUIControlStateFocusedUIControlStateApplicationUIControlStateReservedUIControlEventsUIControlEventTouchDownUIControlEventTouchDownRepeatUIControlEventTouchDragInsideUIControlEventTouchDragOutsideUIControlEventTouchDragEnterUIControlEventTouchDragExitUIControlEventTouchUpInsideUIControlEventTouchUpOutsideUIControlEventTouchCancelUIControlEventValueChangedUIControlEventPrimaryActionTriggeredUIControlEventMenuActionTriggeredUIControlEventEditingDidBeginUIControlEventEditingChangedUIControlEventEditingDidEndUIControlEventEditingDidEndOnExitUIControlEventAllTouchEventsUIControlEventAllEditingEventsUIControlEventApplicationReservedUIControlEventSystemReservedUIControlEventAllEventsUIButtonConfigurationCornerStyleUIButtonConfigurationCornerStyleFixedUIButtonConfigurationCornerStyleDynamicUIButtonConfigurationCornerStyleSmallUIButtonConfigurationCornerStyleMediumUIButtonConfigurationCornerStyleLargeUIButtonConfigurationCornerStyleCapsuleUIButtonConfigurationSizeUIButtonConfigurationSizeMediumUIButtonConfigurationSizeSmallUIButtonConfigurationSizeMiniUIButtonConfigurationSizeLargeUIButtonConfigurationMacIdiomStyleUIButtonConfigurationMacIdiomStyleAutomaticUIButtonConfigurationMacIdiomStyleBorderedUIButtonConfigurationMacIdiomStyleBorderlessUIButtonConfigurationMacIdiomStyleBorderlessTintedUIButtonConfigurationTitleAlignmentUIButtonConfigurationTitleAlignmentAutomaticUIButtonConfigurationTitleAlignmentLeadingUIButtonConfigurationTitleAlignmentCenterUIButtonConfigurationTitleAlignmentTrailingUIMenuOptionsUIMenuOptionsDisplayInlineUIMenuOptionsDestructiveUIMenuOptionsSingleSelectionUIUserInterfaceIdiomUIUserInterfaceIdiomUnspecifiedUIUserInterfaceIdiomPhoneUIUserInterfaceIdiomPadUIUserInterfaceIdiomTVUIUserInterfaceIdiomCarPlayUIUserInterfaceIdiomMacUIUserInterfaceStyleUIUserInterfaceStyleUnspecifiedUIUserInterfaceStyleLightUIUserInterfaceStyleDarkUITraitEnvironmentLayoutDirectionUITraitEnvironmentLayoutDirectionUnspecifiedUITraitEnvironmentLayoutDirectionLeftToRightUITraitEnvironmentLayoutDirectionRightToLeftUIUserInterfaceSizeClassUIUserInterfaceSizeClassUnspecifiedUIUserInterfaceSizeClassCompactUIUserInterfaceSizeClassRegularUIForceTouchCapabilityUIForceTouchCapabilityUnknownUIForceTouchCapabilityUnavailableUIForceTouchCapabilityAvailableUIDisplayGamutUIDisplayGamutUnspecifiedUIDisplayGamutSRGBUIDisplayGamutP3UIAccessibilityContrastUIAccessibilityContrastUnspecifiedUIAccessibilityContrastNormalUIAccessibilityContrastHighUIUserInterfaceLevelUIUserInterfaceLevelUnspecifiedUIUserInterfaceLevelBaseUIUserInterfaceLevelElevatedUILegibilityWeightUILegibilityWeightUnspecifiedUILegibilityWeightRegularUILegibilityWeightBoldUIUserInterfaceActiveAppearanceUIUserInterfaceActiveAppearanceUnspecifiedUIUserInterfaceActiveAppearanceInactiveUIUserInterfaceActiveAppearanceActiveUIGraphicsImageRendererFormatRangeUIGraphicsImageRendererFormatRangeUnspecifiedUIGraphicsImageRendererFormatRangeAutomaticUIGraphicsImageRendererFormatRangeExtendedUIGraphicsImageRendererFormatRangeStandardUIContextMenuInteractionAppearanceUIContextMenuInteractionAppearanceUnknownUIContextMenuInteractionAppearanceRichUIContextMenuInteractionAppearanceCompactCGLineCapint32_tintkCGLineCapButtkCGLineCapRoundkCGLineCapSquareCGLineJoinkCGLineJoinMiterkCGLineJoinRoundkCGLineJoinBevelfloatHDLSiriSceneListCellUITableViewCellUIViewUIResponderNSObjectisaClassobjc_classnextRespondercanBecomeFirstResponderBOOL_BoolcanResignFirstResponderisFirstResponderundoManagerNSUndoManagergroupingLevelundoRegistrationEnabledisUndoRegistrationEnabledgroupsByEventlevelsOfUndorunLoopModesNSArraycountcanUndocanRedoundoingisUndoingredoingisRedoingundoActionIsDiscardableredoActionIsDiscardableundoActionNameNSStringlengthredoActionNameundoMenuItemTitleredoMenuItemTitle_undoStackidobjc_object_redoStack_runLoopModes_NSUndoManagerPrivate1uint64_tlong long unsigned int_target_proxy_NSUndoManagerPrivate2_NSUndoManagerPrivate3editingInteractionConfigurationlayerClassuserInteractionEnabledisUserInteractionEnabledtaglayerCALayerboundsCGRectoriginCGPointxCGFloatdoubleysizeCGSizewidthheightpositionzPositionanchorPointanchorPointZtransformCATransform3Dm11m12m13m14m21m22m23m24m31m32m33m34m41m42m43m44framehiddenisHiddendoubleSidedisDoubleSidedgeometryFlippedisGeometryFlippedsuperlayersublayerssublayerTransformmaskmasksToBoundscontentscontentsRectcontentsGravityCALayerContentsGravitycontentsScalecontentsCentercontentsFormatCALayerContentsFormatminificationFilterCALayerContentsFiltermagnificationFilterminificationFilterBiasopaqueisOpaqueneedsDisplayOnBoundsChangedrawsAsynchronouslyedgeAntialiasingMaskallowsEdgeAntialiasingbackgroundColorCGColorRefCGColorcornerRadiusmaskedCornerscornerCurveCALayerCornerCurveborderWidthborderColoropacityallowsGroupOpacitycompositingFilterfiltersbackgroundFiltersshouldRasterizerasterizationScaleshadowColorshadowOpacityshadowOffsetshadowRadiusshadowPathCGPathRefCGPathactionsNSDictionarynamedelegatestylecanBecomeFocusedfocusedisFocusedfocusGroupIdentifierfocusGroupPriorityUIFocusGroupPriorityfocusEffectUIFocusEffectsemanticContentAttributeeffectiveUserInterfaceLayoutDirectionconfigurationStateUICellConfigurationStateUIViewConfigurationStatetraitCollectionUITraitCollectionuserInterfaceIdiomuserInterfaceStylelayoutDirectiondisplayScalehorizontalSizeClassverticalSizeClassforceTouchCapabilitypreferredContentSizeCategoryUIContentSizeCategorydisplayGamutaccessibilityContrastuserInterfaceLevellegibilityWeightactiveAppearancedisabledisDisabledhighlightedisHighlightedselectedisSelectedpinnedisPinnededitingisEditingexpandedisExpandedswipedisSwipedreorderingisReorderingcellDragStatecellDropStateconfigurationUpdateHandlerUITableViewCellConfigurationUpdateHandler__isa__flags__reserved__FuncPtr__descriptor__block_descriptorreservedSizecontentConfigurationautomaticallyUpdatesContentConfigurationcontentViewimageViewUIImageViewimageUIImageCGImageCGImageRefCIImageblackImagewhiteImagegrayImageredImagegreenImageblueImagecyanImagemagentaImageyellowImageclearImageextentpropertiesdefinitionCIFilterShape_pad_privurlNSURLdataRepresentationNSDatabytesabsoluteStringrelativeStringbaseURLabsoluteURLschemeresourceSpecifierhostportNSNumberNSValueobjCTypecharcharValueunsignedCharValueunsigned charshortValueshortunsignedShortValueunsigned shortintValueunsignedIntValuelongValueunsignedLongValuelongLongValuelong long intunsignedLongLongValuefloatValuedoubleValueboolValueintegerValueunsignedIntegerValuestringValueuserpasswordpathfragmentparameterStringqueryrelativePathhasDirectoryPathfileSystemRepresentationfileURLisFileURLstandardizedURLfilePathURL_urlString_baseURL_clients_reservedcolorSpaceCGColorSpaceRefCGColorSpacepixelBufferCVPixelBufferRefCVImageBufferRefCVBufferRef__CVBufferimageOrientationscalesymbolImageisSymbolImageimagesdurationNSTimeIntervalcapInsetsUIEdgeInsetstopleftbottomrightresizingModealignmentRectInsetsrenderingModeimageRendererFormatUIGraphicsImageRendererFormatUIGraphicsRendererFormatprefersExtendedRangepreferredRangeimageAssetUIImageAssetflipsForRightToLeftLayoutDirectionbaselineOffsetFromBottomhasBaselineconfigurationUIImageConfigurationsymbolConfigurationUIImageSymbolConfigurationunspecifiedConfigurationhighlightedImagepreferredSymbolConfigurationanimationImageshighlightedAnimationImagesanimationDurationanimationRepeatCounttintColorUIColorblackColordarkGrayColorlightGrayColorwhiteColorgrayColorredColorgreenColorblueColorcyanColoryellowColormagentaColororangeColorpurpleColorbrownColorclearColorCIColornumberOfComponentssize_tcomponentsalpharedgreenbluestringRepresentation__ARRAY_SIZE_TYPE__animatingisAnimatingadjustsImageWhenAncestorFocusedfocusedFrameGuideUILayoutGuidelayoutFrameowningViewidentifierleadingAnchorNSLayoutXAxisAnchorNSLayoutAnchoritemhasAmbiguousLayoutconstraintsAffectingLayouttrailingAnchorleftAnchorrightAnchortopAnchorNSLayoutYAxisAnchorbottomAnchorwidthAnchorNSLayoutDimensionheightAnchorcenterXAnchorcenterYAnchoroverlayContentViewmasksFocusEffectToContentstextLabelUILabeltextfontUIFontfamilyNamesfamilyNamefontNamepointSizeascenderdescendercapHeightxHeightlineHeightleadingfontDescriptorUIFontDescriptorpostscriptNamematrixCGAffineTransformabcdtxtysymbolicTraitsfontAttributestextColortextAlignmentlineBreakModeattributedTextNSAttributedStringstringhighlightedTextColorenabledisEnablednumberOfLinesadjustsFontSizeToFitWidthbaselineAdjustmentminimumScaleFactorallowsDefaultTighteningForTruncationlineBreakStrategypreferredMaxLayoutWidthenablesMarqueeWhenAncestorFocusedshowsExpansionTextWhenTruncatedminimumFontSizeadjustsLetterSpacingToFitWidthdetailTextLabelbackgroundConfigurationUIBackgroundConfigurationcustomViewbackgroundInsetsNSDirectionalEdgeInsetstrailingedgesAddingLayoutMarginsToBackgroundInsetsbackgroundColorTransformerUIConfigurationColorTransformervisualEffectUIVisualEffectimageContentModestrokeColorstrokeColorTransformerstrokeWidthstrokeOutsetautomaticallyUpdatesBackgroundConfigurationbackgroundViewselectedBackgroundViewmultipleSelectionBackgroundViewreuseIdentifierselectionStyleeditingStyleshowsReorderControlshouldIndentWhileEditingaccessoryTypeaccessoryVieweditingAccessoryTypeeditingAccessoryViewindentationLevelindentationWidthseparatorInsetshowingDeleteConfirmationfocusStyleuserInteractionEnabledWhileDraggingtitleLabellineViewshortcutButtonINUIAddVoiceShortcutButtonUIButtonUIControlcontentVerticalAlignmentcontentHorizontalAlignmenteffectiveContentHorizontalAlignmentstatetrackingisTrackingtouchInsideisTouchInsideallTargetsNSSetallControlEventscontextMenuInteractionUIContextMenuInteractionmenuAppearancecontextMenuInteractionEnabledisContextMenuInteractionEnabledshowsMenuAsPrimaryActiontoolTiptoolTipInteractionUIToolTipInteractiondefaultToolTiptitleShadowOffsetcontentEdgeInsetstitleEdgeInsetsimageEdgeInsetsreversesTitleShadowWhenHighlightedadjustsImageWhenHighlightedadjustsImageWhenDisabledshowsTouchWhenHighlightedUIButtonConfigurationbackgroundcornerStylebuttonSizemacIdiomStylebaseForegroundColorbaseBackgroundColorimageColorTransformerpreferredSymbolConfigurationForImageshowsActivityIndicatoractivityIndicatorColorTransformertitleattributedTitletitleTextAttributesTransformerUIConfigurationTextAttributesTransformersubtitleattributedSubtitlesubtitleTextAttributesTransformercontentInsetsimagePlacementimagePaddingtitlePaddingtitleAlignmentautomaticallyUpdateForSelectionUIButtonConfigurationUpdateHandlerautomaticallyUpdatesConfigurationbuttonTypehoveredisHoveredheldisHeldrolepointerInteractionEnabledisPointerInteractionEnabledpointerStyleProviderUIButtonPointerStyleProviderUIPointerStyleaccessoriesUIPointerEffectpreviewUITargetedPreviewtargetUIPreviewTargetcontainercenterviewparametersUIPreviewParametersvisiblePathUIBezierPathemptyisEmptycurrentPointlineWidthlineCapStylelineJoinStylemiterLimitflatnessusesEvenOddFillRuleUIPointerShapemenuUIMenuUIMenuElementUIMenuIdentifieroptionschildrenselectedElementschangesSelectionAsPrimaryActioncurrentTitlecurrentTitleColorcurrentTitleShadowColorcurrentImagecurrentBackgroundImagecurrentPreferredSymbolConfigurationcurrentAttributedTitlesubtitleLabelshortcutINShortcutintentINIntentintentDescriptionsuggestedInvocationPhraseshortcutAvailabilitydonationMetadataINIntentDonationMetadatauserActivityNSUserActivityactivityTypeuserInforequiredUserInfoKeysneedsSavewebpageURLreferrerURLexpirationDateNSDatetimeIntervalSinceReferenceDatekeywordssupportsContinuationStreamstargetContentIdentifiereligibleForHandoffisEligibleForHandoffeligibleForSearchisEligibleForSearcheligibleForPublicIndexingisEligibleForPublicIndexingeligibleForPredictionisEligibleForPredictionpersistentIdentifierNSUserActivityPersistentIdentifiermodelHDLSiriControlModelcontrolNamecontrolIdcontrolTypecontrolJSONStractionNamehomeId_titleLabel_lineView_shortcutButton_model_homeIdUIKit"-DNS_BLOCK_ASSERTIONS=1" "-DOBJC_OLD_DISPATCH_PROTOTYPES=0"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/UIKit.frameworkIntents/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Intents.frameworkIntentsUI/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/IntentsUI.frameworkFoundation/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Foundation.framework-[HDLSiriSceneListCell initWithStyle:reuseIdentifier:]initWithStyle:reuseIdentifier:-[HDLSiriSceneListCell addAllChildView]addAllChildView-[HDLSiriSceneListCell lineView]-[HDLSiriSceneListCell titleLabel]-[HDLSiriSceneListCell shortcutButton]-[HDLSiriSceneListCell initModel:intent:]initModel:intent:-[HDLSiriSceneListCell getINShortcut:]getINShortcut:-[HDLSiriSceneListCell setTitleLabel:]setTitleLabel:-[HDLSiriSceneListCell setLineView:]setLineView:-[HDLSiriSceneListCell setShortcutButton:]setShortcutButton:-[HDLSiriSceneListCell model]-[HDLSiriSceneListCell setModel:]setModel:-[HDLSiriSceneListCell homeId]-[HDLSiriSceneListCell setHomeId:]setHomeId:-[HDLSiriSceneListCell .cxx_destruct].cxx_destructinstancetypeself_cmdSELobjc_selectorHDLRunSceneIntentsceneModelshortCutHSAH      ÿÿÿÿŸHVgÚ*î±a唺½zˆä®3r4ç?JÐÁï`,õQö4½h>Ù|?‹åó#ç+'¯¶ûÌ,í¹~‘‹ÆHaïè°‰cÓ¦ ëñþåööò\<$Ú«?ýÙ·ƒå(>ˆ³IûLéýò™ÖÛ¢L\l|Œœ¬¼ÌÜìü ,<L\l|Œœ¬¼ÌÜìü ‡L‡4<L4ªL‡4=2KQ2þ<á1BK£2®KX3LÚ3hLQ4¼Já1xK3ßJ2ŸK3àK™3›J©1    =©10KQ2‹Ju1µLÈ4ÌFÚ3^L4cJu1 J1 L™3ÓKX3DJ1ÛLÈ4iK£2"GQ4HSAH ºë,û#1u1©1á12Q2£23X3™3Ú34Q4‡4È4HSAH ÿÿÿÿHSAHT¨      ÿÿÿÿÿÿÿÿÿÿÿÿ "#'ÿÿÿÿ(+-/2578<?ÿÿÿÿBEFJLMSUYZ[]_abcfhÿÿÿÿikmopruz|€ÿÿÿÿ‚‡ˆŒ‘“”—ÿÿÿÿÿÿÿÿ˜›œž¢£¤,€ZùMÿn•ÁÚ‘傦~zÁø·/#;_eƒ÷hˆ’Ôðê¿Réä [=ùõÖs¬qé­õâmL<Òŧ‰WÝvÖ&Ä¥"Ÿ³¨'`MÖÃ8;ÙÄ)ˆ ÒáúÒÙ9šb‡ÎÄ´B—}ÁËwÉäÓdMÖÃioæ]Mh´ë\sÆèðIŸ §ËùÑNо2xYé†@×>&‡½7<ÇHÕðZÛ$Y3D‡Æ¤    –U»Nø ïÑ ¢4Ë È9zDbûX3"L:¡¡¹ÕírÑå$bBÑá>¤Ñ¦ v´ÜÔ:Çø½ZêYŒ’]éqy£-    LÎzkùc¦wêdêÄ\©8‰}$`¦aÐ;ØÙeêÆË„Br…AtF‡èÖiíý“òÐw¤×<Ž•=pó6qf±EÑz¬Í“<²9ÂÔ½|5ûŽö:Lћáqÿ\Š_Y3Ì·aÃí4†ìØÝ»`ºìšQ=hc •| òµÌ ìTHR•ùv=JæŒdgêQë¬LÉsB…èðCà7 å™ ÔÏàX+—L«àt¾ð/ÜEúr>ñؙ_¾sÓ¯Ž ž?3¥ï?Ž˜=垴DÅ­Íþ
Bd>›uckÑAɔâ­{ÕûŠ"8/†VòÎë0©;¯)aˎJ¦×Òú„_¦.„
 4â~Î/Ò2ò#’N.@ÜWžòAÒc“å?„ØtHøöŸ]bFØÈ_é=ŸT,­h›‚|ºëZÈvӛ9ë€[sŒÜøpÀùp–~$\©q…“âŠÎu ]èSÅ끕 p–²_b4›ÇX3Kï&Ì0€ˆ ³WfxtzÓ\,8ÚYo± ri± —ÔT?Žwßý;׸ËÞñ %8K^q„ž±Ä×ê*=Pcv‰£¶Éãý    *    =    P    c    v    ‰    œ    ¶    Ð    ê    ý    
#
6
P
c
v
‰
œ
Ð
ã
ö
      / I c v ‰ œ ¶ É Ü ï   6 P c }  ª ½ × ê ý  # = P c }  £ ¶ É ã ö #6Pcv‰œ¶Ðê*=ex‹¥¸ËÞø 8Ke™³Æàó3F`z ºÍàú'A[n”§ºÍàó,F`z§ºÍç':M`s† ³“BÚ,<8ó"'$ì öj—%!&4Wˆ?„)<= &Ù+ß)4yä•#,'œ$YCþ-!=È%tCS.¥c›#2©Fs0ô-‘·/½‚D¯.M
5M25”a¸2h²7 !ØÓD
Yö$EV0,DÂ7á ý&[{#ÑT0$äBO-ü%Ò
ŠŒ%üî]© þÄ73Òm0$bBt,ÄB-/°é#;&9@$] å.æ)ï(QÃ("n2Ã.Ö8Á#º*ú?+6ç4›;vÓW Ù0$À+qO2=% òO>ëê:%Ÿ@à*ÒFƒ0:'£®ðâV+„'ÏÚ›5‹!0eÕ.ú€˜Ê*$œ    å+·¶5Ÿ·$ Ó*®%ý vg¿*GBS,À #$'doIö$”DÞ.„(£õ#    $©·// 6˜ a´.ð.> )    {ð(¹30ù$¬)Ï~c$c8?#J#ùÀû(¸×V·#ãî-ïD?/,V`+FN.ò\%;+½+$'0ò²G¸%tX|$ƒ $-%Û Ž    :† $H N6̃:²$½$*Bî+ `±#Ö­%Ó"“4)½‘Þ#`2H| OØ+D&D$?7ö 3B½Õ*M:ù#š Z_35E=Æ';|%ºŸ.®>D)ET/Ñ2s~ *ä"0Ò”.k,¸(U3/#3$F Ç(®w$x û#
    Ä7W"‚C‰.ò5À$lAa+ÿ%( '8CJ’ã+Ÿ¦#Ä!F‚Î(zB•,†0$Vý¢%q#²ã-ƒ#Ü$Œ6ˆ mC.éLü4ž/_æ=Þ(¯,98 åK>21g!OpllÜHXŒäðÔ8 èô        0    @    T    d    x    |ô    zRx (äÿÿÿÿÿÿÿlP ž“”,D¸ÿÿÿÿÿÿÿÜT ž“”•–—˜,tˆÿÿÿÿÿÿÿP ž“”•–,¤XÿÿÿÿÿÿÿŒP ž“”•–,Ô(ÿÿÿÿÿÿÿðP ž“”•–,øþÿÿÿÿÿÿ8T ž“”•–—˜,4ÈþÿÿÿÿÿÿèT ž“”•–—˜d˜þÿÿÿÿÿÿ„xþÿÿÿÿÿÿ¤XþÿÿÿÿÿÿÄ8þÿÿÿÿÿÿäþÿÿÿÿÿÿøýÿÿÿÿÿÿ$Øýÿÿÿÿÿÿ$D¸ýÿÿÿÿÿÿ|L ž“”lýÿÿÿÿÿÿDžŸ¡ û /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/IntentsUI.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Intents.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/_types/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/sys/_types/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri/HDLSceneSiri/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/includeHDLSceneSiriNSObjCRuntime.hUITableViewCell.hNSText.hINUIAddVoiceShortcutButton.hNSParagraphStyle.hUIStringDrawing.hUIView.hUIInterface.hUICellConfigurationState.hUIGeometry.hUIResponder.hCALayer.hUIButton.hINShortcutAvailabilityOptions.hUIImage.h_uint32_t.hUIFontDescriptor.hUIControl.hUIButtonConfiguration.hUIMenu.hUIDevice.hUITouch.hUIGraphicsImageRenderer.hUIContextMenuInteraction.h_int32_t.hCGPath.hHDLSiriSceneListCell.m    NSObject.hobjc.hNSUndoManager.h
NSArray.h
NSString.h
_uint64_t.hCGBase.hCGGeometry.hCATransform3D.hCGColor.hNSDictionary.h
UIFocus.hUIFocusEffect.hUITraitCollection.hUIContentSizeCategory.hUIViewConfigurationState.hCGImage.hCIImage.h CIFilterShape.h NSData.h
NSURL.h
NSValue.h
CGColorSpace.hCVBuffer.h CVImageBuffer.h CVPixelBuffer.h NSDate.h
UIGraphicsRenderer.hUIImageAsset.hUIImageConfiguration.hUIImageSymbolConfiguration.hUIImageView.hUIColor.hstddef.h CIColor.h UILayoutGuide.hNSLayoutAnchor.hUILabel.hUIFont.hCGAffineTransform.hNSAttributedString.h
UIBackgroundConfiguration.hUIConfigurationColorTransformer.hUIVisualEffect.hHDLSiriSceneListCell.hNSSet.h
UIToolTipInteraction.hUIPointerStyle.hUITargetedPreview.hUIBezierPath.hUIPreviewParameters.hUIMenuElement.hINIntent.hINIntentDonationMetadata.hINShortcut.hNSUserActivity.h
HDLSiriShortcutModel.hHDLSiriSceneListCell.mHDLRunSceneIntent.hU    
ó    äK    >õ?
uctJ
‚t(ƒbºJ
‚b<J‚º ô`º J'‚`ò J‚    (<K^º"J+‚^ò"J    ‚ æ\º$J'‚\ò$J‚ 0    
=ºKEòN<2JN<V2‚Jä    ò%ƒM03J    ‚J    ò „@    
=ºKGòE<;JE<X;‚]ºJä    ò!ƒD0<J    ‚J    òƒCä=J    ‚J    òƒJ    óJ ô?    
=ºKºò    õJ,ó¶<ÊJ¶<=ʂ    JJ    ä
ƒ    J õ <
8 º    ¼J"L¢òÞJ
‚¢òÞJ‚òó%M$ºžò8àJ$J òàJ Jä(æ"
u™ºç‚™‚çJ"ƒ!º ó#ó–òêJ ‚< ƒ=”òìJ ‚<$ƒ“òíJ ‚<%ƒ’òîJ ‚<(ƒ‘òïJ ò<ƒº>H¤(
jJò
iJò
hJò5
ò
fJò)
ò
eJUò
ò|ü    ö-ð     -Ü    ïLØ    ï=Ô     -È    ìLÄ    ì=À     -´    îL°    î=¬     -     íLœ    í=˜     -Œ    ëLˆ    ë=t     -l    ëLh    ë=X    ëLT    ë=P     -H    íLD    í=4    íL0    í=,     -$    îL     î=     -    ìL     ì=     -üïLøï=ð-Ø    -Р   -Ä-¼2L¸2=´-°1L¬1=¨    - -”CLC=Œ    -€ -x-pBLlB=h    -`-TALPA=H -@-8@L4@=0    -(-?L?= -->Lü>=ø    -ð-ä=Là==Ø -Ð-È<LÄ<=À-´;L°;=¬    -¤-˜:L”:=Œ -„-|9Lx9=t-l8Lh8=`-\7LX7=T-P6LL6=D -<-0
-(/L$/=    -ð    -è    -à-Ø4LÔ4=ÌîLÈî=À -¸-°3L¬3= -˜2L”2=-Œ1Lˆ1=€    -x    -p-h0Ld0=\ -T-L LH =@ -8-0/L,/=  -íL í=
-ø
-Ð -¼-´-L°-=¨    - -ˆ,L„,=p-lLh=` -X-TLP=LLH=D-<+L8+=0    - -*L*=- )L)=üîLøî=à -Ì-Ä'LÀ'=¸-°&L¬&=¤    -œ-”%L%=„ -|-t$Lp$=l#Lh#=d"L`"=\    -T-L!LH!=< -4-,L(=$L =L=L= L=    -ü    -ì-ÔLÐ=ÈLÄ=´-°L¬=¤ -œ-˜L”=LŒ=„-€ L| =pïLlï=T -@    -8-0    L,    =  --L =L=Lü=øLô=ðLì=è    -à    -Ð-ÀL¼=¸L´=¤- Lœ=” -Œ-ˆL„=€L|=t-pLl=`ìL\ì=D    -,    -$- --Lü=ô -ì-à    -Ø    -Ð-¼ -´-¬ L¨ =  -˜-ˆ-t    -l    -d-T LP =H -@-8 L4 =, -$-    -    --ø -ð-ä
=Ø -Ð-ÈLÄ    -¼-¬    L¨    =  -˜-LŒ=ˆL„=T-LLH=D-8L4=(- L=L=H½80( Mþðê@~8}0|({ zyxwvøuðtèsàrØqÐpÈoÀn¸m°l¨k j˜ihˆg€fxepah``_X^P]H[@Z8Y0X(W VUSRP8÷0ø(ù ûüýÿúcˆàxÕp¼hÊ`€X¾@¬8­0¬(« ª©¨§ßøÞðÝèÜàÛØÚÐÙÈØÀ׸֠ԘӐë€ÒxÑpí`ÐXÏPî@Î8Í0ì ÌËïKøÀðÉèJàÄØxÐIȉÀw¸H°Ä¨È G˜‰ÇˆF€ÄxÆpEhÄ`ÅXDPÄHÃ@58Â0o(. ¶Á(‰Zøð‰èXàØ‰Ð[ÈÀÀ¸S°¨¿ Px¼h€@ó0º(¹¶·¶øµàôаȰÀ‡¸°Ÿ¨ ‰˜š‰ˆ—€¯x“p“h‘`XP‹H‰@‡8…0¬(­ ¬«ª©¨ø§à‰Ø¥À‰¸¢¨‡ ¡ˆ xŸpž`XœH‰@›0š(™‰˜—ø–è…à•ГȔ¸“°’ ‘˜ˆ€ŽphŒX‹PŠ@‰8ˆ(‡ †…ƒ¨»x¸p´hH±8®(¦¤‚óôêÉ4ˆ4R44Û3š3Y33¤2R22â1ª1v1 1'àÀ €`@ àÀ €`@ pépõHéHK(é(JéIèéèHÈéÈG¨é¨FˆéˆEhéhD8é85é.ØéØ(¨é¨xéxHéHé°  HL48ÐÔ´¸à䨬Œ¨¬ü€ÜରŒ„Œ„ˆü„ü€ôüôøìôìð¼À´¼´¸œ „ˆü„ü€ìðìðÀ    Ä    ¬    °        ”    ðôèìàèàäĘ̀¬ ¨ ¤˜ ˜œ˜”ˆˆŒÐÔÄÐÄȬ°”˜Œ”Œü€ø    ü    ° ´ „ ˆ è
ì
Ð
Ô
È
Ð
È
Ì
¸
¼
”
˜
ˆ
Œ
Œ  ä è È Ì ¬ ° ” ˜ ˆ Œ ¬ ° Ô Ø È Ì ¸¼¬°”ìðÐÔ´¸˜œü€àäÄȰ´”˜øüèìØÜÌФ¨øüŒ ¤°´ÄÈÔØèìØÜÄȰ´œ ˆŒH    l˜
û`9hYpÈl‰¨³x? €ãˆ!˜{  ¨V
V
d

„ 
§HM °¡¸Â°â¸<ÀÈ ÈN(
\0
w8
|@
[X ÀŠÐ†È©Øæ
à è/ðäOÐlø¶( 
éÔ4 " ØÄ8~(ð 0Â Üàü@FH· P4
X£`Ãh p™ x
€…ˆ¥ï˜{  —    ô    J        =0    u    @    ~T    ¾    d    ðx    qH
™ ˜v˜
§ 
V 
Ð`0¿
EÒ
¨â
í
ˆ  ý  \$ Í3 \ èÃ< ØG "N “] g|       ü£    üá    
¤Š î `¦ Ø
¸ SÊ yÙ Ð ]  ü  ) F2 A m
N í^ c i î ‹ ™ ¹© ß° P» Õ Æ wÕ  á Æñ 7  0C 0¿  E
 h^ Ü s- sl ‡ ~Œ" ­ †Ö'  Žb 8 ¦  ™ç    T  §{  ¸+ƒ ? Àu’ ™£ æ· %  Ën Ë ÉÒ ã ÖçÚ øæ  ßBò a ç³÷ í ü 3 à P  P‡È  $¨)§.½9Ç>J![¬ @y ù®  ø ˆñà  (ñ
lM  p­ƒ @l .Š |A xk ˆÀ  ’ qÔ Ëé ÙFïv  á¾
 ì59R0_6œ@ò è¶N ÷C Z†
 âdý t *,{d AÁ X‚ƒÕ Ž «R
´©ÎÁÝÒáø;+B™ ;°°Z¸V¸¬¹G¹æ Ú., €Ö€€Ø!H
°øèëôÚðìDp
É ¨g   @ˆ àX€ô    ÀŒ@B@ @ªwBBY-Lw€[mÚ£¢]95Àã‘_OBJC_IVAR_$_HDLSiriSceneListCell._lineView_OBJC_CLASS_$_UIView_OBJC_CLASS_$_INShortcut___isPlatformVersionAtLeast_OBJC_CLASS_$_UIFont_OBJC_CLASS_$_HDLRunSceneIntent__OBJC_$_PROP_LIST_NSObject__OBJC_$_PROTOCOL_INSTANCE_METHODS_OPT_NSObject__OBJC_$_PROTOCOL_METHOD_TYPES_NSObject__OBJC_$_PROTOCOL_INSTANCE_METHODS_NSObject_OBJC_METACLASS_$_NSObject__OBJC_LABEL_PROTOCOL_$_NSObject__OBJC_PROTOCOL_$_NSObjectl_.str_OBJC_CLASS_$_UIColor_CFBundleGetVersionNumber_OBJC_IVAR_$_HDLSiriSceneListCell._shortcutButton_OBJC_CLASS_$_INUIAddVoiceShortcutButton_objc_retain_OBJC_CLASS_$_UIScreen_OBJC_CLASS_$_UITableViewCell_OBJC_METACLASS_$_UITableViewCell__OBJC_$_PROP_LIST_HDLSiriSceneListCell__OBJC_$_INSTANCE_VARIABLES_HDLSiriSceneListCell__OBJC_$_INSTANCE_METHODS_HDLSiriSceneListCell_OBJC_CLASS_$_HDLSiriSceneListCell_OBJC_METACLASS_$_HDLSiriSceneListCell__OBJC_CLASS_PROTOCOLS_$_HDLSiriSceneListCell__OBJC_CLASS_RO_$_HDLSiriSceneListCell__OBJC_METACLASS_RO_$_HDLSiriSceneListCell_OBJC_IVAR_$_HDLSiriSceneListCell._model_OBJC_IVAR_$_HDLSiriSceneListCell._titleLabel_OBJC_CLASS_$_UILabel___clang_at_available_requires_core_foundation_framework_objc_storeStrong_objc_autoreleaseReturnValue_objc_retainAutoreleaseReturnValue_objc_retainAutoreleasedReturnValue__OBJC_$_PROTOCOL_REFS_INUIAddVoiceShortcutButtonDelegate__OBJC_$_PROTOCOL_METHOD_TYPES_INUIAddVoiceShortcutButtonDelegate__OBJC_$_PROTOCOL_INSTANCE_METHODS_INUIAddVoiceShortcutButtonDelegate__OBJC_LABEL_PROTOCOL_$_INUIAddVoiceShortcutButtonDelegate__OBJC_PROTOCOL_$_INUIAddVoiceShortcutButtonDelegate_objc_releasel_llvm.cmdlinel_llvm.embedded.module__objc_empty_cache___CFConstantStringClassReference_objc_msgSend_OBJC_IVAR_$_HDLSiriSceneListCell._homeId_objc_allocl__unnamed_cfstring__OBJC_SELECTOR_REFERENCES_l_OBJC_PROP_NAME_ATTR_l_OBJC_METH_VAR_TYPE_l_OBJC_CLASS_NAME_l_OBJC_METH_VAR_NAME_l_OBJC_CLASSLIST_SUP_REFS_$__OBJC_CLASSLIST_REFERENCES_$_-[HDLSiriSceneListCell lineView]-[HDLSiriSceneListCell addAllChildView]-[HDLSiriSceneListCell .cxx_destruct]-[HDLSiriSceneListCell shortcutButton]-[HDLSiriSceneListCell model]-[HDLSiriSceneListCell titleLabel]-[HDLSiriSceneListCell homeId]-[HDLSiriSceneListCell setLineView:]-[HDLSiriSceneListCell getINShortcut:]-[HDLSiriSceneListCell initModel:intent:]-[HDLSiriSceneListCell initWithStyle:reuseIdentifier:]-[HDLSiriSceneListCell setShortcutButton:]-[HDLSiriSceneListCell setModel:]-[HDLSiriSceneListCell setTitleLabel:]-[HDLSiriSceneListCell setHomeId:]ltmp9l_OBJC_METH_VAR_NAME_.99l_OBJC_CLASS_NAME_.89_OBJC_SELECTOR_REFERENCES_.79_OBJC_SELECTOR_REFERENCES_.69l_OBJC_PROP_NAME_ATTR_.159l_OBJC_METH_VAR_NAME_.59l_OBJC_METH_VAR_TYPE_.149_OBJC_SELECTOR_REFERENCES_.49l_OBJC_METH_VAR_NAME_.139l_OBJC_METH_VAR_NAME_.39l_OBJC_METH_VAR_NAME_.129_OBJC_CLASSLIST_REFERENCES_$_.29ltmp19l_OBJC_METH_VAR_NAME_.119_OBJC_CLASSLIST_REFERENCES_$_.19l_OBJC_METH_VAR_NAME_.109l_OBJC_METH_VAR_NAME_.9ltmp8l_OBJC_METH_VAR_TYPE_.98l_OBJC_CLASS_NAME_.88l_OBJC_METH_VAR_NAME_.78l_OBJC_METH_VAR_NAME_.68l_OBJC_PROP_NAME_ATTR_.158_OBJC_CLASSLIST_REFERENCES_$_.58l_OBJC_METH_VAR_NAME_.148l_OBJC_METH_VAR_NAME_.48l_OBJC_METH_VAR_TYPE_.138_OBJC_SELECTOR_REFERENCES_.38l_OBJC_METH_VAR_TYPE_.128_OBJC_SELECTOR_REFERENCES_.28ltmp18l_OBJC_METH_VAR_NAME_.118_OBJC_SELECTOR_REFERENCES_.18l_OBJC_METH_VAR_TYPE_.108_OBJC_SELECTOR_REFERENCES_.8ltmp7l_OBJC_METH_VAR_NAME_.97_OBJC_SELECTOR_REFERENCES_.87_OBJC_SELECTOR_REFERENCES_.77_OBJC_SELECTOR_REFERENCES_.67l_OBJC_PROP_NAME_ATTR_.157_OBJC_SELECTOR_REFERENCES_.57l_OBJC_METH_VAR_TYPE_.147_OBJC_SELECTOR_REFERENCES_.47l_OBJC_METH_VAR_NAME_.137l_OBJC_METH_VAR_NAME_.37l_OBJC_METH_VAR_TYPE_.127l_OBJC_METH_VAR_NAME_.27ltmp17l_OBJC_METH_VAR_NAME_.117l_OBJC_METH_VAR_NAME_.17l_OBJC_METH_VAR_NAME_.107l_OBJC_METH_VAR_NAME_.7ltmp6l_OBJC_METH_VAR_TYPE_.96l_OBJC_METH_VAR_NAME_.86l_OBJC_METH_VAR_NAME_.76l_OBJC_METH_VAR_NAME_.66l_OBJC_PROP_NAME_ATTR_.156l_OBJC_METH_VAR_NAME_.56l_OBJC_METH_VAR_NAME_.146l_OBJC_METH_VAR_NAME_.46l_OBJC_METH_VAR_TYPE_.136_OBJC_SELECTOR_REFERENCES_.36l_OBJC_PROP_NAME_ATTR_.126_OBJC_SELECTOR_REFERENCES_.26ltmp16l_OBJC_METH_VAR_TYPE_.116_OBJC_SELECTOR_REFERENCES_.16l_OBJC_METH_VAR_NAME_.106_OBJC_SELECTOR_REFERENCES_.6ltmp5l_OBJC_METH_VAR_NAME_.95_OBJC_SELECTOR_REFERENCES_.85_OBJC_SELECTOR_REFERENCES_.75l_OBJC_PROP_NAME_ATTR_.165_OBJC_SELECTOR_REFERENCES_.65l_OBJC_METH_VAR_TYPE_.155_OBJC_SELECTOR_REFERENCES_.55l_OBJC_METH_VAR_NAME_.145_OBJC_SELECTOR_REFERENCES_.45l_OBJC_METH_VAR_TYPE_.135l_OBJC_METH_VAR_NAME_.35l_OBJC_PROP_NAME_ATTR_.125l_OBJC_METH_VAR_NAME_.25ltmp15l_OBJC_METH_VAR_NAME_.115l_OBJC_METH_VAR_NAME_.15l_OBJC_METH_VAR_NAME_.105l_OBJC_METH_VAR_NAME_.5ltmp4l_OBJC_METH_VAR_TYPE_.94l_OBJC_METH_VAR_NAME_.84l_OBJC_METH_VAR_NAME_.74l_OBJC_PROP_NAME_ATTR_.164l_OBJC_METH_VAR_NAME_.64l_OBJC_METH_VAR_NAME_.154l_OBJC_METH_VAR_NAME_.54l_OBJC_METH_VAR_NAME_.144l_OBJC_METH_VAR_NAME_.44l_OBJC_CLASS_NAME_.134_OBJC_SELECTOR_REFERENCES_.34l_OBJC_PROP_NAME_ATTR_.124_OBJC_SELECTOR_REFERENCES_.24ltmp14l_OBJC_METH_VAR_TYPE_.114_OBJC_SELECTOR_REFERENCES_.14l_OBJC_METH_VAR_TYPE_.104_OBJC_SELECTOR_REFERENCES_.4ltmp3lCPI3_3lCPI2_3l_OBJC_METH_VAR_NAME_.93_OBJC_SELECTOR_REFERENCES_.83_OBJC_SELECTOR_REFERENCES_.73l_OBJC_PROP_NAME_ATTR_.163_OBJC_SELECTOR_REFERENCES_.63l_OBJC_METH_VAR_TYPE_.153_OBJC_SELECTOR_REFERENCES_.53l_OBJC_METH_VAR_NAME_.143_OBJC_SELECTOR_REFERENCES_.43l_OBJC_METH_VAR_TYPE_.133l_OBJC_METH_VAR_NAME_.33l_OBJC_PROP_NAME_ATTR_.123l_OBJC_METH_VAR_NAME_.23ltmp13l_OBJC_METH_VAR_NAME_.113l_OBJC_METH_VAR_NAME_.13l_OBJC_METH_VAR_NAME_.103l_OBJC_METH_VAR_NAME_.3_objc_msgSendSuper2ltmp2lCPI3_2lCPI2_2l_OBJC_METH_VAR_TYPE_.92l_OBJC_METH_VAR_NAME_.82l_OBJC_METH_VAR_NAME_.72l_OBJC_PROP_NAME_ATTR_.162l_OBJC_METH_VAR_NAME_.62l_OBJC_METH_VAR_NAME_.152l_OBJC_METH_VAR_NAME_.52l_OBJC_METH_VAR_NAME_.142l_OBJC_METH_VAR_NAME_.42l_OBJC_METH_VAR_TYPE_.132_OBJC_CLASSLIST_REFERENCES_$_.32l_OBJC_PROP_NAME_ATTR_.122_OBJC_SELECTOR_REFERENCES_.22ltmp12l_OBJC_METH_VAR_NAME_.112_OBJC_SELECTOR_REFERENCES_.12l_OBJC_METH_VAR_TYPE_.102_OBJC_SELECTOR_REFERENCES_.2ltmp1lCPI3_1lCPI2_1l_OBJC_METH_VAR_NAME_.91_OBJC_SELECTOR_REFERENCES_.81_OBJC_SELECTOR_REFERENCES_.71l_OBJC_PROP_NAME_ATTR_.161_OBJC_CLASSLIST_REFERENCES_$_.61l_OBJC_METH_VAR_TYPE_.151_OBJC_SELECTOR_REFERENCES_.51l_OBJC_METH_VAR_NAME_.141_OBJC_CLASSLIST_REFERENCES_$_.41l_OBJC_METH_VAR_NAME_.131_OBJC_SELECTOR_REFERENCES_.31l_OBJC_PROP_NAME_ATTR_.121l_OBJC_METH_VAR_NAME_.21ltmp11l_OBJC_METH_VAR_TYPE_.111l_OBJC_METH_VAR_NAME_.11l_OBJC_METH_VAR_NAME_.101l_OBJC_METH_VAR_NAME_.1ltmp0lCPI3_0lCPI2_0l_OBJC_METH_VAR_NAME_.90l_OBJC_METH_VAR_NAME_.80l_OBJC_METH_VAR_NAME_.70l_OBJC_PROP_NAME_ATTR_.160_OBJC_SELECTOR_REFERENCES_.60l_OBJC_METH_VAR_NAME_.150l_OBJC_METH_VAR_NAME_.50l_OBJC_METH_VAR_TYPE_.140_OBJC_SELECTOR_REFERENCES_.40l_OBJC_METH_VAR_TYPE_.130l_OBJC_METH_VAR_NAME_.30ltmp20l_OBJC_METH_VAR_NAME_.120_OBJC_CLASSLIST_REFERENCES_$_.20ltmp10l_OBJC_METH_VAR_NAME_.110_OBJC_SELECTOR_REFERENCES_.10l_OBJC_METH_VAR_TYPE_.100l_OBJC_LABEL_CLASS_$#1/36           0           0     0     100644  163036    `
HDLSiriSceneListViewController.oÏúíþ  ˜
à¸0à¸!__text__TEXT$"0ǯ€__literal8__TEXT("HX0__cstring__TEXTp"j 0__cfstring__DATAà"À1ˆä __const__DATA #hÐ1èä__objc_data__DATA$P82 å__objc_superrefs__DATAX$ˆ2`å__objc_methname__TEXT`$ù2__objc_selrefs__DATA`<Jhåc__objc_ivar__DATAx?¨M__objc_classrefs__DATA˜?€ÈM€è__ustring__TEXT@HN__objc_classname__TEXT*@ãZN__objc_methtype__TEXT AÕ =O__objc_const__DATAèLÈ[é__data__DATA°a ào0ù__objc_protolist__DATAPd8€r ú __objc_classlist__DATAˆd¸rXú__bitcode__LLVMdÀr__cmdline__LLVM‘d?Ár__objc_imageinfo__DATAÐw†__debug_loc__DWARFØw:$†__debug_abbrev__DWARFœiBª__debug_info__DWARF{ fS«®`ú?__debug_ranges__DWARFáóÀ__debug_str__DWARF¡ôhuÑ__apple_names__DWARF    jH
9x__apple_objc__DWARFQtð‚__apple_namespac__DWARFAu$qƒ__apple_types__DWARFeuÅ•ƒ__compact_unwind__LD0 `Xü5__eh_frame__TEXTЕà¤þj h__debug_line__DWARF°ž0à¬P% .XÐ(†ˆ/0M P>>])-(-frameworkCoreFoundation-(-frameworkIntentsUI- -frameworkIntents-(-frameworkCoreLocation- -frameworkUIKit-(-frameworkFileProvider-0-frameworkUserNotifications- -frameworkCoreText-(-frameworkQuartzCore-(-frameworkCoreImage- -frameworkImageIO-(-frameworkCoreVideo- -frameworkOpenGLES- -frameworkMetal-(-frameworkIOSurface-(-frameworkCoreGraphics-(-frameworkFoundation-(-frameworkCFNetwork- -frameworkSecurity-(-frameworkCoreFoundationÿƒÑý{©ýC‘@ùà#©@ùà‘”€´€¹h(øý{A©ÿƒ‘À_ÖÿÑöW©ôO©ý{©ýÑóª@ùà#©@ùà‘”@ùઔýª”ôª@ù"€R#€R”ઔ@ù@ù@ý@ý@ýn”ýª”ôª@ùઔýª”õª@ù⪔ઔઔ@ùઔý{C©ôOB©öWA©ÿ‘À_Öø_¼©öW©ôO©ý{©ýÑóª@ù@ù”ýª”õª@ùB‘”ýª”öª@ù€Ò”ýª”ôªàª”ઔ@ùB‘ઔ÷ª@ùàªáª”ýª”õªð’ÿëTÕ´àªáª”ýª”öª@ùB‘”÷ªàª”ઔ÷5#U´àªáª”ýª”öª@ùB‘”÷ªàª”ઔw5ઔ@ùB‘ઔ@ùB‘ઔàªý{C©ôOB©öWA©ø_ĨôO¾©ý{©ýC‘óª@ù”@ùઔýª”ôª@ùàªâª”ઔ@ùઔ@ùàªý{A©ôO¨öW½©ôO©ý{©ýƒ‘󪐀¹hvøàµ@ù”ôª@ù@ù”ýª”õª@ù”@ùˆèÒgžàgžágžàª”hjvø`j6øàª”ઔ`jvø@ù”ýª”ôª@ù@ù⪀R”ઔ`jvøý{B©ôOA©öWèø_¼©öW©ôO©ý{©ýÑôª@ùઔóªàªáª”ýª”öª@ùàªáª”ýª”÷ª@ùàªâª”ઔઔ@ù@ù@ýn N N”ýª”öªàªáª”ýª”÷ª@ù⪔ઔઔàªáª”ýª”ôª@ù”ýª”õª@ù⪔ઔઔàªý{C©ôOB©öWA©ø_Ĩø_¼©öW©ôO©ý{©ýÑóª@ù᪔ýª”õª@ù”ýª”öª@ù⪔÷ªàª”ઔw´àªáª”ýª”óª@ù"€R”ýª”àªý{C©ôOB©öWA©ø_Ĩ@ùàª"€R€Òý{C©ôOB©öWA©ø_ĨôO¾©ý{©ýC‘󪐀¹htø`µ@ù@ù”hjtø`j4øàª”`jtøý{A©ôO¨é#¼möW©ôO©ý{©ýÑ󪐀¹hvø 
µ@ù”ôª@ù@ù”ýª”õª@ù”H¢N@ùઔ⪐@ùàgžágžãgžàª¨N”hjvø`j6øàª”ઔ@ù@ù”ýª”ôª`jvø@ù⪔ઔ`jvø@ù€R”`jvø@ù€R”`jvø@ù€Ò”`jvø@ùàgžágžâgžãgž”`jvø@ù⪔`jvø@ù⪔`jvøý{C©ôOB©öWA©é#Älí3·më+mé#müo©úg©ø_©öW©ôO©ý{©ý‘óª@@ù@ù᪔ýª”ôª@ù᪔ÈèÒ gž` k
èÒ gžÈ
èÒ gž¨­l`@ù@ù᪔ýª”õª@ù᪔I¢N`@ù᪔ýª”øªáª”j£N@@ù᪔ýª”ùªáª”` k ­lJ9`@@ù᪔ýª”öªáª”` k(èÒgžágž¬aJ9`@ùàªáª”ýª”úª@ùàgž¨N"©NCªN”ઔઔઔઔઔઔ@ùઔýª”ôªàªáª”ýª”óª@ùàªâª”ઔàªý{H©ôOG©öWF©ø_E©úgD©üoC©é#Bmë+Amí3Élé#½môO©ý{©ýƒ‘ôªàª”óª@ùઔýª”ôª”ŸëT@ùàªáª”@ý  hÈTàªáª”( `jTàªáª”  h+T@ù@ýàªáª” @a@ùágžâgžãgžàª”àªý{B©ôOA©é#ÃlôO¾©ý{©ýC‘@ù”ýª”óª@ù”ôªàª”àªý{A©ôO¨À_֐@ýÀ_Öø_¼©öW©ôO©ý{©ýÑôªõª@ù”@ù”óª@ùઔýª”õª@ù⪔ýª”ôªàª”´´@ùઔýª”õª@ùઔýª”öª@ùáªâª”ઔઔ@ùઔýª”õª@ùઔýª”öªáªâª”ઔઔઔàªý{C©ôOB©öWA©ø_ĨdÀ_Öý{¿©ý‘@ù”@ù”ý{Á¨öW½©ôO©ý{©ýƒ‘óª@ù”ýª”ôª@ù⪔ýª”óªàª”´@ùàªáª”ýª”õª”Õ´àªáª”ýª”õª@ù”ôªàª”€Òઔàªý{B©ôOA©öWèÀ_ÖöW½©ôO©ý{©ýƒ‘ôªóª@ùઔõªB‘àªáª”ýª”ôª`µ@ù”@ùc‘€Ò”ôª@ùઔýª”öª@ùàªâª”ઔ@ùàªâª”ýª”öªàª”´@€R€R€R€R”@4@ùઔýª”õª@ùàªâª”ýª”óªàª”@ùàªâªãª”ઔઔàªý{B©ôOA©öWè(    èÒgžÀ_Öø_¼©öW©ôO©ý{©ýÑõªôªàª”óª@ùàªâª#€R”@€R€R€R€R” 4@ùàªâª”ýª”õª@´@ùઔýª”öª@ùàªâª”ýª”÷ªàª”@ùàªâªãª”ઔઔàªý{C©ôOB©öWA©ø_Ĩüoº©úg©ø_©öW©ôO©ý{©ýC‘ôªàª”óª@ùઔýª”öª@ùઔ⪐@ùàªáª”ýª”ôªàª”t´@ùàªáª”ýª”`´÷ªàªáª”ýª”ùª@ù”úª@ùàªáª”ûªàª”ઔ_ë‰Tàªáª”ýª”öªàªáª”âªàªáª”ýª”õªàª”€Òઔઔàªý{E©ôOD©öWC©ø_B©úgA©üoƨø_¼©öW©ôO©ý{©ýÑôªõªàª”óªàª”ôª“´@ù”@ù⪔öª@ù@ù”öª@ùàªâª”ýª”÷ª@ùàªâª”öªàª”@ùàªâª”@€R¡€R€R€R”À4@ùઢ€R”@ùàªâª#€R€Ò”ઔઔàªý{C©ôOB©öWA©ø_Ĩø_¼©öW©ôO©ý{©ýÑöª@ùઔõªáª”ýª”óª@ù”@ù”ôª@ù⪔@ùઔýª”÷ª@ùàªâª”ઔ@ùàªâª”@ùઔýª”öª@ùàªâª”ઔ@ùઔýª”öª@ùàªâª”ઔ@ùઔýª”öª@ùàªâª”ઔ@ùઔýª”öªàª”@ùàªâª”ઔ@ù”@ù⪔õªàª”ઔàªý{C©ôOB©öWA©ø_ĨÿCÑüo©úg©ø_©öW©ôO©ý{©ý‘ôª@ù@ù¨øàª”àùäOà­à­@ùઔýª”@ù⃑パჩ€R”à´è@ù@ù    
 €Ò@ù7@ùX@ùy@ùñ„Ÿšè@ù@ùë`Tà @ù”è@ùysøáª”ýª”ûªáª”ýª”úªàª”Ú´àªáª”ýª”ûªáªâ@ù”üªàª”<7ઔs‘ŸëAûÿT⃑パáƒ@©€R”    
  ùÿµ€Òà @ù”à@ù”¨Zø    )@ù)@ù?ëATàªý{T©ôOS©öWR©ø_Q©úgP©üoO©ÿC‘”ÿCÑüo©úg©ø_©öW©ôO©ý{©ý‘ôª@ù@ù¨øàª”àùäOà­à­@ùઔýª”@ù⃑パᩀR” ´è@ù@ù    
 €Ò@ù7@ùH@ùè ùy@ùñ„Ÿšè@ù@ùë`Tà@ù”è@ùytøàªáª”ýª”üªáª”ýª”ûªàª”Û´àªá @ù”ýª”üªáªâ@ù”õªàª”U5ઔ”‘ë!ûÿT⃑パá@©€R”    
 àøÿµ€Òઔõªàª”à@ù”à@ù”¨Zø    )@ù)@ù?ëATàªý{T©ôOS©öWR©ø_Q©úgP©üoO©ÿC‘”öW½©ôO©ý{©ýƒ‘ઐ@ù”ýª”óª@ù”ýª”ôª@ù@ù”⪐@ùઔõªàª”ઔàªý{B©ôOA©öWèÀ_ÖÿƒÑöW©ôO©ý{©ýC‘óª@€R€R€R€R”€4@ù@ù”ýª”ôª@ù@ù”ýª”õª@ùèù@ýàý‘    )‘è'©óS©@ùઔôªâ‘àªáª”ઔà@ù”ઔ@ùઔýª”óª@ù”ઔý{E©ôOD©öWC©ÿƒ‘À_ÖÿƒÑôO©ý{©ýC‘óªàª”ôª@ùèù@ýà ý‘    )‘è§©h@ùࣩ`@ù”àùઔóª@ùá#‘”à@ù”à@ù”ઔý{E©ôOD©ÿƒ‘À_ÖÿÃÑüo ©úg©ø_©öW©ôO©ý{©ýƒ‘óª@ù@ù¨øäOà­à­@ù”ôª@ùâ‘ã‘᪀R” ´öªè @ù@ù€Ò@ù˜@ùè @ù@ùë`Tઔè@ùy{ø`@ùáªâª” 4`@ùáªâª”{‘ë£ýÿTâ‘ã‘àªáª€R”öª üÿµàª”@ùb@ù@ù”ýª”ôª`@ù@ù⪔ઔ`@ù@ù”ýª”óª@ù”ઔ¨Zø    )@ù)@ù?ë!Tý{R©ôOQ©öWP©ø_O©úgN©üoM©ÿÑÀ_֔ôO¾©ý{©ýC‘óª @ù”`@ù”`@ùý{A©ôO¨ôO¾©ý{©ýC‘óª@ù”`@ù”`@ùý{A©ôO¨ôO¾©ý{©ýC‘óª @ù”`@ùý{A©ôO¨ôO¾©ý{©ýC‘óª@ù”`@ùý{A©ôO¨ôO¾©ý{©ýC‘ôªàª”óª@ù⪔@€R¡€R€R€R”À4@ùઢ€R”@ùàªâª#€R€Ò”àªý{A©ôO¨ôO¾©ý{©ýC‘ôªàª”óª@ù⪔@€R¡€R€R€R”À4@ùઢ€R”@ùàªâª#€R€Ò”àªý{A©ôO¨öW½©ôO©ý{©ýƒ‘óª@ùઔõªàªáª”@ùàª"€R€Ò”àªý{B©ôOA©öWèöW½©ôO©ý{©ýƒ‘óª@ùઔõªàªáª”@ùàª"€R€Ò”àªý{B©ôOA©öWèöW½©ôO©ý{©ýƒ‘óª@ùઔõªàªáª”@ùàª"€R€Ò”àªý{B©ôOA©öWèöW½©ôO©ý{©ýƒ‘óª@ùઔõªàªáª”@ùàª"€R€Ò”àªý{B©ôOA©öWèöW½©ôO©ý{©ýƒ‘óª@ùઔõªàªáª”@ùàª"€R€Ò”àªý{B©ôOA©öW萀¹hhøÀ_֐€¹h(øÀ_Ö᪐€¹‹áª€¹‹€¹hhøÀ_Ö᪐€¹‹€¹hhøÀ_Ö᪐€¹‹áª€¹‹€¹€R€¹ôO¾©ý{©ýC‘󪐀¹‹€Ò”€¹`‹€Ò”€¹`‹€Ò”€¹`‹€Ò”€¹`‹€Ò”€¹`‹€Òý{A©ôO¨ý{¿©€Ò”  Ô^^^^^^î?~~~~~~î?ÿþþþþþî?ÿþþþþþî?@P@@PÀ@P@ÂÂHDLSiriSceneListCellIdentifierAppleLanguageszh-HansSiri Shortcutsv8@?0v24@?0@"NSArray"8@"NSError"16ÈÈÈÈÐÈ80initviewDidLoadnavigationControllersetNavigationBarHidden:animated:colorWithRed:green:blue:alpha:viewsetBackgroundColor:initViewstandardUserDefaultsobjectForKey:objectAtIndex:rangeOfString:titleNameisEqual:setTitleName:initLlanguagesetTopBarViewWithTitle:initTableViewrefreshSirimainScreenboundsinitWithFrame:backButtongoBackaddTarget:action:forControlEvents:topBarViewaddSubview:titleLabelsetText:viewControllersindexOfObject:dismissViewControllerAnimated:completion:popViewControllerAnimated:newtableViewStyleinitWithFrame:style:clearColorsetShowsVerticalScrollIndicator:setShowsHorizontalScrollIndicator:setSeparatorStyle:setContentInset:setDataSource:setDelegate:sharedApplicationstatusBarFrametableViewsetFrame:contentOffsetdataSourcecountobjectAtIndexedSubscript:titlecontentmessageLabellistdequeueReusableCellWithIdentifier:initWithStyle:reuseIdentifier:homeIdsetHomeId:getModelWithNSIndexPath:controlIdgetSceneIntent:initModel:intent:deselectRowAtIndexPath:animated:getSceneINVoiceShortcut:addOrEditVoiceShortcut:model:sectionrowgetINShortcut:initWithShortcut:setModalPresentationStyle:presentViewController:animated:completion:initWithVoiceShortcut:controlNamesetSuggestedInvocationPhrase:setControlId:setControlName:controlTypesetControlType:controlJSONStrsetControlJSONStr:actionNamesetActionName:initWithIntent:siriShortcutListcountByEnumeratingWithState:objects:count:shortcutintentisEqualToString:classisKindOfClass:arraysharedCentercheckCurrentClass:addObject:arrayWithArray:setSiriShortcutList:reloadDatagetAllVoiceShortcutsWithCompletion:selfperformSelector:performSelector:withObject:performSelector:withObject:withObject:isProxyisMemberOfClass:conformsToProtocol:respondsToSelector:retainreleaseautoreleaseretainCountzonehashsuperclassdescriptiondebugDescriptionhashTQ,RsuperclassT#,RdescriptionT@"NSString",R,CdebugDescriptionpresentAddVoiceShortcutViewController:forAddVoiceShortcutButton:presentEditVoiceShortcutViewController:forAddVoiceShortcutButton:addVoiceShortcutViewController:didFinishWithVoiceShortcut:error:addVoiceShortcutViewControllerDidCancel:editVoiceShortcutViewController:didUpdateVoiceShortcut:error:editVoiceShortcutViewController:didDeleteVoiceShortcutWithIdentifier:editVoiceShortcutViewControllerDidCancel:tableView:numberOfRowsInSection:tableView:cellForRowAtIndexPath:numberOfSectionsInTableView:tableView:titleForHeaderInSection:tableView:titleForFooterInSection:tableView:canEditRowAtIndexPath:tableView:canMoveRowAtIndexPath:sectionIndexTitlesForTableView:tableView:sectionForSectionIndexTitle:atIndex:tableView:commitEditingStyle:forRowAtIndexPath:tableView:moveRowAtIndexPath:toIndexPath:scrollViewDidScroll:scrollViewDidZoom:scrollViewWillBeginDragging:scrollViewWillEndDragging:withVelocity:targetContentOffset:scrollViewDidEndDragging:willDecelerate:scrollViewWillBeginDecelerating:scrollViewDidEndDecelerating:scrollViewDidEndScrollingAnimation:viewForZoomingInScrollView:scrollViewWillBeginZooming:withView:scrollViewDidEndZooming:withView:atScale:scrollViewShouldScrollToTop:scrollViewDidScrollToTop:scrollViewDidChangeAdjustedContentInset:tableView:willDisplayCell:forRowAtIndexPath:tableView:willDisplayHeaderView:forSection:tableView:willDisplayFooterView:forSection:tableView:didEndDisplayingCell:forRowAtIndexPath:tableView:didEndDisplayingHeaderView:forSection:tableView:didEndDisplayingFooterView:forSection:tableView:heightForRowAtIndexPath:tableView:heightForHeaderInSection:tableView:heightForFooterInSection:tableView:estimatedHeightForRowAtIndexPath:tableView:estimatedHeightForHeaderInSection:tableView:estimatedHeightForFooterInSection:tableView:viewForHeaderInSection:tableView:viewForFooterInSection:tableView:accessoryTypeForRowWithIndexPath:tableView:accessoryButtonTappedForRowWithIndexPath:tableView:shouldHighlightRowAtIndexPath:tableView:didHighlightRowAtIndexPath:tableView:didUnhighlightRowAtIndexPath:tableView:willSelectRowAtIndexPath:tableView:willDeselectRowAtIndexPath:tableView:didSelectRowAtIndexPath:tableView:didDeselectRowAtIndexPath:tableView:editingStyleForRowAtIndexPath:tableView:titleForDeleteConfirmationButtonForRowAtIndexPath:tableView:editActionsForRowAtIndexPath:tableView:leadingSwipeActionsConfigurationForRowAtIndexPath:tableView:trailingSwipeActionsConfigurationForRowAtIndexPath:tableView:shouldIndentWhileEditingRowAtIndexPath:tableView:willBeginEditingRowAtIndexPath:tableView:didEndEditingRowAtIndexPath:tableView:targetIndexPathForMoveFromRowAtIndexPath:toProposedIndexPath:tableView:indentationLevelForRowAtIndexPath:tableView:shouldShowMenuForRowAtIndexPath:tableView:canPerformAction:forRowAtIndexPath:withSender:tableView:performAction:forRowAtIndexPath:withSender:tableView:canFocusRowAtIndexPath:tableView:shouldUpdateFocusInContext:tableView:didUpdateFocusInContext:withAnimationCoordinator:indexPathForPreferredFocusedViewInTableView:tableView:selectionFollowsFocusForRowAtIndexPath:tableView:shouldSpringLoadRowAtIndexPath:withContext:tableView:shouldBeginMultipleSelectionInteractionAtIndexPath:tableView:didBeginMultipleSelectionInteractionAtIndexPath:tableViewDidEndMultipleSelectionInteraction:tableView:contextMenuConfigurationForRowAtIndexPath:point:tableView:previewForHighlightingContextMenuWithConfiguration:tableView:previewForDismissingContextMenuWithConfiguration:tableView:willPerformPreviewActionForMenuWithConfiguration:animator:tableView:willDisplayContextMenuWithConfiguration:animator:tableView:willEndContextMenuInteractionWithConfiguration:animator:setTableViewStyle:setTableView:setTopBarView:.cxx_destruct_tableViewStyle_tableView_dataSource_titleName_homeId_topBarView_siriShortcutListtopBarViewT@"TopBarView",&,N,V_topBarViewsiriShortcutListT@"NSArray",C,N,V_siriShortcutListtableViewStyleTq,N,V_tableViewStyletableViewT@"UITableView",&,N,V_tableViewdataSourceT@"NSMutableArray",&,N,V_dataSourcetitleNameT@"NSString",&,N,V_titleNamehomeIdT@"NSString",&,N,V_homeId0 (8Sirië_wccäNHDLSiriSceneListViewControllerINUIAddVoiceShortcutButtonDelegateNSObjectINUIAddVoiceShortcutViewControllerDelegateINUIEditVoiceShortcutViewControllerDelegateUITableViewDataSourceUITableViewDelegateUIScrollViewDelegateB24@0:8@16#16@0:8@16@0:8@24@0:8:16@32@0:8:16@24@40@0:8:16@24@32B16@0:8B24@0:8#16B24@0:8:16Vv16@0:8Q16@0:8^{_NSZone=}16@0:8B24@0:8@"Protocol"16@"NSString"16@0:8v32@0:8@16@24v32@0:8@"INUIAddVoiceShortcutViewController"16@"INUIAddVoiceShortcutButton"24v32@0:8@"INUIEditVoiceShortcutViewController"16@"INUIAddVoiceShortcutButton"24v40@0:8@16@24@32v24@0:8@16v40@0:8@"INUIAddVoiceShortcutViewController"16@"INVoiceShortcut"24@"NSError"32v24@0:8@"INUIAddVoiceShortcutViewController"16v40@0:8@"INUIEditVoiceShortcutViewController"16@"INVoiceShortcut"24@"NSError"32v32@0:8@"INUIEditVoiceShortcutViewController"16@"NSUUID"24v24@0:8@"INUIEditVoiceShortcutViewController"16q32@0:8@16q24@32@0:8@16@24q24@0:8@16@32@0:8@16q24B32@0:8@16@24@24@0:8@16q40@0:8@16@24q32v40@0:8@16q24@32q32@0:8@"UITableView"16q24@"UITableViewCell"32@0:8@"UITableView"16@"NSIndexPath"24q24@0:8@"UITableView"16@"NSString"32@0:8@"UITableView"16q24B32@0:8@"UITableView"16@"NSIndexPath"24@"NSArray"24@0:8@"UITableView"16q40@0:8@"UITableView"16@"NSString"24q32v40@0:8@"UITableView"16q24@"NSIndexPath"32v40@0:8@"UITableView"16@"NSIndexPath"24@"NSIndexPath"32v48@0:8@16{CGPoint=dd}24N^{CGPoint=dd}40v28@0:8@16B24v40@0:8@16@24d32v24@0:8@"UIScrollView"16v48@0:8@"UIScrollView"16{CGPoint=dd}24N^{CGPoint=dd}40v28@0:8@"UIScrollView"16B24@"UIView"24@0:8@"UIScrollView"16v32@0:8@"UIScrollView"16@"UIView"24v40@0:8@"UIScrollView"16@"UIView"24d32B24@0:8@"UIScrollView"16v40@0:8@16@24q32d32@0:8@16@24d32@0:8@16q24q32@0:8@16@24@40@0:8@16@24@32B48@0:8@16:24@32@40v48@0:8@16:24@32@40B40@0:8@16@24@32@48@0:8@16@24{CGPoint=dd}32v40@0:8@"UITableView"16@"UITableViewCell"24@"NSIndexPath"32v40@0:8@"UITableView"16@"UIView"24q32d32@0:8@"UITableView"16@"NSIndexPath"24d32@0:8@"UITableView"16q24@"UIView"32@0:8@"UITableView"16q24q32@0:8@"UITableView"16@"NSIndexPath"24v32@0:8@"UITableView"16@"NSIndexPath"24@"NSIndexPath"32@0:8@"UITableView"16@"NSIndexPath"24@"NSString"32@0:8@"UITableView"16@"NSIndexPath"24@"NSArray"32@0:8@"UITableView"16@"NSIndexPath"24@"UISwipeActionsConfiguration"32@0:8@"UITableView"16@"NSIndexPath"24@"NSIndexPath"40@0:8@"UITableView"16@"NSIndexPath"24@"NSIndexPath"32B48@0:8@"UITableView"16:24@"NSIndexPath"32@40v48@0:8@"UITableView"16:24@"NSIndexPath"32@40B32@0:8@"UITableView"16@"UITableViewFocusUpdateContext"24v40@0:8@"UITableView"16@"UITableViewFocusUpdateContext"24@"UIFocusAnimationCoordinator"32@"NSIndexPath"24@0:8@"UITableView"16B40@0:8@"UITableView"16@"NSIndexPath"24@"<UISpringLoadedInteractionContext>"32v24@0:8@"UITableView"16@"UIContextMenuConfiguration"48@0:8@"UITableView"16@"NSIndexPath"24{CGPoint=dd}32@"UITargetedPreview"32@0:8@"UITableView"16@"UIContextMenuConfiguration"24v40@0:8@"UITableView"16@"UIContextMenuConfiguration"24@"<UIContextMenuInteractionCommitAnimating>"32v40@0:8@"UITableView"16@"UIContextMenuConfiguration"24@"<UIContextMenuInteractionAnimating>"32v16@0:8q16@0:8v24@0:8q16q@"UITableView"@"NSMutableArray"@"NSString"@"TopBarView"@"NSArray"    3…((.  „@```````-cc1-triplearm64-apple-ios11.0.0-emit-obj--mrelax-relocations-disable-free-disable-llvm-verifier-discard-value-names-main-file-nameHDLSiriSceneListViewController.m-mrelocation-modelpic-pic-level2-mframe-pointer=non-leaf-fno-strict-return-fno-rounding-math-munwind-tables-target-sdk-version=15.0-fvisibility-inlines-hidden-static-local-var-target-cpuapple-a7-target-feature+fp-armv8-target-feature+neon-target-feature+crypto-target-feature+zcm-target-feature+zcz-target-feature+sha2-target-feature+aes-target-abidarwinpcs-fallow-half-arguments-and-returns-debug-info-kind=standalone-dwarf-version=4-debugger-tuning=lldb-target-linker-version711-resource-dir/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0-dependency-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/HDLSiriSceneListViewController.d-skip-unused-modulemap-deps-MTdependencies-isysroot/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-generated-files.hmap-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-project-headers.hmap-DNS_BLOCK_ASSERTIONS=1-DOBJC_OLD_DISPATCH_PROTOTYPES=0-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-own-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-all-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos/include-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-normal/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-F/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos-internal-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/local/include-internal-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include-Os-std=gnu11-fdebug-compilation-dir/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri-ferror-limit19-fmacro-backtrace-limit0-stack-protector1-mdarwin-stkchk-strong-link-fblocks-fencode-extended-block-signature-fregister-global-dtors-with-atexit-fgnuc-version=4.2.1-fmodules-fimplicit-module-maps-fmodules-cache-path=/Users/jlchen/Library/Developer/Xcode/DerivedData/ModuleCache.noindex-fmodules-prune-interval=86400-fmodules-prune-after=345600-fbuild-session-timestamp=1638169242713503253-fmodules-validate-once-per-build-session-fmodules-validate-system-headers-fobjc-runtime=ios-11.0.0-fobjc-arc-fobjc-weak-fobjc-exceptions-fexceptions-fpascal-strings-fmax-type-align=16-fdiagnostics-show-note-include-stack-vectorize-loops-vectorize-slp-serialize-diagnostic-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/HDLSiriSceneListViewController.dia-clang-vendor-feature=+nullptrToBoolConversion-clang-vendor-feature=+messageToSelfInClassMethodIdReturnType-clang-vendor-feature=+disableInferNewAvailabilityFromInit-clang-vendor-feature=+disableNeonImmediateRangeCheck-clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation-fno-odr-hash-protocols-clang-vendor-feature=+revert09abecef7bbf@(0Ÿ(DP Q D£QŸD\P\@c@L£PŸDpQpL£QŸLdPdøcø£PŸLtQt£QŸ´¼PP|c|€£PŸQ€£QŸ€”P”dcdl£PŸ€°Q°\£QŸl„P„xdl”Q”È£QŸlR”PÈàPàTcT„£PŸ„ c ¬£PŸÈìQ쬣QŸ¬¼P¼ücü£PŸ¬ÜQÜô£QŸP€c€Œ£PŸ4Q4x£QŸŒ¸P¸l
cl
´
£PŸŒÌQÌ´
£QŸ´
Ì
PÌ
Ô
£PŸÔ
à
dà
ä
P´
Ð
QÐ
œ £QŸ´
Ì
RÌ
Ð
Pœ ´ P´ è £PŸœ ° Q° è £QŸœ ´ R´ è £RŸô  P 8 e8 < Pô  Q @ £QŸô  R @ £RŸô  S T dT X R, 4 cX ` PH X PX p £PŸH \ Q\ p £QŸH \ R\ p £RŸH \ S\ p £SŸp  P @£PŸp Œ QŒ @£QŸp  R @£RŸp „ S„ ¨ c¨ ¬ R¬ ´ P@XPXpc@hQh´£QŸ@XRXxdx€P@dSdhPŒ¬d PdlPÀàPàè£PŸè´dÀäQäÀ£QŸÀäRäè£RŸèôeôPÀàSàäP,4PltPÀäPäì£PŸìødøüPÀèQèD£QŸÀäRäèPì0Ÿe0Ÿ4e08PDdPdx£PŸxteDhQh|£QŸDdRdhPD\S\pdptPœ¨fðf|”P”@f@DP|¤Q¤d£QŸ| R ¤P°¸PØXd<\edœPœ¤£PŸ¤¼d¼ÀPd Q 4£QŸdœRœ P¤0Ÿ¤0Ÿ¤àjä$j04j<DPdàj4lPlt£PŸtŒdŒP4pQp$£QŸ4lRlpPtÐ0Ÿð|0ŸÀÌ0ŸÔ e $e¸jÀÔj<¸kÀÔk$8P8¸£PŸ$@Q@¸£QŸ$8R8DP¸ÐPаc°Ø£PŸ¸ØQØØ£QŸüPØðPðø£PŸøDcØðQðôPØôRô|£RŸèðp# øDƒ# èðp#(øDƒ#(|°P°Ücœ°p# °Üƒ# œ°p#(°Üƒ#(œ°p#0°Üƒ#0(xi,@P@\£PŸ,<Q<XcX\£QŸ\lPlˆcˆŒ£PŸŒ P ´£PŸŒœQœ°c°´£QŸ´ÄPÄØcØÜ£PŸÜðPðø£PŸø\dÜôQô`£QŸÜðRðôPÜôSô`£SŸ`tPt|£PŸ|àd`xQxä£QŸ`tRtxP`xSxä£SŸäøPøcPäQD£QŸäRPäSD£SŸäTD£TŸDXPXpcpxPDhQh¤£QŸDdRdhP¤¸P¸ÐcÐØP¤ÈQÈ £QŸ¤ÄRÄÈP  P 0 c0 8 P ( Q( d £QŸ $ R$ ( P ( S( d £SŸ ( T( d £TŸd x Px  c ˜ Pd ˆ Qˆ Ä £QŸd „ R„ ˆ Pd ˆ Sˆ Ä £SŸÄ Ð PРԠ£PŸä ô Pô ø £PŸä è Qè ø £QŸä è Rè ø Qø !P! !£PŸø ü Qü  !£QŸø ü Rü  !Q !!P!!£PŸ!,!P,!0!£PŸ! !Q !0!£QŸ! !R !0!Q0!<!P<!@!£PŸ@!P!PP!T!£PŸ@!D!QD!T!£QŸ@!D!RD!T!QT!d!Pd!h!£PŸT!X!QX!h!£QŸT!X!RX!h!Q„!”!P”!"c""£PŸ„!¤!Q¤!"£QŸ%‚|ïáå 4I?: ; &II : ; æ I8 €„èI: ; ë I: ; 8 2     I: ;
< I: ; $> 4I: ;I : ; ( (I : ;ì : ; æ €„èI: ; ë €„èI: ;ë €„èI: ; éë €„èI: ;뀄èI: ; éë  I8 €„èI: ;éë : ;  I: ; 8 &I !I7 !$ > "ä # Iˆ8 $I'%I&ä ''( : ;æ )|€|*: ; +.@dz: ; 'Iá,I4-.@dz: ; 'á.4: ; I/: ; I0 14: ; I2.ç@dz: ; 'Iá3I44: ; I54: ;I6.@dz: ;'Iá7: ;I8 U9.@dz: ;'á:.@dzn: ;'á;: ;I4<4: ;I4=H}>I~?.: ; '<?á@'A.@z4?áBI4C.ç@dz: ; 'I4áD.ç@dz: ; '4áEIFIG.@dz: ; '4áH : ;I I: ;8 2 J I: ;8 bS/§"iH     #MRˆco¯œi‘5š†8    ’žK—
¤ §¶ Á ÓÃCÿÿÿÿÿÿÿÿÈ ÓÞ èÈñ0œM]u“±Ðí     @%€B€\€ w€@œ€€¾€€Ü€€ù€€€€ 7ÿT€€<s€€€x•€€€€²ÿÿÿÿÈÊ    ßû1ÈN
,g…¢¿áûC^„œ~ȹ
%Ðô=œ_ -jy‡–§·ÈÅ Öî 'HÈd y’«ÈÅ  Úú    È-    P    w    Ȥ             ä    
È:
#e
Â
ê
È . P p Ȑ ­ Ó Èü  @ f ȑ z¬ Ò õ  B Èm  &Œ ¶ Èà     &þ  Bdȉ    2¥ÅçÈ        8&CožÀÈå    -ÿ œ@ `…±Ö+È[}£ÈÌÜö&B^È|‰œ¯Ìâ÷ 2ÈJ%Wj~‘È©¹ÍãøÈ(/=`œš®ÆáÿÿÈ#Fp—ÈÁÒëÈ3Tr’°ÒñÈ'€€?€€R€€g€€ ~€€À“€€€È«3½Öšñ&8K œ[#h–­ÈÄ á&ÈKh‰±œÖ Vì<Xvȏ¡¾Þÿ/D\r‰    ¢
¼ Ø œõ@l“½æ @ÈH+j’·ßÈ2)S{¤Ì÷œ#;2Gax¥€€ü¿€€€øÈÖ&÷ E k ’ ¸ Èà ú !9!W!Èv!5™!Å!ð!"ÈP"t"¡"Ì"ö"œ"#0#K#d# ȁ# $”#©#À#×#ï# $+$J$Èj$ 4~$–$ȱ$ @Æ$ä$%M
*%"R%n%ˆ% ¦%@Å%€ä%€&€ #&€€E&€€g&€€€€&ž&€€€€Â&€€€€ê&€€€€ '€€€€1'€€€€Q'€€€€u'€€€€”'€€€€    µ'€€€€
Ò'€€€€ šI%!Èð'#(A(m(˜(ÈÃ($Ø(ø()*)A)])Èu) ,—)Ä)ñ)È* 7*[*{*ț*%²*Ð*ò*È+ 2!+;+N+È_+ ;w+š+¸+ÈÔ+ Hé+    ,",È?, BR,p,Š,È¡, NÁ,ì,-Å :-'!P-_-o- Ð D-& L-Å €-'‹-œ-­- ¾-Ä-@[ à =HCP\hTP·1[LcPÂ1[HLUä8[HAYM[HKYM[HRY·1[bYÂ1[mYä8[yYM[„YM[ŒY˜Y\ã-
cŸW0\
‡Aj0½
qH4k5½
tAx5þ
zƒ5C5M
|a˜5|
}Aá9¶
~Aù9M
©hÿ9Ë
²A:Ë
µA(:Ë
¸A@:Ë
»AY:þ
ÂLt:þ
ÅLŸ:þ
ÈLÕ4M
Ëh¼:þ
ÔË:CÜ:þ
Õë:Cü:þ
×;C8;þ
ØW;Cx;Ð
îL;Û
õL¤;þ
øLÑ;þ
ûAô;þ
ýL
<æ
ÿL!<þ
LB<þ
Lg<³
L|<ñ
A”<þ
A«<ü
AÍ<
.Aé<
5Lô-9o.ù;A.þ=A1.þ@AI.þCAZ.jA70²mAŸ     &.(N +.f.H)ot.È)+‚.þ)2š.´.þ)6     Â.œ)=     Ï.\)D(ê.þ)Sò.þ)Tú.þ)W/ /þ)X//þ)|6/þ)}N/M)‚!]/M)ƒ!l/M)!~/M)Ž!/~)ª/~)µ/\)Ã/ )ú/~)0~)     0ý )! 0ý )"aÜ.*oä.œ*    Š›/Kž/š’ «Ú/+ ã/ …[Âo0‘Ÿv0†“A@0þ˜˜0N±0È™Lµ0fšA²4þœAÃ4þË4CÕ4M hê4F¤L5Q§h,5f©LE5q²Ak»0.oÃ0Hˆ      1t     1 ’     1t™     +1 ž     81ߣ     1H°     –1þµ1    ¦1þº²1    À1þÂÐ1    â1fÓí1\à(÷1ßÿ         2f
2þ     2~3%2H<     22³E(Y2 O     g2He     v2¾k(›2Ét(Ä2Éu(Ø2ö {     ï2þö2    ÿ2þ›     3þ¤     .3ÔÀ     C3þÉ     Z3ßÏ }3 Õ     Š3ôÚ     ˜3ÿà(·3 î     Ã3ßó Ï3ö ù     ×3þ     ê3~ü3\(4\(4þ0     &4 6     94ß= E4ö B     S4³F     `4 J     m4
T ‰4$¶(ž4Mä(£4~ê¬4$ö( SÊ0-2Ê0 -.Ñ0t-/ó0³-0 Ø0-Ø0-à0 -ñ0 -    ¬â0,J ê0 ¾ø0- ø0-ÿ0 -1 - êB1.B1€.P1 .T1 .X1 .\1 .`1 . d1 .(h1 .0l1 .8p1 .@t1 .Hx1 .P|1 .X€1 .`„1 .hˆ1 .pŒ1 .x MB2 M…2 M®2 uñ êj3/ ï
u3 ¡[# M¤3 x4' 
‚4)‘40oä.œ0 Èý41!V52o ˆ‘ z ³m &¢53o«5|3E¶5\3!!AÁ5\3"!AÏ5þ3&Ö5ß5ô3-!U8ô3.!a8ô3/!o8ô32!„8ô33!˜8ô34!©8ô35!»8ô37!Î8M39!Ù8M3:!æ8M3;!õ8M3>! 9M3?! 9M3@!29M3A!E9M3^!V9$3_!e9$3`!}9†3cŒ9\3f!£9\3h!±9M3i!É9\3w!ùé5(5oï5R5S!6M5U!6M5V!-6ô5W!56ô5X!A6M5\!H6M5]!Z6M5a!_6‡5b!—7M5c!œ7M5d!¥7M5e!ª7M5f!³7M5g!Ã7M5h!É7M5i!Ö7þ5mç7‰5u8þ5w88ô5}!"8ô5’!.8M598ô5B8ý 5K8ý 5W64Fo¯œ4H    64N†Œd66)lƒ6“6<6š6=­6¡6>¾6¨6?à6Ð 6@é6š6Aú6Ó6B7§6C7¯6D27«6EH7ö 6FS7¬6G_7þ6Hi7È6Iv7œ6J‹7M6L!m66 ou6‰6Ž“ ~6 Ÿ6 ¸6 Ñ6 $7»ì97oà ¹
% ÅN
, 9_ - jÅ  •d  ´Å  =Z Â=AZH¦L(.ZHF%=1û>ºšHÝ? ›Lë?³œLý? ŸL2@  LB@ ¡LR@þ¤Lu@þ¥L‘@þ¦Lª@þ©LÄ@] Dh|Iï*MhºIþPLÜIª"RH4æIa+SAñIþVùIGJþYJGJl+[LJþ^.JNJJw+fh˜K—-ihðKþnLLMˆALª"‰A/Lª"ŠAGL{%‹ATL{%ŒAkLþ)ALL*ŽA¦L(.‘AN•/’A5P(.”A.=LÂ8=þT@=NJ=þUS=N^=þVj=Nx=óWL‘=þXL¬=þYAÐ=    [AÖ=þ\ß=Cê=þ]ö=C>tA>6uA&>A„Ae>þ†ƒ>N£>þˆL¼>MŽhÄ>zA ÇH+ ì2 #;>8oä.œ8 ùMF=> o£4~#AV>o'A ¨#×>9o£4~9H8=þ9@=Nì>M9h¿?:o?\:A@?M:5A?M:6A'? :7A1? :8A:? :9AD? ::AN? :;AV? :<Aa? :=Ai?V:FA[x?"Ao‰?M"GA'? "HA˜?§"IA¿? "JAÎ?$"NA ²Ÿ?;Ÿ?0;±? ;³? ;µ? ;·? ;¹? ; ¼? ;(     *%" žÌ $ @ @  @   @  %@  ,@  b Ò@Aoè@!TH¥G+*WL±G6*ZL¼GA*]LÊGª"`HÞGª"cHoC{%eHòGð$fhHþ)gh-HþjLDHð$khù9MmhfHL*nhHn*ohØHMqháHL*rhôHn*shI["vL$IŸ"zL3I |L@I ~LMIä*€L\Iþ‚L¢!ó@<o A½<3H}3 <7LA["<:LJAŸ"<=LZ3ª"<BHÇBð$<DhSCf%<IhoC{%<LHXG *<NLiGª"<SHuGð$<UhŒG <ZL˜G <^L f")A $)A  "@  #a?  #%@  #AA  # Ö V¯"uA=o}Aª"=2A@ˆAª"=3A@–Aª"=4A@¥Aª"=5A@°Aª"=6A@ºAª"=7A@ÃAª"=8A@ÎAª"=9A@ØAª"=:A@âAª"=;A@îAª"=<A@ûAª"==A@Bª"=>A@Bª"=?A@Bª"=@A@u3ß=SA)Bš#=VAŸ#)B(?o1B³$?7KB¾$?:VB ?=\BÈ$?@„B ?CˆB ?DŽB ?E“BM?K}Aš#?NE¥Aš#?OE°Aš#?PEºAš#?QEÃAš#?REÎAš#?SEØAš#?TEîAš#?UEâAš#?VEBš#?WE¨Bý ?®BÝ$? §DB>.Ã$  Ó$gB@ Ø$
wBý  é$!³B û$âBA%" Cý CÐ CÐ C6%#%CF%;%$ª"%ª"K%&2CEC§NC§k%`CBo€%uC Joó0³ xA}CŠ& yACŸ& |AxD ( ~A‰D  ADþ ›DC©D\ ŠA°D( ‹AÈD  ™AÒD"( šAßD  ¢AóD-( ¦AE8( ªApE¨( ®a›FÇ) ¯A³Fþ µAÖF  ÀAïFþ ÁAÄ@Ü) ÑaGþ) ùa •&…CC š&
}C¤&CDo˜CŸ&DæE£CŸ&DçE®CŸ&DèE¸CŸ&DéEÁCŸ&DêEÌCŸ&DëEÖCŸ&DìEàCŸ&DíEíCŸ&DîEùCŸ&DïEDHDA D$D”D¤'D—/DôD›\BÈ$DŸ3Dà'D¤A}CŠ&D¨A¨Bý D"©'!DEoDHE8®BM
E¨Bý E    ì'?DHK ÷'PDG’ (aDF@(
mD     # $ ¬¹DI W    j$ 4 p    ±$ @=(E#(‰D #Lï2þ#LLEþ#LaE(#!L3EJoÃ0HJA X
ð'#­(€EKo’EY)K"A¥EK%A¸Ed)K(AÈE K+AÕEo)K.AéEo)K1AûEz)K4AF…)K7aCF)K:APF›)K=AfF¦)K@AyF±)KCAŠF¼)KJA }
Ã($ ®
u) , Í
*  ì
›*% M-FL + 2 * _+ ; I Ô+ H h ?, B ‡ ¡, NÌ)¦FMoá)ûFNopE¨(NA*$GO/á)?Gþ)O2A@ 5 [Ö& Œà  ±v!5Q*vHPo‰HMP! y*¯H~*" Cý CÐ CÐ C´*#%CÄ*¹*$$%$É*&2CEC§NC§ ÖP" ú*—I.ÿ*" Cý CÐ CÐ C5+#%CA+:+'%AF+&2CEC§NC§ Ï| J% ‚+_J-‡+" Cý CÐ CÐ C½+#%CA+Â+$×+%A%ø+%‚-Ü+|JQo‹J\Qhý+—JQ:o§J,Q<a,¯JR-oÁJ^,RGAj0½RIAéJ—,RKaó0³RQAc,ÈJRoØJ½R&AâJtR'A81§R(Aœ,ôJToKÓ,T'hm4Ó,T+hZ3ª"T0h0Ø,KSo‚4
S L!KþS<'KÃ0HS=A/KtS>A<K SCLFKl-SDLSKw-SELaK SFLlK SGLuKþSHL ¦ :-'! × €-'‡-‰KQjoœ-KÜ-²K.!AÎK.$AÖK\'AßK\*A¤KUoù9MU AØHMU#hoC{%U&A M½K û"#-.±LV¹LMVhû>ºVH4¾Lª"VH494ª"VHS4³VLÈLt/VLÝ? VLÖLL*V håLª"V$H^=þV%j=N0þV'˜0N8=þV(@=NúLÈV.LMþV3L"M/V4L5M V5LHMþV:LmMŠ/V?LM VJL—MþVNL¹MþVQLÙM VULéMþVXL 7© b(/ šš/NWÂoC{%WHN{%WH/Nþ)WH0þW˜0N^=þWj=NLN\W h\N\W!hwN(W#L‰NÈW$LÜIª"W(H4žNþW,¨NC´NþW/LÔNx0W3P½W9APþW@L}0æNXoôNHXAO½X$H²KMX)h O41X.AoO41X/A~O41X0A‰O41X1A•O1X2A³O1X3AÀO¢1X4AÞO¢1X5AëO41X6AùO1X7A91OY@I1-OY"ož4MY5!<O~Y6AOþY7TO\Y8’1ŸOYHI1§1ÌOYQI1 ÚñÇ1(mP+z4¬4·10ALU~2H£4~3HWU~5HjUþ6}UN’U~8HŸU~9H¬U ;L¶U <LÊU =LÞU >LñU ?LV @L+V DL;V GLSV ILbV8JLzV½LH&>ANA‰VÈRAšV\aA§V\bAÀVþAÖVþ‹ÞVNèVþŽLøVþLWþL-Wþ‘LRW‹8•A‡W\–A¡WÈžLÄWª"ŸHÖWª" HòWª"¡HXÙ8£L%Xª"¤H4Xf%¥hDXþ§LiXþ¨L†X½ªH–X½«H¦Xþ¼LÄXþÀLÚXþÅLæXþÊLÿXþÐLYþÓA$YþÖAyP3†Pt5L”P³6L P 7L­P <AÂPª6ELáPþJL Qx0OAQx0TA£4~VH/QþWFQN_QþXLgQþYL|QþZL“Qþ[¡QN±Qþ\¿QNÏQþ^LìQþ_L Rµ6`LR bL8R cLXR dLnRÀ6fLœRË6gLÖ=þvß=C­Rþw¶RCÁRþxÎRCÝRþzLòRþ{L
S ŽLS L,S ‘L6Sþ•LBSþ—JSCTSþ˜aSCpSþœL}SÖ6¢A¥T8¤AÞT08¦AU58¨LU@8ªH :
# 1   R* P Û6’S7`Tœ!LwTœ"LŽT÷7)L©S#oÐ=Ö70A£4~2H8=þ4@=Nj0½7A½Sþ9LÒSþ:LåSþ;LøS\=h
T\>hTþCL7TœMAž4MPhGTá7TAUTì7UA æ  \«3 ÇÁ8¼T\7‰D \LÕT \A7 iü E8#U]4Uþ]?UCÜIª"]H4fHL*]H    Ó-    8jW ^
o¯œ^ vWÔ8^ Wœ^K8ý ^œ í¤         é82Y*a)ªY°YíY*[ù8)~Z°Y†Z*     9)[°Y#[*
!9)¸[°YÃ[*_59+Dmf9Y\ ƒI,#rƒI,7(r»O-Dmš9…\',p#rÐO,¼(r»O-L¸mÎ9¿\/,õ#rÐO,A(r»O.z?r0M-|m:ý\C,#rÐO,é(r»O+€ìmI:1]K,"#rÐO,n(r»O-l\m}:^]S,§#rÐO,Ý(r»O/ù9SM-ÈämÀ:°]Y,L#rÐO,Á(r»O+¬Tmø:à]cä8,ú#rÐO,F(r»O+Œm0; ^kÂ1,#rÐO,Ë(r»O-Œ(md;9^{,#rÐO,P(r»O-´
èm˜;w^ƒ,‰#rÐO,è(r»O/!LrƒÕO0ü
Œ1€€€€€€¨@¶U† +œ Lm<Ã^‘È,W#rÐO,(r»O/ÉcP‘Â12è oH<_• 3P#rÐO3Q(r»O4RcP•Â14SWr•È+ô Lm–<‰_™½,#rÐO,K(r»O/„cP™Â1/½Wr™È.j0šÚO.)Šr›P2@ o
=ï_£ 3P#rÐO3Q(r»O4RcP£Â14SWr£È+H (mX=Y`§½,L#rÐO,…(r»O/¾cP§Â1/÷Wr§È+p Ðm®=¿`«È,0    #rÐO,i    (r»O/¢    cP«Â1/Û    Wr«È.$
Šr¬P+@tm>#a³ˆI,G
#rÐO,}
(r»O/¶
cP³Â1/ÿ
²r³‹8.5 ¼rµOP.X Šrº×L04\.{ –o½üN2´ o¤>‡aÅ 3P#rÐO3Q(r»O4RcPÅÂ14S²rŋ8-Àmî>ïaÉ,ž #rÐO,ê (r»O/# cPÉÂ1/‚ ²rɋ80ˆ.¸ ŠrÍ×L0<\.Û sÏ_O+À„m~?WbÙ×L,þ #rÐO,] (r»O/– ²rً8.Ì ŠrÚ×L.*sÛP-D8mß?«bå,M#rÐO,™(r»O/Òså_O/Šrå×L0|,.QsòøP0¨\.tséQ+|èmo@    cý(M,—#rÐO,à(r»O/`sý×L.Où9þM.r–oÿüN5•ks(M6dÐmå@IcüN,¸#rÐO,(r»O7P[oM5†tsüN805÷s<Q85–oüN64ðmjA‹c_O,=#rÐO,œ(r»O7Õ[oM5 s_O85}s <Q8`5³–o!üN6$”mïAßc-þ,é#rÐO,"(r»O7[s-_O9¸ m4B'd1,‘#rÐO,Ý(r»O0èœ5‘s3ä8:ؤm»Badad4;9–s4AQ7…Át4\7»Ðt4ÃQ<ô#rAáR52‘s3ä8=ðBT>Q? d`×%C%Co C" Cý CÐ CÐ CBC#%CHCGC@MC&2CEC§NC§:|°m¦C¯d¯d6;p–s6æR5¦Át4\<ä#r4áR5"‘s3ä80(X5`s7<QA,0mðdBƒý B¼ý A\0meBý AŒ(m5eBTý Bý A´(mSeBÙý 9Ü„m…DteG,%#rÐO,q(r»O7ªètGQ7àuG¥P9`„mÚDfO,#rÐO,e(r»O7žuOøP7ÔuO¥P9ä`m/E¾fX, #rÐO,V(r»O7>uXQ7ÅsX_O7þÐtXÃQ9D`m”Ebg^,7#rÐO,€(r»O7¹>u^Q9¤`mÙEÖgc,ï#rÐO,8(r»O7q>ucøP9 `mFLhh,§#rÐO,ð(r»O7)>uhøP7_sh_O7˜ÐthÃQ9d `mƒFêhm,Ñ#rÐO,(r»O7S>umøP7‰Ium™OCÄ oÛF˜i[·1,Â#rÐO3Q(r»ODÔ o GÉi[3P#rÐO3Q(r»OERTP·1Dä oHGj[,û#rÐO,4 (r»OFm cPÂ1Dø o‰GOj[,£ #rÐO,Ü (r»OF!LUä8C !oÎGj[M,K!#rÐO3Q(r»OD!oH»j[,„!#rÐO,½!(r»OFö!AYMC0!oEHùj[M,,"#rÐO3Q(r»OD@!owH"k[,e"#rÐO,ž"(r»OF×"KYMDT!o¸HZk, ##rÐO,F#(r»OF#=Ch!oýHšk\3P#rÐO3Q(r»ODx! o-IÍk3P#rÐO3Q(r»OERCP\G„!mhIl,µ##rÐO,$(r»Oþ IWl    QÂgl9K    ZA|I4L    fhRm~    nhgmþ    qLm½    tAN•/    wAœm(.    xA¦m(.    yA¶m!    |hÎmþ    LzV½    ‚Húm½    „Hn½    †H1nM    ˆaAn«L    ‹LJ=þ    ŒS=N^=þ    j=NPn¶L    ‘A]nþ    ’Lqnþ    “LŠnÁL    •L˜n½    –H¦nÁL    —L»n½    ˜HÐnÈ    šLán     ›LSV     œLÖVþ    žÞVNònþ    ¡A oÌL    £Loþ    ³L>Kzl"¬KÖVþ$ÞVNÐlþ%ÙlNälþ&ëlNôlþ'ÿlN mL)Lm)L*L“laopE¨(aH¬lþaµlN^=þaj=NJ=þaS=NÃ4þaË4NÀlþa ÇlN ÆÄ åK ?L(m    NDL" Cý CÐ CÐ CzL#%C‹LL'%ˆI%9KL&2CEC§NC§ Ìà     & ñ‰    2         8 ;å    -ÜL;o_oOoM_h[oM_heoM_hqoM_h€oM_h-M‹odo–oWMdapÍMdA\Mobo²KMba¦oMba¸oMbhÒo­Mb Lço¸Mb#h õ½Møoc oÒMpeo-pMe !ù9Me$(:p$e((Cpe/(Xpþe3     bpôe7(mpôe;(ypÏNe>(®peA(·pþeE     £4~eIÓpMeN(ëpþe`þp    qþec%q    9qþefSq    oqþeh…q    qñNej(ÔNˆpIop(I M²qeOÕqf\MOoMfh[oMfhKYMfheoMfhqoMfh€oMfhdOçqho²K™OhA    rMhar(Mh!ažO÷qgoþqMg#! ÆO-rËO
1rƒIz4ßO_ri ¦L(.i Htr(.iHr½iHPr_où9M_h¥rM_h­r\_hTPÁrjI¦L(.jHr½jHÖr¥PjHŠr×LjHKYMjHªPår"F¬4íP(A£4~,Hr(M-H}3 3L T@ ýPskà £4~kHQ=slà £4~lH_OFQH¨s04ICý 4ICÐ 4ICÐ 4 IC²Q4I%C™R4I#rÐO4 I‘sä84(·Q'%\%ÃQÈQºs(m,oÂsŽRm;!×sÈm<:p$m@!ÜsMmJ!ñsMmN!tMmR!$t\mV!=t~mZOtMm^!Zt\mb!K8ý m.ktÈm/qtMm0yt$m1 MÉsm    žRHƒt 4JEC§4JNC§4J¦tÜR4J²tÜR4ý ƒIëRHÖt86ICý 6ICÐ 6ICÐ 6 ICBC6I%C™R6IÁt\6 I#rÐO6(I‘sä860<¤¬à°Ä<ð|„Ì€”àApple clang version 13.0.0 (clang-1300.0.29.3)/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri/HDLSceneSiri/HDLSiriSceneListViewController.m/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdkiPhoneOS15.0.sdk/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiriHDLSiriSceneListCellIdentifierNSStringNSObjectisaClassobjc_classlengthNSUIntegerlong unsigned intNSNotFoundNSIntegerlong intUITableViewStyleUITableViewStylePlainUITableViewStyleGroupedUITableViewStyleInsetGroupedUIControlEventsUIControlEventTouchDownUIControlEventTouchDownRepeatUIControlEventTouchDragInsideUIControlEventTouchDragOutsideUIControlEventTouchDragEnterUIControlEventTouchDragExitUIControlEventTouchUpInsideUIControlEventTouchUpOutsideUIControlEventTouchCancelUIControlEventValueChangedUIControlEventPrimaryActionTriggeredUIControlEventMenuActionTriggeredUIControlEventEditingDidBeginUIControlEventEditingChangedUIControlEventEditingDidEndUIControlEventEditingDidEndOnExitUIControlEventAllTouchEventsUIControlEventAllEditingEventsUIControlEventApplicationReservedUIControlEventSystemReservedUIControlEventAllEventsUITableViewCellStyleUITableViewCellStyleDefaultUITableViewCellStyleValue1UITableViewCellStyleValue2UITableViewCellStyleSubtitleUIModalPresentationStyleUIModalPresentationFullScreenUIModalPresentationPageSheetUIModalPresentationFormSheetUIModalPresentationCurrentContextUIModalPresentationCustomUIModalPresentationOverFullScreenUIModalPresentationOverCurrentContextUIModalPresentationPopoverUIModalPresentationBlurOverFullScreenUIModalPresentationNoneUIModalPresentationAutomaticUIModalTransitionStyleUIModalTransitionStyleCoverVerticalUIModalTransitionStyleFlipHorizontalUIModalTransitionStyleCrossDissolveUIModalTransitionStylePartialCurlUIRectEdgeUIRectEdgeNoneUIRectEdgeTopUIRectEdgeLeftUIRectEdgeBottomUIRectEdgeRightUIRectEdgeAllUIStatusBarStyleUIStatusBarStyleDefaultUIStatusBarStyleLightContentUIStatusBarStyleDarkContentUIStatusBarStyleBlackTranslucentUIStatusBarStyleBlackOpaqueUIStatusBarAnimationUIStatusBarAnimationNoneUIStatusBarAnimationFadeUIStatusBarAnimationSlideUIUserInterfaceStyleUIUserInterfaceStyleUnspecifiedUIUserInterfaceStyleLightUIUserInterfaceStyleDarkUITableViewSeparatorInsetReferenceUITableViewSeparatorInsetFromCellEdgesUITableViewSeparatorInsetFromAutomaticInsetsUITableViewCellSeparatorStyleUITableViewCellSeparatorStyleNoneUITableViewCellSeparatorStyleSingleLineUITableViewCellSeparatorStyleSingleLineEtchedUIScrollViewContentInsetAdjustmentBehaviorUIScrollViewContentInsetAdjustmentAutomaticUIScrollViewContentInsetAdjustmentScrollableAxesUIScrollViewContentInsetAdjustmentNeverUIScrollViewContentInsetAdjustmentAlwaysUIScrollViewIndicatorStyleUIScrollViewIndicatorStyleDefaultUIScrollViewIndicatorStyleBlackUIScrollViewIndicatorStyleWhiteUIScrollViewIndexDisplayModeUIScrollViewIndexDisplayModeAutomaticUIScrollViewIndexDisplayModeAlwaysHiddenUIScrollViewKeyboardDismissModeUIScrollViewKeyboardDismissModeNoneUIScrollViewKeyboardDismissModeOnDragUIScrollViewKeyboardDismissModeInteractiveUISemanticContentAttributeUISemanticContentAttributeUnspecifiedUISemanticContentAttributePlaybackUISemanticContentAttributeSpatialUISemanticContentAttributeForceLeftToRightUISemanticContentAttributeForceRightToLeftUIUserInterfaceLayoutDirectionUIUserInterfaceLayoutDirectionLeftToRightUIUserInterfaceLayoutDirectionRightToLeftUITableViewCellSelectionStyleUITableViewCellSelectionStyleNoneUITableViewCellSelectionStyleBlueUITableViewCellSelectionStyleGrayUITableViewCellSelectionStyleDefaultUITableViewCellEditingStyleUITableViewCellEditingStyleNoneUITableViewCellEditingStyleDeleteUITableViewCellEditingStyleInsertUITableViewCellAccessoryTypeUITableViewCellAccessoryNoneUITableViewCellAccessoryDisclosureIndicatorUITableViewCellAccessoryDetailDisclosureButtonUITableViewCellAccessoryCheckmarkUITableViewCellAccessoryDetailButtonUITableViewCellFocusStyleUITableViewCellFocusStyleDefaultUITableViewCellFocusStyleCustomINUIAddVoiceShortcutButtonStyleINUIAddVoiceShortcutButtonStyleWhiteINUIAddVoiceShortcutButtonStyleWhiteOutlineINUIAddVoiceShortcutButtonStyleBlackINUIAddVoiceShortcutButtonStyleBlackOutlineINUIAddVoiceShortcutButtonStyleAutomaticINUIAddVoiceShortcutButtonStyleAutomaticOutlineUIEditingInteractionConfigurationUIEditingInteractionConfigurationNoneUIEditingInteractionConfigurationDefaultNSLineBreakModeNSLineBreakByWordWrappingNSLineBreakByCharWrappingNSLineBreakByClippingNSLineBreakByTruncatingHeadNSLineBreakByTruncatingTailNSLineBreakByTruncatingMiddleUIButtonTypeUIButtonTypeCustomUIButtonTypeSystemUIButtonTypeDetailDisclosureUIButtonTypeInfoLightUIButtonTypeInfoDarkUIButtonTypeContactAddUIButtonTypePlainUIButtonTypeCloseUIButtonTypeRoundedRectUIButtonRoleUIButtonRoleNormalUIButtonRolePrimaryUIButtonRoleCancelUIButtonRoleDestructiveNSTextAlignmentNSTextAlignmentLeftNSTextAlignmentCenterNSTextAlignmentRightNSTextAlignmentJustifiedNSTextAlignmentNaturalUIBaselineAdjustmentUIBaselineAdjustmentAlignBaselinesUIBaselineAdjustmentAlignCentersUIBaselineAdjustmentNoneNSLineBreakStrategyNSLineBreakStrategyNoneNSLineBreakStrategyPushOutNSLineBreakStrategyHangulWordPriorityNSLineBreakStrategyStandardUIContextMenuInteractionAppearanceUIContextMenuInteractionAppearanceUnknownUIContextMenuInteractionAppearanceRichUIContextMenuInteractionAppearanceCompactUIScrollTypeMaskUIScrollTypeMaskDiscreteUIScrollTypeMaskContinuousUIScrollTypeMaskAllUIGestureRecognizerStateUIGestureRecognizerStatePossibleUIGestureRecognizerStateBeganUIGestureRecognizerStateChangedUIGestureRecognizerStateEndedUIGestureRecognizerStateCancelledUIGestureRecognizerStateFailedUIGestureRecognizerStateRecognizedUIKeyModifierFlagsUIKeyModifierAlphaShiftUIKeyModifierShiftUIKeyModifierControlUIKeyModifierAlternateUIKeyModifierCommandUIKeyModifierNumericPadUIEventButtonMaskUIEventButtonMaskPrimaryUIEventButtonMaskSecondaryCAEdgeAntialiasingMaskunsigned intkCALayerLeftEdgekCALayerRightEdgekCALayerBottomEdgekCALayerTopEdgeCACornerMaskkCALayerMinXMinYCornerkCALayerMaxXMinYCornerkCALayerMinXMaxYCornerkCALayerMaxXMaxYCornerUICellConfigurationDragStateUICellConfigurationDragStateNoneUICellConfigurationDragStateLiftingUICellConfigurationDragStateDraggingUICellConfigurationDropStateUICellConfigurationDropStateNoneUICellConfigurationDropStateNotTargetedUICellConfigurationDropStateTargetedNSDirectionalRectEdgeNSDirectionalRectEdgeNoneNSDirectionalRectEdgeTopNSDirectionalRectEdgeLeadingNSDirectionalRectEdgeBottomNSDirectionalRectEdgeTrailingNSDirectionalRectEdgeAllUIViewContentModeUIViewContentModeScaleToFillUIViewContentModeScaleAspectFitUIViewContentModeScaleAspectFillUIViewContentModeRedrawUIViewContentModeCenterUIViewContentModeTopUIViewContentModeBottomUIViewContentModeLeftUIViewContentModeRightUIViewContentModeTopLeftUIViewContentModeTopRightUIViewContentModeBottomLeftUIViewContentModeBottomRightINShortcutAvailabilityOptionsINShortcutAvailabilityOptionSleepMindfulnessINShortcutAvailabilityOptionSleepJournalingINShortcutAvailabilityOptionSleepMusicINShortcutAvailabilityOptionSleepPodcastsINShortcutAvailabilityOptionSleepReadingINShortcutAvailabilityOptionSleepWrapUpYourDayINShortcutAvailabilityOptionSleepYogaAndStretchingUIControlContentVerticalAlignmentUIControlContentVerticalAlignmentCenterUIControlContentVerticalAlignmentTopUIControlContentVerticalAlignmentBottomUIControlContentVerticalAlignmentFillUIControlContentHorizontalAlignmentUIControlContentHorizontalAlignmentCenterUIControlContentHorizontalAlignmentLeftUIControlContentHorizontalAlignmentRightUIControlContentHorizontalAlignmentFillUIControlContentHorizontalAlignmentLeadingUIControlContentHorizontalAlignmentTrailingUIControlStateUIControlStateNormalUIControlStateHighlightedUIControlStateDisabledUIControlStateSelectedUIControlStateFocusedUIControlStateApplicationUIControlStateReservedUIButtonConfigurationCornerStyleUIButtonConfigurationCornerStyleFixedUIButtonConfigurationCornerStyleDynamicUIButtonConfigurationCornerStyleSmallUIButtonConfigurationCornerStyleMediumUIButtonConfigurationCornerStyleLargeUIButtonConfigurationCornerStyleCapsuleUIButtonConfigurationSizeUIButtonConfigurationSizeMediumUIButtonConfigurationSizeSmallUIButtonConfigurationSizeMiniUIButtonConfigurationSizeLargeUIButtonConfigurationMacIdiomStyleUIButtonConfigurationMacIdiomStyleAutomaticUIButtonConfigurationMacIdiomStyleBorderedUIButtonConfigurationMacIdiomStyleBorderlessUIButtonConfigurationMacIdiomStyleBorderlessTintedUIButtonConfigurationTitleAlignmentUIButtonConfigurationTitleAlignmentAutomaticUIButtonConfigurationTitleAlignmentLeadingUIButtonConfigurationTitleAlignmentCenterUIButtonConfigurationTitleAlignmentTrailingUIMenuOptionsUIMenuOptionsDisplayInlineUIMenuOptionsDestructiveUIMenuOptionsSingleSelectionUIImageOrientationUIImageOrientationUpUIImageOrientationDownUIImageOrientationLeftUIImageOrientationRightUIImageOrientationUpMirroredUIImageOrientationDownMirroredUIImageOrientationLeftMirroredUIImageOrientationRightMirroredUIImageResizingModeUIImageResizingModeTileUIImageResizingModeStretchUIImageRenderingModeUIImageRenderingModeAutomaticUIImageRenderingModeAlwaysOriginalUIImageRenderingModeAlwaysTemplateUIFontDescriptorSymbolicTraitsuint32_tUIFontDescriptorTraitItalicUIFontDescriptorTraitBoldUIFontDescriptorTraitExpandedUIFontDescriptorTraitCondensedUIFontDescriptorTraitMonoSpaceUIFontDescriptorTraitVerticalUIFontDescriptorTraitUIOptimizedUIFontDescriptorTraitTightLeadingUIFontDescriptorTraitLooseLeadingUIFontDescriptorClassMaskUIFontDescriptorClassUnknownUIFontDescriptorClassOldStyleSerifsUIFontDescriptorClassTransitionalSerifsUIFontDescriptorClassModernSerifsUIFontDescriptorClassClarendonSerifsUIFontDescriptorClassSlabSerifsUIFontDescriptorClassFreeformSerifsUIFontDescriptorClassSansSerifUIFontDescriptorClassOrnamentalsUIFontDescriptorClassScriptsUIFontDescriptorClassSymbolicUIGraphicsImageRendererFormatRangeUIGraphicsImageRendererFormatRangeUnspecifiedUIGraphicsImageRendererFormatRangeAutomaticUIGraphicsImageRendererFormatRangeExtendedUIGraphicsImageRendererFormatRangeStandardUIUserInterfaceIdiomUIUserInterfaceIdiomUnspecifiedUIUserInterfaceIdiomPhoneUIUserInterfaceIdiomPadUIUserInterfaceIdiomTVUIUserInterfaceIdiomCarPlayUIUserInterfaceIdiomMacUITraitEnvironmentLayoutDirectionUITraitEnvironmentLayoutDirectionUnspecifiedUITraitEnvironmentLayoutDirectionLeftToRightUITraitEnvironmentLayoutDirectionRightToLeftUIUserInterfaceSizeClassUIUserInterfaceSizeClassUnspecifiedUIUserInterfaceSizeClassCompactUIUserInterfaceSizeClassRegularUIForceTouchCapabilityUIForceTouchCapabilityUnknownUIForceTouchCapabilityUnavailableUIForceTouchCapabilityAvailableUIDisplayGamutUIDisplayGamutUnspecifiedUIDisplayGamutSRGBUIDisplayGamutP3UIAccessibilityContrastUIAccessibilityContrastUnspecifiedUIAccessibilityContrastNormalUIAccessibilityContrastHighUIUserInterfaceLevelUIUserInterfaceLevelUnspecifiedUIUserInterfaceLevelBaseUIUserInterfaceLevelElevatedUILegibilityWeightUILegibilityWeightUnspecifiedUILegibilityWeightRegularUILegibilityWeightBoldUIUserInterfaceActiveAppearanceUIUserInterfaceActiveAppearanceUnspecifiedUIUserInterfaceActiveAppearanceInactiveUIUserInterfaceActiveAppearanceActiveCGLineCapint32_tintkCGLineCapButtkCGLineCapRoundkCGLineCapSquareCGLineJoinkCGLineJoinMiterkCGLineJoinRoundkCGLineJoinBevelfloatHDLSiriSceneListViewControllerUIViewControllerUIRespondernextRespondercanBecomeFirstResponderBOOL_BoolcanResignFirstResponderisFirstResponderundoManagerNSUndoManagergroupingLevelundoRegistrationEnabledisUndoRegistrationEnabledgroupsByEventlevelsOfUndorunLoopModesNSArraycountcanUndocanRedoundoingisUndoingredoingisRedoingundoActionIsDiscardableredoActionIsDiscardableundoActionNameredoActionNameundoMenuItemTitleredoMenuItemTitle_undoStackidobjc_object_redoStack_runLoopModes_NSUndoManagerPrivate1uint64_tlong long unsigned int_target_proxy_NSUndoManagerPrivate2_NSUndoManagerPrivate3editingInteractionConfigurationpreviewActionItemsviewUIViewlayerClassuserInteractionEnabledisUserInteractionEnabledtaglayerCALayerboundsCGRectoriginCGPointxCGFloatdoubleysizeCGSizewidthheightpositionzPositionanchorPointanchorPointZtransformCATransform3Dm11m12m13m14m21m22m23m24m31m32m33m34m41m42m43m44framehiddenisHiddendoubleSidedisDoubleSidedgeometryFlippedisGeometryFlippedsuperlayersublayerssublayerTransformmaskmasksToBoundscontentscontentsRectcontentsGravityCALayerContentsGravitycontentsScalecontentsCentercontentsFormatCALayerContentsFormatminificationFilterCALayerContentsFiltermagnificationFilterminificationFilterBiasopaqueisOpaqueneedsDisplayOnBoundsChangedrawsAsynchronouslyedgeAntialiasingMaskallowsEdgeAntialiasingbackgroundColorCGColorRefCGColorcornerRadiusmaskedCornerscornerCurveCALayerCornerCurveborderWidthborderColoropacityallowsGroupOpacitycompositingFilterfiltersbackgroundFiltersshouldRasterizerasterizationScaleshadowColorshadowOpacityshadowOffsetshadowRadiusshadowPathCGPathRefCGPathactionsNSDictionarynamedelegatestylecanBecomeFocusedfocusedisFocusedfocusGroupIdentifierfocusGroupPriorityUIFocusGroupPriorityfocusEffectUIFocusEffectsemanticContentAttributeeffectiveUserInterfaceLayoutDirectionviewIfLoadedviewLoadedisViewLoadednibNamenibBundleNSBundlemainBundleallBundlesallFrameworksloadedisLoadedbundleURLNSURLdataRepresentationNSDatabytesabsoluteStringrelativeStringbaseURLabsoluteURLschemeresourceSpecifierhostportNSNumberNSValueobjCTypecharcharValueunsignedCharValueunsigned charshortValueshortunsignedShortValueunsigned shortintValueunsignedIntValuelongValueunsignedLongValuelongLongValuelong long intunsignedLongLongValuefloatValuedoubleValueboolValueintegerValueunsignedIntegerValuestringValueuserpasswordpathfragmentparameterStringqueryrelativePathhasDirectoryPathfileSystemRepresentationfileURLisFileURLstandardizedURLfilePathURL_urlString_baseURL_clients_reservedresourceURLexecutableURLprivateFrameworksURLsharedFrameworksURLsharedSupportURLbuiltInPlugInsURLappStoreReceiptURLbundlePathresourcePathexecutablePathprivateFrameworksPathsharedFrameworksPathsharedSupportPathbuiltInPlugInsPathbundleIdentifierinfoDictionarylocalizedInfoDictionaryprincipalClasspreferredLocalizationslocalizationsdevelopmentLocalizationexecutableArchitecturesstoryboardUIStoryboardtitleparentViewControllermodalViewControllerpresentedViewControllerpresentingViewControllerdefinesPresentationContextprovidesPresentationContextTransitionStylerestoresFocusAfterTransitionbeingPresentedisBeingPresentedbeingDismissedisBeingDismissedmovingToParentViewControllerisMovingToParentViewControllermovingFromParentViewControllerisMovingFromParentViewControllermodalTransitionStylemodalPresentationStylemodalPresentationCapturesStatusBarAppearancedisablesAutomaticKeyboardDismissalwantsFullScreenLayoutedgesForExtendedLayoutextendedLayoutIncludesOpaqueBarsautomaticallyAdjustsScrollViewInsetspreferredContentSizepreferredStatusBarStyleprefersStatusBarHiddenpreferredStatusBarUpdateAnimationpreferredUserInterfaceStyleoverrideUserInterfaceStyletopBarViewTopBarViewbackButtonUIButtonUIControlenabledisEnabledselectedisSelectedhighlightedisHighlightedcontentVerticalAlignmentcontentHorizontalAlignmenteffectiveContentHorizontalAlignmentstatetrackingisTrackingtouchInsideisTouchInsideallTargetsNSSetallControlEventscontextMenuInteractionUIContextMenuInteractionmenuAppearancecontextMenuInteractionEnabledisContextMenuInteractionEnabledshowsMenuAsPrimaryActiontoolTiptoolTipInteractionUIToolTipInteractiondefaultToolTipfontUIFontfamilyNamesfamilyNamefontNamepointSizeascenderdescendercapHeightxHeightlineHeightleadingfontDescriptorUIFontDescriptorpostscriptNamematrixCGAffineTransformabcdtxtysymbolicTraitsfontAttributeslineBreakModetitleShadowOffsetcontentEdgeInsetsUIEdgeInsetstopleftbottomrighttitleEdgeInsetsimageEdgeInsetsreversesTitleShadowWhenHighlightedadjustsImageWhenHighlightedadjustsImageWhenDisabledshowsTouchWhenHighlightedconfigurationUIButtonConfigurationbackgroundUIBackgroundConfigurationcustomViewbackgroundInsetsNSDirectionalEdgeInsetstrailingedgesAddingLayoutMarginsToBackgroundInsetsUIColorblackColordarkGrayColorlightGrayColorwhiteColorgrayColorredColorgreenColorblueColorcyanColoryellowColormagentaColororangeColorpurpleColorbrownColorclearColorCIColornumberOfComponentssize_tcomponentsalphacolorSpaceCGColorSpaceRefCGColorSpaceredgreenbluestringRepresentation_priv_pad__ARRAY_SIZE_TYPE__backgroundColorTransformerUIConfigurationColorTransformer__isa__flags__reserved__FuncPtr__descriptor__block_descriptorreservedSizevisualEffectUIVisualEffectimageUIImageCGImageCGImageRefCIImageblackImagewhiteImagegrayImageredImagegreenImageblueImagecyanImagemagentaImageyellowImageclearImageextentpropertiesdefinitionCIFilterShapeurlpixelBufferCVPixelBufferRefCVImageBufferRefCVBufferRef__CVBufferimageOrientationscalesymbolImageisSymbolImageimagesdurationNSTimeIntervalcapInsetsresizingModealignmentRectInsetsrenderingModeimageRendererFormatUIGraphicsImageRendererFormatUIGraphicsRendererFormatprefersExtendedRangepreferredRangetraitCollectionUITraitCollectionuserInterfaceIdiomuserInterfaceStylelayoutDirectiondisplayScalehorizontalSizeClassverticalSizeClassforceTouchCapabilitypreferredContentSizeCategoryUIContentSizeCategorydisplayGamutaccessibilityContrastuserInterfaceLevellegibilityWeightactiveAppearanceimageAssetUIImageAssetflipsForRightToLeftLayoutDirectionbaselineOffsetFromBottomhasBaselineUIImageConfigurationsymbolConfigurationUIImageSymbolConfigurationunspecifiedConfigurationimageContentModestrokeColorstrokeColorTransformerstrokeWidthstrokeOutsetcornerStylebuttonSizemacIdiomStylebaseForegroundColorbaseBackgroundColorimageColorTransformerpreferredSymbolConfigurationForImageshowsActivityIndicatoractivityIndicatorColorTransformerattributedTitleNSAttributedStringstringtitleTextAttributesTransformerUIConfigurationTextAttributesTransformersubtitleattributedSubtitlesubtitleTextAttributesTransformercontentInsetsimagePlacementimagePaddingtitlePaddingtitleAlignmentautomaticallyUpdateForSelectionconfigurationUpdateHandlerUIButtonConfigurationUpdateHandlerautomaticallyUpdatesConfigurationtintColorbuttonTypehoveredisHoveredheldisHeldrolepointerInteractionEnabledisPointerInteractionEnabledpointerStyleProviderUIButtonPointerStyleProviderUIPointerStyleaccessoriesUIPointerEffectpreviewUITargetedPreviewtargetUIPreviewTargetcontainercenterparametersUIPreviewParametersvisiblePathUIBezierPathemptyisEmptycurrentPointlineWidthlineCapStylelineJoinStylemiterLimitflatnessusesEvenOddFillRuleUIPointerShapemenuUIMenuUIMenuElementidentifierUIMenuIdentifieroptionschildrenselectedElementschangesSelectionAsPrimaryActioncurrentTitlecurrentTitleColorcurrentTitleShadowColorcurrentImagecurrentBackgroundImagecurrentPreferredSymbolConfigurationcurrentAttributedTitletitleLabelUILabeltexttextColortextAlignmentattributedTexthighlightedTextColornumberOfLinesadjustsFontSizeToFitWidthbaselineAdjustmentminimumScaleFactorallowsDefaultTighteningForTruncationlineBreakStrategypreferredMaxLayoutWidthenablesMarqueeWhenAncestorFocusedshowsExpansionTextWhenTruncatedminimumFontSizeadjustsLetterSpacingToFitWidthimageViewUIImageViewhighlightedImagepreferredSymbolConfigurationanimationImageshighlightedAnimationImagesanimationDurationanimationRepeatCountanimatingisAnimatingadjustsImageWhenAncestorFocusedfocusedFrameGuideUILayoutGuidelayoutFrameowningViewleadingAnchorNSLayoutXAxisAnchorNSLayoutAnchoritemhasAmbiguousLayoutconstraintsAffectingLayouttrailingAnchorleftAnchorrightAnchortopAnchorNSLayoutYAxisAnchorbottomAnchorwidthAnchorNSLayoutDimensionheightAnchorcenterXAnchorcenterYAnchoroverlayContentViewmasksFocusEffectToContentssubtitleLabelsiriShortcutListtableViewStyletableViewUITableViewUIScrollViewcontentOffsetcontentSizecontentInsetadjustedContentInsetcontentInsetAdjustmentBehaviorautomaticallyAdjustsScrollIndicatorInsetscontentLayoutGuideframeLayoutGuidedirectionalLockEnabledisDirectionalLockEnabledbouncesalwaysBounceVerticalalwaysBounceHorizontalpagingEnabledisPagingEnabledscrollEnabledisScrollEnabledshowsVerticalScrollIndicatorshowsHorizontalScrollIndicatorindicatorStyleverticalScrollIndicatorInsetshorizontalScrollIndicatorInsetsscrollIndicatorInsetsdecelerationRateUIScrollViewDecelerationRateindexDisplayModedraggingisDraggingdeceleratingisDeceleratingdelaysContentTouchescanCancelContentTouchesminimumZoomScalemaximumZoomScalezoomScalebouncesZoomzoomingisZoomingzoomBouncingisZoomBouncingscrollsToToppanGestureRecognizerUIPanGestureRecognizerUIGestureRecognizercancelsTouchesInViewdelaysTouchesBegandelaysTouchesEndedallowedTouchTypesallowedPressTypesrequiresExclusiveTouchTypenumberOfTouchesmodifierFlagsbuttonMaskminimumNumberOfTouchesmaximumNumberOfTouchesallowedScrollTypesMaskpinchGestureRecognizerUIPinchGestureRecognizervelocitydirectionalPressGestureRecognizerkeyboardDismissModerefreshControlUIRefreshControlrefreshingisRefreshingdataSourceprefetchDataSourceprefetchingEnabledisPrefetchingEnableddragDelegatedropDelegaterowHeightsectionHeaderHeightsectionFooterHeightestimatedRowHeightestimatedSectionHeaderHeightestimatedSectionFooterHeightfillerRowHeightsectionHeaderTopPaddingseparatorInsetseparatorInsetReferencebackgroundViewnumberOfSectionsvisibleCellsindexPathsForVisibleRowshasUncommittedUpdateseditingisEditingallowsSelectionallowsSelectionDuringEditingallowsMultipleSelectionallowsMultipleSelectionDuringEditingindexPathForSelectedRowNSIndexPath_indexes_lengthindexPathsForSelectedRowssectionIndexMinimumDisplayRowCountsectionIndexColorsectionIndexBackgroundColorsectionIndexTrackingBackgroundColorseparatorStyleseparatorColorseparatorEffectcellLayoutMarginsFollowReadableWidthinsetsContentViewsToSafeAreatableHeaderViewtableFooterViewremembersLastFocusedIndexPathselectionFollowsFocusallowsFocusallowsFocusDuringEditingdragInteractionEnabledhasActiveDraghasActiveDropNSMutableArraytitleNamehomeId_tableViewStyle_tableView_dataSource_titleName_homeId_topBarView_siriShortcutListUIKit"-DNS_BLOCK_ASSERTIONS=1" "-DOBJC_OLD_DISPATCH_PROTOTYPES=0"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/UIKit.frameworkIntents/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Intents.frameworkIntentsUI/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/IntentsUI.frameworkFoundation/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Foundation.framework-[HDLSiriSceneListViewController init]init-[HDLSiriSceneListViewController viewDidLoad]viewDidLoad-[HDLSiriSceneListViewController initLlanguage]initLlanguage-[HDLSiriSceneListViewController initView]initView-[HDLSiriSceneListViewController topBarView]-[HDLSiriSceneListViewController setTopBarViewWithTitle:]setTopBarViewWithTitle:-[HDLSiriSceneListViewController goBack]goBack-[HDLSiriSceneListViewController dataSource]-[HDLSiriSceneListViewController tableView]-[HDLSiriSceneListViewController initTableView]initTableView-[HDLSiriSceneListViewController scrollViewDidScroll:]scrollViewDidScroll:-[HDLSiriSceneListViewController numberOfSectionsInTableView:]numberOfSectionsInTableView:-[HDLSiriSceneListViewController tableView:heightForHeaderInSection:]tableView:heightForHeaderInSection:-[HDLSiriSceneListViewController tableView:viewForHeaderInSection:]tableView:viewForHeaderInSection:-[HDLSiriSceneListViewController tableView:heightForFooterInSection:]tableView:heightForFooterInSection:-[HDLSiriSceneListViewController tableView:viewForFooterInSection:]tableView:viewForFooterInSection:-[HDLSiriSceneListViewController tableView:numberOfRowsInSection:]tableView:numberOfRowsInSection:-[HDLSiriSceneListViewController tableView:cellForRowAtIndexPath:]tableView:cellForRowAtIndexPath:-[HDLSiriSceneListViewController tableView:heightForRowAtIndexPath:]tableView:heightForRowAtIndexPath:-[HDLSiriSceneListViewController tableView:didSelectRowAtIndexPath:]tableView:didSelectRowAtIndexPath:-[HDLSiriSceneListViewController getModelWithNSIndexPath:]getModelWithNSIndexPath:-[HDLSiriSceneListViewController addOrEditVoiceShortcut:model:]addOrEditVoiceShortcut:model:-[HDLSiriSceneListViewController getINShortcut:]getINShortcut:-[HDLSiriSceneListViewController getSceneIntent:]getSceneIntent:-[HDLSiriSceneListViewController getSceneINVoiceShortcut:]getSceneINVoiceShortcut:-[HDLSiriSceneListViewController checkCurrentClass:]checkCurrentClass:-[HDLSiriSceneListViewController refreshSiri]refreshSiri__45-[HDLSiriSceneListViewController refreshSiri]_block_invokedispatch_async__45-[HDLSiriSceneListViewController refreshSiri]_block_invoke_2__copy_helper_block_e8_32s40s48s__destroy_helper_block_e8_32s40s48s__copy_helper_block_e8_32s40s__destroy_helper_block_e8_32s40s-[HDLSiriSceneListViewController presentAddVoiceShortcutViewController:forAddVoiceShortcutButton:]presentAddVoiceShortcutViewController:forAddVoiceShortcutButton:-[HDLSiriSceneListViewController presentEditVoiceShortcutViewController:forAddVoiceShortcutButton:]presentEditVoiceShortcutViewController:forAddVoiceShortcutButton:-[HDLSiriSceneListViewController addVoiceShortcutViewController:didFinishWithVoiceShortcut:error:]addVoiceShortcutViewController:didFinishWithVoiceShortcut:error:-[HDLSiriSceneListViewController addVoiceShortcutViewControllerDidCancel:]addVoiceShortcutViewControllerDidCancel:-[HDLSiriSceneListViewController editVoiceShortcutViewControllerDidCancel:]editVoiceShortcutViewControllerDidCancel:-[HDLSiriSceneListViewController editVoiceShortcutViewController:didUpdateVoiceShortcut:error:]editVoiceShortcutViewController:didUpdateVoiceShortcut:error:-[HDLSiriSceneListViewController editVoiceShortcutViewController:didDeleteVoiceShortcutWithIdentifier:]editVoiceShortcutViewController:didDeleteVoiceShortcutWithIdentifier:-[HDLSiriSceneListViewController tableViewStyle]-[HDLSiriSceneListViewController setTableViewStyle:]setTableViewStyle:-[HDLSiriSceneListViewController setTableView:]setTableView:-[HDLSiriSceneListViewController setDataSource:]setDataSource:-[HDLSiriSceneListViewController titleName]-[HDLSiriSceneListViewController setTitleName:]setTitleName:-[HDLSiriSceneListViewController homeId]-[HDLSiriSceneListViewController setHomeId:]setHomeId:-[HDLSiriSceneListViewController setTopBarView:]setTopBarView:-[HDLSiriSceneListViewController siriShortcutList]-[HDLSiriSceneListViewController setSiriShortcutList:]setSiriShortcutList:-[HDLSiriSceneListViewController .cxx_destruct].cxx_destructUITableViewCellconfigurationStateUICellConfigurationStateUIViewConfigurationStatedisabledisDisabledpinnedisPinnedexpandedisExpandedswipedisSwipedreorderingisReorderingcellDragStatecellDropStateUITableViewCellConfigurationUpdateHandlercontentConfigurationautomaticallyUpdatesContentConfigurationcontentViewtextLabeldetailTextLabelbackgroundConfigurationautomaticallyUpdatesBackgroundConfigurationselectedBackgroundViewmultipleSelectionBackgroundViewreuseIdentifierselectionStyleeditingStyleshowsReorderControlshouldIndentWhileEditingaccessoryTypeaccessoryVieweditingAccessoryTypeeditingAccessoryViewindentationLevelindentationWidthshowingDeleteConfirmationfocusStyleuserInteractionEnabledWhileDraggingHDLSiriControlModelcontrolNamecontrolIdcontrolTypecontrolJSONStractionNameINShortcutintentINIntentintentDescriptionsuggestedInvocationPhraseshortcutAvailabilitydonationMetadataINIntentDonationMetadatauserActivityNSUserActivityactivityTypeuserInforequiredUserInfoKeysneedsSavewebpageURLreferrerURLexpirationDateNSDatetimeIntervalSinceReferenceDatekeywordssupportsContinuationStreamstargetContentIdentifiereligibleForHandoffisEligibleForHandoffeligibleForSearchisEligibleForSearcheligibleForPublicIndexingisEligibleForPublicIndexingeligibleForPredictionisEligibleForPredictionpersistentIdentifierNSUserActivityPersistentIdentifierHDLRunSceneIntentINVoiceShortcutNSUUIDUUIDStringinvocationPhraseshortcutself_cmdSELobjc_selectorlanguageNamescrollViewsectionHDLSectionHeaderViewmessageLabellineViewmodelHDLSiriShortcutModelcontentlistindexPathcellHDLSiriSceneListCellshortcutButtonINUIAddVoiceShortcutButtonvoiceShortcutssModelvcINUIEditVoiceShortcutViewControllerINUIAddVoiceShortcutViewControllersceneModelshortCutintentFindvoiceShortcutFindtemp.block_descriptor__block_literal_1NSErrordomainNSErrorDomaincodelocalizedDescriptionlocalizedFailureReasonlocalizedRecoverySuggestionlocalizedRecoveryOptionsrecoveryAttempterhelpAnchorunderlyingErrors_code_domain_userInfo__block_descriptor_withcopydisposeCopyFuncPtrDestroyFuncPtrvoiceShortcutserror__block_literal_2addVoiceShortcutViewControlleraddVoiceShortcutButtoneditVoiceShortcutViewControllercontrollerdeletedVoiceShortcutIdentifierHSAH2d  ÿÿÿÿ"#%()+-.1247;ÿÿÿÿ>BDFGJKÿÿÿÿLMNPTWÿÿÿÿÿÿÿÿXZ[]_`cö    )'œÆ‚oRd¶—@R³áùÌk å“û^‹HødHÚ)Š_HÖ †.O|ƹNżÿ†ëàÙ"ÁF”³_D&‹Ɩö¶=V¦ŽkՄ‰F­üv‹éý6g‘3œ œì0ÃQï¼¾¡9…˜|ó˶²Ë6?âé,3éÌ*N|@±A¬È­W»ièîz3-LP$q1°Ÿ’XŽ˜iùÿÈm~ºs镥ѷzßRèØ”|£ÞÖ¿Ðdÿ.ւntn‹sb›q֏·lԆx.î~èVQ§Õuíî•LØ n(?BLµ;]–wÂoa唺©¼Ãß¹ì¥ñüTˏYk޼Œq?>©eòŒ¿—Ýà û¹ú^¬û­)ÆWF“ãƸ÷c©ñP>.),†©™é1&Æ]ÏՒíe%jì”n¶þ%0:Œr6JÄò™Öß/cS˜÷o0ý´Íj6 çXåìAÕÔZ»ñUÐBoéñf1SR*]‘¡ DTzî.îe\8,Ä¢éÉÛ¢(8HXhxˆ˜¨¸ÈØèø(8HXhxˆ˜¨¸ÈØèø(8HXhxˆ˜¨¸ÈØèø(8HXhxˆ˜¨¸ÈØèø(8HXhxˆ˜¨¸ÈØèø        (    8    H    X    h    x    ˆ    ˜    ¨    ¸    È    Ø    è    ø    
 
(
8
dÑAÉiôF×ekDSeND`;=RiiFUdBadmB¬hFAY±G‹kŸH9^K;4bÕ>ùj(Hi3‹cLA»jçGY`;=€jpG¯dhC"h¿EIlOIY\I9IcÇ@LUÛ:ïaÕ>€\I9OjpG‡a‡>«bÆ?˜]d:_+<=,:'dB!gElIðdåCškàH|fÀDï\µ9cP;Ó®ý\ø9#aö=Ã^ä;_ä;Ìa‡>(]ø9êhiFWba?¾fE…\9e_+<    cR@e DÙ]§:¿`‘=fÀD˜i¾FOk^H°]§:{cÇ@ ^;ZkŸH5e(Da‘=‰_y<ëbÆ?ÍkIbgzE"k^H®^;ßcÑA5`í<lOI^]d:TP¾Fw^;faö=j±GAj/G­gzE’ba?:cR@þiôFÍ_y<LhFï_í<j/G1],:CPàH³\9tekD¿\µ9Ög¿Eà]Û:ëjçGi^K;ÆcLAKY(HHSAH ]å5 ,Ä-.I99µ9ø9,:d:§:Û:;K;;ä;+<y<í<;=‘=ö=‡>Õ>a?Æ?R@Ç@LAÑABkDÀDEzE¿EFiF¾FôF/GpG±GçG(H^HŸHàHIOIHSAH ÿÿÿÿHSAHhÐ ÿÿÿÿÿÿÿÿ     ÿÿÿÿÿÿÿÿÿÿÿÿ"#$%'(+-027;>BDGKNPQSVÿÿÿÿW\_aegijmnÿÿÿÿrwÿÿÿÿxy{|~ÿÿÿÿ‚…†ŠÿÿÿÿŒŽ”˜›ž¡¤§©«ÿÿÿÿ¬®±ÿÿÿÿ²µ¶¹º»¼½ÿÿÿÿ¾ÂÄÆÈË͙éª1q…“âŠÎu :LÑ ‹Ýžt¾å™ ÔŸý;×w”úÈ9z ì v´ñؙ_AɔâÒáúâ}á&ÒÙ9r…At òµÌ[sŒÜ4Ë ¤Ñ¦Íþ
B• p–gßÃwÉäÓ^»>øöŸ]Ð;ØÑá>›9ë€,€Z,2’ ÅëÎ/Ò2wÃð/ܨ„¢w3"LzK5âmL<šQ=hc“å?sB…èÔðê¿ôÈ2ÕbFØ]èS$\©&Ä¥"ÆË„B.@ÜWvŒ¯ÜÖiíý—ÔT_eƒ_Y3ÌWÝvÖ(À` µEˆhPäáYo± ÑNоÙeêâ~Òŧ‰c •|œc¡Kï&̄_¦.DbûX ³Wf?ŽÝ»`Ú‘d>›Žö\sÆgêQèðIŸ`MÖÃioæ]›‚|¹Õí@×LªI`¦adMÖÃÜÔ:ÇRéä=pó6Eúr>•Á¦ÎÅ¿†VòÎÏàX+÷hˆ’ÿ[C×?3¥ïø½Zê [=ùùMÿnqé­õZÈvӛáq“òЛÇX3„ØtH­h͓<²}bh¾-    LÎ?Ž·/#;7<ÇHÏó€Uw¤×8;ÙÄ2xY»Nø {Á/—<Ž• uYÑz¬æ    “>&‡½¾sÓ~zÁø˜=åžxtzÓ §Ëùùp–~rÑå$²_b4êöÿtšI ëöÿtë¬LÉ:¡¡uckÑ醷aÃí0€ˆ øpÀh¬ÓÈ_éùv=JYŒ’]éqy£©öŠ"8/bBšb‡Îë0©ˎJ¦4†ìØ]å5 ½|5û­{ÕûƤ    îSú;F‡èÿ\ŠïÑ ¢×Òú[èŒï*Û$Y3D‡ri± „
 4ܧ•ÕðZ=ŸT,Mh´ëºë8‰}$ðCà7µ[¯9ÂÔ–UºìêÄ\©Ã„´B̘9uMÉþ•æŒd—}Á˹Ë*)ˆ qf±EÑÕÁzò#’Nzkùc;¯)a;WpTHR•´Dŭ傦õÖs¬Í”{Ò¦wêdžòAҟ³¨'¯Ž ž—L«àH[u¢µÈÛõ    )    <    O    i    ƒ    –    ©    Ã    Ý    ð    
 
0
J
]
p
Š

·
Ê
ä
÷
 
 L f y Œ Ÿ ² Å Ø ë þ  $ 7 J ] p Š  ° Ê Ý ÷
 0 C ] w ‘ ¤ · Ê ä þ +>Xk…˜«¾Øò2EXr…˜²Ìæù &9L_yŒŸ²Ìæù 2EXk…Ÿ²Åßò 2EXk~‘«¾Øëþ+>Xk~‘¤·Êä÷
0JdwŠ°Êä÷$7Jd~‘¤·Êä÷
$7J]pƒ–©¼Öéü"<Oiƒ–°ÊÝð7J]wŠ°ÃÝ÷+>Xk…˜«ƒtžRJl+©7t/B2³jW8ÞÈâ0 ¡,‡ ¼)ñÚ·1ìþèÓ$$7¯$Kå)L|Ïa+ÕqOã-à m ³qà Œ6*j3ß³Bé$$¤3ÿÅ´#¨o¯J,÷qžOÖŸ"ºsÈQHÇó)BŸ#u)®
d)½K.ÈJc,ì9»2CK%É*F+MCL#    ×>?Dà'+.    $ÉsŽRNš/©S7¤KÜ-®2Ém6l€E­($G*=sQ3E(I%M
Ê0HS²qñNuC€%@ $ _rßOj$W    "(-F…)%=F-OI1gBÈ$¤    íÙ8 PË6á7rPé5ùKØ,?,h ±)@TíP*%     ~6“$#UE8:-¦ l-.=ð'X
(O91_Jw+=>Fà Ì«L(b/o\M»0k€-× w-D-Å 6W±$p    -(&.þx4
#     (¹ÐB1ßêˆpÔNzl>K*Í
o)ˆRÜ.aô-Ÿ_9æ¦FÌ)d6Œ“l¬Kü i58)A["f"PDì'ê0¬$x?[årªP?¿¾-ö $DB³$‰ñ¶L"#û.…2¾š$NÅÛâBð$[…²Ò@b E=(2Yé8f.‹o-M›/~ž†æÖ7‘4)«\ì7|JÜ+mPÇ1ñuÔo0ÂûFá)Ìž Kœ-Ÿ6š$ž/ý4FÑ6¨$¨sFQ:
 ª6ÖtëRøo½MvHQ*aD÷'5 *›*ì
z)L-Ð $—Iï*RÀ6!D©'Mù6_+* ›)¶œ-    Ó8ÌO§1uA¯"¹D(v!±A*Ô+I ¦)C¤&Ä-þ Á§$ã/«$šŠ/çqdOWlIõ­M…CŠ&Ê ¢5=—Jý+ôJœ,>`Ck%d•ü¸6¡$‘oŸO’1ÁrTPP"Öä*5VÁÇ÷7Ø0tÚ/ ÄÆLø0³¾±L-.¼T8yPz4‘ ˆf+ )’SÛ6-r»OÖ[+*sýPpÒM¯Hn*ó@¢! 1µ6Ÿ?§²    ÁLÃ(}
Y)‰K‡-Åjñ;oÜL[¡ô(m4LæN}0å;ÌLDDL¸|€ìl\Èä¬TŒŒ(´
èœ Lè ô L@ H (p Ð@t´ ÀÀ„D8|èdÐ4ð$”¸ Ø¤|°,0\0Œ(´(Ü„`„ä`D`¤` `d `Ä Ô ä ø  !!0!@!T!h!x! „!"zRx  äÿÿÿÿÿÿÿDL ž,<ÀÿÿÿÿÿÿÿT ž“”•–,lÿÿÿÿÿÿÿ¸T ž“”•–—˜$œ`ÿÿÿÿÿÿÿ|L ž“”,Ä8ÿÿÿÿÿÿÿìP ž“”•–,ôÿÿÿÿÿÿÿ\T ž“”•–—˜,$ØþÿÿÿÿÿÿäT ž“”•–—˜$T¨þÿÿÿÿÿÿTL ž“”,|€þÿÿÿÿÿÿŒT ž“”•–HID¬Pþÿÿÿÿÿÿ(h ž“”•–—˜™    š
› œ H IJKLM,ôþÿÿÿÿÿÿèP ž“”HI$$ØýÿÿÿÿÿÿLL ž“”L°ýÿÿÿÿÿÿ ,lýÿÿÿÿÿÿLT ž“”•–—˜œ`ýÿÿÿÿÿÿ$¼@ýÿÿÿÿÿÿ(H ž,äýÿÿÿÿÿÿÐP ž“”•–,èüÿÿÿÿÿÿtP ž“”•–D¸üÿÿÿÿÿÿ ,d˜üÿÿÿÿÿÿT ž“”•–—˜4”hüÿÿÿÿÿÿ„\ ž“”•–—˜™    š
› œ ,Ì0üÿÿÿÿÿÿ8T ž“”•–—˜,üüÿÿÿÿÿÿèT ž“”•–—˜4,ÐûÿÿÿÿÿÿÐ` ž“”•–—˜™    š
› œ 4d˜ûÿÿÿÿÿÿð` ž“”•–—˜™    š
› œ ,œ`ûÿÿÿÿÿÿ”P ž“”•–,Ì0ûÿÿÿÿÿÿ T ž“”•–$üûÿÿÿÿÿÿ¤P ž“”4$Øúÿÿÿÿÿÿ°` ž“”•–—˜™    š
› œ $\ úÿÿÿÿÿÿ0L ž“”$„xúÿÿÿÿÿÿ0L ž“”$¬Púÿÿÿÿÿÿ(L ž“”$Ô(úÿÿÿÿÿÿ(L ž“”$üúÿÿÿÿÿÿ„L ž“”$$Øùÿÿÿÿÿÿ„L ž“”,L°ùÿÿÿÿÿÿ`P ž“”•–,|€ùÿÿÿÿÿÿ`P ž“”•–,¬Pùÿÿÿÿÿÿ`P ž“”•–,Ü ùÿÿÿÿÿÿ`P ž“”•–, ðøÿÿÿÿÿÿ`P ž“”•–<Àøÿÿÿÿÿÿ\ øÿÿÿÿÿÿ|€øÿÿÿÿÿÿœ`øÿÿÿÿÿÿ¼@øÿÿÿÿÿÿÜ øÿÿÿÿÿÿüøÿÿÿÿÿÿà÷ÿÿÿÿÿÿ<À÷ÿÿÿÿÿÿ\ ÷ÿÿÿÿÿÿ|€÷ÿÿÿÿÿÿ $œ`÷ÿÿÿÿÿÿL ž“”Ä8÷ÿÿÿÿÿÿDž,û /Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri/HDLSceneSiri/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Foundation.framework/HeadersHDLSceneSiri/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/IntentsUI.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Intents.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/_types/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/sys/_types/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/dispatchHDLSiriSceneListViewController.mNSObject.hNSObjCRuntime.hNSString.hHDLSiriSceneListViewController.mNSObjCRuntime.hUITableView.hUIControl.hUITableViewCell.hUIViewController.hUIGeometry.hUIApplication.hUIInterface.hUIScrollView.hUIView.hINUIAddVoiceShortcutButton.hUIResponder.hNSParagraphStyle.hUIButton.hNSText.hUIStringDrawing.hUIContextMenuInteraction.hUIPanGestureRecognizer.hUIGestureRecognizer.hUICommand.hUIEvent.hCALayer.hUICellConfigurationState.hINShortcutAvailabilityOptions.hUIButtonConfiguration.hUIMenu.hUIImage.h_uint32_t.h    UIFontDescriptor.hUIGraphicsImageRenderer.hUIDevice.hUITouch.h_int32_t.h
CGPath.h objc.hNSUndoManager.hNSArray.h_uint64_t.h    CGBase.h CGGeometry.h CATransform3D.hCGColor.h NSDictionary.hUIFocus.hUIFocusEffect.hNSBundle.hNSData.hNSURL.hNSValue.hUIStoryboard.hNSSet.hUIToolTipInteraction.hUIFont.hCGAffineTransform.h UIBackgroundConfiguration.hUIColor.hstddef.h CIColor.h CGColorSpace.h UIConfigurationColorTransformer.hUIVisualEffect.hCGImage.h CIImage.h CIFilterShape.h CVBuffer.hCVImageBuffer.hCVPixelBuffer.hNSDate.hUIGraphicsRenderer.hUITraitCollection.hUIContentSizeCategory.hUIImageAsset.hUIImageConfiguration.hUIImageSymbolConfiguration.hNSAttributedString.hUIPointerStyle.hUITargetedPreview.hUIBezierPath.hUIPreviewParameters.hUIMenuElement.hUILabel.hUIImageView.hUILayoutGuide.hNSLayoutAnchor.hTopBarView.hHDLSiriSceneListViewController.hUIPinchGestureRecognizer.hUIRefreshControl.hNSIndexPath.hHDLSiriShortcutModel.hqueue.hUIViewConfigurationState.hINIntent.hINIntentDonationMetadata.hINShortcut.hNSUserActivity.hHDLRunSceneIntent.hNSUUID.hINVoiceShortcut.hHDLSectionHeaderView.hHDLSiriSceneListCell.hINUIEditVoiceShortcutViewController.hINUIAddVoiceShortcutViewController.hNSError.h    
»    ¬K‚M¼
u ­Wò)J‚!­V0*J
‚Vò*J‚òóô> 
uP<0J‚P<0J‚Pò0J    wM¬    3$"Š+JEº;J%‚ tò"z‚+JKº5J%‚ tòˆƒ y<ƒJòÀ‚w
ó'»»òÅJ‚­óx
 
=    ºKKò³<ÍJ<ä    ò
ƒJ²ºÎJ7‚    ‚ ®?
u¬ºԂ¬ºÔJ ‚¬<ÔJ‚'$«(ÕJ
‚«ºÕJ‚ò
óªºÖJ‚ªºÖJ ‚ªòւç
u¦òÚJ$‚¦ºÚJ    ‚$N¢ºÞJ    ‚¢òÞJ©(
 
ó    ºK< ôö
 
v    ºLJò‘<ïJjt<ä    ò.„<ñJ    ‚J    òƒJ    óJ    óJ    óJ    ­J    óJ ôv*
,„tüJ„tü‚?t„tüJQ¬„ºüJ„äüJf¬„ºüJd$
J„<üJ‚¬ 0‚òþJ ‚‚ºþJ‚H
åü~ò„J    ‚J…ù~<<‡‚I‚ º„ºƒD:8ºJø~‚<@
»î~º’J‚òƒô
„L#
­"º(óå~ò›J#‚å~ò›Jó&Kã~òJ‚ã~òJ‚    <(óâ~òžJ‚â~òžJ‚    ºõæ
„
ƒ º»„(
=Ô~º¬J#‚Ô~ò¬JóJÓ~<­J‚JKÒ~º®J‚    òÒ~‚±‚®"
vË~ºµ‚Ë~<µJ    ƒKº®Ç~ò¹J
‚<"ƒÆ~<ºJó K<EKÃ~ò½J)‚Ã~< ½J ó    u…¯
„L
(    v<&K³~<ÍJ ƒRK±~òÏJ.‚±~<ÏJ ó    u„„x*
,¥~òÛJ?‚%<¥~<ÛJóJ¤~<ÜJ J¤~J,ÜJ¤~ºÜJ1‚Còtòƒ£~ºÝJ(‚ò£~ºÝJ    ‚£~‚à‚0
44 J3º =3vºoò—~<éJ2‚-t ƒ–~ºúXç"
u‚~ºþ‚‚~‚þJ"ƒ!º ó#óÿ}òJ ‚< ƒ=ý}òƒJ ‚<%ƒü}ò„J ‚<(ƒû}ò…J ‚<$ƒú}ò†J ò<ƒº>(
@1ºð}òJð}<<ð}tJH»ï}‚‘JQ‚ï}‚‘J óKí}º“J‚tO‚è}ä˜òè}J˜‚è}JšJæ}Jštæ}$žJ
@1ºà}ò Jà}< tà}t JH»ß}º¡JQ‚ß}‚¡J óKÝ}º£J‚tO‚Ø}ä¨òØ}J#¤‚¾Ø}‚¨JØ}JªJÖ}JªtÖ}$­J
=Ò}º®J$‚Ò}º®J9‚ t<ó>    
u< KÍ}<³J
ƒÌ}<´JR‚    0Ì}ò´Jt¾}‚ ½}òÃJ‚=p<7
æÊ}H ¶J     ò¿}òÁ‚uò
4É}H·òåJºKJ¼,)„A‚)JÃ}º½J‚JòƒJÂ}º¾J‚Â}< ÀtÀ}äJ00(Ç($
­ó<(K>­ô%
­ó<)K>­õ
>¦}ºÚ‚»¥}tÞ<
=¡}ºß‚» }tã<
=œ}ºä‚»›}tè<
=—}ºé‚»–}tí<
=’}ºî‚»‘}t[<6
ò
r6ºK
qJò
pJò7
ò
oJò7
ò
nJò
hJò%
ò%
¾
ò"]-"„-ü!CLø!C=ô!„-è!@Lä!@=à!„-Ô!ELÐ!E=Ì!„-À!AL¼!A=¸!„-¬!FL¨!F=¤!„-˜!BL”!B=€!ƒ-|!BLx!B=t!|-l!BLh!B=d!„-\!FLX!F=P!„-H!ALD!A=4!AL0!A=,!„-$!EL !E=!EL !E=!„-!@Lü @=ô „-ì CLè C=Ø DLÔ D=È DLÄ D=À -¬ }-œ 7L˜ 7=” }-„ €-| #Lx #=` -L }-< 7L8 7=4 }-$ €- #L #= -ì}-Ü7LØ7=Ô}-Ä€-¼#L¸#= -Œ}-|7Lx7=t}-d€-\#LX#=@-,}-7L7=}-€-ü#Lø#=à-Ð}-¼zL¸z=´}-¨yL¤y=œs-ˆ}-€EL|E=t€-\-L}-8zL4z=0}-$yL y=s-}-üELøE=ð€-Ø-È-°€- €-ˆ-x-p-X€-H€-@€-(t-øulôu]ì-ä}-àšLÜš=Ô‚-Ì}-ÈJLÄJ=¼-´}-¬¡L¨¡=œ‚-”}- LŒ =„ŸL€Ÿ=|-l}-H}-4}-{-LžLüž=ô=à}-Ì‹LÈ‹=À€-¤ul u]h-`-X-Px-HvlDv]<€-0€-WLW=œLœ=›L›=üqløq]ð€-À-¸}-´šL°š=¨‚- }-˜JL”J=-ˆ-€-x}-d€-\™LX™=LVLHV=D˜L@˜=8“L4“=,ql(q] ‚-}-—L—= –L–=‚-ø}-ô•Lð•=ì9Lè9=às- -˜-Œ}-„’L€’=x}-t‘Lp‘=l}Lh}=`‚-X}-TLP=H‚-@}-<ŒL8Œ= t-z-ìulèu]à-Ø-Ð-Ä€-°Ž=¬h=¨=¤Œ= }-€-t-h}-X‚-P}-@-4‚-,}- ‚-}-{-äŽLÜhL؍LÔŒLÌŽ=Èh=č=ÀŒ=°}-œ‹L˜‹=”‚-Œ}-„ŠL€Š=l€-\ulXu]0t-,z-üuløu]ð-è-ØŽ=Ôh=Ѝ=ÌŒ=È}-¨-œ-}-€‚-x}-h-\‚-T}-H‚-@}-0{-ŽL hLLŒLüŽ=øh=ô=ðŒ=à}-Ì‹LÈ‹=Ä‚-¼}-´ŠL°Š=œ€-Œulˆu]`z-H-@-4}-,ˆL(ˆ=$y- ‡L‡=-}-†L†=ü-ð‚-è}-à…LÜ…=Ø-Ð}-Ä„LÀ„=¸‚-°}-¨ƒL¤ƒ= -˜}-Œ‚Lˆ‚=€‚-x}-pLl=h-`}-TfLPf=H‚-@}-8eL4e=0}-$€L €=-}-L=ü‚-ô}-ìhLèh=ä}-Ü~LØ~=Ð}-ÌLÈ=Äy-À}L¼}=´‚-¬}- €-˜|L”|=x-`-X-P}-<zL8z=4}-(yL$y=s-}-üELøE=ô-è}-ÜxLØx=Ђ-È}-¼wL¸w=°y-¬vL¨v= ELœE=”}-ŒuLˆu=„y-€tL|t=p€-d€-@z- ---ü‚-ô}-ä}-Ô‚-Ì}-¸-°-¤}-˜rL”r=Œ}-ˆRL„R=|‚-t}-`‚-X}-L_LH_=@-4‚-,}- WLW=}- qLq=‚-ø}-ðQLìQ=ä€-¼-¤-œ-”}-„oL€o=|-p‚-h}-\nLXn=P‚-H}-@hL<h=0‚-(}-gLg=s-ü}-ìmLèm=à€-°z-œ-”-Œ}-|jLxj=t-h‚-`}-TiLPi=H‚-@}-8hL4h=,s--‚-}-ôgLðg=ì-ä}-ØfLÔf=Ì‚-Ä}-¼eL¸e=°}-¨bL¤b= dLœd=˜y-”cLc=„‚-|}-pbLlb=d€-\aLXa=(-- }-RLR=ü ‚-ô }-ä -Ü ‚-Ô }-È _LÄ _=¼ -° ‚-¨ }-  WLœ W=” ‚-Œ }-ˆ QL„ Q=l z-d }-` L\ =X y-T ]LP ]=< z-$ - - - }-ü ‚-ô }-ì ZLè Z=à ‚-Ø }-Ð YLÌ Y=È -À -¸ }-¬ 2L¨ 2=  ‚-˜ }- 1LŒ 1=„ ‚-| }-t XLp X=h -\ ‚-T }-L WLH W=@ ‚-8 }-0 QL, Q=$ }-  L = y- VL V=ì SLè S=Ô -È }-Ä RLÀ R=¸ ‚-° }-¬ QL¨ Q=˜ -„ }-p CLl C=d }-T MLP M=L CLH C=< }-( }- LL L= }- OLü
O=ð
-è
‚-à
}-Ø
JLÔ
J=Ì
€-°
-„
-|
}-p
0Ll
0=d
‚-\
}-L
‚-D
}-<
L8
=4
-,
-$
-
-
-
-
}-ð    KLì    K=ä    ‚-Ü    }-Р   JLÌ    J=°    }-¤    ‚-œ    }-”    GL„    }-x    ‚-p    }-h    GL`    }-T    ‚-L    }-D    &L<    }-4    (L0    (=(    ‚-     }-    'L    '=    &L     &=è}-àILÜI=Ô‚-Ì}-ÄHLÀH=¼GL¸G=ˆ-p}-hELdE=\}-TDLPD=H}-4CL0C=(}- BLB=}- ALA=}-ø@Lô@=ì-ä}-ÜLØ=Ì‚-Ä}-À?L¼?=¸ L´ =°-¨-˜}-€>L|>=t}-l=Lh==`}-\(LX(=P‚-H}-D'L@'=<&L8&=0y-,<L(<=CLC=ü-ì-Ü}-Ø:LÔ:=Ð9LÌ9=À@L¼@=¨}-ˆ7L„7=€-h…-`}-X6LT6=L‚-D}-4-,- }-5L5= ‚-}-4Lü4=ô‚-ì}-ä
Là
=Ä-¬-¤-œ}-”2L2=ˆ‚-€}-|1Lx1=p‚-h}-\-T-L}-DL@=8‚-0}- ‚-}--L-= Lü =ø Lô =ð-è-à}-Ô0LÐ0=È‚-À}-´/L°/=¨‚- }-€-ˆL„=h-T-L}-@,L<,=8+L4+=,‚-$}- *L*=- -ü}-ä)Là)=Ü}-Ø(LÔ(=Ì‚-Ä}-À'L¼'=¸&L´&=¬y-¨%L¤%=˜FL”F=|}-l#Lh#=d}-\"LX"=T-L}-@!L<!=4‚-,}-$L =}- L =-è}-àLÜ=ØLÔ=Ð-ÄLÀ=¼L¸=´-¤-œ-}-ŒLˆ=„L€=x‚-p}-X-P-D}-@L<=8L4=,‚-$}-‚-ü}-ðLì=ä}-ÜLØ=ÔLÐ=Ì-Ä-¸‚-°}-¨L¤=œ‚-”}-LŒ=ˆL„=|‚-t}-pLl=hLd=4}-,L(=$--}- L=‚-ø}-ðLì=ä‚-Ü}-ÔLÐ=ÌLÈ=ÄLÀ=¼ L¸ =´ L° =¬-¤}-˜ L” =Œ‚-„}-|
Lx
=t~-l    Lh    =`L\=0DL,D=$~-L=L =°Ô rÒ€rpÏ`rPÌ@r0É r¶rX)P[HY(( \ZbH8w0p(o ºwnG?*'&ø%ð$è#à"Ø!РÈÀ¸°¨ ˜ˆ€xph`XPH@8 0 (  
    øðèàØÐÈÿÀþ¸ý°ü¨û ú˜ùøˆ÷€öxõpôhó`òXñPðHï@î8í0ì(ë êéèçæøåðäèãàâØáÐàÈßÀ޸ݰܨ۠ژِ؈׀ÖxÕpÓhÐ`ÎXÍPËHÊ@È8Ç0Æ(Å ÄÂÁÀ½xepdha`^XcPbH`@m8_0i(l fkhgjÀ4°%¨  ˜,xUpVhU`TXSPRHQ@P8302(1 0/.-,ø+ð*è)à(Ø'Ð&¸$°#¨B˜"!ˆFxp hAXPHE80(@CøðèDØ´ÐÈÀ³¸j°&¨² 3˜±ˆj€x°pjh`¯X3PÿH®@j8Ó0­(3 Î¬jï«øjðèªàØÐ©ÈÀ踨°_¨r §˜hqˆ¦€jxsp¥hj`iX¤PhHg@£8_0`(¢ _^”Øøð0è#àØ‰ÐȉÀ‰¸°{¨‰ 
˜s_ˆ€px‰phl`_XÑPkHÀ@¿8`0~(} ^|{\ƒøÈð[èÂàÃØUЃÈÇÀT¸Â°Á¨P ˜€Nˆj€xFph×`;X3PóH8@38ö03( Ý.jÖ$ø3ðßèàØÇÐÈÀÕ¸°¨À ˜3½h X,0U(T QPO ø ð
è     à     Ø Ð È ûÀ ”¸ ° ”¨   ˜  ”ˆ € x ”p úh ` ûX ûP ”H ÿ@ ÿ8 þ0 ý( ú  û û ü ü ûø ûð ”è ûà úØ ùÐ ùÈ øÀ ø¸ ÷° ø¨ ø  ÷˜ ö öˆ õ€ öx öp õ` hX óH h@ ò0 h( ñ ~ ð ~ø ïè îà íÐ jÈ ì¸ _° ë  †˜ êˆ é€ èp †h çX ‰P æ@ h8 å( †  ä † ãø
âð
áà
àØ
ßÈ
†À
Þ°
ʨ
ݘ
ܐ
Û€
_x
Úh
_`
ÙP
†H
Ø8
~0
× 
~
Ö
~
Õð    ~è    ÔØ    ÊР   ÓÀ    _¸    Ò¨    _     Ñ    ~ˆ    Ðx    ~p    Ï`    _X    ÎH    _@    Í0    †(    Ì    _    Ë    ÊøÉèƒàÈЃÈǸ°Ơ˜ňÀ€ÄpÂhÃXÂPÁ@À8¿(º ¾º½øhð¼àºØ»ÈºÀ¹°h¨¸SˆRx¯p¯hµ`´X³P²H¯@¯8¯0±(° ¯¯¯jø­èjà¬Ð0È«¸ª°© _˜¨ˆ‰€§pjh¦XjP¥@j8¤(£ ¢¡ øjðŸàjØžÈjÀ¨R˜˜—ˆ–€•x”p”h“`“X’P‘H8h0Ž Œ‹Šð‰èˆØ†Ð‡À†¸…¨ƒ „ƒˆ‚xp€X~P}@|8{ RwvuðjèsØ_ÐrÀh¸q Rmˆlxjpi`hXg@R0c(b_`_ø^àRÐYÈYÀ1¸F°H¨F 3˜C3ˆ@€Xx<p<h;`9X7P5H3@1800U(V UTSRQøPà3ØNÀ3¸K¨1 JFˆIxHpG`FXEH3@D0C(B3A@ø?è0à>Ð<È=¸<°  ;˜:ˆ9€8p7h6X5P4@382(1 0Ј hôP·Hš(¶®ðœè›È™¨˜zˆyhx8t0p(onØkÐfÈe¨dxap]h-HZ8W(OM.0U(S TQPOR?PIIáH H_H)HèG²GqG0GõF¿FjFFÀE{EEÁDlDOD)D DæCÇCiCàBnBOBBÒAMAÈ@S@5@@Ç?b?C?'?Ö>ˆ>j>÷=’=<=î<z<,<å;Â;€;L;;Ü:¨:e:-:ù9¶9‚9J9@'€`@ àÀ €`@ àÀ €`@ àÀ €`@ àÀ €`@ àÀ €`@ àÀ €`@ È=ÈX = ´€=€³`=`²@=@± = °=¯à=à®À=À­ = ¬€=€«`=`ª@=@©=¨à=à§°=°¦€=€¥P=P¤(=(£=¢Ø=Ø[°=°Yˆ=ˆ\`=`Z(=(œ=˜Ð=Д = h=h0=0‰={Ð=Ðs˜=˜ph=hlH=Hk=`è=è^À=À\ = [p=pUP=PT(=(Pø=øN°=°F€=€;X=X8(=(3ø=ø.È=È$ = p=p@=@=- ,0¨¬ˆŒìðÐÔÈÐÈÌÀÈÀĸÀ¸¼°¸°´”˜x|hl\`ìðØÜÐÔ¤¨Œ„ˆìðäìäè¼À´¸ˆŒ€„Àĸ¼ÜàÔØèìØÜ¼À ¤”˜”˜¼À´¼´¸œ àäÔØ¼À´¼´¸¤¨ ” ø
ü
À
Ä
„
ˆ
ü    „
ü    €
ô    ü    ô    ø    Р   Ô    °    ´    „    ˆ    ” ˜ ü € à ä Ô Ø „ ˆ ¼ À Ô Ø Ì Ô Ì Ð ˜œäèÐÔ°´œ ˆŒôøØÜ¼À´¼´¸ü€èìØÜÀĸÀ¸¼¨¬ìð¸¼ìðÌа´”˜ÜàÀÄÔØ”ü€ÐÔÈÐÈÌìðÀĨ¬èìÈ̬°œ ”èìÌШ¬ŒðôÜàÐÔœ „ˆÄÈ„ˆìðØÜ¤¨œ ”ðôÔØ¸¼øüÐÔ´¸è옠œ €!„!Ø Ü ¼ À œ" "ˆ"Œ"ì!ð!È"Ì"”#˜#„#ˆ#œ% %ˆ%Œ%ü$€%ø%ü%Ø%Ü%¸%¼%¨%¬%¤&¨&¸&¼&¨*¬*œ* *€*„*Ü)à)À)Ä)¤)¨)ˆ)Œ)ì(ð(Ð(Ô(´(¸( (¤(„(ˆ(è'ì'Ø'Ü'È'Ì'¼'À'”'˜'È+Ì+°+´+ˆ+Œ++ø-ü-€.˜/œ/€/„/Ø.Ü.à.è1ì1ð1€3„3ð2ô2è2ð2è2ì2Ð2Ô2¸2¼2Ø4Ü4È4Ì4À4Ä4´4À4´4¸4¨4¬44”4ˆ44ˆ4Œ4ð3ô3è3ð3è3ì3°5´5”5˜5Ä6È6˜6œ66”6„66„6ˆ6ø5ü5È7Ì7 7¤7¨7ü7€8ô9ø9ü9Ü9à9Ä9È9¨9¬9Œ99€9Œ9€9„9ø;ü; <¤<´<¸<ü<€=¤=¨=¸=¼=˜>œ>ø=ü=ø>ü>Ø>Ü>Ø?Ü?¸?¼?¸@¼@˜@œ@˜AœAø@ü@ÄAÈAÔAØAèAìAüA€BŒBB B¤B°B´BÄBÈBØBÜBèBìBøBüBøCüCäCèCÐCÔC¼CÀC¨C¬C”C˜C=H•sX$    `<GC("fH("MC0"f>8"ýD*C    h<â8    p<e/    x< ˜?Ã%    €<ŒL    ˆ<ŸB    <W8    ˜< L¹3  ?(*     <G    ¨<š #×<    °<‘)    ¸<%3 #     À<G<    È<˜F@# )    Ð<~€#¨2`#® F    Ø<¼;    à<2    è<€(    ð<Ù€¿# ¨?ð °?E    ø<0;    =‘1    =ô'    =d    =õD     =UH@"Âl¤:    (=$1    0=‡'    8=÷    @=ìȉD    H=0:    P='    `=³0    X=ЬY" ¸?1I    h=D À?Ä9    p=G0    x=­&    €=$    ˆ=±C    =X9    ˜=Û/     =9&    ¨=³    °=2ŒøL È? C    ¸=Ã8    À=F/    È=¤%    Ð=nHH"UCP"G´
mL    Ø=µœ €B    à=88    è=]HX"è ½ô —3 Ð?    *    ð={     ø=öF    >¸<    >w@ 3H ·7 Ø?ðp 0.    >ß@ $    >íà"ä à?yF     >(<    (>‰2    0>ì(    8>_    @>îE    H>;    P>š´UÀþ1    X>a(    `>Ñ    h>"ÀbE    p>;    x>~D‚: ð?1     >=6 è?§,    €>#    ˆ>ïI    >á?    ˜>/|h'    ¨>®" ø?ƒI    °>u?    ¸>i5    À>Ó+    È>:"    Ð>I    Ø>    ?    à>5    è>g+    ð>‹& @    ø>—d’C    ?99    ?¼/    ?&    ?”     ?ô4É$ìG    (?¹=    0?LH`"¸4    8?$/ @…%    @?¡Ø™<    p?\     h?CHh"$>|aB    P?NL    H?0= @x3    X?ê)    `?Ü)`þä
D¾¤a Ád oÄ Ô …ä üø C !]!+0!-@!TT!bh!`x!¼„!>p"pp"ÿ8à"_4 #‚/$PhaÆ*X$à%`$]`$2!    `<Z
x?%He$ò=q$G4†$L ˜?®*§$!Æ$ŸGË$l=ß$×.è$G%"ýKý$ B %Ù7ž"O.%¿$)%“K¦"…A3%3G @b7 @É-<%H$§"KJ%AX%á6p%H-~%JŠ%‚@•%_6œ%Æ,«%=#¶%J½%@à%ï5ë%Y,÷%Ð"&¢I &”?&ˆ5*&ò+T&o&(?s&5‚&†+—&í!¢&ÅHÃ&¼>æ&³4ù&+
'†!' H&'Ø=8'-4G'”*Q'!['…Gi'R=t'½.z'-%”'ãKš'óA¢' 3¯'w)´'yK×'kAö'H7ý'¯-(.$!(øJ+(ê@;(Ç6M(.-n(¥#‡(vJ¥(h@­(w1±(Ú'À(JÒ(ÛDí(Õ5)?,/)Ý;)oDY):g)™0w)ÿ&ƒ)v“)D¢)ª9µ)-0À)Ó!Ï)«Hß)¢>ð)™4*+$*l!+*ÞL<*ñBB*©8Q*z*W*æ d*kGw*8‚*£.’*%§*ØK¶"ëF¼"ÙA²*&B *@J *@ 7 I@ô2 l@õ< A4 A.A])Ö*†$ AÊÛ*_K(A_Fì*QA3A<+.7AAo2/+•-RAÒ(ZA$7+EH+ÞJ\+ÔEeAÐ@p+ƒ;w+­6pAä1+-‹+G(yA‹#—+·A\Jœ+HE¡+N@¬+ã7èLHèL÷:¸+ð¸NÉ+"6Î+\1Ó+Œ,Þ+¿'ã+#ï+/,ÔØNÕI“AÁD¨A  O=3°ah.PdÈ ÀOÇ?,h:ºA»5R,D ØOë0ÈA%,B PQ' u@n  P”"”,ÃeBiIÕ,UDvBú 8P[?Bü9ÐB° pPR5  @
€P0þ,¹+<-å&‚-
˜P "ÿB\OCøHŠCR
èPéC Ì@iQï>¬-9ºCæ4Í-0ÈCËQM+î-q&ÖC¹! .ëáC‘H..xCQ.ˆ>ïC9r.4“.¢/ýCæ*³.&DR!â.zDÄL/,PQÒG*D×BEDŸ=~D8–Dô3»D
/ãD`*Ek%,EÌ WE–0R7L â@TG ö@pˆRGB</=Q/8d/^3/‰.EÐ)½/ù$¸EB æ/¾K0ÑF%0¿AI0<e0†7Š0Ú2ÆEü-´0C)Ñ0l$ë04 R°×EEKðEEF'F7ACFô;dF7ˆFU2¯FœøS_    hT{-1¸(A1ú#ÈF+m1ÄJ™1ºEË1¶@ü1i;-2“6ÙFÊ1P2ú,çF-(t2q#˜2Ä2BJñ2.E34@@3Ý:b36õFB1Ž3r,Â3¥'ë3é"494»I]4§Dƒ4­?¦4N:Ë4¡5ô4Ñ015 ,Y57'–5z"Ô5©6OI06;DW6A?Gâ9Ÿ685Ì6e0÷6Ÿ+GË&07"(GBf7ÞHˆ7ÏC®7Õ>ê7v98Ì4I8ù/<G3+8W&½8Ÿ!ø8Ñ%9wHMG^C`9n>ž99Ú9e4:ˆ/[:$    ˆTÌ*iGæ%¥G8!ËG`óGªLH¸G1H½BYH…=Hu8¶HÚ3èHð.IF*^IQ%£I² ÑILÿI:G9J-B“Jü<¸Jê7KD3Ko.qK¶)»Kß$ LŠ    XYðZ([+  A¤KL·F‡L¥Až:e<Ll7±:À2¿:â-Î:p[))Ü:R$šL–ì:+KœL+F÷:A«LÚ;;ú6½L;2;a-;ž(ÉLà#";×LFÈ_©J4;ŸE?;›@_;N;p;x6“;¯1¢;ß,¸;(Â;V#â;‚í;'J<E<@8<Â:?<°`¯)ˆdMˆdØ$dАd$ ‘d‘dKÐw°F0žA Ð•ø #º$ô
€?
Œ?Z
?Û
„?N
x?
ˆ?Š
|?ç0$Š  XdH  `dì
 hd PdРxd pd½     €dÅ  b‹  pb0  Ðb° °aý c2 0cé     ðcÓÀØ#À¨#E€"/ÀŒèÀ,NÀ´
À\´@gžA@ã@±@@Q4ËÂ^w‡,¶tÕ~Z˜Á|2áÝѧD
>ú zÄç• _objc_getProperty_objc_setProperty_nonatomic_copy_OBJC_CLASS_$_NSMutableArray_OBJC_CLASS_$_NSArray_OBJC_CLASS_$_HDLSectionHeaderView_OBJC_IVAR_$_HDLSiriSceneListViewController._topBarView_OBJC_CLASS_$_TopBarView_OBJC_IVAR_$_HDLSiriSceneListViewController._tableView_OBJC_CLASS_$_UITableView_OBJC_CLASS_$_UIView_OBJC_CLASS_$_INShortcut_OBJC_IVAR_$_HDLSiriSceneListViewController._siriShortcutList___isPlatformVersionAtLeast_OBJC_CLASS_$_HDLRunSceneIntent__OBJC_$_PROP_LIST_NSObject__OBJC_$_PROTOCOL_INSTANCE_METHODS_OPT_NSObject__OBJC_$_PROTOCOL_METHOD_TYPES_NSObject__OBJC_$_PROTOCOL_INSTANCE_METHODS_NSObject_OBJC_METACLASS_$_NSObject__OBJC_LABEL_PROTOCOL_$_NSObject__OBJC_PROTOCOL_$_NSObject_OBJC_CLASS_$_NSUserDefaults___copy_helper_block_e8_32s40s48s___destroy_helper_block_e8_32s40s48s___copy_helper_block_e8_32s40s___destroy_helper_block_e8_32s40sl_.str_OBJC_CLASS_$_UIColor_OBJC_CLASS_$_INVoiceShortcutCenter_OBJC_CLASS_$_INUIEditVoiceShortcutViewController_OBJC_CLASS_$_INUIAddVoiceShortcutViewController__OBJC_$_PROP_LIST_HDLSiriSceneListViewController__OBJC_$_INSTANCE_VARIABLES_HDLSiriSceneListViewController__OBJC_$_INSTANCE_METHODS_HDLSiriSceneListViewController_OBJC_CLASS_$_HDLSiriSceneListViewController_OBJC_METACLASS_$_HDLSiriSceneListViewController__OBJC_CLASS_PROTOCOLS_$_HDLSiriSceneListViewController__OBJC_CLASS_RO_$_HDLSiriSceneListViewController__OBJC_METACLASS_RO_$_HDLSiriSceneListViewController_OBJC_CLASS_$_UIViewController_OBJC_METACLASS_$_UIViewController_HDLSiriSceneListCellIdentifier_CFBundleGetVersionNumber__dispatch_main_q_objc_enumerationMutation_OBJC_CLASS_$_UIApplication_objc_retain_OBJC_CLASS_$_UIScreen_OBJC_CLASS_$_HDLSiriSceneListCell___stack_chk_fail___block_descriptor_48_e8_32s40s_e29_v24?0"NSArray"8"NSError"16l___block_descriptor_56_e8_32s40s48s_e5_v8?0l___clang_at_available_requires_core_foundation_framework__NSConcreteStackBlock_objc_storeStrong_objc_autoreleaseReturnValue_objc_retainAutoreleaseReturnValue_objc_retainAutoreleasedReturnValue_objc_unsafeClaimAutoreleasedReturnValue__OBJC_$_PROTOCOL_INSTANCE_METHODS_OPT_UIScrollViewDelegate__OBJC_$_PROTOCOL_REFS_UIScrollViewDelegate__OBJC_$_PROTOCOL_METHOD_TYPES_UIScrollViewDelegate__OBJC_LABEL_PROTOCOL_$_UIScrollViewDelegate__OBJC_PROTOCOL_$_UIScrollViewDelegate__OBJC_$_PROTOCOL_INSTANCE_METHODS_OPT_UITableViewDelegate__OBJC_$_PROTOCOL_REFS_UITableViewDelegate__OBJC_$_PROTOCOL_METHOD_TYPES_UITableViewDelegate__OBJC_LABEL_PROTOCOL_$_UITableViewDelegate__OBJC_PROTOCOL_$_UITableViewDelegate__OBJC_$_PROTOCOL_REFS_INUIEditVoiceShortcutViewControllerDelegate__OBJC_$_PROTOCOL_METHOD_TYPES_INUIEditVoiceShortcutViewControllerDelegate__OBJC_$_PROTOCOL_INSTANCE_METHODS_INUIEditVoiceShortcutViewControllerDelegate__OBJC_LABEL_PROTOCOL_$_INUIEditVoiceShortcutViewControllerDelegate__OBJC_PROTOCOL_$_INUIEditVoiceShortcutViewControllerDelegate__OBJC_$_PROTOCOL_REFS_INUIAddVoiceShortcutViewControllerDelegate__OBJC_$_PROTOCOL_METHOD_TYPES_INUIAddVoiceShortcutViewControllerDelegate__OBJC_$_PROTOCOL_INSTANCE_METHODS_INUIAddVoiceShortcutViewControllerDelegate__OBJC_LABEL_PROTOCOL_$_INUIAddVoiceShortcutViewControllerDelegate__OBJC_PROTOCOL_$_INUIAddVoiceShortcutViewControllerDelegate__OBJC_$_PROTOCOL_REFS_INUIAddVoiceShortcutButtonDelegate__OBJC_$_PROTOCOL_METHOD_TYPES_INUIAddVoiceShortcutButtonDelegate__OBJC_$_PROTOCOL_INSTANCE_METHODS_INUIAddVoiceShortcutButtonDelegate__OBJC_LABEL_PROTOCOL_$_INUIAddVoiceShortcutButtonDelegate__OBJC_PROTOCOL_$_INUIAddVoiceShortcutButtonDelegate_objc_releasel_llvm.cmdline_OBJC_IVAR_$_HDLSiriSceneListViewController._titleName_OBJC_IVAR_$_HDLSiriSceneListViewController._tableViewStylel_llvm.embedded.module___45-[HDLSiriSceneListViewController refreshSiri]_block_invoke__objc_empty_cache_OBJC_IVAR_$_HDLSiriSceneListViewController._dataSource__OBJC_$_PROTOCOL_INSTANCE_METHODS_OPT_UITableViewDataSource__OBJC_$_PROTOCOL_REFS_UITableViewDataSource__OBJC_$_PROTOCOL_METHOD_TYPES_UITableViewDataSource__OBJC_$_PROTOCOL_INSTANCE_METHODS_UITableViewDataSource__OBJC_LABEL_PROTOCOL_$_UITableViewDataSource__OBJC_PROTOCOL_$_UITableViewDataSource___CFConstantStringClassReference___stack_chk_guard_objc_msgSend_OBJC_IVAR_$_HDLSiriSceneListViewController._homeId_objc_alloc_dispatch_asyncl__unnamed_cfstring__OBJC_SELECTOR_REFERENCES_l_OBJC_PROP_NAME_ATTR_l_OBJC_METH_VAR_TYPE_l_OBJC_CLASS_NAME_l_OBJC_METH_VAR_NAME_l_OBJC_CLASSLIST_SUP_REFS_$__OBJC_CLASSLIST_REFERENCES_$_-[HDLSiriSceneListViewController initView]-[HDLSiriSceneListViewController topBarView]-[HDLSiriSceneListViewController tableView]-[HDLSiriSceneListViewController initTableView]-[HDLSiriSceneListViewController siriShortcutList]-[HDLSiriSceneListViewController init]-[HDLSiriSceneListViewController .cxx_destruct]-[HDLSiriSceneListViewController goBack]-[HDLSiriSceneListViewController refreshSiri]-[HDLSiriSceneListViewController titleName]-[HDLSiriSceneListViewController tableViewStyle]-[HDLSiriSceneListViewController initLlanguage]-[HDLSiriSceneListViewController dataSource]-[HDLSiriSceneListViewController viewDidLoad]-[HDLSiriSceneListViewController homeId]-[HDLSiriSceneListViewController setTopBarView:]-[HDLSiriSceneListViewController setTableView:]-[HDLSiriSceneListViewController numberOfSectionsInTableView:]-[HDLSiriSceneListViewController getSceneINVoiceShortcut:]-[HDLSiriSceneListViewController getINShortcut:]-[HDLSiriSceneListViewController setSiriShortcutList:]-[HDLSiriSceneListViewController getSceneIntent:]-[HDLSiriSceneListViewController checkCurrentClass:]-[HDLSiriSceneListViewController addVoiceShortcutViewController:didFinishWithVoiceShortcut:error:]-[HDLSiriSceneListViewController editVoiceShortcutViewController:didUpdateVoiceShortcut:error:]-[HDLSiriSceneListViewController editVoiceShortcutViewController:didDeleteVoiceShortcutWithIdentifier:]-[HDLSiriSceneListViewController presentEditVoiceShortcutViewController:forAddVoiceShortcutButton:]-[HDLSiriSceneListViewController presentAddVoiceShortcutViewController:forAddVoiceShortcutButton:]-[HDLSiriSceneListViewController tableView:numberOfRowsInSection:]-[HDLSiriSceneListViewController tableView:viewForFooterInSection:]-[HDLSiriSceneListViewController tableView:heightForFooterInSection:]-[HDLSiriSceneListViewController tableView:viewForHeaderInSection:]-[HDLSiriSceneListViewController tableView:heightForHeaderInSection:]-[HDLSiriSceneListViewController scrollViewDidScroll:]-[HDLSiriSceneListViewController addOrEditVoiceShortcut:model:]-[HDLSiriSceneListViewController editVoiceShortcutViewControllerDidCancel:]-[HDLSiriSceneListViewController addVoiceShortcutViewControllerDidCancel:]-[HDLSiriSceneListViewController tableView:didSelectRowAtIndexPath:]-[HDLSiriSceneListViewController tableView:heightForRowAtIndexPath:]-[HDLSiriSceneListViewController tableView:cellForRowAtIndexPath:]-[HDLSiriSceneListViewController getModelWithNSIndexPath:]-[HDLSiriSceneListViewController setTitleName:]-[HDLSiriSceneListViewController setTableViewStyle:]-[HDLSiriSceneListViewController setTopBarViewWithTitle:]-[HDLSiriSceneListViewController setDataSource:]-[HDLSiriSceneListViewController setHomeId:]ltmp9l_OBJC_METH_VAR_TYPE_.399l_OBJC_METH_VAR_TYPE_.299_OBJC_SELECTOR_REFERENCES_.199_OBJC_SELECTOR_REFERENCES_.99l_OBJC_METH_VAR_NAME_.389l_OBJC_METH_VAR_TYPE_.289_OBJC_SELECTOR_REFERENCES_.189_OBJC_SELECTOR_REFERENCES_.89l_OBJC_METH_VAR_NAME_.379l_OBJC_METH_VAR_TYPE_.279l_OBJC_METH_VAR_NAME_.179l_OBJC_METH_VAR_NAME_.79l_OBJC_METH_VAR_NAME_.369l_OBJC_METH_VAR_TYPE_.269l_OBJC_METH_VAR_NAME_.169_OBJC_SELECTOR_REFERENCES_.69l_OBJC_METH_VAR_NAME_.359l_OBJC_PROP_NAME_ATTR_.259l_OBJC_METH_VAR_NAME_.159_OBJC_SELECTOR_REFERENCES_.59l_OBJC_PROP_NAME_ATTR_.449l_OBJC_METH_VAR_NAME_.349l_OBJC_METH_VAR_TYPE_.249_OBJC_SELECTOR_REFERENCES_.149_OBJC_CLASSLIST_REFERENCES_$_.49l_OBJC_METH_VAR_TYPE_.439l_OBJC_METH_VAR_NAME_.339l_OBJC_METH_VAR_NAME_.239_OBJC_SELECTOR_REFERENCES_.139l__unnamed_cfstring_.39l_OBJC_METH_VAR_NAME_.429l_OBJC_METH_VAR_TYPE_.329l_OBJC_METH_VAR_NAME_.229_OBJC_CLASSLIST_REFERENCES_$_.129_OBJC_SELECTOR_REFERENCES_.29ltmp19l_OBJC_CLASS_NAME_.419l_OBJC_METH_VAR_NAME_.319_OBJC_SELECTOR_REFERENCES_.219_OBJC_SELECTOR_REFERENCES_.119l__unnamed_cfstring_.19l_OBJC_METH_VAR_TYPE_.409l_OBJC_METH_VAR_TYPE_.309l_OBJC_METH_VAR_NAME_.209l_OBJC_METH_VAR_NAME_.109l_OBJC_METH_VAR_NAME_.9ltmp8l_OBJC_METH_VAR_TYPE_.398l_OBJC_METH_VAR_NAME_.298l_OBJC_METH_VAR_NAME_.198l_OBJC_METH_VAR_NAME_.98l_OBJC_METH_VAR_NAME_.388l_OBJC_METH_VAR_NAME_.288l_OBJC_METH_VAR_NAME_.188l_OBJC_METH_VAR_NAME_.88l_OBJC_METH_VAR_TYPE_.378l_OBJC_METH_VAR_TYPE_.278_OBJC_SELECTOR_REFERENCES_.178_OBJC_CLASSLIST_REFERENCES_$_.78l_OBJC_METH_VAR_NAME_.368l_OBJC_METH_VAR_NAME_.268_OBJC_CLASSLIST_REFERENCES_$_.168l_OBJC_METH_VAR_NAME_.68l_OBJC_METH_VAR_NAME_.358l_OBJC_PROP_NAME_ATTR_.258_OBJC_SELECTOR_REFERENCES_.158l_OBJC_METH_VAR_NAME_.58l_OBJC_PROP_NAME_ATTR_.448l_OBJC_METH_VAR_NAME_.348l_OBJC_METH_VAR_NAME_.248l_OBJC_METH_VAR_NAME_.148_OBJC_CLASSLIST_REFERENCES_$_.48l_OBJC_METH_VAR_NAME_.438l_OBJC_METH_VAR_TYPE_.338l_OBJC_METH_VAR_NAME_.238l_OBJC_METH_VAR_NAME_.138l_.str.38l_OBJC_METH_VAR_TYPE_.428l_OBJC_METH_VAR_NAME_.328l_OBJC_METH_VAR_TYPE_.228_OBJC_SELECTOR_REFERENCES_.128l_OBJC_METH_VAR_NAME_.28ltmp18l_OBJC_METH_VAR_TYPE_.418l_OBJC_METH_VAR_TYPE_.318l_OBJC_METH_VAR_NAME_.218l_OBJC_METH_VAR_NAME_.118l_.str.18l_OBJC_METH_VAR_TYPE_.408l_OBJC_METH_VAR_TYPE_.308_OBJC_SELECTOR_REFERENCES_.208_OBJC_SELECTOR_REFERENCES_.108_OBJC_SELECTOR_REFERENCES_.8ltmp7l_OBJC_METH_VAR_TYPE_.397l_OBJC_METH_VAR_TYPE_.297_OBJC_SELECTOR_REFERENCES_.197_OBJC_SELECTOR_REFERENCES_.97l_OBJC_METH_VAR_NAME_.387l_OBJC_METH_VAR_TYPE_.287_OBJC_CLASSLIST_REFERENCES_$_.187_OBJC_SELECTOR_REFERENCES_.87l_OBJC_METH_VAR_NAME_.377l_OBJC_METH_VAR_NAME_.277l_OBJC_METH_VAR_NAME_.177_OBJC_SELECTOR_REFERENCES_.77l_OBJC_METH_VAR_NAME_.367l_OBJC_CLASS_NAME_.267_OBJC_SELECTOR_REFERENCES_.167_OBJC_SELECTOR_REFERENCES_.67l_OBJC_METH_VAR_NAME_.357l_OBJC_PROP_NAME_ATTR_.257l_OBJC_METH_VAR_NAME_.157_OBJC_SELECTOR_REFERENCES_.57l_OBJC_PROP_NAME_ATTR_.447l_OBJC_METH_VAR_NAME_.347l_OBJC_METH_VAR_TYPE_.247_OBJC_SELECTOR_REFERENCES_.147_OBJC_SELECTOR_REFERENCES_.47l_OBJC_METH_VAR_TYPE_.437l_OBJC_METH_VAR_NAME_.337l_OBJC_METH_VAR_TYPE_.237_OBJC_SELECTOR_REFERENCES_.137_OBJC_SELECTOR_REFERENCES_.37l_OBJC_METH_VAR_NAME_.427l_OBJC_METH_VAR_NAME_.327l_OBJC_METH_VAR_NAME_.227l_OBJC_METH_VAR_NAME_.127_OBJC_SELECTOR_REFERENCES_.27ltmp17l_OBJC_METH_VAR_TYPE_.417l_OBJC_METH_VAR_NAME_.317_OBJC_SELECTOR_REFERENCES_.217_OBJC_SELECTOR_REFERENCES_.117_OBJC_SELECTOR_REFERENCES_.17l_OBJC_METH_VAR_TYPE_.407l_OBJC_METH_VAR_TYPE_.307l_OBJC_METH_VAR_NAME_.207l_OBJC_METH_VAR_NAME_.107l_OBJC_METH_VAR_NAME_.7ltmp6l_OBJC_METH_VAR_TYPE_.396l_OBJC_METH_VAR_NAME_.296l_OBJC_METH_VAR_NAME_.196l_OBJC_METH_VAR_NAME_.96l_OBJC_METH_VAR_NAME_.386l_OBJC_METH_VAR_NAME_.286_OBJC_SELECTOR_REFERENCES_.186l_OBJC_METH_VAR_NAME_.86l_OBJC_METH_VAR_TYPE_.376l_OBJC_METH_VAR_NAME_.276_OBJC_SELECTOR_REFERENCES_.176l_OBJC_METH_VAR_NAME_.76l_OBJC_METH_VAR_NAME_.366l_OBJC_METH_VAR_TYPE_.266l_OBJC_METH_VAR_NAME_.166l_OBJC_METH_VAR_NAME_.66l_OBJC_METH_VAR_NAME_.356l_OBJC_PROP_NAME_ATTR_.256_OBJC_SELECTOR_REFERENCES_.156l_OBJC_METH_VAR_NAME_.56l_OBJC_PROP_NAME_ATTR_.446l_OBJC_METH_VAR_TYPE_.346l_OBJC_METH_VAR_NAME_.246l_OBJC_METH_VAR_NAME_.146l_OBJC_METH_VAR_NAME_.46l_OBJC_METH_VAR_NAME_.436l_OBJC_METH_VAR_NAME_.336l_OBJC_METH_VAR_TYPE_.236l_OBJC_METH_VAR_NAME_.136l_OBJC_METH_VAR_NAME_.36l_OBJC_METH_VAR_NAME_.426l_OBJC_METH_VAR_NAME_.326l_OBJC_METH_VAR_TYPE_.226_OBJC_SELECTOR_REFERENCES_.126l_OBJC_METH_VAR_NAME_.26ltmp16l_OBJC_METH_VAR_TYPE_.416l_OBJC_METH_VAR_TYPE_.316l_OBJC_METH_VAR_NAME_.216l_OBJC_METH_VAR_NAME_.116l_OBJC_METH_VAR_NAME_.16l_OBJC_METH_VAR_TYPE_.406l_OBJC_METH_VAR_TYPE_.306_OBJC_CLASSLIST_REFERENCES_$_.206_OBJC_SELECTOR_REFERENCES_.106_OBJC_SELECTOR_REFERENCES_.6ltmp5l_OBJC_METH_VAR_NAME_.395l_OBJC_METH_VAR_TYPE_.295_OBJC_SELECTOR_REFERENCES_.195_OBJC_SELECTOR_REFERENCES_.95l_OBJC_METH_VAR_TYPE_.385l_OBJC_METH_VAR_TYPE_.285l_OBJC_METH_VAR_NAME_.185_OBJC_SELECTOR_REFERENCES_.85l_OBJC_METH_VAR_NAME_.375l_OBJC_METH_VAR_NAME_.275l_OBJC_METH_VAR_NAME_.175_OBJC_SELECTOR_REFERENCES_.75l_OBJC_METH_VAR_NAME_.365l_OBJC_METH_VAR_TYPE_.265_OBJC_SELECTOR_REFERENCES_.165_OBJC_SELECTOR_REFERENCES_.65l_OBJC_METH_VAR_NAME_.355l_OBJC_PROP_NAME_ATTR_.255l_OBJC_METH_VAR_NAME_.155_OBJC_SELECTOR_REFERENCES_.55l_OBJC_PROP_NAME_ATTR_.445l_OBJC_METH_VAR_NAME_.345l_OBJC_METH_VAR_NAME_.245_OBJC_SELECTOR_REFERENCES_.145_OBJC_SELECTOR_REFERENCES_.45l_OBJC_METH_VAR_NAME_.435l_OBJC_METH_VAR_TYPE_.335l_OBJC_METH_VAR_NAME_.235_OBJC_SELECTOR_REFERENCES_.135l__unnamed_cfstring_.35l_OBJC_METH_VAR_NAME_.425l_OBJC_METH_VAR_TYPE_.325l_OBJC_CLASS_NAME_.225l_OBJC_METH_VAR_NAME_.125l__unnamed_cfstring_.25ltmp15l_OBJC_METH_VAR_TYPE_.415l_OBJC_METH_VAR_NAME_.315_OBJC_SELECTOR_REFERENCES_.215_OBJC_CLASSLIST_REFERENCES_$_.115_OBJC_CLASSLIST_REFERENCES_$_.15l_OBJC_METH_VAR_TYPE_.405l_OBJC_METH_VAR_TYPE_.305_OBJC_SELECTOR_REFERENCES_.205l_OBJC_METH_VAR_NAME_.105l_OBJC_METH_VAR_NAME_.5ltmp4l_OBJC_METH_VAR_NAME_.394l_OBJC_METH_VAR_NAME_.294l_OBJC_METH_VAR_NAME_.194l_OBJC_METH_VAR_NAME_.94l_OBJC_METH_VAR_NAME_.384l_OBJC_METH_VAR_NAME_.284_OBJC_SELECTOR_REFERENCES_.184l_OBJC_METH_VAR_NAME_.84l_OBJC_METH_VAR_NAME_.374l_OBJC_CLASS_NAME_.274_OBJC_SELECTOR_REFERENCES_.174l_OBJC_METH_VAR_NAME_.74l_OBJC_METH_VAR_NAME_.364l_OBJC_METH_VAR_NAME_.264l_OBJC_METH_VAR_NAME_.164l_OBJC_METH_VAR_NAME_.64l_OBJC_METH_VAR_TYPE_.354l_OBJC_PROP_NAME_ATTR_.254_OBJC_CLASSLIST_REFERENCES_$_.154l_OBJC_METH_VAR_NAME_.54l_OBJC_PROP_NAME_ATTR_.444l_OBJC_METH_VAR_TYPE_.344l_OBJC_METH_VAR_TYPE_.244l_OBJC_METH_VAR_NAME_.144l_OBJC_METH_VAR_NAME_.44l_OBJC_METH_VAR_TYPE_.434l_OBJC_METH_VAR_TYPE_.334l_OBJC_METH_VAR_TYPE_.234l_OBJC_METH_VAR_NAME_.134l_.str.34l_OBJC_METH_VAR_NAME_.424l_OBJC_METH_VAR_NAME_.324l_OBJC_CLASS_NAME_.224_OBJC_CLASSLIST_REFERENCES_$_.124l_.str.24ltmp14l_OBJC_METH_VAR_TYPE_.414l_OBJC_METH_VAR_NAME_.314l_OBJC_METH_VAR_NAME_.214_OBJC_SELECTOR_REFERENCES_.114_OBJC_SELECTOR_REFERENCES_.14l_OBJC_METH_VAR_TYPE_.404l_OBJC_METH_VAR_TYPE_.304l_OBJC_METH_VAR_NAME_.204_OBJC_SELECTOR_REFERENCES_.104_OBJC_SELECTOR_REFERENCES_.4ltmp3l_OBJC_METH_VAR_NAME_.393l_OBJC_METH_VAR_NAME_.293_OBJC_SELECTOR_REFERENCES_.193_OBJC_SELECTOR_REFERENCES_.93l_OBJC_METH_VAR_NAME_.383l_OBJC_METH_VAR_TYPE_.283l_OBJC_METH_VAR_NAME_.183_OBJC_SELECTOR_REFERENCES_.83l_OBJC_METH_VAR_NAME_.373l_OBJC_METH_VAR_TYPE_.273l_OBJC_METH_VAR_NAME_.173_OBJC_SELECTOR_REFERENCES_.73l_OBJC_METH_VAR_NAME_.363l_OBJC_METH_VAR_TYPE_.263_OBJC_CLASSLIST_REFERENCES_$_.163_OBJC_SELECTOR_REFERENCES_.63l_OBJC_PROP_NAME_ATTR_.453l_OBJC_METH_VAR_NAME_.353l_OBJC_METH_VAR_NAME_.253_OBJC_SELECTOR_REFERENCES_.153_OBJC_SELECTOR_REFERENCES_.53l_OBJC_PROP_NAME_ATTR_.443l_OBJC_METH_VAR_NAME_.343l_OBJC_METH_VAR_NAME_.243_OBJC_SELECTOR_REFERENCES_.143_OBJC_SELECTOR_REFERENCES_.43l_OBJC_METH_VAR_NAME_.433l_OBJC_METH_VAR_TYPE_.333l_OBJC_METH_VAR_NAME_.233_OBJC_SELECTOR_REFERENCES_.133_OBJC_SELECTOR_REFERENCES_.33l_OBJC_METH_VAR_TYPE_.423l_OBJC_METH_VAR_NAME_.323_OBJC_SELECTOR_REFERENCES_.223_OBJC_SELECTOR_REFERENCES_.123_OBJC_SELECTOR_REFERENCES_.23ltmp13l_OBJC_METH_VAR_TYPE_.413l_OBJC_METH_VAR_NAME_.313_OBJC_CLASSLIST_REFERENCES_$_.213l_OBJC_METH_VAR_NAME_.113l_OBJC_METH_VAR_NAME_.13l_OBJC_METH_VAR_TYPE_.403l_OBJC_METH_VAR_TYPE_.303_OBJC_SELECTOR_REFERENCES_.203l_OBJC_METH_VAR_NAME_.103l_OBJC_METH_VAR_NAME_.3_objc_msgSendSuper2ltmp2___45-[HDLSiriSceneListViewController refreshSiri]_block_invoke_2lCPI1_2l_OBJC_METH_VAR_NAME_.392l_OBJC_METH_VAR_TYPE_.292l_OBJC_METH_VAR_NAME_.192l_OBJC_METH_VAR_NAME_.92l_OBJC_METH_VAR_NAME_.382l_OBJC_METH_VAR_NAME_.282_OBJC_SELECTOR_REFERENCES_.182l_OBJC_METH_VAR_NAME_.82l_OBJC_METH_VAR_TYPE_.372l_OBJC_METH_VAR_TYPE_.272_OBJC_SELECTOR_REFERENCES_.172l_OBJC_METH_VAR_NAME_.72l_OBJC_METH_VAR_NAME_.362l_OBJC_METH_VAR_NAME_.262_OBJC_SELECTOR_REFERENCES_.162l_OBJC_METH_VAR_NAME_.62l_OBJC_PROP_NAME_ATTR_.452l_OBJC_METH_VAR_NAME_.352l_OBJC_METH_VAR_NAME_.252l_OBJC_METH_VAR_NAME_.152l_OBJC_METH_VAR_NAME_.52l_OBJC_PROP_NAME_ATTR_.442l_OBJC_METH_VAR_NAME_.342l_OBJC_METH_VAR_NAME_.242l_OBJC_METH_VAR_NAME_.142l_OBJC_METH_VAR_NAME_.42l_OBJC_METH_VAR_TYPE_.432l_OBJC_METH_VAR_TYPE_.332l_OBJC_METH_VAR_TYPE_.232l_OBJC_METH_VAR_NAME_.132l_OBJC_METH_VAR_NAME_.32ltmp22l_OBJC_METH_VAR_NAME_.422l_OBJC_METH_VAR_NAME_.322l_OBJC_METH_VAR_NAME_.222l_OBJC_METH_VAR_NAME_.122l_OBJC_METH_VAR_NAME_.22ltmp12l_OBJC_METH_VAR_TYPE_.412l_OBJC_METH_VAR_NAME_.312_OBJC_SELECTOR_REFERENCES_.212_OBJC_SELECTOR_REFERENCES_.112_OBJC_SELECTOR_REFERENCES_.12l_OBJC_METH_VAR_TYPE_.402l_OBJC_METH_VAR_TYPE_.302l_OBJC_METH_VAR_NAME_.202_OBJC_SELECTOR_REFERENCES_.102_OBJC_SELECTOR_REFERENCES_.2ltmp1lCPI1_1lCPI10_1l_OBJC_METH_VAR_NAME_.391l_OBJC_METH_VAR_NAME_.291_OBJC_SELECTOR_REFERENCES_.191_OBJC_SELECTOR_REFERENCES_.91l_OBJC_METH_VAR_NAME_.381l_OBJC_CLASS_NAME_.281l_OBJC_METH_VAR_NAME_.181_OBJC_CLASSLIST_REFERENCES_$_.81l_OBJC_METH_VAR_NAME_.371l_OBJC_METH_VAR_TYPE_.271l_OBJC_METH_VAR_NAME_.171_OBJC_SELECTOR_REFERENCES_.71l_OBJC_METH_VAR_NAME_.361l_OBJC_METH_VAR_TYPE_.261l_OBJC_METH_VAR_NAME_.161_OBJC_SELECTOR_REFERENCES_.61l_OBJC_PROP_NAME_ATTR_.451l_OBJC_METH_VAR_NAME_.351l_OBJC_METH_VAR_NAME_.251_OBJC_SELECTOR_REFERENCES_.151_OBJC_SELECTOR_REFERENCES_.51l_OBJC_PROP_NAME_ATTR_.441l_OBJC_METH_VAR_NAME_.341l_OBJC_METH_VAR_TYPE_.241_OBJC_SELECTOR_REFERENCES_.141_OBJC_SELECTOR_REFERENCES_.41l_OBJC_METH_VAR_NAME_.431l_OBJC_METH_VAR_TYPE_.331l_OBJC_METH_VAR_NAME_.231_OBJC_SELECTOR_REFERENCES_.131l__unnamed_cfstring_.31ltmp21l_OBJC_METH_VAR_TYPE_.421l_OBJC_METH_VAR_NAME_.321l_.str.221_OBJC_SELECTOR_REFERENCES_.121_OBJC_SELECTOR_REFERENCES_.21ltmp11l_OBJC_METH_VAR_TYPE_.411l_OBJC_CLASS_NAME_.311l_OBJC_METH_VAR_NAME_.211l_OBJC_METH_VAR_NAME_.111l_OBJC_METH_VAR_NAME_.11l_OBJC_METH_VAR_TYPE_.401l_OBJC_METH_VAR_TYPE_.301_OBJC_SELECTOR_REFERENCES_.201l_OBJC_METH_VAR_NAME_.101l_OBJC_METH_VAR_NAME_.1ltmp0lCPI27_0lCPI26_0lCPI5_0lCPI12_0lCPI1_0lCPI10_0l_OBJC_METH_VAR_TYPE_.390l_OBJC_METH_VAR_NAME_.290l_OBJC_METH_VAR_NAME_.190l_OBJC_METH_VAR_NAME_.90l_OBJC_METH_VAR_NAME_.380l_OBJC_METH_VAR_TYPE_.280_OBJC_SELECTOR_REFERENCES_.180_OBJC_SELECTOR_REFERENCES_.80l_OBJC_METH_VAR_NAME_.370l_OBJC_METH_VAR_NAME_.270_OBJC_SELECTOR_REFERENCES_.170l_OBJC_METH_VAR_NAME_.70l_OBJC_METH_VAR_NAME_.360l_OBJC_METH_VAR_TYPE_.260_OBJC_SELECTOR_REFERENCES_.160l_OBJC_METH_VAR_NAME_.60l_OBJC_PROP_NAME_ATTR_.450l_OBJC_METH_VAR_NAME_.350l_OBJC_METH_VAR_NAME_.250l_OBJC_METH_VAR_NAME_.150l_OBJC_METH_VAR_NAME_.50l_OBJC_PROP_NAME_ATTR_.440l_OBJC_METH_VAR_NAME_.340l_OBJC_METH_VAR_NAME_.240l_OBJC_METH_VAR_NAME_.140l_OBJC_METH_VAR_NAME_.40l_OBJC_METH_VAR_TYPE_.430l_OBJC_METH_VAR_TYPE_.330l_OBJC_METH_VAR_TYPE_.230l_OBJC_METH_VAR_NAME_.130l_.str.30ltmp20l_OBJC_METH_VAR_TYPE_.420l_OBJC_METH_VAR_NAME_.320l_.str.220l_OBJC_METH_VAR_NAME_.120l_OBJC_METH_VAR_NAME_.20ltmp10l_OBJC_METH_VAR_TYPE_.410l_OBJC_CLASS_NAME_.310_OBJC_SELECTOR_REFERENCES_.210_OBJC_SELECTOR_REFERENCES_.110_OBJC_SELECTOR_REFERENCES_.10l_OBJC_METH_VAR_TYPE_.400l_OBJC_METH_VAR_NAME_.300l_OBJC_METH_VAR_NAME_.200_OBJC_CLASSLIST_REFERENCES_$_.100l_OBJC_LABEL_CLASS_$#1/28           0           0     0     100644  39596     `
HDLSectionHeaderView.oÏúíþ ˜  ¸lk¸ lk__text__TEXTˆ¸ (wî€__literal8__TEXTˆX@__objc_data__DATAàP˜˜~__objc_superrefs__DATA0èØ~__objc_methname__TEXT8ôð__objc_selrefs__DATA0
èà~__objc_classrefs__DATAÀ
(xp__objc_ivar__DATAè
 __cstring__TEXTô
(¬__cfstring__DATA  `ؘ__objc_classname__TEXT€ 8__objc_const__DATA˜ @PÈ6__objc_methtype__TEXTØ __objc_classlist__DATAh x__bitcode__LLVMp(__cmdline__LLVMq!)__objc_imageinfo__DATA’!J-__debug_loc__DWARFš!§R-__debug_abbrev__DWARFA(„ù3__debug_info__DWARFÅ*M}6€ __debug_str__DWARF>®ÊI__apple_names__DWARFÀV\xb__apple_objc__DWARFYdÔd__apple_namespac__DWARF€Y$8e__apple_types__DWARF¤Y#\e__compact_unwind__LDÈ``€là __debug_line__DWARF(bD    àm8‚% .@‚(h„X8 Pxx}- -frameworkUIKit-(-frameworkFileProvider-0-frameworkUserNotifications- -frameworkCoreText-(-frameworkQuartzCore-(-frameworkCoreImage- -frameworkImageIO-(-frameworkCoreVideo- -frameworkOpenGLES- -frameworkMetal-(-frameworkIOSurface-(-frameworkCoreGraphics-(-frameworkFoundation-(-frameworkCFNetwork- -frameworkSecurity-(-frameworkCoreFoundationÿÑöW©ôO©ý{©ýѐ@ùà#©@ùà‘”óªÀ    ´@ù@ù”ýª”ôª@ù”@ù@ýàgžágžàª”ઔ@ù@ù”ýª”ôª@ùàªâª”ઔ@ùઔýª”ôª@ùàªáªâª”ઔ@ùઔýª”ôªàªáªâª”ઔ@ùઔýª”ôªàªáªâª”ઔàªý{C©ôOB©öWA©ÿ‘À_Öé#»mø_©öW©ôO©ý{©ý‘󪐀¹hwøàµ@ù@ù”ýª”ôª@ù”øÒgžH(`@ù@ùB‘f”ýª”õª@ù@ù@ý@ý@ýn”ýª”öª@ù„‘fÐdÐfનNâªãª”ýª”hjwø`j7øàª”ઔઔઔ`jwø@ù€Ò”`jwøý{D©ôOC©öWB©ø_A©é#Ålé#»mø_©öW©ôO©ý{©ý‘󪐀¹hwø    µ@ù@ù”ýª”ôª@ù”øÒgžH(`@ù@ùB‘e”ýª”õª@ù@ù@ý@ý@ýn”ýª”öª@ù„‘@ýf0fનNâªãª”ýª”hjwø`j7øàª”ઔઔઔ`jwø@ù€Ò”`jwøý{D©ôOC©öWB©ø_A©é#ÅlöW½©ôO©ý{©ýƒ‘󪐀¹hvøàµ@ù”ôª@ù@ù”ýª”õª@ù”vB(`@ù
èÒgžfnઔhjvø`j6øàª”ઔ@ù@ù@ý@ý@ýn”ýª”ôª`jvø@ù⪔ઔ`jvøý{B©ôOA©öWèë+ºmé#mø_©öW©ôO©ý{©ýC‘ôªàªõªh£NI¢N*¡N  N”óªàª”ôª@ùઔ÷ªàª”@ù`«NAªN"©N¨N”õª@ù@ù”ýª”öª@ùàªâª”ઔ@ùàªâª”ઔӴ@ùàªâª”@ùàªâª”ઔઔàªý{E©ôOD©öWC©ø_B©é#Amë+ÆlÀ_ÖöW½©ôO©ý{©ýƒ‘óª@ùઔõªàªáª”ýª”óª@ù⪔ઔàªý{B©ôOA©öWè᪐€¹‹áª€¹‹áª€¹‹ôO¾©ý{©ýC‘󪐀¹‹€Ò”€¹`‹€Ò”€¹`‹€Òý{A©ôO¨@P@Ñ?‘à?Ÿžžžžžî?è?ùøøøøøè?›šššššê?€B@ží?¾½½½½½í?ÞÝÝÝÝÝí?initWithFrame:mainScreenboundssetFrame:whiteColorsetBackgroundColor:titleLabeladdSubview:messageLabellineViewfontWithName:size:colorWithRed:green:blue:alpha:NewLabel:font:textColor:text:setTextAlignment:clearColorsetFont:setTextColor:setText:backButtonClicksetTitle:setTitleLabel:setMessageLabel:setLineView:.cxx_destruct_titleLabel_messageLabel_lineViewtitleLabelT@"UILabel",&,N,V_titleLabelmessageLabelT@"UILabel",&,N,V_messageLabellineViewT@"UIView",&,N,V_lineViewPingFangSC-SemiboldPingFangSC-RegularÈÈÈHDLSectionHeaderView…((  „ @48@0:8{CGRect={CGPoint=dd}{CGSize=dd}}16@16@0:8@72@0:8{CGRect={CGPoint=dd}{CGSize=dd}}16@48@56@64v16@0:8v24@0:8@16@"UILabel"@"UIView"-cc1-triplearm64-apple-ios11.0.0-emit-obj--mrelax-relocations-disable-free-disable-llvm-verifier-discard-value-names-main-file-nameHDLSectionHeaderView.m-mrelocation-modelpic-pic-level2-mframe-pointer=non-leaf-fno-strict-return-fno-rounding-math-munwind-tables-target-sdk-version=15.0-fvisibility-inlines-hidden-static-local-var-target-cpuapple-a7-target-feature+fp-armv8-target-feature+neon-target-feature+crypto-target-feature+zcm-target-feature+zcz-target-feature+sha2-target-feature+aes-target-abidarwinpcs-fallow-half-arguments-and-returns-debug-info-kind=standalone-dwarf-version=4-debugger-tuning=lldb-target-linker-version711-resource-dir/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0-dependency-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/HDLSectionHeaderView.d-skip-unused-modulemap-deps-MTdependencies-isysroot/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-generated-files.hmap-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-project-headers.hmap-DNS_BLOCK_ASSERTIONS=1-DOBJC_OLD_DISPATCH_PROTOTYPES=0-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-own-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-all-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos/include-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-normal/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-F/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos-internal-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/local/include-internal-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include-Os-std=gnu11-fdebug-compilation-dir/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri-ferror-limit19-fmacro-backtrace-limit0-stack-protector1-mdarwin-stkchk-strong-link-fblocks-fencode-extended-block-signature-fregister-global-dtors-with-atexit-fgnuc-version=4.2.1-fmodules-fimplicit-module-maps-fmodules-cache-path=/Users/jlchen/Library/Developer/Xcode/DerivedData/ModuleCache.noindex-fmodules-prune-interval=86400-fmodules-prune-after=345600-fbuild-session-timestamp=1638169220055526327-fmodules-validate-once-per-build-session-fmodules-validate-system-headers-fobjc-runtime=ios-11.0.0-fobjc-arc-fobjc-weak-fobjc-exceptions-fexceptions-fpascal-strings-fmax-type-align=16-fdiagnostics-show-note-include-stack-vectorize-loops-vectorize-slp-serialize-diagnostic-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/HDLSectionHeaderView.dia-clang-vendor-feature=+nullptrToBoolConversion-clang-vendor-feature=+messageToSelfInClassMethodIdReturnType-clang-vendor-feature=+disableInferNewAvailabilityFromInit-clang-vendor-feature=+disableNeonImmediateRangeCheck-clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation-fno-odr-hash-protocols-clang-vendor-feature=+revert09abecef7bbf@40Ÿ4xc(Q(„£QŸ„ P ÐcÐà£PŸ„ÀQÀÈ£QŸàüPü0c0@£PŸàQ(£QŸ@TPTDcDL£PŸ@pQp<£QŸLpPpˆ£PŸLˆQˆˆ£QŸLˆRˆ˜£RŸ˜¤e¤¨PLpSpˆPLlTld”PÔxeŒ P ¸c¸ÀPŒ°Q°ø£QŸŒ¬R¬°PøP £PŸøüQü £QŸøüRü Q P £PŸ Q £QŸ R Q 0P04£PŸ $Q$4£QŸ $R$4Q4DPD„c„ˆ£PŸ4TQTˆ£QŸ%‚|ïáå I : ; ( I: ; $> (ì : ; æ     I8
€„èI: ; ë I: ; 8 2  : ; æ €„èI: ; é뀄èI: ; ë €„èI: ; éë I: ;I<I  I8 €„èI: ;뀄èI: ;éë : ;  I: ; 8 &II!I7 $ > |€|: ;  .@dz: ; 'Iá!I4": ; I#: ; I$4: ; I%.ç@dz: ; 'á&I4'.@dz: ; 'á(.ç@dz: ; '4á)I*.@dz: ; '4áI/ˆ^_‚–¬ÁÚio y^ñz 2Uw¢^Í&ì^@Pj„š¶Ò^ð/(I+b“«Æìÿÿ6v ^*P{y®ÀӐ+ã#ð5eL
tª È@瀀$€ E€€g€€‰€€€€£À€€€€ä€€€€ €€€€.€€€€S€€€€s€€€€—€€€€¶€€€€    ×€€€€
ô€€€€ {k             "     Ö
ºú
" H
¤ú
"H
±."H ºú
"  Æú
" Ô." -    ‘    z
Å ë“A@ Ð ˜ç N
^™L
 äšAœAC
$† h
9Ä
¤L
aÏ
§h
{ä
©L”ï
²A 4    9    Ô
^    ;Al    =A    @A§    CA
¸    jA¥ ÙmA @     5 I    ë 8÷M     0üS    z„     N‰     Ä    H    Ô
Ò    ^+ à    2ø    
 
6     
 
+=     
-
dD(
H
S
P
T X
W`
 j
Xr
 
|
|
”
}
¬
†‚!
Ë
†ƒ!
Ú
†!
ì
†Ž! þ
¨  ¨ # d 1 Ç h ¨ p ¨  w w! Ž w"i :
    Ô
B
+‹ »
c    Ô
Ä
+i±     ¶ I    ÷ÒH Q =é
.    Ô
 ƈ     
[ ò     
d     ’     
n ò™     
z     ž     
‡ ]    £     
ß Æ°      å µì      õ º            
1 äÓ
< dà(
F ]    ÿ     X ä
]      k ¨3t Æ<      1
E(¨     O     ¶ Æe     Å <
k(ê G
t(G
u('p{     >E    N›     i¤     }R
À     ’É     ©]
Ï Ì    Õ     Ùr
Ú     ç}
à(    î     ]
ó pù     &     9¨Kd(Sd(e0     u    6     ˆ]
= ”pB     ¢1    F     ¯    J     ¼ˆ
T آ
¶(í†ä(ò¨êû¢
ö(Ñ 2  .  ò/B 1    0ý' ' /     @     *    1 J9 <    G  G N     T     h    ‘ ‘ €Ÿ     £     §     «     ¯      ³     (·     0»     8¿     @à     HÇ     PË     XÏ     `Ó     h×     pÛ     x†‘ †Ô †ý Vyh
¹ m
Ä‚ã#†ó“
Ç ˜
ѧ
à    Ô
B
+^L!Ô
m    Ôpñz›Í&ÿ
Å    Ö
͆h
ÒF H4
´š H4
ˆš H
¢1    L
àL
ëL
,ö h
Uš $H j%vN Ð 'ç N „(ŒN
–^.L
¤3L
¾4L
Ñ    5L
ä:L
    #?L
    JL
3NL
UQL
u    UL
…XLK ×    Ô
ÞdA@
ê†5A
õ†6Aþ    7A    8A    9A    :A%    ;A-    <A8    =A@â FAç O
A    Ô`†
GAþ    
HAo3
IA–
JA¥¢
 
NA> vv0ˆ    Š    Œ    Ž         “    (§L
Ÿ ¾    Ô
Æš 2A@
Ñš 3A@
ßš 4A@
îš 5A@
ùš 6A@
š 7A@
š 8A@
š 9A@
!š :A@
+š ;A@
7š <A@
Dš =A@
Pš >A@
\š ?A@
gš @A@Ä]
SArŠVA r(    Ô
z£7
”®:
Ÿ    =
¥¸@
Í    C
Ñ    D
×    E
܆K
ÆŠNE
îŠOE
ùŠPE
ŠQE
ŠRE
ŠSE
!ŠTE
7ŠUE
+ŠVE
gŠWE ñw ÷Í6.³    Ã°  ÈÀwÙü3_´@û ;!    Ô
N†!!åð/bÖÞä!"3²ä½#G „mxS$ ¨!€/!7…4"ß $ Æ „\m»‰$ú
!p€G!¼…4 à`mó¬$#ú
!õ€G!A…4 @ m+Ñ$+.!z€G!Æ…4 L<mcò$3ú
!ÿ€G!8…4"ß $3Æ#qÒ$3F #М$3š #Í$3†$O¢$4ú
%ˆoÞF$@&P€G&Q…4'Œlm~$D!r€G!»…4#ô¨$D†(øoQª" !*€G!c…4)œºú
( o’à"!Ò€G! …4)D¤ú
( oÓ"!z€G!³…4)ì±.*4TmL$ !"€G!n…4x=ŠBŽ/Apple clang version 13.0.0 (clang-1300.0.29.3)/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri/HDLSceneSiri/HDLSectionHeaderView.m/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdkiPhoneOS15.0.sdk/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiriNSTextAlignmentNSIntegerlong intNSTextAlignmentLeftNSTextAlignmentCenterNSTextAlignmentRightNSTextAlignmentJustifiedNSTextAlignmentNaturalUISemanticContentAttributeUISemanticContentAttributeUnspecifiedUISemanticContentAttributePlaybackUISemanticContentAttributeSpatialUISemanticContentAttributeForceLeftToRightUISemanticContentAttributeForceRightToLeftUIUserInterfaceLayoutDirectionUIUserInterfaceLayoutDirectionLeftToRightUIUserInterfaceLayoutDirectionRightToLeftNSLineBreakModeNSLineBreakByWordWrappingNSLineBreakByCharWrappingNSLineBreakByClippingNSLineBreakByTruncatingHeadNSLineBreakByTruncatingTailNSLineBreakByTruncatingMiddleUIBaselineAdjustmentUIBaselineAdjustmentAlignBaselinesUIBaselineAdjustmentAlignCentersUIBaselineAdjustmentNoneNSLineBreakStrategyNSUIntegerlong unsigned intNSLineBreakStrategyNoneNSLineBreakStrategyPushOutNSLineBreakStrategyHangulWordPriorityNSLineBreakStrategyStandardUIEditingInteractionConfigurationUIEditingInteractionConfigurationNoneUIEditingInteractionConfigurationDefaultCAEdgeAntialiasingMaskunsigned intkCALayerLeftEdgekCALayerRightEdgekCALayerBottomEdgekCALayerTopEdgeCACornerMaskkCALayerMinXMinYCornerkCALayerMaxXMinYCornerkCALayerMinXMaxYCornerkCALayerMaxXMaxYCornerUIFontDescriptorSymbolicTraitsuint32_tUIFontDescriptorTraitItalicUIFontDescriptorTraitBoldUIFontDescriptorTraitExpandedUIFontDescriptorTraitCondensedUIFontDescriptorTraitMonoSpaceUIFontDescriptorTraitVerticalUIFontDescriptorTraitUIOptimizedUIFontDescriptorTraitTightLeadingUIFontDescriptorTraitLooseLeadingUIFontDescriptorClassMaskUIFontDescriptorClassUnknownUIFontDescriptorClassOldStyleSerifsUIFontDescriptorClassTransitionalSerifsUIFontDescriptorClassModernSerifsUIFontDescriptorClassClarendonSerifsUIFontDescriptorClassSlabSerifsUIFontDescriptorClassFreeformSerifsUIFontDescriptorClassSansSerifUIFontDescriptorClassOrnamentalsUIFontDescriptorClassScriptsUIFontDescriptorClassSymbolicfloatHDLSectionHeaderViewUIViewUIResponderNSObjectisaClassobjc_classnextRespondercanBecomeFirstResponderBOOL_BoolcanResignFirstResponderisFirstResponderundoManagerNSUndoManagergroupingLevelundoRegistrationEnabledisUndoRegistrationEnabledgroupsByEventlevelsOfUndorunLoopModesNSArraycountcanUndocanRedoundoingisUndoingredoingisRedoingundoActionIsDiscardableredoActionIsDiscardableundoActionNameNSStringlengthredoActionNameundoMenuItemTitleredoMenuItemTitle_undoStackidobjc_object_redoStack_runLoopModes_NSUndoManagerPrivate1uint64_tlong long unsigned int_target_proxy_NSUndoManagerPrivate2_NSUndoManagerPrivate3editingInteractionConfigurationlayerClassuserInteractionEnabledisUserInteractionEnabledtaglayerCALayerboundsCGRectoriginCGPointxCGFloatdoubleysizeCGSizewidthheightpositionzPositionanchorPointanchorPointZtransformCATransform3Dm11m12m13m14m21m22m23m24m31m32m33m34m41m42m43m44framehiddenisHiddendoubleSidedisDoubleSidedgeometryFlippedisGeometryFlippedsuperlayersublayerssublayerTransformmaskmasksToBoundscontentscontentsRectcontentsGravityCALayerContentsGravitycontentsScalecontentsCentercontentsFormatCALayerContentsFormatminificationFilterCALayerContentsFiltermagnificationFilterminificationFilterBiasopaqueisOpaqueneedsDisplayOnBoundsChangedrawsAsynchronouslyedgeAntialiasingMaskallowsEdgeAntialiasingbackgroundColorCGColorRefCGColorcornerRadiusmaskedCornerscornerCurveCALayerCornerCurveborderWidthborderColoropacityallowsGroupOpacitycompositingFilterfiltersbackgroundFiltersshouldRasterizerasterizationScaleshadowColorshadowOpacityshadowOffsetshadowRadiusshadowPathCGPathRefCGPathactionsNSDictionarynamedelegatestylecanBecomeFocusedfocusedisFocusedfocusGroupIdentifierfocusGroupPriorityUIFocusGroupPriorityfocusEffectUIFocusEffectsemanticContentAttributeeffectiveUserInterfaceLayoutDirectiontitleLabelUILabeltextfontUIFontfamilyNamesfamilyNamefontNamepointSizeascenderdescendercapHeightxHeightlineHeightleadingfontDescriptorUIFontDescriptorpostscriptNamematrixCGAffineTransformabcdtxtysymbolicTraitsfontAttributestextColorUIColorblackColordarkGrayColorlightGrayColorwhiteColorgrayColorredColorgreenColorblueColorcyanColoryellowColormagentaColororangeColorpurpleColorbrownColorclearColorCIColornumberOfComponentssize_tcomponentsalphacolorSpaceCGColorSpaceRefCGColorSpaceredgreenbluestringRepresentation_priv_pad__ARRAY_SIZE_TYPE__textAlignmentlineBreakModeattributedTextNSAttributedStringstringhighlightedTextColorhighlightedisHighlightedenabledisEnablednumberOfLinesadjustsFontSizeToFitWidthbaselineAdjustmentminimumScaleFactorallowsDefaultTighteningForTruncationlineBreakStrategypreferredMaxLayoutWidthenablesMarqueeWhenAncestorFocusedshowsExpansionTextWhenTruncatedminimumFontSizeadjustsLetterSpacingToFitWidthmessageLabellineView_titleLabel_messageLabel_lineViewUIKit"-DNS_BLOCK_ASSERTIONS=1" "-DOBJC_OLD_DISPATCH_PROTOTYPES=0"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/UIKit.frameworkFoundation/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Foundation.framework-[HDLSectionHeaderView initWithFrame:]initWithFrame:-[HDLSectionHeaderView titleLabel]-[HDLSectionHeaderView messageLabel]-[HDLSectionHeaderView lineView]-[HDLSectionHeaderView NewLabel:font:textColor:text:]NewLabel:font:textColor:text:-[HDLSectionHeaderView backButtonClick]backButtonClick-[HDLSectionHeaderView setTitle:]setTitle:-[HDLSectionHeaderView setTitleLabel:]setTitleLabel:-[HDLSectionHeaderView setMessageLabel:]setMessageLabel:-[HDLSectionHeaderView setLineView:]setLineView:-[HDLSectionHeaderView .cxx_destruct].cxx_destructself_cmdSELobjc_selectorcolorlabeltitleHSAH      
ÿÿÿÿXµO,ˆ³I€YÐéqáéý𪯄ëÅw,®ÿ=
ޟŠFJaÐ(÷o胩¼Ð£Ìôí¹­¨þ(I– ¹ç?Jš-ðˆOnE¾¯&únÍü ,<L\l|Œœ¬¼ÌÜìü ,<LnÅ?º¬ÖÑrû    yº(F‰ž¤ÖS[±ª8~õÑ8 õLûºžz[òFFÅàyHSAH vŒ¯Ü,     [žÖFÅõ8yºûHSAH ÿÿÿÿHSAH:     "&(ÿÿÿÿ*ÿÿÿÿ-1ÿÿÿÿ45ÿÿÿÿ69ùMÿn\sÆ»Nø $\©˜=åžrÑå$w¤×êÄ\©Ð;Øt¾–UbB͓<²å™ ÔWÝvÖ)ˆ ?Ž“òÐd>›éqy£›áqEúr>>&‡½ÒÙ9ŠÎu òµÌ`¦a=ŸT,›‚|:LÑð/Ü]èSùp–~­{Õû=pó6­h ìvŒ¯Ü<Ž•:¡¡žòAÒ9ÂÔÆ¤    Ä´BšQ=hÒŧ‰¾sÓ[sŒÜ [=ù2xYðCà7•Á¹ÕíZÈvÓ4Ë THR•½|5ûæŒdl’¥¿Ùìÿ,?Rex‹ž±ËÞø 1Ke’¬¿Òåø 1DWj}£½×ñ1DWj}£¶ÉÜö    Oç 
éM    ë ÆÑ@´ëLÄ
Ä    G 1    <    ro^H ǾŸ {$1     °¸Š4=ٍ£ðåv+    p$:
iyVR
Í›ï
_3à¹]
‘ ]    h    @    Ô„    ‘ 1
‰    $ke ¶Q Ò$»
‹Ô <
yi$    xà§
;ûã‚r
' òýb#Åÿ
ý G
L§ -    ÖüÙ$9 *    $     ¨mÔ
4    zLj
×K ó}
v3 > 6$ñpä
„„\à`@ L<ˆŒlø  4T@    Aû /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/_types/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri/HDLSceneSiri/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/CoreImage.framework/HeadersHDLSceneSiriNSObjCRuntime.hNSText.hUIView.hUIInterface.hNSParagraphStyle.hUIStringDrawing.hUIResponder.hCALayer.h_uint32_t.hUIFontDescriptor.hHDLSectionHeaderView.mNSObject.hobjc.hNSUndoManager.hNSArray.hNSString.h_uint64_t.hCGBase.hCGGeometry.hCATransform3D.hCGColor.hCGPath.hNSDictionary.hUIFocus.hUIFocusEffect.hUILabel.hUIFont.hCGAffineTransform.hUIColor.hstddef.hCIColor.h    CGColorSpace.hNSAttributedString.hHDLSectionHeaderView.h
HDLSceneSiri.h
HDLSectionHeaderView.m
$     
>    å'Ko<J<    ä(ƒn<J‚    <ƒmòJ    ‚ålòJ    ‚ukòJ    ‚ww
 
­    º9Kc<Jc<J‚YJcäJ|‚c0J‚c0J    <uJ ô¯
 
­    º;K[<%J[<L%‚[J[ä%Jz‚[0%J‚[4%J    <uJ ô¯    
=ºKEòS<-JS<V-JJä    ò%ƒR0.J    ‚J    ò „?
LLº4‚‚åK<5J ‚< ƒJ<    7‚K >?0
L
 
=»ºł»ºÅJ‚»òł"H<
sJò
rJò
qJ$ ò
òD„Ž-p{Ll{=hŽ-\zLXz=TŽ-HyLDy=0Ž-(yL$y=Ž-zLz=Ž-{Lü{=ôŠ-àŠ-؈-Ð,LÌ,=č-¼ˆ-¬‹-¤ L  =„‡-dŠ-\Š-Tˆ-H,LD,=@ˆ-4+L0+=(Š- ˆ-*L*= Š-ˆ-ø Lô =ì-äˆ-à)LÜ)=Ø
LÔ
=̈-¸L´=°†-¤‹-œ(L˜(=‹-„‹-HŒ-4Š-,ˆ-$ L  =- ˆ-$L$=ü#Lø#=ô"Lð"=ìLè=ä
Là
=ÜŠ-ÔŠ-Ĉ-¬L¨=œˆ-˜L”=Œ-„ˆ-€L|=xLt=l†-h&Ld&=XyLTy=<Œ- ˆ-L= Š-Š-üŠ-ôŠ-ä-܈-ÀL¼=¸L´=°L¬=¤-œˆ-”L=ŒLˆ=„L€=|Lx=t
Lp
=h-`ˆ-X!LT!=PLL=HLD=4ˆ-0L,=$-ˆ-L=L =zLüz=ÜŒ-Àˆ-¸L´=¬Š-¤Š-œŠ-”Š-„-|ˆ-\LX=TLP=H-@ˆ-8L4=0L,=(L$= L=
L
= -ˆ-üLø=ôLð=ìLè=؈-ÔLÐ=ȍ-Àˆ-¼L¸=´L°=¤{L {=hŠ-`ˆ-L-Dˆ-<L8=4Š-,ˆ--ˆ-L=Š-øˆ-èLä=܍-Ԉ-Ì LÈ =Ċ-¼ˆ-° L¬ =¤-œˆ-˜ L” =
=ˆŠ-€ˆ-pLl=h    Ld    =`ˆ-\LX=P-Hˆ-DL@=<L8=,‰-$L =L=HT8…0ƒ(‚ 4…|xˆP€OxNpMhK`JXHPGHB@A8@0?(> =<;:7 ~}€PL@„0I „E„8o(hbRUðnèmàlØkÐjÈi°g¨f ydˆe€zpdhc`{P2H[@a810](` 0]_/]ø^ð.è]à\Ø-Ð[ÈZÀ'¸Y°J¨% X˜B ˆX€AxpXh?`XWP7Rxü»z9öÆGן\'@ àÀ €`@ P $¸¼„ˆäèÈ̬°”˜Œ”ŒlpdldhX\@D8@8< ¤´¸ØÜÐÔ´¸¬´¬°¤¬¤¨œ¤œ ”œ”˜øüðôèðèìÐÔ¸¼°¸°´ü€”˜¼À´¸¬¼¬°”ˆˆŒ€ˆ€„ø€øüðøðôÔØÌÐÄÌÄȬ°”˜Œ”ŒÔØ 
¤
€
„
ø    €
ø    ü    ð    ø    ð    ô    è    ð    è    ì    à    è    à    ä    ¨    ¬    ”    ˜    ü€    ôüôøäè ” ô ø Ü à Ô Ü Ô Ø ´ ¸ ˜ œ ° ´ Ä È Ì Ð   ¤ ü €”¤¨ìðØÜÄÈH ~ ˆf ˆ€ã0r0
À
a 8
    @
QH
£È
RP
 X
R
`
Ðh
…p
4x
^ ” ˜²
 e„Ý Ð
# €
]
  _    ˆ
Ő
 
@ ¿ ˜
V ¨Œ °ª
¸À    Àˆà 
` N Ȅ Т
Ø@
Ø
úL>    à
û 
§¨
¡ °
í
¸
­ˆ§Œ0øW Õ ?4œ
àÓ  º    0    8Í8n0
ÃÀ
0 Gp
RîYüc nH ‚„    8™ã¦è
o    ô
¯    ô
É
  ò ¯2
¿     eáÿè          ¦    L    %    Ï 3    þ  € º €  ˜ ú ˜ û     • A  Ø ¤ Ø %     
â<    3 =ŽL    é Eˆ V    ¶ e    Ô
v    â    ƒ    Z à     ‘    t Pɝ    «    u [) 𠍵    ÏÀ    n Ý    œ ê    º
    
È    
 X K
h h}    p÷pÉqèq1’!~È`‰à%ð
ì
ðè
¬¶NÙQ”f!QvCˆ
ÚÌ“¶d__OBJC_$_PROP_LIST_HDLSectionHeaderView__OBJC_$_INSTANCE_VARIABLES_HDLSectionHeaderView__OBJC_$_INSTANCE_METHODS_HDLSectionHeaderView_OBJC_CLASS_$_HDLSectionHeaderView_OBJC_METACLASS_$_HDLSectionHeaderView__OBJC_CLASS_RO_$_HDLSectionHeaderView__OBJC_METACLASS_RO_$_HDLSectionHeaderView_OBJC_IVAR_$_HDLSectionHeaderView._lineView_OBJC_CLASS_$_UIView_OBJC_METACLASS_$_UIView_OBJC_CLASS_$_UIFont_OBJC_METACLASS_$_NSObjectl_.str_OBJC_CLASS_$_UIColor_objc_retain_OBJC_CLASS_$_UIScreen_OBJC_IVAR_$_HDLSectionHeaderView._titleLabel_OBJC_IVAR_$_HDLSectionHeaderView._messageLabel_OBJC_CLASS_$_UILabel_objc_storeStrong_objc_autoreleaseReturnValue_objc_retainAutoreleaseReturnValue_objc_retainAutoreleasedReturnValue_objc_releasel_llvm.cmdlinel_llvm.embedded.module__objc_empty_cache___CFConstantStringClassReference_objc_msgSend_objc_allocl__unnamed_cfstring__OBJC_SELECTOR_REFERENCES_l_OBJC_PROP_NAME_ATTR_l_OBJC_METH_VAR_TYPE_l_OBJC_CLASS_NAME_l_OBJC_METH_VAR_NAME_l_OBJC_CLASSLIST_SUP_REFS_$__OBJC_CLASSLIST_REFERENCES_$_-[HDLSectionHeaderView lineView]-[HDLSectionHeaderView .cxx_destruct]-[HDLSectionHeaderView titleLabel]-[HDLSectionHeaderView messageLabel]-[HDLSectionHeaderView backButtonClick]-[HDLSectionHeaderView setLineView:]-[HDLSectionHeaderView NewLabel:font:textColor:text:]-[HDLSectionHeaderView setTitleLabel:]-[HDLSectionHeaderView setMessageLabel:]-[HDLSectionHeaderView initWithFrame:]-[HDLSectionHeaderView setTitle:]ltmp9l_OBJC_PROP_NAME_ATTR_.59l_OBJC_METH_VAR_TYPE_.49l_OBJC_METH_VAR_NAME_.39l_OBJC_METH_VAR_NAME_.29_OBJC_SELECTOR_REFERENCES_.19_OBJC_SELECTOR_REFERENCES_.9ltmp8l_OBJC_METH_VAR_TYPE_.58l_OBJC_METH_VAR_NAME_.48_OBJC_SELECTOR_REFERENCES_.38_OBJC_SELECTOR_REFERENCES_.28l_OBJC_METH_VAR_NAME_.18l_OBJC_METH_VAR_NAME_.8ltmp7l_OBJC_METH_VAR_NAME_.57l_OBJC_METH_VAR_TYPE_.47l_OBJC_METH_VAR_NAME_.37l_OBJC_METH_VAR_NAME_.27ltmp17_OBJC_SELECTOR_REFERENCES_.17_OBJC_CLASSLIST_REFERENCES_$_.7ltmp6l_OBJC_METH_VAR_NAME_.56l_OBJC_METH_VAR_NAME_.46_OBJC_SELECTOR_REFERENCES_.36l__unnamed_cfstring_.26ltmp16l_OBJC_METH_VAR_NAME_.16_OBJC_SELECTOR_REFERENCES_.6ltmp5l_OBJC_METH_VAR_TYPE_.55l_OBJC_METH_VAR_TYPE_.45l_OBJC_METH_VAR_NAME_.35l_.str.25ltmp15_OBJC_SELECTOR_REFERENCES_.15l_OBJC_METH_VAR_NAME_.5ltmp4l_OBJC_METH_VAR_NAME_.54l_OBJC_METH_VAR_TYPE_.44_OBJC_CLASSLIST_REFERENCES_$_.34_OBJC_SELECTOR_REFERENCES_.24ltmp14l_OBJC_METH_VAR_NAME_.14_OBJC_SELECTOR_REFERENCES_.4ltmp3lCPI2_3l_OBJC_PROP_NAME_ATTR_.63l_OBJC_METH_VAR_NAME_.53l_OBJC_CLASS_NAME_.43_OBJC_CLASSLIST_REFERENCES_$_.33l_OBJC_METH_VAR_NAME_.23ltmp13_OBJC_SELECTOR_REFERENCES_.13l_OBJC_METH_VAR_NAME_.3_objc_msgSendSuper2ltmp2lCPI3_2lCPI2_2lCPI1_2l_OBJC_PROP_NAME_ATTR_.62l_OBJC_METH_VAR_NAME_.52_OBJC_SELECTOR_REFERENCES_.42l__unnamed_cfstring_.32_OBJC_SELECTOR_REFERENCES_.22ltmp12l_OBJC_METH_VAR_NAME_.12_OBJC_SELECTOR_REFERENCES_.2ltmp1lCPI3_1lCPI2_1lCPI1_1l_OBJC_PROP_NAME_ATTR_.61l_OBJC_METH_VAR_NAME_.51l_OBJC_METH_VAR_NAME_.41l_.str.31l_OBJC_METH_VAR_NAME_.21ltmp11_OBJC_SELECTOR_REFERENCES_.11l_OBJC_METH_VAR_NAME_.1ltmp0lCPI3_0lCPI2_0lCPI1_0lCPI0_0l_OBJC_PROP_NAME_ATTR_.60l_OBJC_METH_VAR_NAME_.50_OBJC_SELECTOR_REFERENCES_.40_OBJC_SELECTOR_REFERENCES_.30_OBJC_CLASSLIST_REFERENCES_$_.20ltmp10l_OBJC_METH_VAR_NAME_.10l_OBJC_LABEL_CLASS_$#1/28           0           0     0     100644  24404     `
HDLSiriShortcutModel.oÏúíþ     8     ‚8X    ‚8__text__TEXTÀX    àA+€__cstring__TEXTÀ __cfstring__DATAÈ   8C__objc_data__DATAè @ HC__objc_classrefs__DATAˆà ÈC__objc_methname__TEXT˜¦ð __objc_selrefs__DATA@˜ØC__objc_classname__TEXTP-¨__objc_methtype__TEXT}2Õ__objc_const__DATA° èCn__objc_ivar__DATAP
 ¨__objc_classlist__DATAp
ÈXG__bitcode__LLVM€
Ø__cmdline__LLVM
!Ù__objc_imageinfo__DATA¢ú&__debug_loc__DWARFª|'__debug_abbrev__DWARF&p~(__debug_info__DWARF– î)hG__debug_str__DWARF¬&è0__apple_names__DWARF”-äì6__apple_objc__DWARFx1œÐ:__apple_namespac__DWARF2$l;__apple_types__DWARF82^;__compact_unwind__LD˜3`ð<H__debug_line__DWARFø5ŠP? H% .¨H(ÐH… Q Pll x -(-frameworkFoundation-(-frameworkCFNetwork- -frameworkSecurity-(-frameworkCoreFoundationÿÃÑý{©ýƒ‘@ù@ù    )‘¨ƒøéù@ù@ù”à ù@ù@ùâC‘ã#‘$€R”ýª”¨ƒ_ø    )@ù)@ù?ëTý{B©ÿÑ”€R€R€R€R€R€R€R€R€RôO¾©ý{©ýC‘óª`‘€Ò”`B‘€Ò”`"‘€Òý{A©ôO¨€R€R€R€R€R€R€R€R€R€R€R€R€R€R€RôO¾©ý{©ýC‘óª ‘€Ò”`‚‘€Ò”`b‘€Ò”`B‘€Ò”`"‘€Òý{A©ôO¨listÈclassdictionaryWithObjects:forKeys:count:modelContainerPropertyGenericClasstitlesetTitle:contentsetContent:listsetList:.cxx_destruct_title_content_listtitleT@"NSString",C,N,V_titlecontentT@"NSString",C,N,V_contentlistT@"NSArray",C,N,V_listcontrolNamesetControlName:controlIdsetControlId:controlTypesetControlType:controlJSONStrsetControlJSONStr:actionNamesetActionName:_controlName_controlId_controlType_controlJSONStr_actionNamecontrolNameT@"NSString",C,N,V_controlNamecontrolIdT@"NSString",C,N,V_controlIdcontrolTypeT@"NSString",C,N,V_controlTypecontrolJSONStrT@"NSString",C,N,V_controlJSONStractionNameT@"NSString",C,N,V_actionNameHDLSiriShortcutModelHDLSiriControlModel@16@0:8v24@0:8@16v16@0:8@"NSString"@"NSArray"…(( „ …((  „0 (-cc1-triplearm64-apple-ios11.0.0-emit-obj--mrelax-relocations-disable-free-disable-llvm-verifier-discard-value-names-main-file-nameHDLSiriShortcutModel.m-mrelocation-modelpic-pic-level2-mframe-pointer=non-leaf-fno-strict-return-fno-rounding-math-munwind-tables-target-sdk-version=15.0-fvisibility-inlines-hidden-static-local-var-target-cpuapple-a7-target-feature+fp-armv8-target-feature+neon-target-feature+crypto-target-feature+zcm-target-feature+zcz-target-feature+sha2-target-feature+aes-target-abidarwinpcs-fallow-half-arguments-and-returns-debug-info-kind=standalone-dwarf-version=4-debugger-tuning=lldb-target-linker-version711-resource-dir/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0-dependency-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/HDLSiriShortcutModel.d-skip-unused-modulemap-deps-MTdependencies-isysroot/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-generated-files.hmap-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-project-headers.hmap-DNS_BLOCK_ASSERTIONS=1-DOBJC_OLD_DISPATCH_PROTOTYPES=0-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-own-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-all-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos/include-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-normal/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-F/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos-internal-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/local/include-internal-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include-Os-std=gnu11-fdebug-compilation-dir/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri-ferror-limit19-fmacro-backtrace-limit0-stack-protector1-mdarwin-stkchk-strong-link-fblocks-fencode-extended-block-signature-fregister-global-dtors-with-atexit-fgnuc-version=4.2.1-fmodules-fimplicit-module-maps-fmodules-cache-path=/Users/jlchen/Library/Developer/Xcode/DerivedData/ModuleCache.noindex-fmodules-prune-interval=86400-fmodules-prune-after=345600-fbuild-session-timestamp=1638169242713503253-fmodules-validate-once-per-build-session-fmodules-validate-system-headers-fobjc-runtime=ios-11.0.0-fobjc-arc-fobjc-weak-fobjc-exceptions-fexceptions-fpascal-strings-fmax-type-align=16-fdiagnostics-show-note-include-stack-vectorize-loops-vectorize-slp-serialize-diagnostic-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/HDLSiriShortcutModel.dia-clang-vendor-feature=+nullptrToBoolConversion-clang-vendor-feature=+messageToSelfInClassMethodIdReturnType-clang-vendor-feature=+disableInferNewAvailabilityFromInit-clang-vendor-feature=+disableNeonImmediateRangeCheck-clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation-fno-odr-hash-protocols-clang-vendor-feature=+revert09abecef7bbf@0P0£PŸ8Q8£QŸÌÜPÜc£PŸÌäQä£QŸl|P|¼c¼À£PŸl„Q„À£QŸ%‚|ïáå ì : ; æ I8 €„èI: ; ë  I: ; 8 2  : ; æ II    <
€„èI: ; ë I: ; $> |€|: ; .@dz: ; 'IáI4.ç@dz: ; 'I4áI4.ç@dz: ; '4áI.@dz: ; '4á&I/À_ Ž’¸hŸhÍìhà¸ç¸ðìt5}¥8®³    ‡½˜cŽ
¡Úi å¨ ³ñÒŽ
ÚÚö0Ž
¸h¸h ¸h,¸h;¸hF¸S¸^¸k¸{¸ ‡’Ï›mÌe ÇÌé9Ñî oøPÌQÑîœo4áPÌQÑîR’¸¤ os ¸PÌQÑî°o£-PÌQÑîRŸ¸ oâ]ìPÌQÑîÄozPÌQÑîRÍìÌ<mM¤
r̾Ñî o…ظPÌ QÑîoµûPÌ QÑîR
¸ oô2¸PÌ QÑî(o$SPÌ QÑîR¸0 oc†¸PÌ QÑî<o“©PÌ QÑîR ¸D oÒà¸PÌ QÑîPoPÌ QÑîR,¸X oAC¸PÌ QÑîdoqePÌ QÑîR;¸lTm¬š÷Ì CÑîÌ¿Ž
ÚÚ¥÷Öü    Ú3Apple clang version 13.0.0 (clang-1300.0.29.3)/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri/HDLSceneSiri/HDLSiriShortcutModel.m/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdkiPhoneOS15.0.sdk/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiriHDLSiriShortcutModelNSObjectisaClassobjc_classtitleNSStringlengthNSUIntegerlong unsigned intcontentlistNSArraycount_title_content_listHDLSiriControlModelcontrolNamecontrolIdcontrolTypecontrolJSONStractionName_controlName_controlId_controlType_controlJSONStr_actionNameFoundation"-DNS_BLOCK_ASSERTIONS=1" "-DOBJC_OLD_DISPATCH_PROTOTYPES=0"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Foundation.framework+[HDLSiriShortcutModel modelContainerPropertyGenericClass]modelContainerPropertyGenericClass-[HDLSiriShortcutModel title]-[HDLSiriShortcutModel setTitle:]setTitle:-[HDLSiriShortcutModel content]-[HDLSiriShortcutModel setContent:]setContent:-[HDLSiriShortcutModel list]-[HDLSiriShortcutModel setList:]setList:-[HDLSiriShortcutModel .cxx_destruct].cxx_destruct-[HDLSiriControlModel controlName]-[HDLSiriControlModel setControlName:]setControlName:-[HDLSiriControlModel controlId]-[HDLSiriControlModel setControlId:]setControlId:-[HDLSiriControlModel controlType]-[HDLSiriControlModel setControlType:]setControlType:-[HDLSiriControlModel controlJSONStr]-[HDLSiriControlModel setControlJSONStr:]setControlJSONStr:-[HDLSiriControlModel actionName]-[HDLSiriControlModel setActionName:]setActionName:-[HDLSiriControlModel .cxx_destruct]NSDictionaryself_cmdSELobjc_selectorHSAH% ÿÿÿÿ    
ÿÿÿÿ #aš|ÅZÉñäÉT¥%ôGâo¾l;W—ahAÍ9ÂÛ0²? ðì‡DP¬?&ÌÆ&Ž\s0Õʹ.
˧1JŸ”b¡²éýÊèÚ«óši7-rݖ3¬1™ù“(Ù'ªm?ÃyŽ(Oî¸f    HõS¬èb}ó_doÒè6$‡%u€™yÓ­¨þ(Ǔöǐ °ÀÐàð 0@P`p€ °ÀÔäô$4DTdt„”¤´ÄÔÍÅé ¯¤4©z]ņF Vx eX"œ
h0éQŠe¯á›ùC$2×Ê4“‹XûœØh×,µ’ç൚“Ðz FzùS Ãç;$ÅV-ŠHSAH ¦wêdá8pö hœ× Fzµé$X“_¯çVŠÅù4HSAH ÿÿÿÿHSAH
 
 ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ<Ž•=ŸT,¦wêdá»Nø =pó6Eúr>éqy£)ˆ ½|5û ³ÆÙìÿ%8K¿ÌtŽö_3¥˜½Òñ¨ÚÖî³å$ œ¤ °¸ ÄÌ<  (0 <D PX dlT†¹û /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Foundation.framework/HeadersHDLSceneSiriNSObject.hNSObjCRuntime.hNSString.hHDLSiriShortcutModel.hNSArray.hHDLSiriShortcutModel.mNSDictionary.h    
 
uò <t$ JtJ ttºJ'
º'
ƒ'
º'
ƒ=
º=
x‚
ò ,'
º'
ƒ'
º'
ƒ'
º'
ƒ'
º'
ƒ'
º'
v‚
òD¼„-¨„-œ„-„-„„-hƒ-`€-Tƒ-L€-@ƒ-8€-,ƒ-$€-ƒ-€-„-ð„-ä„-ȃ-À€-´ƒ-¬€- ƒ-˜€-Œ|-ˆ-p}ll}]d‚-\-LLH=DL@=8-4L0=,L(=L=}l }]{˜Fˆ~€zxzpD`~XyPwH*8~0z(z ~yvxl" ˜cˆXxRpEhGPbHa@`8_0^(] \[ZYð8èWànÐ8ÈVÀp°8¨U r8ˆT€op8hS`qPH4@380.(Q 'P.øOðè'àNØÐ.ÈMÀ¸'°L¨ .˜Kˆ'€Jxp.hI`X'PHEøCè<Ø5Ð$È+°B¨A @˜?>ˆ=p;h:`tP8H9@s08(7 u 43ø ð.è2à Ø'Ð1È
À.¸0°    ¨' /˜.ˆ-€x'p,@)8$'%lm”Y%ê¶{G ؝i5úÆ‹Wè°'@ àÀ €`@ àÀ €`@ ÈlptHL@H@D04(0(, u d8ȾˆM@U ! H-Oœù¤°Ü¸lÄÌ
(Kq(Å0Û<ŸD±PèXd?lÉ ÀÔÀ> È® è;
 
# ˆŸ
˜¨˜
@± žœ    P•P– à       }    }–
°w
°C
Ð e‡
æ
ì„        …    öè þ< 
˜  }     £
á  P
õ
&n
    ˜î    -k    6è    ¤F
Èh<Ç B [w cç ~\ ƒ
0
hØ
ga
°X
{Õ    šR    ¦Ï¶® À Î^ ÚÎ êC ù¿
 ?
Å
ø¼    &9    3¶>• Ké [•
    D g´ s) ’¥
œ%
¹¢    Å    äœó{ Ï  n
°    5  p
 p
‘  €
v €
 

v ¢î
˜3óèÒ8 l
 `
Û h
H \
Þ d
w T
O X
 P
`õ¢¹É 붝þº.‹_objc_getProperty_OBJC_CLASS_$_NSDictionary_objc_setProperty_nonatomic_copy_OBJC_IVAR_$_HDLSiriShortcutModel._list_OBJC_IVAR_$_HDLSiriShortcutModel._content_OBJC_CLASS_$_NSObject_OBJC_METACLASS_$_NSObjectl_.str_OBJC_IVAR_$_HDLSiriControlModel._controlJSONStr___stack_chk_fail__OBJC_$_PROP_LIST_HDLSiriShortcutModel__OBJC_$_INSTANCE_VARIABLES_HDLSiriShortcutModel__OBJC_$_CLASS_METHODS_HDLSiriShortcutModel__OBJC_$_INSTANCE_METHODS_HDLSiriShortcutModel_OBJC_CLASS_$_HDLSiriShortcutModel_OBJC_METACLASS_$_HDLSiriShortcutModel__OBJC_CLASS_RO_$_HDLSiriShortcutModel__OBJC_METACLASS_RO_$_HDLSiriShortcutModel__OBJC_$_PROP_LIST_HDLSiriControlModel__OBJC_$_INSTANCE_VARIABLES_HDLSiriControlModel__OBJC_$_INSTANCE_METHODS_HDLSiriControlModel_OBJC_CLASS_$_HDLSiriControlModel_OBJC_METACLASS_$_HDLSiriControlModel__OBJC_CLASS_RO_$_HDLSiriControlModel__OBJC_METACLASS_RO_$_HDLSiriControlModel_objc_storeStrong_objc_autoreleaseReturnValue_objc_retainAutoreleasedReturnValue_OBJC_IVAR_$_HDLSiriControlModel._controlTypel_llvm.cmdline_OBJC_IVAR_$_HDLSiriControlModel._actionName_OBJC_IVAR_$_HDLSiriControlModel._controlNamel_llvm.embedded.module_OBJC_IVAR_$_HDLSiriShortcutModel._title__objc_empty_cache___CFConstantStringClassReference___stack_chk_guard_objc_msgSend_OBJC_IVAR_$_HDLSiriControlModel._controlIdl__unnamed_cfstring__OBJC_SELECTOR_REFERENCES_l_OBJC_PROP_NAME_ATTR_l_OBJC_METH_VAR_TYPE_l_OBJC_CLASS_NAME_l_OBJC_METH_VAR_NAME__OBJC_CLASSLIST_REFERENCES_$_-[HDLSiriShortcutModel list]-[HDLSiriShortcutModel content]-[HDLSiriShortcutModel .cxx_destruct]-[HDLSiriControlModel .cxx_destruct]+[HDLSiriShortcutModel modelContainerPropertyGenericClass]-[HDLSiriControlModel controlJSONStr]-[HDLSiriControlModel controlType]-[HDLSiriControlModel actionName]-[HDLSiriControlModel controlName]-[HDLSiriShortcutModel title]-[HDLSiriControlModel controlId]-[HDLSiriShortcutModel setList:]-[HDLSiriShortcutModel setContent:]-[HDLSiriControlModel setControlJSONStr:]-[HDLSiriControlModel setControlType:]-[HDLSiriControlModel setActionName:]-[HDLSiriControlModel setControlName:]-[HDLSiriShortcutModel setTitle:]-[HDLSiriControlModel setControlId:]ltmp9l_OBJC_PROP_NAME_ATTR_.49l_OBJC_METH_VAR_NAME_.39l_OBJC_METH_VAR_NAME_.29l_OBJC_METH_VAR_TYPE_.19l_OBJC_METH_VAR_NAME_.9ltmp8l_OBJC_PROP_NAME_ATTR_.48l_OBJC_METH_VAR_NAME_.38l_OBJC_METH_VAR_NAME_.28l_OBJC_METH_VAR_NAME_.18l_OBJC_METH_VAR_TYPE_.8ltmp7l_OBJC_PROP_NAME_ATTR_.47l_OBJC_METH_VAR_NAME_.37l_OBJC_METH_VAR_NAME_.27l_OBJC_METH_VAR_NAME_.17l_OBJC_METH_VAR_NAME_.7ltmp6l_OBJC_PROP_NAME_ATTR_.46l_OBJC_METH_VAR_NAME_.36l_OBJC_CLASS_NAME_.26l_OBJC_METH_VAR_TYPE_.16l_OBJC_METH_VAR_NAME_.6ltmp5l_OBJC_PROP_NAME_ATTR_.45l_OBJC_METH_VAR_NAME_.35l_OBJC_CLASS_NAME_.25ltmp15l_OBJC_METH_VAR_NAME_.15l_OBJC_CLASS_NAME_.5ltmp4l_OBJC_PROP_NAME_ATTR_.44l_OBJC_METH_VAR_NAME_.34l_OBJC_PROP_NAME_ATTR_.24ltmp14l_OBJC_METH_VAR_TYPE_.14l_OBJC_METH_VAR_NAME_.4ltmp3l_OBJC_PROP_NAME_ATTR_.43l_OBJC_METH_VAR_NAME_.33l_OBJC_PROP_NAME_ATTR_.23ltmp13l_OBJC_METH_VAR_NAME_.13_OBJC_SELECTOR_REFERENCES_.3ltmp2l_OBJC_PROP_NAME_ATTR_.42l_OBJC_METH_VAR_NAME_.32l_OBJC_PROP_NAME_ATTR_.22ltmp12l_OBJC_METH_VAR_NAME_.12l_OBJC_METH_VAR_NAME_.2ltmp1l_OBJC_PROP_NAME_ATTR_.51l_OBJC_METH_VAR_NAME_.41l_OBJC_METH_VAR_NAME_.31l_OBJC_PROP_NAME_ATTR_.21ltmp11l_OBJC_METH_VAR_NAME_.11_OBJC_CLASSLIST_REFERENCES_$_.1ltmp0l_OBJC_PROP_NAME_ATTR_.50l_OBJC_METH_VAR_NAME_.40l_OBJC_METH_VAR_NAME_.30l_OBJC_PROP_NAME_ATTR_.20ltmp10l_OBJC_METH_VAR_NAME_.10l_OBJC_LABEL_CLASS_$#1/20           0           0     0     100644  57924     `
TopBarView.oÏúíþ ˜  ¸î´¸ î´__text__TEXT¨¸ ¨ÀÌ€__literal8__TEXT¨8`__objc_data__DATAàP˜Ç__objc_superrefs__DATA0èHÇ__objc_methname__TEXT8ûð__objc_selrefs__DATA8    °ðPÇ__objc_classrefs__DATAè    8 È__objc_ivar__DATA 
Ø__cstring__TEXT(
 à__cfstring__DATAH
`8È__objc_classname__TEXT¨
`__objc_const__DATA¸
àphÈ+__objc_methtype__TEXT˜ P__objc_classlist__DATA( àÀÉ__bitcode__LLVM0 è__cmdline__LLVM1 é__objc_imageinfo__DATA4 ì+__debug_loc__DWARF< zô+__debug_abbrev__DWARF¶%×n1__debug_info__DWARF(è+E4ÈÉ
__debug_str__DWARFuTô=-`__apple_names__DWARFi’ô!ž__apple_objc__DWARF]”\ __apple_namespac__DWARF¹”$q __apple_types__DWARFݔã• __compact_unwind__LDÀ¦ x²Ê    __debug_line__DWARFà§ ˜³`Ê% .hÊÐ8̑HÕè Pxx|- -frameworkUIKit-(-frameworkFileProvider-0-frameworkUserNotifications- -frameworkCoreText-(-frameworkQuartzCore-(-frameworkCoreImage- -frameworkImageIO-(-frameworkCoreVideo- -frameworkOpenGLES- -frameworkMetal-(-frameworkIOSurface-(-frameworkCoreGraphics-(-frameworkFoundation-(-frameworkCFNetwork- -frameworkSecurity-(-frameworkCoreFoundationÿCÑé#möW©ôO©ý{©ý‘@ùà#©@ùà‘”óªà´@ù@ù”ýª”ôª@ù”H¢N@ù@ù”ýª”õª@ù”ÈèÒgž` `
èÒgžÈ
èÒgž#¬`@ùàgžágžàª¨N”ઔઔ@ùઔýª”ôª@ùàªáªâª”ઔ@ùઔýª”ôªàªáªâª”ઔàªý{D©ôOC©öWB©é#AmÿC‘À_ÖöW½©ôO©ý{©ýƒ‘󪐀¹hvø 
µ@ù@ù"€R”ýª”hjvø`j6øàª”@ù@ù”ýª”ôª@ù”ÈèÒgž` df¬``jvø@ù@ýàgžƒ¤N”ઔtjvø@ù@ùB‘”ýª”õª@ùàªâª€Ò”ઔ@ù@ù@ý@ý@ýn”ýª”ôª`jvø@ù⪔ઔ`jvøý{B©ôOA©öWèë+ºmé#mø_©öW©ôO©ý{©ýC‘󪐀¹hxø@ µ@ù@ù”ýª”ôª@ù”ÈèÒgž` hf    ­`@ù@ù”ýª”õª@ù”ˆ
øÒgžJ(`@ù@ùB‘Pf”ýª”öª@ù@ù@ý@ý@ýn”ýª”÷ª@ù„‘ˆèÒgžàª!©NBªN¨Nâªãª”ýª”hjxø`j8øàª”ઔઔઔઔ`jxø@ù"€R”`jxøý{E©ôOD©öWC©ø_B©é#Amë+Ælë+ºmé#mø_©öW©ôO©ý{©ýC‘ôªàªõªh£NI¢N*¡N  N”óªàª”ôª@ùઔ÷ªàª”@ù`«NAªN"©N¨N”õª@ù@ù”ýª”öª@ùàªâª”ઔ@ùàªâª”ઔӴ@ùàªâª”@ùàªâª”ઔઔàªý{E©ôOD©öWC©ø_B©é#Amë+ÆlÀ_ÖöW½©ôO©ý{©ýƒ‘óª@ùઔõªàªáª”ýª”óª@ù⪔ઔàªý{B©ôOA©öWè᪐€¹‹áª€¹‹ôO¾©ý{©ýC‘󪐀¹‹€Ò”€¹`‹€Òý{A©ôO¨€C@»?—–––––Æ?SSSSSSÓ?»?—–––––Æ?SSSSSSÓ?initWithFrame:mainScreenboundssharedApplicationstatusBarFramesetFrame:backButtonaddSubview:titleLabelbuttonWithType:imageNamed:setImage:forState:colorWithRed:green:blue:alpha:setTintColor:fontWithName:size:NewLabel:font:textColor:text:setTextAlignment:clearColorsetBackgroundColor:setFont:setTextColor:setText:backButtonClicksetTitle:setBackButton:setTitleLabel:.cxx_destruct_backButton_titleLabelbackButtonT@"UIButton",&,N,V_backButtontitleLabelT@"UILabel",&,N,V_titleLabelic_nav_backPingFangSC-RegularÈ ÈÈTopBarView…((     „@48@0:8{CGRect={CGPoint=dd}{CGSize=dd}}16@16@0:8@72@0:8{CGRect={CGPoint=dd}{CGSize=dd}}16@48@56@64v16@0:8v24@0:8@16@"UIButton"@"UILabel"-cc1-triplearm64-apple-ios11.0.0-emit-obj--mrelax-relocations-disable-free-disable-llvm-verifier-discard-value-names-main-file-nameTopBarView.m-mrelocation-modelpic-pic-level2-mframe-pointer=non-leaf-fno-strict-return-fno-rounding-math-munwind-tables-target-sdk-version=15.0-fvisibility-inlines-hidden-static-local-var-target-cpuapple-a7-target-feature+fp-armv8-target-feature+neon-target-feature+crypto-target-feature+zcm-target-feature+zcz-target-feature+sha2-target-feature+aes-target-abidarwinpcs-fallow-half-arguments-and-returns-debug-info-kind=standalone-dwarf-version=4-debugger-tuning=lldb-target-linker-version711-resource-dir/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0-dependency-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/TopBarView.d-skip-unused-modulemap-deps-MTdependencies-isysroot/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-generated-files.hmap-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-project-headers.hmap-DNS_BLOCK_ASSERTIONS=1-DOBJC_OLD_DISPATCH_PROTOTYPES=0-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-own-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-all-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos/include-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-normal/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-F/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos-internal-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/local/include-internal-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include-Os-std=gnu11-fdebug-compilation-dir/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri-ferror-limit19-fmacro-backtrace-limit0-stack-protector1-mdarwin-stkchk-strong-link-fblocks-fencode-extended-block-signature-fregister-global-dtors-with-atexit-fgnuc-version=4.2.1-fmodules-fimplicit-module-maps-fmodules-cache-path=/Users/jlchen/Library/Developer/Xcode/DerivedData/ModuleCache.noindex-fmodules-prune-interval=86400-fmodules-prune-after=345600-fbuild-session-timestamp=1638169220055526327-fmodules-validate-once-per-build-session-fmodules-validate-system-headers-fobjc-runtime=ios-11.0.0-fobjc-arc-fobjc-weak-fobjc-exceptions-fexceptions-fpascal-strings-fmax-type-align=16-fdiagnostics-show-note-include-stack-vectorize-loops-vectorize-slp-serialize-diagnostic-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/TopBarView.dia-clang-vendor-feature=+nullptrToBoolConversion-clang-vendor-feature=+messageToSelfInClassMethodIdReturnType-clang-vendor-feature=+disableInferNewAvailabilityFromInit-clang-vendor-feature=+disableNeonImmediateRangeCheck-clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation-fno-odr-hash-protocols-clang-vendor-feature=+revert09abecef7bbf@80Ÿ8`c,Q,p£QŸp„P„ÜcÜä£PŸp¤Q¤Ô£QŸäP€c€”£PŸä$Q$x£QŸ”¸P¸Ð£PŸ”ÐQÐУQŸ”ÐRÐà£RŸàìeìðP”¸S¸ÐP”´T´ØdØÜPÀeÔèPècPÔøQø@£QŸÔôRôøP@PPPT£PŸ@DQDT£QŸ@DRDTQTdPdh£PŸTXQXh£QŸTXRXhQhxPx¤c¤¨£PŸhˆQˆ¨£QŸ%‚|ïáå I : ; ( I: ; $> (ì : ; æ     I8
€„èI: ; ë I: ; 8 2  : ; æ €„èI: ; é뀄èI: ; ë €„èI: ; éë I: ;I<I  I8 €„èI: ;뀄èI: ;éë : ;  I: ; 8 &II!I7 $ > ä  Iˆ8  I'!I"ä #€„èI: ;ë $&%'&|€|': ; (.@dz: ; 'Iá)I4*: ; I+: ; I,4: ; I-.ç@dz: ; 'á.I4/.@dz: ; 'á0.ç@dz: ; '4á1I2.@dz: ; '4áä+/“ú ¨vUuˆ›¸Îãú b lÆ6;bw‘¨¿Õ€€ü€øÑE Pv*@Unv…z Æé 6va&€ªvÔäþ.Jfv„%‘¤¸Ëvã/ø<ÆUiœÂÿÿvÞ    &!O
s„–©fƹ
#ÆÝô v"+Dl‘¹vß2    -    U    ~    ¦    Ñ    Æý    
%
C
a
€

 ¹
@Õ
€ò
€ € ' €@L €€n €€Œ €€© €€Å €€ ç ÿ €€<# €€€xE €€€€b ÿÿÿÿvz  &› Á é  6 \ v„  ž ¾ Ý û v 5=i”ÁÆô V
$=Zv”v­ Ñþ)SÆ ¨Á vÞ$ñ4Liˆ§vÇ4Ûóv@#Adm‡¯Ëå @"€A€_€ €€€¢€€Ä€€€€Þû€€€€€€€€G€€€€i€€€€Ž€€€€®€€€€Ò€€€€ñ€€€€    €€€€
/€€€€ !¦vMpšÁvëý:[s‹ ¸Îå    þ
 4 vQt¢Îùv$9Ys‹¢¾vÖ ë %v>,`ºvç$Dvd{™»vÛ2êv(;@cvH²ÒëvB9SvjNеÝ~!(8‰ ~ITev‡J     û
%%JH
(7¸%JH Å:J Ñ:¸%J ˜‘    Ÿ
0     “A@ ; +    ˜R N
k v™L
o      šAl$+    œA}$+    …$C
$«
 h
¤$é¤L
Ì$ô§h
æ$    ©Lÿ$²A Ÿ    9    ù
É&        ;A×+        =Aú+        @A+        CA
#=        jA þ
    mA «5 ´    8    ¸0!    ¾Ÿ6    ïNôB     /H    ù
=v+ K+    2c
}+    6     
‹Æ=     
˜‰
D(
³+    S
»+    T Ã+    WË Õ+    XÝ
ç+    |
ÿ+    }
«
‚!
6«
ƒ!
E«
!
W«
Ž! iÍ
 ƒÍ
 މ
 ϓ
 ÓÍ
 ÛÍ
  â¶! ù¶"Ž
¥    ù
­Æ°
&c    ù
/ÆiÖ
tÛ
w´    ÷
³¼ãÞ     u 
.    ù
} ë
ˆ     
Æ 
     
Ï C
’     
Ù 
™     
å C
ž     
ò ‚
£     
J!ë
°      P!+    
µW!     `!+    
ºl!     z!+    
Š!    
œ!    
Ó
§!‰
 
à(
±!‚
ÿ     Ã!    
 
È!+    
     Ö!Í
 
3ß!ë
<     ì!V
E("C
O     !"ë
e     0"a
k(U"l
t(~"l
u(’"¯
{     ©"+    
°"    ¹"+    
›     Ô"+    
¤     è"w
À     ý"+    
É     #‚
Ï 7#C
Õ     D#—
Ú     R#¢
à(q#C
î     }#‚
ó ‰#¯
ù     ‘#+    
     ¤#Í
 
¶#‰
 
(¾#‰
 
(Ð#+    
0     à#C
6     ó#‚
= ÿ#¯
B      $V
F     $C
J     '$­
T C$Ç
¶(X$«
 
ä(]$Í
 
êf$Ç
ö(ö „ 2„  .‹ /­ V0"’ ’ š C« COœ J¤ a²  ² ¹ C¿ Cü  ü € 
!C !C !C !C !C  !C ("!C 0&!C 8*!C @.!C H2!C P6!C X:!C `>!C hB!C pF!C x«
ü!
«
?"
«
h"
üO
$#! ’/#(¹
#«
^#
¸2$ ½Â<$Ì K$"    ù
­Æ"v·$#!ù Ø$$    ù…z.a&$ 0%1    ß
'˜šH
è'ì›L
ö'VœL
(÷ŸL
=(÷ L
M(÷¡L
](+    ¤L
€(+    ¥L
œ(+    ¦L
µ(+    ©L
Ï(;Dh
ù3"Mh
74+    PL
Y4RH4c4ñ"SA n4+    Vv4G €4+    Y…4G
Œ4ü"[L ‘4+    ^«4N
Ç4#fh
6'%ih
r6+    nL
’6«
ˆA
Ÿ6‰A
±6ŠA
É6^‹A
Ö6^ŒA
í6®!A
7ü!ŽA
(7¸%‘A
Š8%'’A
·:¸%”A 9%L    û C%+    TK%N U%+    U^%N i%+    Vu%N
ƒ%ÑWL
œ%ÜXL·%ÜYAÛ%ç[Aá%+    \ê%Cõ%+    ]&C&òtA &uA
1&„A p&+    †Ž&N
®&+    ˆL
Ç&«
Žh
Ï&XAM"+rß2ˆ6;÷ &%    ù
­Æ%£ý    $ H&     ù
]$Í
#Aa&M'AxM] â&&    ù
]$Í
&H C%+    &K%N
÷&«
&h ''    ù
'‰
'A@
'«
'5A
)'«
'6A2'C'7A<'C'8AE'C'9AO'C':AY'C';Aa'C'<Al'C'=At'4'FA9 ƒ'A    ù”'«
GA2'CHA£'…IAÊ'áJAÙ'ÇNAª'(ª'0(¼'C(¾'C(À'C(Â'C(Ä'C( Ç'C((¯‡GÔ( (  '(C +(C 0(C 7(C @ Ý( A    ù
ó({ TH
2Û! WL
(2æ! ZL
32ñ! ]L
A2 `H
U2 cH
z+^ eH
i2Ó fh
2®! gh
¤2+     jL
»2Ó kh
Ý2«
mh
ã2ü! nh
3" oh
U3«
qh
^3ü! rh
q3" sh
“3> vL
¡3‚ zL
°3C |L
½3C ~L
Ê3t" €L
Ù3+     ‚L€ þ()    ù
)9)3H
7#C)7L
#)>):L
U)‚)=L
#)BH
Ò*Ó)Dh
^+I)Ih
z+^)LH
Ï1Ð!)NL
à1)SH
ì1Ó)Uh
2C)ZL
2C)^LûI4) $4)  "'(C #l'C #0(C #L)C #Åô V’ €)*    ù
ˆ)*2A@
“)*3A@
¡)*4A@
°)*5A@
»)*6A@
Å)*7A@
Î)*8A@
Ù)*9A@
ã)*:A@
í)*;A@
ù)*<A@
**=A@
**>A@
**?A@
)**@A@/#‚*SA4*}*VA‚ 4*(,    ù
<*–,7
V*¡,:
a*C,=
g*«,@
*C,C
“*C,D
™*C,E
ž*«
,K
ˆ)},NE
°)},OE
»)},PE
Å)},QE
Î)},RE
Ù)},SE
ã)},TE
ù)},UE
í)},VE
)*},WE ³*¶, ¹*À,ÑO*+.¦C¶r*- »‚*¶Ì¾*Þí*.ã  +¶+‰+‰ &+0+) !."=+P+ÑY+ÑN k+/    ùc €+J    ù­ VxA
ˆ+myA
›+‚|Aï.±~A/CA/+    /C
 /‰
ŠA'/¼‹A?/÷™AI/ÇšAV/÷¢Aj/Ò¦Ax/ݪAç/M ®a
1w!¯A*1+    µAM1CÀAf1+    ÁA
Ï(Œ!Ña
‡1®!ùax+0 }ˆ+‡ ›+1    ù
£+‚1æE
®+‚1çE
¹+‚1èE
Ã+‚1éE
Ì+‚1êE
×+‚1ëE
á+‚1ìE
ë+‚1íE
ø+‚1îE
,‚1ïE#,ë 1A,Ç1”!,‡1—:,Ã1›g*«1Ÿª.…1¤Aˆ+m1¨A ³*¶1"Œ ,,2    ù
,ë 28 ¹*m2 ³*¶2È >,(4    ù
D,!4S!
d,«
4U!
s,«
4V!
‚,Ã4W!
Š,Ã4X!
–,«
4\!
,«
4]!
¯,«
4a!
´,V4b!
ì-«
4c!
ñ-«
4d!
ú-«
4e!
ÿ-«
4f!
.«
4g!
.«
4h!
.«
4i!
+.+    4m
<.X4u U.+    4w].
g.Ã4}!
w.Ã4’! ƒ.«
4 Ž.Ã4 —.¶4  .¶4& W,3F    ù
/Æ3H
^,P3NU$[ ¹,5)    ;
Ø,b5<
â,i5=
-p5>
-w5?
5-‰5@
>-!5A
O-5B
Y-Ñ5C
k-~5D
‡-÷
5E
-¯5F
¨-O5G
´-+    5H
¾-v5I
Ë-Æ5J
à-«
5L! Â,5     ù
Ê,X5]bÓ,ô, -&-y-‘¶.8KœÇ.7’§Ø.6@¬ä.:Þ$O0/9wÇ4@â Œ/    & 
/CL
©"+    L
Ã/+    L
Ø/B !L ª/:    ù} ë :AòQR  ÷/;    ù    0þ ;"A0    !;%A/0!;(A?0C;+AL0!;.A`0!;1Ar0*!;4A‡05!;7aº0@!;:AÇ0K!;=AÝ0V!;@Að0a!;CA1l!;JA$HÖ g>,†ç¥d«
¤0<ÄÛ2ã(;H!B@jN|! 1=    ù‘! r1>    ù
ç/M >A³! ›1?/    ‘!
¶1®!?2A@—ëJz &{„   5" ó2@    ù
3«
@!)",3 ."  +¶+‰+‰ &+d"0+)i" Ç!Çö­ Š"4."  +¶+‰+‰ &+Å"0+Ñ"Ê"%!Ö""=+P+ÑY+Ñ3Ux„%#Ü4-#  +¶+‰+‰ &+M#0+Ñ"R# g#!!ˆ#!%l# ù4A    ù5‰
Ah# 5A:    ù$5©#A<a®# ,5B-    ù>5î#BGAf59BIAk5'$BKa­ VBQAó# E5B    ùU59B&A_5B'Aò …B(A,$ v5D    ù
Š5c$D'h
'$c$D+h
#D0h0h$ –5C    ù
<$­C L £5+    C<©5} ë C=A±5C>A
¾5CCCL
È5ü$CDL
Õ5%CEL
ã5CCFL
î5CCGL
÷5+    CHL_!I% 6Aj    ù,% 6     l%46¢% !AP6­% $AX6‰
'Aa6‰
*A &6E    ùÝ2«
E A
U3«
E#h
z+^E&A«
?6  ½% 37F    û
;7«
Fh
'˜FH4
@7FH4
ó#FH
$VFL
J7'FL
è'ìFL
X7ü!F h
g7F$H i%+    F%u%N ; +    F'R N C%+    F(K%N
|7vF.L
Š7+    F3L
¤7'F4L
·7CF5L
Ê7+    F:L
ï7'F?L
8CFJL
8+    FNL
;8+    FQL
[8CFUL
k8+    FXL؝ã/¼U*' ”8G    û
z+^GH
 8^GH
±8®!GH ; +    GR N i%+    Gu%N
Î8‰
G h
Þ8‰
G!h
ù8¼G#L
9vG$L
Y4G(H4 9+    G,*9C
69+    G/L
V9(G3
‰:9G9A
œ:+    G@L ( h9H    ùv9ë HA
‚99H$H46«
H)h
9Ä(H.A
ñ9Ä(H/A
:Ä(H0A
:Ä(H1A
:)H2A
5:)H3A
B:2)H4A
`:2)H5A
m:Ä(H6A
{:)H7AÉ( ›9I@    Ù( ¯9I"    ù
X$«
I5!
¾9Í
I6
Ã9+    I7
Ö9‰
I8") !:IH    Ù(7) N:IQ    Ù(&Ý:ã: ;'JG)&±;ã:¼;'K[)(pmŒ)R<LÍ
)Ì=Ê+)7Ñ=Ï+*J!Lë (ptmÏ)~<L)pÌ=â+)¼Ñ=Ï+(ä°m*—<L)¸%)õÌ=â+)AÑ=Ï+(”<m?*°<L1¸%)zÌ=â+)³Ñ=Ï+*J!L1ë +ì'L1˜+Kè=L1+;7L1«
,Êî=L2¸%-Ðoº*ú<L>.PÌ=â+.QÑ=Ï+/Ôlmê*(=LB)íÌ=â+)6Ñ=Ï++oÝ2LB«
0@o-+J=J)¥Ì=â+)ÞÑ=Ï+1%%0Ton+v=J)MÌ=â+)†Ñ=Ï+1¿(7¸%2h@m¯+¢=L)õÌ=â+)AÑ=Ï+·Ø+Ö=Ý+Ú=Ê+Apple clang version 13.0.0 (clang-1300.0.29.3)/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri/HDLSceneSiri/TopBarView.m/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdkiPhoneOS15.0.sdk/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiriUIButtonTypeNSIntegerlong intUIButtonTypeCustomUIButtonTypeSystemUIButtonTypeDetailDisclosureUIButtonTypeInfoLightUIButtonTypeInfoDarkUIButtonTypeContactAddUIButtonTypePlainUIButtonTypeCloseUIButtonTypeRoundedRectUIControlStateNSUIntegerlong unsigned intUIControlStateNormalUIControlStateHighlightedUIControlStateDisabledUIControlStateSelectedUIControlStateFocusedUIControlStateApplicationUIControlStateReservedNSTextAlignmentNSTextAlignmentLeftNSTextAlignmentCenterNSTextAlignmentRightNSTextAlignmentJustifiedNSTextAlignmentNaturalUISemanticContentAttributeUISemanticContentAttributeUnspecifiedUISemanticContentAttributePlaybackUISemanticContentAttributeSpatialUISemanticContentAttributeForceLeftToRightUISemanticContentAttributeForceRightToLeftUIUserInterfaceLayoutDirectionUIUserInterfaceLayoutDirectionLeftToRightUIUserInterfaceLayoutDirectionRightToLeftNSLineBreakModeNSLineBreakByWordWrappingNSLineBreakByCharWrappingNSLineBreakByClippingNSLineBreakByTruncatingHeadNSLineBreakByTruncatingTailNSLineBreakByTruncatingMiddleUIButtonRoleUIButtonRoleNormalUIButtonRolePrimaryUIButtonRoleCancelUIButtonRoleDestructiveUIBaselineAdjustmentUIBaselineAdjustmentAlignBaselinesUIBaselineAdjustmentAlignCentersUIBaselineAdjustmentNoneNSLineBreakStrategyNSLineBreakStrategyNoneNSLineBreakStrategyPushOutNSLineBreakStrategyHangulWordPriorityNSLineBreakStrategyStandardUIEditingInteractionConfigurationUIEditingInteractionConfigurationNoneUIEditingInteractionConfigurationDefaultCAEdgeAntialiasingMaskunsigned intkCALayerLeftEdgekCALayerRightEdgekCALayerBottomEdgekCALayerTopEdgeCACornerMaskkCALayerMinXMinYCornerkCALayerMaxXMinYCornerkCALayerMinXMaxYCornerkCALayerMaxXMaxYCornerUIControlContentVerticalAlignmentUIControlContentVerticalAlignmentCenterUIControlContentVerticalAlignmentTopUIControlContentVerticalAlignmentBottomUIControlContentVerticalAlignmentFillUIControlContentHorizontalAlignmentUIControlContentHorizontalAlignmentCenterUIControlContentHorizontalAlignmentLeftUIControlContentHorizontalAlignmentRightUIControlContentHorizontalAlignmentFillUIControlContentHorizontalAlignmentLeadingUIControlContentHorizontalAlignmentTrailingUIControlEventsUIControlEventTouchDownUIControlEventTouchDownRepeatUIControlEventTouchDragInsideUIControlEventTouchDragOutsideUIControlEventTouchDragEnterUIControlEventTouchDragExitUIControlEventTouchUpInsideUIControlEventTouchUpOutsideUIControlEventTouchCancelUIControlEventValueChangedUIControlEventPrimaryActionTriggeredUIControlEventMenuActionTriggeredUIControlEventEditingDidBeginUIControlEventEditingChangedUIControlEventEditingDidEndUIControlEventEditingDidEndOnExitUIControlEventAllTouchEventsUIControlEventAllEditingEventsUIControlEventApplicationReservedUIControlEventSystemReservedUIControlEventAllEventsUIButtonConfigurationCornerStyleUIButtonConfigurationCornerStyleFixedUIButtonConfigurationCornerStyleDynamicUIButtonConfigurationCornerStyleSmallUIButtonConfigurationCornerStyleMediumUIButtonConfigurationCornerStyleLargeUIButtonConfigurationCornerStyleCapsuleUIButtonConfigurationSizeUIButtonConfigurationSizeMediumUIButtonConfigurationSizeSmallUIButtonConfigurationSizeMiniUIButtonConfigurationSizeLargeUIButtonConfigurationMacIdiomStyleUIButtonConfigurationMacIdiomStyleAutomaticUIButtonConfigurationMacIdiomStyleBorderedUIButtonConfigurationMacIdiomStyleBorderlessUIButtonConfigurationMacIdiomStyleBorderlessTintedNSDirectionalRectEdgeNSDirectionalRectEdgeNoneNSDirectionalRectEdgeTopNSDirectionalRectEdgeLeadingNSDirectionalRectEdgeBottomNSDirectionalRectEdgeTrailingNSDirectionalRectEdgeAllUIButtonConfigurationTitleAlignmentUIButtonConfigurationTitleAlignmentAutomaticUIButtonConfigurationTitleAlignmentLeadingUIButtonConfigurationTitleAlignmentCenterUIButtonConfigurationTitleAlignmentTrailingUIMenuOptionsUIMenuOptionsDisplayInlineUIMenuOptionsDestructiveUIMenuOptionsSingleSelectionUIImageOrientationUIImageOrientationUpUIImageOrientationDownUIImageOrientationLeftUIImageOrientationRightUIImageOrientationUpMirroredUIImageOrientationDownMirroredUIImageOrientationLeftMirroredUIImageOrientationRightMirroredUIImageResizingModeUIImageResizingModeTileUIImageResizingModeStretchUIImageRenderingModeUIImageRenderingModeAutomaticUIImageRenderingModeAlwaysOriginalUIImageRenderingModeAlwaysTemplateUIFontDescriptorSymbolicTraitsuint32_tUIFontDescriptorTraitItalicUIFontDescriptorTraitBoldUIFontDescriptorTraitExpandedUIFontDescriptorTraitCondensedUIFontDescriptorTraitMonoSpaceUIFontDescriptorTraitVerticalUIFontDescriptorTraitUIOptimizedUIFontDescriptorTraitTightLeadingUIFontDescriptorTraitLooseLeadingUIFontDescriptorClassMaskUIFontDescriptorClassUnknownUIFontDescriptorClassOldStyleSerifsUIFontDescriptorClassTransitionalSerifsUIFontDescriptorClassModernSerifsUIFontDescriptorClassClarendonSerifsUIFontDescriptorClassSlabSerifsUIFontDescriptorClassFreeformSerifsUIFontDescriptorClassSansSerifUIFontDescriptorClassOrnamentalsUIFontDescriptorClassScriptsUIFontDescriptorClassSymbolicUIContextMenuInteractionAppearanceUIContextMenuInteractionAppearanceUnknownUIContextMenuInteractionAppearanceRichUIContextMenuInteractionAppearanceCompactUIViewContentModeUIViewContentModeScaleToFillUIViewContentModeScaleAspectFitUIViewContentModeScaleAspectFillUIViewContentModeRedrawUIViewContentModeCenterUIViewContentModeTopUIViewContentModeBottomUIViewContentModeLeftUIViewContentModeRightUIViewContentModeTopLeftUIViewContentModeTopRightUIViewContentModeBottomLeftUIViewContentModeBottomRightUIGraphicsImageRendererFormatRangeUIGraphicsImageRendererFormatRangeUnspecifiedUIGraphicsImageRendererFormatRangeAutomaticUIGraphicsImageRendererFormatRangeExtendedUIGraphicsImageRendererFormatRangeStandardUIUserInterfaceIdiomUIUserInterfaceIdiomUnspecifiedUIUserInterfaceIdiomPhoneUIUserInterfaceIdiomPadUIUserInterfaceIdiomTVUIUserInterfaceIdiomCarPlayUIUserInterfaceIdiomMacUIUserInterfaceStyleUIUserInterfaceStyleUnspecifiedUIUserInterfaceStyleLightUIUserInterfaceStyleDarkUITraitEnvironmentLayoutDirectionUITraitEnvironmentLayoutDirectionUnspecifiedUITraitEnvironmentLayoutDirectionLeftToRightUITraitEnvironmentLayoutDirectionRightToLeftUIUserInterfaceSizeClassUIUserInterfaceSizeClassUnspecifiedUIUserInterfaceSizeClassCompactUIUserInterfaceSizeClassRegularUIForceTouchCapabilityUIForceTouchCapabilityUnknownUIForceTouchCapabilityUnavailableUIForceTouchCapabilityAvailableUIDisplayGamutUIDisplayGamutUnspecifiedUIDisplayGamutSRGBUIDisplayGamutP3UIAccessibilityContrastUIAccessibilityContrastUnspecifiedUIAccessibilityContrastNormalUIAccessibilityContrastHighUIUserInterfaceLevelUIUserInterfaceLevelUnspecifiedUIUserInterfaceLevelBaseUIUserInterfaceLevelElevatedUILegibilityWeightUILegibilityWeightUnspecifiedUILegibilityWeightRegularUILegibilityWeightBoldUIUserInterfaceActiveAppearanceUIUserInterfaceActiveAppearanceUnspecifiedUIUserInterfaceActiveAppearanceInactiveUIUserInterfaceActiveAppearanceActiveCGLineCapint32_tintkCGLineCapButtkCGLineCapRoundkCGLineCapSquareCGLineJoinkCGLineJoinMiterkCGLineJoinRoundkCGLineJoinBevelfloatTopBarViewUIViewUIResponderNSObjectisaClassobjc_classnextRespondercanBecomeFirstResponderBOOL_BoolcanResignFirstResponderisFirstResponderundoManagerNSUndoManagergroupingLevelundoRegistrationEnabledisUndoRegistrationEnabledgroupsByEventlevelsOfUndorunLoopModesNSArraycountcanUndocanRedoundoingisUndoingredoingisRedoingundoActionIsDiscardableredoActionIsDiscardableundoActionNameNSStringlengthredoActionNameundoMenuItemTitleredoMenuItemTitle_undoStackidobjc_object_redoStack_runLoopModes_NSUndoManagerPrivate1uint64_tlong long unsigned int_target_proxy_NSUndoManagerPrivate2_NSUndoManagerPrivate3editingInteractionConfigurationlayerClassuserInteractionEnabledisUserInteractionEnabledtaglayerCALayerboundsCGRectoriginCGPointxCGFloatdoubleysizeCGSizewidthheightpositionzPositionanchorPointanchorPointZtransformCATransform3Dm11m12m13m14m21m22m23m24m31m32m33m34m41m42m43m44framehiddenisHiddendoubleSidedisDoubleSidedgeometryFlippedisGeometryFlippedsuperlayersublayerssublayerTransformmaskmasksToBoundscontentscontentsRectcontentsGravityCALayerContentsGravitycontentsScalecontentsCentercontentsFormatCALayerContentsFormatminificationFilterCALayerContentsFiltermagnificationFilterminificationFilterBiasopaqueisOpaqueneedsDisplayOnBoundsChangedrawsAsynchronouslyedgeAntialiasingMaskallowsEdgeAntialiasingbackgroundColorCGColorRefCGColorcornerRadiusmaskedCornerscornerCurveCALayerCornerCurveborderWidthborderColoropacityallowsGroupOpacitycompositingFilterfiltersbackgroundFiltersshouldRasterizerasterizationScaleshadowColorshadowOpacityshadowOffsetshadowRadiusshadowPathCGPathRefCGPathactionsNSDictionarynamedelegatestylecanBecomeFocusedfocusedisFocusedfocusGroupIdentifierfocusGroupPriorityUIFocusGroupPriorityfocusEffectUIFocusEffectsemanticContentAttributeeffectiveUserInterfaceLayoutDirectionbackButtonUIButtonUIControlenabledisEnabledselectedisSelectedhighlightedisHighlightedcontentVerticalAlignmentcontentHorizontalAlignmenteffectiveContentHorizontalAlignmentstatetrackingisTrackingtouchInsideisTouchInsideallTargetsNSSetallControlEventscontextMenuInteractionUIContextMenuInteractionmenuAppearancecontextMenuInteractionEnabledisContextMenuInteractionEnabledshowsMenuAsPrimaryActiontoolTiptoolTipInteractionUIToolTipInteractiondefaultToolTipfontUIFontfamilyNamesfamilyNamefontNamepointSizeascenderdescendercapHeightxHeightlineHeightleadingfontDescriptorUIFontDescriptorpostscriptNamematrixCGAffineTransformabcdtxtysymbolicTraitsfontAttributeslineBreakModetitleShadowOffsetcontentEdgeInsetsUIEdgeInsetstopleftbottomrighttitleEdgeInsetsimageEdgeInsetsreversesTitleShadowWhenHighlightedadjustsImageWhenHighlightedadjustsImageWhenDisabledshowsTouchWhenHighlightedconfigurationUIButtonConfigurationbackgroundUIBackgroundConfigurationcustomViewbackgroundInsetsNSDirectionalEdgeInsetstrailingedgesAddingLayoutMarginsToBackgroundInsetsUIColorblackColordarkGrayColorlightGrayColorwhiteColorgrayColorredColorgreenColorblueColorcyanColoryellowColormagentaColororangeColorpurpleColorbrownColorclearColorCIColornumberOfComponentssize_tcomponentsalphacolorSpaceCGColorSpaceRefCGColorSpaceredgreenbluestringRepresentation_priv_pad__ARRAY_SIZE_TYPE__backgroundColorTransformerUIConfigurationColorTransformer__isa__flags__reserved__FuncPtr__descriptor__block_descriptorreservedSizevisualEffectUIVisualEffectimageUIImageCGImageCGImageRefCIImageblackImagewhiteImagegrayImageredImagegreenImageblueImagecyanImagemagentaImageyellowImageclearImageextentpropertiesdefinitionCIFilterShapeurlNSURLdataRepresentationNSDatabytesabsoluteStringrelativeStringbaseURLabsoluteURLschemeresourceSpecifierhostportNSNumberNSValueobjCTypecharcharValueunsignedCharValueunsigned charshortValueshortunsignedShortValueunsigned shortintValueunsignedIntValuelongValueunsignedLongValuelongLongValuelong long intunsignedLongLongValuefloatValuedoubleValueboolValueintegerValueunsignedIntegerValuestringValueuserpasswordpathfragmentparameterStringqueryrelativePathhasDirectoryPathfileSystemRepresentationfileURLisFileURLstandardizedURLfilePathURL_urlString_baseURL_clients_reservedpixelBufferCVPixelBufferRefCVImageBufferRefCVBufferRef__CVBufferimageOrientationscalesymbolImageisSymbolImageimagesdurationNSTimeIntervalcapInsetsresizingModealignmentRectInsetsrenderingModeimageRendererFormatUIGraphicsImageRendererFormatUIGraphicsRendererFormatprefersExtendedRangepreferredRangetraitCollectionUITraitCollectionuserInterfaceIdiomuserInterfaceStylelayoutDirectiondisplayScalehorizontalSizeClassverticalSizeClassforceTouchCapabilitypreferredContentSizeCategoryUIContentSizeCategorydisplayGamutaccessibilityContrastuserInterfaceLevellegibilityWeightactiveAppearanceimageAssetUIImageAssetflipsForRightToLeftLayoutDirectionbaselineOffsetFromBottomhasBaselineUIImageConfigurationsymbolConfigurationUIImageSymbolConfigurationunspecifiedConfigurationimageContentModestrokeColorstrokeColorTransformerstrokeWidthstrokeOutsetcornerStylebuttonSizemacIdiomStylebaseForegroundColorbaseBackgroundColorimageColorTransformerpreferredSymbolConfigurationForImageshowsActivityIndicatoractivityIndicatorColorTransformertitleattributedTitleNSAttributedStringstringtitleTextAttributesTransformerUIConfigurationTextAttributesTransformersubtitleattributedSubtitlesubtitleTextAttributesTransformercontentInsetsimagePlacementimagePaddingtitlePaddingtitleAlignmentautomaticallyUpdateForSelectionconfigurationUpdateHandlerUIButtonConfigurationUpdateHandlerautomaticallyUpdatesConfigurationtintColorbuttonTypehoveredisHoveredheldisHeldrolepointerInteractionEnabledisPointerInteractionEnabledpointerStyleProviderUIButtonPointerStyleProviderUIPointerStyleaccessoriesUIPointerEffectpreviewUITargetedPreviewtargetUIPreviewTargetcontainercenterviewparametersUIPreviewParametersvisiblePathUIBezierPathemptyisEmptycurrentPointlineWidthlineCapStylelineJoinStylemiterLimitflatnessusesEvenOddFillRuleUIPointerShapemenuUIMenuUIMenuElementidentifierUIMenuIdentifieroptionschildrenselectedElementschangesSelectionAsPrimaryActioncurrentTitlecurrentTitleColorcurrentTitleShadowColorcurrentImagecurrentBackgroundImagecurrentPreferredSymbolConfigurationcurrentAttributedTitletitleLabelUILabeltexttextColortextAlignmentattributedTexthighlightedTextColornumberOfLinesadjustsFontSizeToFitWidthbaselineAdjustmentminimumScaleFactorallowsDefaultTighteningForTruncationlineBreakStrategypreferredMaxLayoutWidthenablesMarqueeWhenAncestorFocusedshowsExpansionTextWhenTruncatedminimumFontSizeadjustsLetterSpacingToFitWidthimageViewUIImageViewhighlightedImagepreferredSymbolConfigurationanimationImageshighlightedAnimationImagesanimationDurationanimationRepeatCountanimatingisAnimatingadjustsImageWhenAncestorFocusedfocusedFrameGuideUILayoutGuidelayoutFrameowningViewleadingAnchorNSLayoutXAxisAnchorNSLayoutAnchoritemhasAmbiguousLayoutconstraintsAffectingLayouttrailingAnchorleftAnchorrightAnchortopAnchorNSLayoutYAxisAnchorbottomAnchorwidthAnchorNSLayoutDimensionheightAnchorcenterXAnchorcenterYAnchoroverlayContentViewmasksFocusEffectToContentssubtitleLabel_backButton_titleLabelUIKit"-DNS_BLOCK_ASSERTIONS=1" "-DOBJC_OLD_DISPATCH_PROTOTYPES=0"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/UIKit.frameworkFoundation/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Foundation.framework-[TopBarView initWithFrame:]initWithFrame:-[TopBarView backButton]-[TopBarView titleLabel]-[TopBarView NewLabel:font:textColor:text:]NewLabel:font:textColor:text:-[TopBarView backButtonClick]backButtonClick-[TopBarView setTitle:]setTitle:-[TopBarView setBackButton:]setBackButton:-[TopBarView setTitleLabel:]setTitleLabel:-[TopBarView .cxx_destruct].cxx_destructself_cmdSELobjc_selectorcolorlabelHSAH          ÿÿÿÿ õk]_P0¹éý`þƒ<¯cG’;hí¹{ÒÁAºÔƒøÕ¿gw,®ÿXµO,ø*tÐç?J VÅBë?üš­¨þ(Ôäô$4DTdt„”¤´ÄÔäv=U+°<"*¾=–+J=+—<ê)%%²)“=U+¢=–+~<²)(=Ñ*Ü<"*=¡*g=+(7ê)ú<¡*R<o)o<o)@=Ñ*HSAH èŒï*,    o)²)ê)"*¡*Ñ*+U+–+HSAH ÿÿÿÿHSAHH‘ 
$%(*,ÿÿÿÿ/012579;=ADEHKLMNOPRÿÿÿÿÿÿÿÿSUX\ÿÿÿÿ^abefjknÿÿÿÿpsvy{}‚…†‰Š‹ŒŽøpÀ ì`MÖÃÛ$ùp–~q…“âÙeêŠÎu Š"8/r…AtsB…è<Ž•Ôðê¿RéäÅë=pó6• p–Í“<²å™ ÔÎ/Ò2ÏàX+øöŸ]èðIŸ v´È_éYŒ’]2xYšQ=hZÈvÓ òµÌ,€Z•Ád>›å‚¦uckÑ­{ÕûƤ    gêQw¤×_eƒÈ9zðCà73"L¹Õí²_b4bBÒŧ‰bFØEúr>¾sÓ?Ž7<ÇH?3¥ï˜=åžÐ;Øùv=JAɔâ–UÒÙ9ë0©;¯)a4Ë „_¦.DbûX :¡¡Ñz¬½|5û.@ÜW_Y3ÌWÝvÖ·aÃíèŒï*ø½Zê §Ëù›‚|zkùcc •|?ŽÕðZÆË„B†VòÎwÉäÓrÑå$:LћáqÑá>Kï&Ìt¾„ØtH ³Wf4†ìØÝ»`-    LΗÔT¯Ž žwÃ8‰}$)ˆ ùMÿnY3D‡šb‡Î»Nø “òÐÄ´BˎJ¦„
 4]èSõÖs¬Mh´ë\sƞòAÒ0€ˆ ð/ÜxtzÓYo± éqy£ÑNоri± @×êÄ\©›9ë€[sŒÜ`¦aTHR•Íþ
B$\©æŒd~zÁøÖiíý·/#;ïÑ ¢—}ÁË [=ùqf±Eioæ]9ÂÔâmL<c“å?¤Ñ¦=ŸT,­hé†>&‡½Ÿý;×Ðãö    /Ic}ª½Ðãý*=Pcv‰£¶ÉÜö    /BUh‚œ¯ÂÜö            6    I    \    o    ‚    •    ¯    Â    Õ    è    
 
/
I
\
v

£
½
×
ê
ý
 * D W j } — ª ½ × ê ý  # 6 I \ o ‚ • ¯ Â Õ è   / I \ o ‚ • ¨ » Î è û !4GZm‡š­ÀÓæ&9L_r…Ÿ¹Ìßù-GatŽ¡´Îáû/BUo‚•¯É4"l$W,&5#wÛ
„xü"!a!Ø'N:7)„ {æ!÷/R K$Ì›1³!ç†!6ˆç&°
,5®#f!$œ Câ&]¹,["MÑ ~y-~$,,Œ(ãK!tÍ
h"l '$#‚E5ó#ŸŸã'$þ Ø.œ¼÷
$U¼'I%/B    0%$ßrÜØ$ù”8*'2$­&-w$€)’‡¯áª/& ¥Ž
˜ûÞãþ
Œ/â4)>IÔGì4*‚ý    £U3ñ"³ì
a. ñ!þ(€^#¢9%ßQòB =+.Ö"ó2"ù4l#PÑ$(÷¯9Ù(r*«d¥*!·Ç.‘ô,i$ï+    ,3"Ó,b$Ü4# -p$€+c1|!ôÅ‚·$éü!V‡¯$>g!_ü$bv­%›9É(›+‡H&$í*Ó¤05!h9 (¶.…­öt"Ö=Ï+ƒ'9v5,$0/¼¸    O*–37½%V!k+N¦m 6%!:")u  ¹(—‰$ô6    $6,%>,ÈEÆ–5h$&÷Þ:±² Va?6¢%¾*Ì$ü ‚ª'…MxM„ ë ö …    r1‘!ÇwÇÝ(@+mÛÄ@!¤ O$z JÛ!Ò’ "&6l%Â,;ÖH    !«ù?"aë—Ð!Oüwj@l!pptä°”<ÐÔl@Th@
H û /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objc/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/_types/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/sys/_types/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri/HDLSceneSiri/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/CoreVideo.framework/HeadersHDLSceneSiriNSObjCRuntime.hUIButton.hUIControl.hNSText.hUIView.hUIInterface.hNSParagraphStyle.hUIStringDrawing.hUIResponder.hCALayer.hUIButtonConfiguration.hUIGeometry.hUIMenu.hUIImage.h_uint32_t.hUIFontDescriptor.hUIContextMenuInteraction.hUIGraphicsImageRenderer.hUIDevice.hUITouch.h_int32_t.hCGPath.hTopBarView.mNSObject.hobjc.hNSUndoManager.hNSArray.hNSString.h_uint64_t.hCGBase.hCGGeometry.hCATransform3D.hCGColor.hNSDictionary.hUIFocus.hUIFocusEffect.hNSSet.hUIToolTipInteraction.hUIFont.hCGAffineTransform.hUIBackgroundConfiguration.hUIColor.hstddef.h    CIColor.h
CGColorSpace.hUIConfigurationColorTransformer.hUIVisualEffect.hCGImage.hCIImage.h
CIFilterShape.h
NSData.hNSURL.hNSValue.hCVBuffer.h CVImageBuffer.h CVPixelBuffer.h NSDate.hUIGraphicsRenderer.hUITraitCollection.hUIContentSizeCategory.hUIImageAsset.hUIImageConfiguration.hUIImageSymbolConfiguration.hNSAttributedString.hUIPointerStyle.hUITargetedPreview.hUIBezierPath.hUIPreviewParameters.hUIMenuElement.hUILabel.hUIImageView.hUILayoutGuide.hNSLayoutAnchor.hTopBarView.h HDLSceneSiri.h TopBarView.m L    
v    å'Kj<J9tj<Jj<‚t    ¬óiòJ    ‚åhòJ    ‚w®    
=ºL`t J+=_<!J_<!‚    ºJ    ¬
ƒJ^¬"J    ‚!æ\0$J    ‚J    ò „?
 
å    º5KU<+JU<+‚LºU<+JU<]+‚lJUä+J‹‚U0+J‚U4+J    <åJ ôç
LNº2‚‚åM<3J ‚< ƒL<    5‚K >?0
L
 
=½ºÂ½ºÃJ‚½òÂJK<
rJò
qJLò
ò0¤-yLŒy=ˆ-|zLxz=d-\zLXz=P-HyLDy=<Œ-(Œ- Š--L-= -Š-ô-ì Lè =̉-¬Œ-¤Œ-œŠ--LŒ-=ˆŠ-|,Lx,=pŒ-hŠ-\+LX+=TŒ-LŠ-@*L<*=4-,Š-()L$)= L=Š-Lü=øˆ-ì-ä(Là(=؍-̍-Ž-pŠ-h&Ld&=\Œ-TŒ-LŒ-DŒ-<Œ-,-$Š-%Lü%=ø$Lô$=ì-äŠ-ÜLØ=ÔLÐ=ÌLÈ=ÄLÀ=¼L¸=°-¨Š- #Lœ#=˜"L”"=!LŒ!=|Š-xLt=l-dŠ-`L\=XLT=<Š-8    L4    =,-$Š- L=L=zLz=àŽ-ÌŒ-ÄŠ-¼L¸=¬-¤Š-œL˜=”L=ŒLˆ=„L€=|Lx=tŒ-lŠ-\LX=P-HŠ-DL@=<L8=4L0=(Œ- Š-L= 
L
=ìŠ-è    Lä    =܏-ÔŠ-ÐLÌ=ÈLÄ=ÀŒ-°-¨Š- Lœ=˜L”=ˆyL„y=PŒ-HŠ-4-,Š-$ L  =Œ-Š- L =ø-ðŠ-è Lä =àŒ-،-Њ-¼
=”Š-    LŒ    =„-|Š-xLt=pLl=dŠ-`L\=T-LŠ-HLD=@L<=0‹-(L$=L=HX8‡0…(„ 4‡ƒ{x¨T S˜RQˆP€OxNpLhJ`IXHPGHC@A8@0?(> =<;:70( ~€}|‚PM@†0K †E†ØoÈj¸e°V¨Ynˆm€lxk`iXhPz@g8f0y 2_d1aøcð0èaàbØ/ÐaÈ`À.¸_°^¨' ]˜N ˆ\€Axp\h?`X[P7Vx—+V++Ò*¢*#*ë)³)p)'àÀ €`@ W $( ¤€„ä踼Œtxltlp\`DH<D<@„ˆ¸¼˜œ˜”ˆˆŒ€ˆ€„ø€øüØÜÀĸ¼°¸°´”ˆˆŒäèÌÐÄÌÄÈœ ”œ”˜„ˆäèü€ôøØÜÐØÐÔÈÐÈÌÀÈÀĸÀ¸¼œ ”˜Œ”ŒôøÜàÔÜÔØ´¸œ ”œ”˜Ø
Ü
¼
À
¤
¨
œ
¤
œ
 
ü    €
à    ä    ø
ü
Œ  ” ˜ è ì Ä È Ø Ü Œ  ø ü  ±¤038    Áè     @    d    H    œð    P    ˆX    Û `    
h    ~p    öx    , ¨ ¨: °l
¸‡    Àûp3ø    • €    ³ 
ï    ˆ    
H
Y    ‘
˜    w       È2 Ðd
Øä’ 
;¨    ×    
h
8°    ¾
ˆ
t ¸    K”«
 
ôÀ    iÈ    ÞР   @ Ø    
à    -ÐÎÔw@”Tßh^
à¡ P     0¼8Ž8ê8    1è    ù G2
RÒYTkº zö
„K    ¹›l 
o¦¥    (
=    (
æ
H
Ö
¶+    ÂÖÕVôÌ
    4
    ‡    G
ü^ 3¾    E"P¥dm[ {³  ¨
{ ¨
Ô  ¸
¾ ¸
¨     ³
ï
 ˜ e ˜ Û       Ê P„Œ ý Å”  ' žB ­t
¼F     Ê  ðÖ7   à Nârí«     ì     (
( Ó ( D    0 ¢0 w1 “1 ²4 ïÀ¦kàZ 
Õ$
„•~D Ìù¾ß"ôâ¹!J
…±>a__OBJC_$_PROP_LIST_TopBarView__OBJC_$_INSTANCE_VARIABLES_TopBarView__OBJC_$_INSTANCE_METHODS_TopBarView_OBJC_CLASS_$_TopBarView_OBJC_METACLASS_$_TopBarView__OBJC_CLASS_RO_$_TopBarView__OBJC_METACLASS_RO_$_TopBarView_OBJC_CLASS_$_UIView_OBJC_METACLASS_$_UIView_OBJC_CLASS_$_UIFont_OBJC_METACLASS_$_NSObjectl_.str_OBJC_CLASS_$_UIColor_OBJC_IVAR_$_TopBarView._backButton_OBJC_CLASS_$_UIButton_OBJC_CLASS_$_UIApplication_objc_retain_OBJC_CLASS_$_UIScreen_OBJC_IVAR_$_TopBarView._titleLabel_OBJC_CLASS_$_UILabel_objc_storeStrong_objc_autoreleaseReturnValue_objc_retainAutoreleaseReturnValue_objc_retainAutoreleasedReturnValue_objc_releasel_llvm.cmdlinel_llvm.embedded.module__objc_empty_cache_OBJC_CLASS_$_UIImage___CFConstantStringClassReference_objc_msgSend_objc_allocl__unnamed_cfstring__OBJC_SELECTOR_REFERENCES_l_OBJC_PROP_NAME_ATTR_l_OBJC_METH_VAR_TYPE_l_OBJC_CLASS_NAME_l_OBJC_METH_VAR_NAME_l_OBJC_CLASSLIST_SUP_REFS_$__OBJC_CLASSLIST_REFERENCES_$_-[TopBarView .cxx_destruct]-[TopBarView backButton]-[TopBarView titleLabel]-[TopBarView backButtonClick]-[TopBarView NewLabel:font:textColor:text:]-[TopBarView setBackButton:]-[TopBarView setTitleLabel:]-[TopBarView initWithFrame:]-[TopBarView setTitle:]ltmp9l_OBJC_PROP_NAME_ATTR_.69l_OBJC_METH_VAR_TYPE_.59l_OBJC_METH_VAR_NAME_.49_OBJC_SELECTOR_REFERENCES_.39l_OBJC_METH_VAR_NAME_.29l_OBJC_METH_VAR_NAME_.19_OBJC_SELECTOR_REFERENCES_.9ltmp8l_OBJC_PROP_NAME_ATTR_.68l_OBJC_METH_VAR_NAME_.58_OBJC_SELECTOR_REFERENCES_.48l_OBJC_METH_VAR_NAME_.38_OBJC_SELECTOR_REFERENCES_.28_OBJC_CLASSLIST_REFERENCES_$_.18l_OBJC_METH_VAR_NAME_.8ltmp7l_OBJC_PROP_NAME_ATTR_.67l_OBJC_METH_VAR_TYPE_.57l_OBJC_METH_VAR_NAME_.47l__unnamed_cfstring_.37l_OBJC_METH_VAR_NAME_.27ltmp17_OBJC_SELECTOR_REFERENCES_.17_OBJC_SELECTOR_REFERENCES_.7ltmp6l_OBJC_METH_VAR_TYPE_.66l_OBJC_METH_VAR_NAME_.56_OBJC_SELECTOR_REFERENCES_.46l_.str.36_OBJC_CLASSLIST_REFERENCES_$_.26ltmp16l_OBJC_METH_VAR_NAME_.16l_OBJC_METH_VAR_NAME_.6ltmp5l_OBJC_METH_VAR_NAME_.65l_OBJC_METH_VAR_TYPE_.55l_OBJC_METH_VAR_NAME_.45_OBJC_SELECTOR_REFERENCES_.35_OBJC_SELECTOR_REFERENCES_.25ltmp15_OBJC_SELECTOR_REFERENCES_.15_OBJC_CLASSLIST_REFERENCES_$_.5ltmp4l_OBJC_METH_VAR_TYPE_.64l_OBJC_METH_VAR_TYPE_.54_OBJC_SELECTOR_REFERENCES_.44l_OBJC_METH_VAR_NAME_.34l_OBJC_METH_VAR_NAME_.24ltmp14l_OBJC_METH_VAR_NAME_.14_OBJC_SELECTOR_REFERENCES_.4ltmp3lCPI1_3l_OBJC_METH_VAR_NAME_.63l_OBJC_CLASS_NAME_.53l_OBJC_METH_VAR_NAME_.43l__unnamed_cfstring_.33_OBJC_SELECTOR_REFERENCES_.23ltmp13_OBJC_SELECTOR_REFERENCES_.13l_OBJC_METH_VAR_NAME_.3_objc_msgSendSuper2ltmp2lCPI2_2lCPI1_2l_OBJC_METH_VAR_NAME_.62_OBJC_SELECTOR_REFERENCES_.52_OBJC_CLASSLIST_REFERENCES_$_.42l_.str.32l_OBJC_METH_VAR_NAME_.22ltmp12l_OBJC_METH_VAR_NAME_.12_OBJC_SELECTOR_REFERENCES_.2ltmp1lCPI2_1lCPI1_1l_OBJC_METH_VAR_NAME_.61l_OBJC_METH_VAR_NAME_.51_OBJC_SELECTOR_REFERENCES_.41_OBJC_CLASSLIST_REFERENCES_$_.31_OBJC_CLASSLIST_REFERENCES_$_.21ltmp11_OBJC_SELECTOR_REFERENCES_.11l_OBJC_METH_VAR_NAME_.1ltmp0lCPI2_0lCPI1_0l_OBJC_METH_VAR_NAME_.60_OBJC_SELECTOR_REFERENCES_.50l_OBJC_METH_VAR_NAME_.40_OBJC_SELECTOR_REFERENCES_.30_OBJC_SELECTOR_REFERENCES_.20ltmp10l_OBJC_METH_VAR_NAME_.10l_OBJC_LABEL_CLASS_$#1/20           0           0     0     100644  8820      `
HDLSceneSiri.oÏúíþ X Hx__text__TEXTx€__objc_classname__TEXT x__objc_const__DATAˆ˜__objc_data__DATA P¨__objc_classlist__DATAðhè__bitcode__LLVMøp__cmdline__LLVMù    q__objc_imageinfo__DATAz__debug_abbrev__DWARF
Š‚__debug_info__DWARF”v __debug_str__DWARF
`‚__apple_names__DWARFj$â__apple_objc__DWARFŽ$__apple_namespac__DWARF²$*__apple_types__DWARFÖ…N__debug_line__DWARF[ÃÓ% ð !@ P-(-frameworkFoundation-(-frameworkCFNetwork- -frameworkSecurity-(-frameworkCoreFoundationHDLSceneSiri((€-cc1-triplearm64-apple-ios11.0.0-emit-obj--mrelax-relocations-disable-free-disable-llvm-verifier-discard-value-names-main-file-nameHDLSceneSiri.m-mrelocation-modelpic-pic-level2-mframe-pointer=non-leaf-fno-strict-return-fno-rounding-math-munwind-tables-target-sdk-version=15.0-fvisibility-inlines-hidden-static-local-var-target-cpuapple-a7-target-feature+fp-armv8-target-feature+neon-target-feature+crypto-target-feature+zcm-target-feature+zcz-target-feature+sha2-target-feature+aes-target-abidarwinpcs-fallow-half-arguments-and-returns-debug-info-kind=standalone-dwarf-version=4-debugger-tuning=lldb-target-linker-version711-resource-dir/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0-dependency-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/HDLSceneSiri.d-skip-unused-modulemap-deps-MTdependencies-isysroot/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-generated-files.hmap-iquote/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-project-headers.hmap-DNS_BLOCK_ASSERTIONS=1-DOBJC_OLD_DISPATCH_PROTOTYPES=0-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-own-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/HDLSceneSiri-all-target-headers.hmap-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos/include-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-normal/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources/arm64-I/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/DerivedSources-F/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Products/Release-iphoneos-internal-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/local/include-internal-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/13.0.0/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include-internal-externc-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include-Os-std=gnu11-fdebug-compilation-dir/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri-ferror-limit19-fmacro-backtrace-limit0-stack-protector1-mdarwin-stkchk-strong-link-fblocks-fencode-extended-block-signature-fregister-global-dtors-with-atexit-fgnuc-version=4.2.1-fmodules-fimplicit-module-maps-fmodules-cache-path=/Users/jlchen/Library/Developer/Xcode/DerivedData/ModuleCache.noindex-fmodules-prune-interval=86400-fmodules-prune-after=345600-fbuild-session-timestamp=1638169220055526327-fmodules-validate-once-per-build-session-fmodules-validate-system-headers-fobjc-runtime=ios-11.0.0-fobjc-arc-fobjc-weak-fobjc-exceptions-fexceptions-fpascal-strings-fmax-type-align=16-fdiagnostics-show-note-include-stack-vectorize-loops-vectorize-slp-serialize-diagnostic-file/Users/jlchen/Library/Developer/Xcode/DerivedData/HDLSceneSiri-fshznojdexfripggtcyndexjkops/Build/Intermediates.noindex/HDLSceneSiri.build/Release-iphoneos/HDLSceneSiri.build/Objects-normal/arm64/HDLSceneSiri.dia-clang-vendor-feature=+nullptrToBoolConversion-clang-vendor-feature=+messageToSelfInClassMethodIdReturnType-clang-vendor-feature=+disableInferNewAvailabilityFromInit-clang-vendor-feature=+disableNeonImmediateRangeCheck-clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation-fno-odr-hash-protocols-clang-vendor-feature=+revert09abecef7bbf@%‚|ïáå ì : ; æ I8  : ; æ  I: ; 8 2 II<    |€|
: ; r/•ü W-7d5mN8Wq\w    ‚Ê
aApple clang version 13.0.0 (clang-1300.0.29.3)/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiri/HDLSceneSiri/HDLSceneSiri.m/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdkiPhoneOS15.0.sdk/Users/jlchen/JLChen/ProjectsCode/HDLGit/HDLXamarinSceneSiri/HDLSceneSiriHDLSceneSiriNSObjectisaClassobjc_classFoundation"-DNS_BLOCK_ASSERTIONS=1" "-DOBJC_OLD_DISPATCH_PROTOTYPES=0"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/System/Library/Frameworks/Foundation.frameworkHSAH ÿÿÿÿHSAH ÿÿÿÿHSAH ÿÿÿÿHSAH ÿÿÿÿ»Nø =ŸT,¢¢JEL_rqNd7W'¿¹û /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk/usr/include/objcHDLSceneSiriNSObject.hHDLSceneSiri.h`H80( %茠mX ð+ðø¾øù¯ùû3ÈN Õ_OBJC_CLASS_$_NSObject_OBJC_METACLASS_$_NSObject_OBJC_CLASS_$_HDLSceneSiri_OBJC_METACLASS_$_HDLSceneSiri__OBJC_CLASS_RO_$_HDLSceneSiri__OBJC_METACLASS_RO_$_HDLSceneSiril_llvm.cmdlinel_llvm.embedded.module__objc_empty_cachel_OBJC_CLASS_NAME_ltmp7ltmp6ltmp5ltmp4ltmp3ltmp2ltmp1ltmp0l_OBJC_LABEL_CLASS_$