-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathR.txt
executable file
·1132 lines (1132 loc) · 53.7 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 0x7f040000
int anim abc_fade_out 0x7f040001
int anim abc_slide_in_bottom 0x7f040002
int anim abc_slide_in_top 0x7f040003
int anim abc_slide_out_bottom 0x7f040004
int anim abc_slide_out_top 0x7f040005
int attr actionBarDivider 0x7f01005a
int attr actionBarItemBackground 0x7f01005b
int attr actionBarPopupTheme 0x7f010054
int attr actionBarSize 0x7f010059
int attr actionBarSplitStyle 0x7f010056
int attr actionBarStyle 0x7f010055
int attr actionBarTabBarStyle 0x7f010050
int attr actionBarTabStyle 0x7f01004f
int attr actionBarTabTextStyle 0x7f010051
int attr actionBarTheme 0x7f010057
int attr actionBarWidgetTheme 0x7f010058
int attr actionButtonStyle 0x7f010072
int attr actionDropDownStyle 0x7f01006d
int attr actionLayout 0x7f01002c
int attr actionMenuTextAppearance 0x7f01005c
int attr actionMenuTextColor 0x7f01005d
int attr actionModeBackground 0x7f010060
int attr actionModeCloseButtonStyle 0x7f01005f
int attr actionModeCloseDrawable 0x7f010062
int attr actionModeCopyDrawable 0x7f010064
int attr actionModeCutDrawable 0x7f010063
int attr actionModeFindDrawable 0x7f010068
int attr actionModePasteDrawable 0x7f010065
int attr actionModePopupWindowStyle 0x7f01006a
int attr actionModeSelectAllDrawable 0x7f010066
int attr actionModeShareDrawable 0x7f010067
int attr actionModeSplitBackground 0x7f010061
int attr actionModeStyle 0x7f01005e
int attr actionModeWebSearchDrawable 0x7f010069
int attr actionOverflowButtonStyle 0x7f010052
int attr actionOverflowMenuStyle 0x7f010053
int attr actionProviderClass 0x7f01002e
int attr actionViewClass 0x7f01002d
int attr activityChooserViewStyle 0x7f010079
int attr background 0x7f01000c
int attr backgroundSplit 0x7f01000e
int attr backgroundStacked 0x7f01000d
int attr barSize 0x7f010026
int attr buttonBarButtonStyle 0x7f010074
int attr buttonBarStyle 0x7f010073
int attr closeIcon 0x7f010035
int attr closeItemLayout 0x7f01001c
int attr collapseContentDescription 0x7f0100a4
int attr collapseIcon 0x7f0100a3
int attr color 0x7f010020
int attr colorAccent 0x7f010094
int attr colorButtonNormal 0x7f010098
int attr colorControlActivated 0x7f010096
int attr colorControlHighlight 0x7f010097
int attr colorControlNormal 0x7f010095
int attr colorPrimary 0x7f010092
int attr colorPrimaryDark 0x7f010093
int attr colorSwitchThumbNormal 0x7f010099
int attr commitIcon 0x7f010039
int attr contentInsetEnd 0x7f010017
int attr contentInsetLeft 0x7f010018
int attr contentInsetRight 0x7f010019
int attr contentInsetStart 0x7f010016
int attr customNavigationLayout 0x7f01000f
int attr disableChildrenWhenDisabled 0x7f010040
int attr displayOptions 0x7f010005
int attr divider 0x7f01000b
int attr dividerHorizontal 0x7f010078
int attr dividerPadding 0x7f01002a
int attr dividerVertical 0x7f010077
int attr drawableSize 0x7f010022
int attr drawerArrowStyle 0x7f010000
int attr dropDownListViewStyle 0x7f01008a
int attr dropdownListPreferredItemHeight 0x7f01006e
int attr editTextBackground 0x7f01007f
int attr editTextColor 0x7f01007e
int attr elevation 0x7f01001a
int attr expandActivityOverflowButtonDrawable 0x7f01001e
int attr gapBetweenBars 0x7f010023
int attr goIcon 0x7f010036
int attr height 0x7f010001
int attr hideOnContentScroll 0x7f010015
int attr homeAsUpIndicator 0x7f010071
int attr homeLayout 0x7f010010
int attr icon 0x7f010009
int attr iconifiedByDefault 0x7f010033
int attr indeterminateProgressStyle 0x7f010012
int attr initialActivityCount 0x7f01001d
int attr isLightTheme 0x7f010002
int attr itemPadding 0x7f010014
int attr layout 0x7f010032
int attr listChoiceBackgroundIndicator 0x7f010091
int attr listPopupWindowStyle 0x7f01008b
int attr listPreferredItemHeight 0x7f010085
int attr listPreferredItemHeightLarge 0x7f010087
int attr listPreferredItemHeightSmall 0x7f010086
int attr listPreferredItemPaddingLeft 0x7f010088
int attr listPreferredItemPaddingRight 0x7f010089
int attr logo 0x7f01000a
int attr maxButtonHeight 0x7f0100a1
int attr measureWithLargestChild 0x7f010028
int attr middleBarArrowSize 0x7f010025
int attr navigationContentDescription 0x7f0100a6
int attr navigationIcon 0x7f0100a5
int attr navigationMode 0x7f010004
int attr overlapAnchor 0x7f010030
int attr paddingEnd 0x7f0100a8
int attr paddingStart 0x7f0100a7
int attr panelBackground 0x7f01008e
int attr panelMenuListTheme 0x7f010090
int attr panelMenuListWidth 0x7f01008f
int attr popupMenuStyle 0x7f01007c
int attr popupPromptView 0x7f01003f
int attr popupTheme 0x7f01001b
int attr popupWindowStyle 0x7f01007d
int attr preserveIconSpacing 0x7f01002f
int attr progressBarPadding 0x7f010013
int attr progressBarStyle 0x7f010011
int attr prompt 0x7f01003d
int attr queryBackground 0x7f01003b
int attr queryHint 0x7f010034
int attr searchIcon 0x7f010037
int attr searchViewStyle 0x7f010084
int attr selectableItemBackground 0x7f010075
int attr selectableItemBackgroundBorderless 0x7f010076
int attr showAsAction 0x7f01002b
int attr showDividers 0x7f010029
int attr showText 0x7f010047
int attr spinBars 0x7f010021
int attr spinnerDropDownItemStyle 0x7f010070
int attr spinnerMode 0x7f01003e
int attr spinnerStyle 0x7f01006f
int attr splitTrack 0x7f010046
int attr state_above_anchor 0x7f010031
int attr submitBackground 0x7f01003c
int attr subtitle 0x7f010006
int attr subtitleTextAppearance 0x7f01009b
int attr subtitleTextStyle 0x7f010008
int attr suggestionRowLayout 0x7f01003a
int attr switchMinWidth 0x7f010044
int attr switchPadding 0x7f010045
int attr switchStyle 0x7f010080
int attr switchTextAppearance 0x7f010043
int attr textAllCaps 0x7f01001f
int attr textAppearanceLargePopupMenu 0x7f01006b
int attr textAppearanceListItem 0x7f01008c
int attr textAppearanceListItemSmall 0x7f01008d
int attr textAppearanceSearchResultSubtitle 0x7f010082
int attr textAppearanceSearchResultTitle 0x7f010081
int attr textAppearanceSmallPopupMenu 0x7f01006c
int attr textColorSearchUrl 0x7f010083
int attr theme 0x7f0100a2
int attr thickness 0x7f010027
int attr thumbTextPadding 0x7f010042
int attr title 0x7f010003
int attr titleMarginBottom 0x7f0100a0
int attr titleMarginEnd 0x7f01009e
int attr titleMarginStart 0x7f01009d
int attr titleMarginTop 0x7f01009f
int attr titleMargins 0x7f01009c
int attr titleTextAppearance 0x7f01009a
int attr titleTextStyle 0x7f010007
int attr toolbarNavigationButtonStyle 0x7f01007b
int attr toolbarStyle 0x7f01007a
int attr topBottomBarArrowSize 0x7f010024
int attr track 0x7f010041
int attr voiceIcon 0x7f010038
int attr windowActionBar 0x7f010048
int attr windowActionBarOverlay 0x7f010049
int attr windowActionModeOverlay 0x7f01004a
int attr windowFixedHeightMajor 0x7f01004e
int attr windowFixedHeightMinor 0x7f01004c
int attr windowFixedWidthMajor 0x7f01004b
int attr windowFixedWidthMinor 0x7f01004d
int bool abc_action_bar_embed_tabs 0x7f060000
int bool abc_action_bar_embed_tabs_pre_jb 0x7f060001
int bool abc_action_bar_expanded_action_views_exclusive 0x7f060002
int bool abc_config_actionMenuItemAllCaps 0x7f060003
int bool abc_config_allowActionMenuItemTextWithIcon 0x7f060004
int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f060005
int color abc_background_cache_hint_selector_material_dark 0x7f070031
int color abc_background_cache_hint_selector_material_light 0x7f070032
int color abc_input_method_navigation_guard 0x7f070000
int color abc_primary_text_disable_only_material_dark 0x7f070033
int color abc_primary_text_disable_only_material_light 0x7f070034
int color abc_primary_text_material_dark 0x7f070035
int color abc_primary_text_material_light 0x7f070036
int color abc_search_url_text 0x7f070037
int color abc_search_url_text_normal 0x7f070001
int color abc_search_url_text_pressed 0x7f070002
int color abc_search_url_text_selected 0x7f070003
int color abc_secondary_text_material_dark 0x7f070038
int color abc_secondary_text_material_light 0x7f070039
int color accent_material_dark 0x7f070004
int color accent_material_light 0x7f070005
int color background_floating_material_dark 0x7f070006
int color background_floating_material_light 0x7f070007
int color background_material_dark 0x7f070008
int color background_material_light 0x7f070009
int color bright_foreground_disabled_material_dark 0x7f07000a
int color bright_foreground_disabled_material_light 0x7f07000b
int color bright_foreground_inverse_material_dark 0x7f07000c
int color bright_foreground_inverse_material_light 0x7f07000d
int color bright_foreground_material_dark 0x7f07000e
int color bright_foreground_material_light 0x7f07000f
int color button_material_dark 0x7f070010
int color button_material_light 0x7f070011
int color dim_foreground_disabled_material_dark 0x7f070012
int color dim_foreground_disabled_material_light 0x7f070013
int color dim_foreground_material_dark 0x7f070014
int color dim_foreground_material_light 0x7f070015
int color highlighted_text_material_dark 0x7f070016
int color highlighted_text_material_light 0x7f070017
int color hint_foreground_material_dark 0x7f070018
int color hint_foreground_material_light 0x7f070019
int color link_text_material_dark 0x7f07001a
int color link_text_material_light 0x7f07001b
int color material_blue_grey_800 0x7f07001c
int color material_blue_grey_900 0x7f07001d
int color material_blue_grey_950 0x7f07001e
int color material_deep_teal_200 0x7f07001f
int color material_deep_teal_500 0x7f070020
int color primary_dark_material_dark 0x7f070021
int color primary_dark_material_light 0x7f070022
int color primary_material_dark 0x7f070023
int color primary_material_light 0x7f070024
int color primary_text_default_material_dark 0x7f070025
int color primary_text_default_material_light 0x7f070026
int color primary_text_disabled_material_dark 0x7f070027
int color primary_text_disabled_material_light 0x7f070028
int color ripple_material_dark 0x7f070029
int color ripple_material_light 0x7f07002a
int color secondary_text_default_material_dark 0x7f07002b
int color secondary_text_default_material_light 0x7f07002c
int color secondary_text_disabled_material_dark 0x7f07002d
int color secondary_text_disabled_material_light 0x7f07002e
int color switch_thumb_normal_material_dark 0x7f07002f
int color switch_thumb_normal_material_light 0x7f070030
int dimen abc_action_bar_default_height_material 0x7f080000
int dimen abc_action_bar_default_padding_material 0x7f080001
int dimen abc_action_bar_icon_vertical_padding_material 0x7f080002
int dimen abc_action_bar_progress_bar_size 0x7f080003
int dimen abc_action_bar_stacked_max_height 0x7f080004
int dimen abc_action_bar_stacked_tab_max_width 0x7f080005
int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f080006
int dimen abc_action_bar_subtitle_top_margin_material 0x7f080007
int dimen abc_action_button_min_height_material 0x7f080008
int dimen abc_action_button_min_width_material 0x7f080009
int dimen abc_action_button_min_width_overflow_material 0x7f08000a
int dimen abc_config_prefDialogWidth 0x7f08000b
int dimen abc_control_inset_material 0x7f08000c
int dimen abc_control_padding_material 0x7f08000d
int dimen abc_dropdownitem_icon_width 0x7f08000e
int dimen abc_dropdownitem_text_padding_left 0x7f08000f
int dimen abc_dropdownitem_text_padding_right 0x7f080010
int dimen abc_panel_menu_list_width 0x7f080011
int dimen abc_search_view_preferred_width 0x7f080012
int dimen abc_search_view_text_min_width 0x7f080013
int dimen abc_text_size_body_1_material 0x7f080014
int dimen abc_text_size_body_2_material 0x7f080015
int dimen abc_text_size_button_material 0x7f080016
int dimen abc_text_size_caption_material 0x7f080017
int dimen abc_text_size_display_1_material 0x7f080018
int dimen abc_text_size_display_2_material 0x7f080019
int dimen abc_text_size_display_3_material 0x7f08001a
int dimen abc_text_size_display_4_material 0x7f08001b
int dimen abc_text_size_headline_material 0x7f08001c
int dimen abc_text_size_large_material 0x7f08001d
int dimen abc_text_size_medium_material 0x7f08001e
int dimen abc_text_size_menu_material 0x7f08001f
int dimen abc_text_size_small_material 0x7f080020
int dimen abc_text_size_subhead_material 0x7f080021
int dimen abc_text_size_subtitle_material_toolbar 0x7f080022
int dimen abc_text_size_title_material 0x7f080023
int dimen abc_text_size_title_material_toolbar 0x7f080024
int dimen activity_horizontal_margin 0x7f080025
int dimen activity_vertical_margin 0x7f080026
int dimen dialog_fixed_height_major 0x7f080027
int dimen dialog_fixed_height_minor 0x7f080028
int dimen dialog_fixed_width_major 0x7f080029
int dimen dialog_fixed_width_minor 0x7f08002a
int dimen disabled_alpha_material_dark 0x7f08002b
int dimen disabled_alpha_material_light 0x7f08002c
int drawable abc_ab_share_pack_holo_dark 0x7f020000
int drawable abc_ab_share_pack_holo_light 0x7f020001
int drawable abc_btn_check_material 0x7f020002
int drawable abc_btn_check_to_on_mtrl_000 0x7f020003
int drawable abc_btn_check_to_on_mtrl_015 0x7f020004
int drawable abc_btn_radio_material 0x7f020005
int drawable abc_btn_radio_to_on_mtrl_000 0x7f020006
int drawable abc_btn_radio_to_on_mtrl_015 0x7f020007
int drawable abc_btn_switch_to_on_mtrl_00001 0x7f020008
int drawable abc_btn_switch_to_on_mtrl_00012 0x7f020009
int drawable abc_cab_background_internal_bg 0x7f02000a
int drawable abc_cab_background_top_material 0x7f02000b
int drawable abc_cab_background_top_mtrl_alpha 0x7f02000c
int drawable abc_edit_text_material 0x7f02000d
int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f02000e
int drawable abc_ic_clear_mtrl_alpha 0x7f02000f
int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020010
int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020011
int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f020012
int drawable abc_ic_menu_cut_mtrl_alpha 0x7f020013
int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f020014
int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f020015
int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f020016
int drawable abc_ic_menu_share_mtrl_alpha 0x7f020017
int drawable abc_ic_search_api_mtrl_alpha 0x7f020018
int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f020019
int drawable abc_item_background_holo_dark 0x7f02001a
int drawable abc_item_background_holo_light 0x7f02001b
int drawable abc_list_divider_mtrl_alpha 0x7f02001c
int drawable abc_list_focused_holo 0x7f02001d
int drawable abc_list_longpressed_holo 0x7f02001e
int drawable abc_list_pressed_holo_dark 0x7f02001f
int drawable abc_list_pressed_holo_light 0x7f020020
int drawable abc_list_selector_background_transition_holo_dark 0x7f020021
int drawable abc_list_selector_background_transition_holo_light 0x7f020022
int drawable abc_list_selector_disabled_holo_dark 0x7f020023
int drawable abc_list_selector_disabled_holo_light 0x7f020024
int drawable abc_list_selector_holo_dark 0x7f020025
int drawable abc_list_selector_holo_light 0x7f020026
int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f020027
int drawable abc_popup_background_mtrl_mult 0x7f020028
int drawable abc_spinner_mtrl_am_alpha 0x7f020029
int drawable abc_switch_thumb_material 0x7f02002a
int drawable abc_switch_track_mtrl_alpha 0x7f02002b
int drawable abc_tab_indicator_material 0x7f02002c
int drawable abc_tab_indicator_mtrl_alpha 0x7f02002d
int drawable abc_textfield_activated_mtrl_alpha 0x7f02002e
int drawable abc_textfield_default_mtrl_alpha 0x7f02002f
int drawable abc_textfield_search_activated_mtrl_alpha 0x7f020030
int drawable abc_textfield_search_default_mtrl_alpha 0x7f020031
int drawable abc_textfield_search_material 0x7f020032
int drawable action_item_background_selector 0x7f020033
int drawable alert_background_style 0x7f020034
int drawable arrow 0x7f020035
int drawable back_arrow 0x7f020036
int drawable back_holo_light 0x7f020037
int drawable btn_check_buttonless_off 0x7f020038
int drawable btn_check_buttonless_on 0x7f020039
int drawable button_background_style 0x7f02003a
int drawable button_disabled 0x7f02003b
int drawable button_enabled 0x7f02003c
int drawable countryselect_background_style 0x7f02003d
int drawable edittext_background_style 0x7f02003e
int drawable ic_launcher 0x7f02003f
int drawable icon 0x7f020040
int drawable logo_widget_small 0x7f020041
int drawable progressbar_style 0x7f020042
int drawable rc_logo 0x7f020043
int drawable rg_progress_off_style 0x7f020044
int drawable rg_progress_on_style 0x7f020045
int drawable ringcaptcha_logo 0x7f020046
int drawable v2_back 0x7f020047
int drawable v2_bkg_activate_app 0x7f020048
int drawable v2_bkg_num 0x7f020049
int drawable v2_bkg_num_small 0x7f02004a
int drawable v2_captcha 0x7f02004b
int drawable v2_go 0x7f02004c
int drawable v2_icon_inter 0x7f02004d
int drawable v2_powered 0x7f02004e
int drawable v2_search 0x7f02004f
int drawable v2_tilde 0x7f020050
int drawable window_background_style 0x7f020051
int id action_bar 0x7f090031
int id action_bar_activity_content 0x7f090000
int id action_bar_container 0x7f090030
int id action_bar_root 0x7f09002c
int id action_bar_spinner 0x7f090001
int id action_bar_subtitle 0x7f09001f
int id action_bar_title 0x7f09001e
int id action_context_bar 0x7f090032
int id action_menu_divider 0x7f090002
int id action_menu_presenter 0x7f090003
int id action_mode_bar 0x7f09002e
int id action_mode_bar_stub 0x7f09002d
int id action_mode_close_button 0x7f090020
int id activity_chooser_view_content 0x7f090021
int id alertEditBtt 0x7f090069
int id alertError 0x7f09006b
int id alertOkBtt 0x7f09006a
int id alertPhoneNumber 0x7f090068
int id always 0x7f090016
int id backBtt 0x7f09006d
int id barTitleTextView 0x7f09006e
int id beginning 0x7f090013
int id btnselectcountry 0x7f090063
int id butOk 0x7f09005a
int id button 0x7f09005f
int id button2 0x7f090060
int id callmeBtt 0x7f09004d
int id callmeLayout 0x7f09004b
int id cantfindTextView 0x7f09005b
int id checkbox 0x7f090029
int id codesLayout 0x7f090041
int id collapseActionView 0x7f090017
int id countryDialingCode 0x7f090052
int id countryIcon 0x7f090050
int id countryName 0x7f090051
int id countrySelected 0x7f090053
int id country_list_view 0x7f090055
int id decor_content_parent 0x7f09002f
int id default_activity_button 0x7f090024
int id dialog 0x7f09001b
int id disableHome 0x7f09000c
int id dropdown 0x7f09001c
int id editBtt 0x7f09005c
int id editCode1 0x7f090042
int id editCode2 0x7f090043
int id editCode3 0x7f090044
int id editCode4 0x7f090045
int id edit_query 0x7f090033
int id end 0x7f090014
int id errorTextView 0x7f09004a
int id expand_activities_button 0x7f090022
int id expanded_menu 0x7f090028
int id fourdigitsTextView 0x7f090040
int id helpBtt 0x7f09006f
int id home 0x7f090004
int id homeAsUp 0x7f09000d
int id icon 0x7f090026
int id ifRoom 0x7f090018
int id image 0x7f090023
int id imageActivateApp 0x7f090058
int id inputSearch 0x7f090054
int id listMode 0x7f090009
int id list_item 0x7f090025
int id loadingLayout 0x7f090048
int id mainBar 0x7f09006c
int id middle 0x7f090015
int id never 0x7f090019
int id nombrepais 0x7f090062
int id none 0x7f09000e
int id normal 0x7f09000a
int id numbersSpinner 0x7f090059
int id onboardLayout 0x7f090057
int id privacyBtt 0x7f090066
int id progressBar1 0x7f09003f
int id progressBar2 0x7f090049
int id progress_circular 0x7f090005
int id progress_horizontal 0x7f090006
int id radio 0x7f09002b
int id resendMessage 0x7f090070
int id ringcatpcha_logo_codelayout 0x7f09004e
int id ringcatpcha_logo_llayout 0x7f09005d
int id search_badge 0x7f090035
int id search_bar 0x7f090034
int id search_button 0x7f090036
int id search_close_btn 0x7f09003b
int id search_edit_frame 0x7f090037
int id search_go_btn 0x7f09003d
int id search_mag_icon 0x7f090038
int id search_plate 0x7f090039
int id search_src_text 0x7f09003a
int id search_voice_btn 0x7f09003e
int id setNumberCountryIcon 0x7f090061
int id shortcut 0x7f09002a
int id showCustom 0x7f09000f
int id showHome 0x7f090010
int id showTitle 0x7f090011
int id smssentto 0x7f09004c
int id split_action_bar 0x7f090007
int id submit_area 0x7f09003c
int id tabMode 0x7f09000b
int id tableRow1 0x7f09004f
int id textDialingCode 0x7f090064
int id textPhone 0x7f090065
int id textView 0x7f09005e
int id title 0x7f090027
int id up 0x7f090008
int id useLogo 0x7f090012
int id verifiedBtt 0x7f090047
int id verifiedLayout 0x7f090046
int id webView 0x7f090067
int id webViewHelp 0x7f090056
int id withText 0x7f09001a
int id wrap_content 0x7f09001d
int integer abc_max_action_buttons 0x7f0a0000
int layout abc_action_bar_title_item 0x7f030000
int layout abc_action_bar_up_container 0x7f030001
int layout abc_action_bar_view_list_nav_layout 0x7f030002
int layout abc_action_menu_item_layout 0x7f030003
int layout abc_action_menu_layout 0x7f030004
int layout abc_action_mode_bar 0x7f030005
int layout abc_action_mode_close_item_material 0x7f030006
int layout abc_activity_chooser_view 0x7f030007
int layout abc_activity_chooser_view_include 0x7f030008
int layout abc_activity_chooser_view_list_item 0x7f030009
int layout abc_expanded_menu_layout 0x7f03000a
int layout abc_list_menu_item_checkbox 0x7f03000b
int layout abc_list_menu_item_icon 0x7f03000c
int layout abc_list_menu_item_layout 0x7f03000d
int layout abc_list_menu_item_radio 0x7f03000e
int layout abc_popup_menu_item_layout 0x7f03000f
int layout abc_screen_content_include 0x7f030010
int layout abc_screen_simple 0x7f030011
int layout abc_screen_simple_overlay_action_mode 0x7f030012
int layout abc_screen_toolbar 0x7f030013
int layout abc_search_dropdown_item_icons_2line 0x7f030014
int layout abc_search_view 0x7f030015
int layout abc_simple_dropdown_hint 0x7f030016
int layout activity_code 0x7f030017
int layout activity_country_item 0x7f030018
int layout activity_country_list 0x7f030019
int layout activity_help 0x7f03001a
int layout activity_onboard 0x7f03001b
int layout activity_sample 0x7f03001c
int layout activity_setnumber 0x7f03001d
int layout activity_verify 0x7f03001e
int layout alert_dialog 0x7f03001f
int layout error_dialog 0x7f030020
int layout main_bar 0x7f030021
int layout preloader_dialog 0x7f030022
int layout progress_dialog 0x7f030023
int layout resend_dialog 0x7f030024
int layout spinner_dropdown_item 0x7f030025
int layout spinner_item 0x7f030026
int layout support_simple_spinner_dropdown_item 0x7f030027
int raw countries 0x7f050000
int raw key 0x7f050001
int string ERROR_COUNTRY_NOT_SUPPORTED 0x7f0b0000
int string ERROR_DEFAULT_MESSAGE 0x7f0b0001
int string ERROR_INVALID_APP_KEY 0x7f0b0002
int string ERROR_INVALID_DOMAIN 0x7f0b0003
int string ERROR_INVALID_NUMBER 0x7f0b0004
int string ERROR_INVALID_NUMBER_LENGTH 0x7f0b0005
int string ERROR_INVALID_PIN_CODE 0x7f0b0006
int string ERROR_INVALID_SECRET_KEY 0x7f0b0007
int string ERROR_INVALID_SESSION 0x7f0b0008
int string ERROR_INVALID_SITE_KEY 0x7f0b0009
int string ERROR_MAX_ATTEMPTS_REACHED 0x7f0b000a
int string ERROR_MAX_VALIDATIONS_REACHED 0x7f0b000b
int string ERROR_OUT_OF_CREDIT 0x7f0b000c
int string ERROR_PHONE_NUMBER_NOT_SIM_CARD 0x7f0b000d
int string ERROR_SESSION_EXPIRED 0x7f0b000e
int string abc_action_bar_home_description 0x7f0b000f
int string abc_action_bar_home_description_format 0x7f0b0010
int string abc_action_bar_home_subtitle_description_format 0x7f0b0011
int string abc_action_bar_up_description 0x7f0b0012
int string abc_action_menu_overflow_description 0x7f0b0013
int string abc_action_mode_done 0x7f0b0014
int string abc_activity_chooser_view_see_all 0x7f0b0015
int string abc_activitychooserview_choose_application 0x7f0b0016
int string abc_searchview_description_clear 0x7f0b0017
int string abc_searchview_description_query 0x7f0b0018
int string abc_searchview_description_search 0x7f0b0019
int string abc_searchview_description_submit 0x7f0b001a
int string abc_searchview_description_voice 0x7f0b001b
int string abc_shareactionprovider_share_with 0x7f0b001c
int string abc_shareactionprovider_share_with_application 0x7f0b001d
int string abc_toolbar_collapse_description 0x7f0b001e
int string activate 0x7f0b001f
int string agree 0x7f0b0020
int string callme 0x7f0b0021
int string cancel 0x7f0b0022
int string cantfindyournumber 0x7f0b0023
int string code_error 0x7f0b0024
int string country_code_phone_number 0x7f0b0025
int string didnt_receive 0x7f0b0026
int string done 0x7f0b0027
int string edit 0x7f0b0028
int string edithere 0x7f0b0029
int string editnumber 0x7f0b002a
int string errorTryAgain 0x7f0b002b
int string errormsg 0x7f0b002c
int string help_content 0x7f0b002d
int string is_your_number_correct 0x7f0b002e
int string isthisyourcard 0x7f0b002f
int string loading 0x7f0b0030
int string minutes_left 0x7f0b0031
int string next 0x7f0b0032
int string no 0x7f0b0033
int string number_confirmation 0x7f0b0034
int string ok 0x7f0b0035
int string onboard 0x7f0b0036
int string phone_number 0x7f0b0037
int string phoneconfirm 0x7f0b0038
int string please_confirm 0x7f0b0039
int string please_enter_4_digits 0x7f0b003a
int string preparing_callme 0x7f0b003b
int string privacy 0x7f0b003c
int string resend 0x7f0b003d
int string search_hint 0x7f0b003e
int string search_title 0x7f0b003f
int string seconds_left 0x7f0b0040
int string selectLast 0x7f0b0041
int string sending_msg 0x7f0b0042
int string sms_sent 0x7f0b0043
int string thanks 0x7f0b0044
int string thanks_for_registering 0x7f0b0045
int string title_verify 0x7f0b0046
int string verified 0x7f0b0047
int string verifying_msg 0x7f0b0048
int string wearesending 0x7f0b0049
int string yes 0x7f0b004a
int string your_country 0x7f0b004b
int string your_phone 0x7f0b004c
int style AppBaseTheme 0x7f0c00fd
int style AppTheme 0x7f0c0000
int style Base_TextAppearance_AppCompat 0x7f0c0001
int style Base_TextAppearance_AppCompat_Body1 0x7f0c0002
int style Base_TextAppearance_AppCompat_Body2 0x7f0c0003
int style Base_TextAppearance_AppCompat_Button 0x7f0c0004
int style Base_TextAppearance_AppCompat_Caption 0x7f0c0005
int style Base_TextAppearance_AppCompat_Display1 0x7f0c0006
int style Base_TextAppearance_AppCompat_Display2 0x7f0c0007
int style Base_TextAppearance_AppCompat_Display3 0x7f0c0008
int style Base_TextAppearance_AppCompat_Display4 0x7f0c0009
int style Base_TextAppearance_AppCompat_Headline 0x7f0c000a
int style Base_TextAppearance_AppCompat_Inverse 0x7f0c000b
int style Base_TextAppearance_AppCompat_Large 0x7f0c000c
int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0c000d
int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0c000e
int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0c000f
int style Base_TextAppearance_AppCompat_Medium 0x7f0c0010
int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0c0011
int style Base_TextAppearance_AppCompat_Menu 0x7f0c0012
int style Base_TextAppearance_AppCompat_SearchResult 0x7f0c0013
int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0c0014
int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0c0015
int style Base_TextAppearance_AppCompat_Small 0x7f0c0016
int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0c0017
int style Base_TextAppearance_AppCompat_Subhead 0x7f0c0018
int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0c0019
int style Base_TextAppearance_AppCompat_Title 0x7f0c001a
int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0c001b
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0c001c
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0c001d
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0c001e
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0c001f
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0c0020
int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0c0021
int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0c0022
int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0c0023
int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0c0024
int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0c0025
int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0c0026
int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0c0027
int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0c0028
int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0c0029
int style Base_Theme_AppCompat 0x7f0c002a
int style Base_Theme_AppCompat_CompactMenu 0x7f0c002b
int style Base_Theme_AppCompat_Dialog 0x7f0c002c
int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0c002d
int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0c002e
int style Base_Theme_AppCompat_Light 0x7f0c002f
int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0c0030
int style Base_Theme_AppCompat_Light_Dialog 0x7f0c0031
int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0c0032
int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0c0033
int style Base_ThemeOverlay_AppCompat 0x7f0c0034
int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0c0035
int style Base_ThemeOverlay_AppCompat_Dark 0x7f0c0036
int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0c0037
int style Base_ThemeOverlay_AppCompat_Light 0x7f0c0038
int style Base_V11_Theme_AppCompat 0x7f0c00fe
int style Base_V11_Theme_AppCompat_Dialog 0x7f0c00ff
int style Base_V11_Theme_AppCompat_Light 0x7f0c0100
int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f0c0101
int style Base_V14_Theme_AppCompat 0x7f0c0102
int style Base_V14_Theme_AppCompat_Dialog 0x7f0c0103
int style Base_V14_Theme_AppCompat_Light 0x7f0c0104
int style Base_V14_Theme_AppCompat_Light_Dialog 0x7f0c0105
int style Base_V21_Theme_AppCompat 0x7f0c0108
int style Base_V21_Theme_AppCompat_Dialog 0x7f0c0109
int style Base_V21_Theme_AppCompat_Light 0x7f0c010a
int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0c010b
int style Base_V7_Theme_AppCompat 0x7f0c0039
int style Base_V7_Theme_AppCompat_Dialog 0x7f0c003a
int style Base_V7_Theme_AppCompat_Light 0x7f0c003b
int style Base_Widget_AppCompat_ActionBar 0x7f0c003c
int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0c003d
int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0c003e
int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0c003f
int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0c0040
int style Base_Widget_AppCompat_ActionButton 0x7f0c0041
int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0c0042
int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0c0043
int style Base_Widget_AppCompat_ActionMode 0x7f0c0044
int style Base_Widget_AppCompat_ActivityChooserView 0x7f0c0045
int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0c0046
int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0c0047
int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0c0048
int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0c0049
int style Base_Widget_AppCompat_EditText 0x7f0c004a
int style Base_Widget_AppCompat_Light_ActionBar 0x7f0c004b
int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0c004c
int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0c004d
int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0c004e
int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0c004f
int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0c0050
int style Base_Widget_AppCompat_Light_ActivityChooserView 0x7f0c0051
int style Base_Widget_AppCompat_Light_AutoCompleteTextView 0x7f0c0052
int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0c0053
int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0c0054
int style Base_Widget_AppCompat_ListPopupWindow 0x7f0c0055
int style Base_Widget_AppCompat_ListView_DropDown 0x7f0c0056
int style Base_Widget_AppCompat_ListView_Menu 0x7f0c0057
int style Base_Widget_AppCompat_PopupMenu 0x7f0c0058
int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0c0059
int style Base_Widget_AppCompat_PopupWindow 0x7f0c005a
int style Base_Widget_AppCompat_ProgressBar 0x7f0c005b
int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0c005c
int style Base_Widget_AppCompat_SearchView 0x7f0c005d
int style Base_Widget_AppCompat_Spinner 0x7f0c005e
int style Base_Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0c005f
int style Base_Widget_AppCompat_Toolbar 0x7f0c0060
int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0c0061
int style Platform_AppCompat 0x7f0c0062
int style Platform_AppCompat_Dialog 0x7f0c0063
int style Platform_AppCompat_Light 0x7f0c0064
int style Platform_AppCompat_Light_Dialog 0x7f0c0065
int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0c0066
int style RtlOverlay_Widget_AppCompat_ActionButton_CloseMode 0x7f0c0067
int style RtlOverlay_Widget_AppCompat_ActionButton_Overflow 0x7f0c0068
int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0c0069
int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0c006a
int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0c006b
int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0c006c
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0c006d
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0c006e
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0c006f
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0c0070
int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0c0071
int style TextAppearance_AppCompat 0x7f0c0072
int style TextAppearance_AppCompat_Body1 0x7f0c0073
int style TextAppearance_AppCompat_Body2 0x7f0c0074
int style TextAppearance_AppCompat_Button 0x7f0c0075
int style TextAppearance_AppCompat_Caption 0x7f0c0076
int style TextAppearance_AppCompat_Display1 0x7f0c0077
int style TextAppearance_AppCompat_Display2 0x7f0c0078
int style TextAppearance_AppCompat_Display3 0x7f0c0079
int style TextAppearance_AppCompat_Display4 0x7f0c007a
int style TextAppearance_AppCompat_Headline 0x7f0c007b
int style TextAppearance_AppCompat_Inverse 0x7f0c007c
int style TextAppearance_AppCompat_Large 0x7f0c007d
int style TextAppearance_AppCompat_Large_Inverse 0x7f0c007e
int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0c007f
int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0c0080
int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0c0081
int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0c0082
int style TextAppearance_AppCompat_Medium 0x7f0c0083
int style TextAppearance_AppCompat_Medium_Inverse 0x7f0c0084
int style TextAppearance_AppCompat_Menu 0x7f0c0085
int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0c0086
int style TextAppearance_AppCompat_SearchResult_Title 0x7f0c0087
int style TextAppearance_AppCompat_Small 0x7f0c0088
int style TextAppearance_AppCompat_Small_Inverse 0x7f0c0089
int style TextAppearance_AppCompat_Subhead 0x7f0c008a
int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0c008b
int style TextAppearance_AppCompat_Title 0x7f0c008c
int style TextAppearance_AppCompat_Title_Inverse 0x7f0c008d
int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0c008e
int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0c008f
int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0c0090
int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0c0091
int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0c0092
int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0c0093
int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0c0094
int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0c0095
int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0c0096
int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0c0097
int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0c0098
int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0c0099
int style TextAppearance_AppCompat_Widget_Switch 0x7f0c009a
int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0c009b
int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0c009c
int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0c009d
int style Theme_AppCompat 0x7f0c009e
int style Theme_AppCompat_CompactMenu 0x7f0c009f
int style Theme_AppCompat_Dialog 0x7f0c00a0
int style Theme_AppCompat_DialogWhenLarge 0x7f0c00a1
int style Theme_AppCompat_Light 0x7f0c00a2
int style Theme_AppCompat_Light_DarkActionBar 0x7f0c00a3
int style Theme_AppCompat_Light_Dialog 0x7f0c00a4
int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0c00a5
int style Theme_AppCompat_Light_NoActionBar 0x7f0c00a6
int style Theme_AppCompat_NoActionBar 0x7f0c00a7
int style Theme_MyAppTheme_ActionBar_TitleTextStyle 0x7f0c0106
int style ThemeOverlay_AppCompat 0x7f0c00a8
int style ThemeOverlay_AppCompat_ActionBar 0x7f0c00a9
int style ThemeOverlay_AppCompat_Dark 0x7f0c00aa
int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0c00ab
int style ThemeOverlay_AppCompat_Light 0x7f0c00ac
int style Widget_ActionBar 0x7f0c0107
int style Widget_AppCompat_ActionBar 0x7f0c00ad
int style Widget_AppCompat_ActionBar_Solid 0x7f0c00ae
int style Widget_AppCompat_ActionBar_TabBar 0x7f0c00af
int style Widget_AppCompat_ActionBar_TabText 0x7f0c00b0
int style Widget_AppCompat_ActionBar_TabView 0x7f0c00b1
int style Widget_AppCompat_ActionButton 0x7f0c00b2
int style Widget_AppCompat_ActionButton_CloseMode 0x7f0c00b3
int style Widget_AppCompat_ActionButton_Overflow 0x7f0c00b4
int style Widget_AppCompat_ActionMode 0x7f0c00b5
int style Widget_AppCompat_ActivityChooserView 0x7f0c00b6
int style Widget_AppCompat_AutoCompleteTextView 0x7f0c00b7
int style Widget_AppCompat_CompoundButton_Switch 0x7f0c00b8
int style Widget_AppCompat_DrawerArrowToggle 0x7f0c00b9
int style Widget_AppCompat_DropDownItem_Spinner 0x7f0c00ba
int style Widget_AppCompat_EditText 0x7f0c00bb
int style Widget_AppCompat_Light_ActionBar 0x7f0c00bc
int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0c00bd
int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0c00be
int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0c00bf
int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0c00c0
int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0c00c1
int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0c00c2
int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0c00c3
int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0c00c4
int style Widget_AppCompat_Light_ActionButton 0x7f0c00c5
int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0c00c6
int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0c00c7
int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0c00c8
int style Widget_AppCompat_Light_ActivityChooserView 0x7f0c00c9
int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0c00ca
int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0c00cb
int style Widget_AppCompat_Light_ListPopupWindow 0x7f0c00cc
int style Widget_AppCompat_Light_ListView_DropDown 0x7f0c00cd
int style Widget_AppCompat_Light_PopupMenu 0x7f0c00ce
int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0c00cf
int style Widget_AppCompat_Light_SearchView 0x7f0c00d0
int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0c00d1
int style Widget_AppCompat_ListPopupWindow 0x7f0c00d2
int style Widget_AppCompat_ListView_DropDown 0x7f0c00d3
int style Widget_AppCompat_ListView_Menu 0x7f0c00d4
int style Widget_AppCompat_PopupMenu 0x7f0c00d5
int style Widget_AppCompat_PopupMenu_Overflow 0x7f0c00d6
int style Widget_AppCompat_PopupWindow 0x7f0c00d7
int style Widget_AppCompat_ProgressBar 0x7f0c00d8
int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0c00d9
int style Widget_AppCompat_SearchView 0x7f0c00da
int style Widget_AppCompat_Spinner 0x7f0c00db
int style Widget_AppCompat_Spinner_DropDown 0x7f0c00dc
int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0c00dd
int style Widget_AppCompat_Toolbar 0x7f0c00de
int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0c00df
int style alertButton 0x7f0c00e0
int style alertHeader1 0x7f0c00e1
int style alertHeader2 0x7f0c00e2
int style alertPhoneNumber 0x7f0c00e3
int style arrowBtt 0x7f0c00e4
int style backArrowBtt 0x7f0c00e5
int style barTitle 0x7f0c00e6
int style buttonHelp 0x7f0c00e7
int style buttonStyle 0x7f0c00e8
int style callmebtt 0x7f0c00e9
int style codeActivityHeading1 0x7f0c00ea
int style codeNumber 0x7f0c00eb
int style commonBackground 0x7f0c00ec
int style countryCheck 0x7f0c00ed
int style countryDialingCodeItem 0x7f0c00ee
int style countryIcon 0x7f0c00ef
int style countryNameItem 0x7f0c00f0
int style dialingCodeStyle 0x7f0c00f1
int style error 0x7f0c00f2
int style fullHeightDialog 0x7f0c00f3
int style nombrePais 0x7f0c00f4
int style progressBar 0x7f0c00f5
int style sentto 0x7f0c00f6
int style setNumberCountryIcon 0x7f0c00f7
int style setNumberEditText 0x7f0c00f8
int style setNumberHeading1 0x7f0c00f9
int style setNumberHeading2 0x7f0c00fa
int style setNumberHeading3 0x7f0c00fb
int style verifiedButtonStyle 0x7f0c00fc
int[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010071 }
int styleable ActionBar_background 10
int styleable ActionBar_backgroundSplit 12
int styleable ActionBar_backgroundStacked 11
int styleable ActionBar_contentInsetEnd 21
int styleable ActionBar_contentInsetLeft 22
int styleable ActionBar_contentInsetRight 23
int styleable ActionBar_contentInsetStart 20
int styleable ActionBar_customNavigationLayout 13
int styleable ActionBar_displayOptions 3
int styleable ActionBar_divider 9
int styleable ActionBar_elevation 24
int styleable ActionBar_height 0
int styleable ActionBar_hideOnContentScroll 19
int styleable ActionBar_homeAsUpIndicator 26
int styleable ActionBar_homeLayout 14
int styleable ActionBar_icon 7
int styleable ActionBar_indeterminateProgressStyle 16
int styleable ActionBar_itemPadding 18
int styleable ActionBar_logo 8
int styleable ActionBar_navigationMode 2
int styleable ActionBar_popupTheme 25
int styleable ActionBar_progressBarPadding 17
int styleable ActionBar_progressBarStyle 15
int styleable ActionBar_subtitle 4
int styleable ActionBar_subtitleTextStyle 6
int styleable ActionBar_title 1
int styleable ActionBar_titleTextStyle 5
int[] styleable ActionBarLayout { 0x010100b3 }
int styleable ActionBarLayout_android_layout_gravity 0
int[] styleable ActionMenuItemView { 0x0101013f }
int styleable ActionMenuItemView_android_minWidth 0
int[] styleable ActionMenuView { }
int[] styleable ActionMode { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }
int styleable ActionMode_background 3
int styleable ActionMode_backgroundSplit 4
int styleable ActionMode_closeItemLayout 5
int styleable ActionMode_height 0
int styleable ActionMode_subtitleTextStyle 2
int styleable ActionMode_titleTextStyle 1
int[] styleable ActivityChooserView { 0x7f01001d, 0x7f01001e }
int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1
int styleable ActivityChooserView_initialActivityCount 0
int[] styleable CompatTextView { 0x7f01001f }
int styleable CompatTextView_textAllCaps 0
int[] styleable DrawerArrowToggle { 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026, 0x7f010027 }
int styleable DrawerArrowToggle_barSize 6
int styleable DrawerArrowToggle_color 0
int styleable DrawerArrowToggle_drawableSize 2
int styleable DrawerArrowToggle_gapBetweenBars 3
int styleable DrawerArrowToggle_middleBarArrowSize 5
int styleable DrawerArrowToggle_spinBars 1
int styleable DrawerArrowToggle_thickness 7
int styleable DrawerArrowToggle_topBottomBarArrowSize 4
int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f010028, 0x7f010029, 0x7f01002a }
int styleable LinearLayoutCompat_android_baselineAligned 2
int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
int styleable LinearLayoutCompat_android_gravity 0
int styleable LinearLayoutCompat_android_orientation 1
int styleable LinearLayoutCompat_android_weightSum 4
int styleable LinearLayoutCompat_divider 5
int styleable LinearLayoutCompat_dividerPadding 8
int styleable LinearLayoutCompat_measureWithLargestChild 6
int styleable LinearLayoutCompat_showDividers 7
int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
int styleable LinearLayoutCompat_Layout_android_layout_height 2
int styleable LinearLayoutCompat_Layout_android_layout_weight 3
int styleable LinearLayoutCompat_Layout_android_layout_width 1
int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad }
int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
int styleable ListPopupWindow_android_dropDownVerticalOffset 1
int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }
int styleable MenuGroup_android_checkableBehavior 5
int styleable MenuGroup_android_enabled 0
int styleable MenuGroup_android_id 1
int styleable MenuGroup_android_menuCategory 3
int styleable MenuGroup_android_orderInCategory 4
int styleable MenuGroup_android_visible 2
int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e }
int styleable MenuItem_actionLayout 14
int styleable MenuItem_actionProviderClass 16
int styleable MenuItem_actionViewClass 15
int styleable MenuItem_android_alphabeticShortcut 9
int styleable MenuItem_android_checkable 11
int styleable MenuItem_android_checked 3
int styleable MenuItem_android_enabled 1
int styleable MenuItem_android_icon 0
int styleable MenuItem_android_id 2
int styleable MenuItem_android_menuCategory 5
int styleable MenuItem_android_numericShortcut 10
int styleable MenuItem_android_onClick 12
int styleable MenuItem_android_orderInCategory 6
int styleable MenuItem_android_title 7
int styleable MenuItem_android_titleCondensed 8
int styleable MenuItem_android_visible 4
int styleable MenuItem_showAsAction 13
int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f01002f }
int styleable MenuView_android_headerBackground 4
int styleable MenuView_android_horizontalDivider 2
int styleable MenuView_android_itemBackground 5
int styleable MenuView_android_itemIconDisabledAlpha 6
int styleable MenuView_android_itemTextAppearance 1
int styleable MenuView_android_verticalDivider 3
int styleable MenuView_android_windowAnimationStyle 0
int styleable MenuView_preserveIconSpacing 7
int[] styleable PopupWindow { 0x01010176, 0x7f010030 }
int styleable PopupWindow_android_popupBackground 0
int styleable PopupWindow_overlapAnchor 1
int[] styleable PopupWindowBackgroundState { 0x7f010031 }
int styleable PopupWindowBackgroundState_state_above_anchor 0
int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c }
int styleable SearchView_android_focusable 0
int styleable SearchView_android_imeOptions 3
int styleable SearchView_android_inputType 2
int styleable SearchView_android_maxWidth 1
int styleable SearchView_closeIcon 7
int styleable SearchView_commitIcon 11
int styleable SearchView_goIcon 8
int styleable SearchView_iconifiedByDefault 5
int styleable SearchView_layout 4
int styleable SearchView_queryBackground 13
int styleable SearchView_queryHint 6
int styleable SearchView_searchIcon 9
int styleable SearchView_submitBackground 14
int styleable SearchView_suggestionRowLayout 12
int styleable SearchView_voiceIcon 10
int[] styleable Spinner { 0x010100af, 0x010100d4, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040 }
int styleable Spinner_android_background 1
int styleable Spinner_android_dropDownHorizontalOffset 5
int styleable Spinner_android_dropDownSelector 2
int styleable Spinner_android_dropDownVerticalOffset 6
int styleable Spinner_android_dropDownWidth 4