-
Notifications
You must be signed in to change notification settings - Fork 0
/
R.txt
3513 lines (3513 loc) · 181 KB
/
R.txt
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
int anim abc_fade_in 0x7f010001
int anim abc_fade_out 0x7f010002
int anim abc_grow_fade_in_from_bottom 0x7f010003
int anim abc_popup_enter 0x7f010004
int anim abc_popup_exit 0x7f010005
int anim abc_shrink_fade_out_from_bottom 0x7f010006
int anim abc_slide_in_bottom 0x7f010007
int anim abc_slide_in_top 0x7f010008
int anim abc_slide_out_bottom 0x7f010009
int anim abc_slide_out_top 0x7f01000a
int anim abc_tooltip_enter 0x7f01000b
int anim abc_tooltip_exit 0x7f01000c
int anim btn_checkbox_to_checked_box_inner_merged_animation 0x7f01000d
int anim btn_checkbox_to_checked_box_outer_merged_animation 0x7f01000e
int anim btn_checkbox_to_checked_icon_null_animation 0x7f01000f
int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x7f010010
int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x7f010011
int anim btn_checkbox_to_unchecked_icon_null_animation 0x7f010012
int anim btn_radio_to_off_mtrl_dot_group_animation 0x7f010013
int anim btn_radio_to_off_mtrl_ring_outer_animation 0x7f010014
int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x7f010015
int anim btn_radio_to_on_mtrl_dot_group_animation 0x7f010016
int anim btn_radio_to_on_mtrl_ring_outer_animation 0x7f010017
int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x7f010018
int anim design_bottom_sheet_slide_in 0x7f010019
int anim design_bottom_sheet_slide_out 0x7f01001a
int anim design_snackbar_in 0x7f01001b
int anim design_snackbar_out 0x7f01001c
int anim mtrl_bottom_sheet_slide_in 0x7f01001d
int anim mtrl_bottom_sheet_slide_out 0x7f01001e
int anim mtrl_card_lowers_interpolator 0x7f01001f
int animator design_appbar_state_list_animator 0x7f020001
int animator design_fab_hide_motion_spec 0x7f020002
int animator design_fab_show_motion_spec 0x7f020003
int animator mtrl_btn_state_list_anim 0x7f020004
int animator mtrl_btn_unelevated_state_list_anim 0x7f020005
int animator mtrl_card_state_list_anim 0x7f020006
int animator mtrl_chip_state_list_anim 0x7f020007
int animator mtrl_extended_fab_change_size_motion_spec 0x7f020008
int animator mtrl_extended_fab_hide_motion_spec 0x7f020009
int animator mtrl_extended_fab_show_motion_spec 0x7f02000a
int animator mtrl_extended_fab_state_list_animator 0x7f02000b
int animator mtrl_fab_hide_motion_spec 0x7f02000c
int animator mtrl_fab_show_motion_spec 0x7f02000d
int animator mtrl_fab_transformation_sheet_collapse_spec 0x7f02000e
int animator mtrl_fab_transformation_sheet_expand_spec 0x7f02000f
int attr actionBarDivider 0x7f040001
int attr actionBarItemBackground 0x7f040002
int attr actionBarPopupTheme 0x7f040003
int attr actionBarSize 0x7f040004
int attr actionBarSplitStyle 0x7f040005
int attr actionBarStyle 0x7f040006
int attr actionBarTabBarStyle 0x7f040007
int attr actionBarTabStyle 0x7f040008
int attr actionBarTabTextStyle 0x7f040009
int attr actionBarTheme 0x7f04000a
int attr actionBarWidgetTheme 0x7f04000b
int attr actionButtonStyle 0x7f04000c
int attr actionDropDownStyle 0x7f04000d
int attr actionLayout 0x7f04000e
int attr actionMenuTextAppearance 0x7f04000f
int attr actionMenuTextColor 0x7f040010
int attr actionModeBackground 0x7f040011
int attr actionModeCloseButtonStyle 0x7f040012
int attr actionModeCloseDrawable 0x7f040013
int attr actionModeCopyDrawable 0x7f040014
int attr actionModeCutDrawable 0x7f040015
int attr actionModeFindDrawable 0x7f040016
int attr actionModePasteDrawable 0x7f040017
int attr actionModePopupWindowStyle 0x7f040018
int attr actionModeSelectAllDrawable 0x7f040019
int attr actionModeShareDrawable 0x7f04001a
int attr actionModeSplitBackground 0x7f04001b
int attr actionModeStyle 0x7f04001c
int attr actionModeWebSearchDrawable 0x7f04001d
int attr actionOverflowButtonStyle 0x7f04001e
int attr actionOverflowMenuStyle 0x7f04001f
int attr actionProviderClass 0x7f040020
int attr actionTextColorAlpha 0x7f040021
int attr actionViewClass 0x7f040022
int attr activityChooserViewStyle 0x7f040023
int attr alertDialogButtonGroupStyle 0x7f040024
int attr alertDialogCenterButtons 0x7f040025
int attr alertDialogStyle 0x7f040026
int attr alertDialogTheme 0x7f040027
int attr allowStacking 0x7f040028
int attr alpha 0x7f040029
int attr alphabeticModifiers 0x7f04002a
int attr animationMode 0x7f04002b
int attr appBarLayoutStyle 0x7f04002c
int attr arrowHeadLength 0x7f04002d
int attr arrowShaftLength 0x7f04002e
int attr autoCompleteTextViewStyle 0x7f04002f
int attr autoSizeMaxTextSize 0x7f040030
int attr autoSizeMinTextSize 0x7f040031
int attr autoSizePresetSizes 0x7f040032
int attr autoSizeStepGranularity 0x7f040033
int attr autoSizeTextType 0x7f040034
int attr background 0x7f040035
int attr backgroundColor 0x7f040036
int attr backgroundInsetBottom 0x7f040037
int attr backgroundInsetEnd 0x7f040038
int attr backgroundInsetStart 0x7f040039
int attr backgroundInsetTop 0x7f04003a
int attr backgroundOverlayColorAlpha 0x7f04003b
int attr backgroundSplit 0x7f04003c
int attr backgroundStacked 0x7f04003d
int attr backgroundTint 0x7f04003e
int attr backgroundTintMode 0x7f04003f
int attr badgeGravity 0x7f040040
int attr badgeStyle 0x7f040041
int attr badgeTextColor 0x7f040042
int attr barLength 0x7f040043
int attr behavior_autoHide 0x7f040044
int attr behavior_autoShrink 0x7f040045
int attr behavior_draggable 0x7f040046
int attr behavior_expandedOffset 0x7f040047
int attr behavior_fitToContents 0x7f040048
int attr behavior_halfExpandedRatio 0x7f040049
int attr behavior_hideable 0x7f04004a
int attr behavior_overlapTop 0x7f04004b
int attr behavior_peekHeight 0x7f04004c
int attr behavior_saveFlags 0x7f04004d
int attr behavior_skipCollapsed 0x7f04004e
int attr borderWidth 0x7f04004f
int attr borderlessButtonStyle 0x7f040050
int attr bottomAppBarStyle 0x7f040051
int attr bottomNavigationStyle 0x7f040052
int attr bottomSheetDialogTheme 0x7f040053
int attr bottomSheetStyle 0x7f040054
int attr boxBackgroundColor 0x7f040055
int attr boxBackgroundMode 0x7f040056
int attr boxCollapsedPaddingTop 0x7f040057
int attr boxCornerRadiusBottomEnd 0x7f040058
int attr boxCornerRadiusBottomStart 0x7f040059
int attr boxCornerRadiusTopEnd 0x7f04005a
int attr boxCornerRadiusTopStart 0x7f04005b
int attr boxStrokeColor 0x7f04005c
int attr boxStrokeErrorColor 0x7f04005d
int attr boxStrokeWidth 0x7f04005e
int attr boxStrokeWidthFocused 0x7f04005f
int attr buttonBarButtonStyle 0x7f040060
int attr buttonBarNegativeButtonStyle 0x7f040061
int attr buttonBarNeutralButtonStyle 0x7f040062
int attr buttonBarPositiveButtonStyle 0x7f040063
int attr buttonBarStyle 0x7f040064
int attr buttonCompat 0x7f040065
int attr buttonGravity 0x7f040066
int attr buttonIconDimen 0x7f040067
int attr buttonPanelSideLayout 0x7f040068
int attr buttonStyle 0x7f040069
int attr buttonStyleSmall 0x7f04006a
int attr buttonTint 0x7f04006b
int attr buttonTintMode 0x7f04006c
int attr cardBackgroundColor 0x7f04006d
int attr cardCornerRadius 0x7f04006e
int attr cardElevation 0x7f04006f
int attr cardForegroundColor 0x7f040070
int attr cardMaxElevation 0x7f040071
int attr cardPreventCornerOverlap 0x7f040072
int attr cardUseCompatPadding 0x7f040073
int attr cardViewStyle 0x7f040074
int attr checkboxStyle 0x7f040075
int attr checkedButton 0x7f040076
int attr checkedChip 0x7f040077
int attr checkedIcon 0x7f040078
int attr checkedIconEnabled 0x7f040079
int attr checkedIconTint 0x7f04007a
int attr checkedIconVisible 0x7f04007b
int attr checkedTextViewStyle 0x7f04007c
int attr chipBackgroundColor 0x7f04007d
int attr chipCornerRadius 0x7f04007e
int attr chipEndPadding 0x7f04007f
int attr chipGroupStyle 0x7f040080
int attr chipIcon 0x7f040081
int attr chipIconEnabled 0x7f040082
int attr chipIconSize 0x7f040083
int attr chipIconTint 0x7f040084
int attr chipIconVisible 0x7f040085
int attr chipMinHeight 0x7f040086
int attr chipMinTouchTargetSize 0x7f040087
int attr chipSpacing 0x7f040088
int attr chipSpacingHorizontal 0x7f040089
int attr chipSpacingVertical 0x7f04008a
int attr chipStandaloneStyle 0x7f04008b
int attr chipStartPadding 0x7f04008c
int attr chipStrokeColor 0x7f04008d
int attr chipStrokeWidth 0x7f04008e
int attr chipStyle 0x7f04008f
int attr chipSurfaceColor 0x7f040090
int attr closeIcon 0x7f040091
int attr closeIconEnabled 0x7f040092
int attr closeIconEndPadding 0x7f040093
int attr closeIconSize 0x7f040094
int attr closeIconStartPadding 0x7f040095
int attr closeIconTint 0x7f040096
int attr closeIconVisible 0x7f040097
int attr closeItemLayout 0x7f040098
int attr collapseContentDescription 0x7f040099
int attr collapseIcon 0x7f04009a
int attr collapsedTitleGravity 0x7f04009b
int attr collapsedTitleTextAppearance 0x7f04009c
int attr color 0x7f04009d
int attr colorAccent 0x7f04009e
int attr colorBackgroundFloating 0x7f04009f
int attr colorButtonNormal 0x7f0400a0
int attr colorControlActivated 0x7f0400a1
int attr colorControlHighlight 0x7f0400a2
int attr colorControlNormal 0x7f0400a3
int attr colorError 0x7f0400a4
int attr colorOnBackground 0x7f0400a5
int attr colorOnError 0x7f0400a6
int attr colorOnPrimary 0x7f0400a7
int attr colorOnPrimarySurface 0x7f0400a8
int attr colorOnSecondary 0x7f0400a9
int attr colorOnSurface 0x7f0400aa
int attr colorPrimary 0x7f0400ab
int attr colorPrimaryDark 0x7f0400ac
int attr colorPrimarySurface 0x7f0400ad
int attr colorPrimaryVariant 0x7f0400ae
int attr colorSecondary 0x7f0400af
int attr colorSecondaryVariant 0x7f0400b0
int attr colorSurface 0x7f0400b1
int attr colorSwitchThumbNormal 0x7f0400b2
int attr commitIcon 0x7f0400b3
int attr contentDescription 0x7f0400b4
int attr contentInsetEnd 0x7f0400b5
int attr contentInsetEndWithActions 0x7f0400b6
int attr contentInsetLeft 0x7f0400b7
int attr contentInsetRight 0x7f0400b8
int attr contentInsetStart 0x7f0400b9
int attr contentInsetStartWithNavigation 0x7f0400ba
int attr contentPadding 0x7f0400bb
int attr contentPaddingBottom 0x7f0400bc
int attr contentPaddingLeft 0x7f0400bd
int attr contentPaddingRight 0x7f0400be
int attr contentPaddingTop 0x7f0400bf
int attr contentScrim 0x7f0400c0
int attr controlBackground 0x7f0400c1
int attr coordinatorLayoutStyle 0x7f0400c2
int attr cornerFamily 0x7f0400c3
int attr cornerFamilyBottomLeft 0x7f0400c4
int attr cornerFamilyBottomRight 0x7f0400c5
int attr cornerFamilyTopLeft 0x7f0400c6
int attr cornerFamilyTopRight 0x7f0400c7
int attr cornerRadius 0x7f0400c8
int attr cornerSize 0x7f0400c9
int attr cornerSizeBottomLeft 0x7f0400ca
int attr cornerSizeBottomRight 0x7f0400cb
int attr cornerSizeTopLeft 0x7f0400cc
int attr cornerSizeTopRight 0x7f0400cd
int attr counterEnabled 0x7f0400ce
int attr counterMaxLength 0x7f0400cf
int attr counterOverflowTextAppearance 0x7f0400d0
int attr counterOverflowTextColor 0x7f0400d1
int attr counterTextAppearance 0x7f0400d2
int attr counterTextColor 0x7f0400d3
int attr customNavigationLayout 0x7f0400d4
int attr dayInvalidStyle 0x7f0400d5
int attr daySelectedStyle 0x7f0400d6
int attr dayStyle 0x7f0400d7
int attr dayTodayStyle 0x7f0400d8
int attr defaultQueryHint 0x7f0400d9
int attr dialogCornerRadius 0x7f0400da
int attr dialogPreferredPadding 0x7f0400db
int attr dialogTheme 0x7f0400dc
int attr displayOptions 0x7f0400dd
int attr divider 0x7f0400de
int attr dividerHorizontal 0x7f0400df
int attr dividerPadding 0x7f0400e0
int attr dividerVertical 0x7f0400e1
int attr drawableBottomCompat 0x7f0400e2
int attr drawableEndCompat 0x7f0400e3
int attr drawableLeftCompat 0x7f0400e4
int attr drawableRightCompat 0x7f0400e5
int attr drawableSize 0x7f0400e6
int attr drawableStartCompat 0x7f0400e7
int attr drawableTint 0x7f0400e8
int attr drawableTintMode 0x7f0400e9
int attr drawableTopCompat 0x7f0400ea
int attr drawerArrowStyle 0x7f0400eb
int attr dropDownListViewStyle 0x7f0400ec
int attr dropdownListPreferredItemHeight 0x7f0400ed
int attr editTextBackground 0x7f0400ee
int attr editTextColor 0x7f0400ef
int attr editTextStyle 0x7f0400f0
int attr elevation 0x7f0400f1
int attr elevationOverlayColor 0x7f0400f2
int attr elevationOverlayEnabled 0x7f0400f3
int attr endIconCheckable 0x7f0400f4
int attr endIconContentDescription 0x7f0400f5
int attr endIconDrawable 0x7f0400f6
int attr endIconMode 0x7f0400f7
int attr endIconTint 0x7f0400f8
int attr endIconTintMode 0x7f0400f9
int attr enforceMaterialTheme 0x7f0400fa
int attr enforceTextAppearance 0x7f0400fb
int attr ensureMinTouchTargetSize 0x7f0400fc
int attr errorContentDescription 0x7f0400fd
int attr errorEnabled 0x7f0400fe
int attr errorIconDrawable 0x7f0400ff
int attr errorIconTint 0x7f040100
int attr errorIconTintMode 0x7f040101
int attr errorTextAppearance 0x7f040102
int attr errorTextColor 0x7f040103
int attr expandActivityOverflowButtonDrawable 0x7f040104
int attr expanded 0x7f040105
int attr expandedTitleGravity 0x7f040106
int attr expandedTitleMargin 0x7f040107
int attr expandedTitleMarginBottom 0x7f040108
int attr expandedTitleMarginEnd 0x7f040109
int attr expandedTitleMarginStart 0x7f04010a
int attr expandedTitleMarginTop 0x7f04010b
int attr expandedTitleTextAppearance 0x7f04010c
int attr extendMotionSpec 0x7f04010d
int attr extendedFloatingActionButtonStyle 0x7f04010e
int attr fabAlignmentMode 0x7f04010f
int attr fabAnimationMode 0x7f040110
int attr fabCradleMargin 0x7f040111
int attr fabCradleRoundedCornerRadius 0x7f040112
int attr fabCradleVerticalOffset 0x7f040113
int attr fabCustomSize 0x7f040114
int attr fabSize 0x7f040115
int attr fastScrollEnabled 0x7f040116
int attr fastScrollHorizontalThumbDrawable 0x7f040117
int attr fastScrollHorizontalTrackDrawable 0x7f040118
int attr fastScrollVerticalThumbDrawable 0x7f040119
int attr fastScrollVerticalTrackDrawable 0x7f04011a
int attr firstBaselineToTopHeight 0x7f04011b
int attr floatingActionButtonStyle 0x7f04011c
int attr font 0x7f04011d
int attr fontFamily 0x7f04011e
int attr fontProviderAuthority 0x7f04011f
int attr fontProviderCerts 0x7f040120
int attr fontProviderFetchStrategy 0x7f040121
int attr fontProviderFetchTimeout 0x7f040122
int attr fontProviderPackage 0x7f040123
int attr fontProviderQuery 0x7f040124
int attr fontProviderSystemFontFamily 0x7f040125
int attr fontStyle 0x7f040126
int attr fontVariationSettings 0x7f040127
int attr fontWeight 0x7f040128
int attr foregroundInsidePadding 0x7f040129
int attr gapBetweenBars 0x7f04012a
int attr gestureInsetBottomIgnored 0x7f04012b
int attr goIcon 0x7f04012c
int attr haloColor 0x7f04012d
int attr haloRadius 0x7f04012e
int attr headerLayout 0x7f04012f
int attr height 0x7f040130
int attr helperText 0x7f040131
int attr helperTextEnabled 0x7f040132
int attr helperTextTextAppearance 0x7f040133
int attr helperTextTextColor 0x7f040134
int attr hideMotionSpec 0x7f040135
int attr hideOnContentScroll 0x7f040136
int attr hideOnScroll 0x7f040137
int attr hintAnimationEnabled 0x7f040138
int attr hintEnabled 0x7f040139
int attr hintTextAppearance 0x7f04013a
int attr hintTextColor 0x7f04013b
int attr homeAsUpIndicator 0x7f04013c
int attr homeLayout 0x7f04013d
int attr horizontalOffset 0x7f04013e
int attr hoveredFocusedTranslationZ 0x7f04013f
int attr icon 0x7f040140
int attr iconEndPadding 0x7f040141
int attr iconGravity 0x7f040142
int attr iconPadding 0x7f040143
int attr iconSize 0x7f040144
int attr iconStartPadding 0x7f040145
int attr iconTint 0x7f040146
int attr iconTintMode 0x7f040147
int attr iconifiedByDefault 0x7f040148
int attr imageButtonStyle 0x7f040149
int attr indeterminateProgressStyle 0x7f04014a
int attr initialActivityCount 0x7f04014b
int attr insetForeground 0x7f04014c
int attr isLightTheme 0x7f04014d
int attr isMaterialTheme 0x7f04014e
int attr itemBackground 0x7f04014f
int attr itemFillColor 0x7f040150
int attr itemHorizontalPadding 0x7f040151
int attr itemHorizontalTranslationEnabled 0x7f040152
int attr itemIconPadding 0x7f040153
int attr itemIconSize 0x7f040154
int attr itemIconTint 0x7f040155
int attr itemMaxLines 0x7f040156
int attr itemPadding 0x7f040157
int attr itemRippleColor 0x7f040158
int attr itemShapeAppearance 0x7f040159
int attr itemShapeAppearanceOverlay 0x7f04015a
int attr itemShapeFillColor 0x7f04015b
int attr itemShapeInsetBottom 0x7f04015c
int attr itemShapeInsetEnd 0x7f04015d
int attr itemShapeInsetStart 0x7f04015e
int attr itemShapeInsetTop 0x7f04015f
int attr itemSpacing 0x7f040160
int attr itemStrokeColor 0x7f040161
int attr itemStrokeWidth 0x7f040162
int attr itemTextAppearance 0x7f040163
int attr itemTextAppearanceActive 0x7f040164
int attr itemTextAppearanceInactive 0x7f040165
int attr itemTextColor 0x7f040166
int attr keylines 0x7f040167
int attr labelBehavior 0x7f040168
int attr labelStyle 0x7f040169
int attr labelVisibilityMode 0x7f04016a
int attr lastBaselineToBottomHeight 0x7f04016b
int attr layout 0x7f04016c
int attr layoutManager 0x7f04016d
int attr layout_anchor 0x7f04016e
int attr layout_anchorGravity 0x7f04016f
int attr layout_behavior 0x7f040170
int attr layout_collapseMode 0x7f040171
int attr layout_collapseParallaxMultiplier 0x7f040172
int attr layout_dodgeInsetEdges 0x7f040173
int attr layout_insetEdge 0x7f040174
int attr layout_keyline 0x7f040175
int attr layout_scrollFlags 0x7f040176
int attr layout_scrollInterpolator 0x7f040177
int attr liftOnScroll 0x7f040178
int attr liftOnScrollTargetViewId 0x7f040179
int attr lineHeight 0x7f04017a
int attr lineSpacing 0x7f04017b
int attr listChoiceBackgroundIndicator 0x7f04017c
int attr listChoiceIndicatorMultipleAnimated 0x7f04017d
int attr listChoiceIndicatorSingleAnimated 0x7f04017e
int attr listDividerAlertDialog 0x7f04017f
int attr listItemLayout 0x7f040180
int attr listLayout 0x7f040181
int attr listMenuViewStyle 0x7f040182
int attr listPopupWindowStyle 0x7f040183
int attr listPreferredItemHeight 0x7f040184
int attr listPreferredItemHeightLarge 0x7f040185
int attr listPreferredItemHeightSmall 0x7f040186
int attr listPreferredItemPaddingEnd 0x7f040187
int attr listPreferredItemPaddingLeft 0x7f040188
int attr listPreferredItemPaddingRight 0x7f040189
int attr listPreferredItemPaddingStart 0x7f04018a
int attr logo 0x7f04018b
int attr logoDescription 0x7f04018c
int attr materialAlertDialogBodyTextStyle 0x7f04018d
int attr materialAlertDialogTheme 0x7f04018e
int attr materialAlertDialogTitleIconStyle 0x7f04018f
int attr materialAlertDialogTitlePanelStyle 0x7f040190
int attr materialAlertDialogTitleTextStyle 0x7f040191
int attr materialButtonOutlinedStyle 0x7f040192
int attr materialButtonStyle 0x7f040193
int attr materialButtonToggleGroupStyle 0x7f040194
int attr materialCalendarDay 0x7f040195
int attr materialCalendarFullscreenTheme 0x7f040196
int attr materialCalendarHeaderConfirmButton 0x7f040197
int attr materialCalendarHeaderDivider 0x7f040198
int attr materialCalendarHeaderLayout 0x7f040199
int attr materialCalendarHeaderSelection 0x7f04019a
int attr materialCalendarHeaderTitle 0x7f04019b
int attr materialCalendarHeaderToggleButton 0x7f04019c
int attr materialCalendarStyle 0x7f04019d
int attr materialCalendarTheme 0x7f04019e
int attr materialCardViewStyle 0x7f04019f
int attr materialThemeOverlay 0x7f0401a0
int attr maxActionInlineWidth 0x7f0401a1
int attr maxButtonHeight 0x7f0401a2
int attr maxCharacterCount 0x7f0401a3
int attr maxImageSize 0x7f0401a4
int attr maxLines 0x7f0401a5
int attr measureWithLargestChild 0x7f0401a6
int attr menu 0x7f0401a7
int attr minTouchTargetSize 0x7f0401a8
int attr multiChoiceItemLayout 0x7f0401a9
int attr navigationContentDescription 0x7f0401aa
int attr navigationIcon 0x7f0401ab
int attr navigationMode 0x7f0401ac
int attr navigationViewStyle 0x7f0401ad
int attr number 0x7f0401ae
int attr numericModifiers 0x7f0401af
int attr overlapAnchor 0x7f0401b0
int attr paddingBottomNoButtons 0x7f0401b1
int attr paddingBottomSystemWindowInsets 0x7f0401b2
int attr paddingEnd 0x7f0401b3
int attr paddingLeftSystemWindowInsets 0x7f0401b4
int attr paddingRightSystemWindowInsets 0x7f0401b5
int attr paddingStart 0x7f0401b6
int attr paddingTopNoTitle 0x7f0401b7
int attr panelBackground 0x7f0401b8
int attr panelMenuListTheme 0x7f0401b9
int attr panelMenuListWidth 0x7f0401ba
int attr passwordToggleContentDescription 0x7f0401bb
int attr passwordToggleDrawable 0x7f0401bc
int attr passwordToggleEnabled 0x7f0401bd
int attr passwordToggleTint 0x7f0401be
int attr passwordToggleTintMode 0x7f0401bf
int attr placeholderText 0x7f0401c0
int attr placeholderTextAppearance 0x7f0401c1
int attr placeholderTextColor 0x7f0401c2
int attr popupMenuBackground 0x7f0401c3
int attr popupMenuStyle 0x7f0401c4
int attr popupTheme 0x7f0401c5
int attr popupWindowStyle 0x7f0401c6
int attr prefixText 0x7f0401c7
int attr prefixTextAppearance 0x7f0401c8
int attr prefixTextColor 0x7f0401c9
int attr preserveIconSpacing 0x7f0401ca
int attr pressedTranslationZ 0x7f0401cb
int attr progressBarPadding 0x7f0401cc
int attr progressBarStyle 0x7f0401cd
int attr queryBackground 0x7f0401ce
int attr queryHint 0x7f0401cf
int attr radioButtonStyle 0x7f0401d0
int attr rangeFillColor 0x7f0401d1
int attr ratingBarStyle 0x7f0401d2
int attr ratingBarStyleIndicator 0x7f0401d3
int attr ratingBarStyleSmall 0x7f0401d4
int attr recyclerViewStyle 0x7f0401d5
int attr reverseLayout 0x7f0401d6
int attr rippleColor 0x7f0401d7
int attr scrimAnimationDuration 0x7f0401d8
int attr scrimBackground 0x7f0401d9
int attr scrimVisibleHeightTrigger 0x7f0401da
int attr searchHintIcon 0x7f0401db
int attr searchIcon 0x7f0401dc
int attr searchViewStyle 0x7f0401dd
int attr seekBarStyle 0x7f0401de
int attr selectableItemBackground 0x7f0401df
int attr selectableItemBackgroundBorderless 0x7f0401e0
int attr selectionRequired 0x7f0401e1
int attr shapeAppearance 0x7f0401e2
int attr shapeAppearanceLargeComponent 0x7f0401e3
int attr shapeAppearanceMediumComponent 0x7f0401e4
int attr shapeAppearanceOverlay 0x7f0401e5
int attr shapeAppearanceSmallComponent 0x7f0401e6
int attr showAsAction 0x7f0401e7
int attr showDividers 0x7f0401e8
int attr showMotionSpec 0x7f0401e9
int attr showText 0x7f0401ea
int attr showTitle 0x7f0401eb
int attr shrinkMotionSpec 0x7f0401ec
int attr singleChoiceItemLayout 0x7f0401ed
int attr singleLine 0x7f0401ee
int attr singleSelection 0x7f0401ef
int attr sliderStyle 0x7f0401f0
int attr snackbarButtonStyle 0x7f0401f1
int attr snackbarStyle 0x7f0401f2
int attr snackbarTextViewStyle 0x7f0401f3
int attr spanCount 0x7f0401f4
int attr spinBars 0x7f0401f5
int attr spinnerDropDownItemStyle 0x7f0401f6
int attr spinnerStyle 0x7f0401f7
int attr splitTrack 0x7f0401f8
int attr srcCompat 0x7f0401f9
int attr stackFromEnd 0x7f0401fa
int attr startIconCheckable 0x7f0401fb
int attr startIconContentDescription 0x7f0401fc
int attr startIconDrawable 0x7f0401fd
int attr startIconTint 0x7f0401fe
int attr startIconTintMode 0x7f0401ff
int attr state_above_anchor 0x7f040200
int attr state_collapsed 0x7f040201
int attr state_collapsible 0x7f040202
int attr state_dragged 0x7f040203
int attr state_liftable 0x7f040204
int attr state_lifted 0x7f040205
int attr statusBarBackground 0x7f040206
int attr statusBarForeground 0x7f040207
int attr statusBarScrim 0x7f040208
int attr strokeColor 0x7f040209
int attr strokeWidth 0x7f04020a
int attr subMenuArrow 0x7f04020b
int attr submitBackground 0x7f04020c
int attr subtitle 0x7f04020d
int attr subtitleTextAppearance 0x7f04020e
int attr subtitleTextColor 0x7f04020f
int attr subtitleTextStyle 0x7f040210
int attr suffixText 0x7f040211
int attr suffixTextAppearance 0x7f040212
int attr suffixTextColor 0x7f040213
int attr suggestionRowLayout 0x7f040214
int attr switchMinWidth 0x7f040215
int attr switchPadding 0x7f040216
int attr switchStyle 0x7f040217
int attr switchTextAppearance 0x7f040218
int attr tabBackground 0x7f040219
int attr tabContentStart 0x7f04021a
int attr tabGravity 0x7f04021b
int attr tabIconTint 0x7f04021c
int attr tabIconTintMode 0x7f04021d
int attr tabIndicator 0x7f04021e
int attr tabIndicatorAnimationDuration 0x7f04021f
int attr tabIndicatorColor 0x7f040220
int attr tabIndicatorFullWidth 0x7f040221
int attr tabIndicatorGravity 0x7f040222
int attr tabIndicatorHeight 0x7f040223
int attr tabInlineLabel 0x7f040224
int attr tabMaxWidth 0x7f040225
int attr tabMinWidth 0x7f040226
int attr tabMode 0x7f040227
int attr tabPadding 0x7f040228
int attr tabPaddingBottom 0x7f040229
int attr tabPaddingEnd 0x7f04022a
int attr tabPaddingStart 0x7f04022b
int attr tabPaddingTop 0x7f04022c
int attr tabRippleColor 0x7f04022d
int attr tabSelectedTextColor 0x7f04022e
int attr tabStyle 0x7f04022f
int attr tabTextAppearance 0x7f040230
int attr tabTextColor 0x7f040231
int attr tabUnboundedRipple 0x7f040232
int attr textAllCaps 0x7f040233
int attr textAppearanceBody1 0x7f040234
int attr textAppearanceBody2 0x7f040235
int attr textAppearanceButton 0x7f040236
int attr textAppearanceCaption 0x7f040237
int attr textAppearanceHeadline1 0x7f040238
int attr textAppearanceHeadline2 0x7f040239
int attr textAppearanceHeadline3 0x7f04023a
int attr textAppearanceHeadline4 0x7f04023b
int attr textAppearanceHeadline5 0x7f04023c
int attr textAppearanceHeadline6 0x7f04023d
int attr textAppearanceLargePopupMenu 0x7f04023e
int attr textAppearanceLineHeightEnabled 0x7f04023f
int attr textAppearanceListItem 0x7f040240
int attr textAppearanceListItemSecondary 0x7f040241
int attr textAppearanceListItemSmall 0x7f040242
int attr textAppearanceOverline 0x7f040243
int attr textAppearancePopupMenuHeader 0x7f040244
int attr textAppearanceSearchResultSubtitle 0x7f040245
int attr textAppearanceSearchResultTitle 0x7f040246
int attr textAppearanceSmallPopupMenu 0x7f040247
int attr textAppearanceSubtitle1 0x7f040248
int attr textAppearanceSubtitle2 0x7f040249
int attr textColorAlertDialogListItem 0x7f04024a
int attr textColorSearchUrl 0x7f04024b
int attr textEndPadding 0x7f04024c
int attr textInputLayoutFocusedRectEnabled 0x7f04024d
int attr textInputStyle 0x7f04024e
int attr textLocale 0x7f04024f
int attr textStartPadding 0x7f040250
int attr theme 0x7f040251
int attr themeLineHeight 0x7f040252
int attr thickness 0x7f040253
int attr thumbColor 0x7f040254
int attr thumbElevation 0x7f040255
int attr thumbRadius 0x7f040256
int attr thumbTextPadding 0x7f040257
int attr thumbTint 0x7f040258
int attr thumbTintMode 0x7f040259
int attr tickColor 0x7f04025a
int attr tickColorActive 0x7f04025b
int attr tickColorInactive 0x7f04025c
int attr tickMark 0x7f04025d
int attr tickMarkTint 0x7f04025e
int attr tickMarkTintMode 0x7f04025f
int attr tint 0x7f040260
int attr tintMode 0x7f040261
int attr title 0x7f040262
int attr titleEnabled 0x7f040263
int attr titleMargin 0x7f040264
int attr titleMarginBottom 0x7f040265
int attr titleMarginEnd 0x7f040266
int attr titleMarginStart 0x7f040267
int attr titleMarginTop 0x7f040268
int attr titleMargins 0x7f040269
int attr titleTextAppearance 0x7f04026a
int attr titleTextColor 0x7f04026b
int attr titleTextStyle 0x7f04026c
int attr toolbarId 0x7f04026d
int attr toolbarNavigationButtonStyle 0x7f04026e
int attr toolbarStyle 0x7f04026f
int attr tooltipForegroundColor 0x7f040270
int attr tooltipFrameBackground 0x7f040271
int attr tooltipStyle 0x7f040272
int attr tooltipText 0x7f040273
int attr track 0x7f040274
int attr trackColor 0x7f040275
int attr trackColorActive 0x7f040276
int attr trackColorInactive 0x7f040277
int attr trackHeight 0x7f040278
int attr trackTint 0x7f040279
int attr trackTintMode 0x7f04027a
int attr transitionShapeAppearance 0x7f04027b
int attr ttcIndex 0x7f04027c
int attr useCompatPadding 0x7f04027d
int attr useMaterialThemeColors 0x7f04027e
int attr values 0x7f04027f
int attr verticalOffset 0x7f040280
int attr viewInflaterClass 0x7f040281
int attr voiceIcon 0x7f040282
int attr windowActionBar 0x7f040283
int attr windowActionBarOverlay 0x7f040284
int attr windowActionModeOverlay 0x7f040285
int attr windowFixedHeightMajor 0x7f040286
int attr windowFixedHeightMinor 0x7f040287
int attr windowFixedWidthMajor 0x7f040288
int attr windowFixedWidthMinor 0x7f040289
int attr windowMinWidthMajor 0x7f04028a
int attr windowMinWidthMinor 0x7f04028b
int attr windowNoTitle 0x7f04028c
int attr yearSelectedStyle 0x7f04028d
int attr yearStyle 0x7f04028e
int attr yearTodayStyle 0x7f04028f
int bool abc_action_bar_embed_tabs 0x7f050001
int bool abc_allow_stacked_button_bar 0x7f050002
int bool abc_config_actionMenuItemAllCaps 0x7f050003
int bool mtrl_btn_textappearance_all_caps 0x7f050004
int color abc_background_cache_hint_selector_material_dark 0x7f060001
int color abc_background_cache_hint_selector_material_light 0x7f060002
int color abc_btn_colored_borderless_text_material 0x7f060003
int color abc_btn_colored_text_material 0x7f060004
int color abc_color_highlight_material 0x7f060005
int color abc_decor_view_status_guard 0x7f060006
int color abc_decor_view_status_guard_light 0x7f060007
int color abc_hint_foreground_material_dark 0x7f060008
int color abc_hint_foreground_material_light 0x7f060009
int color abc_input_method_navigation_guard 0x7f06000a
int color abc_primary_text_disable_only_material_dark 0x7f06000b
int color abc_primary_text_disable_only_material_light 0x7f06000c
int color abc_primary_text_material_dark 0x7f06000d
int color abc_primary_text_material_light 0x7f06000e
int color abc_search_url_text 0x7f06000f
int color abc_search_url_text_normal 0x7f060010
int color abc_search_url_text_pressed 0x7f060011
int color abc_search_url_text_selected 0x7f060012
int color abc_secondary_text_material_dark 0x7f060013
int color abc_secondary_text_material_light 0x7f060014
int color abc_tint_btn_checkable 0x7f060015
int color abc_tint_default 0x7f060016
int color abc_tint_edittext 0x7f060017
int color abc_tint_seek_thumb 0x7f060018
int color abc_tint_spinner 0x7f060019
int color abc_tint_switch_track 0x7f06001a
int color accent_material_dark 0x7f06001b
int color accent_material_light 0x7f06001c
int color androidx_core_ripple_material_light 0x7f06001d
int color androidx_core_secondary_text_default_material_light 0x7f06001e
int color background_floating_material_dark 0x7f06001f
int color background_floating_material_light 0x7f060020
int color background_material_dark 0x7f060021
int color background_material_light 0x7f060022
int color bright_foreground_disabled_material_dark 0x7f060023
int color bright_foreground_disabled_material_light 0x7f060024
int color bright_foreground_inverse_material_dark 0x7f060025
int color bright_foreground_inverse_material_light 0x7f060026
int color bright_foreground_material_dark 0x7f060027
int color bright_foreground_material_light 0x7f060028
int color button_material_dark 0x7f060029
int color button_material_light 0x7f06002a
int color cardview_dark_background 0x7f06002b
int color cardview_light_background 0x7f06002c
int color cardview_shadow_end_color 0x7f06002d
int color cardview_shadow_start_color 0x7f06002e
int color checkbox_themeable_attribute_color 0x7f06002f
int color design_bottom_navigation_shadow_color 0x7f060030
int color design_box_stroke_color 0x7f060031
int color design_dark_default_color_background 0x7f060032
int color design_dark_default_color_error 0x7f060033
int color design_dark_default_color_on_background 0x7f060034
int color design_dark_default_color_on_error 0x7f060035
int color design_dark_default_color_on_primary 0x7f060036
int color design_dark_default_color_on_secondary 0x7f060037
int color design_dark_default_color_on_surface 0x7f060038
int color design_dark_default_color_primary 0x7f060039
int color design_dark_default_color_primary_dark 0x7f06003a
int color design_dark_default_color_primary_variant 0x7f06003b
int color design_dark_default_color_secondary 0x7f06003c
int color design_dark_default_color_secondary_variant 0x7f06003d
int color design_dark_default_color_surface 0x7f06003e
int color design_default_color_background 0x7f06003f
int color design_default_color_error 0x7f060040
int color design_default_color_on_background 0x7f060041
int color design_default_color_on_error 0x7f060042
int color design_default_color_on_primary 0x7f060043
int color design_default_color_on_secondary 0x7f060044
int color design_default_color_on_surface 0x7f060045
int color design_default_color_primary 0x7f060046
int color design_default_color_primary_dark 0x7f060047
int color design_default_color_primary_variant 0x7f060048
int color design_default_color_secondary 0x7f060049
int color design_default_color_secondary_variant 0x7f06004a
int color design_default_color_surface 0x7f06004b
int color design_error 0x7f06004c
int color design_fab_shadow_end_color 0x7f06004d
int color design_fab_shadow_mid_color 0x7f06004e
int color design_fab_shadow_start_color 0x7f06004f
int color design_fab_stroke_end_inner_color 0x7f060050
int color design_fab_stroke_end_outer_color 0x7f060051
int color design_fab_stroke_top_inner_color 0x7f060052
int color design_fab_stroke_top_outer_color 0x7f060053
int color design_icon_tint 0x7f060054
int color design_snackbar_background_color 0x7f060055
int color dim_foreground_disabled_material_dark 0x7f060056
int color dim_foreground_disabled_material_light 0x7f060057
int color dim_foreground_material_dark 0x7f060058
int color dim_foreground_material_light 0x7f060059
int color error_color_material_dark 0x7f06005a
int color error_color_material_light 0x7f06005b
int color foreground_material_dark 0x7f06005c
int color foreground_material_light 0x7f06005d
int color highlighted_text_material_dark 0x7f06005e
int color highlighted_text_material_light 0x7f06005f
int color material_blue_grey_800 0x7f060060
int color material_blue_grey_900 0x7f060061
int color material_blue_grey_950 0x7f060062
int color material_deep_teal_200 0x7f060063
int color material_deep_teal_500 0x7f060064
int color material_grey_100 0x7f060065
int color material_grey_300 0x7f060066
int color material_grey_50 0x7f060067
int color material_grey_600 0x7f060068
int color material_grey_800 0x7f060069
int color material_grey_850 0x7f06006a
int color material_grey_900 0x7f06006b
int color material_on_background_disabled 0x7f06006c
int color material_on_background_emphasis_high_type 0x7f06006d
int color material_on_background_emphasis_medium 0x7f06006e
int color material_on_primary_disabled 0x7f06006f
int color material_on_primary_emphasis_high_type 0x7f060070
int color material_on_primary_emphasis_medium 0x7f060071
int color material_on_surface_disabled 0x7f060072
int color material_on_surface_emphasis_high_type 0x7f060073
int color material_on_surface_emphasis_medium 0x7f060074
int color material_on_surface_stroke 0x7f060075
int color material_slider_active_tick_marks_color 0x7f060076
int color material_slider_active_track_color 0x7f060077
int color material_slider_halo_color 0x7f060078
int color material_slider_inactive_tick_marks_color 0x7f060079
int color material_slider_inactive_track_color 0x7f06007a
int color material_slider_thumb_color 0x7f06007b
int color mtrl_bottom_nav_colored_item_tint 0x7f06007c
int color mtrl_bottom_nav_colored_ripple_color 0x7f06007d
int color mtrl_bottom_nav_item_tint 0x7f06007e
int color mtrl_bottom_nav_ripple_color 0x7f06007f
int color mtrl_btn_bg_color_selector 0x7f060080
int color mtrl_btn_ripple_color 0x7f060081
int color mtrl_btn_stroke_color_selector 0x7f060082
int color mtrl_btn_text_btn_bg_color_selector 0x7f060083
int color mtrl_btn_text_btn_ripple_color 0x7f060084
int color mtrl_btn_text_color_disabled 0x7f060085
int color mtrl_btn_text_color_selector 0x7f060086
int color mtrl_btn_transparent_bg_color 0x7f060087
int color mtrl_calendar_item_stroke_color 0x7f060088
int color mtrl_calendar_selected_range 0x7f060089
int color mtrl_card_view_foreground 0x7f06008a
int color mtrl_card_view_ripple 0x7f06008b
int color mtrl_chip_background_color 0x7f06008c
int color mtrl_chip_close_icon_tint 0x7f06008d
int color mtrl_chip_ripple_color 0x7f06008e
int color mtrl_chip_surface_color 0x7f06008f
int color mtrl_chip_text_color 0x7f060090
int color mtrl_choice_chip_background_color 0x7f060091
int color mtrl_choice_chip_ripple_color 0x7f060092
int color mtrl_choice_chip_text_color 0x7f060093
int color mtrl_error 0x7f060094
int color mtrl_fab_bg_color_selector 0x7f060095
int color mtrl_fab_icon_text_color_selector 0x7f060096
int color mtrl_fab_ripple_color 0x7f060097
int color mtrl_filled_background_color 0x7f060098
int color mtrl_filled_icon_tint 0x7f060099
int color mtrl_filled_stroke_color 0x7f06009a
int color mtrl_indicator_text_color 0x7f06009b
int color mtrl_navigation_item_background_color 0x7f06009c
int color mtrl_navigation_item_icon_tint 0x7f06009d
int color mtrl_navigation_item_text_color 0x7f06009e
int color mtrl_on_primary_text_btn_text_color_selector 0x7f06009f
int color mtrl_outlined_icon_tint 0x7f0600a0
int color mtrl_outlined_stroke_color 0x7f0600a1
int color mtrl_popupmenu_overlay_color 0x7f0600a2
int color mtrl_scrim_color 0x7f0600a3
int color mtrl_tabs_colored_ripple_color 0x7f0600a4
int color mtrl_tabs_icon_color_selector 0x7f0600a5
int color mtrl_tabs_icon_color_selector_colored 0x7f0600a6
int color mtrl_tabs_legacy_text_color_selector 0x7f0600a7
int color mtrl_tabs_ripple_color 0x7f0600a8
int color mtrl_text_btn_text_color_selector 0x7f0600a9
int color mtrl_textinput_default_box_stroke_color 0x7f0600aa
int color mtrl_textinput_disabled_color 0x7f0600ab
int color mtrl_textinput_filled_box_default_background_color 0x7f0600ac
int color mtrl_textinput_focused_box_stroke_color 0x7f0600ad
int color mtrl_textinput_hovered_box_stroke_color 0x7f0600ae
int color notification_action_color_filter 0x7f0600af
int color notification_icon_bg_color 0x7f0600b0
int color primary_dark_material_dark 0x7f0600b1
int color primary_dark_material_light 0x7f0600b2
int color primary_material_dark 0x7f0600b3
int color primary_material_light 0x7f0600b4
int color primary_text_default_material_dark 0x7f0600b5
int color primary_text_default_material_light 0x7f0600b6
int color primary_text_disabled_material_dark 0x7f0600b7
int color primary_text_disabled_material_light 0x7f0600b8
int color radiobutton_themeable_attribute_color 0x7f0600b9
int color ripple_material_dark 0x7f0600ba
int color ripple_material_light 0x7f0600bb
int color secondary_text_default_material_dark 0x7f0600bc
int color secondary_text_default_material_light 0x7f0600bd
int color secondary_text_disabled_material_dark 0x7f0600be
int color secondary_text_disabled_material_light 0x7f0600bf
int color switch_thumb_disabled_material_dark 0x7f0600c0
int color switch_thumb_disabled_material_light 0x7f0600c1
int color switch_thumb_material_dark 0x7f0600c2
int color switch_thumb_material_light 0x7f0600c3
int color switch_thumb_normal_material_dark 0x7f0600c4
int color switch_thumb_normal_material_light 0x7f0600c5
int color test_mtrl_calendar_day 0x7f0600c6
int color test_mtrl_calendar_day_selected 0x7f0600c7
int color tooltip_background_dark 0x7f0600c8
int color tooltip_background_light 0x7f0600c9
int dimen abc_action_bar_content_inset_material 0x7f070001
int dimen abc_action_bar_content_inset_with_nav 0x7f070002
int dimen abc_action_bar_default_height_material 0x7f070003
int dimen abc_action_bar_default_padding_end_material 0x7f070004
int dimen abc_action_bar_default_padding_start_material 0x7f070005
int dimen abc_action_bar_elevation_material 0x7f070006
int dimen abc_action_bar_icon_vertical_padding_material 0x7f070007
int dimen abc_action_bar_overflow_padding_end_material 0x7f070008
int dimen abc_action_bar_overflow_padding_start_material 0x7f070009
int dimen abc_action_bar_stacked_max_height 0x7f07000a
int dimen abc_action_bar_stacked_tab_max_width 0x7f07000b
int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07000c
int dimen abc_action_bar_subtitle_top_margin_material 0x7f07000d
int dimen abc_action_button_min_height_material 0x7f07000e
int dimen abc_action_button_min_width_material 0x7f07000f
int dimen abc_action_button_min_width_overflow_material 0x7f070010
int dimen abc_alert_dialog_button_bar_height 0x7f070011
int dimen abc_alert_dialog_button_dimen 0x7f070012
int dimen abc_button_inset_horizontal_material 0x7f070013
int dimen abc_button_inset_vertical_material 0x7f070014
int dimen abc_button_padding_horizontal_material 0x7f070015
int dimen abc_button_padding_vertical_material 0x7f070016
int dimen abc_cascading_menus_min_smallest_width 0x7f070017
int dimen abc_config_prefDialogWidth 0x7f070018
int dimen abc_control_corner_material 0x7f070019
int dimen abc_control_inset_material 0x7f07001a
int dimen abc_control_padding_material 0x7f07001b
int dimen abc_dialog_corner_radius_material 0x7f07001c
int dimen abc_dialog_fixed_height_major 0x7f07001d
int dimen abc_dialog_fixed_height_minor 0x7f07001e
int dimen abc_dialog_fixed_width_major 0x7f07001f
int dimen abc_dialog_fixed_width_minor 0x7f070020
int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f070021
int dimen abc_dialog_list_padding_top_no_title 0x7f070022
int dimen abc_dialog_min_width_major 0x7f070023
int dimen abc_dialog_min_width_minor 0x7f070024
int dimen abc_dialog_padding_material 0x7f070025
int dimen abc_dialog_padding_top_material 0x7f070026
int dimen abc_dialog_title_divider_material 0x7f070027
int dimen abc_disabled_alpha_material_dark 0x7f070028
int dimen abc_disabled_alpha_material_light 0x7f070029
int dimen abc_dropdownitem_icon_width 0x7f07002a
int dimen abc_dropdownitem_text_padding_left 0x7f07002b
int dimen abc_dropdownitem_text_padding_right 0x7f07002c
int dimen abc_edit_text_inset_bottom_material 0x7f07002d
int dimen abc_edit_text_inset_horizontal_material 0x7f07002e
int dimen abc_edit_text_inset_top_material 0x7f07002f
int dimen abc_floating_window_z 0x7f070030
int dimen abc_list_item_height_large_material 0x7f070031
int dimen abc_list_item_height_material 0x7f070032
int dimen abc_list_item_height_small_material 0x7f070033
int dimen abc_list_item_padding_horizontal_material 0x7f070034
int dimen abc_panel_menu_list_width 0x7f070035
int dimen abc_progress_bar_height_material 0x7f070036
int dimen abc_search_view_preferred_height 0x7f070037
int dimen abc_search_view_preferred_width 0x7f070038
int dimen abc_seekbar_track_background_height_material 0x7f070039
int dimen abc_seekbar_track_progress_height_material 0x7f07003a
int dimen abc_select_dialog_padding_start_material 0x7f07003b
int dimen abc_switch_padding 0x7f07003c
int dimen abc_text_size_body_1_material 0x7f07003d
int dimen abc_text_size_body_2_material 0x7f07003e
int dimen abc_text_size_button_material 0x7f07003f
int dimen abc_text_size_caption_material 0x7f070040
int dimen abc_text_size_display_1_material 0x7f070041
int dimen abc_text_size_display_2_material 0x7f070042
int dimen abc_text_size_display_3_material 0x7f070043
int dimen abc_text_size_display_4_material 0x7f070044
int dimen abc_text_size_headline_material 0x7f070045
int dimen abc_text_size_large_material 0x7f070046
int dimen abc_text_size_medium_material 0x7f070047
int dimen abc_text_size_menu_header_material 0x7f070048
int dimen abc_text_size_menu_material 0x7f070049
int dimen abc_text_size_small_material 0x7f07004a
int dimen abc_text_size_subhead_material 0x7f07004b
int dimen abc_text_size_subtitle_material_toolbar 0x7f07004c
int dimen abc_text_size_title_material 0x7f07004d
int dimen abc_text_size_title_material_toolbar 0x7f07004e
int dimen action_bar_size 0x7f07004f
int dimen appcompat_dialog_background_inset 0x7f070050
int dimen cardview_compat_inset_shadow 0x7f070051
int dimen cardview_default_elevation 0x7f070052
int dimen cardview_default_radius 0x7f070053
int dimen compat_button_inset_horizontal_material 0x7f070054
int dimen compat_button_inset_vertical_material 0x7f070055
int dimen compat_button_padding_horizontal_material 0x7f070056
int dimen compat_button_padding_vertical_material 0x7f070057
int dimen compat_control_corner_material 0x7f070058
int dimen compat_notification_large_icon_max_height 0x7f070059
int dimen compat_notification_large_icon_max_width 0x7f07005a
int dimen default_dimension 0x7f07005b
int dimen design_appbar_elevation 0x7f07005c
int dimen design_bottom_navigation_active_item_max_width 0x7f07005d
int dimen design_bottom_navigation_active_item_min_width 0x7f07005e