blob: 11af2133d1a9e1a6fec32606a82425b58a9f0086 (
plain)
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
|
org.terst.doot.widget:xml/widget_info = 0x7f0f0000
org.terst.doot.widget:styleable/GlanceAppWidget = 0x7f0e0004
org.terst.doot.widget:styleable/FontFamilyFont = 0x7f0e0003
org.terst.doot.widget:styleable/ColorStateListItem = 0x7f0e0001
org.terst.doot.widget:styleable/Capability = 0x7f0e0000
org.terst.doot.widget:style/Widget.Compat.NotificationActionText = 0x7f0d0029
org.terst.doot.widget:style/TextAppearance.Compat.Notification.Title = 0x7f0d0027
org.terst.doot.widget:style/TextAppearance.Compat.Notification.Time = 0x7f0d0026
org.terst.doot.widget:style/TextAppearance.Compat.Notification.Line2 = 0x7f0d0025
org.terst.doot.widget:style/TextAppearance.Compat.Notification.Info = 0x7f0d0024
org.terst.doot.widget:style/TextAppearance.Compat.Notification = 0x7f0d0023
org.terst.doot.widget:style/Glance.AppWidget.VerticalGrid = 0x7f0d0022
org.terst.doot.widget:style/Glance.AppWidget.Theme.ListChildren = 0x7f0d0021
org.terst.doot.widget:style/Glance.AppWidget.Theme.GridChildren = 0x7f0d0020
org.terst.doot.widget:style/Glance.AppWidget.Theme = 0x7f0d001f
org.terst.doot.widget:style/Glance.AppWidget.TextAppearance.Normal = 0x7f0d001e
org.terst.doot.widget:style/Glance.AppWidget.TextAppearance.DeviceDefaultFontFamily = 0x7f0d001c
org.terst.doot.widget:style/Glance.AppWidget.Text = 0x7f0d001a
org.terst.doot.widget:style/Glance.AppWidget.SwitchTrack = 0x7f0d0019
org.terst.doot.widget:style/Glance.AppWidget.SwitchText = 0x7f0d0017
org.terst.doot.widget:style/Glance.AppWidget.SwitchBackport = 0x7f0d0016
org.terst.doot.widget:style/Glance.AppWidget.Switch = 0x7f0d0015
org.terst.doot.widget:style/Glance.AppWidget.RadioButton = 0x7f0d0011
org.terst.doot.widget:style/Glance.AppWidget.List = 0x7f0d0010
org.terst.doot.widget:style/Glance.AppWidget.LinearProgressIndicator = 0x7f0d000f
org.terst.doot.widget:style/Glance.AppWidget.Column = 0x7f0d000e
org.terst.doot.widget:style/Glance.AppWidget.CircularProgressIndicator = 0x7f0d000d
org.terst.doot.widget:style/Glance.AppWidget.CheckBoxBackport = 0x7f0d000a
org.terst.doot.widget:style/Glance.AppWidget.Box = 0x7f0d0007
org.terst.doot.widget:style/Glance.AppWidget.Background.Loading = 0x7f0d0006
org.terst.doot.widget:style/Glance.AppWidget.Background.Error = 0x7f0d0005
org.terst.doot.widget:style/Glance.AppWidget.Background = 0x7f0d0004
org.terst.doot.widget:style/DialogWindowTheme = 0x7f0d0001
org.terst.doot.widget:string/tooltip_description = 0x7f0c0056
org.terst.doot.widget:string/tab = 0x7f0c0054
org.terst.doot.widget:string/switch_role = 0x7f0c0053
org.terst.doot.widget:string/status_bar_notification_info_overflow = 0x7f0c0052
org.terst.doot.widget:string/off = 0x7f0c004d
org.terst.doot.widget:string/not_selected = 0x7f0c004c
org.terst.doot.widget:string/navigation_menu = 0x7f0c004b
org.terst.doot.widget:string/m3c_time_picker_period_toggle_description = 0x7f0c0047
org.terst.doot.widget:string/m3c_time_picker_minute_text_field = 0x7f0c0046
org.terst.doot.widget:string/m3c_time_picker_minute_selection = 0x7f0c0044
org.terst.doot.widget:string/m3c_time_picker_minute = 0x7f0c0043
org.terst.doot.widget:string/m3c_time_picker_hour_suffix = 0x7f0c0041
org.terst.doot.widget:string/m3c_time_picker_hour_24h_suffix = 0x7f0c003f
org.terst.doot.widget:string/m3c_time_picker_hour = 0x7f0c003e
org.terst.doot.widget:layout/root_alias_226 = 0x7f0a0392
org.terst.doot.widget:string/m3c_time_picker_am = 0x7f0c003d
org.terst.doot.widget:string/m3c_snackbar_dismiss = 0x7f0c003b
org.terst.doot.widget:layout/row_start_center_vertical = 0x7f0a048b
org.terst.doot.widget:string/m3c_date_range_picker_start_headline = 0x7f0c0035
org.terst.doot.widget:string/m3c_date_range_picker_scroll_to_next_month = 0x7f0c0033
org.terst.doot.widget:string/m3c_date_range_picker_end_headline = 0x7f0c0032
org.terst.doot.widget:id/childStub0_wrap_expand = 0x7f070033
org.terst.doot.widget:id/tag_transition_group = 0x7f0700b8
org.terst.doot.widget:string/m3c_date_range_input_title = 0x7f0c0030
org.terst.doot.widget:string/m3c_date_picker_switch_to_previous_month = 0x7f0c002a
org.terst.doot.widget:string/m3c_date_picker_switch_to_input_mode = 0x7f0c0028
org.terst.doot.widget:drawable/glance_switch_track = 0x7f06001e
org.terst.doot.widget:layout/row_child_null_bottom_group_2 = 0x7f0a0449
org.terst.doot.widget:string/m3c_date_picker_switch_to_calendar_mode = 0x7f0c0026
org.terst.doot.widget:layout/root_alias_023 = 0x7f0a02c7
org.terst.doot.widget:string/m3c_date_picker_no_selection_description = 0x7f0c0023
org.terst.doot.widget:color/glance_switch_off_ambient_shadow = 0x7f040023
org.terst.doot.widget:layout/root_alias_229 = 0x7f0a0395
org.terst.doot.widget:string/m3c_date_picker_navigate_to_year_description = 0x7f0c0022
org.terst.doot.widget:string/m3c_date_input_title = 0x7f0c001f
org.terst.doot.widget:string/m3c_date_input_no_input_description = 0x7f0c001e
org.terst.doot.widget:string/m3c_date_input_invalid_not_allowed = 0x7f0c001b
org.terst.doot.widget:string/m3c_bottom_sheet_pane_title = 0x7f0c0017
org.terst.doot.widget:string/m3c_bottom_sheet_drag_handle_description = 0x7f0c0015
org.terst.doot.widget:string/indeterminate = 0x7f0c0012
org.terst.doot.widget:string/default_popup_window_title = 0x7f0c000c
org.terst.doot.widget:string/close_drawer = 0x7f0c0009
org.terst.doot.widget:string/call_notification_answer_video_action = 0x7f0c0003
org.terst.doot.widget:layout/column_child_end_null_group_0 = 0x7f0a00e0
org.terst.doot.widget:string/androidx_startup = 0x7f0c0000
org.terst.doot.widget:raw/glance_appwidget_keep = 0x7f0b0000
org.terst.doot.widget:layout/glance_vertical_grid_auto_fit_start_top = 0x7f0a0211
org.terst.doot.widget:layout/size_wrap_wrap = 0x7f0a0491
org.terst.doot.widget:layout/glance_image_crop = 0x7f0a0165
org.terst.doot.widget:layout/size_match_wrap = 0x7f0a048f
org.terst.doot.widget:layout/row_start_top = 0x7f0a048c
org.terst.doot.widget:layout/glance_vertical_grid_two_columns_end_bottom = 0x7f0a0247
org.terst.doot.widget:layout/row_start_bottom = 0x7f0a048a
org.terst.doot.widget:id/rootStubId = 0x7f0700a8
org.terst.doot.widget:layout/row_null_top_6children = 0x7f0a0486
org.terst.doot.widget:layout/row_null_top_4children = 0x7f0a0484
org.terst.doot.widget:layout/row_null_top_1children = 0x7f0a0481
org.terst.doot.widget:attr/fontProviderCerts = 0x7f020003
org.terst.doot.widget:layout/box_child_end_bottom_group_7 = 0x7f0a0049
org.terst.doot.widget:layout/row_null_top_10children = 0x7f0a0480
org.terst.doot.widget:layout/box_child_start_top_group_8 = 0x7f0a007c
org.terst.doot.widget:layout/row_null_top_0children = 0x7f0a047f
org.terst.doot.widget:layout/row_null_center_vertical_4children = 0x7f0a0479
org.terst.doot.widget:layout/row_null_center_vertical_10children = 0x7f0a0475
org.terst.doot.widget:layout/row_null_center_vertical_0children = 0x7f0a0474
org.terst.doot.widget:layout/row_null_bottom_8children = 0x7f0a0472
org.terst.doot.widget:layout/row_null_bottom_7children = 0x7f0a0471
org.terst.doot.widget:layout/row_null_bottom_5children = 0x7f0a046f
org.terst.doot.widget:string/m3c_date_picker_switch_to_day_selection = 0x7f0c0027
org.terst.doot.widget:layout/row_null_bottom_4children = 0x7f0a046e
org.terst.doot.widget:layout/row_null_bottom_3children = 0x7f0a046d
org.terst.doot.widget:layout/row_end_center_vertical = 0x7f0a0466
org.terst.doot.widget:layout/row_child_null_top_group_9 = 0x7f0a0464
org.terst.doot.widget:layout/row_child_null_top_group_7 = 0x7f0a0462
org.terst.doot.widget:layout/row_child_null_top_group_6 = 0x7f0a0461
org.terst.doot.widget:layout/row_child_null_center_vertical_group_9 = 0x7f0a045a
org.terst.doot.widget:layout/glance_swtch_backport_start_center_vertical = 0x7f0a01ed
org.terst.doot.widget:layout/root_alias_326 = 0x7f0a03f6
org.terst.doot.widget:layout/row_child_null_center_vertical_group_7 = 0x7f0a0458
org.terst.doot.widget:layout/root_alias_217 = 0x7f0a0389
org.terst.doot.widget:layout/row_child_null_center_vertical_group_6 = 0x7f0a0457
org.terst.doot.widget:layout/row_child_null_bottom_group_9 = 0x7f0a0450
org.terst.doot.widget:layout/row_child_null_bottom_group_7 = 0x7f0a044e
org.terst.doot.widget:layout/box_end_center_vertical_5children = 0x7f0a0091
org.terst.doot.widget:layout/row_child_null_bottom_group_4 = 0x7f0a044b
org.terst.doot.widget:layout/row_null_bottom_6children = 0x7f0a0470
org.terst.doot.widget:layout/box_end_top = 0x7f0a0096
org.terst.doot.widget:layout/row_center_horizontal_bottom = 0x7f0a0444
org.terst.doot.widget:layout/root_wrap_wrap = 0x7f0a0443
org.terst.doot.widget:layout/glance_radio_button_expandwidth_wrapheight = 0x7f0a01d9
org.terst.doot.widget:layout/root_wrap_match = 0x7f0a0442
org.terst.doot.widget:layout/root_match_wrap = 0x7f0a0441
org.terst.doot.widget:layout/radio_row_start_top = 0x7f0a02ae
org.terst.doot.widget:layout/size_match_match = 0x7f0a048e
org.terst.doot.widget:layout/root_match_match = 0x7f0a0440
org.terst.doot.widget:layout/row_child_null_bottom_group_0 = 0x7f0a0447
org.terst.doot.widget:string/template_percent = 0x7f0c0055
org.terst.doot.widget:layout/root_alias_397 = 0x7f0a043d
org.terst.doot.widget:layout/root_alias_388 = 0x7f0a0434
org.terst.doot.widget:id/switchTrack = 0x7f0700ae
org.terst.doot.widget:string/m3c_search_bar_search = 0x7f0c003a
org.terst.doot.widget:layout/root_alias_387 = 0x7f0a0433
org.terst.doot.widget:layout/column_child_center_horizontal_null_group_1 = 0x7f0a00d7
org.terst.doot.widget:layout/root_alias_386 = 0x7f0a0432
org.terst.doot.widget:layout/row_child_null_center_vertical_group_8 = 0x7f0a0459
org.terst.doot.widget:layout/root_alias_384 = 0x7f0a0430
org.terst.doot.widget:id/notification_background = 0x7f07009c
org.terst.doot.widget:layout/root_alias_377 = 0x7f0a0429
org.terst.doot.widget:layout/root_alias_375 = 0x7f0a0427
org.terst.doot.widget:layout/root_alias_373 = 0x7f0a0425
org.terst.doot.widget:layout/root_alias_365 = 0x7f0a041d
org.terst.doot.widget:color/glance_colorOnSecondaryContainer = 0x7f04000d
org.terst.doot.widget:layout/box_center_horizontal_bottom_0children = 0x7f0a0001
org.terst.doot.widget:layout/root_alias_362 = 0x7f0a041a
org.terst.doot.widget:layout/glance_image_fill_bounds_start_center_vertical = 0x7f0a0192
org.terst.doot.widget:layout/root_alias_361 = 0x7f0a0419
org.terst.doot.widget:layout/column_end_null_1children = 0x7f0a00f8
org.terst.doot.widget:layout/row_child_null_bottom_group_8 = 0x7f0a044f
org.terst.doot.widget:layout/root_alias_360 = 0x7f0a0418
org.terst.doot.widget:layout/root_alias_357 = 0x7f0a0415
org.terst.doot.widget:id/childStub7_wrap_match = 0x7f070073
org.terst.doot.widget:layout/root_alias_356 = 0x7f0a0414
org.terst.doot.widget:string/on = 0x7f0c004e
org.terst.doot.widget:id/accessibility_custom_action_12 = 0x7f070005
org.terst.doot.widget:layout/root_alias_350 = 0x7f0a040e
org.terst.doot.widget:layout/root_alias_347 = 0x7f0a040b
org.terst.doot.widget:layout/box_center_horizontal_bottom_5children = 0x7f0a0007
org.terst.doot.widget:layout/root_alias_341 = 0x7f0a0405
org.terst.doot.widget:layout/root_alias_337 = 0x7f0a0401
org.terst.doot.widget:drawable/glance_btn_checkbox_checked_mtrl = 0x7f060003
org.terst.doot.widget:layout/root_alias_335 = 0x7f0a03ff
org.terst.doot.widget:layout/root_alias_333 = 0x7f0a03fd
org.terst.doot.widget:layout/root_alias_294 = 0x7f0a03d6
org.terst.doot.widget:layout/root_alias_332 = 0x7f0a03fc
org.terst.doot.widget:layout/root_alias_174 = 0x7f0a035e
org.terst.doot.widget:layout/root_alias_329 = 0x7f0a03f9
org.terst.doot.widget:layout/root_alias_328 = 0x7f0a03f8
org.terst.doot.widget:layout/box_start_top_6children = 0x7f0a00c3
org.terst.doot.widget:layout/root_alias_327 = 0x7f0a03f7
org.terst.doot.widget:layout/root_alias_061 = 0x7f0a02ed
org.terst.doot.widget:layout/root_alias_320 = 0x7f0a03f0
org.terst.doot.widget:layout/glance_image_crop_end_center_vertical = 0x7f0a0176
org.terst.doot.widget:layout/radio_row_null_bottom_10children = 0x7f0a028c
org.terst.doot.widget:layout/root_alias_319 = 0x7f0a03ef
org.terst.doot.widget:layout/box_end_center_vertical_2children = 0x7f0a008e
org.terst.doot.widget:layout/root_alias_316 = 0x7f0a03ec
org.terst.doot.widget:layout/glance_image_fit_start_top = 0x7f0a01ab
org.terst.doot.widget:layout/root_alias_315 = 0x7f0a03eb
org.terst.doot.widget:layout/glance_image_fill_bounds_center_horizontal_bottom = 0x7f0a017e
org.terst.doot.widget:layout/root_alias_314 = 0x7f0a03ea
org.terst.doot.widget:layout/glance_linear_progress_indicator_wrapwidth_expandheight = 0x7f0a01b9
org.terst.doot.widget:layout/root_alias_313 = 0x7f0a03e9
org.terst.doot.widget:layout/root_alias_312 = 0x7f0a03e8
org.terst.doot.widget:layout/radio_column_start_center_vertical = 0x7f0a0276
org.terst.doot.widget:layout/box_center_horizontal_top_9children = 0x7f0a0023
org.terst.doot.widget:layout/row_expandwidth_wrapheight = 0x7f0a0468
org.terst.doot.widget:layout/root_alias_311 = 0x7f0a03e7
org.terst.doot.widget:layout/root_alias_304 = 0x7f0a03e0
org.terst.doot.widget:layout/root_alias_302 = 0x7f0a03de
org.terst.doot.widget:layout/root_alias_301 = 0x7f0a03dd
org.terst.doot.widget:layout/root_alias_298 = 0x7f0a03da
org.terst.doot.widget:layout/root_alias_295 = 0x7f0a03d7
org.terst.doot.widget:layout/root_alias_293 = 0x7f0a03d5
org.terst.doot.widget:layout/root_alias_290 = 0x7f0a03d2
org.terst.doot.widget:layout/root_alias_002 = 0x7f0a02b2
org.terst.doot.widget:layout/root_alias_289 = 0x7f0a03d1
org.terst.doot.widget:layout/root_alias_288 = 0x7f0a03d0
org.terst.doot.widget:string/m3c_date_range_picker_day_in_range = 0x7f0c0031
org.terst.doot.widget:layout/root_alias_286 = 0x7f0a03ce
org.terst.doot.widget:id/checkBox = 0x7f070029
org.terst.doot.widget:layout/radio_column_start_null_10children = 0x7f0a0278
org.terst.doot.widget:layout/root_alias_281 = 0x7f0a03c9
org.terst.doot.widget:layout/root_alias_280 = 0x7f0a03c8
org.terst.doot.widget:layout/root_alias_105 = 0x7f0a0319
org.terst.doot.widget:id/childStub4_wrap_match = 0x7f070058
org.terst.doot.widget:layout/root_alias_278 = 0x7f0a03c6
org.terst.doot.widget:layout/root_alias_276 = 0x7f0a03c4
org.terst.doot.widget:layout/row_null_bottom_0children = 0x7f0a0469
org.terst.doot.widget:color/androidx_core_ripple_material_light = 0x7f040000
org.terst.doot.widget:layout/root_alias_274 = 0x7f0a03c2
org.terst.doot.widget:layout/root_alias_271 = 0x7f0a03bf
org.terst.doot.widget:layout/glance_swtch_backport_end_center_vertical = 0x7f0a01e9
org.terst.doot.widget:layout/root_alias_076 = 0x7f0a02fc
org.terst.doot.widget:layout/root_alias_270 = 0x7f0a03be
org.terst.doot.widget:layout/root_alias_268 = 0x7f0a03bc
org.terst.doot.widget:layout/root_alias_011 = 0x7f0a02bb
org.terst.doot.widget:string/in_progress = 0x7f0c0011
org.terst.doot.widget:layout/box_child_end_top_group_2 = 0x7f0a0058
org.terst.doot.widget:layout/root_alias_266 = 0x7f0a03ba
org.terst.doot.widget:layout/root_alias_264 = 0x7f0a03b8
org.terst.doot.widget:layout/root_alias_263 = 0x7f0a03b7
org.terst.doot.widget:layout/root_alias_158 = 0x7f0a034e
org.terst.doot.widget:layout/root_alias_262 = 0x7f0a03b6
org.terst.doot.widget:layout/row_child_null_center_vertical_group_0 = 0x7f0a0451
org.terst.doot.widget:layout/box_child_start_top_group_6 = 0x7f0a007a
org.terst.doot.widget:layout/root_alias_254 = 0x7f0a03ae
org.terst.doot.widget:anim/glance_btn_checkbox_to_checked_box_outer_merged_animation = 0x7f010001
org.terst.doot.widget:layout/root_alias_244 = 0x7f0a03a4
org.terst.doot.widget:layout/glance_circular_progress_indicator_center_horizontal_top = 0x7f0a014d
org.terst.doot.widget:layout/root_alias_336 = 0x7f0a0400
org.terst.doot.widget:layout/root_alias_242 = 0x7f0a03a2
org.terst.doot.widget:layout/root_alias_180 = 0x7f0a0364
org.terst.doot.widget:layout/root_alias_355 = 0x7f0a0413
org.terst.doot.widget:layout/glance_radio_button_end_bottom = 0x7f0a01d6
org.terst.doot.widget:layout/root_alias_239 = 0x7f0a039f
org.terst.doot.widget:layout/root_alias_236 = 0x7f0a039c
org.terst.doot.widget:layout/root_alias_109 = 0x7f0a031d
org.terst.doot.widget:layout/root_alias_234 = 0x7f0a039a
org.terst.doot.widget:layout/glance_image_fill_bounds_decorative_wrapwidth_expandheight = 0x7f0a018c
org.terst.doot.widget:layout/root_alias_233 = 0x7f0a0399
org.terst.doot.widget:layout/glance_radio_button_backport_center_horizontal_center_vertical = 0x7f0a01c9
org.terst.doot.widget:layout/root_alias_231 = 0x7f0a0397
org.terst.doot.widget:layout/root_alias_230 = 0x7f0a0396
org.terst.doot.widget:layout/root_alias_224 = 0x7f0a0390
org.terst.doot.widget:drawable/glance_btn_radio_off_to_on_mtrl_animation = 0x7f060009
org.terst.doot.widget:layout/root_alias_223 = 0x7f0a038f
org.terst.doot.widget:layout/root_alias_218 = 0x7f0a038a
org.terst.doot.widget:layout/root_alias_208 = 0x7f0a0380
org.terst.doot.widget:layout/root_alias_205 = 0x7f0a037d
org.terst.doot.widget:layout/root_alias_202 = 0x7f0a037a
org.terst.doot.widget:string/call_notification_answer_action = 0x7f0c0002
org.terst.doot.widget:layout/root_alias_200 = 0x7f0a0378
org.terst.doot.widget:layout/root_alias_370 = 0x7f0a0422
org.terst.doot.widget:layout/root_alias_198 = 0x7f0a0376
org.terst.doot.widget:layout/root_alias_195 = 0x7f0a0373
org.terst.doot.widget:layout/root_alias_191 = 0x7f0a036f
org.terst.doot.widget:layout/root_alias_188 = 0x7f0a036c
org.terst.doot.widget:id/childStub0_wrap_match = 0x7f070034
org.terst.doot.widget:layout/root_alias_187 = 0x7f0a036b
org.terst.doot.widget:layout/root_alias_296 = 0x7f0a03d8
org.terst.doot.widget:layout/glance_vertical_grid_four_columns_center_horizontal_bottom = 0x7f0a0220
org.terst.doot.widget:layout/root_alias_179 = 0x7f0a0363
org.terst.doot.widget:layout/root_alias_178 = 0x7f0a0362
org.terst.doot.widget:layout/glance_image_fill_bounds_start_top = 0x7f0a0193
org.terst.doot.widget:layout/root_alias_177 = 0x7f0a0361
org.terst.doot.widget:layout/root_alias_176 = 0x7f0a0360
org.terst.doot.widget:layout/notification_template_part_chronometer = 0x7f0a0256
org.terst.doot.widget:layout/root_alias_299 = 0x7f0a03db
org.terst.doot.widget:layout/root_alias_175 = 0x7f0a035f
org.terst.doot.widget:layout/root_alias_173 = 0x7f0a035d
org.terst.doot.widget:layout/root_alias_172 = 0x7f0a035c
org.terst.doot.widget:layout/root_alias_171 = 0x7f0a035b
org.terst.doot.widget:layout/root_alias_166 = 0x7f0a0356
org.terst.doot.widget:id/pooling_container_listener_holder_tag = 0x7f0700a1
org.terst.doot.widget:layout/root_alias_165 = 0x7f0a0355
org.terst.doot.widget:layout/root_alias_163 = 0x7f0a0353
org.terst.doot.widget:layout/root_alias_162 = 0x7f0a0352
org.terst.doot.widget:layout/box_center_horizontal_center_vertical_3children = 0x7f0a0011
org.terst.doot.widget:layout/root_alias_261 = 0x7f0a03b5
org.terst.doot.widget:layout/root_alias_238 = 0x7f0a039e
org.terst.doot.widget:layout/root_alias_160 = 0x7f0a0350
org.terst.doot.widget:layout/root_alias_157 = 0x7f0a034d
org.terst.doot.widget:layout/root_alias_156 = 0x7f0a034c
org.terst.doot.widget:layout/root_alias_216 = 0x7f0a0388
org.terst.doot.widget:layout/root_alias_154 = 0x7f0a034a
org.terst.doot.widget:dimen/compat_button_padding_horizontal_material = 0x7f050002
org.terst.doot.widget:layout/root_alias_151 = 0x7f0a0347
org.terst.doot.widget:layout/box_child_end_top_group_5 = 0x7f0a005b
org.terst.doot.widget:layout/root_alias_149 = 0x7f0a0345
org.terst.doot.widget:layout/glance_text_center_horizontal_center_vertical = 0x7f0a01fd
org.terst.doot.widget:layout/root_alias_146 = 0x7f0a0342
org.terst.doot.widget:layout/box_end_top_0children = 0x7f0a0097
org.terst.doot.widget:layout/root_alias_145 = 0x7f0a0341
org.terst.doot.widget:layout/root_alias_144 = 0x7f0a0340
org.terst.doot.widget:attr/alpha = 0x7f020000
org.terst.doot.widget:layout/root_alias_255 = 0x7f0a03af
org.terst.doot.widget:layout/root_alias_142 = 0x7f0a033e
org.terst.doot.widget:layout/root_alias_140 = 0x7f0a033c
org.terst.doot.widget:string/m3c_date_picker_scroll_to_earlier_years = 0x7f0c0024
org.terst.doot.widget:layout/root_alias_136 = 0x7f0a0338
org.terst.doot.widget:layout/root_alias_391 = 0x7f0a0437
org.terst.doot.widget:layout/root_alias_135 = 0x7f0a0337
org.terst.doot.widget:layout/root_alias_134 = 0x7f0a0336
org.terst.doot.widget:layout/root_alias_132 = 0x7f0a0334
org.terst.doot.widget:layout/row_child_null_top_group_8 = 0x7f0a0463
org.terst.doot.widget:id/accessibility_custom_action_23 = 0x7f070011
org.terst.doot.widget:layout/row_child_null_bottom_group_1 = 0x7f0a0448
org.terst.doot.widget:layout/root_alias_131 = 0x7f0a0333
org.terst.doot.widget:layout/root_alias_197 = 0x7f0a0375
org.terst.doot.widget:layout/root_alias_126 = 0x7f0a032e
org.terst.doot.widget:layout/root_alias_122 = 0x7f0a032a
org.terst.doot.widget:string/m3c_date_picker_year_picker_pane_title = 0x7f0c002e
org.terst.doot.widget:layout/root_alias_120 = 0x7f0a0328
org.terst.doot.widget:layout/glance_vertical_grid_one_column_center_horizontal_center_vertical = 0x7f0a022d
org.terst.doot.widget:layout/root_alias_118 = 0x7f0a0326
org.terst.doot.widget:layout/radio_column_start_null_8children = 0x7f0a0280
org.terst.doot.widget:layout/root_alias_269 = 0x7f0a03bd
org.terst.doot.widget:id/childStub2_expand_match = 0x7f070040
org.terst.doot.widget:layout/root_alias_115 = 0x7f0a0323
org.terst.doot.widget:layout/root_alias_114 = 0x7f0a0322
org.terst.doot.widget:layout/root_alias_110 = 0x7f0a031e
org.terst.doot.widget:layout/column_center_horizontal_null_8children = 0x7f0a00d3
org.terst.doot.widget:layout/root_alias_104 = 0x7f0a0318
org.terst.doot.widget:layout/root_alias_103 = 0x7f0a0317
org.terst.doot.widget:layout/row_child_null_top_group_2 = 0x7f0a045d
org.terst.doot.widget:layout/root_alias_102 = 0x7f0a0316
org.terst.doot.widget:color/glance_switch_on_ambient_shadow = 0x7f040025
org.terst.doot.widget:layout/root_alias_378 = 0x7f0a042a
org.terst.doot.widget:drawable/glance_switch_thumb_off_to_on = 0x7f06001b
org.terst.doot.widget:layout/root_alias_101 = 0x7f0a0315
org.terst.doot.widget:layout/root_alias_100 = 0x7f0a0314
org.terst.doot.widget:layout/glance_check_box_backport_expandwidth_wrapheight = 0x7f0a0137
org.terst.doot.widget:layout/root_alias_097 = 0x7f0a0311
org.terst.doot.widget:layout/root_alias_096 = 0x7f0a0310
org.terst.doot.widget:layout/glance_radio_button_start_top = 0x7f0a01dc
org.terst.doot.widget:layout/column_child_center_horizontal_null_group_7 = 0x7f0a00dd
org.terst.doot.widget:layout/radio_row_null_center_vertical_10children = 0x7f0a0297
org.terst.doot.widget:layout/root_alias_095 = 0x7f0a030f
org.terst.doot.widget:layout/glance_text = 0x7f0a01fb
org.terst.doot.widget:layout/root_alias_092 = 0x7f0a030c
org.terst.doot.widget:layout/root_alias_206 = 0x7f0a037e
org.terst.doot.widget:layout/root_alias_138 = 0x7f0a033a
org.terst.doot.widget:layout/complex_match_wrap = 0x7f0a011d
org.terst.doot.widget:layout/root_alias_091 = 0x7f0a030b
org.terst.doot.widget:style/Glance.AppWidget.CheckBoxIcon = 0x7f0d000b
org.terst.doot.widget:layout/root_alias_090 = 0x7f0a030a
org.terst.doot.widget:layout/root_alias_087 = 0x7f0a0307
org.terst.doot.widget:layout/root_alias_083 = 0x7f0a0303
org.terst.doot.widget:layout/root_alias_079 = 0x7f0a02ff
org.terst.doot.widget:drawable/glance_ripple = 0x7f060018
org.terst.doot.widget:layout/root_alias_078 = 0x7f0a02fe
org.terst.doot.widget:layout/glance_check_box_backport_end_top = 0x7f0a0136
org.terst.doot.widget:layout/root_alias_077 = 0x7f0a02fd
org.terst.doot.widget:layout/root_alias_143 = 0x7f0a033f
org.terst.doot.widget:layout/glance_check_box_backport_end_bottom = 0x7f0a0134
org.terst.doot.widget:id/switchThumb = 0x7f0700ad
org.terst.doot.widget:layout/root_alias_075 = 0x7f0a02fb
org.terst.doot.widget:layout/root_alias_324 = 0x7f0a03f4
org.terst.doot.widget:layout/root_alias_072 = 0x7f0a02f8
org.terst.doot.widget:layout/root_alias_071 = 0x7f0a02f7
org.terst.doot.widget:layout/root_alias_070 = 0x7f0a02f6
org.terst.doot.widget:layout/root_alias_117 = 0x7f0a0325
org.terst.doot.widget:layout/glance_text_end_bottom = 0x7f0a01ff
org.terst.doot.widget:layout/root_alias_048 = 0x7f0a02e0
org.terst.doot.widget:layout/root_alias_067 = 0x7f0a02f3
org.terst.doot.widget:layout/root_alias_065 = 0x7f0a02f1
org.terst.doot.widget:layout/row_null_center_vertical_7children = 0x7f0a047c
org.terst.doot.widget:layout/root_alias_063 = 0x7f0a02ef
org.terst.doot.widget:layout/root_alias_170 = 0x7f0a035a
org.terst.doot.widget:layout/glance_image_fill_bounds_decorative_center_horizontal_center_vertical = 0x7f0a0183
org.terst.doot.widget:layout/box_child_end_bottom_group_2 = 0x7f0a0044
org.terst.doot.widget:layout/root_alias_201 = 0x7f0a0379
org.terst.doot.widget:layout/root_alias_059 = 0x7f0a02eb
org.terst.doot.widget:layout/root_alias_058 = 0x7f0a02ea
org.terst.doot.widget:layout/root_alias_057 = 0x7f0a02e9
org.terst.doot.widget:layout/glance_image_crop_decorative_start_top = 0x7f0a0173
org.terst.doot.widget:layout/root_alias_056 = 0x7f0a02e8
org.terst.doot.widget:layout/root_alias_343 = 0x7f0a0407
org.terst.doot.widget:layout/root_alias_055 = 0x7f0a02e7
org.terst.doot.widget:layout/root_alias_376 = 0x7f0a0428
org.terst.doot.widget:layout/root_alias_052 = 0x7f0a02e4
org.terst.doot.widget:layout/root_alias_051 = 0x7f0a02e3
org.terst.doot.widget:layout/root_alias_211 = 0x7f0a0383
org.terst.doot.widget:layout/root_alias_050 = 0x7f0a02e2
org.terst.doot.widget:layout/root_alias_047 = 0x7f0a02df
org.terst.doot.widget:layout/root_alias_046 = 0x7f0a02de
org.terst.doot.widget:layout/root_alias_045 = 0x7f0a02dd
org.terst.doot.widget:layout/row_center_horizontal_top = 0x7f0a0446
org.terst.doot.widget:layout/box_center_horizontal_center_vertical_9children = 0x7f0a0017
org.terst.doot.widget:layout/root_alias_041 = 0x7f0a02d9
org.terst.doot.widget:layout/row_null_top_8children = 0x7f0a0488
org.terst.doot.widget:layout/row_child_null_bottom_group_3 = 0x7f0a044a
org.terst.doot.widget:layout/root_alias_040 = 0x7f0a02d8
org.terst.doot.widget:layout/root_alias_039 = 0x7f0a02d7
org.terst.doot.widget:layout/root_alias_038 = 0x7f0a02d6
org.terst.doot.widget:layout/root_alias_035 = 0x7f0a02d3
org.terst.doot.widget:layout/root_alias_272 = 0x7f0a03c0
org.terst.doot.widget:layout/root_alias_031 = 0x7f0a02cf
org.terst.doot.widget:layout/root_alias_028 = 0x7f0a02cc
org.terst.doot.widget:layout/root_alias_024 = 0x7f0a02c8
org.terst.doot.widget:layout/root_alias_022 = 0x7f0a02c6
org.terst.doot.widget:layout/root_alias_082 = 0x7f0a0302
org.terst.doot.widget:layout/box_start_top_7children = 0x7f0a00c4
org.terst.doot.widget:layout/root_alias_020 = 0x7f0a02c4
org.terst.doot.widget:layout/root_alias_019 = 0x7f0a02c3
org.terst.doot.widget:layout/root_alias_256 = 0x7f0a03b0
org.terst.doot.widget:layout/root_alias_015 = 0x7f0a02bf
org.terst.doot.widget:layout/root_alias_014 = 0x7f0a02be
org.terst.doot.widget:string/call_notification_decline_action = 0x7f0c0004
org.terst.doot.widget:layout/root_alias_013 = 0x7f0a02bd
org.terst.doot.widget:id/childStub5_match_expand = 0x7f07005d
org.terst.doot.widget:layout/root_alias_366 = 0x7f0a041e
org.terst.doot.widget:layout/root_alias_245 = 0x7f0a03a5
org.terst.doot.widget:layout/root_alias_012 = 0x7f0a02bc
org.terst.doot.widget:layout/root_alias_382 = 0x7f0a042e
org.terst.doot.widget:layout/root_alias_010 = 0x7f0a02ba
org.terst.doot.widget:layout/root_alias_009 = 0x7f0a02b9
org.terst.doot.widget:layout/box_child_center_horizontal_bottom_group_1 = 0x7f0a0025
org.terst.doot.widget:layout/root_alias_004 = 0x7f0a02b4
org.terst.doot.widget:layout/root_alias_232 = 0x7f0a0398
org.terst.doot.widget:string/m3c_date_range_picker_scroll_to_previous_month = 0x7f0c0034
org.terst.doot.widget:layout/root_alias_001 = 0x7f0a02b1
org.terst.doot.widget:layout/root_alias_000 = 0x7f0a02b0
org.terst.doot.widget:layout/radio_row_wrapwidth_expandheight = 0x7f0a02af
org.terst.doot.widget:layout/radio_row_null_top_9children = 0x7f0a02ab
org.terst.doot.widget:layout/column_start_null_5children = 0x7f0a010b
org.terst.doot.widget:layout/radio_row_null_top_8children = 0x7f0a02aa
org.terst.doot.widget:layout/box_center_horizontal_bottom_8children = 0x7f0a000a
org.terst.doot.widget:layout/radio_row_null_top_6children = 0x7f0a02a8
org.terst.doot.widget:layout/root_alias_130 = 0x7f0a0332
org.terst.doot.widget:layout/radio_row_null_top_5children = 0x7f0a02a7
org.terst.doot.widget:attr/nestedScrollViewStyle = 0x7f02000e
org.terst.doot.widget:layout/radio_row_null_top_3children = 0x7f0a02a5
org.terst.doot.widget:layout/radio_row_null_top_2children = 0x7f0a02a4
org.terst.doot.widget:layout/radio_row_null_top_1children = 0x7f0a02a3
org.terst.doot.widget:layout/radio_row_null_top_0children = 0x7f0a02a1
org.terst.doot.widget:layout/radio_row_null_center_vertical_6children = 0x7f0a029d
org.terst.doot.widget:layout/radio_row_null_center_vertical_4children = 0x7f0a029b
org.terst.doot.widget:layout/radio_row_null_center_vertical_2children = 0x7f0a0299
org.terst.doot.widget:layout/root_alias_018 = 0x7f0a02c2
org.terst.doot.widget:layout/box_child_center_horizontal_bottom_group_6 = 0x7f0a002a
org.terst.doot.widget:layout/radio_row_null_bottom_9children = 0x7f0a0295
org.terst.doot.widget:layout/root_alias_189 = 0x7f0a036d
org.terst.doot.widget:style/Glance.AppWidget.RadioButtonIcon = 0x7f0d0012
org.terst.doot.widget:layout/radio_column_start_top = 0x7f0a0282
org.terst.doot.widget:layout/radio_row_null_bottom_8children = 0x7f0a0294
org.terst.doot.widget:layout/root_alias_073 = 0x7f0a02f9
org.terst.doot.widget:layout/radio_row_null_bottom_6children = 0x7f0a0292
org.terst.doot.widget:layout/radio_row_null_bottom_5children = 0x7f0a0291
org.terst.doot.widget:style/Glance.AppWidget.TextAppearance.Medium = 0x7f0d001d
org.terst.doot.widget:layout/root_alias_277 = 0x7f0a03c5
org.terst.doot.widget:layout/radio_row_null_bottom_3children = 0x7f0a028f
org.terst.doot.widget:layout/radio_row_null_bottom_1children = 0x7f0a028d
org.terst.doot.widget:layout/column_child_center_horizontal_null_group_2 = 0x7f0a00d8
org.terst.doot.widget:layout/glance_image_crop_end_top = 0x7f0a0177
org.terst.doot.widget:layout/row_null_top_2children = 0x7f0a0482
org.terst.doot.widget:layout/box_center_horizontal_center_vertical = 0x7f0a000c
org.terst.doot.widget:layout/root_alias_338 = 0x7f0a0402
org.terst.doot.widget:layout/root_alias_037 = 0x7f0a02d5
org.terst.doot.widget:layout/radio_row_expandwidth_wrapheight = 0x7f0a028a
org.terst.doot.widget:string/m3c_bottom_sheet_collapse_description = 0x7f0c0013
org.terst.doot.widget:layout/radio_row_end_center_vertical = 0x7f0a0288
org.terst.doot.widget:layout/glance_text_wrapwidth_expandheight = 0x7f0a0206
org.terst.doot.widget:layout/root_alias_121 = 0x7f0a0329
org.terst.doot.widget:layout/radio_row_end_bottom = 0x7f0a0287
org.terst.doot.widget:layout/root_alias_016 = 0x7f0a02c0
org.terst.doot.widget:layout/glance_image_crop_center_horizontal_top = 0x7f0a0168
org.terst.doot.widget:layout/radio_row_center_horizontal_center_vertical = 0x7f0a0285
org.terst.doot.widget:layout/radio_row_center_horizontal_bottom = 0x7f0a0284
org.terst.doot.widget:color/glance_colorSurfaceInverse = 0x7f04001a
org.terst.doot.widget:layout/radio_column_start_null_9children = 0x7f0a0281
org.terst.doot.widget:layout/root_alias_003 = 0x7f0a02b3
org.terst.doot.widget:layout/radio_column_start_null_6children = 0x7f0a027e
org.terst.doot.widget:layout/radio_column_start_null_5children = 0x7f0a027d
org.terst.doot.widget:layout/row_null_bottom_1children = 0x7f0a046b
org.terst.doot.widget:layout/radio_column_start_null_1children = 0x7f0a0279
org.terst.doot.widget:layout/radio_column_start_null_0children = 0x7f0a0277
org.terst.doot.widget:layout/root_alias_049 = 0x7f0a02e1
org.terst.doot.widget:drawable/glance_switch_thumb_off = 0x7f06001a
org.terst.doot.widget:id/tag_on_apply_window_listener = 0x7f0700b3
org.terst.doot.widget:layout/radio_column_start_bottom = 0x7f0a0275
org.terst.doot.widget:layout/root_alias_125 = 0x7f0a032d
org.terst.doot.widget:layout/root_alias_094 = 0x7f0a030e
org.terst.doot.widget:layout/radio_column_expandwidth_wrapheight = 0x7f0a0274
org.terst.doot.widget:layout/radio_column_end_top = 0x7f0a0273
org.terst.doot.widget:drawable/glance_component_square_button_ripple = 0x7f060014
org.terst.doot.widget:layout/radio_column_end_null_9children = 0x7f0a0272
org.terst.doot.widget:layout/radio_row_null_center_vertical_7children = 0x7f0a029e
org.terst.doot.widget:dimen/notification_large_icon_height = 0x7f05000e
org.terst.doot.widget:layout/glance_circular_progress_indicator_center_horizontal_bottom = 0x7f0a014b
org.terst.doot.widget:layout/radio_column_end_null_8children = 0x7f0a0271
org.terst.doot.widget:layout/radio_column_end_null_6children = 0x7f0a026f
org.terst.doot.widget:layout/radio_column_end_null_5children = 0x7f0a026e
org.terst.doot.widget:layout/radio_column_end_null_3children = 0x7f0a026c
org.terst.doot.widget:style/Glance.AppWidget.TextAppearance.Bold = 0x7f0d001b
org.terst.doot.widget:layout/root_alias_323 = 0x7f0a03f3
org.terst.doot.widget:layout/root_alias_116 = 0x7f0a0324
org.terst.doot.widget:layout/radio_column_end_null_2children = 0x7f0a026b
org.terst.doot.widget:layout/root_alias_283 = 0x7f0a03cb
org.terst.doot.widget:color/glance_colorOnBackground = 0x7f040007
org.terst.doot.widget:anim/glance_btn_radio_to_off_mtrl_dot_group_animation = 0x7f010006
org.terst.doot.widget:layout/radio_column_end_null_10children = 0x7f0a0269
org.terst.doot.widget:layout/radio_column_end_bottom = 0x7f0a0266
org.terst.doot.widget:layout/radio_column_center_horizontal_null_9children = 0x7f0a0264
org.terst.doot.widget:layout/box_end_center_vertical_7children = 0x7f0a0093
org.terst.doot.widget:layout/root_alias_367 = 0x7f0a041f
org.terst.doot.widget:layout/box_child_end_bottom_group_9 = 0x7f0a004b
org.terst.doot.widget:id/actions = 0x7f070025
org.terst.doot.widget:layout/radio_column_center_horizontal_null_8children = 0x7f0a0263
org.terst.doot.widget:layout/radio_column_center_horizontal_null_7children = 0x7f0a0262
org.terst.doot.widget:layout/row_null_center_vertical_8children = 0x7f0a047d
org.terst.doot.widget:layout/root_alias_339 = 0x7f0a0403
org.terst.doot.widget:layout/radio_column_center_horizontal_null_5children = 0x7f0a0260
org.terst.doot.widget:layout/radio_column_center_horizontal_null_2children = 0x7f0a025d
org.terst.doot.widget:drawable/glance_component_btn_outline = 0x7f060010
org.terst.doot.widget:layout/root_alias_359 = 0x7f0a0417
org.terst.doot.widget:layout/radio_column_center_horizontal_null_10children = 0x7f0a025b
org.terst.doot.widget:layout/radio_column_center_horizontal_null_0children = 0x7f0a025a
org.terst.doot.widget:layout/radio_column_center_horizontal_center_vertical = 0x7f0a0259
org.terst.doot.widget:layout/row_child_null_bottom_group_5 = 0x7f0a044c
org.terst.doot.widget:layout/radio_column_center_horizontal_bottom = 0x7f0a0258
org.terst.doot.widget:layout/notification_template_icon_group = 0x7f0a0255
org.terst.doot.widget:layout/notification_action = 0x7f0a0252
org.terst.doot.widget:id/time = 0x7f0700be
org.terst.doot.widget:id/childStub3_expand_match = 0x7f070049
org.terst.doot.widget:layout/invalid_list_item = 0x7f0a0251
org.terst.doot.widget:layout/ime_secondary_split_test_activity = 0x7f0a0250
org.terst.doot.widget:layout/ime_base_split_test_activity = 0x7f0a024f
org.terst.doot.widget:layout/glance_vertical_grid_two_columns_wrapwidth_expandheight = 0x7f0a024e
org.terst.doot.widget:id/childStub6_match_match = 0x7f070067
org.terst.doot.widget:layout/glance_vertical_grid_two_columns_start_top = 0x7f0a024d
org.terst.doot.widget:layout/glance_vertical_grid_two_columns_start_center_vertical = 0x7f0a024c
org.terst.doot.widget:layout/glance_vertical_grid_two_columns_start_bottom = 0x7f0a024b
org.terst.doot.widget:layout/glance_vertical_grid_one_column_expandwidth_wrapheight = 0x7f0a0232
org.terst.doot.widget:layout/glance_vertical_grid_two_columns_expandwidth_wrapheight = 0x7f0a024a
org.terst.doot.widget:layout/glance_vertical_grid_two_columns_end_center_vertical = 0x7f0a0248
org.terst.doot.widget:layout/column_center_horizontal_null_6children = 0x7f0a00d1
org.terst.doot.widget:layout/glance_vertical_grid_two_columns_center_horizontal_top = 0x7f0a0246
org.terst.doot.widget:layout/glance_vertical_grid_two_columns_center_horizontal_center_vertical = 0x7f0a0245
org.terst.doot.widget:layout/root_alias_306 = 0x7f0a03e2
org.terst.doot.widget:layout/glance_circular_progress_indicator_center_horizontal_center_vertical = 0x7f0a014c
org.terst.doot.widget:layout/glance_vertical_grid_two_columns = 0x7f0a0243
org.terst.doot.widget:layout/glance_vertical_grid_three_columns_wrapwidth_expandheight = 0x7f0a0242
org.terst.doot.widget:layout/glance_vertical_grid_three_columns_start_center_vertical = 0x7f0a0240
org.terst.doot.widget:string/range_start = 0x7f0c0050
org.terst.doot.widget:layout/glance_vertical_grid_three_columns_expandwidth_wrapheight = 0x7f0a023e
org.terst.doot.widget:layout/glance_vertical_grid_three_columns_end_top = 0x7f0a023d
org.terst.doot.widget:layout/glance_image_fit_decorative_center_horizontal_center_vertical = 0x7f0a019b
org.terst.doot.widget:layout/glance_vertical_grid_three_columns_end_center_vertical = 0x7f0a023c
org.terst.doot.widget:layout/column_start_null_3children = 0x7f0a0109
org.terst.doot.widget:layout/glance_vertical_grid_three_columns_end_bottom = 0x7f0a023b
org.terst.doot.widget:layout/root_alias_106 = 0x7f0a031a
org.terst.doot.widget:layout/root_alias_310 = 0x7f0a03e6
org.terst.doot.widget:layout/glance_image_fill_bounds_decorative = 0x7f0a0181
org.terst.doot.widget:layout/glance_vertical_grid_three_columns_center_horizontal_top = 0x7f0a023a
org.terst.doot.widget:layout/glance_vertical_grid_three_columns_center_horizontal_bottom = 0x7f0a0238
org.terst.doot.widget:layout/notification_template_custom_big = 0x7f0a0254
org.terst.doot.widget:layout/root_alias_129 = 0x7f0a0331
org.terst.doot.widget:layout/glance_vertical_grid_one_column_wrapwidth_expandheight = 0x7f0a0236
org.terst.doot.widget:layout/root_alias_054 = 0x7f0a02e6
org.terst.doot.widget:layout/root_alias_029 = 0x7f0a02cd
org.terst.doot.widget:id/tag_accessibility_clickable_spans = 0x7f0700b0
org.terst.doot.widget:layout/glance_vertical_grid_one_column_start_top = 0x7f0a0235
org.terst.doot.widget:layout/glance_vertical_grid_one_column_end_center_vertical = 0x7f0a0230
org.terst.doot.widget:styleable/GradientColorItem = 0x7f0e0006
org.terst.doot.widget:layout/glance_vertical_grid_one_column_center_horizontal_top = 0x7f0a022e
org.terst.doot.widget:layout/glance_vertical_grid_one_column = 0x7f0a022b
org.terst.doot.widget:layout/root_alias_190 = 0x7f0a036e
org.terst.doot.widget:layout/glance_vertical_grid_four_columns_wrapwidth_expandheight = 0x7f0a022a
org.terst.doot.widget:layout/glance_vertical_grid_four_columns_start_top = 0x7f0a0229
org.terst.doot.widget:layout/glance_vertical_grid_four_columns_start_bottom = 0x7f0a0227
org.terst.doot.widget:layout/root_alias_325 = 0x7f0a03f5
org.terst.doot.widget:layout/glance_vertical_grid_four_columns_end_top = 0x7f0a0225
org.terst.doot.widget:layout/root_alias_034 = 0x7f0a02d2
org.terst.doot.widget:layout/root_alias_204 = 0x7f0a037c
org.terst.doot.widget:layout/radio_column_wrapwidth_expandheight = 0x7f0a0283
org.terst.doot.widget:layout/glance_vertical_grid_four_columns_end_center_vertical = 0x7f0a0224
org.terst.doot.widget:layout/glance_vertical_grid_four_columns_end_bottom = 0x7f0a0223
org.terst.doot.widget:layout/glance_vertical_grid_four_columns_center_horizontal_top = 0x7f0a0222
org.terst.doot.widget:layout/glance_vertical_grid_four_columns_center_horizontal_center_vertical = 0x7f0a0221
org.terst.doot.widget:color/glance_colorTertiaryContainer = 0x7f04001d
org.terst.doot.widget:layout/root_alias_227 = 0x7f0a0393
org.terst.doot.widget:layout/root_alias_193 = 0x7f0a0371
org.terst.doot.widget:layout/glance_vertical_grid_four_columns = 0x7f0a021f
org.terst.doot.widget:layout/root_alias_139 = 0x7f0a033b
org.terst.doot.widget:layout/root_alias_033 = 0x7f0a02d1
org.terst.doot.widget:layout/glance_vertical_grid_five_columns_start_top = 0x7f0a021d
org.terst.doot.widget:layout/glance_vertical_grid_five_columns_start_center_vertical = 0x7f0a021c
org.terst.doot.widget:string/m3c_tooltip_pane_description = 0x7f0c004a
org.terst.doot.widget:layout/glance_vertical_grid_five_columns_expandwidth_wrapheight = 0x7f0a021a
org.terst.doot.widget:layout/root_alias_250 = 0x7f0a03aa
org.terst.doot.widget:layout/root_alias_164 = 0x7f0a0354
org.terst.doot.widget:layout/radio_column_center_horizontal_null_1children = 0x7f0a025c
org.terst.doot.widget:layout/box_end_bottom = 0x7f0a007e
org.terst.doot.widget:layout/glance_vertical_grid_five_columns_end_center_vertical = 0x7f0a0218
org.terst.doot.widget:layout/glance_vertical_grid_five_columns_end_bottom = 0x7f0a0217
org.terst.doot.widget:layout/glance_vertical_grid_five_columns_center_horizontal_center_vertical = 0x7f0a0215
org.terst.doot.widget:layout/glance_vertical_grid_five_columns_center_horizontal_bottom = 0x7f0a0214
org.terst.doot.widget:layout/glance_vertical_grid_auto_fit_wrapwidth_expandheight = 0x7f0a0212
org.terst.doot.widget:layout/glance_image_crop_end_bottom = 0x7f0a0175
org.terst.doot.widget:string/m3c_dialog = 0x7f0c0037
org.terst.doot.widget:string/dropdown_menu = 0x7f0c000d
org.terst.doot.widget:layout/box_end_center_vertical_4children = 0x7f0a0090
org.terst.doot.widget:id/childStub9_match_expand = 0x7f070081
org.terst.doot.widget:layout/root_alias_354 = 0x7f0a0412
org.terst.doot.widget:layout/glance_vertical_grid_auto_fit_start_center_vertical = 0x7f0a0210
org.terst.doot.widget:layout/glance_vertical_grid_auto_fit_start_bottom = 0x7f0a020f
org.terst.doot.widget:layout/row_child_null_top_group_4 = 0x7f0a045f
org.terst.doot.widget:layout/root_alias_213 = 0x7f0a0385
org.terst.doot.widget:layout/glance_vertical_grid_auto_fit_expandwidth_wrapheight = 0x7f0a020e
org.terst.doot.widget:id/childStub7_wrap_expand = 0x7f070072
org.terst.doot.widget:layout/box_center_horizontal_top_8children = 0x7f0a0022
org.terst.doot.widget:layout/glance_vertical_grid_auto_fit_end_bottom = 0x7f0a020b
org.terst.doot.widget:layout/radio_column_start_null_7children = 0x7f0a027f
org.terst.doot.widget:anim/glance_btn_checkbox_to_unchecked_icon_null_animation = 0x7f010005
org.terst.doot.widget:layout/glance_vertical_grid_auto_fit_center_horizontal_center_vertical = 0x7f0a0209
org.terst.doot.widget:layout/glance_text_start_center_vertical = 0x7f0a0204
org.terst.doot.widget:layout/root_alias_345 = 0x7f0a0409
org.terst.doot.widget:layout/glance_text_start_bottom = 0x7f0a0203
org.terst.doot.widget:interpolator/glance_btn_checkbox_checked_mtrl_animation_interpolator_0 = 0x7f090000
org.terst.doot.widget:string/m3c_date_picker_title = 0x7f0c002c
org.terst.doot.widget:layout/row_end_top = 0x7f0a0467
org.terst.doot.widget:layout/glance_text_end_top = 0x7f0a0201
org.terst.doot.widget:layout/row_null_center_vertical_5children = 0x7f0a047a
org.terst.doot.widget:layout/root_alias_221 = 0x7f0a038d
org.terst.doot.widget:drawable/ic_checkbox_empty = 0x7f060025
org.terst.doot.widget:layout/glance_text_end_center_vertical = 0x7f0a0200
org.terst.doot.widget:layout/root_alias_284 = 0x7f0a03cc
org.terst.doot.widget:layout/root_alias_119 = 0x7f0a0327
org.terst.doot.widget:layout/glance_text_center_horizontal_top = 0x7f0a01fe
org.terst.doot.widget:id/childStub3_wrap_match = 0x7f07004f
org.terst.doot.widget:layout/glance_text_center_horizontal_bottom = 0x7f0a01fc
org.terst.doot.widget:layout/glance_swtch_start_top = 0x7f0a01f9
org.terst.doot.widget:layout/glance_swtch_start_bottom = 0x7f0a01f7
org.terst.doot.widget:layout/glance_swtch_expandwidth_wrapheight = 0x7f0a01f6
org.terst.doot.widget:layout/glance_button_end_center_vertical = 0x7f0a0128
org.terst.doot.widget:layout/glance_swtch_end_top = 0x7f0a01f5
org.terst.doot.widget:layout/root_alias_185 = 0x7f0a0369
org.terst.doot.widget:id/right_side = 0x7f0700a7
org.terst.doot.widget:layout/glance_swtch_center_horizontal_center_vertical = 0x7f0a01f1
org.terst.doot.widget:layout/glance_swtch_center_horizontal_bottom = 0x7f0a01f0
org.terst.doot.widget:string/m3c_time_picker_hour_text_field = 0x7f0c0042
org.terst.doot.widget:layout/glance_swtch_backport_wrapwidth_expandheight = 0x7f0a01ef
org.terst.doot.widget:layout/radio_row_null_center_vertical_1children = 0x7f0a0298
org.terst.doot.widget:layout/radio_column_start_null_4children = 0x7f0a027c
org.terst.doot.widget:layout/glance_radio_button_backport_end_center_vertical = 0x7f0a01cc
org.terst.doot.widget:layout/glance_swtch_backport_start_top = 0x7f0a01ee
org.terst.doot.widget:layout/glance_swtch_backport_start_bottom = 0x7f0a01ec
org.terst.doot.widget:id/childStub6_expand_match = 0x7f070064
org.terst.doot.widget:layout/glance_swtch_backport_end_top = 0x7f0a01ea
org.terst.doot.widget:layout/glance_swtch_backport_end_bottom = 0x7f0a01e8
org.terst.doot.widget:layout/box_child_start_bottom_group_0 = 0x7f0a0060
org.terst.doot.widget:layout/radio_row_null_center_vertical_8children = 0x7f0a029f
org.terst.doot.widget:layout/glance_swtch_backport_center_horizontal_top = 0x7f0a01e7
org.terst.doot.widget:string/m3c_date_input_label = 0x7f0c001d
org.terst.doot.widget:layout/glance_swtch_backport = 0x7f0a01e4
org.terst.doot.widget:layout/glance_frame_start_top = 0x7f0a0163
org.terst.doot.widget:layout/root_alias_287 = 0x7f0a03cf
org.terst.doot.widget:layout/glance_vertical_grid_two_columns_end_top = 0x7f0a0249
org.terst.doot.widget:layout/column_end_center_vertical = 0x7f0a00f5
org.terst.doot.widget:layout/glance_swtch = 0x7f0a01e3
org.terst.doot.widget:layout/glance_radio_icon = 0x7f0a01de
org.terst.doot.widget:layout/glance_radio_button_start_bottom = 0x7f0a01da
org.terst.doot.widget:layout/glance_vertical_grid_five_columns_wrapwidth_expandheight = 0x7f0a021e
org.terst.doot.widget:style/Base.Glance.AppWidget.Background = 0x7f0d0000
org.terst.doot.widget:layout/glance_image_fit_decorative_expandwidth_wrapheight = 0x7f0a01a0
org.terst.doot.widget:layout/glance_radio_button_end_top = 0x7f0a01d8
org.terst.doot.widget:layout/root_alias_374 = 0x7f0a0426
org.terst.doot.widget:layout/glance_image_fit_end_bottom = 0x7f0a01a5
org.terst.doot.widget:layout/glance_radio_button_center_horizontal_center_vertical = 0x7f0a01d4
org.terst.doot.widget:layout/glance_radio_button_center_horizontal_bottom = 0x7f0a01d3
org.terst.doot.widget:layout/glance_switch_track = 0x7f0a01e2
org.terst.doot.widget:layout/box_child_end_center_vertical_group_9 = 0x7f0a0055
org.terst.doot.widget:layout/glance_radio_button_backport_start_top = 0x7f0a01d1
org.terst.doot.widget:layout/glance_radio_button_backport_start_bottom = 0x7f0a01cf
org.terst.doot.widget:layout/root_alias_260 = 0x7f0a03b4
org.terst.doot.widget:layout/radio_column_end_null_4children = 0x7f0a026d
org.terst.doot.widget:layout/glance_radio_button_backport_expandwidth_wrapheight = 0x7f0a01ce
org.terst.doot.widget:layout/glance_check_box_backport_start_center_vertical = 0x7f0a0139
org.terst.doot.widget:layout/glance_radio_button_backport_end_bottom = 0x7f0a01cb
org.terst.doot.widget:layout/glance_radio_button_backport_center_horizontal_top = 0x7f0a01ca
org.terst.doot.widget:layout/glance_radio_button_backport_center_horizontal_bottom = 0x7f0a01c8
org.terst.doot.widget:layout/column_end_null_8children = 0x7f0a00ff
org.terst.doot.widget:layout/glance_list_start_top = 0x7f0a01c4
org.terst.doot.widget:id/sizeView = 0x7f0700aa
org.terst.doot.widget:layout/glance_list_expandwidth_wrapheight = 0x7f0a01c1
org.terst.doot.widget:layout/glance_list_end_center_vertical = 0x7f0a01bf
org.terst.doot.widget:layout/glance_list_end_bottom = 0x7f0a01be
org.terst.doot.widget:layout/glance_vertical_grid_four_columns_expandwidth_wrapheight = 0x7f0a0226
org.terst.doot.widget:layout/root_alias_257 = 0x7f0a03b1
org.terst.doot.widget:layout/glance_list_center_horizontal_center_vertical = 0x7f0a01bc
org.terst.doot.widget:layout/glance_list = 0x7f0a01ba
org.terst.doot.widget:layout/box_center_horizontal_top_6children = 0x7f0a0020
org.terst.doot.widget:layout/radio_row_null_top_10children = 0x7f0a02a2
org.terst.doot.widget:id/action_image = 0x7f070023
org.terst.doot.widget:layout/glance_linear_progress_indicator_start_top = 0x7f0a01b8
org.terst.doot.widget:layout/box_center_horizontal_center_vertical_7children = 0x7f0a0015
org.terst.doot.widget:layout/glance_circular_progress_indicator_start_bottom = 0x7f0a0152
org.terst.doot.widget:layout/root_alias_085 = 0x7f0a0305
org.terst.doot.widget:layout/box_end_center_vertical_1children = 0x7f0a008d
org.terst.doot.widget:layout/glance_linear_progress_indicator_expandwidth_wrapheight = 0x7f0a01b5
org.terst.doot.widget:layout/glance_linear_progress_indicator_end_center_vertical = 0x7f0a01b3
org.terst.doot.widget:layout/glance_linear_progress_indicator_end_bottom = 0x7f0a01b2
org.terst.doot.widget:layout/glance_radio_button = 0x7f0a01c6
org.terst.doot.widget:layout/glance_linear_progress_indicator_center_horizontal_top = 0x7f0a01b1
org.terst.doot.widget:layout/glance_list_end_top = 0x7f0a01c0
org.terst.doot.widget:layout/glance_frame_center_horizontal_center_vertical = 0x7f0a015b
org.terst.doot.widget:layout/glance_invalid_list_item = 0x7f0a01ad
org.terst.doot.widget:id/deletedViewId = 0x7f07008a
org.terst.doot.widget:layout/box_start_center_vertical_4children = 0x7f0a00b5
org.terst.doot.widget:layout/box_child_start_bottom_group_3 = 0x7f0a0063
org.terst.doot.widget:layout/glance_image_fit_start_bottom = 0x7f0a01a9
org.terst.doot.widget:layout/glance_image_fit_end_top = 0x7f0a01a7
org.terst.doot.widget:drawable/glance_switch_thumb_on_to_off = 0x7f06001d
org.terst.doot.widget:layout/root_alias_141 = 0x7f0a033d
org.terst.doot.widget:id/childStub2_match_match = 0x7f070043
org.terst.doot.widget:layout/glance_image_fit_decorative_start_center_vertical = 0x7f0a01a2
org.terst.doot.widget:layout/root_alias_300 = 0x7f0a03dc
org.terst.doot.widget:layout/glance_image_fit_decorative_start_bottom = 0x7f0a01a1
org.terst.doot.widget:layout/glance_image_fit_decorative_end_bottom = 0x7f0a019d
org.terst.doot.widget:layout/column_child_start_null_group_7 = 0x7f0a00f1
org.terst.doot.widget:color/notification_action_color_filter = 0x7f04002c
org.terst.doot.widget:layout/root_alias_297 = 0x7f0a03d9
org.terst.doot.widget:layout/root_alias_235 = 0x7f0a039b
org.terst.doot.widget:layout/glance_image_fit_center_horizontal_center_vertical = 0x7f0a0197
org.terst.doot.widget:drawable/notification_bg_low_normal = 0x7f060029
org.terst.doot.widget:layout/complex_expand_expand = 0x7f0a0112
org.terst.doot.widget:layout/glance_button_end_top = 0x7f0a0129
org.terst.doot.widget:id/childStub0_match_wrap = 0x7f070032
org.terst.doot.widget:id/childStub8_match_expand = 0x7f070078
org.terst.doot.widget:layout/glance_button_wrapwidth_expandheight = 0x7f0a012e
org.terst.doot.widget:style/Glance.AppWidget.SwitchThumb = 0x7f0d0018
org.terst.doot.widget:layout/glance_image_fill_bounds_decorative_start_center_vertical = 0x7f0a018a
org.terst.doot.widget:layout/glance_radio_button_wrapwidth_expandheight = 0x7f0a01dd
org.terst.doot.widget:layout/glance_image_fill_bounds_decorative_center_horizontal_top = 0x7f0a0184
org.terst.doot.widget:layout/radio_column_center_horizontal_top = 0x7f0a0265
org.terst.doot.widget:layout/glance_check_box_backport_start_top = 0x7f0a013a
org.terst.doot.widget:id/childStub9_match_match = 0x7f070082
org.terst.doot.widget:layout/glance_image_fill_bounds_center_horizontal_top = 0x7f0a0180
org.terst.doot.widget:layout/glance_switch_thumb = 0x7f0a01e1
org.terst.doot.widget:layout/glance_image_fill_bounds = 0x7f0a017d
org.terst.doot.widget:layout/glance_image_fit_decorative_center_horizontal_bottom = 0x7f0a019a
org.terst.doot.widget:layout/root_alias_309 = 0x7f0a03e5
org.terst.doot.widget:layout/root_alias_089 = 0x7f0a0309
org.terst.doot.widget:layout/glance_image_crop_start_bottom = 0x7f0a0179
org.terst.doot.widget:layout/glance_image_crop_expandwidth_wrapheight = 0x7f0a0178
org.terst.doot.widget:layout/box_end_top_10children = 0x7f0a0098
org.terst.doot.widget:id/accessibility_custom_action_28 = 0x7f070016
org.terst.doot.widget:layout/glance_image_crop_decorative_wrapwidth_expandheight = 0x7f0a0174
org.terst.doot.widget:string/m3c_bottom_sheet_dismiss_description = 0x7f0c0014
org.terst.doot.widget:layout/root_alias_389 = 0x7f0a0435
org.terst.doot.widget:layout/root_alias_252 = 0x7f0a03ac
org.terst.doot.widget:layout/box_end_bottom_5children = 0x7f0a0085
org.terst.doot.widget:layout/glance_image_crop_decorative = 0x7f0a0169
org.terst.doot.widget:id/childStub2_match_wrap = 0x7f070044
org.terst.doot.widget:id/childStub8_wrap_match = 0x7f07007c
org.terst.doot.widget:layout/root_alias_107 = 0x7f0a031b
org.terst.doot.widget:layout/glance_frame_end_top = 0x7f0a015f
org.terst.doot.widget:dimen/notification_action_icon_size = 0x7f05000a
org.terst.doot.widget:layout/glance_frame_center_horizontal_top = 0x7f0a015c
org.terst.doot.widget:layout/glance_error_layout = 0x7f0a0158
org.terst.doot.widget:layout/glance_default_loading_layout = 0x7f0a0156
org.terst.doot.widget:layout/root_alias_036 = 0x7f0a02d4
org.terst.doot.widget:layout/glance_list_wrapwidth_expandheight = 0x7f0a01c5
org.terst.doot.widget:layout/glance_circular_progress_indicator_start_center_vertical = 0x7f0a0153
org.terst.doot.widget:layout/root_alias_192 = 0x7f0a0370
org.terst.doot.widget:drawable/glance_switch_thumb_animated = 0x7f060019
org.terst.doot.widget:layout/glance_vertical_grid_three_columns = 0x7f0a0237
org.terst.doot.widget:layout/glance_circular_progress_indicator_end_top = 0x7f0a0150
org.terst.doot.widget:layout/box_center_horizontal_top_2children = 0x7f0a001c
org.terst.doot.widget:id/childStub4_match_expand = 0x7f070054
org.terst.doot.widget:layout/root_alias_199 = 0x7f0a0377
org.terst.doot.widget:layout/glance_check_box_wrapwidth_expandheight = 0x7f0a0149
org.terst.doot.widget:layout/glance_frame_start_bottom = 0x7f0a0161
org.terst.doot.widget:layout/root_alias_167 = 0x7f0a0357
org.terst.doot.widget:layout/glance_check_box_view = 0x7f0a0148
org.terst.doot.widget:layout/row_null_top_3children = 0x7f0a0483
org.terst.doot.widget:layout/glance_check_box_image = 0x7f0a0143
org.terst.doot.widget:layout/box_end_top_5children = 0x7f0a009d
org.terst.doot.widget:layout/glance_check_box_center_horizontal_bottom = 0x7f0a013c
org.terst.doot.widget:id/title = 0x7f0700bf
org.terst.doot.widget:layout/root_alias_368 = 0x7f0a0420
org.terst.doot.widget:layout/glance_check_box_backport_wrapwidth_expandheight = 0x7f0a013b
org.terst.doot.widget:layout/root_alias_395 = 0x7f0a043b
org.terst.doot.widget:layout/glance_check_box_backport_center_horizontal_top = 0x7f0a0133
org.terst.doot.widget:layout/glance_check_box_backport_center_horizontal_center_vertical = 0x7f0a0132
org.terst.doot.widget:layout/box_child_end_top_group_6 = 0x7f0a005c
org.terst.doot.widget:layout/glance_image_crop_center_horizontal_center_vertical = 0x7f0a0167
org.terst.doot.widget:layout/glance_check_box = 0x7f0a012f
org.terst.doot.widget:drawable/glance_btn_radio_on_to_off_mtrl_animation = 0x7f06000b
org.terst.doot.widget:string/app_name = 0x7f0c0001
org.terst.doot.widget:layout/glance_linear_progress_indicator_center_horizontal_bottom = 0x7f0a01af
org.terst.doot.widget:layout/glance_vertical_grid_three_columns_center_horizontal_center_vertical = 0x7f0a0239
org.terst.doot.widget:layout/custom_dialog = 0x7f0a0122
org.terst.doot.widget:layout/complex_wrap_wrap = 0x7f0a0121
org.terst.doot.widget:layout/glance_image_fit = 0x7f0a0195
org.terst.doot.widget:layout/column_child_center_horizontal_null_group_9 = 0x7f0a00df
org.terst.doot.widget:layout/row_wrapwidth_expandheight = 0x7f0a048d
org.terst.doot.widget:color/glance_colorOutline = 0x7f040013
org.terst.doot.widget:dimen/notification_right_side_padding_top = 0x7f050013
org.terst.doot.widget:layout/glance_image_fill_bounds_wrapwidth_expandheight = 0x7f0a0194
org.terst.doot.widget:bool/enable_system_job_service_default = 0x7f030002
org.terst.doot.widget:layout/glance_vertical_grid_auto_fit_center_horizontal_bottom = 0x7f0a0208
org.terst.doot.widget:style/Widget.Compat.NotificationActionContainer = 0x7f0d0028
org.terst.doot.widget:layout/complex_fixed_wrap = 0x7f0a0119
org.terst.doot.widget:layout/complex_fixed_fixed = 0x7f0a0117
org.terst.doot.widget:layout/glance_radio_button_backport_wrapwidth_expandheight = 0x7f0a01d2
org.terst.doot.widget:layout/glance_image_fit_expandwidth_wrapheight = 0x7f0a01a8
org.terst.doot.widget:layout/complex_expand_match = 0x7f0a0114
org.terst.doot.widget:layout/glance_image_fill_bounds_decorative_end_bottom = 0x7f0a0185
org.terst.doot.widget:layout/column_wrapwidth_expandheight = 0x7f0a0111
org.terst.doot.widget:layout/glance_image_crop_decorative_end_center_vertical = 0x7f0a016e
org.terst.doot.widget:layout/column_start_null_8children = 0x7f0a010e
org.terst.doot.widget:layout/column_start_null_7children = 0x7f0a010d
org.terst.doot.widget:layout/row_child_null_top_group_3 = 0x7f0a045e
org.terst.doot.widget:attr/fontProviderAuthority = 0x7f020002
org.terst.doot.widget:layout/column_start_null_1children = 0x7f0a0107
org.terst.doot.widget:dimen/compat_button_padding_vertical_material = 0x7f050003
org.terst.doot.widget:layout/column_end_bottom = 0x7f0a00f4
org.terst.doot.widget:layout/glance_image_crop_decorative_start_bottom = 0x7f0a0171
org.terst.doot.widget:layout/column_start_null_10children = 0x7f0a0106
org.terst.doot.widget:drawable/glance_switch_thumb_on = 0x7f06001c
org.terst.doot.widget:layout/root_alias_344 = 0x7f0a0408
org.terst.doot.widget:string/selected = 0x7f0c0051
org.terst.doot.widget:layout/root_alias_219 = 0x7f0a038b
org.terst.doot.widget:layout/column_start_null_0children = 0x7f0a0105
org.terst.doot.widget:layout/column_start_center_vertical = 0x7f0a0104
org.terst.doot.widget:layout/column_expandwidth_wrapheight = 0x7f0a0102
org.terst.doot.widget:string/m3c_time_picker_minute_suffix = 0x7f0c0045
org.terst.doot.widget:layout/radio_row_null_bottom_4children = 0x7f0a0290
org.terst.doot.widget:layout/root_alias_398 = 0x7f0a043e
org.terst.doot.widget:id/accessibility_custom_action_9 = 0x7f070020
org.terst.doot.widget:layout/glance_check_box_end_center_vertical = 0x7f0a0140
org.terst.doot.widget:layout/box_center_horizontal_bottom_2children = 0x7f0a0004
org.terst.doot.widget:string/m3c_date_range_input_invalid_range_input = 0x7f0c002f
org.terst.doot.widget:drawable/glance_loading_layout_background = 0x7f060016
org.terst.doot.widget:layout/notification_template_part_time = 0x7f0a0257
org.terst.doot.widget:layout/root_alias_308 = 0x7f0a03e4
org.terst.doot.widget:layout/box_end_top_1children = 0x7f0a0099
org.terst.doot.widget:layout/root_alias_228 = 0x7f0a0394
org.terst.doot.widget:layout/root_alias_008 = 0x7f0a02b8
org.terst.doot.widget:layout/column_end_null_9children = 0x7f0a0100
org.terst.doot.widget:layout/root_alias_246 = 0x7f0a03a6
org.terst.doot.widget:layout/glance_image_crop_decorative_center_horizontal_bottom = 0x7f0a016a
org.terst.doot.widget:string/call_notification_incoming_text = 0x7f0c0006
org.terst.doot.widget:layout/column_end_null_2children = 0x7f0a00f9
org.terst.doot.widget:layout/row_null_top_7children = 0x7f0a0487
org.terst.doot.widget:id/childStub1_expand_wrap = 0x7f070038
org.terst.doot.widget:layout/column_start_bottom = 0x7f0a0103
org.terst.doot.widget:layout/box_end_top_7children = 0x7f0a009f
org.terst.doot.widget:layout/box_start_top_5children = 0x7f0a00c2
org.terst.doot.widget:layout/root_alias_399 = 0x7f0a043f
org.terst.doot.widget:layout/column_end_null_10children = 0x7f0a00f7
org.terst.doot.widget:layout/column_child_start_null_group_9 = 0x7f0a00f3
org.terst.doot.widget:id/accessibility_custom_action_4 = 0x7f07001b
org.terst.doot.widget:id/chronometer = 0x7f070087
org.terst.doot.widget:layout/column_center_horizontal_null_3children = 0x7f0a00ce
org.terst.doot.widget:layout/column_child_start_null_group_8 = 0x7f0a00f2
org.terst.doot.widget:string/m3c_date_picker_switch_to_year_selection = 0x7f0c002b
org.terst.doot.widget:layout/root_alias_346 = 0x7f0a040a
org.terst.doot.widget:layout/radio_row_null_bottom_0children = 0x7f0a028b
org.terst.doot.widget:id/action_text = 0x7f070024
org.terst.doot.widget:layout/column_child_start_null_group_4 = 0x7f0a00ee
org.terst.doot.widget:layout/column_child_start_null_group_2 = 0x7f0a00ec
org.terst.doot.widget:layout/column_child_end_null_group_8 = 0x7f0a00e8
org.terst.doot.widget:id/hide_ime_id = 0x7f070091
org.terst.doot.widget:id/childStub3_expand_expand = 0x7f070048
org.terst.doot.widget:layout/box_start_bottom_0children = 0x7f0a00a4
org.terst.doot.widget:layout/column_child_end_null_group_7 = 0x7f0a00e7
org.terst.doot.widget:layout/column_end_null_5children = 0x7f0a00fc
org.terst.doot.widget:layout/column_center_horizontal_center_vertical = 0x7f0a00c9
org.terst.doot.widget:layout/column_child_end_null_group_6 = 0x7f0a00e6
org.terst.doot.widget:layout/glance_circular_progress_indicator_wrapwidth_expandheight = 0x7f0a0155
org.terst.doot.widget:layout/column_child_end_null_group_5 = 0x7f0a00e5
org.terst.doot.widget:color/glance_switch_off_key_shadow = 0x7f040024
org.terst.doot.widget:layout/column_child_end_null_group_4 = 0x7f0a00e4
org.terst.doot.widget:layout/root_alias_214 = 0x7f0a0386
org.terst.doot.widget:layout/root_alias_247 = 0x7f0a03a7
org.terst.doot.widget:layout/root_alias_113 = 0x7f0a0321
org.terst.doot.widget:layout/column_child_end_null_group_3 = 0x7f0a00e3
org.terst.doot.widget:layout/root_alias_007 = 0x7f0a02b7
org.terst.doot.widget:layout/column_child_end_null_group_2 = 0x7f0a00e2
org.terst.doot.widget:color/vector_tint_color = 0x7f04002e
org.terst.doot.widget:attr/shortcutMatchRequired = 0x7f020010
org.terst.doot.widget:id/text2 = 0x7f0700bd
org.terst.doot.widget:layout/root_alias_291 = 0x7f0a03d3
org.terst.doot.widget:layout/root_alias_203 = 0x7f0a037b
org.terst.doot.widget:color/glance_colorSurface = 0x7f040019
org.terst.doot.widget:layout/column_center_horizontal_top = 0x7f0a00d5
org.terst.doot.widget:layout/root_alias_147 = 0x7f0a0343
org.terst.doot.widget:style/Glance.AppWidget.Button = 0x7f0d0008
org.terst.doot.widget:layout/glance_vertical_grid_five_columns_end_top = 0x7f0a0219
org.terst.doot.widget:layout/glance_swtch_center_horizontal_top = 0x7f0a01f2
org.terst.doot.widget:layout/box_end_top_9children = 0x7f0a00a1
org.terst.doot.widget:layout/row_child_null_center_vertical_group_4 = 0x7f0a0455
org.terst.doot.widget:layout/glance_switch_text = 0x7f0a01e0
org.terst.doot.widget:id/switchText = 0x7f0700ac
org.terst.doot.widget:layout/glance_image_fit_wrapwidth_expandheight = 0x7f0a01ac
org.terst.doot.widget:layout/column_center_horizontal_null_5children = 0x7f0a00d0
org.terst.doot.widget:string/m3c_time_picker_pm = 0x7f0c0048
org.terst.doot.widget:layout/glance_check_box_end_bottom = 0x7f0a013f
org.terst.doot.widget:layout/column_center_horizontal_null_4children = 0x7f0a00cf
org.terst.doot.widget:dimen/notification_top_pad_large_text = 0x7f050018
org.terst.doot.widget:id/accessibility_custom_action_13 = 0x7f070006
org.terst.doot.widget:layout/column_center_horizontal_null_1children = 0x7f0a00cc
org.terst.doot.widget:layout/column_center_horizontal_null_10children = 0x7f0a00cb
org.terst.doot.widget:layout/row_null_center_vertical_2children = 0x7f0a0477
org.terst.doot.widget:layout/box_child_center_horizontal_center_vertical_group_9 = 0x7f0a0037
org.terst.doot.widget:layout/complex_wrap_fixed = 0x7f0a011f
org.terst.doot.widget:style/Glance.AppWidget.RadioButtonText = 0x7f0d0013
org.terst.doot.widget:layout/glance_linear_progress_indicator = 0x7f0a01ae
org.terst.doot.widget:layout/column_center_horizontal_null_0children = 0x7f0a00ca
org.terst.doot.widget:layout/glance_radio_button_end_center_vertical = 0x7f0a01d7
org.terst.doot.widget:layout/glance_frame_wrapwidth_expandheight = 0x7f0a0164
org.terst.doot.widget:string/call_notification_hang_up_action = 0x7f0c0005
org.terst.doot.widget:layout/box_end_bottom_2children = 0x7f0a0082
org.terst.doot.widget:id/childStub8_expand_wrap = 0x7f070077
org.terst.doot.widget:layout/box_center_horizontal_bottom_9children = 0x7f0a000b
org.terst.doot.widget:layout/box_wrapwidth_expandheight = 0x7f0a00c7
org.terst.doot.widget:layout/radio_row_null_top_7children = 0x7f0a02a9
org.terst.doot.widget:layout/column_child_end_null_group_1 = 0x7f0a00e1
org.terst.doot.widget:id/childStub1_wrap_wrap = 0x7f07003e
org.terst.doot.widget:layout/box_child_end_bottom_group_6 = 0x7f0a0048
org.terst.doot.widget:layout/glance_check_box_center_horizontal_top = 0x7f0a013e
org.terst.doot.widget:layout/root_alias_243 = 0x7f0a03a3
org.terst.doot.widget:layout/box_start_top_4children = 0x7f0a00c1
org.terst.doot.widget:layout/root_alias_155 = 0x7f0a034b
org.terst.doot.widget:layout/box_center_horizontal_bottom_10children = 0x7f0a0002
org.terst.doot.widget:layout/box_start_top_3children = 0x7f0a00c0
org.terst.doot.widget:layout/box_start_top_1children = 0x7f0a00be
org.terst.doot.widget:color/glance_switch_thumb_disabled_material_light = 0x7f040028
org.terst.doot.widget:layout/complex_fixed_expand = 0x7f0a0116
org.terst.doot.widget:layout/box_start_top_10children = 0x7f0a00bd
org.terst.doot.widget:layout/box_child_start_bottom_group_5 = 0x7f0a0065
org.terst.doot.widget:layout/box_start_top = 0x7f0a00bb
org.terst.doot.widget:attr/fontProviderFetchTimeout = 0x7f020005
org.terst.doot.widget:layout/glance_image_fill_bounds_decorative_start_bottom = 0x7f0a0189
org.terst.doot.widget:layout/glance_image_crop_start_top = 0x7f0a017b
org.terst.doot.widget:id/childStub9_wrap_expand = 0x7f070084
org.terst.doot.widget:layout/glance_vertical_grid_auto_fit = 0x7f0a0207
org.terst.doot.widget:layout/radio_row_null_top_4children = 0x7f0a02a6
org.terst.doot.widget:layout/complex_wrap_expand = 0x7f0a011e
org.terst.doot.widget:layout/box_start_center_vertical_8children = 0x7f0a00b9
org.terst.doot.widget:layout/box_start_center_vertical_5children = 0x7f0a00b6
org.terst.doot.widget:layout/root_alias_265 = 0x7f0a03b9
org.terst.doot.widget:id/childStub7_wrap_wrap = 0x7f070074
org.terst.doot.widget:layout/glance_image_fill_bounds_decorative_center_horizontal_bottom = 0x7f0a0182
org.terst.doot.widget:layout/glance_image_fill_bounds_decorative_end_top = 0x7f0a0187
org.terst.doot.widget:layout/root_alias_318 = 0x7f0a03ee
org.terst.doot.widget:layout/root_alias_331 = 0x7f0a03fb
org.terst.doot.widget:layout/row_null_center_vertical_9children = 0x7f0a047e
org.terst.doot.widget:layout/root_alias_181 = 0x7f0a0365
org.terst.doot.widget:layout/box_start_center_vertical_2children = 0x7f0a00b3
org.terst.doot.widget:layout/radio_row_end_top = 0x7f0a0289
org.terst.doot.widget:layout/box_child_start_center_vertical_group_7 = 0x7f0a0071
org.terst.doot.widget:layout/box_start_center_vertical_0children = 0x7f0a00b0
org.terst.doot.widget:string/glance_error_layout_title = 0x7f0c0010
org.terst.doot.widget:layout/box_start_center_vertical = 0x7f0a00af
org.terst.doot.widget:layout/box_start_bottom_9children = 0x7f0a00ae
org.terst.doot.widget:layout/box_child_start_top_group_1 = 0x7f0a0075
org.terst.doot.widget:layout/root_alias_390 = 0x7f0a0436
org.terst.doot.widget:layout/box_start_bottom_8children = 0x7f0a00ad
org.terst.doot.widget:layout/glance_linear_progress_indicator_end_top = 0x7f0a01b4
org.terst.doot.widget:layout/glance_image_fill_bounds_decorative_end_center_vertical = 0x7f0a0186
org.terst.doot.widget:layout/glance_image_crop_decorative_center_horizontal_center_vertical = 0x7f0a016b
org.terst.doot.widget:layout/glance_list_start_bottom = 0x7f0a01c2
org.terst.doot.widget:layout/box_start_bottom_6children = 0x7f0a00ab
org.terst.doot.widget:layout/root_alias_267 = 0x7f0a03bb
org.terst.doot.widget:layout/root_alias_099 = 0x7f0a0313
org.terst.doot.widget:layout/box_child_end_bottom_group_1 = 0x7f0a0043
org.terst.doot.widget:layout/box_start_bottom_2children = 0x7f0a00a7
org.terst.doot.widget:layout/glance_swtch_end_center_vertical = 0x7f0a01f4
org.terst.doot.widget:style/Glance.AppWidget.Row = 0x7f0d0014
org.terst.doot.widget:dimen/compat_button_inset_horizontal_material = 0x7f050000
org.terst.doot.widget:id/childStub7_expand_match = 0x7f07006d
org.terst.doot.widget:layout/box_start_bottom = 0x7f0a00a3
org.terst.doot.widget:layout/root_alias_385 = 0x7f0a0431
org.terst.doot.widget:layout/box_end_top_6children = 0x7f0a009e
org.terst.doot.widget:layout/box_end_top_3children = 0x7f0a009b
org.terst.doot.widget:layout/box_end_top_2children = 0x7f0a009a
org.terst.doot.widget:id/accessibility_custom_action_31 = 0x7f07001a
org.terst.doot.widget:layout/glance_vertical_grid_auto_fit_center_horizontal_top = 0x7f0a020a
org.terst.doot.widget:layout/box_end_center_vertical_9children = 0x7f0a0095
org.terst.doot.widget:layout/box_start_top_8children = 0x7f0a00c5
org.terst.doot.widget:id/normal = 0x7f07009b
org.terst.doot.widget:layout/box_end_center_vertical_8children = 0x7f0a0094
org.terst.doot.widget:layout/box_child_start_center_vertical_group_2 = 0x7f0a006c
org.terst.doot.widget:color/glance_switch_on_key_shadow = 0x7f040026
org.terst.doot.widget:styleable/GradientColor = 0x7f0e0005
org.terst.doot.widget:attr/lStar = 0x7f02000d
org.terst.doot.widget:layout/box_child_end_bottom_group_4 = 0x7f0a0046
org.terst.doot.widget:layout/root_alias_340 = 0x7f0a0404
org.terst.doot.widget:bool/workmanager_test_configuration = 0x7f030004
org.terst.doot.widget:layout/glance_swtch_backport_center_horizontal_bottom = 0x7f0a01e5
org.terst.doot.widget:color/call_notification_decline_color = 0x7f040003
org.terst.doot.widget:drawable/glance_component_m3_button_ripple = 0x7f060013
org.terst.doot.widget:id/glanceViewStub = 0x7f070090
org.terst.doot.widget:interpolator/glance_btn_radio_to_off_mtrl_animation_interpolator_0 = 0x7f090004
org.terst.doot.widget:layout/column_end_null_7children = 0x7f0a00fe
org.terst.doot.widget:string/call_notification_ongoing_text = 0x7f0c0007
org.terst.doot.widget:layout/radio_column_end_null_1children = 0x7f0a026a
org.terst.doot.widget:id/info = 0x7f070095
org.terst.doot.widget:id/right_icon = 0x7f0700a6
org.terst.doot.widget:id/childStub5_match_wrap = 0x7f07005f
org.terst.doot.widget:layout/box_end_center_vertical = 0x7f0a008a
org.terst.doot.widget:id/childStub3_match_match = 0x7f07004c
org.terst.doot.widget:layout/box_end_bottom_9children = 0x7f0a0089
org.terst.doot.widget:color/androidx_core_secondary_text_default_material_light = 0x7f040001
org.terst.doot.widget:layout/box_end_bottom_8children = 0x7f0a0088
org.terst.doot.widget:layout/root_alias_074 = 0x7f0a02fa
org.terst.doot.widget:layout/box_child_end_bottom_group_5 = 0x7f0a0047
org.terst.doot.widget:layout/column_child_start_null_group_5 = 0x7f0a00ef
org.terst.doot.widget:layout/box_end_bottom_1children = 0x7f0a0081
org.terst.doot.widget:layout/box_start_center_vertical_9children = 0x7f0a00ba
org.terst.doot.widget:layout/glance_image_fit_decorative = 0x7f0a0199
org.terst.doot.widget:layout/root_alias_005 = 0x7f0a02b5
org.terst.doot.widget:id/accessibility_custom_action_30 = 0x7f070019
org.terst.doot.widget:layout/box_child_start_top_group_7 = 0x7f0a007b
org.terst.doot.widget:layout/box_child_start_top_group_3 = 0x7f0a0077
org.terst.doot.widget:layout/box_child_end_bottom_group_0 = 0x7f0a0042
org.terst.doot.widget:layout/glance_image_fit_center_horizontal_top = 0x7f0a0198
org.terst.doot.widget:layout/root_alias_317 = 0x7f0a03ed
org.terst.doot.widget:layout/box_end_bottom_7children = 0x7f0a0087
org.terst.doot.widget:layout/box_child_center_horizontal_top_group_3 = 0x7f0a003b
org.terst.doot.widget:layout/box_end_center_vertical_3children = 0x7f0a008f
org.terst.doot.widget:layout/box_child_start_center_vertical_group_6 = 0x7f0a0070
org.terst.doot.widget:layout/box_start_top_2children = 0x7f0a00bf
org.terst.doot.widget:layout/box_child_start_center_vertical_group_1 = 0x7f0a006b
org.terst.doot.widget:layout/box_child_start_center_vertical_group_3 = 0x7f0a006d
org.terst.doot.widget:layout/box_start_bottom_10children = 0x7f0a00a5
org.terst.doot.widget:layout/root_alias_182 = 0x7f0a0366
org.terst.doot.widget:layout/box_child_start_center_vertical_group_0 = 0x7f0a006a
org.terst.doot.widget:layout/box_center_horizontal_center_vertical_6children = 0x7f0a0014
org.terst.doot.widget:layout/box_child_start_bottom_group_9 = 0x7f0a0069
org.terst.doot.widget:layout/box_child_start_bottom_group_6 = 0x7f0a0066
org.terst.doot.widget:layout/column_child_start_null_group_0 = 0x7f0a00ea
org.terst.doot.widget:string/m3c_date_input_invalid_year_range = 0x7f0c001c
org.terst.doot.widget:layout/radio_row_start_center_vertical = 0x7f0a02ad
org.terst.doot.widget:layout/root_alias_025 = 0x7f0a02c9
org.terst.doot.widget:layout/complex_expand_fixed = 0x7f0a0113
org.terst.doot.widget:string/default_error_message = 0x7f0c000b
org.terst.doot.widget:layout/radio_row_null_center_vertical_3children = 0x7f0a029a
org.terst.doot.widget:layout/box_child_start_bottom_group_4 = 0x7f0a0064
org.terst.doot.widget:layout/root_alias_253 = 0x7f0a03ad
org.terst.doot.widget:layout/root_alias_044 = 0x7f0a02dc
org.terst.doot.widget:layout/box_start_top_9children = 0x7f0a00c6
org.terst.doot.widget:layout/box_end_center_vertical_6children = 0x7f0a0092
org.terst.doot.widget:id/childStub2_wrap_wrap = 0x7f070047
org.terst.doot.widget:layout/root_alias_207 = 0x7f0a037f
org.terst.doot.widget:id/childStub8_match_match = 0x7f070079
org.terst.doot.widget:layout/box_child_end_top_group_8 = 0x7f0a005e
org.terst.doot.widget:layout/box_child_end_top_group_7 = 0x7f0a005d
org.terst.doot.widget:layout/box_child_end_top_group_1 = 0x7f0a0057
org.terst.doot.widget:layout/box_child_end_top_group_0 = 0x7f0a0056
org.terst.doot.widget:layout/glance_vertical_grid_one_column_center_horizontal_bottom = 0x7f0a022c
org.terst.doot.widget:layout/glance_button_expandwidth_wrapheight = 0x7f0a012a
org.terst.doot.widget:drawable/glance_progress_horizontal = 0x7f060017
org.terst.doot.widget:id/childStub1_expand_expand = 0x7f070036
org.terst.doot.widget:layout/box_child_end_center_vertical_group_7 = 0x7f0a0053
org.terst.doot.widget:layout/complex_match_fixed = 0x7f0a011b
org.terst.doot.widget:layout/box_expandwidth_wrapheight = 0x7f0a00a2
org.terst.doot.widget:layout/box_child_end_center_vertical_group_2 = 0x7f0a004e
org.terst.doot.widget:layout/glance_image_crop_decorative_center_horizontal_top = 0x7f0a016c
org.terst.doot.widget:layout/glance_vertical_grid_two_columns_center_horizontal_bottom = 0x7f0a0244
org.terst.doot.widget:layout/root_alias_321 = 0x7f0a03f1
org.terst.doot.widget:layout/box_child_end_center_vertical_group_6 = 0x7f0a0052
org.terst.doot.widget:layout/box_child_end_center_vertical_group_5 = 0x7f0a0051
org.terst.doot.widget:layout/box_child_end_center_vertical_group_4 = 0x7f0a0050
org.terst.doot.widget:color/glance_colorOnPrimary = 0x7f04000a
org.terst.doot.widget:layout/root_alias_363 = 0x7f0a041b
org.terst.doot.widget:layout/box_child_end_bottom_group_8 = 0x7f0a004a
org.terst.doot.widget:color/glance_switch_thumb_normal_material_dark = 0x7f040029
org.terst.doot.widget:layout/glance_text_expandwidth_wrapheight = 0x7f0a0202
org.terst.doot.widget:layout/root_alias_123 = 0x7f0a032b
org.terst.doot.widget:layout/box_center_horizontal_center_vertical_4children = 0x7f0a0012
org.terst.doot.widget:id/text = 0x7f0700bc
org.terst.doot.widget:layout/complex_expand_wrap = 0x7f0a0115
org.terst.doot.widget:layout/root_alias_194 = 0x7f0a0372
org.terst.doot.widget:drawable/ic_call_answer_video = 0x7f060021
org.terst.doot.widget:layout/radio_column_end_center_vertical = 0x7f0a0267
org.terst.doot.widget:layout/box_child_center_horizontal_top_group_9 = 0x7f0a0041
org.terst.doot.widget:layout/root_alias_258 = 0x7f0a03b2
org.terst.doot.widget:layout/root_alias_186 = 0x7f0a036a
org.terst.doot.widget:id/view_tree_on_back_pressed_dispatcher_owner = 0x7f0700c2
org.terst.doot.widget:layout/root_alias_043 = 0x7f0a02db
org.terst.doot.widget:layout/box_child_center_horizontal_top_group_7 = 0x7f0a003f
org.terst.doot.widget:layout/root_alias_062 = 0x7f0a02ee
org.terst.doot.widget:layout/glance_circular_progress_indicator_end_bottom = 0x7f0a014e
org.terst.doot.widget:layout/box_child_center_horizontal_top_group_6 = 0x7f0a003e
org.terst.doot.widget:layout/box_child_center_horizontal_top_group_5 = 0x7f0a003d
org.terst.doot.widget:layout/root_alias_352 = 0x7f0a0410
org.terst.doot.widget:layout/root_alias_068 = 0x7f0a02f4
org.terst.doot.widget:layout/box_child_center_horizontal_top_group_4 = 0x7f0a003c
org.terst.doot.widget:layout/glance_check_box_center_horizontal_center_vertical = 0x7f0a013d
org.terst.doot.widget:layout/root_alias_133 = 0x7f0a0335
org.terst.doot.widget:layout/box_end_bottom_6children = 0x7f0a0086
org.terst.doot.widget:layout/root_alias_169 = 0x7f0a0359
org.terst.doot.widget:id/childStub8_match_wrap = 0x7f07007a
org.terst.doot.widget:style/Widget.Glance.AppWidget.CallbackTrampoline = 0x7f0d002a
org.terst.doot.widget:layout/box_child_center_horizontal_top_group_1 = 0x7f0a0039
org.terst.doot.widget:dimen/notification_top_pad = 0x7f050017
org.terst.doot.widget:layout/box_child_center_horizontal_center_vertical_group_8 = 0x7f0a0036
org.terst.doot.widget:layout/glance_vertical_grid_one_column_start_center_vertical = 0x7f0a0234
org.terst.doot.widget:layout/box_child_end_center_vertical_group_0 = 0x7f0a004c
org.terst.doot.widget:layout/root_alias_215 = 0x7f0a0387
org.terst.doot.widget:layout/box_child_center_horizontal_center_vertical_group_7 = 0x7f0a0035
org.terst.doot.widget:layout/glance_frame_end_center_vertical = 0x7f0a015e
org.terst.doot.widget:layout/glance_image_crop_start_center_vertical = 0x7f0a017a
org.terst.doot.widget:layout/box_start_bottom_3children = 0x7f0a00a8
org.terst.doot.widget:layout/box_child_center_horizontal_center_vertical_group_4 = 0x7f0a0032
org.terst.doot.widget:layout/box_child_center_horizontal_center_vertical_group_3 = 0x7f0a0031
org.terst.doot.widget:layout/box_child_start_center_vertical_group_9 = 0x7f0a0073
org.terst.doot.widget:string/m3c_dropdown_menu_expanded = 0x7f0c0039
org.terst.doot.widget:layout/row_end_bottom = 0x7f0a0465
org.terst.doot.widget:layout/column_center_horizontal_null_9children = 0x7f0a00d4
org.terst.doot.widget:layout/box_end_center_vertical_10children = 0x7f0a008c
org.terst.doot.widget:layout/box_child_center_horizontal_center_vertical_group_2 = 0x7f0a0030
org.terst.doot.widget:layout/box_child_center_horizontal_center_vertical_group_1 = 0x7f0a002f
org.terst.doot.widget:layout/root_alias_372 = 0x7f0a0424
org.terst.doot.widget:anim/glance_btn_checkbox_to_checked_box_inner_merged_animation = 0x7f010000
org.terst.doot.widget:id/childStub5_match_match = 0x7f07005e
org.terst.doot.widget:layout/box_child_center_horizontal_bottom_group_9 = 0x7f0a002d
org.terst.doot.widget:layout/root_alias_369 = 0x7f0a0421
org.terst.doot.widget:layout/box_child_center_horizontal_bottom_group_8 = 0x7f0a002c
org.terst.doot.widget:layout/root_alias_093 = 0x7f0a030d
org.terst.doot.widget:id/accessibility_custom_action_15 = 0x7f070008
org.terst.doot.widget:layout/radio_column_start_null_2children = 0x7f0a027a
org.terst.doot.widget:layout/box_child_center_horizontal_bottom_group_5 = 0x7f0a0029
org.terst.doot.widget:id/childStub8_wrap_expand = 0x7f07007b
org.terst.doot.widget:layout/box_child_center_horizontal_bottom_group_4 = 0x7f0a0028
org.terst.doot.widget:layout/box_child_center_horizontal_bottom_group_3 = 0x7f0a0027
org.terst.doot.widget:string/m3c_date_picker_headline_description = 0x7f0c0021
org.terst.doot.widget:color/glance_colorOnSurface = 0x7f04000e
org.terst.doot.widget:id/radioText = 0x7f0700a3
org.terst.doot.widget:layout/box_child_center_horizontal_bottom_group_0 = 0x7f0a0024
org.terst.doot.widget:string/m3c_date_range_picker_title = 0x7f0c0036
org.terst.doot.widget:layout/radio_column_end_null_0children = 0x7f0a0268
org.terst.doot.widget:drawable/notification_bg = 0x7f060027
org.terst.doot.widget:layout/box_center_horizontal_top_7children = 0x7f0a0021
org.terst.doot.widget:layout/box_center_horizontal_bottom_1children = 0x7f0a0003
org.terst.doot.widget:id/error_text_view = 0x7f07008d
org.terst.doot.widget:layout/glance_linear_progress_indicator_center_horizontal_center_vertical = 0x7f0a01b0
org.terst.doot.widget:layout/radio_column_center_horizontal_null_4children = 0x7f0a025f
org.terst.doot.widget:drawable/glance_button_outline = 0x7f06000c
org.terst.doot.widget:layout/box_center_horizontal_top_3children = 0x7f0a001d
org.terst.doot.widget:layout/box_center_horizontal_top_10children = 0x7f0a001a
org.terst.doot.widget:id/checkBoxIcon = 0x7f07002a
org.terst.doot.widget:layout/box_child_end_top_group_9 = 0x7f0a005f
org.terst.doot.widget:id/childStub3_match_expand = 0x7f07004b
org.terst.doot.widget:layout/root_alias_128 = 0x7f0a0330
org.terst.doot.widget:layout/glance_list_center_horizontal_top = 0x7f0a01bd
org.terst.doot.widget:layout/box_center_horizontal_top_0children = 0x7f0a0019
org.terst.doot.widget:bool/enable_system_alarm_service_default = 0x7f030000
org.terst.doot.widget:layout/box_center_horizontal_top = 0x7f0a0018
org.terst.doot.widget:layout/glance_image_fit_start_center_vertical = 0x7f0a01aa
org.terst.doot.widget:layout/glance_deleted_view = 0x7f0a0157
org.terst.doot.widget:layout/column_child_start_null_group_6 = 0x7f0a00f0
org.terst.doot.widget:layout/box_center_horizontal_center_vertical_8children = 0x7f0a0016
org.terst.doot.widget:id/tag_window_insets_animation_callback = 0x7f0700bb
org.terst.doot.widget:layout/glance_check_box_text = 0x7f0a0147
org.terst.doot.widget:layout/glance_image_fill_bounds_expandwidth_wrapheight = 0x7f0a0190
org.terst.doot.widget:id/childStub7_expand_expand = 0x7f07006c
org.terst.doot.widget:layout/column_end_top = 0x7f0a0101
org.terst.doot.widget:layout/box_end_top_4children = 0x7f0a009c
org.terst.doot.widget:id/accessibility_custom_action_20 = 0x7f07000e
org.terst.doot.widget:layout/root_alias_112 = 0x7f0a0320
org.terst.doot.widget:layout/box_child_center_horizontal_center_vertical_group_5 = 0x7f0a0033
org.terst.doot.widget:color/glance_colorOnErrorContainer = 0x7f040009
org.terst.doot.widget:layout/box_center_horizontal_center_vertical_2children = 0x7f0a0010
org.terst.doot.widget:color/glance_colorWidgetBackground = 0x7f04001e
org.terst.doot.widget:layout/box_center_horizontal_bottom_3children = 0x7f0a0005
org.terst.doot.widget:id/blocking = 0x7f070028
org.terst.doot.widget:layout/glance_image_fit_end_center_vertical = 0x7f0a01a6
org.terst.doot.widget:layout/box_child_start_top_group_9 = 0x7f0a007d
org.terst.doot.widget:id/tag_state_description = 0x7f0700b7
org.terst.doot.widget:interpolator/glance_btn_radio_to_on_mtrl_animation_interpolator_0 = 0x7f090005
org.terst.doot.widget:layout/row_center_horizontal_center_vertical = 0x7f0a0445
org.terst.doot.widget:layout/box_start_top_0children = 0x7f0a00bc
org.terst.doot.widget:layout/row_child_null_bottom_group_6 = 0x7f0a044d
org.terst.doot.widget:layout/root_alias_282 = 0x7f0a03ca
org.terst.doot.widget:layout/box_child_center_horizontal_center_vertical_group_0 = 0x7f0a002e
org.terst.doot.widget:layout/root_alias_292 = 0x7f0a03d4
org.terst.doot.widget:id/childStub5_expand_wrap = 0x7f07005c
org.terst.doot.widget:layout/radio_row_null_bottom_7children = 0x7f0a0293
org.terst.doot.widget:layout/box_child_start_bottom_group_1 = 0x7f0a0061
org.terst.doot.widget:dimen/notification_large_icon_width = 0x7f05000f
org.terst.doot.widget:interpolator/glance_btn_checkbox_unchecked_mtrl_animation_interpolator_1 = 0x7f090003
org.terst.doot.widget:layout/glance_check_box_backport = 0x7f0a0130
org.terst.doot.widget:string/glance_error_layout_text = 0x7f0c000e
org.terst.doot.widget:layout/glance_image_fill_bounds_end_top = 0x7f0a018f
org.terst.doot.widget:layout/root_alias_259 = 0x7f0a03b3
org.terst.doot.widget:id/childStub6_wrap_match = 0x7f07006a
org.terst.doot.widget:layout/box_child_end_top_group_3 = 0x7f0a0059
org.terst.doot.widget:interpolator/glance_btn_checkbox_unchecked_mtrl_animation_interpolator_0 = 0x7f090002
org.terst.doot.widget:id/childStub1_match_match = 0x7f07003a
org.terst.doot.widget:id/view_tree_saved_state_registry_owner = 0x7f0700c3
org.terst.doot.widget:layout/root_alias_393 = 0x7f0a0439
org.terst.doot.widget:layout/box_child_end_center_vertical_group_3 = 0x7f0a004f
org.terst.doot.widget:layout/root_alias_196 = 0x7f0a0374
org.terst.doot.widget:string/m3c_date_picker_headline = 0x7f0c0020
org.terst.doot.widget:id/accessibility_custom_action_11 = 0x7f070004
org.terst.doot.widget:drawable/notification_bg_low = 0x7f060028
org.terst.doot.widget:layout/glance_image_crop_decorative_start_center_vertical = 0x7f0a0172
org.terst.doot.widget:layout/box_child_start_top_group_2 = 0x7f0a0076
org.terst.doot.widget:layout/glance_frame_expandwidth_wrapheight = 0x7f0a0160
org.terst.doot.widget:layout/complex_match_match = 0x7f0a011c
org.terst.doot.widget:id/compose_view_saveable_id_tag = 0x7f070088
org.terst.doot.widget:id/tag_unhandled_key_event_manager = 0x7f0700b9
org.terst.doot.widget:layout/root_alias_086 = 0x7f0a0306
org.terst.doot.widget:layout/root_alias_148 = 0x7f0a0344
org.terst.doot.widget:drawable/glance_component_btn_circle = 0x7f06000e
org.terst.doot.widget:id/tag_screen_reader_focusable = 0x7f0700b6
org.terst.doot.widget:id/accessibility_custom_action_1 = 0x7f070002
org.terst.doot.widget:id/tag_accessibility_heading = 0x7f0700b1
org.terst.doot.widget:layout/root_alias_371 = 0x7f0a0423
org.terst.doot.widget:layout/row_child_null_top_group_1 = 0x7f0a045c
org.terst.doot.widget:id/tag_accessibility_actions = 0x7f0700af
org.terst.doot.widget:drawable/ic_call_decline_low = 0x7f060024
org.terst.doot.widget:layout/root_alias_212 = 0x7f0a0384
org.terst.doot.widget:layout/root_alias_305 = 0x7f0a03e1
org.terst.doot.widget:layout/root_alias_396 = 0x7f0a043c
org.terst.doot.widget:id/radioIcon = 0x7f0700a2
org.terst.doot.widget:id/rootView = 0x7f0700a9
org.terst.doot.widget:layout/column_child_center_horizontal_null_group_3 = 0x7f0a00d9
org.terst.doot.widget:layout/glance_check_box_backport_center_horizontal_bottom = 0x7f0a0131
org.terst.doot.widget:layout/box_child_center_horizontal_center_vertical_group_6 = 0x7f0a0034
org.terst.doot.widget:layout/glance_frame_end_bottom = 0x7f0a015d
org.terst.doot.widget:string/m3c_date_picker_today_description = 0x7f0c002d
org.terst.doot.widget:id/childStub9_expand_wrap = 0x7f070080
org.terst.doot.widget:layout/glance_button_center_horizontal_bottom = 0x7f0a0124
org.terst.doot.widget:id/notification_main_column = 0x7f07009d
org.terst.doot.widget:layout/radio_row_null_center_vertical_5children = 0x7f0a029c
org.terst.doot.widget:layout/glance_frame_center_horizontal_bottom = 0x7f0a015a
org.terst.doot.widget:layout/box_center_horizontal_center_vertical_10children = 0x7f0a000e
org.terst.doot.widget:id/line3 = 0x7f07009a
org.terst.doot.widget:id/line1 = 0x7f070099
org.terst.doot.widget:string/call_notification_screening_text = 0x7f0c0008
org.terst.doot.widget:id/childStub9_match_wrap = 0x7f070083
org.terst.doot.widget:layout/column_start_null_4children = 0x7f0a010a
org.terst.doot.widget:dimen/notification_subtext_size = 0x7f050016
org.terst.doot.widget:layout/root_alias_353 = 0x7f0a0411
org.terst.doot.widget:layout/column_child_end_null_group_9 = 0x7f0a00e9
org.terst.doot.widget:string/close_sheet = 0x7f0c000a
org.terst.doot.widget:id/icon_group = 0x7f070094
org.terst.doot.widget:layout/box_end_top_8children = 0x7f0a00a0
org.terst.doot.widget:id/hide_in_inspector_tag = 0x7f070092
org.terst.doot.widget:layout/root_alias_303 = 0x7f0a03df
org.terst.doot.widget:id/wrapped_composition_tag = 0x7f0700c5
org.terst.doot.widget:string/m3c_bottom_sheet_expand_description = 0x7f0c0016
org.terst.doot.widget:layout/glance_vertical_grid_five_columns_start_bottom = 0x7f0a021b
org.terst.doot.widget:layout/complex_match_expand = 0x7f0a011a
org.terst.doot.widget:layout/root_alias_152 = 0x7f0a0348
org.terst.doot.widget:id/checkBoxText = 0x7f07002b
org.terst.doot.widget:layout/glance_circular_progress_indicator_start_top = 0x7f0a0154
org.terst.doot.widget:layout/glance_button_start_center_vertical = 0x7f0a012c
org.terst.doot.widget:layout/root_alias_273 = 0x7f0a03c1
org.terst.doot.widget:layout/glance_swtch_wrapwidth_expandheight = 0x7f0a01fa
org.terst.doot.widget:color/glance_colorPrimaryContainer = 0x7f040015
org.terst.doot.widget:layout/column_start_null_2children = 0x7f0a0108
org.terst.doot.widget:layout/row_child_null_top_group_0 = 0x7f0a045b
org.terst.doot.widget:id/glanceView = 0x7f07008f
org.terst.doot.widget:layout/glance_list_center_horizontal_bottom = 0x7f0a01bb
org.terst.doot.widget:layout/root_alias_342 = 0x7f0a0406
org.terst.doot.widget:layout/radio_row_null_bottom_2children = 0x7f0a028e
org.terst.doot.widget:layout/box_end_bottom_4children = 0x7f0a0084
org.terst.doot.widget:id/on = 0x7f0700a0
org.terst.doot.widget:id/accessibility_custom_action_7 = 0x7f07001e
org.terst.doot.widget:id/dialog_button = 0x7f07008b
org.terst.doot.widget:id/childStub2_expand_wrap = 0x7f070041
org.terst.doot.widget:layout/row_child_null_center_vertical_group_3 = 0x7f0a0454
org.terst.doot.widget:dimen/notification_content_margin_start = 0x7f05000d
org.terst.doot.widget:layout/root_alias_241 = 0x7f0a03a1
org.terst.doot.widget:layout/glance_list_start_center_vertical = 0x7f0a01c3
org.terst.doot.widget:layout/root_alias_248 = 0x7f0a03a8
org.terst.doot.widget:layout/glance_vertical_grid_one_column_end_bottom = 0x7f0a022f
org.terst.doot.widget:color/glance_colorOnTertiaryContainer = 0x7f040012
org.terst.doot.widget:id/inspection_slot_table_set = 0x7f070096
org.terst.doot.widget:layout/row_child_null_center_vertical_group_1 = 0x7f0a0452
org.terst.doot.widget:id/childStub8_expand_match = 0x7f070076
org.terst.doot.widget:layout/glance_image_fill_bounds_decorative_start_top = 0x7f0a018b
org.terst.doot.widget:layout/box_child_start_center_vertical_group_4 = 0x7f0a006e
org.terst.doot.widget:layout/box_child_center_horizontal_top_group_0 = 0x7f0a0038
org.terst.doot.widget:id/childStub7_match_expand = 0x7f07006f
org.terst.doot.widget:layout/root_alias_330 = 0x7f0a03fa
org.terst.doot.widget:layout/root_alias_124 = 0x7f0a032c
org.terst.doot.widget:drawable/glance_component_btn_square = 0x7f060011
org.terst.doot.widget:id/childStub7_expand_wrap = 0x7f07006e
org.terst.doot.widget:drawable/glance_btn_radio_on_mtrl = 0x7f06000a
org.terst.doot.widget:id/childStub6_wrap_expand = 0x7f070069
org.terst.doot.widget:layout/root_alias_209 = 0x7f0a0381
org.terst.doot.widget:string/tooltip_label = 0x7f0c0057
org.terst.doot.widget:id/notification_main_column_container = 0x7f07009e
org.terst.doot.widget:id/childStub6_match_expand = 0x7f070066
org.terst.doot.widget:id/childStub6_expand_wrap = 0x7f070065
org.terst.doot.widget:id/childStub4_match_match = 0x7f070055
org.terst.doot.widget:layout/root_alias_017 = 0x7f0a02c1
org.terst.doot.widget:layout/box_child_end_center_vertical_group_8 = 0x7f0a0054
org.terst.doot.widget:layout/glance_vertical_grid_one_column_end_top = 0x7f0a0231
org.terst.doot.widget:layout/glance_check_box_start_top = 0x7f0a0146
org.terst.doot.widget:layout/root_alias_349 = 0x7f0a040d
org.terst.doot.widget:dimen/notification_right_icon_size = 0x7f050012
org.terst.doot.widget:layout/column_start_top = 0x7f0a0110
org.terst.doot.widget:layout/box_child_start_top_group_5 = 0x7f0a0079
org.terst.doot.widget:id/childStub5_expand_expand = 0x7f07005a
org.terst.doot.widget:string/m3c_date_picker_switch_to_next_month = 0x7f0c0029
org.terst.doot.widget:layout/root_alias_084 = 0x7f0a0304
org.terst.doot.widget:layout/glance_button_center_horizontal_center_vertical = 0x7f0a0125
org.terst.doot.widget:string/range_end = 0x7f0c004f
org.terst.doot.widget:layout/column_center_horizontal_null_7children = 0x7f0a00d2
org.terst.doot.widget:layout/root_alias_021 = 0x7f0a02c5
org.terst.doot.widget:id/tag_on_receive_content_mime_types = 0x7f0700b5
org.terst.doot.widget:anim/glance_btn_checkbox_to_checked_icon_null_animation = 0x7f010002
org.terst.doot.widget:drawable/ic_call_decline = 0x7f060023
org.terst.doot.widget:id/childStub4_expand_match = 0x7f070052
org.terst.doot.widget:color/glance_default_switch_track = 0x7f040022
org.terst.doot.widget:id/childStub3_wrap_expand = 0x7f07004e
org.terst.doot.widget:layout/root_alias_080 = 0x7f0a0300
org.terst.doot.widget:layout/box_start_center_vertical_7children = 0x7f0a00b8
org.terst.doot.widget:layout/glance_text_start_top = 0x7f0a0205
org.terst.doot.widget:id/childStub3_expand_wrap = 0x7f07004a
org.terst.doot.widget:id/accessibility_custom_action_24 = 0x7f070012
org.terst.doot.widget:id/childStub0_match_expand = 0x7f070030
org.terst.doot.widget:layout/box_center_horizontal_bottom_4children = 0x7f0a0006
org.terst.doot.widget:layout/glance_vertical_grid_auto_fit_end_top = 0x7f0a020d
org.terst.doot.widget:layout/row_null_bottom_10children = 0x7f0a046a
org.terst.doot.widget:layout/root_alias_285 = 0x7f0a03cd
org.terst.doot.widget:id/childStub2_wrap_expand = 0x7f070045
org.terst.doot.widget:layout/glance_linear_progress_indicator_start_center_vertical = 0x7f0a01b7
org.terst.doot.widget:id/italic = 0x7f070098
org.terst.doot.widget:layout/box_end_center_vertical_0children = 0x7f0a008b
org.terst.doot.widget:layout/box_child_center_horizontal_top_group_8 = 0x7f0a0040
org.terst.doot.widget:style/FloatingDialogWindowTheme = 0x7f0d0003
org.terst.doot.widget:layout/box_center_horizontal_top_5children = 0x7f0a001f
org.terst.doot.widget:string/m3c_tooltip_long_press_label = 0x7f0c0049
org.terst.doot.widget:layout/root_alias_098 = 0x7f0a0312
org.terst.doot.widget:id/childStub2_match_expand = 0x7f070042
org.terst.doot.widget:layout/glance_frame_start_center_vertical = 0x7f0a0162
org.terst.doot.widget:integer/status_bar_notification_info_maxnum = 0x7f080000
org.terst.doot.widget:string/m3c_date_input_invalid_for_pattern = 0x7f0c001a
org.terst.doot.widget:layout/glance_button = 0x7f0a0123
org.terst.doot.widget:layout/radio_column_start_null_3children = 0x7f0a027b
org.terst.doot.widget:id/childStub2_expand_expand = 0x7f07003f
org.terst.doot.widget:layout/column_end_null_4children = 0x7f0a00fb
org.terst.doot.widget:id/childStub1_wrap_expand = 0x7f07003c
org.terst.doot.widget:layout/column_child_center_horizontal_null_group_4 = 0x7f0a00da
org.terst.doot.widget:layout/root_alias_392 = 0x7f0a0438
org.terst.doot.widget:id/childStub1_match_wrap = 0x7f07003b
org.terst.doot.widget:layout/radio_column_center_horizontal_null_6children = 0x7f0a0261
org.terst.doot.widget:layout/glance_frame = 0x7f0a0159
org.terst.doot.widget:layout/glance_radio_button_center_horizontal_top = 0x7f0a01d5
org.terst.doot.widget:id/childStub0_wrap_wrap = 0x7f070035
org.terst.doot.widget:id/childStub0_expand_expand = 0x7f07002d
org.terst.doot.widget:layout/root_alias_064 = 0x7f0a02f0
org.terst.doot.widget:anim/glance_btn_radio_to_on_mtrl_ring_outer_path_animation = 0x7f01000b
org.terst.doot.widget:id/childStub8_expand_expand = 0x7f070075
org.terst.doot.widget:layout/glance_image_crop_decorative_end_top = 0x7f0a016f
org.terst.doot.widget:id/accessibility_custom_action_26 = 0x7f070014
org.terst.doot.widget:attr/fontProviderFetchStrategy = 0x7f020004
org.terst.doot.widget:id/childStub0_match_match = 0x7f070031
org.terst.doot.widget:anim/glance_btn_radio_to_off_mtrl_ring_outer_animation = 0x7f010007
org.terst.doot.widget:layout/root_alias_137 = 0x7f0a0339
org.terst.doot.widget:layout/glance_vertical_grid_auto_fit_end_center_vertical = 0x7f0a020c
org.terst.doot.widget:drawable/notification_template_icon_low_bg = 0x7f060030
org.terst.doot.widget:layout/root_alias_066 = 0x7f0a02f2
org.terst.doot.widget:id/childStub0_expand_wrap = 0x7f07002f
org.terst.doot.widget:color/call_notification_answer_color = 0x7f040002
org.terst.doot.widget:dimen/compat_button_inset_vertical_material = 0x7f050001
org.terst.doot.widget:id/childStub3_match_wrap = 0x7f07004d
org.terst.doot.widget:id/childStub0_expand_match = 0x7f07002e
org.terst.doot.widget:layout/glance_circular_progress_indicator_expandwidth_wrapheight = 0x7f0a0151
org.terst.doot.widget:layout/box_start_bottom_1children = 0x7f0a00a6
org.terst.doot.widget:color/glance_default_check_box = 0x7f04001f
org.terst.doot.widget:layout/glance_button_center_horizontal_top = 0x7f0a0126
org.terst.doot.widget:string/m3c_dropdown_menu_collapsed = 0x7f0c0038
org.terst.doot.widget:layout/box_child_end_bottom_group_3 = 0x7f0a0045
org.terst.doot.widget:id/childStub4_match_wrap = 0x7f070056
org.terst.doot.widget:id/childStub4_wrap_expand = 0x7f070057
org.terst.doot.widget:layout/root_alias_053 = 0x7f0a02e5
org.terst.doot.widget:string/m3c_date_input_headline_description = 0x7f0c0019
org.terst.doot.widget:layout/glance_image_fit_decorative_end_top = 0x7f0a019f
org.terst.doot.widget:attr/fontProviderQuery = 0x7f020007
org.terst.doot.widget:id/checked = 0x7f07002c
org.terst.doot.widget:color/glance_colorSecondary = 0x7f040017
org.terst.doot.widget:layout/row_child_null_center_vertical_group_2 = 0x7f0a0453
org.terst.doot.widget:layout/glance_radio_button_start_center_vertical = 0x7f0a01db
org.terst.doot.widget:id/childStub9_expand_match = 0x7f07007f
org.terst.doot.widget:layout/glance_image_fit_decorative_center_horizontal_top = 0x7f0a019c
org.terst.doot.widget:layout/glance_check_box_end_top = 0x7f0a0141
org.terst.doot.widget:layout/column_center_horizontal_null_2children = 0x7f0a00cd
org.terst.doot.widget:layout/root_alias_184 = 0x7f0a0368
org.terst.doot.widget:layout/root_alias_127 = 0x7f0a032f
org.terst.doot.widget:layout/column_child_start_null_group_3 = 0x7f0a00ed
org.terst.doot.widget:bool/enable_system_foreground_service_default = 0x7f030001
org.terst.doot.widget:id/childStub5_wrap_match = 0x7f070061
org.terst.doot.widget:layout/glance_radio_button_backport_start_center_vertical = 0x7f0a01d0
org.terst.doot.widget:layout/glance_check_box_expandwidth_wrapheight = 0x7f0a0142
org.terst.doot.widget:id/accessibility_custom_action_18 = 0x7f07000b
org.terst.doot.widget:id/action_container = 0x7f070021
org.terst.doot.widget:id/childStub7_match_wrap = 0x7f070071
org.terst.doot.widget:layout/glance_image_fill_bounds_end_bottom = 0x7f0a018d
org.terst.doot.widget:color/glance_colorOnSurfaceVariant = 0x7f040010
org.terst.doot.widget:id/tag_unhandled_key_listeners = 0x7f0700ba
org.terst.doot.widget:id/childStub5_wrap_wrap = 0x7f070062
org.terst.doot.widget:id/accessibility_custom_action_8 = 0x7f07001f
org.terst.doot.widget:layout/root_alias_183 = 0x7f0a0367
org.terst.doot.widget:layout/glance_linear_progress_indicator_start_bottom = 0x7f0a01b6
org.terst.doot.widget:color/glance_colorOnSecondary = 0x7f04000c
org.terst.doot.widget:layout/box_center_horizontal_bottom_6children = 0x7f0a0008
org.terst.doot.widget:color/glance_colorError = 0x7f040005
org.terst.doot.widget:layout/column_start_null_6children = 0x7f0a010c
org.terst.doot.widget:layout/box_center_horizontal_center_vertical_1children = 0x7f0a000f
org.terst.doot.widget:id/childStub1_expand_match = 0x7f070037
org.terst.doot.widget:layout/box_end_bottom_0children = 0x7f0a007f
org.terst.doot.widget:layout/root_alias_275 = 0x7f0a03c3
org.terst.doot.widget:id/childStub5_expand_match = 0x7f07005b
org.terst.doot.widget:id/accessibility_custom_action_27 = 0x7f070015
org.terst.doot.widget:layout/box_center_horizontal_center_vertical_0children = 0x7f0a000d
org.terst.doot.widget:anim/glance_btn_radio_to_off_mtrl_ring_outer_path_animation = 0x7f010008
org.terst.doot.widget:layout/glance_vertical_grid_five_columns_center_horizontal_top = 0x7f0a0216
org.terst.doot.widget:color/glance_white_disabled_material_anim = 0x7f04002b
org.terst.doot.widget:id/accessibility_custom_action_25 = 0x7f070013
org.terst.doot.widget:id/accessibility_custom_action_6 = 0x7f07001d
org.terst.doot.widget:layout/root_alias_150 = 0x7f0a0346
org.terst.doot.widget:id/tag_accessibility_pane_title = 0x7f0700b2
org.terst.doot.widget:layout/row_null_top_5children = 0x7f0a0485
org.terst.doot.widget:id/accessibility_custom_action_10 = 0x7f070003
org.terst.doot.widget:layout/root_alias_060 = 0x7f0a02ec
org.terst.doot.widget:layout/column_child_center_horizontal_null_group_6 = 0x7f0a00dc
org.terst.doot.widget:layout/glance_swtch_backport_expandwidth_wrapheight = 0x7f0a01eb
org.terst.doot.widget:id/childStub8_wrap_wrap = 0x7f07007d
org.terst.doot.widget:id/childStub9_wrap_match = 0x7f070085
org.terst.doot.widget:layout/column_child_start_null_group_1 = 0x7f0a00eb
org.terst.doot.widget:id/accessibility_custom_action_2 = 0x7f07000d
org.terst.doot.widget:id/accessibility_custom_action_19 = 0x7f07000c
org.terst.doot.widget:anim/glance_btn_radio_to_on_mtrl_ring_outer_animation = 0x7f01000a
org.terst.doot.widget:id/consume_window_insets_tag = 0x7f070089
org.terst.doot.widget:layout/glance_circular_progress_indicator = 0x7f0a014a
org.terst.doot.widget:id/accessibility_custom_action_17 = 0x7f07000a
org.terst.doot.widget:id/accessibility_custom_action_29 = 0x7f070017
org.terst.doot.widget:style/Glance.AppWidget.CheckBox = 0x7f0d0009
org.terst.doot.widget:layout/root_alias_069 = 0x7f0a02f5
org.terst.doot.widget:layout/radio_row_start_bottom = 0x7f0a02ac
org.terst.doot.widget:layout/radio_column_center_horizontal_null_3children = 0x7f0a025e
org.terst.doot.widget:id/accessibility_custom_action_0 = 0x7f070001
org.terst.doot.widget:layout/column_child_center_horizontal_null_group_8 = 0x7f0a00de
org.terst.doot.widget:id/accessibility_custom_action_14 = 0x7f070007
org.terst.doot.widget:layout/root_alias_159 = 0x7f0a034f
org.terst.doot.widget:layout/root_alias_026 = 0x7f0a02ca
org.terst.doot.widget:layout/box_child_end_top_group_4 = 0x7f0a005a
org.terst.doot.widget:string/m3c_date_input_headline = 0x7f0c0018
org.terst.doot.widget:color/glance_colorOnPrimaryContainer = 0x7f04000b
org.terst.doot.widget:layout/glance_image_crop_decorative_end_bottom = 0x7f0a016d
org.terst.doot.widget:layout/glance_radio_button_backport_end_top = 0x7f0a01cd
org.terst.doot.widget:color/glance_colorErrorContainer = 0x7f040006
org.terst.doot.widget:layout/root_alias_383 = 0x7f0a042f
org.terst.doot.widget:id/async = 0x7f070027
org.terst.doot.widget:layout/root_alias_042 = 0x7f0a02da
org.terst.doot.widget:layout/box_child_start_bottom_group_8 = 0x7f0a0068
org.terst.doot.widget:color/notification_icon_bg_color = 0x7f04002d
org.terst.doot.widget:layout/row_child_null_top_group_5 = 0x7f0a0460
org.terst.doot.widget:color/glance_colorTertiary = 0x7f04001c
org.terst.doot.widget:id/accessibility_action_clickable_span = 0x7f070000
org.terst.doot.widget:layout/column_end_null_0children = 0x7f0a00f6
org.terst.doot.widget:drawable/notification_tile_bg = 0x7f060031
org.terst.doot.widget:layout/glance_check_box_backport_end_center_vertical = 0x7f0a0135
org.terst.doot.widget:layout/box_child_center_horizontal_top_group_2 = 0x7f0a003a
org.terst.doot.widget:drawable/notification_template_icon_bg = 0x7f06002f
org.terst.doot.widget:layout/row_null_center_vertical_1children = 0x7f0a0476
org.terst.doot.widget:layout/glance_swtch_start_center_vertical = 0x7f0a01f8
org.terst.doot.widget:id/childStub6_match_wrap = 0x7f070068
org.terst.doot.widget:layout/root_alias_322 = 0x7f0a03f2
org.terst.doot.widget:layout/box_center_horizontal_bottom = 0x7f0a0000
org.terst.doot.widget:drawable/glance_error_layout_background = 0x7f060015
org.terst.doot.widget:id/accessibility_custom_action_22 = 0x7f070010
org.terst.doot.widget:color/glance_switch_thumb_normal_material_light = 0x7f04002a
org.terst.doot.widget:layout/box_child_start_center_vertical_group_5 = 0x7f0a006f
org.terst.doot.widget:layout/root_alias_237 = 0x7f0a039d
org.terst.doot.widget:id/childStub4_expand_wrap = 0x7f070053
org.terst.doot.widget:drawable/notification_bg_normal_pressed = 0x7f06002c
org.terst.doot.widget:drawable/glance_abc_btn_check_material_anim_enabled = 0x7f060002
org.terst.doot.widget:layout/root_alias_027 = 0x7f0a02cb
org.terst.doot.widget:color/glance_colorPrimary = 0x7f040014
org.terst.doot.widget:styleable/FontFamily = 0x7f0e0002
org.terst.doot.widget:attr/fontWeight = 0x7f02000b
org.terst.doot.widget:layout/box_start_center_vertical_6children = 0x7f0a00b7
org.terst.doot.widget:layout/glance_vertical_grid_three_columns_start_top = 0x7f0a0241
org.terst.doot.widget:drawable/notification_bg_normal = 0x7f06002b
org.terst.doot.widget:id/view_tree_lifecycle_owner = 0x7f0700c1
org.terst.doot.widget:id/view_tree_view_model_store_owner = 0x7f0700c4
org.terst.doot.widget:layout/glance_radio_button_backport = 0x7f0a01c7
org.terst.doot.widget:layout/root_alias_380 = 0x7f0a042c
org.terst.doot.widget:drawable/notification_action_background = 0x7f060026
org.terst.doot.widget:attr/queryPatterns = 0x7f02000f
org.terst.doot.widget:layout/glance_vertical_grid_one_column_start_bottom = 0x7f0a0233
org.terst.doot.widget:layout/glance_button_start_bottom = 0x7f0a012b
org.terst.doot.widget:layout/row_null_center_vertical_6children = 0x7f0a047b
org.terst.doot.widget:layout/glance_image_fill_bounds_decorative_expandwidth_wrapheight = 0x7f0a0188
org.terst.doot.widget:layout/row_child_null_center_vertical_group_5 = 0x7f0a0456
org.terst.doot.widget:layout/glance_vertical_grid_five_columns = 0x7f0a0213
org.terst.doot.widget:drawable/ic_call_answer_video_low = 0x7f060022
org.terst.doot.widget:layout/column_end_null_3children = 0x7f0a00fa
org.terst.doot.widget:layout/root_alias_111 = 0x7f0a031f
org.terst.doot.widget:layout/root_alias_081 = 0x7f0a0301
org.terst.doot.widget:layout/column_start_null_9children = 0x7f0a010f
org.terst.doot.widget:drawable/ic_call_answer_low = 0x7f060020
org.terst.doot.widget:layout/row_null_bottom_2children = 0x7f0a046c
org.terst.doot.widget:id/childStub6_wrap_wrap = 0x7f07006b
org.terst.doot.widget:string/glance_error_layout_text_v2 = 0x7f0c000f
org.terst.doot.widget:drawable/ic_call_answer = 0x7f06001f
org.terst.doot.widget:layout/root_alias_251 = 0x7f0a03ab
org.terst.doot.widget:dimen/compat_notification_large_icon_max_width = 0x7f050006
org.terst.doot.widget:color/vector_tint_theme_color = 0x7f04002f
org.terst.doot.widget:layout/glance_vertical_grid_three_columns_start_bottom = 0x7f0a023f
org.terst.doot.widget:layout/glance_image_fill_bounds_start_bottom = 0x7f0a0191
org.terst.doot.widget:color/glance_colorOnSurfaceInverse = 0x7f04000f
org.terst.doot.widget:layout/box_child_center_horizontal_bottom_group_7 = 0x7f0a002b
org.terst.doot.widget:layout/glance_image_fit_decorative_wrapwidth_expandheight = 0x7f0a01a4
org.terst.doot.widget:layout/row_null_top_9children = 0x7f0a0489
org.terst.doot.widget:layout/glance_button_end_bottom = 0x7f0a0127
org.terst.doot.widget:layout/column_center_horizontal_bottom = 0x7f0a00c8
org.terst.doot.widget:layout/box_end_bottom_10children = 0x7f0a0080
org.terst.doot.widget:id/androidx_compose_ui_view_composition_context = 0x7f070026
org.terst.doot.widget:attr/fontProviderPackage = 0x7f020006
org.terst.doot.widget:id/edit_text_id = 0x7f07008c
org.terst.doot.widget:drawable/glance_btn_radio_material_anim = 0x7f060007
org.terst.doot.widget:layout/glance_image_crop_center_horizontal_bottom = 0x7f0a0166
org.terst.doot.widget:drawable/glance_component_circle_button_ripple = 0x7f060012
org.terst.doot.widget:layout/box_center_horizontal_top_1children = 0x7f0a001b
org.terst.doot.widget:drawable/glance_button_ripple = 0x7f06000d
org.terst.doot.widget:layout/glance_image_fit_decorative_start_top = 0x7f0a01a3
org.terst.doot.widget:attr/fontStyle = 0x7f020009
org.terst.doot.widget:layout/root_alias_153 = 0x7f0a0349
org.terst.doot.widget:drawable/notify_panel_notification_icon_bg = 0x7f060032
org.terst.doot.widget:layout/root_alias_240 = 0x7f0a03a0
org.terst.doot.widget:layout/complex_fixed_match = 0x7f0a0118
org.terst.doot.widget:layout/glance_image_crop_wrapwidth_expandheight = 0x7f0a017c
org.terst.doot.widget:id/icon = 0x7f070093
org.terst.doot.widget:drawable/glance_btn_checkbox_unchecked_mtrl = 0x7f060005
org.terst.doot.widget:layout/box_child_start_bottom_group_2 = 0x7f0a0062
org.terst.doot.widget:layout/root_alias_394 = 0x7f0a043a
org.terst.doot.widget:drawable/glance_btn_checkbox_checked_to_unchecked_mtrl_animation = 0x7f060004
org.terst.doot.widget:layout/column_child_center_horizontal_null_group_0 = 0x7f0a00d6
org.terst.doot.widget:id/is_pooling_container_tag = 0x7f070097
org.terst.doot.widget:layout/box_start_bottom_5children = 0x7f0a00aa
org.terst.doot.widget:id/childStub6_expand_expand = 0x7f070063
org.terst.doot.widget:layout/box_start_bottom_7children = 0x7f0a00ac
org.terst.doot.widget:layout/glance_check_box_backport_start_bottom = 0x7f0a0138
org.terst.doot.widget:layout/row_null_center_vertical_3children = 0x7f0a0478
org.terst.doot.widget:layout/root_alias_210 = 0x7f0a0382
org.terst.doot.widget:drawable/$glance_switch_thumb_on_to_off__0 = 0x7f060001
org.terst.doot.widget:layout/box_center_horizontal_top_4children = 0x7f0a001e
org.terst.doot.widget:layout/box_start_center_vertical_1children = 0x7f0a00b2
org.terst.doot.widget:id/accessibility_custom_action_5 = 0x7f07001c
org.terst.doot.widget:color/glance_switch_thumb_disabled_material_dark = 0x7f040027
org.terst.doot.widget:layout/glance_vertical_grid_four_columns_start_center_vertical = 0x7f0a0228
org.terst.doot.widget:id/accessibility_custom_action_21 = 0x7f07000f
org.terst.doot.widget:color/glance_colorSecondaryContainer = 0x7f040018
org.terst.doot.widget:dimen/notification_small_icon_size_as_large = 0x7f050015
org.terst.doot.widget:layout/size_wrap_match = 0x7f0a0490
org.terst.doot.widget:id/childStub4_wrap_wrap = 0x7f070059
org.terst.doot.widget:layout/glance_check_box_start_center_vertical = 0x7f0a0145
org.terst.doot.widget:layout/root_alias_364 = 0x7f0a041c
org.terst.doot.widget:id/childStub4_expand_expand = 0x7f070051
org.terst.doot.widget:dimen/notification_media_narrow_margin = 0x7f050011
org.terst.doot.widget:drawable/glance_btn_checkbox_unchecked_to_checked_mtrl_animation = 0x7f060006
org.terst.doot.widget:layout/row_null_bottom_9children = 0x7f0a0473
org.terst.doot.widget:layout/glance_swtch_end_bottom = 0x7f0a01f3
org.terst.doot.widget:dimen/notification_main_column_padding_top = 0x7f050010
org.terst.doot.widget:anim/glance_btn_radio_to_on_mtrl_dot_group_animation = 0x7f010009
org.terst.doot.widget:dimen/notification_action_text_size = 0x7f05000b
org.terst.doot.widget:layout/glance_image_fill_bounds_center_horizontal_center_vertical = 0x7f0a017f
org.terst.doot.widget:layout/root_alias_249 = 0x7f0a03a9
org.terst.doot.widget:layout/root_alias_381 = 0x7f0a042d
org.terst.doot.widget:anim/glance_btn_checkbox_to_unchecked_check_path_merged_animation = 0x7f010004
org.terst.doot.widget:layout/glance_image_fill_bounds_end_center_vertical = 0x7f0a018e
org.terst.doot.widget:layout/box_child_end_center_vertical_group_1 = 0x7f0a004d
org.terst.doot.widget:layout/box_child_center_horizontal_bottom_group_2 = 0x7f0a0026
org.terst.doot.widget:dimen/glance_component_circle_icon_button_corners = 0x7f050008
org.terst.doot.widget:id/forever = 0x7f07008e
org.terst.doot.widget:attr/fontVariationSettings = 0x7f02000a
org.terst.doot.widget:dimen/glance_component_button_corners = 0x7f050007
org.terst.doot.widget:layout/root_alias_168 = 0x7f0a0358
org.terst.doot.widget:layout/box_center_horizontal_bottom_7children = 0x7f0a0009
org.terst.doot.widget:dimen/notification_big_circle_margin = 0x7f05000c
org.terst.doot.widget:interpolator/glance_btn_checkbox_checked_mtrl_animation_interpolator_1 = 0x7f090001
org.terst.doot.widget:dimen/compat_notification_large_icon_max_height = 0x7f050005
org.terst.doot.widget:layout/column_child_center_horizontal_null_group_5 = 0x7f0a00db
org.terst.doot.widget:layout/glance_image_fit_center_horizontal_bottom = 0x7f0a0196
org.terst.doot.widget:drawable/notification_oversize_large_icon_bg = 0x7f06002e
org.terst.doot.widget:dimen/compat_control_corner_material = 0x7f050004
org.terst.doot.widget:layout/root_alias_379 = 0x7f0a042b
org.terst.doot.widget:layout/box_start_bottom_4children = 0x7f0a00a9
org.terst.doot.widget:layout/root_alias_220 = 0x7f0a038c
org.terst.doot.widget:attr/fontProviderSystemFontFamily = 0x7f020008
org.terst.doot.widget:id/childStub9_wrap_wrap = 0x7f070086
org.terst.doot.widget:id/action_divider = 0x7f070022
org.terst.doot.widget:layout/box_child_start_center_vertical_group_8 = 0x7f0a0072
org.terst.doot.widget:layout/root_alias_225 = 0x7f0a0391
org.terst.doot.widget:color/glance_default_radio_button = 0x7f040020
org.terst.doot.widget:dimen/notification_small_icon_background_padding = 0x7f050014
org.terst.doot.widget:layout/root_alias_307 = 0x7f0a03e3
org.terst.doot.widget:id/unchecked = 0x7f0700c0
org.terst.doot.widget:layout/root_alias_161 = 0x7f0a0351
org.terst.doot.widget:layout/glance_circular_progress_indicator_end_center_vertical = 0x7f0a014f
org.terst.doot.widget:drawable/notification_icon_background = 0x7f06002d
org.terst.doot.widget:drawable/glance_btn_radio_off_mtrl = 0x7f060008
org.terst.doot.widget:layout/box_child_start_top_group_4 = 0x7f0a0078
org.terst.doot.widget:id/accessibility_custom_action_16 = 0x7f070009
org.terst.doot.widget:layout/root_alias_348 = 0x7f0a040c
org.terst.doot.widget:layout/box_center_horizontal_center_vertical_5children = 0x7f0a0013
org.terst.doot.widget:bool/glance_appwidget_available = 0x7f030003
org.terst.doot.widget:attr/ttcIndex = 0x7f020011
org.terst.doot.widget:style/FloatingDialogTheme = 0x7f0d0002
org.terst.doot.widget:layout/root_alias_279 = 0x7f0a03c7
org.terst.doot.widget:id/childStub1_wrap_match = 0x7f07003d
org.terst.doot.widget:layout/root_alias_088 = 0x7f0a0308
org.terst.doot.widget:style/Glance.AppWidget.CheckBoxText = 0x7f0d000c
org.terst.doot.widget:color/glance_colorPrimaryInverse = 0x7f040016
org.terst.doot.widget:id/childStub9_expand_expand = 0x7f07007e
org.terst.doot.widget:dimen/glance_component_square_icon_button_corners = 0x7f050009
org.terst.doot.widget:layout/glance_image_crop_decorative_expandwidth_wrapheight = 0x7f0a0170
org.terst.doot.widget:layout/box_child_start_top_group_0 = 0x7f0a0074
org.terst.doot.widget:attr/glance_isTopLevelLayout = 0x7f02000c
org.terst.doot.widget:id/off = 0x7f07009f
org.terst.doot.widget:layout/box_child_start_bottom_group_7 = 0x7f0a0067
org.terst.doot.widget:layout/root_alias_108 = 0x7f0a031c
org.terst.doot.widget:id/tag_on_receive_content_listener = 0x7f0700b4
org.terst.doot.widget:layout/radio_row_center_horizontal_top = 0x7f0a0286
org.terst.doot.widget:layout/radio_row_null_center_vertical_0children = 0x7f0a0296
org.terst.doot.widget:id/report_drawn = 0x7f0700a5
org.terst.doot.widget:layout/root_alias_351 = 0x7f0a040f
org.terst.doot.widget:color/glance_default_switch_thumb = 0x7f040021
org.terst.doot.widget:id/accessibility_custom_action_3 = 0x7f070018
org.terst.doot.widget:id/childStub3_wrap_wrap = 0x7f070050
org.terst.doot.widget:string/m3c_date_picker_scroll_to_later_years = 0x7f0c0025
org.terst.doot.widget:layout/glance_check_box_start_bottom = 0x7f0a0144
org.terst.doot.widget:layout/glance_button_start_top = 0x7f0a012d
org.terst.doot.widget:drawable/glance_component_btn_filled = 0x7f06000f
org.terst.doot.widget:layout/notification_action_tombstone = 0x7f0a0253
org.terst.doot.widget:layout/box_end_bottom_3children = 0x7f0a0083
org.terst.doot.widget:layout/root_alias_334 = 0x7f0a03fe
org.terst.doot.widget:layout/radio_column_end_null_7children = 0x7f0a0270
org.terst.doot.widget:id/sizeViewStub = 0x7f0700ab
org.terst.doot.widget:string/m3c_time_picker_hour_selection = 0x7f0c0040
org.terst.doot.widget:layout/root_alias_030 = 0x7f0a02ce
org.terst.doot.widget:color/glance_colorBackground = 0x7f040004
org.terst.doot.widget:id/childStub5_wrap_expand = 0x7f070060
org.terst.doot.widget:layout/complex_wrap_match = 0x7f0a0120
org.terst.doot.widget:layout/root_alias_032 = 0x7f0a02d0
org.terst.doot.widget:layout/radio_row_null_center_vertical_9children = 0x7f0a02a0
org.terst.doot.widget:layout/root_alias_222 = 0x7f0a038e
org.terst.doot.widget:id/relativeLayout = 0x7f0700a4
org.terst.doot.widget:color/glance_colorOnError = 0x7f040008
org.terst.doot.widget:drawable/notification_bg_low_pressed = 0x7f06002a
org.terst.doot.widget:drawable/$glance_switch_thumb_off_to_on__0 = 0x7f060000
org.terst.doot.widget:layout/glance_image_fit_decorative_end_center_vertical = 0x7f0a019e
org.terst.doot.widget:layout/box_start_center_vertical_3children = 0x7f0a00b4
org.terst.doot.widget:color/glance_colorOnTertiary = 0x7f040011
org.terst.doot.widget:layout/root_alias_006 = 0x7f0a02b6
org.terst.doot.widget:anim/glance_btn_checkbox_to_unchecked_box_inner_merged_animation = 0x7f010003
org.terst.doot.widget:attr/font = 0x7f020001
org.terst.doot.widget:layout/column_end_null_6children = 0x7f0a00fd
org.terst.doot.widget:id/childStub7_match_match = 0x7f070070
org.terst.doot.widget:id/childStub1_match_expand = 0x7f070039
org.terst.doot.widget:id/childStub2_wrap_match = 0x7f070046
org.terst.doot.widget:layout/glance_radio_text = 0x7f0a01df
org.terst.doot.widget:layout/box_start_center_vertical_10children = 0x7f0a00b1
org.terst.doot.widget:string/m3c_suggestions_available = 0x7f0c003c
org.terst.doot.widget:layout/root_alias_358 = 0x7f0a0416
org.terst.doot.widget:layout/glance_swtch_backport_center_horizontal_center_vertical = 0x7f0a01e6
org.terst.doot.widget:color/glance_colorSurfaceVariant = 0x7f04001b
|